3rd party module updates + update setup config

develop
Ahmed Aly 2018-06-25 14:42:55 +02:00
parent a1cd7c535d
commit 9af5fb4e71
124 changed files with 19838 additions and 976 deletions

View File

@ -1,2 +1,2 @@
#!/usr/bin/env bash
git-pylint-commit-hook --suppress-report --ignore=^dev --ignore=^setup --ignore=^config --ignore=^dmi --ignore=^ext/odoo --ignore=^ext/enterprise-addons --ignore=^ext/3rd-party-addons --ignore=/tests/ --always-show-violations
git-pylint-commit-hook --suppress-report --ignore=^ext/clarico-addons --ignore=^dev --ignore=^setup --ignore=^config --ignore=^dmi --ignore=^ext/odoo --ignore=^ext/enterprise-addons --ignore=^ext/3rd-party-addons --ignore=/tests/ --always-show-violations

View File

@ -8,12 +8,17 @@ Allows to use ``website_id`` (current website) in ``domain_force`` field of Reco
* ``[('website_id', '=', website_id)]``
Example of usage:
Example of usage:
* Show a blog on specific websites only (TODO: add link to the module)
* Show an event on specific websites only (TODO: add link to the module)
* Show a product on specific websites only (TODO: add link to the module)
Known issues
============
* This module redefines ``ir.rule`` ``_compute_domain`` base method and may be not compatible with others that redefine the method too.
Odoo 12.0+
==========

View File

@ -1,2 +1 @@
# -*- coding: utf-8 -*-
from . import models

View File

@ -1,11 +1,10 @@
# -*- coding: utf-8 -*-
{
"name": """Multi-website support in Security Rules""",
"summary": """Provide access depending on current website""",
"category": "Access",
# "live_test_url": "",
"images": [],
"version": "1.0.0",
"version": "11.0.1.1.0",
"application": False,
"author": "IT-Projects LLC, Ildar Nasyrov",
@ -15,11 +14,13 @@
"price": 20.00,
"currency": "EUR",
""
"depends": [
"base",
],
"external_dependencies": {"python": [], "bin": []},
"data": [
"views/ir_rule_views.xml",
],
"qweb": [
],

View File

@ -1,3 +1,8 @@
`1.1.0`
-------
[ADD] - New setting in ``ir.rule`` model - to bypass website rules when working from backend
`1.0.0`
-------

View File

@ -10,7 +10,30 @@ Installation
Configuration
=============
This is a core technical module - no configurations are needed
* There is a new setting in each rule now - it is relevant only for website rules with special ``website_id`` parameter in them
* As usual open ``[[ Settings ]] >> Technical >> Security >> Record Rules`` to create a new rule or edit existing one
* You should see on rule form a new group named ``Multi-website extension`` with the ``Backend behaviour`` setting in it
* Leave this field empty if your rule has nothing to do with websites
* Select ``Grant access`` if you want to give access to model from backend, or ``Deny access`` - if you want to restrict
* Note: if you leave this fields empty for a rule that is using ``website_id`` parameter - you may have this kind of error when trying to configure your product's **website_ids** field from odoo backend:
::
The requested operation cannot be completed due to security restrictions. Please contact your system administrator.
(Document type: product.template, Operation: read)
from web-interface, or
::
INFO rw odoo.models: The requested operation cannot be completed due to record rules: Document type: product.template, Operation: read, Records: 47, User: 5
in odoo logs
This is so because in backend rules work in non-website context.
In other words the setting is mandatory for website rules.
Usage
=====
@ -26,5 +49,6 @@ Usage
<field name="name">Blogs available only for specifed websites</field>
<field name="model_id" ref="model_blog_blog"/>
<field name="domain_force">[('website_ids', 'in', [website_id])]</field>
<field name="backend_behaviour">true</field>
</record>
</odoo>

View File

@ -1,2 +1 @@
# -*- coding: utf-8 -*-
from . import ir_rule

View File

@ -1,12 +1,20 @@
# -*- coding: utf-8 -*-
from odoo import api, models, tools
from odoo.addons.base.ir.ir_rule import IrRule as IrRuleOriginal
from odoo import api, fields, models, tools, SUPERUSER_ID
from odoo.osv import expression
from odoo.tools.safe_eval import safe_eval
class IrRule(models.Model):
_inherit = 'ir.rule'
backend_behaviour = fields.Selection([
("true", "Grant access"),
("false", "Deny access"),
], string='Backend behaviour',
help="""This is bypass for main rule definition.
When working from backend there is usually no 'website_id' value in the rule evaluation context
and rules that using 'website_id' evaluated as False which is not always desirable""")
@api.model
def _eval_context(self):
context = super(IrRule, self)._eval_context()
@ -16,4 +24,44 @@ class IrRule(models.Model):
@api.model
@tools.ormcache_context('self._uid', 'model_name', 'mode', keys=["website_id"])
def _compute_domain(self, model_name, mode="read"):
return IrRuleOriginal._compute_domain.__wrapped__(self, model_name, mode=mode)
if mode not in self._MODES:
raise ValueError('Invalid mode: %r' % (mode,))
if self._uid == SUPERUSER_ID:
return None
query = """ SELECT r.id FROM ir_rule r JOIN ir_model m ON (r.model_id=m.id)
WHERE m.model=%s AND r.active AND r.perm_{mode}
AND (r.id IN (SELECT rule_group_id FROM rule_group_rel rg
JOIN res_groups_users_rel gu ON (rg.group_id=gu.gid)
WHERE gu.uid=%s)
OR r.global)
""".format(mode=mode)
self._cr.execute(query, (model_name, self._uid))
rule_ids = [row[0] for row in self._cr.fetchall()]
if not rule_ids:
return []
# browse user and rules as SUPERUSER_ID to avoid access errors!
eval_context = self._eval_context()
user_groups = self.env.user.groups_id
global_domains = [] # list of domains
group_domains = [] # list of domains
for rule in self.browse(rule_ids).sudo():
# BEGIN redefined part of original _compute_domain of odoo/base/addons/ir/ir_rule.
# have to redefine all method to take in account new ir.rule ``backend_behaviour`` setting
dom = []
if not eval_context.get('website_id') and rule.backend_behaviour:
dom = [(1, '=', 1)] if rule.backend_behaviour == 'true' else [(0, '=', 1)]
else:
# evaluate the domain for the current user
dom = safe_eval(rule.domain_force, eval_context) if rule.domain_force else []
dom = expression.normalize_domain(dom)
# END redefined part of original _compute_domain
if not rule.groups:
global_domains.append(dom)
elif rule.groups & user_groups:
group_domains.append(dom)
# combine global domains and group domains
return expression.AND(global_domains + [expression.OR(group_domains)])

View File

@ -1,2 +1 @@
# -*- coding: utf-8 -*-
from . import test_compute_domain

View File

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from openerp.tests.common import TransactionCase

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="view_rule_form_inherit_ir_rule_website" model="ir.ui.view">
<field name="name">ir.rule.form.inherit.ir_rule_website</field>
<field name="model">ir.rule</field>
<field name="inherit_id" ref="base.view_rule_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='domain_force']" position="after">
<group string="Multi-website extension">
<field name="backend_behaviour"/>
</group>
</xpath>
</field>
</record>
</odoo>

View File

@ -39,10 +39,6 @@ Multi-Theme
Roadmap
=======
* Currently, all websites share the same footer. Posible solution: add field to ``res.company`` or ``website`` model and use that in template, e.g.::
<div t-field="website.website_footer" class="oe_structure mt16"/>
* TODO: Create website.theme record automatically after theme installation (probably via inheriting ``button_install`` method)
Credits

View File

@ -1,11 +1,12 @@
# -*- coding: utf-8 -*-
# Copyright 2017-2018 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
{
"name": """Real Multi Website""",
"summary": """Yes, you can set up multi-company, multi-website, multi-theme, multi-eCommerce on a single database!""",
"category": "eCommerce",
"live_test_url": "http://apps.it-projects.info/shop/product/website-multi-company?version=11.0",
"images": ['images/website_multi_company_main.png'],
"version": "1.2.3",
"version": "11.0.1.2.4",
"application": False,
"author": "IT-Projects LLC, Ivan Yelizariev, Nicolas JEUDY",

View File

@ -1,4 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2018 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
# Copyright 2018 Ildar Nasyrov <https://it-projects.info/team/iledarn>
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
from odoo.http import request
from odoo.addons.website_sale.controllers.main import WebsiteSale
@ -10,4 +12,4 @@ class WebsiteSaleExtended(WebsiteSale):
company = request.website.company_id
if not company:
return domain
return [('company_id', '=', company.id)] + domain
return ['|', ('company_id', '=', company.id), ('company_id', '=', False)] + domain

View File

@ -1,3 +1,8 @@
`1.2.4`
-------
- **ADD:** Product with no company defined is allowed for all websites
`1.2.3`
-------

View File

@ -2,6 +2,9 @@
Real Multi Website
====================
.. contents::
:local:
Installation
============
@ -64,7 +67,7 @@ session information. There are two ways to do it:
In the latter case ``dbfilter`` is usually used, though it's not flexible enough.
using dbfilter parameter
Using dbfilter parameter
~~~~~~~~~~~~~~~~~~~~~~~~
For TESTING purpose you can use the following configuration:
@ -77,7 +80,7 @@ For TESTING purpose you can use the following configuration:
* example.shop2.local
* example.shop3.local
patching http.py
Patching http.py
~~~~~~~~~~~~~~~~
For PRODUCTION deployment with websites on subdomains you can use following patch. You need to update odoo/http.py file as following::
@ -112,7 +115,7 @@ Then you can use following configuration
* shop2.example.org
* shop3.example.org
using dbfilter_from_header module
Using dbfilter_from_header module
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Most flexible way to deploy multi-database system is using `dbfilter_from_header <https://www.odoo.com/apps/modules/10.0/dbfilter_from_header/>`__ (check module description for installation instruction).
@ -181,6 +184,16 @@ Example (we use top level domain ``.example`` due to copyright issues, but it co
}
}
Odoo.sh deployment
------------------
In the manager of your domain name registrar you need to add CNAME records for your domains (subdomains), for example:
* Create a CNAME record ``shop1.example.org`` pointing to <yourdatabase>.odoo.com
* Create a CNAME record ``shop2.example.org`` pointing to <yourdatabase>.odoo.com
* Create a CNAME record ``example.com`` pointing to <yourdatabase>.odoo.com
Similar for dev and staging database, but use corresponding domain in odoo.com, e.g. ``mywebsite-master-staging-12345689.dev.odoo.com``
Apache::
@ -214,7 +227,6 @@ Apache::
</VirtualHost>
Configuration
=============
@ -246,6 +258,13 @@ After installing theme, navigate to ``[[ Website ]] >> Configuration >> Multi-Th
If you get error *The style compilation failed*, add modules to **Dependencies** field. It allows to attach theme-like dependencies to corresponding theme and prevent themes compatibility problems.
Note: themes that depend on ``theme_common`` don't work in demo installation. To avoid this, you have to create database without demo data or comment out demo files in ``__manifest__.py`` file of ``theme_common`` module like this::
'demo': [
# 'demo/demo.xml',
],
Usage
=====
@ -275,7 +294,7 @@ Steps for eCommerce
* use ``[Action] -> Duplicate`` button
* don't forget to click ``[Unpublished On Website]`` button to activate it
* open ``[[ Sales ]] >> Products`` and create product per each company if they don't exist
* open ``[[ Sales ]] >> Products`` and create product per each company if they don't exist. If a product doesn't belong to any company (i.e. "Company" field is empty), this product will be available on each website you created.
* open HOST1/shop, make order, open backend -- created order belongs to COMPANY1
* open HOST2/shop, make order, open backend -- created order belongs to COMPANY2

View File

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import logging
from odoo import models, api

View File

@ -1,5 +1,9 @@
# Copyright 2018 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
from odoo import models, api
BASE_MODULES = ['website_blog', 'website_sale_comparison', 'website_sale_wishlist', 'web_settings_dashboard', 'website_crm', 'website_animate', 'website_mass_mailing', 'contacts', 'fetchmail', 'resource', 'calendar', 'snippet_google_map']
@ -14,16 +18,16 @@ class Module(models.Model):
return super(Module, self)._search(args, offset, limit, order, count, access_rights_uid)
@api.model
def _theme_dependencies_domain(self, theme_name):
"""Computes domain for dependencies of the theme, but without built-in dependencies"""
def _search_theme_dependencies(self, theme_name):
"""Search dependencies of the theme, but without built-in dependencies"""
if not theme_name:
return []
return self
self = self.with_context(search_theme_dependencies=False)
theme = self.search([('name', '=', theme_name)])
if not theme:
return []
return self
deps = theme.upstream_dependencies(exclude_states=('to remove'))
base_modules = self.search([('name', 'in', BASE_MODULES)])
@ -31,4 +35,4 @@ class Module(models.Model):
deps -= base_modules
deps -= base_deps
return [('id', 'in', deps.ids)]
return self.search([('id', 'in', deps.ids)])

View File

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from odoo import models, api

View File

@ -1,7 +1,9 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
import logging
from odoo import models
from odoo import models, api
_logger = logging.getLogger(__name__)
@ -9,5 +11,23 @@ _logger = logging.getLogger(__name__)
class Website(models.Model):
_inherit = "website"
@api.multi
def multi_theme_reload(self):
self.env['res.config.settings'].multi_theme_reload()
self.ensure_one()
# convert_assets and copy views for current website
self._multi_theme_activate()
@api.multi
def multi_theme_reload_list(self):
# only reloads list
self.env["website.theme"].search([])._convert_assets()
@api.multi
def _multi_theme_activate(self):
if not self.env.context.get('skip_converting_assets'):
# reload dependencies before activating
self.mapped('multi_theme_id')\
.upstream_dependencies()\
._convert_assets()
return super(Website, self)._multi_theme_activate()

View File

@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
from odoo import models, api

View File

@ -1,5 +1,9 @@
# Copyright 2018 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
# Copyright 2018 Ildar Nasyrov <https://it-projects.info/team/iledarn>
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
import logging
from odoo import models, fields
from odoo import models, fields, api
_logger = logging.getLogger(__name__)
@ -12,59 +16,44 @@ class WebsiteTheme(models.Model):
string="Theme's technical name",
help="")
dependency_ids = fields.Many2many(
'ir.module.module',
string="Dependencies",
help='Theme-like dependencies. Add modules here if you got error "The style compilation failed".')
@api.multi
def _convert_assets(self):
"""Generate assets for converted themes"""
Asset = self.env["website.theme.asset"]
for one in self.filtered("converted_theme_addon"):
# Get all views owned by the converted theme addon
refs = self.env["ir.model.data"].search([
("module", "in", [one.converted_theme_addon] + one.dependency_ids.mapped('name')),
("model", "=", "ir.ui.view"),
])
existing = frozenset(one.mapped("asset_ids.name"))
expected = frozenset(refs.mapped("complete_name"))
dangling = tuple(existing - expected)
# Create a new asset for each theme view
for ref in expected - existing:
view = self.env.ref(ref, raise_if_not_found=False)
if view and (view.type != 'qweb' or not view.inherit_id):
# Skip non-qweb (backend) views
for one in self:
assets_before = one.asset_ids
super(WebsiteTheme, one)._convert_assets()
assets_after = one.asset_ids
if not assets_before and assets_after:
# new theme: update dependencies
one.write(one._autofill_deps())
# Skip views without inherit_id, because those have new
# template definition only and after appliying multi-theme
# for several websites it will be copied and then it leads
# to error on compilation when any template with <t
# t-call="..."/> -- expected singleton
continue
@api.multi
def _autofill_deps(self):
self.ensure_one()
modules = self\
.env['ir.module.module']\
._search_theme_dependencies(
self.converted_theme_addon
).mapped('name')
_logger.debug("Creating asset %s for theme %s", ref, one.name)
existing_themes = self.search([
('converted_theme_addon', 'in', modules)
]).mapped('converted_theme_addon')
new_themes = set(modules) - set(existing_themes)
for converted_theme_addon in new_themes:
self.create({
'name': converted_theme_addon,
'converted_theme_addon': converted_theme_addon,
})
themes = self.search([('converted_theme_addon', 'in', modules)])
try:
themes |= self.env.ref('website_multi_theme.theme_default')
except:
pass
return {
'dependency_ids': [(6, 0, themes.ids)],
}
priority = 10
if view.model_data_id.module == one.converted_theme_addon:
# make less priority to apply views after all deps
priority = 100
one.asset_ids |= Asset.new({
"name": ref,
'priority': priority,
})
# Delete all dangling assets
if dangling:
_logger.debug(
"Removing dangling assets for theme %s: %s",
one.name, dangling)
Asset.search([("name", "in", dangling)]).unlink()
# Turn all assets multiwebsite-only
Asset._find_and_deactivate_views()
class WebsiteThemeAsset(models.Model):
_inherit = "website.theme.asset"
_order = 'priority,id'
priority = fields.Integer()
@api.onchange('converted_theme_addon')
def onchange_converted_theme_addon(self):
self.update(self._autofill_deps())

View File

@ -6,10 +6,11 @@
<field name="inherit_id" ref="website.res_config_settings_view_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='website_id']" position="attributes">
<attribute name="readonly">1</attribute>
<attribute name="invisible"></attribute>
</xpath>
<xpath expr="//field[@name='website_id']/../label" position="attributes">
<attribute name="string">Default Website</attribute>
<xpath expr="//button[@name='multi_theme_reload']" position="attributes">
<attribute name="string">Reload Theme List &amp; Update all websites</attribute>
<attribute name="context">{'skip_converting_assets': True}</attribute>
</xpath>
</field>
</record>

View File

@ -9,8 +9,14 @@
<sheet>
<group>
<field name="name"/>
<field name="converted_theme_addon" required="1"/>
<field name="dependency_ids" widget="many2many_tags" context="{'search_theme_dependencies': converted_theme_addon}" attrs="{'invisible': [('converted_theme_addon', '=', False)]}"/>
<field name="converted_theme_addon"/>
<field name="dependency_ids"
widget="many2many_tags"
/>
<field name="asset_ids"
string="Views"
widget="many2many_tags"
domain="[('auto', '=', False)]"/>
</group>
</sheet>
</form>
@ -21,7 +27,7 @@
<field name="name">website.theme.tree</field>
<field name="model">website.theme</field>
<field name="arch" type="xml">
<tree string="Multi-theme">
<tree>
<field name="name"/>
<field name="converted_theme_addon"/>
</tree>

View File

@ -10,12 +10,21 @@
<group name="domain">
<label for="multi_theme_id"/>
<div>
<field name="multi_theme_id" string="Multi Theme"/>
<field name="multi_theme_id" string="Multi Theme" required="True"/>
<!--Edit mode-->
<button icon="fa-refresh"
string="Reload Themes"
help="Use it if you installed theme, but cannot find it in the list"
type="object"
class="oe_inline oe_edit_only"
name="multi_theme_reload_list"/>
<!--Read mode (non-edit) AND debug mode-->
<button icon="fa-refresh"
string="Update Website Theme"
help="Update Theme for current website. Normally used when theme is changed"
type="object"
groups="base.group_no_one"
class="oe_inline oe_read_only ml8"
name="multi_theme_reload"/>
</div>
<field name="favicon" widget="image" class="oe_avatar oe_left"/>

View File

@ -8,6 +8,37 @@ Website Multi Theme
Allow the website admin to set a different theme for each website.
The *theme* might be not just a theme-module, but any set of themes and even
particular views from any module (e.g. view ``website.custom_footer`` from
``website`` module). It also means, that *theme* is not just a styling, but
a content as well.
How it works
============
Core idea is as following
* Find views created by *theme-module* and mark them as *multi-views* (``website.theme.asset``) additionally to one specified manually via XML (see `demo/themes.xml <demo/themes.xml>`_ as an example). The method `_convert_assets <models/website_theme.py>`_ is responsible for it.
* Set ``active`` to ``False`` for *multi-views*. See method `_find_and_deactivate_views <models/website_theme.py>`_.
* Apply *Multi-theme* (record in new model ``website.theme``) to the specific
website. See method `_multi_theme_activate <models/website.py>`_
* Make some magic with technical views ``website.assets_frontend`` and ``website.layout``.
* Duplicate *patterns* from `templates/patterns.xml <templates/patterns.xml>`_
* In ``layout_pattern`` replace ``{theme_view}`` placeholder to a duplicate
of ``assets_pattern``
* Corresponding duplicated *pattern* will be used as a new value for
``inherit_id`` field in duplicated *multi-views* that originally extend
``web.assets_frontend``, ``website.assets_frontend`` or
``website.layout``.
* Duplicate *multi-views* of the *multi-theme* and its *dependencies* (other
*multi-themes*). In duplicates, the field ``inherit_id`` is changed to other
duplicated views or duplicated *patterns* when possible
Installation
============
@ -54,6 +85,8 @@ To configure this module, you need to:
a *Website*.
#. Press *Advanced > Multiwebsite theme > Reload*.
#. In *Advanced > Multiwebsite theme*, pick one of the available themes.
#. Via Edit button (``fa-external-link``) add *Default Theme* to *Sub-themes* of
the selected theme to make multi-footer work.
Once you save, any website that has no *Multiwebsite theme* selected will have,
the default plain Bootstrap theme, and those that do have one will get it.
@ -62,7 +95,7 @@ Of course, your Odoo instance must be reachable by all of the provided host
names, or nobody will ever see the effect. But that is most likely configured
through your DNS provider and/or proxy, so it is not a matter of this addon.
If you want to test this behavior, think that ``localhost`` and ``127.0.0.1``
If you want to test this behavior, think that ``localhost`` and ``0.0.0.0``
are different host names.
Usage
@ -145,7 +178,7 @@ Contributors
* Rafael Blasco <rafael.blasco@tecnativa.com>
* Antonio Espinosa <antonio.espinosa@tecnativa.com>
* Jairo Llopis <jairo.llopis@tecnativa.com>
* `Ivan Yelizariev <https://it-projects.info/team/yelizariev>`__
* Ivan Yelizariev <https://it-projects.info/team/yelizariev>
Maintainer
----------

View File

@ -1,14 +1,15 @@
# Copyright 2015 Antiun Ingenieria S.L. - Antonio Espinosa
# Copyright 2017 Jairo Llopis <jairo.llopis@tecnativa.com>
# Copyright 2018 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
{
"name": "Website Multi Theme",
"summary": "Support different theme per website",
"version": "11.0.1.0.1",
"version": "11.0.1.4.0",
"category": "Website",
"website": "https://www.tecnativa.com",
"author": "Tecnativa, Odoo Community Association (OCA)",
"author": "Tecnativa, IT-Projects LLC, Odoo Community Association (OCA)",
"license": "LGPL-3",
"application": False,
"installable": True,
@ -22,6 +23,9 @@
"data/themes_private.xml",
"templates/assets.xml",
"templates/patterns.xml",
"data/themes_default.xml",
"views/ir_ui_view.xml",
"data/ir_module_category.xml",
],
"demo": [
"demo/pages.xml",

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2018 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). -->
<odoo>
<record model="ir.module.category" id="base.module_category_theme">
<field name="exclusive" eval="False"/>
</record>
</odoo>

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2018 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). -->
<odoo>
<!-- Default theme. It's basically a workaround for "Multi-customization"
feature which requires theme be set -->
<record model="website.theme" id="theme_default">
<field name="name">Default Theme</field>
</record>
<record model="website.theme.asset" id="theme_default_asset_footer_custom">
<field name="name">website.footer_custom</field>
<field name="theme_id" ref="theme_default"/>
</record>
<!-- This method prepare assets and applies default theme for all websites -->
<function model="res.config.settings"
name="multi_theme_reload"
eval="([],)"
/>
</odoo>

View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2017 Jairo Llopis <jairo.llopis@tecnativa.com>
Copyright 2018 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). -->
<odoo>
@ -20,6 +21,7 @@
<!-- Record that lets website admin to choose this theme -->
<record model="website.theme" id="demo_multi">
<field name="name">Multiwebsite Demo Theme</field>
<field name="dependency_ids" eval="[(4, ref('website_multi_theme.theme_default'))]"/>
</record>
<!-- List provided assets -->
@ -28,6 +30,72 @@
<field name="theme_id" ref="demo_multi"/>
</record>
<!-- Website snippets -->
<template id="snippet_selection" inherit_id="website.snippets">
<xpath expr="//div[@id='snippet_structure']/div[hasclass('o_panel_body')]/t[@t-snippet='website.s_image_text']" position="after">
<t t-snippet="website_multi_theme.s_demo1" t-thumbnail="/website_multi_theme/static/src/img/snippets/s_demo.png"/>
<t t-snippet="website_multi_theme.s_demo2" t-thumbnail="/website_multi_theme/static/src/img/snippets/s_demo.png"/>
</xpath>
</template>
<template id="s_demo1" name="Demo Cat">
<section class="s_demo1">
<div class="container">
<div class="row">
<div class="col-md-12">
<pre>
/\____/\ __
.' """" `,-' `--.__
__,- : - - ; " :: `-. -.__
,-sssss `._ `' _,'" ,'~~~::`.sssss-.
|ssssss ,' ,_`--'_ __,' :: ` `.ssssss|
|sssssss `-._____~ `,,'_______,---_;; ssssss|
|ssssssssss `--'~{__ ____ ,'ssssss|
`-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'
`---.sssssssssssssssssssss.---' Susie Oviatt
</pre>
</div>
</div>
</div>
</section>
</template>
<template id="s_demo2" name="Demo Dog">
<section class="s_demo2">
<div class="container">
<div class="row">
<div class="col-md-12">
<pre>
____
,-'-, `---._
_______(0} `, , ` , )
V ; ` , ` ( ,'~~~~~~`,
`.____,- ' (, ` , ) :`,-'""`. ";
`-------._); , ` `, \;: )``:
) ) ; ` ,, : `` : ';
( (`;: ; ` ;:\ ;;;,
(: )``;:;;)`'`'`--. _____ ____ _,-';;`
:` )`;)`)`' : "~~~ ~~~~~ ~~~`--',.;;;'
`--;~~~~~ ` , ", """, " " "` ",, \ ;``
( ; , ` ; `; ;
(; ; ; ` ,` ` :
(; / ; ; ` ; ; :
;(_; ; : ; ; `; ;` ; ; ,,,""";} `;
: `; `; ` : ` `,,;,'''' );;`); ;
;' :; ; : ``'`' (;` :( ; , ;
|, `;; ,`` `)`; `(; ` `;
; ;; ``: `).:` \;, `.
,-' ;`;;:;` ;;'`;; `) )
~~~,-`;`;," ~~~~~ ,-' ; Targon
"""""" `"""""
</pre>
</div>
</div>
</div>
</section>
</template>
<!-- Themes should always call this method after adding their stuff,
to make users get immediate availability, insead of having to
reload themes. -->

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Afrikaans (https://www.transifex.com/oca/teams/23907/af/)\n"
"Language: af\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: af\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Webtuiste"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,11 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
@ -35,11 +96,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +148,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +178,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +217,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +253,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +264,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "الموقع"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +421,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +474,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +526,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +551,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +582,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Уебсайт"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,11 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n"
"Language: bs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: bs\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
@ -35,11 +96,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +148,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +178,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +217,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +253,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +264,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Web stranica"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +421,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +474,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +526,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +551,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +582,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Lloc web"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Webová stránka"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Hjemmeside"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Webseite"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Greek (https://www.transifex.com/oca/teams/23907/el/)\n"
"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Ιστότοπος"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -11,13 +11,74 @@ msgstr ""
"POT-Creation-Date: 2018-01-16 03:45+0000\n"
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n"
"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/"
"el_GR/)\n"
"Language: el_GR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: el_GR\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +96,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +148,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +178,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +217,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +253,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +264,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Ιστότοπος"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +421,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +474,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +526,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +551,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +582,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -11,13 +11,74 @@ msgstr ""
"POT-Creation-Date: 2018-01-16 03:45+0000\n"
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n"
"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/"
"teams/23907/en_GB/)\n"
"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: en_GB\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +96,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +148,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +178,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +217,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +253,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +264,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Website"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +421,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +474,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +526,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +551,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +582,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
# Alberte Moço, 2018
@ -13,12 +13,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-27 03:46+0000\n"
"Last-Translator: Alberte Moço, 2018\n"
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -36,11 +96,46 @@ msgstr "Recursos"
msgid "Assets view"
msgstr "Vista de recursos"
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -53,12 +148,29 @@ msgstr "Creado por"
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -66,12 +178,38 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
#, fuzzy
msgid "Has Assets"
msgstr "Recursos"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -80,6 +218,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -98,12 +254,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -115,6 +265,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Sitio Web"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -266,8 +422,52 @@ msgstr "El nombre debe ser único en cada tema"
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -275,6 +475,46 @@ msgstr ""
msgid "Reload"
msgstr "Recargar"
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -287,6 +527,12 @@ msgstr ""
msgid "This is a demo page"
msgstr "Esta es una página de demo"
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -306,9 +552,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -333,6 +583,63 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
#, fuzzy
msgid "Your Name"
msgstr "Nombre"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -11,13 +11,74 @@ msgstr ""
"POT-Creation-Date: 2018-01-16 03:45+0000\n"
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n"
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/"
"teams/23907/es_AR/)\n"
"Language: es_AR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_AR\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +96,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +148,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +178,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +217,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +253,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +264,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Sitio web"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +421,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +474,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +526,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +551,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +582,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -11,13 +11,74 @@ msgstr ""
"POT-Creation-Date: 2018-01-16 03:45+0000\n"
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n"
"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/"
"es_CL/)\n"
"Language: es_CL\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_CL\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +96,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +148,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +178,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +217,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +253,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +264,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Sitio Web"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +421,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +474,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +526,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +551,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +582,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -11,13 +11,74 @@ msgstr ""
"POT-Creation-Date: 2018-01-16 03:45+0000\n"
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n"
"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/"
"es_CO/)\n"
"Language: es_CO\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_CO\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +96,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +148,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +178,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +217,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +253,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +264,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Sitio Web"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +421,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +474,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +526,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +551,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +582,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -11,13 +11,74 @@ msgstr ""
"POT-Creation-Date: 2018-01-16 03:45+0000\n"
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n"
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/"
"teams/23907/es_CR/)\n"
"Language: es_CR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_CR\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +96,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +148,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +178,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +217,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +253,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +264,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Sitio web"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +421,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +474,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +526,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +551,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +582,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -11,13 +11,74 @@ msgstr ""
"POT-Creation-Date: 2018-01-16 03:45+0000\n"
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n"
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/"
"teams/23907/es_DO/)\n"
"Language: es_DO\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_DO\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +96,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +148,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +178,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +217,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +253,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +264,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Sitio web"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +421,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +474,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +526,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +551,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +582,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -11,13 +11,74 @@ msgstr ""
"POT-Creation-Date: 2018-01-16 03:45+0000\n"
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n"
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/"
"es_EC/)\n"
"Language: es_EC\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_EC\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +96,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +148,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +178,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +217,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +253,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +264,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Sitio web"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +421,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +474,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +526,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +551,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +582,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -11,13 +11,74 @@ msgstr ""
"POT-Creation-Date: 2018-01-16 03:45+0000\n"
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n"
"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/"
"es_MX/)\n"
"Language: es_MX\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_MX\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +96,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +148,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +178,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +217,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +253,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +264,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Sitio Web"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +421,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +474,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +526,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +551,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +582,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -11,13 +11,74 @@ msgstr ""
"POT-Creation-Date: 2018-01-16 03:45+0000\n"
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n"
"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/"
"es_PE/)\n"
"Language: es_PE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_PE\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +96,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +148,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +178,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +217,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +253,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +264,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Sitio Web"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +421,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +474,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +526,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +551,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +582,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n"
"Language: et\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: et\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Veebileht"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Website"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fa\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "تارنما"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Verkkosivut"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
# Quentin THEURET <odoo@kerpeo.com>, 2018
@ -13,12 +13,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: Quentin THEURET <odoo@kerpeo.com>, 2018\n"
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -38,11 +98,46 @@ msgstr "Ressources"
msgid "Assets view"
msgstr "Vue de ressources"
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr "Addon du thème converti"
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -55,20 +150,55 @@ msgstr "Créé par"
msgid "Created on"
msgstr "Créé le"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr "Nom affiché"
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
"External ID of the assets view that inherits from `website.assets_frontend` "
"and adds the theme requirements."
msgstr ""
"L'ID externe des vues de ressources qui hérite depuis "
"'website.assets_frontend' et ajoute les besoins du thème."
"L'ID externe des vues de ressources qui hérite depuis 'website."
"assets_frontend' et ajoute les besoins du thème."
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
#, fuzzy
msgid "Has Assets"
msgstr "Ressources"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
@ -76,6 +206,14 @@ msgstr ""
msgid "ID"
msgstr "ID"
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -86,6 +224,24 @@ msgstr ""
"Indique si la vue était originellement active avant de convertir le seul "
"thème du site Web qui le contient dans le mode de sites Web multiples."
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -104,12 +260,6 @@ msgstr "Dernière mise à jour par"
msgid "Last Updated on"
msgstr "Dernière mise à jour le"
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr "Thèmes multiples générés"
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -121,6 +271,12 @@ msgstr "Page de démonstration du thème multisites"
msgid "Multi-theme"
msgstr "Multi-theme"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Thème multisite "
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -272,17 +428,102 @@ msgstr "Le nom doit être unique pour chaque thème"
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
"Le nom de l'addon du thème qui est converti du mode simple au mode "
"multisites."
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_website_config_settings
msgid "Reload"
msgstr "Recharger"
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
#, fuzzy
msgid "Sub-themes"
msgstr "Multi-theme"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -295,15 +536,21 @@ msgstr "Thème"
msgid "This is a demo page"
msgstr "Ceci est une page de démonstration"
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
"View that will be enabled when this theme is used in any website, and "
"disabled otherwise. Usually used to load assets."
msgstr ""
"Les vues qui seront activées quand ce thème sera utilisé dans n'importe quel"
" site Web, et désactivées dans l'autre cas. Généralement utilisé pour "
"charger les ressources."
"Les vues qui seront activées quand ce thème sera utilisé dans n'importe quel "
"site Web, et désactivées dans l'autre cas. Généralement utilisé pour charger "
"les ressources."
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_multi_theme_view_ids
@ -317,11 +564,14 @@ msgid "Was Active"
msgstr "Était actif"
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
"Est-ce que cette page a été auto-générée par le module website_multi_theme ?"
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_website
@ -347,6 +597,63 @@ msgstr ""
"Vous devez voir le bouton avec la bordure verte si ce site Web a activé le "
"thème de démonstration."
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
#, fuzzy
msgid "Your Name"
msgstr "Nom"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"
@ -371,3 +678,11 @@ msgstr "website.theme"
#: model:ir.model,name:website_multi_theme.model_website_theme_asset
msgid "website.theme.asset"
msgstr "website.theme.asset"
#~ msgid "Multi Theme Generated"
#~ msgstr "Thèmes multiples générés"
#~ msgid "Was this view autogenerated by website_multi_theme?"
#~ msgstr ""
#~ "Est-ce que cette page a été auto-générée par le module "
#~ "website_multi_theme ?"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: gl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Sitio web"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n"
"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: he\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "אתר"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,11 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hr\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
@ -35,11 +96,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +148,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +178,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +217,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +253,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +264,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Web stranice"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +421,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +474,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +526,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +551,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +582,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -11,12 +11,74 @@ msgstr ""
"POT-Creation-Date: 2018-01-16 03:45+0000\n"
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n"
"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/"
"hr_HR/)\n"
"Language: hr_HR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hr_HR\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
@ -35,11 +97,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +149,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +179,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +218,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +254,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +265,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Webstranice"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +422,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +475,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +527,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +552,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +583,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Honlap"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n"
"Language: id\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: id\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Situs Web"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Sito"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ja\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "ウェブサイト"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Georgian (https://www.transifex.com/oca/teams/23907/ka/)\n"
"Language: ka\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ka\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "ვებსაიტი"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Kabyle (https://www.transifex.com/oca/teams/23907/kab/)\n"
"Language: kab\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: kab\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Asmel Web"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n"
"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ko\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "웹사이트"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,11 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n"
"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lt\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
"%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
@ -35,11 +96,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +148,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +178,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +217,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +253,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +264,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Tinklapis"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +421,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +474,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +526,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +551,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +582,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,11 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lv\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
"2);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
@ -35,11 +96,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +148,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +178,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +217,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +253,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +264,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Tīkla vietne"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +421,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +474,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +526,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +551,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +582,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n"
"Language: mk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: mk\n"
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Вебсајт"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n"
"Language: mn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: mn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Вэбсайт"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -11,13 +11,74 @@ msgstr ""
"POT-Creation-Date: 2018-01-16 03:45+0000\n"
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n"
"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/"
"nb/)\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: nb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +96,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +148,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +178,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +217,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +253,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +264,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Nettsted"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +421,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +474,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +526,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +551,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +582,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n"
"Language: 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: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Website"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
# Frank Schellenberg <opensource@schellenberg.nl>, 2018
@ -12,13 +12,74 @@ msgstr ""
"POT-Creation-Date: 2018-01-27 03:46+0000\n"
"PO-Revision-Date: 2018-01-27 03:46+0000\n"
"Last-Translator: Frank Schellenberg <opensource@schellenberg.nl>, 2018\n"
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n"
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/"
"teams/23907/nl_NL/)\n"
"Language: nl_NL\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: nl_NL\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -36,11 +97,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -53,12 +149,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -66,12 +179,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -80,6 +218,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -98,12 +254,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -115,6 +265,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Website"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -266,8 +422,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -275,6 +475,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -287,6 +527,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -306,9 +552,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -333,6 +583,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,11 +12,73 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: pl\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n"
"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
@ -35,11 +97,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +149,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +179,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +218,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +254,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +265,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Strona WWW"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +422,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +475,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +527,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +552,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +583,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -11,13 +11,74 @@ msgstr ""
"POT-Creation-Date: 2018-01-16 03:45+0000\n"
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n"
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/"
"teams/23907/pt_BR/)\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +96,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +148,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +178,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +217,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +253,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +264,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Website"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +421,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +474,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +526,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +551,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +582,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,11 +12,73 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ru\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
"%100>=11 && n%100<=14)? 2 : 3);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
@ -35,11 +97,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +149,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +179,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +218,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +254,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +265,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Сайт"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +422,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +475,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +527,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +552,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +583,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sk\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Webová stránka"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,11 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sl\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
"%100==4 ? 2 : 3);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
@ -35,11 +96,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +148,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +178,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +217,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +253,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +264,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Spletna stran"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +421,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +474,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +526,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +551,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +582,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,11 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n"
"Language: sr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sr\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
@ -35,11 +96,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +148,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +178,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +217,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +253,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +264,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Web stranica"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +421,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +474,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +526,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +551,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +582,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -11,12 +11,74 @@ msgstr ""
"POT-Creation-Date: 2018-01-16 03:45+0000\n"
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr%40latin/)\n"
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr"
"%40latin/)\n"
"Language: sr@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sr@latin\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
@ -35,11 +97,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +149,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +179,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +218,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +254,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +265,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Internet stranica"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +422,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +475,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +527,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +552,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +583,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sv\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Webbplats"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n"
"Language: th\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: th\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "เว็บไซต์"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: tr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Web Sitesi"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,11 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: uk\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
@ -35,11 +96,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +148,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +178,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +217,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +253,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +264,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Веб-сайт"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +421,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +474,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +526,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +551,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +582,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -12,12 +12,72 @@ msgstr ""
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n"
"Language: vi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: vi\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +95,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +147,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +177,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +216,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +252,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +263,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "Trang web"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +420,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +473,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +525,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +550,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +581,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -0,0 +1,635 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 11.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid "/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid "Asset views that will be disabled by default and enabled only in websites that enable this theme in multiwebsite mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_ids
msgid "Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_id
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
msgid "Created by"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_date
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_date
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid "External ID of the assets view that inherits from `website.assets_frontend` and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid "If theme is splitted in different theme-modules, they should be in this list. \"Default theme\" should be here too in order to make some features (e.g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
msgid "Indicates if the view was originally active before converting the single website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
msgid "Last Modified on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_write_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_write_uid
msgid "Last Updated by"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_write_date
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_write_date
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
msgid "Multi website theme demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_website_config_settings
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Multi-website"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.artists_multi
msgid "Multiwebsite Artists Theme"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.avantgarde_multi
msgid "Multiwebsite Avantgarde Theme"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.beauty_multi
msgid "Multiwebsite Beauty Theme"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.bewise_multi
msgid "Multiwebsite Bewise Theme"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.bistro_multi
msgid "Multiwebsite Bistro Theme"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.bookstore_multi
msgid "Multiwebsite Bookstore Theme"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.bootswatch_multi
msgid "Multiwebsite Bootswatch Theme"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.clean_multi
msgid "Multiwebsite Clean Theme"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.demo_multi
msgid "Multiwebsite Demo Theme"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.enark_multi
msgid "Multiwebsite Enark Theme"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.graphene_multi
msgid "Multiwebsite Graphene Theme"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.kea_multi
msgid "Multiwebsite Kea Theme"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.loftspace_multi
msgid "Multiwebsite Loftspace Theme"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.monglia_multi
msgid "Multiwebsite Monglia Theme"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.nano_multi
msgid "Multiwebsite Nano Theme"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.notes_multi
msgid "Multiwebsite Notes Theme"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.odoo_experts_multi
msgid "Multiwebsite Odoo_experts Theme"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.orchid_multi
msgid "Multiwebsite Orchid Theme"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.treehouse_multi
msgid "Multiwebsite Treehouse Theme"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.vehicle_multi
msgid "Multiwebsite Vehicle Theme"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.yes_multi
msgid "Multiwebsite Yes Theme"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.zap_multi
msgid "Multiwebsite Zap Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_res_config_settings_multi_theme_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_multi_theme_id
msgid "Multiwebsite theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_multi_theme_view_ids
msgid "Multiwebsite views"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_res_config_settings_multi_theme_id
#: model:ir.model.fields,help:website_multi_theme.field_website_multi_theme_id
msgid "Multiwebsite-compatible theme for this website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_name
msgid "Name"
msgstr ""
#. module: website_multi_theme
#: sql_constraint:website.theme:0
msgid "Name must be unique"
msgstr ""
#. module: website_multi_theme
#: sql_constraint:website.theme.asset:0
msgid "Name must be unique in each theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Name of the theme addon that is being converted from single to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our products are designed for small to medium size companies willing to optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_website_config_settings
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.demo_page_ir_ui_view
#: model:ir.ui.view,arch_db:website_multi_theme.demo_page_view
#: model:website.page,arch_db:website_multi_theme.demo_page
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid "View that will be enabled when this theme is used in any website, and disabled otherwise. Usually used to load assets."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_multi_theme_view_ids
msgid "Views generated by the multiwebsite theme just for this website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_was_active
msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_website
#: model:ir.ui.view,arch_db:website_multi_theme.view_website_config_settings
msgid "Website"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.demo_page_ir_ui_view
#: model:ir.ui.view,arch_db:website_multi_theme.demo_page_view
#: model:website.page,arch_db:website_multi_theme.demo_page
msgid "Website domain:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.demo_page_ir_ui_view
#: model:ir.ui.view,arch_db:website_multi_theme.demo_page_view
#: model:website.page,arch_db:website_multi_theme.demo_page
msgid "You should see the button with a ugly green border if this website has enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid "____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_ui_view
msgid "ir.ui.view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_res_config_settings
msgid "res.config.settings"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_website_theme
msgid "website.theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_website_theme_asset
msgid "website.theme.asset"
msgstr ""

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -11,13 +11,74 @@ msgstr ""
"POT-Creation-Date: 2018-01-16 03:45+0000\n"
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n"
"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/"
"zh_CN/)\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +96,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +148,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +178,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +217,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +253,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +264,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "网站"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +421,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +474,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +526,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +551,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +582,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_multi_theme
#
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
@ -11,13 +11,74 @@ msgstr ""
"POT-Creation-Date: 2018-01-16 03:45+0000\n"
"PO-Revision-Date: 2018-01-16 03:45+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n"
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/"
"zh_TW/)\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: zh_TW\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "&amp;times;"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ""
",\n"
" updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", author:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid ", updated:"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo1
msgid ""
"/\\____/\\ __\n"
" .' \"\"\"\" `,-' `--.__\n"
" __,- : - - ; \" :: `-. -.__\n"
" ,-sssss `._ `' _,'\" ,'~~~::`.sssss-.\n"
" |ssssss ,' ,_`--'_ __,' :: ` `.ssssss|\n"
" |sssssss `-._____~ `,,'_______,---_;; ssssss|\n"
" |ssssssssss `--'~{__ ____ ,'ssssss|\n"
" `-ssssssssssssssssss ~~~~~~~~~~~~ ssss.-'\n"
" `---.sssssssssssssssssssss.---' Susie Oviatt"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_324
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_324
msgid "<b>Sign in</b>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid ""
"<span class=\"btn btn-primary btn-lg o_website_form_send\">Send</span>\n"
" <span id=\"o_website_form_result\"/>"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "About us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_ids
msgid ""
@ -35,11 +96,46 @@ msgstr ""
msgid "Assets view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_auto
msgid "Auto-generated"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Connect with us"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Contact us"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_converted_theme_addon
msgid "Converted Theme Addon"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_origin_view_id
msgid "Copied from"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multitheme_copy_ids
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Copies"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_auto
msgid "Created automatically from theme view"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_create_uid
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_create_uid
@ -52,12 +148,29 @@ msgstr ""
msgid "Created on"
msgstr ""
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.theme_default
msgid "Default Theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_display_name
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_display_name
msgid "Display Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multitheme_copy_ids
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multitheme_copy_ids
msgid "Duplicates of this view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Email"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_name
msgid ""
@ -65,12 +178,37 @@ msgid ""
"and adds the theme requirements."
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_has_assets
msgid "Has Assets"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Home"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Homepage"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_id
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_id
msgid "ID"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_dependency_ids
msgid ""
"If theme is splitted in different theme-modules, they should be in this "
"list. \"Default theme\" should be here too in order to make some features (e."
"g. footer) work on each website independently"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_was_active
#: model:ir.model.fields,help:website_multi_theme.field_website_page_was_active
@ -79,6 +217,24 @@ msgid ""
"website theme that owns it to multi website mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Information about the"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Applications"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Installed Modules"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme___last_update
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset___last_update
@ -97,12 +253,6 @@ msgstr ""
msgid "Last Updated on"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,field_description:website_multi_theme.field_website_page_multi_theme_generated
msgid "Multi Theme Generated"
msgstr ""
#. module: website_multi_theme
#: model:website.menu,name:website_multi_theme.menu_demo_page
#: model:website.menu,name:website_multi_theme.menu_demo_page2
@ -114,6 +264,12 @@ msgstr ""
msgid "Multi-theme"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
#, fuzzy
msgid "Multi-website"
msgstr "網站"
#. module: website_multi_theme
#: model:website.theme,name:website_multi_theme.anelusia_multi
msgid "Multiwebsite Anelusia Theme"
@ -265,8 +421,52 @@ msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_converted_theme_addon
msgid ""
"Name of the theme addon that is being converted from single to multi website"
" mode."
"Name of the theme addon that is being converted from single to multi website "
"mode."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Note: To hide this page, uncheck it from the top Customize menu."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Odoo Version"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Open Source ERP"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.view_view_form_extend
msgid "Original view"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid "Our Products &amp; Services"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"Our products are designed for small to medium size companies willing to "
"optimize\n"
" their performance."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Phone Number"
msgstr ""
#. module: website_multi_theme
@ -274,6 +474,46 @@ msgstr ""
msgid "Reload"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_view_priority
msgid "Sequence"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_dependency_ids
msgid "Sub-themes"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Subject"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 2"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_400
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_400
msgid "Subtitle 3"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "Technical name:"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,field_description:website_multi_theme.field_website_theme_asset_theme_id
msgid "Theme"
@ -286,6 +526,12 @@ msgstr ""
msgid "This is a demo page"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_origin_view_id
#: model:ir.model.fields,help:website_multi_theme.field_website_page_origin_view_id
msgid "View from where this one was copied for multi-website"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_website_theme_asset_view_id
msgid ""
@ -305,9 +551,13 @@ msgid "Was Active"
msgstr ""
#. module: website_multi_theme
#: model:ir.model.fields,help:website_multi_theme.field_ir_ui_view_multi_theme_generated
#: model:ir.model.fields,help:website_multi_theme.field_website_page_multi_theme_generated
msgid "Was this view autogenerated by website_multi_theme?"
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_402
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_402
msgid ""
"We are a team of passionate people whose goal is to improve everyone's\n"
" life through disruptive products. We build great "
"products to solve your\n"
" business problems."
msgstr ""
#. module: website_multi_theme
@ -332,6 +582,62 @@ msgid ""
"enabled the demo theme."
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Company"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Name"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_544
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_544
msgid "Your Question"
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.s_demo2
msgid ""
"____\n"
" ,-'-, `---._\n"
" _______(0} `, , ` , )\n"
" V ; ` , ` ( ,'~~~~~~`,\n"
" `.____,- ' (, ` , ) :`,-'\"\"`. \";\n"
" `-------._); , ` `, \\;: )``:\n"
" ) ) ; ` ,, : `` : ';\n"
" ( (`;: ; ` ;:\\ ;;;,\n"
" (: )``;:;;)`'`'`--. _____ ____ _,-';;`\n"
" :` )`;)`)`' : \"~~~ ~~~~~ ~~~`--',.;;;'\n"
" `--;~~~~~ ` , \", \"\"\", \" \" \"` \",, \\ ;``\n"
" ( ; , ` ; `; ;\n"
" (; ; ; ` ,` ` :\n"
" (; / ; ; ` ; ; :\n"
" ;(_; ; : ; ; `; ;` ; ; ,,,\"\"\";} `;\n"
" : `; `; ` : ` `,,;,'''' );;`); ;\n"
" ;' :; ; : ``'`' (;` :( ; , ;\n"
" |, `;; ,`` `)`; `(; ` `;\n"
" ; ;; ``: `).:` \\;, `.\n"
" ,-' ;`;;:;` ;;'`;; `) )\n"
" ~~~,-`;`;,\" ~~~~~ ,-' ; Targon\n"
" \"\"\"\"\"\" `\"\"\"\"\""
msgstr ""
#. module: website_multi_theme
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_1_410
#: model:ir.ui.view,arch_db:website_multi_theme.auto_view_2_410
msgid "instance of Odoo, the"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_model_data
msgid "ir.model.data"
msgstr ""
#. module: website_multi_theme
#: model:ir.model,name:website_multi_theme.model_ir_qweb
msgid "ir.qweb"

View File

@ -0,0 +1,15 @@
# Copyright 2017 Tecnativa - Jairo Llopis
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).
def migrate(cr, version):
"""Restore affected non-qweb views."""
cr.execute("""
DELETE FROM ir_ui_view
WHERE type != 'qweb' AND multi_theme_generated = TRUE
""")
cr.execute("""
UPDATE ir_ui_view
SET active = TRUE, was_active = FALSE
WHERE type != 'qweb' AND was_active = TRUE
""")

View File

@ -0,0 +1,41 @@
# Copyright 2018 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
import logging
from odoo import api, SUPERUSER_ID
_logger = logging.getLogger(__name__)
def migrate(cr, version):
# migrate multi_theme_generated to origin_view_id
cr.execute("""SELECT id FROM ir_ui_view
WHERE multi_theme_generated_tmp IS TRUE""")
ids = [result[0] for result in cr.fetchall()]
_logger.debug('Views with multi_theme_generated: %s', ids)
env = api.Environment(cr, SUPERUSER_ID, {})
for view in env['ir.ui.view'].browse(ids):
# extract origin_view_id from name field
# which has one of following pattern:
#
# * LAYOUT_KEY = MODULE + ".auto_layout_website_%d"
# * ASSETS_KEY = MODULE + ".auto_assets_website_%d"
# * VIEW_KEY = MODULE + ".auto_view_%d_%d"
name = view.model_data_id.name
if 'auto_view_' in name:
origin_view_id = int(name.split('_')[-1])
elif 'auto_layout_website_' in name:
origin_view_id = env.ref("website_multi_theme.layout_pattern").id
elif 'auto_assets_website_' in name:
origin_view_id = env.ref("website_multi_theme.assets_pattern").id
_logger.debug('set origin_view_id %s for view %s',
origin_view_id, view.id)
view.write({'origin_view_id': origin_view_id})
# remove column
cr.execute("ALTER TABLE ir_ui_view DROP COLUMN multi_theme_generated_tmp")

View File

@ -0,0 +1,9 @@
# Copyright 2018 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
def migrate(cr, version):
# rename column to update data in "post-..." script
cr.execute("ALTER TABLE ir_ui_view "
"RENAME COLUMN multi_theme_generated "
"TO multi_theme_generated_tmp")

View File

@ -4,3 +4,4 @@ from . import ir_qweb
from . import ir_ui_view
from . import website_theme
from . import website
from . import ir_model_data

View File

@ -0,0 +1,39 @@
# Copyright 2018 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
import logging
from odoo import models, api
_logger = logging.getLogger(__name__)
class IrModelData(models.Model):
_inherit = 'ir.model.data'
@api.model
def create(self, vals):
"""Catch cases of creating customize_show views. Reload theme to make new
customize_show view available right after new module installation. It's
also needed for CI tests when another modules expects new item in
"Customize menu".
We cannot override ir.ui.view model to do it, because it's created
before creating ir.model.data, which is essential for
multi_theme_reload
FIXME: themes are reloaded as much times as new module has views with
customize_show
"""
res = super(IrModelData, self).create(vals)
if (vals.get('model') == 'ir.ui.view' and
not self.env.context.get('duplicate_view_for_website')):
view = self.env['ir.ui.view'].browse(vals.get('res_id'))
if view.customize_show:
_logger.debug('Call multi_theme_reload '
'after creating Customize View "%s"',
vals.get('name'))
self.env['res.config.settings'].multi_theme_reload()
return res

View File

@ -1,4 +1,5 @@
# Copyright 2017 Jairo Llopis <jairo.llopis@tecnativa.com>
# Copyright 2018 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
from odoo import models
@ -21,3 +22,9 @@ class IrQweb(models.AbstractModel):
if self.env.ref(alt_xmlid, False):
xmlid = alt_xmlid
return super(IrQweb, self)._get_asset(xmlid, *args, **kwargs)
# Workaround for https://github.com/odoo/odoo/pull/24429
def _compile_directive_snippet(self, el, options):
return super(IrQweb, self.with_context(
search_multi_website_snippet=options.get('website_id')
))._compile_directive_snippet(el, options)

View File

@ -1,9 +1,12 @@
# Copyright 2017 Jairo Llopis <jairo.llopis@tecnativa.com>
# Copyright 2018 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
import logging
from lxml import etree
from odoo import fields, models
from odoo import fields, models, api
from odoo.http import request
_logger = logging.getLogger(__name__)
@ -12,12 +15,57 @@ _logger = logging.getLogger(__name__)
class IrUiView(models.Model):
_inherit = 'ir.ui.view'
multi_theme_generated = fields.Boolean(
name="Generated from multi theme module",
readonly=True,
help="Was this view autogenerated by website_multi_theme?",
)
was_active = fields.Boolean(
readonly=True,
help="Indicates if the view was originally active before converting "
"the single website theme that owns it to multi website mode.",
)
origin_view_id = fields.Many2one(
"ir.ui.view",
string="Copied from",
readonly=True,
help="View from where this one was copied for multi-website"
)
multitheme_copy_ids = fields.One2many(
"ir.ui.view",
"origin_view_id",
string="Copies",
readonly=True,
help="Duplicates of this view"
)
@api.model
def get_related_views(self, key, bundles=False):
"""This method is used to prepare items
in 'Customize' menu of website Editor"""
views = super(IrUiView, self).get_related_views(
key, bundles=bundles
)
current_website = request.website
return views.filtered(lambda v: v.website_id == current_website)
@api.multi
def _replace_parent(self, new_parent):
for view in self:
view.inherit_id = new_parent
data = etree.fromstring(view.arch)
data.attrib["inherit_id"] = new_parent.key
view.arch = etree.tostring(data)
# Workaround for https://github.com/odoo/odoo/pull/24429
def search(self, domain, offset=0, limit=None, order=None, count=False):
if self.env.context.get('search_multi_website_snippet'):
website_id = self.env.context['search_multi_website_snippet']
domain += [
'|',
('website_id', '=', website_id),
('website_id', '=', False)
]
order = 'website_id DESC'
limit = 1
_logger.debug('Updated domain: %s', domain)
res = super(IrUiView, self).search(
domain, offset=offset, limit=limit, order=order, count=count)
return res

View File

@ -1,10 +1,10 @@
# Copyright 2015 Antiun Ingenieria S.L. - Antonio Espinosa
# Copyright 2017 Jairo Llopis <jairo.llopis@tecnativa.com>
# Copyright 2018 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
import logging
from lxml import etree
from odoo import api, models, fields
from odoo.tools import config
@ -22,13 +22,15 @@ class Website(models.Model):
multi_theme_id = fields.Many2one(
string="Multiwebsite theme",
comodel_name='website.theme',
domain=[("asset_ids.view_id", "!=", False)],
domain=[("has_assets", "=", True)],
help="Multiwebsite-compatible theme for this website",
default=lambda self: self.env.ref('website_multi_theme.theme_default',
raise_if_not_found=False)
)
multi_theme_view_ids = fields.One2many(
comodel_name="ir.ui.view",
inverse_name="website_id",
domain=[("multi_theme_generated", "=", True),
domain=[("origin_view_id", "!=", False),
"|", ("active", "=", True), ("active", "=", False)],
string="Multiwebsite views",
help="Views generated by the multiwebsite theme just for this website",
@ -47,6 +49,13 @@ class Website(models.Model):
self._multi_theme_activate()
return result
@api.multi
def _find_duplicated_view_for_website(self, origin_view):
self.ensure_one()
xmlid = VIEW_KEY % (self.id, origin_view.id)
return self.env.ref(xmlid, raise_if_not_found=False)
@api.multi
def _duplicate_view_for_website(self, pattern, xmlid, override_key):
"""Duplicate a view pattern and enable it only for current website.
@ -80,19 +89,16 @@ class Website(models.Model):
result = pattern.copy({
"active": pattern.was_active,
"arch_fs": False,
"customize_show": False,
"key": key,
"multi_theme_generated": True,
"name": u"{} (Multi-website {} for {})".format(
pattern.name,
xmlid,
self.display_name,
),
"name": '%s (Website #%s)' % (pattern.name, self.id),
"website_id": self.id,
"origin_view_id": pattern.id,
})
# Assign external IDs to new views
module, name = xmlid.split(".")
self.env["ir.model.data"].create({
self.env["ir.model.data"].with_context(
duplicate_view_for_website=True
).create({
"model": result._name,
"module": module,
"name": name,
@ -120,15 +126,22 @@ class Website(models.Model):
assets_pattern = self.env.ref("website_multi_theme.assets_pattern")
layout_pattern = self.env.ref("website_multi_theme.layout_pattern")
for website in self:
# Websites without multi theme need to clean their previous views
if not website.multi_theme_id:
_logger.info(
"Deleting multi website theme views for %s: %s",
website.display_name,
website.multi_theme_view_ids,
default_theme = self.env.ref(
'website_multi_theme.theme_default',
raise_if_not_found=False,
)
website.multi_theme_view_ids.unlink()
continue
if not default_theme:
_logger.info(
"Deleting multi website theme views for %s: %s",
website.display_name,
website.multi_theme_view_ids,
)
website.multi_theme_view_ids.unlink()
continue
else:
website.multi_theme_id = default_theme
# Duplicate multi theme patterns for this website
custom_assets = website._duplicate_view_for_website(
assets_pattern,
@ -151,26 +164,52 @@ class Website(models.Model):
"active": True,
})
# Duplicate all theme's views for this website
for origin_view in website.mapped(
"multi_theme_id.asset_ids.view_id"):
for origin_view in website\
.multi_theme_id\
.get_assets()\
.mapped("view_id"):
copied_view = website._duplicate_view_for_website(
origin_view,
VIEW_KEY % (website.id, origin_view.id),
False
)
# Applied views must inherit from custom assets or layout
new_parent = None
if copied_view.inherit_id & main_views:
data = etree.fromstring(copied_view.arch)
if copied_view.inherit_id & main_assets_frontend:
copied_view.inherit_id = custom_assets
data.attrib["inherit_id"] = custom_assets.key
new_parent = custom_assets
elif copied_view.inherit_id & main_layout:
copied_view.inherit_id = custom_layout
data.attrib["inherit_id"] = custom_layout.key
copied_view.arch = etree.tostring(data)
new_parent = custom_layout
else:
parent_view = copied_view.inherit_id
# check if parent was copied, so we need inherit that
# instead of original parent, which is deactivated and not
# used
copied_parent = website._find_duplicated_view_for_website(
parent_view
)
if copied_parent:
new_parent = copied_parent
if new_parent:
copied_view._replace_parent(new_parent)
custom_views |= copied_view
# Delete any custom view that should exist no more
(website.multi_theme_view_ids - custom_views).unlink()
views_to_remove = website.multi_theme_view_ids - custom_views
# Removed views could be a copied parent for others
# So, replace to original parent first
views_to_replace_parent = \
self.env['ir.ui.view']\
.with_context(active_test=False)\
.search([
('inherit_id', 'in', views_to_remove.ids)
])
for view in views_to_replace_parent:
view._replace_parent(view.inherit_id.origin_view_id)
views_to_remove.unlink()
_logger.info(
"Updated multi website theme views for %s: %s",
website.display_name,

View File

@ -1,5 +1,6 @@
# Copyright 2015 Antiun Ingenieria S.L. - Antonio Espinosa
# Copyright 2017 Jairo Llopis <jairo.llopis@tecnativa.com>
# Copyright 2018 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
import logging
@ -24,6 +25,16 @@ class WebsiteTheme(models.Model):
help="Name of the theme addon that is being converted from single to "
"multi website mode.",
)
dependency_ids = fields.Many2many(
"website.theme",
"website_theme_dependency_rel",
"theme1", "theme2",
string="Sub-themes",
help="If theme is splitted in different theme-modules, "
"they should be in this list. \"Default theme\" should be here too "
"in order to make some features (e.g. footer) "
"work on each website independently",
)
asset_ids = fields.One2many(
comodel_name="website.theme.asset",
inverse_name="theme_id",
@ -31,24 +42,81 @@ class WebsiteTheme(models.Model):
help="Asset views that will be disabled by default and enabled only "
"in websites that enable this theme in multiwebsite mode.",
)
has_assets = fields.Boolean(compute='_compute_has_assets', store=True)
@api.multi
@api.depends('dependency_ids', 'asset_ids')
def _compute_has_assets(self):
for r in self:
r.has_assets = bool(r.get_assets())
@api.multi
def upstream_dependencies(self):
"""Returns the theme and all its dependencies"""
themes = self
while True:
new_deps = themes.mapped('dependency_ids') - themes
if new_deps:
themes |= new_deps
else:
break
return themes
@api.multi
def get_assets(self):
"""Assets of the theme and all its dependencies"""
return self.upstream_dependencies().mapped('asset_ids')
def _convert_assets(self):
"""Generate assets for converted themes"""
Asset = self.env["website.theme.asset"]
for one in self.filtered("converted_theme_addon"):
# Get all views owned by the converted theme addon
refs = self.env["ir.model.data"].search([
("module", "=", one.converted_theme_addon),
("model", "=", "ir.ui.view"),
])
existing = frozenset(one.mapped("asset_ids.name"))
expected = frozenset(refs.mapped("complete_name"))
common_refs = self.env["ir.model.data"]
# add views with customize_show menu, so we can activate them per
# website independently
common_refs |= self.env['ir.ui.view']\
.with_context(active_test=False)\
.search([
('website_id', '=', False),
('customize_show', '=', True),
]).mapped('model_data_id')
_logger.debug('common_refs: %s', common_refs.mapped('complete_name'))
for one in self:
refs = self.env["ir.model.data"]
if one.converted_theme_addon:
# Get all views owned by the converted theme addon
refs |= self.env["ir.model.data"].search([
("module", "=", one.converted_theme_addon),
("model", "=", "ir.ui.view"),
])
if refs or one.asset_ids:
# add common_refs only for installed themes
refs |= common_refs
views = self.env["ir.ui.view"].with_context(active_test=False) \
.search([
("id", "in", refs.mapped("res_id")),
("type", "=", "qweb"),
])
existing = frozenset(
one
.mapped("asset_ids")
.filtered("auto")
.mapped("name")
)
expected = frozenset(views.mapped("xml_id"))
dangling = tuple(existing - expected)
# Create a new asset for each theme view
for ref in expected - existing:
_logger.debug("Creating asset %s for theme %s", ref, one.name)
one.asset_ids |= Asset.new({
"name": ref,
"auto": True,
})
# Delete all dangling assets
if dangling:
@ -62,6 +130,7 @@ class WebsiteTheme(models.Model):
class WebsiteThemeAsset(models.Model):
_name = "website.theme.asset"
_order = 'view_priority,view_id,id'
_sql_constraints = [
("name_theme_uniq", "UNIQUE(name, theme_id)",
"Name must be unique in each theme"),
@ -85,6 +154,16 @@ class WebsiteThemeAsset(models.Model):
help="View that will be enabled when this theme is used in any "
"website, and disabled otherwise. Usually used to load assets.",
)
view_priority = fields.Integer(
related='view_id.priority',
store=True,
readonly=True,
)
auto = fields.Boolean(
string="Auto-generated",
help="Created automatically from theme view",
default=False,
)
@api.model
def _find_and_deactivate_views(self):

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -12,7 +12,7 @@ odoo.define('website_multi_theme.theme', function(require){
}
theme.include({
update_style: function (enable, disable, reload) {
update_style: function () {
var links = multi_theme_links();
if (links.length) {
// Placeholder for dynamically-loaded assets upstream

View File

@ -6,7 +6,7 @@
<template
id="layout_pattern"
inherit_id="website.layout"
name="Template for replacing assets_frontend"
name="Main layout"
active="False">
<!-- Replace assets to make good use of caching -->
<xpath expr="//t[@t-call-assets='web.assets_frontend'][@t-js='false']"

Some files were not shown because too many files have changed in this diff Show More