documentation"

This commit is contained in:
Benoît Vézina 2023-09-28 08:13:46 -04:00
parent 8daef2ae48
commit 15b6c95e65
154 changed files with 4931 additions and 56 deletions

View file

@ -3,7 +3,9 @@
from odoo import models, fields, api
from odoo.exceptions import ValidationError
class DeliveryCarrier(models.Model):
_inherit = 'delivery.carrier'
# this allow us to enable the auto create package feature per delivery.carrier

View file

@ -3,54 +3,51 @@
from odoo import models, fields, api
from odoo.exceptions import ValidationError
class StockQuantPackage(models.Model):
_inherit = 'stock.quant.package'
length = fields.Float('Length')
width = fields.Float('Width')
height = fields.Float('Height')
carrier_id = fields.Many2one(
comodel_name='delivery.carrier',
string='Carrier',
help="Carrier use to create package.",
compute='_compute_package_carrier'
)
carrier_id = fields.Many2one( comodel_name='delivery.carrier',
string='Carrier',
help="Carrier use to create package.",
compute='_compute_package_carrier' )
provider = fields.Selection(
selection=lambda self: self._get_provider(),
string='Provider',
help="Provider to create package.",
compute='_compute_package_carrier'
)
provider = fields.Selection( selection=lambda self: self._get_provider(),
string='Provider',
help="Provider to create package.",
compute='_compute_package_carrier' )
auto_create_package = fields.Boolean(
string='Auto Create Package',
compute='_compute_auto_create_package'
)
auto_create_package = fields.Boolean( string='Auto Create Package',
compute='_compute_auto_create_package' )
@api.depends('carrier_id')
def _compute_auto_create_package(self):
# Look so much like a related field
for record in self:
record.auto_create_package = record.carrier_id.auto_create_package if record.carrier_id else False
def _compute_package_carrier(self):
move_line = self.env['stock.move.line'].search([('result_package_id', '=', self.id)])
# This also look like a related field and might not even be needed as we only need it to get the provider
self.carrier_id = move_line.carrier_id
delivery_types_available = [item[0] for item in self.env['stock.package.type']._fields['package_carrier_type'].selection]
# This is a bit of a hack to get the provider from the carrier_id, depending if carrier is integrated or not
if self.carrier_id.delivery_type not in delivery_types_available:
self.provider = False
else:
self.provider = move_line.carrier_id.delivery_type
def _get_package_carrier_types(self):
return self.env['stock.package.type']._fields['package_carrier_type'].selection
def _get_provider(self):
# just cloning the selection from stock.package.type tru a lambda function
return self.env['stock.package.type']._fields['package_carrier_type'].selection
@ -59,7 +56,7 @@ class StockQuantPackage(models.Model):
# check if length, width, height are greater than 0
if vals['length'] <= 0 or vals['width'] <= 0 or vals['height'] <= 0:
raise ValidationError('Length, width, and height must be greater than 0.')
# Make sure length is always greater than width
# Make sure length is always greater than width, otherwise swap them
if vals['length'] < vals['width']:
vals['length'], vals['width'] = vals['width'], vals['length']
# check if existing package_type exists
@ -69,20 +66,19 @@ class StockQuantPackage(models.Model):
('packaging_length', '=', vals['length']),
('package_carrier_type', '=', self.provider)
], limit=1)
# ])
# if not, create new package_type
if not package_type:
package_type = self.env['stock.package.type'].create({
'name': f'Box {vals["width"]}x{vals["height"]}x{vals["length"]}',
'name': f'Box {vals["length"]}x{vals["width"]}x{vals["height"]}',
'width': vals['width'],
'height': vals['height'],
'packaging_length': vals['length'],
'package_carrier_type': self.provider
})
# update package_type_id
vals['package_type_id'] = package_type.id
res = super(StockQuantPackage, self).write(vals)
# check if length, width, height are changed
return res

View file

@ -11,9 +11,12 @@
attrs="{'invisible': [('package_type_id', '=', False),('auto_create_package', '=', True)]}"/>
<field name="carrier_id" attrs="{'invisible': 1}"/>
<field name="provider" attrs="{'invisible': 1}"/>
<field name="length" attrs="{'invisible': ['|', ('package_type_id', '!=', False), ('auto_create_package', '!=', True)]}"/>
<field name="width" attrs="{'invisible': ['|', ('package_type_id', '!=', False), ('auto_create_package', '!=', True)]}"/>
<field name="height" attrs="{'invisible': ['|', ('package_type_id', '!=', False), ('auto_create_package', '!=', True)]}"/>
<field name="length"
attrs="{'invisible': ['|', ('package_type_id', '!=', False), ('auto_create_package', '!=', True)]}"/>
<field name="width"
attrs="{'invisible': ['|', ('package_type_id', '!=', False), ('auto_create_package', '!=', True)]}"/>
<field name="height"
attrs="{'invisible': ['|', ('package_type_id', '!=', False), ('auto_create_package', '!=', True)]}"/>
</field>
</field>
</record>

View file

@ -2,66 +2,53 @@
from odoo import models, fields, api
from math import ceil
from odoo.exceptions import ValidationError
class ChooseDeliveryPackage(models.TransientModel):
_inherit = 'choose.delivery.package'
length = fields.Float('Length')
width = fields.Float('Width')
height = fields.Float('Height')
auto_create_package = fields.Boolean(
string='Auto Create Package',
)
provider = fields.Selection(
selection=lambda self: self._get_provider(),
string='Provider',
help="Provider to create package.",
)
auto_create_package = fields.Boolean(string='Auto Create Package', default=False)
provider = fields.Selection(selection=lambda self: self._get_provider(), string='Provider')
@api.model
def default_get(self, fields_list):
# This is a bit of a hack to get the provider from the carrier_id, depending if carrier is integrated or not
defaults = super().default_get(fields_list)
if 'provider' in fields_list:
# get related picking
picking = self.env['stock.picking'].browse(defaults.get('picking_id'))
delivery_types_available = [item[0] for item in self.env['stock.package.type']._fields['package_carrier_type'].selection]
# generate list of available delivery types keeping only the first element of the tuple
delivery_types_available = \
[item[0] for item in self.env['stock.package.type']._fields['package_carrier_type'].selection]
# if carrier is not integrated, provider is False
if picking.carrier_id.delivery_type not in delivery_types_available:
defaults['provider'] = False
defaults['auto_create_package'] = False
else:
# if carrier is integrated, provider is the delivery_type and carry auto_create_package from carrier
defaults['provider'] = picking.carrier_id.delivery_type
defaults['auto_create_package'] = picking.carrier_id.auto_create_package
return defaults
def _get_provider(self):
# just cloning the selection from stock.package.type tru a lambda function
return self.env['stock.package.type']._fields['package_carrier_type'].selection
# def _compute_auto_create_package(self):
# for record in self:
# record.auto_create_package = record.carrier_id.auto_create_package if record.carrier_id else False
#
# def _compute_provider(self):
# move_line = self.env['stock.move.line'].search([('result_package_id', '=', self.id)])
# delivery_types_available = [item[0] for item in self.env['stock.package.type']._fields['package_carrier_type'].selection]
# if self.picking_id.carrier_id.delivery_type not in delivery_types_available:
# self.provider = False
# else:
# self.provider = move_line.carrier_id.delivery_type
#
def action_put_in_pack(self):
# this override is call only for delivery.carrier with auto_create_package = True. Ideal for odoo test
if self.auto_create_package:
if self.width <= 0 or self.height <= 0 or self.length <= 0:
# Obviously, we need value for our wizard to work
raise ValidationError('Length, width, and height must be greater than 0.')
# Make sure length is always greater than width, otherwise swap them
if self.length < self.width:
self.length, self.width = self.width, self.length
# that search is carier.delivery integration agnostic
delivery_package_type = self.env['stock.package.type'].search([
('width', '=', self.width),
('height', '=', self.height),
@ -69,6 +56,7 @@ class ChooseDeliveryPackage(models.TransientModel):
('package_carrier_type', '=', self.provider)
], limit=1)
# if no package type found, create one
if not delivery_package_type:
delivery_package_type = delivery_package_type.create({
'name': f'Box {vals["width"]}x{vals["height"]}x{vals["length"]}',

View file

@ -10,8 +10,7 @@
<field name="delivery_package_type_id"
domain="[('package_carrier_type', '=', context.get('current_package_carrier_type', 'none'))]"
context="{'form_view_ref':'stock.stock_package_type_form'}"
attrs="{'invisible': [('auto_create_package', '=', True)]}"
/>
attrs="{'invisible': [('auto_create_package', '=', True)]}" />
<field name="length" attrs="{'invisible': [('auto_create_package', '=', False)]}"/>
<field name="width" attrs="{'invisible': [('auto_create_package', '=', False)]}"/>
<field name="height" attrs="{'invisible': [('auto_create_package', '=', False)]}"/>

27
theme_durpro/LICENSE Normal file
View file

@ -0,0 +1,27 @@
Odoo Proprietary License v1.0
This software and associated files (the "Software") may only be used (executed,
modified, executed after modifications) if you have purchased a valid license
from the authors, typically via Odoo Apps, or if you have received a written
agreement from the authors of the Software (see the COPYRIGHT file).
You may develop Odoo modules that use the Software as a library (typically
by depending on it, importing it and using its resources), but without copying
any source code or material from the Software. You may distribute those
modules under the license of your choice, provided that this license is
compatible with the terms of the Odoo Proprietary License (For example:
LGPL, MIT, or proprietary licenses similar to this one).
It is forbidden to publish, distribute, sublicense, or sell copies of the Software
or modified copies of the Software.
The above copyright notice and this permission notice must be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.

3
theme_durpro/__init__.py Normal file
View file

@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import models

View file

@ -0,0 +1,34 @@
{
'name': 'Durpro Theme',
'description': 'Durpro Adaptation of durpro.',
'category': 'Theme/Corporate',
'summary': 'Durpro Adaptation of durpro.',
'sequence': 110,
'version': '2.0.1',
'author': 'Bemade.org.',
'data': [
'data/ir_asset.xml',
'views/images_library.xml',
'views/customizations.xml',
],
'images': [
'static/description/durpro_poster.jpg',
'static/description/durpro_screenshot.jpg',
],
'images_preview_theme': {
'website.s_cover_default_image': '/theme_durpro/static/src/img/pictures/bg_image_08.jpg',
'website.s_text_image_default_image': '/theme_durpro/static/src/img/pictures/content_02.jpg',
'website.s_parallax_default_image': '/theme_durpro/static/src/img/pictures/content_12.jpg',
'website.s_picture_default_image': '/theme_durpro/static/src/img/pictures/content_04.jpg',
},
'snippet_lists': {
'homepage': ['s_cover', 's_text_image', 's_numbers', 's_picture', 's_comparisons'],
},
'depends': ['theme_common'],
'license': 'LGPL-3',
'assets': {
'website.assets_editor': [
'theme_durpro/static/src/js/tour.js',
],
}
}

View file

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="theme_durpro.s_showcase_slider_000_variables_scss" model="theme.ir.asset">
<field name="key">theme_durpro.s_showcase_slider_000_variables_scss</field>
<field name="name">Showcase slider 000 variables SCSS</field>
<field name="bundle">web._assets_primary_variables</field>
<field name="path">theme_durpro/static/src/old_snippets/s_showcase_slider/000_variables.scss</field>
<field name="active" eval="False"/>
</record>
<record id="theme_durpro.primary_variables_scss" model="theme.ir.asset">
<field name="key">theme_durpro.primary_variables_scss</field>
<field name="name">Primary variables SCSS</field>
<field name="bundle">web._assets_primary_variables</field>
<field name="directive">append</field>
<field name="path">theme_durpro/static/src/scss/primary_variables.scss</field>
</record>
<record id="theme_durpro.secondary_variables_scss" model="theme.ir.asset">
<field name="key">theme_durpro.secondary_variables_scss</field>
<field name="name">Secondary variables SCSS</field>
<field name="bundle">web._assets_secondary_variables</field>
<field name="path">theme_durpro/static/src/scss/secondary_variables.scss</field>
</record>
<record id="theme_durpro.bootstrap_overridden_scss" model="theme.ir.asset">
<field name="key">theme_durpro.bootstrap_overridden_scss</field>
<field name="name">Bootstrap overridden SCSS</field>
<field name="bundle">web._assets_frontend_helpers</field>
<field name="directive">prepend</field>
<field name="path">theme_durpro/static/src/scss/bootstrap_overridden.scss</field>
</record>
<record id="theme_durpro.custom_styles_scss" model="theme.ir.asset">
<field name="key">theme_durpro.custom_styles_scss</field>
<field name="name">Custom Styles SCSS</field>
<field name="bundle">web._assets_frontend</field>
<field name="directive">append</field>
<field name="path">theme_durpro/static/src/scss/custom_styles.scss</field>
</record>
</odoo>

206
theme_durpro/i18n/de.po Normal file
View file

@ -0,0 +1,206 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * theme_durpro
#
# Translators:
# Martin Trigaux, 2021
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 15.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-13 08:00+0000\n"
"PO-Revision-Date: 2021-12-13 08:08+0000\n"
"Last-Translator: Martin Trigaux, 2021\n"
"Language-Team: German (https://www.transifex.com/odoo/teams/41243/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "24/7 support"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_call_to_action
msgid "<b>50,000+ companies</b> run our software."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover
msgid "<b>Making the difference.</b>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Aline is one of the iconic people in life who can say they love what "
"they do. She mentors 100+ in-house developers and looks after the community "
"of thousands of developers.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Founder and chief visionary, Tony is the driving force behind the "
"company. He loves to keep his hands full by participating in the development"
" of the software, marketing, and customer experience strategies.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Iris, with her international experience, helps us easily understand "
"the numbers and improves them. She is determined to drive success and "
"delivers her professional acumen to bring the company to the next "
"level.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Mich loves taking on challenges. With his multi-year experience as "
"Commercial Director in the software industry, Mich has helped the company to"
" get where it is today. Mich is among the best minds.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "Access to all modules"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "Access to all modules and features"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Add to Cart"
msgstr "In den Warenkorb"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Aline Turner, <small><b>CTO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover
msgid "Contact us"
msgstr "Kontakt"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Get Delivered"
msgstr "Ausgeliefert bekommen"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_picture
msgid "Grow with Us"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Iris Joe, <small><b>CFO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Mich Stark, <small><b>COO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid "Mobile Experience"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover
msgid ""
"Our mission is to give customers the best experience.<br/>Extensive "
"documentation &amp; guides, an active community,<br/>24/7 support make it a "
"pleasure to work with us."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Pay"
msgstr "Zahlen"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid "Powerful API"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid ""
"Probably the only CRM with a full mobile experience. Never wondered how it "
"works? That's because it just works"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_picture
msgid ""
"Put your people at the heart of your marketing with tools that help you get "
"to know your audience <br/>and see who you should be talking to."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Sign In"
msgstr "Sign In"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "Start Now"
msgstr "Jetzt loslegen"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid "Support Team"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid ""
"Thanks to our API, Developers report building their solutions 4x faster. "
"Discover why and how."
msgstr ""
#. module: theme_durpro
#: model:ir.model,name:theme_durpro.model_theme_utils
msgid "Theme Utils"
msgstr "Thema-Werkzeuge"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Tony Fred, <small><b>CEO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_text_image
msgid "Unique experiences to drive engagement"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_text_image
msgid ""
"Users are looking to consume engaging content.<br/>We empowers our teams to "
"create the most relevant content."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid ""
"We have a support team that will do everything to answer you as quickly as "
"the voice assistants."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_text_image
msgid "We have one goal in mind, the user satisfaction."
msgstr ""

207
theme_durpro/i18n/es.po Normal file
View file

@ -0,0 +1,207 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * theme_durpro
#
# Translators:
# Martin Trigaux, 2021
# Jonatan Gk, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 15.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-13 08:00+0000\n"
"PO-Revision-Date: 2021-12-13 08:08+0000\n"
"Last-Translator: Jonatan Gk, 2022\n"
"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "24/7 support"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_call_to_action
msgid "<b>50,000+ companies</b> run our software."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover
msgid "<b>Making the difference.</b>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Aline is one of the iconic people in life who can say they love what "
"they do. She mentors 100+ in-house developers and looks after the community "
"of thousands of developers.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Founder and chief visionary, Tony is the driving force behind the "
"company. He loves to keep his hands full by participating in the development"
" of the software, marketing, and customer experience strategies.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Iris, with her international experience, helps us easily understand "
"the numbers and improves them. She is determined to drive success and "
"delivers her professional acumen to bring the company to the next "
"level.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Mich loves taking on challenges. With his multi-year experience as "
"Commercial Director in the software industry, Mich has helped the company to"
" get where it is today. Mich is among the best minds.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "Access to all modules"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "Access to all modules and features"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Add to Cart"
msgstr "Añadir a la carrito"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Aline Turner, <small><b>CTO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover
msgid "Contact us"
msgstr "Contáctenos"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Get Delivered"
msgstr "Obtener entregado"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_picture
msgid "Grow with Us"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Iris Joe, <small><b>CFO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Mich Stark, <small><b>COO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid "Mobile Experience"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover
msgid ""
"Our mission is to give customers the best experience.<br/>Extensive "
"documentation &amp; guides, an active community,<br/>24/7 support make it a "
"pleasure to work with us."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Pay"
msgstr "Pagar"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid "Powerful API"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid ""
"Probably the only CRM with a full mobile experience. Never wondered how it "
"works? That's because it just works"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_picture
msgid ""
"Put your people at the heart of your marketing with tools that help you get "
"to know your audience <br/>and see who you should be talking to."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Sign In"
msgstr "Registrar entrada"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "Start Now"
msgstr "Empezar ahora"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid "Support Team"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid ""
"Thanks to our API, Developers report building their solutions 4x faster. "
"Discover why and how."
msgstr ""
#. module: theme_durpro
#: model:ir.model,name:theme_durpro.model_theme_utils
msgid "Theme Utils"
msgstr "Herramientas del tema"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Tony Fred, <small><b>CEO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_text_image
msgid "Unique experiences to drive engagement"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_text_image
msgid ""
"Users are looking to consume engaging content.<br/>We empowers our teams to "
"create the most relevant content."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid ""
"We have a support team that will do everything to answer you as quickly as "
"the voice assistants."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_text_image
msgid "We have one goal in mind, the user satisfaction."
msgstr ""

206
theme_durpro/i18n/fr.po Normal file
View file

@ -0,0 +1,206 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * theme_durpro
#
# Translators:
# Martin Trigaux, 2021
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 15.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-13 08:00+0000\n"
"PO-Revision-Date: 2021-12-13 08:08+0000\n"
"Last-Translator: Martin Trigaux, 2021\n"
"Language-Team: French (https://www.transifex.com/odoo/teams/41243/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "24/7 support"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_call_to_action
msgid "<b>50,000+ companies</b> run our software."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover
msgid "<b>Making the difference.</b>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Aline is one of the iconic people in life who can say they love what "
"they do. She mentors 100+ in-house developers and looks after the community "
"of thousands of developers.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Founder and chief visionary, Tony is the driving force behind the "
"company. He loves to keep his hands full by participating in the development"
" of the software, marketing, and customer experience strategies.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Iris, with her international experience, helps us easily understand "
"the numbers and improves them. She is determined to drive success and "
"delivers her professional acumen to bring the company to the next "
"level.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Mich loves taking on challenges. With his multi-year experience as "
"Commercial Director in the software industry, Mich has helped the company to"
" get where it is today. Mich is among the best minds.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "Access to all modules"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "Access to all modules and features"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Add to Cart"
msgstr "Ajouter au panier"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Aline Turner, <small><b>CTO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover
msgid "Contact us"
msgstr "Contactez-nous"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Get Delivered"
msgstr "Soyez livré"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_picture
msgid "Grow with Us"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Iris Joe, <small><b>CFO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Mich Stark, <small><b>COO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid "Mobile Experience"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover
msgid ""
"Our mission is to give customers the best experience.<br/>Extensive "
"documentation &amp; guides, an active community,<br/>24/7 support make it a "
"pleasure to work with us."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Pay"
msgstr "Payer"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid "Powerful API"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid ""
"Probably the only CRM with a full mobile experience. Never wondered how it "
"works? That's because it just works"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_picture
msgid ""
"Put your people at the heart of your marketing with tools that help you get "
"to know your audience <br/>and see who you should be talking to."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Sign In"
msgstr "Pointer l'entrée"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "Start Now"
msgstr "Démarrer maintenant"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid "Support Team"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid ""
"Thanks to our API, Developers report building their solutions 4x faster. "
"Discover why and how."
msgstr ""
#. module: theme_durpro
#: model:ir.model,name:theme_durpro.model_theme_utils
msgid "Theme Utils"
msgstr "Thèmes utiles"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Tony Fred, <small><b>CEO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_text_image
msgid "Unique experiences to drive engagement"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_text_image
msgid ""
"Users are looking to consume engaging content.<br/>We empowers our teams to "
"create the most relevant content."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid ""
"We have a support team that will do everything to answer you as quickly as "
"the voice assistants."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_text_image
msgid "We have one goal in mind, the user satisfaction."
msgstr ""

207
theme_durpro/i18n/it.po Normal file
View file

@ -0,0 +1,207 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * theme_durpro
#
# Translators:
# Martin Trigaux, 2021
# Sergio Zanchetta <primes2h@gmail.com>, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 15.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-13 08:00+0000\n"
"PO-Revision-Date: 2021-12-13 08:08+0000\n"
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2022\n"
"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/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: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "24/7 support"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_call_to_action
msgid "<b>50,000+ companies</b> run our software."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover
msgid "<b>Making the difference.</b>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Aline is one of the iconic people in life who can say they love what "
"they do. She mentors 100+ in-house developers and looks after the community "
"of thousands of developers.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Founder and chief visionary, Tony is the driving force behind the "
"company. He loves to keep his hands full by participating in the development"
" of the software, marketing, and customer experience strategies.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Iris, with her international experience, helps us easily understand "
"the numbers and improves them. She is determined to drive success and "
"delivers her professional acumen to bring the company to the next "
"level.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Mich loves taking on challenges. With his multi-year experience as "
"Commercial Director in the software industry, Mich has helped the company to"
" get where it is today. Mich is among the best minds.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "Access to all modules"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "Access to all modules and features"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Add to Cart"
msgstr "Aggiungi al carrello"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Aline Turner, <small><b>CTO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover
msgid "Contact us"
msgstr "Contattaci"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Get Delivered"
msgstr "In consegna"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_picture
msgid "Grow with Us"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Iris Joe, <small><b>CFO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Mich Stark, <small><b>COO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid "Mobile Experience"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover
msgid ""
"Our mission is to give customers the best experience.<br/>Extensive "
"documentation &amp; guides, an active community,<br/>24/7 support make it a "
"pleasure to work with us."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Pay"
msgstr "Paga"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid "Powerful API"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid ""
"Probably the only CRM with a full mobile experience. Never wondered how it "
"works? That's because it just works"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_picture
msgid ""
"Put your people at the heart of your marketing with tools that help you get "
"to know your audience <br/>and see who you should be talking to."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Sign In"
msgstr "Entrata"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "Start Now"
msgstr "Inizia ora"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid "Support Team"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid ""
"Thanks to our API, Developers report building their solutions 4x faster. "
"Discover why and how."
msgstr ""
#. module: theme_durpro
#: model:ir.model,name:theme_durpro.model_theme_utils
msgid "Theme Utils"
msgstr "Utilità tema"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Tony Fred, <small><b>CEO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_text_image
msgid "Unique experiences to drive engagement"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_text_image
msgid ""
"Users are looking to consume engaging content.<br/>We empowers our teams to "
"create the most relevant content."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid ""
"We have a support team that will do everything to answer you as quickly as "
"the voice assistants."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_text_image
msgid "We have one goal in mind, the user satisfaction."
msgstr ""

206
theme_durpro/i18n/nl.po Normal file
View file

@ -0,0 +1,206 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * theme_durpro
#
# Translators:
# Martin Trigaux, 2021
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 15.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-13 08:00+0000\n"
"PO-Revision-Date: 2021-12-13 08:08+0000\n"
"Last-Translator: Martin Trigaux, 2021\n"
"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "24/7 support"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_call_to_action
msgid "<b>50,000+ companies</b> run our software."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover
msgid "<b>Making the difference.</b>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Aline is one of the iconic people in life who can say they love what "
"they do. She mentors 100+ in-house developers and looks after the community "
"of thousands of developers.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Founder and chief visionary, Tony is the driving force behind the "
"company. He loves to keep his hands full by participating in the development"
" of the software, marketing, and customer experience strategies.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Iris, with her international experience, helps us easily understand "
"the numbers and improves them. She is determined to drive success and "
"delivers her professional acumen to bring the company to the next "
"level.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Mich loves taking on challenges. With his multi-year experience as "
"Commercial Director in the software industry, Mich has helped the company to"
" get where it is today. Mich is among the best minds.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "Access to all modules"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "Access to all modules and features"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Add to Cart"
msgstr "Voeg toe aan mandje"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Aline Turner, <small><b>CTO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover
msgid "Contact us"
msgstr "Contact"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Get Delivered"
msgstr "Krijg geleverd"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_picture
msgid "Grow with Us"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Iris Joe, <small><b>CFO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Mich Stark, <small><b>COO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid "Mobile Experience"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover
msgid ""
"Our mission is to give customers the best experience.<br/>Extensive "
"documentation &amp; guides, an active community,<br/>24/7 support make it a "
"pleasure to work with us."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Pay"
msgstr "Betaal"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid "Powerful API"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid ""
"Probably the only CRM with a full mobile experience. Never wondered how it "
"works? That's because it just works"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_picture
msgid ""
"Put your people at the heart of your marketing with tools that help you get "
"to know your audience <br/>and see who you should be talking to."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Sign In"
msgstr "Inklokken"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "Start Now"
msgstr "Start nu"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid "Support Team"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid ""
"Thanks to our API, Developers report building their solutions 4x faster. "
"Discover why and how."
msgstr ""
#. module: theme_durpro
#: model:ir.model,name:theme_durpro.model_theme_utils
msgid "Theme Utils"
msgstr "Thematools"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Tony Fred, <small><b>CEO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_text_image
msgid "Unique experiences to drive engagement"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_text_image
msgid ""
"Users are looking to consume engaging content.<br/>We empowers our teams to "
"create the most relevant content."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid ""
"We have a support team that will do everything to answer you as quickly as "
"the voice assistants."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_text_image
msgid "We have one goal in mind, the user satisfaction."
msgstr ""

View file

@ -0,0 +1,202 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * theme_durpro
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 15.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-13 08:00+0000\n"
"PO-Revision-Date: 2021-12-13 08:00+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "24/7 support"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_call_to_action
msgid "<b>50,000+ companies</b> run our software."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover
msgid "<b>Making the difference.</b>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Aline is one of the iconic people in life who can say they love what "
"they do. She mentors 100+ in-house developers and looks after the community "
"of thousands of developers.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Founder and chief visionary, Tony is the driving force behind the "
"company. He loves to keep his hands full by participating in the development"
" of the software, marketing, and customer experience strategies.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Iris, with her international experience, helps us easily understand "
"the numbers and improves them. She is determined to drive success and "
"delivers her professional acumen to bring the company to the next "
"level.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Mich loves taking on challenges. With his multi-year experience as "
"Commercial Director in the software industry, Mich has helped the company to"
" get where it is today. Mich is among the best minds.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "Access to all modules"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "Access to all modules and features"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Add to Cart"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Aline Turner, <small><b>CTO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover
msgid "Contact us"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Get Delivered"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_picture
msgid "Grow with Us"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Iris Joe, <small><b>CFO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Mich Stark, <small><b>COO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid "Mobile Experience"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover
msgid ""
"Our mission is to give customers the best experience.<br/>Extensive "
"documentation &amp; guides, an active community,<br/>24/7 support make it a "
"pleasure to work with us."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Pay"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid "Powerful API"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid ""
"Probably the only CRM with a full mobile experience. Never wondered how it "
"works? That's because it just works"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_picture
msgid ""
"Put your people at the heart of your marketing with tools that help you get "
"to know your audience <br/>and see who you should be talking to."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Sign In"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "Start Now"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid "Support Team"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid ""
"Thanks to our API, Developers report building their solutions 4x faster. "
"Discover why and how."
msgstr ""
#. module: theme_durpro
#: model:ir.model,name:theme_durpro.model_theme_utils
msgid "Theme Utils"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Tony Fred, <small><b>CEO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_text_image
msgid "Unique experiences to drive engagement"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_text_image
msgid ""
"Users are looking to consume engaging content.<br/>We empowers our teams to "
"create the most relevant content."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid ""
"We have a support team that will do everything to answer you as quickly as "
"the voice assistants."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_text_image
msgid "We have one goal in mind, the user satisfaction."
msgstr ""

206
theme_durpro/i18n/zh_CN.po Normal file
View file

@ -0,0 +1,206 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * theme_durpro
#
# Translators:
# Martin Trigaux, 2021
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 15.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-13 08:00+0000\n"
"PO-Revision-Date: 2021-12-13 08:08+0000\n"
"Last-Translator: Martin Trigaux, 2021\n"
"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/zh_CN/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "24/7 support"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_call_to_action
msgid "<b>50,000+ companies</b> run our software."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover
msgid "<b>Making the difference.</b>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Aline is one of the iconic people in life who can say they love what "
"they do. She mentors 100+ in-house developers and looks after the community "
"of thousands of developers.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Founder and chief visionary, Tony is the driving force behind the "
"company. He loves to keep his hands full by participating in the development"
" of the software, marketing, and customer experience strategies.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Iris, with her international experience, helps us easily understand "
"the numbers and improves them. She is determined to drive success and "
"delivers her professional acumen to bring the company to the next "
"level.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid ""
"<small>Mich loves taking on challenges. With his multi-year experience as "
"Commercial Director in the software industry, Mich has helped the company to"
" get where it is today. Mich is among the best minds.</small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "Access to all modules"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "Access to all modules and features"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Add to Cart"
msgstr "加入购物车"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Aline Turner, <small><b>CTO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover
msgid "Contact us"
msgstr "联系我们"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Get Delivered"
msgstr "得到交付"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_picture
msgid "Grow with Us"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Iris Joe, <small><b>CFO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Mich Stark, <small><b>COO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid "Mobile Experience"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover
msgid ""
"Our mission is to give customers the best experience.<br/>Extensive "
"documentation &amp; guides, an active community,<br/>24/7 support make it a "
"pleasure to work with us."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Pay"
msgstr "支付"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid "Powerful API"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid ""
"Probably the only CRM with a full mobile experience. Never wondered how it "
"works? That's because it just works"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_picture
msgid ""
"Put your people at the heart of your marketing with tools that help you get "
"to know your audience <br/>and see who you should be talking to."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_process_steps
msgid "Sign In"
msgstr "登录"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_comparisons
msgid "Start Now"
msgstr "立即开始"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid "Support Team"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid ""
"Thanks to our API, Developers report building their solutions 4x faster. "
"Discover why and how."
msgstr ""
#. module: theme_durpro
#: model:ir.model,name:theme_durpro.model_theme_utils
msgid "Theme Utils"
msgstr "主题用途"
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team
msgid "Tony Fred, <small><b>CEO</b></small>"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_text_image
msgid "Unique experiences to drive engagement"
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_text_image
msgid ""
"Users are looking to consume engaging content.<br/>We empowers our teams to "
"create the most relevant content."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_three_columns
msgid ""
"We have a support team that will do everything to answer you as quickly as "
"the voice assistants."
msgstr ""
#. module: theme_durpro
#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_text_image
msgid "We have one goal in mind, the user satisfaction."
msgstr ""

View file

@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import theme_durpro

View file

@ -0,0 +1,14 @@
from odoo import models
class ThemeDurpro(models.AbstractModel):
_inherit = 'theme.utils'
def _theme_durpro_post_copy(self, mod):
self.enable_view('website.template_header_contact')
self.enable_header_off_canvas()
self.enable_view('website.template_footer_centered')
self.enable_asset('Ripple effect SCSS')
self.enable_asset('Ripple effect JS')

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

View file

@ -0,0 +1,2 @@
<section>
</section>

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 129 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 195 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 127 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 117 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 291 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

View file

@ -0,0 +1,49 @@
odoo.define("theme_durpro.tour.durpro", function (require) {
"use strict";
const core = require("web.core");
const _t = core._t;
const wTourUtils = require("website.tour_utils");
var tour = require("web_tour.tour");
const snippets = [
{
id: 's_cover',
name: 'Cover',
},
{
id: 's_text_image',
name: 'Text - Image',
},
{
id: 's_numbers',
name: 'Numbers',
},
{
id: 's_picture',
name: 'Picture',
},
{
id: 's_comparisons',
name: 'Comparisons',
},
];
wTourUtils.registerThemeHomepageTour("durpro_tour", [
wTourUtils.dragNDrop(snippets[0]),
wTourUtils.clickOnText(snippets[0], 'h1', 'top'),
wTourUtils.goBackToBlocks('left'),
wTourUtils.dragNDrop(snippets[1]),
wTourUtils.dragNDrop(snippets[2]),
wTourUtils.dragNDrop(snippets[3], 'top'),
wTourUtils.dragNDrop(snippets[4], 'top'),
wTourUtils.clickOnSnippet(snippets[4], 'top'),
wTourUtils.changeBackgroundColor('left'),
wTourUtils.selectColorPalette(),
]);
});

View file

@ -0,0 +1,21 @@
@mixin s-showcase-slider-navigation-hook {
span {
text-indent: 100%;
background: url("../img/ui/s_showcase_slider-arrow.svg") no-repeat center center;
&:before { content: none; }
}
&:first-of-type {
span { transform: rotate(180deg); }
}
}
@mixin s-showcase-slider-close-hook {
background: url("../img/ui/s_showcase_slider-close.svg") no-repeat center center;
text-indent: 100%;
}
@mixin s-showcase-slider-slider-hover-hook {
&::after {
background: rgba(0, 0, 0, 0.4) url("../img/ui/s_showcase_slider-zoom.svg") no-repeat center center;
}
}

View file

@ -0,0 +1,3 @@
// Headings font weight
$headings-font-weight: 700 !default;

View file

@ -0,0 +1,5 @@
ul#top_menu {
> li:first-child {
font-size: 200%; // This will make the font size twice as big
}
}

View file

@ -0,0 +1,151 @@
//------------------------------------------------------------------------------
// Colors
//------------------------------------------------------------------------------
// Theme colors
$o-theme-color-palettes: map-merge($o-theme-color-palettes,
(
'graphene-1': (
'alpha': #3975a1,
'beta': #a9c9e0,
'gamma': #60575A,
'delta': #ffffff,
'epsilon': #000000,
'success': #1b8433,
'warning': #e4b013,
),
'graphene-2': (
'alpha': #54787D,
'beta': #6B9997,
'gamma': #615145,
'delta': #C6CCA5,
'epsilon': #412342,
'success': #5CB85C,
'info': #4D68A3,
'warning': #DDC66B,
'danger': #D86060,
),
'graphene-3': (
'alpha': #456F74,
'beta': #EB5937,
'gamma': #403D3C,
'delta': #1C1919,
'epsilon': #D3CBBD,
'success': #31B05E,
'info': #4D68A3,
'warning': #EACF41,
'danger': #CB3E3E,
),
'graphene-4': (
'alpha': #23C59E,
'beta': #FF5B5B,
'gamma': #FFE9C7,
'delta': #545445,
'epsilon': #2D2D36,
'success': #5CB85C,
),
)
);
//------------------------------------------------------------------------------
// Fonts
//------------------------------------------------------------------------------
$o-theme-h1-font-size-multiplier: (62 / 16);
$o-theme-h2-font-size-multiplier: (48 / 16);
$o-theme-h3-font-size-multiplier: (36 / 16);
$o-theme-h4-font-size-multiplier: (28 / 16);
$o-theme-h5-font-size-multiplier: (24 / 16);
$o-theme-h6-font-size-multiplier: (20 / 16);
$o-theme-font-configs: (
'Assistant': (
'family': ('Assistant', sans-serif),
'url': 'Assistant:300,300i,400,400i,700,700i',
),
'Abel': (
'family': ('Abel', sans-serif),
'url': 'Abel:300,300i,400,400i,700,700i',
),
'Cinzel': (
'family': ('Cinzel', serif),
'url': 'Cinzel:300,300i,400,400i,700,700i',
),
'Old Standard TT': (
'family': ('Old Standard TT', serif),
'url': 'Old+Standard+TT:300,300i,400,400i,700,700i',
),
'Source Sans Pro': (
'family': ('Source Sans Pro', sans-serif),
'url': 'Source+Sans+Pro:300,300i,400,400i,700,700i',
),
);
//------------------------------------------------------------------------------
// Website customizations
//------------------------------------------------------------------------------
$o-website-values-palettes: (
(
'color-palettes-name': 'graphene-1',
'font-size-base': 1rem,
'font': 'Source Sans Pro',
'headings-font': 'Assistant',
'navbar-font': 'Source Sans Pro',
'buttons-font': 'Source Sans Pro',
'btn-ripple': true,
'layout': 'boxed',
'header-template': 'Contact',
'footer-template': 'centered',
'btn-font-size-lg': 1rem,
'btn-padding-y-lg': .6rem,
'btn-padding-x-lg': 2.2rem,
'btn-border-radius-lg': 2px,
),
);
$o-selected-color-palettes-names: append($o-selected-color-palettes-names, 'graphene-1');
$o-color-palettes-compatibility-indexes: (
1: 'graphene-1',
2: 'graphene-2',
3: 'graphene-3',
4: 'graphene-4',
5: 'generic-1',
6: 'generic-2',
7: 'generic-3',
8: 'generic-4',
9: 'generic-5',
10: 'generic-6',
11: 'generic-7',
12: 'generic-8',
13: 'generic-9',
14: 'generic-10',
15: 'generic-11',
16: 'generic-12',
17: 'generic-13',
18: 'generic-14',
19: 'generic-15',
20: 'generic-16',
21: 'generic-17',
);
//------------------------------------------------------------------------------
// Shapes
//------------------------------------------------------------------------------
$o-bg-shapes: change-shape-colors-mapping('web_editor', 'Origins/02_001', (4: 2, 5: rgba(0, 0, 0, 0)));
$o-bg-shapes: add-extra-shape-colors-mapping('web_editor', 'Origins/02_001', 'second', (4: 2, 5: rgba(0, 0, 0, 0)));
$o-bg-shapes: change-shape-colors-mapping('web_editor', 'Origins/06_001', (3: 2));
$o-bg-shapes: change-shape-colors-mapping('web_editor', 'Zigs/01_001', (2: 4));

View file

@ -0,0 +1,9 @@
// TODO Maybe we should handle light/dark variation in standard in such a way no
// extra classes are created (border-alpha-light, btn-epsilon-dark, ...)
$-palettes: $o-theme-color-palettes;
$o-theme-color-palettes: ();
$-variations: ('lighter': 10%, 'light': 5%, 'dark': -5%, 'darker': -10%);
@each $key, $-palette in $-palettes {
$o-theme-color-palettes: map-merge($o-theme-color-palettes, ($key: o-theme-common-add-color-variations($-palette, $-palette, $-variations)));
}
$o-user-theme-color-palette: o-theme-common-add-color-variations($o-user-theme-color-palette, $o-user-theme-color-palette, $-variations);

View file

@ -0,0 +1,295 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- ======== COVER ======== -->
<template id="s_cover" inherit_id="website.s_cover" name="Durpro s_cover">
<xpath expr="//section" position="attributes">
<attribute name="class" add="pt160 pb240 s_parallax_no_overflow_hidden" remove="pt96 pb96 s_parallax_is_fixed s_parallax" separator=" "/>
<attribute name="data-oe-shape-data">{"shape":"web_editor/Origins/02_001","flip":[]}</attribute>
</xpath>
<xpath expr="//section/div[hasclass('container')]" position="before">
<div class="o_we_shape o_web_editor_Origins_02_001"/>
</xpath>
<xpath expr="//h1" position="replace"/>
<xpath expr="//p" position="replace"/>
<xpath expr="//p" position="replace"/>
<xpath expr="//section/div[hasclass('container')]" position="inside">
<div class="row">
<div class="col col-lg-11">
<h1 style="text-align: right;">
<b>Making the difference.</b>
</h1>
<p class="lead o_default_snippet_text" style="text-align: right">
Our mission is to give customers the best experience.<br/>Extensive documentation &amp; guides, an active community,<br/>24/7 support make it a pleasure to work with us.
</p>
<p style="text-align: right">
<a t-att-href="cta_btn_href" class="btn btn-primary btn-lg mb-2 o_default_snippet_text"><t t-esc="cta_btn_text">Contact us</t></a>
</p>
</div>
</div>
</xpath>
</template>
<!-- ======== BANNER ======== -->
<template id="s_banner" inherit_id="website.s_banner" name="Durpro s_banner">
<xpath expr="//a[hasclass('btn')]" position="attributes">
<attribute name="class" add="btn-lg" separator=" "/>
</xpath>
</template>
<!-- ======== TEXT-IMAGE ======== -->
<template id="s_text_image" inherit_id="website.s_text_image" name="Durpro s_text_image">
<xpath expr="//section" position="attributes">
<attribute name="class" add="pb96 pt0" remove="pb32 pt32" separator=" "/>
<attribute name="data-oe-shape-data">{"shape":"web_editor/Origins/02_001","flip":["x","y"]}</attribute>
</xpath>
<xpath expr="//section/div[hasclass('container')]" position="before">
<div class="o_we_shape o_web_editor_Origins_02_001 o_second_extra_shape_mapping o_we_flip_x o_we_flip_y"/>
</xpath>
<xpath expr="//h2" position="replace">
<h3>Unique experiences to drive engagement</h3>
<div class="s_hr text-left pt16 pb0" data-snippet="s_hr" data-name="Separator">
<hr class="w-100 mx-auto" style="border-top-width: 1px; border-top-style: solid; border-top-color: rgba(0, 0, 0, 0) !important;"/>
</div>
</xpath>
<xpath expr="//p[1]" position="replace" mode="inner">
Users are looking to consume engaging content.<br/>We empowers our teams to create the most relevant content.
</xpath>
<xpath expr="//p[2]" position="replace">
<p>We have one goal in mind, the user satisfaction.</p>
<div class="s_hr text-left p0 pb32" data-snippet="s_hr" data-name="Separator">
<hr class="w-100 mx-auto" style="border-top-width: 1px; border-top-style: solid; border-top-color: var(--o-color-3) !important;"/>
</div>
</xpath>
<xpath expr="//div[hasclass('col-lg-6')][1]" position="attributes">
<attribute name="class" add="col-lg-4 offset-lg-1" remove="col-lg-6" separator=" "/>
</xpath>
<xpath expr="//div[hasclass('col-lg-6')][1]" position="attributes">
<attribute name="class" add="col-lg-5 offset-lg-1" remove="col-lg-6" separator=" "/>
</xpath>
<xpath expr="//a[hasclass('btn')]" position="attributes">
<attribute name="class" add="btn-lg btn-secondary" remove="btn-primary" separator=" "/>
</xpath>
</template>
<!-- ======== IMAGE-TEXT ======== -->
<template id="s_image_text" inherit_id="website.s_image_text" name="Durpro s_image_text">
<xpath expr="//div[hasclass('col-lg-6')][1]" position="attributes">
<attribute name="class" add="col-lg-5 offset-lg-1" remove="col-lg-6" separator=" "/>
</xpath>
<xpath expr="//div[hasclass('col-lg-6')][1]" position="attributes">
<attribute name="class" add="col-lg-4 offset-lg-1" remove="col-lg-6" separator=" "/>
</xpath>
<xpath expr="//h2" position="after">
<div class="s_hr text-left pt16 pb0" data-snippet="s_hr" data-name="Separator">
<hr class="w-100 mx-auto" style="border-top-width: 1px; border-top-style: solid; border-top-color: rgba(0, 0, 0, 0) !important;"/>
</div>
</xpath>
<xpath expr="//p[2]" position="after">
<div class="s_hr text-left p0 pb32" data-snippet="s_hr" data-name="Separator">
<hr class="w-100 mx-auto" style="border-top-width: 1px; border-top-style: solid; border-top-color: var(--o-color-3) !important;"/>
</div>
</xpath>
<xpath expr="//a[hasclass('btn')]" position="attributes">
<attribute name="class" add="btn-lg" separator=" "/>
</xpath>
</template>
<!-- ======== STEPS ======== -->
<template id="s_process_steps" inherit_id="website.s_process_steps" name="Durpro s_process_steps">
<xpath expr="//section" position="attributes">
<attribute name="data-oe-shape-data">{"shape":"web_editor/Origins/05","flip":[]}</attribute>
</xpath>
<xpath expr="//section/div[hasclass('container')]" position="before">
<div class="o_we_shape o_web_editor_Origins_05"/>
</xpath>
<xpath expr="//h2" position="replace" mode="inner">
Add to Cart
</xpath>
<xpath expr="//h2" position="replace" mode="inner">
Sign In
</xpath>
<xpath expr="//h2" position="replace" mode="inner">
Pay
</xpath>
<xpath expr="//h2" position="replace" mode="inner">
Get Delivered
</xpath>
</template>
<!-- ======== CAROUSEL ======== -->
<template id="s_carousel" inherit_id="website.s_carousel" name="Durpro s_carousel">
<xpath expr="//div[hasclass('carousel-inner')]/div[1]" position="attributes">
<attribute name="style" add="background-position: 50% 100%;" separator=";"/>
</xpath>
<xpath expr="//div[hasclass('carousel-inner')]/div[2]" position="attributes">
<attribute name="style" add="background-position: 50% 100%;" separator=";"/>
</xpath>
<xpath expr="//div[hasclass('carousel-inner')]/div[3]" position="attributes">
<attribute name="style" add="background-position: 50% 100%;" separator=";"/>
</xpath>
</template>
<!-- ======== COMPANY TEAM ======== -->
<template id="s_company_team" inherit_id="website.s_company_team" name="Durpro s_company_team">
<xpath expr="//section" position="attributes">
<attribute name="data-oe-shape-data">{"shape":"web_editor/Origins/05","flip":[]}</attribute>
<attribute name="class" add="pb64" remove="pb48" separator=" "/>
</xpath>
<xpath expr="//section/div[hasclass('container')]" position="before">
<div class="o_we_shape o_web_editor_Origins_05"/>
</xpath>
<xpath expr="//div[hasclass('s_nb_column_fixed')]/div//h4" position="replace" mode="inner">
Tony Fred, <small><b>CEO</b></small>
</xpath>
<xpath expr="//div[hasclass('s_nb_column_fixed')]/div//p" position="replace">
<small>Founder and chief visionary, Tony is the driving force behind the company. He loves to keep his hands full by participating in the development of the software, marketing, and customer experience strategies.</small>
</xpath>
<xpath expr="//div[hasclass('s_nb_column_fixed')]/div[2]//h4" position="replace" mode="inner">
Mich Stark, <small><b>COO</b></small>
</xpath>
<xpath expr="//div[hasclass('s_nb_column_fixed')]/div[2]//p" position="replace" mode="inner">
<small>Mich loves taking on challenges. With his multi-year experience as Commercial Director in the software industry, Mich has helped the company to get where it is today. Mich is among the best minds.</small>
</xpath>
<xpath expr="//div[hasclass('s_nb_column_fixed')]/div[3]//h4" position="replace" mode="inner">
Aline Turner, <small><b>CTO</b></small>
</xpath>
<xpath expr="//div[hasclass('s_nb_column_fixed')]/div[3]//p" position="replace" mode="inner">
<small>Aline is one of the iconic people in life who can say they love what they do. She mentors 100+ in-house developers and looks after the community of thousands of developers.</small>
</xpath>
<xpath expr="//div[hasclass('s_nb_column_fixed')]/div[4]//h4" position="replace" mode="inner">
Iris Joe, <small><b>CFO</b></small>
</xpath>
<xpath expr="//div[hasclass('s_nb_column_fixed')]/div[4]//p" position="replace" mode="inner">
<small>Iris, with her international experience, helps us easily understand the numbers and improves them. She is determined to drive success and delivers her professional acumen to bring the company to the next level.</small>
</xpath>
</template>
<!-- ======== 3 COLUMNS ======== -->
<template id="s_three_columns" inherit_id="website.s_three_columns" name="Durpro s_three_columns">
<xpath expr="//div[hasclass('row')]/div//h3[1]" position="replace">
<h5>Powerful API</h5>
<div class="s_hr text-left pt8 pb16" data-snippet="s_hr" data-name="Separator">
<hr class="w-100 mx-auto" style="border-top-width: 1px; border-top-style: solid; border-top-color: var(--o-color-3) !important;"/>
</div>
</xpath>
<xpath expr="//div[hasclass('row')]/div//p[1]" position="replace" mode="inner">
Thanks to our API, Developers report building their solutions 4x faster. Discover why and how.
</xpath>
<xpath expr="//div[hasclass('row')]/div[2]//h3[1]" position="replace">
<h5>Mobile Experience</h5>
<div class="s_hr text-left pt8 pb16" data-snippet="s_hr" data-name="Separator">
<hr class="w-100 mx-auto" style="border-top-width: 1px; border-top-style: solid; border-top-color: var(--o-color-3) !important;"/>
</div>
</xpath>
<xpath expr="//div[hasclass('row')]/div[2]//p[1]" position="replace" mode="inner">
Probably the only CRM with a full mobile experience. Never wondered how it works? That's because it just works
</xpath>
<xpath expr="//div[hasclass('row')]/div[3]//h3[1]" position="replace">
<h5>Support Team</h5>
<div class="s_hr text-left pt8 pb16" data-snippet="s_hr" data-name="Separator">
<hr class="w-100 mx-auto" style="border-top-width: 1px; border-top-style: solid; border-top-color: var(--o-color-3) !important;"/>
</div>
</xpath>
<xpath expr="//div[hasclass('row')]/div[3]//p[1]" position="replace" mode="inner">
We have a support team that will do everything to answer you as quickly as the voice assistants.
</xpath>
</template>
<!-- ======== CALL TO ACTION ======== -->
<template id="s_call_to_action" inherit_id="website.s_call_to_action" name="Durpro s_call_to_action">
<xpath expr="//section" position="attributes">
<attribute name="class" add="o_cc5" remove="o_cc3" separator=" "/>
</xpath>
<xpath expr="//h3" position="replace">
<h3 style="text-align: right;"><b>50,000+ companies</b> run our software.</h3>
</xpath>
<xpath expr="//div[hasclass('col-lg-9')]" position="attributes">
<attribute name="class" add="col-lg-8" remove="col-lg-9" separator=" "/>
</xpath>
<xpath expr="//div[hasclass('col-lg-8')]/p" position="attributes">
<attribute name="style" add="text-align: right;" separator=" "/>
</xpath>
</template>
<!-- ======== COMPARISON ======== -->
<template id="s_comparisons" inherit_id="website.s_comparisons" name="Durpro s_comparisons">
<xpath expr="//section" position="attributes">
<attribute name="class" add="pb48 pt24 o_cc o_cc4" remove="pt32 pb32" separator=" "/>
<attribute name="data-oe-shape-data">{"shape":"web_editor/Origins/06_001","flip":["x"]}</attribute>
</xpath>
<xpath expr="//section/div[hasclass('container')]" position="before">
<div class="o_we_shape o_web_editor_Origins_06_001 o_we_flip_x "/>
</xpath>
<xpath expr="//div[hasclass('row')]/div//a" position="replace">
<a href="/contactus" class="btn btn-primary mb-2">Start Now</a>
</xpath>
<xpath expr="//div[hasclass('row')]/div[2]//a" position="replace">
<a href="/contactus" class="btn btn-primary mb-2">Start Now</a>
</xpath>
<xpath expr="//div[hasclass('row')]/div[2]//li[2]" position="replace">
<li class="list-group-item">Access to all modules</li>
</xpath>
<xpath expr="//div[hasclass('row')]/div[3]//a" position="replace">
<a href="/contactus" class="btn btn-primary mb-2">Start Now</a>
</xpath>
<xpath expr="//div[hasclass('row')]/div[3]//li[2]" position="replace">
<li class="list-group-item">Access to all modules and features</li>
</xpath>
<xpath expr="//div[hasclass('row')]/div[3]//li[4]" position="replace">
<li class="list-group-item">24/7 support</li>
</xpath>
</template>
<!-- ======== NUMBERS ======== -->
<template id="s_numbers" inherit_id="website.s_numbers" name="Durpro s_numbers">
<xpath expr="//section" position="attributes">
<attribute name="class" add="oe_img_bg o_bg_img_center pb56 pt56 s_parallax_no_overflow_hidden parallax s_parallax_is_fixed" remove="pb24 pt24" separator=" "/>
</xpath>
<xpath expr="//section/div[hasclass('container')]" position="before">
<span class="s_parallax_bg oe_img_bg" style="background-image: url('/web/image/website.s_parallax_default_image'); background-position: 50% 75%;"/>
<div class="o_we_bg_filter bg-black-75"></div>
</xpath>
<!-- Content -->
<xpath expr="//div[hasclass('row')]/div/span" position="attributes">
<attribute name="class" add="text-white" separator=" "/>
</xpath>
<xpath expr="(//div[hasclass('row')]/div/span)[2]" position="attributes">
<attribute name="class" add="text-white" separator=" "/>
</xpath>
<xpath expr="(//div[hasclass('row')]/div/span)[3]" position="attributes">
<attribute name="class" add="text-white" separator=" "/>
</xpath>
<xpath expr="(//div[hasclass('row')]/div/span)[4]" position="attributes">
<attribute name="class" add="text-white" separator=" "/>
</xpath>
</template>
<!-- ======== PICTURE ======== -->
<template id="s_picture" inherit_id="website.s_picture" name="Durpro s_picture">
<xpath expr="//section" position="attributes">
<attribute name="class" add="pb0 pt48" remove="pb24 pt48" separator=" "/>
<attribute name="data-oe-shape-data">{"shape":"web_editor/Zigs/01_001","flip":[]}</attribute>
</xpath>
<xpath expr="//section/div[hasclass('container')]" position="before">
<div class="o_we_shape o_web_editor_Zigs_01_001"/>
</xpath>
<!-- Content -->
<xpath expr="//h2" position="replace" mode="inner">
Grow with Us
</xpath>
<xpath expr="//p" position="replace" mode="inner">
Put your people at the heart of your marketing with tools that help you get to know your audience <br/>and see who you should be talking to.
</xpath>
<xpath expr="//img" position="attributes">
<attribute name="class" add="p-0 border-0" separator=" " />
</xpath>
</template>
<!-- ======== FULLWIDT Navbar ======== -->
<template id="s_navbar_fullwidth" inherit_id="website.template_header_contact" name="Durpro s_navabar_fullwidth">
<xpath expr="//div[@id='top_menu_container']" position="attributes">
<attribute name="class">container-fluid</attribute>
</xpath>
</template>
</odoo>

View file

@ -0,0 +1,333 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Not used anymore by the editor: files and records kept for back-compatibility.
Check in images.scss, primary_variables.scss, main.scss and theme_common's mixins.scss -->
<record id="image_content_01" model="theme.ir.attachment">
<field name="key">theme_durpro.image_content_01</field>
<field name="name">theme_durpro.image_content_01</field>
<field name="url">/theme_durpro/static/src/img/pictures/bg_image_01.jpg</field>
</record>
<record id="image_content_02" model="theme.ir.attachment">
<field name="key">theme_durpro.image_content_02</field>
<field name="name">theme_durpro.image_content_02</field>
<field name="url">/theme_durpro/static/src/img/pictures/bg_image_02.jpg</field>
</record>
<record id="image_content_03" model="theme.ir.attachment">
<field name="key">theme_durpro.image_content_03</field>
<field name="name">theme_durpro.image_content_03</field>
<field name="url">/theme_durpro/static/src/img/pictures/bg_image_03.jpg</field>
</record>
<record id="image_content_04" model="theme.ir.attachment">
<field name="key">theme_durpro.image_content_04</field>
<field name="name">theme_durpro.image_content_04</field>
<field name="url">/theme_durpro/static/src/img/pictures/bg_image_04.jpg</field>
</record>
<record id="image_content_05" model="theme.ir.attachment">
<field name="key">theme_durpro.image_content_05</field>
<field name="name">theme_durpro.image_content_05</field>
<field name="url">/theme_durpro/static/src/img/pictures/bg_image_05.jpg</field>
</record>
<record id="image_content_06" model="theme.ir.attachment">
<field name="key">theme_durpro.image_content_06</field>
<field name="name">theme_durpro.image_content_06</field>
<field name="url">/theme_durpro/static/src/img/pictures/bg_image_06.jpg</field>
</record>
<record id="image_content_07" model="theme.ir.attachment">
<field name="key">theme_durpro.image_content_07</field>
<field name="name">theme_durpro.image_content_07</field>
<field name="url">/theme_durpro/static/src/img/pictures/bg_image_07.jpg</field>
</record>
<record id="image_content_08" model="theme.ir.attachment">
<field name="key">theme_durpro.image_content_08</field>
<field name="name">theme_durpro.image_content_08</field>
<field name="url">/theme_durpro/static/src/img/pictures/bg_image_08.jpg</field>
</record>
<record id="image_content_09" model="theme.ir.attachment">
<field name="key">theme_durpro.image_content_09</field>
<field name="name">theme_durpro.image_content_09</field>
<field name="url">/theme_durpro/static/src/img/pictures/bg_image_09.jpg</field>
</record>
<record id="image_content_10" model="theme.ir.attachment">
<field name="key">theme_durpro.image_content_10</field>
<field name="name">theme_durpro.image_content_10</field>
<field name="url">/theme_durpro/static/src/img/pictures/bg_image_10.jpg</field>
</record>
<record id="image_content_19" model="theme.ir.attachment">
<field name="key">theme_durpro.image_content_19</field>
<field name="name">theme_durpro.image_content_19</field>
<field name="url">/theme_durpro/static/src/img/pictures/bg_image_01.jpg</field>
</record>
<record id="image_content_20" model="theme.ir.attachment">
<field name="key">theme_durpro.image_content_20</field>
<field name="name">theme_durpro.image_content_20</field>
<field name="url">/theme_durpro/static/src/img/pictures/bg_image_01.jpg</field>
</record>
<record id="image_content_21" model="theme.ir.attachment">
<field name="key">theme_durpro.image_content_21</field>
<field name="name">theme_durpro.image_content_21</field>
<field name="url">/theme_durpro/static/src/img/pictures/bg_image_02.jpg</field>
</record>
<record id="image_content_22" model="theme.ir.attachment">
<field name="key">theme_durpro.image_content_22</field>
<field name="name">theme_durpro.image_content_22</field>
<field name="url">/theme_durpro/static/src/img/pictures/bg_image_03.jpg</field>
</record>
<record id="image_content_23" model="theme.ir.attachment">
<field name="key">theme_durpro.image_content_23</field>
<field name="name">theme_durpro.image_content_23</field>
<field name="url">/theme_durpro/static/src/img/pictures/bg_image_03.jpg</field>
</record>
<!-- ======== Change default background images ======== -->
<record id="s_background_image_01" model="theme.ir.attachment">
<field name="key">website.s_background_image_01</field>
<field name="name">Background Image 01</field>
<field name="url">/theme_durpro/static/src/img/patterns/bg_pattern_01.jpg</field>
</record>
<record id="s_background_image_02" model="theme.ir.attachment">
<field name="key">website.s_background_image_02</field>
<field name="name">Background Image 02</field>
<field name="url">/theme_durpro/static/src/img/patterns/bg_pattern_02.jpg</field>
</record>
<record id="s_background_image_03" model="theme.ir.attachment">
<field name="key">website.s_background_image_03</field>
<field name="name">Background Image 03</field>
<field name="url">/theme_durpro/static/src/img/patterns/bg_pattern_03.jpg</field>
</record>
<record id="s_background_image_04" model="theme.ir.attachment">
<field name="key">website.s_background_image_04</field>
<field name="name">Background Image 04</field>
<field name="url">/theme_durpro/static/src/img/patterns/bg_pattern_04.jpg</field>
</record>
<record id="s_background_image_05" model="theme.ir.attachment">
<field name="key">website.s_background_image_05</field>
<field name="name">Background Image 05</field>
<field name="url">/theme_durpro/static/src/img/patterns/bg_pattern_05.jpg</field>
</record>
<record id="s_background_image_06" model="theme.ir.attachment">
<field name="key">website.s_background_image_06</field>
<field name="name">Background Image 06</field>
<field name="url">/theme_durpro/static/src/img/patterns/bg_pattern_06.jpg</field>
</record>
<!-- ======== Change default snippets images ======== -->
<!-- Cover -->
<record id="s_cover_default_image" model="theme.ir.attachment">
<field name="key">website.s_cover_default_image</field>
<field name="name">website.s_cover_default_image</field>
<field name="url">/theme_durpro/static/src/img/pictures/bg_image_08.jpg</field>
</record>
<!-- Banner -->
<record id="s_banner_default_image" model="theme.ir.attachment">
<field name="key">website.s_banner_default_image</field>
<field name="name">website.s_banner_default_image</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_01.jpg</field>
</record>
<!-- Pop Up -->
<record id="s_popup_default_image" model="theme.ir.attachment">
<field name="key">website.s_popup_default_image</field>
<field name="name">website.s_popup_default_image</field>
<field name="url">/theme_durpro/static/src/img/pictures/s_popup.jpg</field>
</record>
<!-- Text - Image -->
<record id="s_text_image_default_image" model="theme.ir.attachment">
<field name="key">website.s_text_image_default_image</field>
<field name="name">website.s_text_image_default_image</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_02.jpg</field>
</record>
<!-- Image - Text -->
<record id="s_image_text_default_image" model="theme.ir.attachment">
<field name="key">website.s_image_text_default_image</field>
<field name="name">website.s_image_text_default_image</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_03.jpg</field>
</record>
<!-- (Big) Picture -->
<record id="s_picture_default_image" model="theme.ir.attachment">
<field name="key">website.s_picture_default_image</field>
<field name="name">website.s_picture_default_image</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_04.jpg</field>
</record>
<!-- Columns -->
<record id="library_image_11" model="theme.ir.attachment">
<field name="key">website.library_image_11</field>
<field name="name">website.library_image_11</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_05.jpg</field>
</record>
<record id="library_image_13" model="theme.ir.attachment">
<field name="key">website.library_image_13</field>
<field name="name">website.library_image_13</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_06.jpg</field>
</record>
<record id="library_image_07" model="theme.ir.attachment">
<field name="key">website.library_image_07</field>
<field name="name">website.library_image_07</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_07.jpg</field>
</record>
<!-- Masonry Blocks -->
<record id="s_masonry_block_default_image_1" model="theme.ir.attachment">
<field name="key">website.s_masonry_block_default_image_1</field>
<field name="name">website.s_masonry_block_default_image_1</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_08.jpg</field>
</record>
<!-- Carousel Blocks -->
<record id="s_carousel_default_image_1" model="theme.ir.attachment">
<field name="key">website.s_carousel_default_image_1</field>
<field name="name">website.s_carousel_default_image_1</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_09.jpg</field>
</record>
<record id="s_carousel_default_image_2" model="theme.ir.attachment">
<field name="key">website.s_carousel_default_image_2</field>
<field name="name">website.s_carousel_default_image_2</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_10.jpg</field>
</record>
<record id="s_carousel_default_image_3" model="theme.ir.attachment">
<field name="key">website.s_carousel_default_image_3</field>
<field name="name">website.s_carousel_default_image_3</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_11.jpg</field>
</record>
<!-- Parallax -->
<record id="s_parallax_default_image" model="theme.ir.attachment">
<field name="key">website.s_parallax_default_image</field>
<field name="name">website.s_parallax_default_image</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_12.jpg</field>
</record>
<!-- Team Snippet -->
<record id="s_company_team_image_1" model="theme.ir.attachment">
<field name="key">website.s_company_team_image_1</field>
<field name="name">website.s_company_team_image_1</field>
<field name="url">/theme_durpro/static/src/img/pictures/uiface_02.jpg</field>
</record>
<record id="s_company_team_image_2" model="theme.ir.attachment">
<field name="key">website.s_company_team_image_2</field>
<field name="name">website.s_company_team_image_2</field>
<field name="url">/theme_durpro/static/src/img/pictures/uiface_01.jpg</field>
</record>
<record id="s_company_team_image_3" model="theme.ir.attachment">
<field name="key">website.s_company_team_image_3</field>
<field name="name">website.s_company_team_image_3</field>
<field name="url">/theme_durpro/static/src/img/pictures/uiface_03.jpg</field>
</record>
<record id="s_company_team_image_4" model="theme.ir.attachment">
<field name="key">website.s_company_team_image_4</field>
<field name="name">website.s_company_team_image_4</field>
<field name="url">/theme_durpro/static/src/img/pictures/uiface_04.jpg</field>
</record>
<!-- Quotes Carousel -->
<!-- Avatar 1 -->
<record id="s_quotes_carousel_demo_image_3" model="theme.ir.attachment">
<field name="key">website.s_quotes_carousel_demo_image_3</field>
<field name="name">website.s_quotes_carousel_demo_image_3</field>
<field name="url">/theme_durpro/static/src/img/pictures/uiface_05.jpg</field>
</record>
<!-- Avatar 2 -->
<record id="s_quotes_carousel_demo_image_4" model="theme.ir.attachment">
<field name="key">website.s_quotes_carousel_demo_image_4</field>
<field name="name">website.s_quotes_carousel_demo_image_4</field>
<field name="url">/theme_durpro/static/src/img/pictures/uiface_06.jpg</field>
</record>
<!-- BG 2 -->
<record id="s_quotes_carousel_demo_image_1" model="theme.ir.attachment">
<field name="key">website.s_quotes_carousel_demo_image_1</field>
<field name="name">website.s_quotes_carousel_demo_image_1</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_13.jpg</field>
</record>
<!-- Avatar 3 -->
<record id="s_quotes_carousel_demo_image_5" model="theme.ir.attachment">
<field name="key">website.s_quotes_carousel_demo_image_5</field>
<field name="name">website.s_quotes_carousel_demo_image_5</field>
<field name="url">/theme_durpro/static/src/img/pictures/uiface_07.jpg</field>
</record>
<!-- BG 3 -->
<record id="s_quotes_carousel_demo_image_2" model="theme.ir.attachment">
<field name="key">website.s_quotes_carousel_demo_image_2</field>
<field name="name">website.s_quotes_carousel_demo_image_2</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_14.jpg</field>
</record>
<!-- Product Catalog (menu) -->
<record id="s_product_catalog_default_image" model="theme.ir.attachment">
<field name="key">website.s_product_catalog_default_image</field>
<field name="name">website.s_product_catalog_default_image</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_15.jpg</field>
</record>
<!-- Product List -->
<record id="s_product_list_default_image_1" model="theme.ir.attachment">
<field name="key">website.s_product_list_default_image_1</field>
<field name="name">website.s_product_list_default_image_1</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_16.jpg</field>
</record>
<record id="s_product_list_default_image_2" model="theme.ir.attachment">
<field name="key">website.s_product_list_default_image_2</field>
<field name="name">website.s_product_list_default_image_2</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_17.jpg</field>
</record>
<record id="s_product_list_default_image_3" model="theme.ir.attachment">
<field name="key">website.s_product_list_default_image_3</field>
<field name="name">website.s_product_list_default_image_3</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_18.jpg</field>
</record>
<record id="s_product_list_default_image_4" model="theme.ir.attachment">
<field name="key">website.s_product_list_default_image_4</field>
<field name="name">website.s_product_list_default_image_4</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_19.jpg</field>
</record>
<record id="s_product_list_default_image_5" model="theme.ir.attachment">
<field name="key">website.s_product_list_default_image_5</field>
<field name="name">website.s_product_list_default_image_5</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_20.jpg</field>
</record>
<record id="s_product_list_default_image_6" model="theme.ir.attachment">
<field name="key">website.s_product_list_default_image_6</field>
<field name="name">website.s_product_list_default_image_6</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_21.jpg</field>
</record>
<!-- Numbers -->
<record id="s_numbers_default_image" model="theme.ir.attachment">
<field name="key">website.s_numbers_default_image</field>
<field name="name">website.s_numbers_default_image</field>
<field name="url">/theme_durpro/static/src/img/pictures/s_numbers.jpg</field>
</record>
<!-- Gallery wall -->
<record id="library_image_03" model="theme.ir.attachment">
<field name="key">website.library_image_03</field>
<field name="name">website.library_image_03</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_08.jpg</field>
</record>
<record id="library_image_10" model="theme.ir.attachment">
<field name="key">website.library_image_10</field>
<field name="name">website.library_image_10</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_22.jpg</field>
</record>
<record id="library_image_05" model="theme.ir.attachment">
<field name="key">website.library_image_05</field>
<field name="name">website.library_image_05</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_05.jpg</field>
</record>
<record id="library_image_14" model="theme.ir.attachment">
<field name="key">website.library_image_14</field>
<field name="name">website.library_image_14</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_07.jpg</field>
</record>
<record id="library_image_16" model="theme.ir.attachment">
<field name="key">website.library_image_16</field>
<field name="name">website.library_image_16</field>
<field name="url">/theme_durpro/static/src/img/pictures/content_23.jpg</field>
</record>
</odoo>

View file

View file

@ -0,0 +1,23 @@
{
'name': 'Durpro Theme',
'description': 'Theme for Durpro, mostly adapted Propage work on Wordpress.',
'category': 'Theme/Durpro',
'version': '1.0.0',
'author': 'Bemade',
'license': 'AGPL-3',
'website': 'https://www.bemade.org',
'depends': [
'theme_common'
],
'data': [
'data/ir_asset.xml',
],
# 'assets': {
# 'web._assets_primary_variables': [
# ('prepend', 'theme_durpro/static/src/scss/primary_variables.scss'),
# ],
# },
}

View file

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="theme_durpro.primary_variables_scss" model="theme.ir.asset">
<field name="key">theme_durpro.primary_variables_scss</field>
<field name="name">Primary variables SCSS</field>
<field name="bundle">web._assets_primary_variables</field>
<field name="path">theme_durpro/static/src/scss/primary_variables.scss</field>
</record>
<!--<record id="theme_anelusia.bootstrap_overridden_scss" model="theme.ir.asset">-->
<!-- <field name="key">theme_anelusia.bootstrap_overridden_scss</field>-->
<!-- <field name="name">Bootstrap overridden SCSS</field>-->
<!-- <field name="bundle">web._assets_frontend_helpers</field>-->
<!-- <field name="directive">prepend</field>-->
<!-- <field name="path">theme_anelusia/static/src/scss/bootstrap_overridden.scss</field>-->
<!--</record>-->
</odoo>

View file

@ -0,0 +1,92 @@
//------------------------------------------------------------------------------//
// Presets
//------------------------------------------------------------------------------//
$o-website-values-palettes: (
(
'color-palettes-name': 'durpro_original',
// Header
'header-font-size': 1rem,
'header-template': 'default',
// Font
'font': 'Helvetica Neue',
'headings-font': 'Bodoni',
'navbar-font': 'Helvetica Neue',
'buttons-font': 'Barlow',
// Links
'link-underline': 'never',
// Buttons
'btn-padding-y': .45rem,
'btn-padding-x': 1.35rem,
'btn-padding-y-sm': .3rem,
'btn-padding-x-sm': .9rem,
'btn-padding-y-lg': .6rem,
'btn-padding-x-lg': 1.8rem,
'btn-border-radius': 10rem,
'btn-border-radius-sm': 10rem,
'btn-border-radius-lg': 10rem,
// Footer
'footer-template': 'headline',
),
);
//------------------------------------------------------------------------------//
// Fonts
//------------------------------------------------------------------------------//
$o-theme-h1-font-size-multiplier: (62 / 16);
$o-theme-h2-font-size-multiplier: (32 / 16);
$o-theme-h3-font-size-multiplier: (28 / 16);
$o-theme-h4-font-size-multiplier: (24 / 16);
$o-theme-h5-font-size-multiplier: (21 / 16);
$o-theme-h6-font-size-multiplier: 1;
$o-theme-headings-font-weight: 700;
$o-theme-font-configs: (
'Helvetica Neue': (
'family': ('Helvetica Neue', sans-serif),
'url': 'Helvetica+Neue:300,300i,400,400i,700,700i',
),
'Bodoni': (
'family': ('Bodoni', serif),
'url': 'Bodoni:300,300i,400,400i,700,700i',
),
'Barlow': (
'family': ('Barlow', sans-serif),
'url': 'Barlow:300,300i,400,400i,700,700i',
),
);
//------------------------------------------------------------------------------
// Colors
//------------------------------------------------------------------------------
// Custom
$o-theme-color-palettes: (
'durpro_original': (
'alpha': #ffffff,
'beta': #cdd0a2,
'gamma': #b4bbb9,
'delta': #242327,
'epsilon': #957985,
),
);
$o-selected-color-palettes-names: append($o-selected-color-palettes-names, 'durpro_original');
$o-color-palettes-compatibility-indexes: (
1: 'durpro_original',
);
//------------------------------------------------------------------------------
// Shapes
//------------------------------------------------------------------------------
$o-bg-shapes: change-shape-colors-mapping('web_editor', 'Floats/02', (1: 3, 3: 5));
$o-bg-shapes: change-shape-colors-mapping('web_editor', 'Origins/17', (3: 5));

View file

@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import models

View file

@ -0,0 +1,46 @@
{
'name': 'Durpro Theme',
'description': 'Durpro is a sophisticated theme to inspire and impress',
'category': 'Theme/Creative',
'summary': 'Design, Fine Art, Artwork, Creative, Creativity, Galleries, Trends, Shows, Magazines, Blogs',
'sequence': 150,
'version': '2.0.0',
'author': 'Bemade',
'data': [
'data/ir_asset.xml',
'views/images_library.xml',
'views/customizations.xml',
],
'images': [
'static/description/poster.jpg',
'static/description/durpro_screenshot.jpg',
],
'images_preview_theme': {
'website.s_cover_default_image': '/theme_durpro/static/src/img/pictures/bg_image_08.jpg',
'website.s_picture_default_image': '/theme_durpro/static/src/img/pictures/bg_image_14.jpg',
'website.s_three_columns_default_image_1': '/theme_durpro/static/src/img/pictures/bg_image_15',
'website.s_three_columns_default_image_2': '/theme_durpro/static/src/img/pictures/bg_image_16.jpg',
'website.s_three_columns_default_image_3': '/theme_durpro/static/src/img/pictures/bg_image_17.jpg',
'website.s_text_image_default_image': '/theme_durpro/static/src/img/pictures/bg_image_13.jpg',
},
'snippet_lists': {
'homepage': [
's_cover',
's_picture',
's_three_columns',
's_text_image',
's_call_to_action'
],
},
'depends': [
'theme_common',
'website'
],
'license': 'LGPL-3',
# 'live_test_url': 'https://theme-avantgarde.odoo.com',
'assets': {
'website.assets_editor': [
'theme_durpro/static/src/js/tour.js',
],
}
}

View file

@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="theme_durpro.s_showcase_slider_000_variables_scss" model="theme.ir.asset">
<field name="key">theme_durpro.s_showcase_slider_000_variables_scss</field>
<field name="name">Showcase slider 000 variables SCSS</field>
<field name="bundle">web._assets_primary_variables</field>
<field name="path">theme_durpro/static/src/old_snippets/s_showcase_slider/000_variables.scss</field>
<field name="active" eval="False"/>
</record>
<record id="theme_durpro.s_css_slider_000_variables_scss" model="theme.ir.asset">
<field name="key">theme_durpro.s_css_slider_000_variables_scss</field>
<field name="name">Css slider 000 variables SCSS</field>
<field name="bundle">web._assets_primary_variables</field>
<field name="path">theme_durpro/static/src/old_snippets/s_css_slider/000_variables.scss</field>
<field name="active" eval="False"/>
</record>
<record id="theme_durpro.primary_variables_scss" model="theme.ir.asset">
<field name="key">theme_durpro.primary_variables_scss</field>
<field name="name">Primary variables SCSS</field>
<field name="bundle">web._assets_primary_variables</field>
<field name="path">theme_durpro/static/src/scss/primary_variables.scss</field>
</record>
<record id="theme_durpro.secondary_variables_scss" model="theme.ir.asset">
<field name="key">theme_durpro.secondary_variables_scss</field>
<field name="name">Secondary variables SCSS</field>
<field name="bundle">web._assets_secondary_variables</field>
<field name="path">theme_durpro/static/src/scss/secondary_variables.scss</field>
</record>
</odoo>

View file

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * theme_avantgarde
#
# Translators:
# Martin Trigaux, 2021
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 15.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-13 08:00+0000\n"
"PO-Revision-Date: 2021-12-13 08:08+0000\n"
"Last-Translator: Martin Trigaux, 2021\n"
"Language-Team: German (https://www.transifex.com/odoo/teams/41243/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_call_to_action
msgid "<b>Since 1992</b> creating around the world."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_carousel
msgid ""
"<font style=\"font-size: 62px; background-color: rgb(255, 255, 255);\" "
"class=\"o_default_snippet_text\">Making Simple</font>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image
msgid ""
"<span class=\"text-break\" style=\"font-size: 62px; font-weight: "
"bolder;\">Our R&amp;D Approach</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid "<span style=\"font-weight: bolder;\">Collaboration</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid "<span style=\"font-weight: bolder;\">Excellence</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid "<span style=\"font-weight: bolder;\">Sustainability</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_picture
msgid "Design Methodology"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image
msgid ""
"Making innovative design requires us to push the limits of technological "
"possibilities. As a group of in-house specialists, we develop and implement "
"computational workflows and new technologies."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_picture
msgid ""
"Our design methodology is rooted in our core values.<br/>\n"
" We combine a wide spectrum of technologies with a good portion of creativity."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid ""
"Sustainability is at the heart of our design approach. We audit projects "
"against global standards as well as our own, more comprehensive, "
"responsibility framework."
msgstr ""
#. module: theme_avantgarde
#: model:ir.model,name:theme_avantgarde.model_theme_utils
msgid "Theme Utils"
msgstr "Thema-Werkzeuge"
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image
msgid ""
"Through a mixture of project-based work and standalone research, we make "
"efficient projects, adaptable in the face of change."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_cover
msgid "We are Avantgarde."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_picture
msgid "We carry out an interdisciplinary design process."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid ""
"We conduct state-of-the-art research and development to solve complex design"
" challenges, taking the latest advances out of the lab and into the hands of"
" architects and engineers."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_cover
msgid ""
"We create architecture, landscapes, interiors, product design and graphic design.<br/>\n"
" Our methods allow us to explore a future that is equitable, data-driven, and green."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_call_to_action
msgid "We partner with ambitious clients. Wed love to hear from you."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid ""
"We thrive on rich collaborations to push our thinking. A continuous state of"
" reinvention, driven by our partners in the process, is essential to our "
"work."
msgstr ""

View file

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * theme_avantgarde
#
# Translators:
# Martin Trigaux, 2021
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 15.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-13 08:00+0000\n"
"PO-Revision-Date: 2021-12-13 08:08+0000\n"
"Last-Translator: Martin Trigaux, 2021\n"
"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_call_to_action
msgid "<b>Since 1992</b> creating around the world."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_carousel
msgid ""
"<font style=\"font-size: 62px; background-color: rgb(255, 255, 255);\" "
"class=\"o_default_snippet_text\">Making Simple</font>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image
msgid ""
"<span class=\"text-break\" style=\"font-size: 62px; font-weight: "
"bolder;\">Our R&amp;D Approach</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid "<span style=\"font-weight: bolder;\">Collaboration</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid "<span style=\"font-weight: bolder;\">Excellence</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid "<span style=\"font-weight: bolder;\">Sustainability</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_picture
msgid "Design Methodology"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image
msgid ""
"Making innovative design requires us to push the limits of technological "
"possibilities. As a group of in-house specialists, we develop and implement "
"computational workflows and new technologies."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_picture
msgid ""
"Our design methodology is rooted in our core values.<br/>\n"
" We combine a wide spectrum of technologies with a good portion of creativity."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid ""
"Sustainability is at the heart of our design approach. We audit projects "
"against global standards as well as our own, more comprehensive, "
"responsibility framework."
msgstr ""
#. module: theme_avantgarde
#: model:ir.model,name:theme_avantgarde.model_theme_utils
msgid "Theme Utils"
msgstr "Herramientas del tema"
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image
msgid ""
"Through a mixture of project-based work and standalone research, we make "
"efficient projects, adaptable in the face of change."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_cover
msgid "We are Avantgarde."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_picture
msgid "We carry out an interdisciplinary design process."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid ""
"We conduct state-of-the-art research and development to solve complex design"
" challenges, taking the latest advances out of the lab and into the hands of"
" architects and engineers."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_cover
msgid ""
"We create architecture, landscapes, interiors, product design and graphic design.<br/>\n"
" Our methods allow us to explore a future that is equitable, data-driven, and green."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_call_to_action
msgid "We partner with ambitious clients. Wed love to hear from you."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid ""
"We thrive on rich collaborations to push our thinking. A continuous state of"
" reinvention, driven by our partners in the process, is essential to our "
"work."
msgstr ""

View file

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * theme_avantgarde
#
# Translators:
# Martin Trigaux, 2021
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 15.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-13 08:00+0000\n"
"PO-Revision-Date: 2021-12-13 08:08+0000\n"
"Last-Translator: Martin Trigaux, 2021\n"
"Language-Team: French (https://www.transifex.com/odoo/teams/41243/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_call_to_action
msgid "<b>Since 1992</b> creating around the world."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_carousel
msgid ""
"<font style=\"font-size: 62px; background-color: rgb(255, 255, 255);\" "
"class=\"o_default_snippet_text\">Making Simple</font>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image
msgid ""
"<span class=\"text-break\" style=\"font-size: 62px; font-weight: "
"bolder;\">Our R&amp;D Approach</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid "<span style=\"font-weight: bolder;\">Collaboration</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid "<span style=\"font-weight: bolder;\">Excellence</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid "<span style=\"font-weight: bolder;\">Sustainability</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_picture
msgid "Design Methodology"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image
msgid ""
"Making innovative design requires us to push the limits of technological "
"possibilities. As a group of in-house specialists, we develop and implement "
"computational workflows and new technologies."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_picture
msgid ""
"Our design methodology is rooted in our core values.<br/>\n"
" We combine a wide spectrum of technologies with a good portion of creativity."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid ""
"Sustainability is at the heart of our design approach. We audit projects "
"against global standards as well as our own, more comprehensive, "
"responsibility framework."
msgstr ""
#. module: theme_avantgarde
#: model:ir.model,name:theme_avantgarde.model_theme_utils
msgid "Theme Utils"
msgstr "Thèmes utiles"
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image
msgid ""
"Through a mixture of project-based work and standalone research, we make "
"efficient projects, adaptable in the face of change."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_cover
msgid "We are Avantgarde."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_picture
msgid "We carry out an interdisciplinary design process."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid ""
"We conduct state-of-the-art research and development to solve complex design"
" challenges, taking the latest advances out of the lab and into the hands of"
" architects and engineers."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_cover
msgid ""
"We create architecture, landscapes, interiors, product design and graphic design.<br/>\n"
" Our methods allow us to explore a future that is equitable, data-driven, and green."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_call_to_action
msgid "We partner with ambitious clients. Wed love to hear from you."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid ""
"We thrive on rich collaborations to push our thinking. A continuous state of"
" reinvention, driven by our partners in the process, is essential to our "
"work."
msgstr ""

View file

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * theme_avantgarde
#
# Translators:
# Martin Trigaux, 2021
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 15.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-13 08:00+0000\n"
"PO-Revision-Date: 2021-12-13 08:08+0000\n"
"Last-Translator: Martin Trigaux, 2021\n"
"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/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: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_call_to_action
msgid "<b>Since 1992</b> creating around the world."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_carousel
msgid ""
"<font style=\"font-size: 62px; background-color: rgb(255, 255, 255);\" "
"class=\"o_default_snippet_text\">Making Simple</font>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image
msgid ""
"<span class=\"text-break\" style=\"font-size: 62px; font-weight: "
"bolder;\">Our R&amp;D Approach</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid "<span style=\"font-weight: bolder;\">Collaboration</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid "<span style=\"font-weight: bolder;\">Excellence</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid "<span style=\"font-weight: bolder;\">Sustainability</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_picture
msgid "Design Methodology"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image
msgid ""
"Making innovative design requires us to push the limits of technological "
"possibilities. As a group of in-house specialists, we develop and implement "
"computational workflows and new technologies."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_picture
msgid ""
"Our design methodology is rooted in our core values.<br/>\n"
" We combine a wide spectrum of technologies with a good portion of creativity."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid ""
"Sustainability is at the heart of our design approach. We audit projects "
"against global standards as well as our own, more comprehensive, "
"responsibility framework."
msgstr ""
#. module: theme_avantgarde
#: model:ir.model,name:theme_avantgarde.model_theme_utils
msgid "Theme Utils"
msgstr "Utilità tema"
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image
msgid ""
"Through a mixture of project-based work and standalone research, we make "
"efficient projects, adaptable in the face of change."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_cover
msgid "We are Avantgarde."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_picture
msgid "We carry out an interdisciplinary design process."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid ""
"We conduct state-of-the-art research and development to solve complex design"
" challenges, taking the latest advances out of the lab and into the hands of"
" architects and engineers."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_cover
msgid ""
"We create architecture, landscapes, interiors, product design and graphic design.<br/>\n"
" Our methods allow us to explore a future that is equitable, data-driven, and green."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_call_to_action
msgid "We partner with ambitious clients. Wed love to hear from you."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid ""
"We thrive on rich collaborations to push our thinking. A continuous state of"
" reinvention, driven by our partners in the process, is essential to our "
"work."
msgstr ""

View file

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * theme_avantgarde
#
# Translators:
# Martin Trigaux, 2021
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 15.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-13 08:00+0000\n"
"PO-Revision-Date: 2021-12-13 08:08+0000\n"
"Last-Translator: Martin Trigaux, 2021\n"
"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_call_to_action
msgid "<b>Since 1992</b> creating around the world."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_carousel
msgid ""
"<font style=\"font-size: 62px; background-color: rgb(255, 255, 255);\" "
"class=\"o_default_snippet_text\">Making Simple</font>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image
msgid ""
"<span class=\"text-break\" style=\"font-size: 62px; font-weight: "
"bolder;\">Our R&amp;D Approach</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid "<span style=\"font-weight: bolder;\">Collaboration</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid "<span style=\"font-weight: bolder;\">Excellence</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid "<span style=\"font-weight: bolder;\">Sustainability</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_picture
msgid "Design Methodology"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image
msgid ""
"Making innovative design requires us to push the limits of technological "
"possibilities. As a group of in-house specialists, we develop and implement "
"computational workflows and new technologies."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_picture
msgid ""
"Our design methodology is rooted in our core values.<br/>\n"
" We combine a wide spectrum of technologies with a good portion of creativity."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid ""
"Sustainability is at the heart of our design approach. We audit projects "
"against global standards as well as our own, more comprehensive, "
"responsibility framework."
msgstr ""
#. module: theme_avantgarde
#: model:ir.model,name:theme_avantgarde.model_theme_utils
msgid "Theme Utils"
msgstr "Thematools"
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image
msgid ""
"Through a mixture of project-based work and standalone research, we make "
"efficient projects, adaptable in the face of change."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_cover
msgid "We are Avantgarde."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_picture
msgid "We carry out an interdisciplinary design process."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid ""
"We conduct state-of-the-art research and development to solve complex design"
" challenges, taking the latest advances out of the lab and into the hands of"
" architects and engineers."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_cover
msgid ""
"We create architecture, landscapes, interiors, product design and graphic design.<br/>\n"
" Our methods allow us to explore a future that is equitable, data-driven, and green."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_call_to_action
msgid "We partner with ambitious clients. Wed love to hear from you."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid ""
"We thrive on rich collaborations to push our thinking. A continuous state of"
" reinvention, driven by our partners in the process, is essential to our "
"work."
msgstr ""

View file

@ -0,0 +1,128 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * theme_avantgarde
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 15.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-13 08:00+0000\n"
"PO-Revision-Date: 2021-12-13 08:00+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_call_to_action
msgid "<b>Since 1992</b> creating around the world."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_carousel
msgid ""
"<font style=\"font-size: 62px; background-color: rgb(255, 255, 255);\" "
"class=\"o_default_snippet_text\">Making Simple</font>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image
msgid ""
"<span class=\"text-break\" style=\"font-size: 62px; font-weight: "
"bolder;\">Our R&amp;D Approach</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid "<span style=\"font-weight: bolder;\">Collaboration</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid "<span style=\"font-weight: bolder;\">Excellence</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid "<span style=\"font-weight: bolder;\">Sustainability</span>"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_picture
msgid "Design Methodology"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image
msgid ""
"Making innovative design requires us to push the limits of technological "
"possibilities. As a group of in-house specialists, we develop and implement "
"computational workflows and new technologies."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_picture
msgid ""
"Our design methodology is rooted in our core values.<br/>\n"
" We combine a wide spectrum of technologies with a good portion of creativity."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid ""
"Sustainability is at the heart of our design approach. We audit projects "
"against global standards as well as our own, more comprehensive, "
"responsibility framework."
msgstr ""
#. module: theme_avantgarde
#: model:ir.model,name:theme_avantgarde.model_theme_utils
msgid "Theme Utils"
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image
msgid ""
"Through a mixture of project-based work and standalone research, we make "
"efficient projects, adaptable in the face of change."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_cover
msgid "We are Avantgarde."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_picture
msgid "We carry out an interdisciplinary design process."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid ""
"We conduct state-of-the-art research and development to solve complex design"
" challenges, taking the latest advances out of the lab and into the hands of"
" architects and engineers."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_cover
msgid ""
"We create architecture, landscapes, interiors, product design and graphic design.<br/>\n"
" Our methods allow us to explore a future that is equitable, data-driven, and green."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_call_to_action
msgid "We partner with ambitious clients. Wed love to hear from you."
msgstr ""
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid ""
"We thrive on rich collaborations to push our thinking. A continuous state of"
" reinvention, driven by our partners in the process, is essential to our "
"work."
msgstr ""

View file

@ -0,0 +1,140 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * theme_avantgarde
#
# Translators:
# Benson <Benson.Dr@Gmail.com>, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 15.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-13 08:00+0000\n"
"PO-Revision-Date: 2021-12-13 08:08+0000\n"
"Last-Translator: Benson <Benson.Dr@Gmail.com>, 2022\n"
"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/zh_CN/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_call_to_action
msgid "<b>Since 1992</b> creating around the world."
msgstr "<b>始于 1992年</b> 在世界各地创作."
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_carousel
msgid ""
"<font style=\"font-size: 62px; background-color: rgb(255, 255, 255);\" "
"class=\"o_default_snippet_text\">Making Simple</font>"
msgstr ""
"<font style=\"font-size: 62px; background-color: rgb(255, 255, 255);\" "
"class=\"o_default_snippet_text\">变得简单</font>"
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image
msgid ""
"<span class=\"text-break\" style=\"font-size: 62px; font-weight: "
"bolder;\">Our R&amp;D Approach</span>"
msgstr ""
"<span class=\"text-break\" style=\"font-size: 62px; font-weight: "
"bolder;\">我们的研发方法</span>"
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid "<span style=\"font-weight: bolder;\">Collaboration</span>"
msgstr "<span style=\"font-weight: bolder;\">合作</span>"
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid "<span style=\"font-weight: bolder;\">Excellence</span>"
msgstr "<span style=\"font-weight: bolder;\">优越性</span>"
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid "<span style=\"font-weight: bolder;\">Sustainability</span>"
msgstr "<span style=\"font-weight: bolder;\">可持续性</span>"
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_picture
msgid "Design Methodology"
msgstr "设计方法"
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image
msgid ""
"Making innovative design requires us to push the limits of technological "
"possibilities. As a group of in-house specialists, we develop and implement "
"computational workflows and new technologies."
msgstr "进行创新设计需要我们突破技术可能性的极限. 作为一个内部专业团队,我们开发和实施计算工作流程和新技术."
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_picture
msgid ""
"Our design methodology is rooted in our core values.<br/>\n"
" We combine a wide spectrum of technologies with a good portion of creativity."
msgstr ""
"我们的设计方法植根于我们的核心价值观.<br/>\n"
" 我们将广泛的技术与很大部分创造力相结合."
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid ""
"Sustainability is at the heart of our design approach. We audit projects "
"against global standards as well as our own, more comprehensive, "
"responsibility framework."
msgstr "可持续性是我们设计方法的核心. 我们根据全球标准以及我们自己更全面的专案框架审核责任."
#. module: theme_avantgarde
#: model:ir.model,name:theme_avantgarde.model_theme_utils
msgid "Theme Utils"
msgstr "主题工具"
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image
msgid ""
"Through a mixture of project-based work and standalone research, we make "
"efficient projects, adaptable in the face of change."
msgstr "通过基于专案的工作和独立研究的结合,我们制定了高效的项目,适应变化."
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_cover
msgid "We are Avantgarde."
msgstr "我们是前卫的."
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_picture
msgid "We carry out an interdisciplinary design process."
msgstr "我们进行跨学术的设计过程."
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid ""
"We conduct state-of-the-art research and development to solve complex design"
" challenges, taking the latest advances out of the lab and into the hands of"
" architects and engineers."
msgstr "我们进行最先进的研究和开发,以解决复杂的设计挑战,将最新进展从实验室带到设计师和工程师手中."
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_cover
msgid ""
"We create architecture, landscapes, interiors, product design and graphic design.<br/>\n"
" Our methods allow us to explore a future that is equitable, data-driven, and green."
msgstr ""
"我们创造建筑、景观、室内设计、产品设计和平面设计.<br/>\n"
" 我们的方法使我们能够探索公平、数据驱动和绿色的未来."
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_call_to_action
msgid "We partner with ambitious clients. Wed love to hear from you."
msgstr "我们与雄心勃勃的客户合作. 我们很乐意听取您的意见."
#. module: theme_avantgarde
#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns
msgid ""
"We thrive on rich collaborations to push our thinking. A continuous state of"
" reinvention, driven by our partners in the process, is essential to our "
"work."
msgstr "我们依靠丰富的合作来推动我们的思维。 在我们的合作伙伴的推动下,持续不断的重塑状态对我们的工作至关重要."

View file

@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import theme_durpro

View file

@ -0,0 +1,13 @@
from odoo import models
class ThemeAvantgarde(models.AbstractModel):
_inherit = 'theme.utils'
def _theme_avantgarde_post_copy(self, mod):
self.enable_view('website.template_header_hamburger')
self.enable_view('website.template_header_default_align_right')
self.enable_view('website.template_header_hamburger_align_right')
self.enable_view('website.template_footer_descriptive')

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

View file

@ -0,0 +1 @@
<section></section>

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

View file

@ -0,0 +1,222 @@
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 700 1850">
<defs>
<!-- Font -->
<style type="text/css">
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700&amp;display=swap');
</style>
<!-- Gradient -->
<linearGradient id="theme_avantgarde_gradient" x1="24.6" y1="259.05" x2="1203.01" y2="-64.98" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#7C6576"/>
<stop offset="1" stop-color="#F6F6F6"/>
</linearGradient>
<!-- Cover -->
<pattern width="1" height="1" patternunits="objectBoundingBox" id="theme_avantgarde_s_cover_default_image_id">
<image preserveAspectRatio="xMidYMid slice" width="700" height="265.15" href="#s_cover_default_image_url"/>
</pattern>
<!-- Picture -->
<pattern width="1" height="1" patternunits="objectBoundingBox" id="theme_avantgarde_s_picture_default_image_id">
<image preserveAspectRatio="xMidYMid slice" width="194.229" height="277.7082" href="#s_picture_default_image_url"/>
</pattern>
<!-- Columns 1 -->
<pattern width="1" height="1" patternunits="objectBoundingBox" id="theme_avantgarde_s_three_columns_default_image_1_id">
<image preserveAspectRatio="xMidYMid slice" width="147.6" height="160.04" href="#s_three_columns_default_image_1_url"/>
</pattern>
<!-- Columns 2 -->
<pattern width="1" height="1" patternunits="objectBoundingBox" id="theme_avantgarde_s_three_columns_default_image_2_id">
<image preserveAspectRatio="xMidYMid slice" width="147.6" height="160.04" href="#s_three_columns_default_image_2_url"/>
</pattern>
<!-- Columns 3 -->
<pattern width="1" height="1" patternunits="objectBoundingBox" id="theme_avantgarde_s_three_columns_default_image_3_id">
<image preserveAspectRatio="xMidYMid slice" width="147.6" height="160.04" href="#s_three_columns_default_image_3_url"/>
</pattern>
<!-- Text - Image -->
<pattern width="1" height="1" patternunits="objectBoundingBox" id="theme_avantgarde_s_text_image_default_image_id">
<image preserveAspectRatio="xMidYMid slice" width="193.0843" height="192.9226" href="#s_text_image_default_image_url"/>
</pattern>
<!-- Filter -->
<filter id="filter_readability_avantgarde">
<feColorMatrix in="SourceGraphic" type="saturate" values="0"/>
<feComponentTransfer>
<feFuncR type="table" tableValues="1 0"/>
<feFuncG type="table" tableValues="1 0"/>
<feFuncB type="table" tableValues="1 0"/>
</feComponentTransfer>
<feComponentTransfer>
<feFuncR type="linear" slope="10000" intercept="-4999.5"/>
<feFuncG type="linear" slope="10000" intercept="-4999.5"/>
<feFuncB type="linear" slope="10000" intercept="-4999.5"/>
</feComponentTransfer>
</filter>
</defs>
<g class="theme_avantgarde">
<!-- Menu -->
<g class="svgc_menu">
<!-- Menu Background -->
<rect width="700" height="37" fill="#MENU_COLOR" class="svgc_menu_bg"/>
<!-- Logo -->
<path class="svgc_text" opacity="1" d="M76.35,23V21.48H72.6V14.27H70.76V23Zm4.68.12a4.18,4.18,0,0,0,2.08-.53,3.82,3.82,0,0,0,1.46-1.52,5.07,5.07,0,0,0,.54-2.43,5.07,5.07,0,0,0-.54-2.43,3.78,3.78,0,0,0-1.46-1.53A4.19,4.19,0,0,0,81,14.15a4.12,4.12,0,0,0-2.08.53,3.66,3.66,0,0,0-1.46,1.53,5.07,5.07,0,0,0-.54,2.43,5,5,0,0,0,.54,2.42,3.71,3.71,0,0,0,1.46,1.53,4.12,4.12,0,0,0,2.08.53Zm0-1.63a2.09,2.09,0,0,1-1.17-.33,2.15,2.15,0,0,1-.78-1,4,4,0,0,1-.27-1.56,4,4,0,0,1,.27-1.56,2.12,2.12,0,0,1,.78-1A2.05,2.05,0,0,1,81,15.79a2.14,2.14,0,0,1,1.17.32,2.19,2.19,0,0,1,.78,1,4,4,0,0,1,.27,1.56A4,4,0,0,1,83,20.2a2.15,2.15,0,0,1-.78,1,2.09,2.09,0,0,1-1.17.33Zm9.27,1.63a4.07,4.07,0,0,0,2-.45,3.16,3.16,0,0,0,1.34-1.27,3.74,3.74,0,0,0,.49-2v-1.1H90.43v1.39H92.3v.13a1.88,1.88,0,0,1-.15.64l-.08.14a1.59,1.59,0,0,1-.68.63,2.32,2.32,0,0,1-1.07.23,2.09,2.09,0,0,1-1.2-.34,2.12,2.12,0,0,1-.78-1,4.43,4.43,0,0,1,0-3.1,2.16,2.16,0,0,1,.79-1,2,2,0,0,1,1.17-.33,2.29,2.29,0,0,1,.66.09,1.85,1.85,0,0,1,.53.25,1.9,1.9,0,0,1,.39.41,2,2,0,0,1,.25.55H94a3.32,3.32,0,0,0-.41-1.18,3.15,3.15,0,0,0-.81-.93,3.54,3.54,0,0,0-1.13-.61,4.39,4.39,0,0,0-1.39-.22,4.18,4.18,0,0,0-1.6.31,3.74,3.74,0,0,0-1.3.88,3.88,3.88,0,0,0-.87,1.41,5.37,5.37,0,0,0-.31,1.9A5.07,5.07,0,0,0,86.7,21a3.73,3.73,0,0,0,1.45,1.55,4.19,4.19,0,0,0,2.15.54Zm9,0a4.15,4.15,0,0,0,2.08-.53,3.78,3.78,0,0,0,1.47-1.52,5.07,5.07,0,0,0,.54-2.43,5.07,5.07,0,0,0-.54-2.43,3.74,3.74,0,0,0-1.47-1.53,4.37,4.37,0,0,0-4.17,0,3.78,3.78,0,0,0-1.46,1.53,5.07,5.07,0,0,0-.54,2.43,5,5,0,0,0,.54,2.42,3.78,3.78,0,0,0,1.46,1.53A4.16,4.16,0,0,0,99.26,23.12Zm0-1.63a2.06,2.06,0,0,1-1.17-.33,2.13,2.13,0,0,1-.77-1A4,4,0,0,1,97,18.64a4,4,0,0,1,.28-1.56,2,2,0,0,1,1.94-1.29,2.14,2.14,0,0,1,1.17.32,2.1,2.1,0,0,1,.77,1,4,4,0,0,1,.28,1.56,4,4,0,0,1-.28,1.56,2,2,0,0,1-1.94,1.29Z" fill="#MENU_COLOR" filter="url(#filter_readability_avantgarde)"/>
<!-- Contents -->
<g opacity="0.574000000953674">
<rect x="538.91" y="13.75" width="15.52" height="1.36" fill="#MENU_COLOR" class="svgc_text" filter="url(#filter_readability_avantgarde)"/>
<rect x="538.91" y="17.82" width="15.52" height="1.36" fill="#MENU_COLOR" class="svgc_text" filter="url(#filter_readability_avantgarde)"/>
<rect x="538.91" y="21.89" width="15.52" height="1.36" fill="#MENU_COLOR" class="svgc_text" filter="url(#filter_readability_avantgarde)"/>
<rect x="513.63" y="13.47" width="10.62" height="10.34" rx="5.17" fill="#MENU_COLOR" class="svgc_text" filter="url(#filter_readability_avantgarde)"/>
</g>
<!-- Menu Button -->
<path class="svgc_text" opacity="1" d="M571.42,8.73h57.51a1.35,1.35,0,0,1,1.28,1.41V27a1.35,1.35,0,0,1-1.28,1.41H571.42A1.35,1.35,0,0,1,570.15,27V10.14A1.35,1.35,0,0,1,571.42,8.73Z" style="fill:none;stroke:#MENU_COLOR;stroke-miterlimit:10;stroke-width:2px;fill-rule:evenodd" filter="url(#filter_readability_avantgarde)"/>
</g>
<!-- Cover -->
<g class="s_cover">
<!-- Gradient -->
<rect y="37" width="700" height="265.15" style="opacity:1;fill:url(#theme_avantgarde_gradient)"/>
<!-- Overlay -->
<rect y="37" width="700" height="265.15" style="fill:#000;opacity:0.3"/>
<!-- Cover Image -->
<rect y="37" width="700" height="265.15" class="img_reference_s_cover_default_image" fill="url(#theme_avantgarde_s_cover_default_image_id)" opacity=".15"/>
<g opacity="0.549000024795532">
<rect x="184.31" y="168.53" width="341.79" height="2" fill="#FFFFFF"/>
<rect x="180.96" y="173.53" width="346.79" height="2" fill="#FFFFFF"/>
</g>
<rect x="316.9" y="189.89" width="66.21" height="19.72" rx="1.41" style="fill:none;stroke:#FFFDFF;stroke-miterlimit:10;stroke-width:2px"/>
<text x="160" y="144.8023" style="font-size:36px;fill:#FFFDFF;font-family:'Syne';font-weight:bold;">We are Avantgarde.</text>
</g>
<!-- Picture -->
<g class="s_picture">
<rect y="302.15" width="700" height="460" fill="#F6F6F6"/>
<!-- Overlay -->
<rect y="302.15" width="700" height="460" style="fill:#FFF;opacity:0.5"/>
<!-- Text -->
<text x="71" y="383" style="font-size:33.8px;fill:#7C6576;font-family:'Syne';font-weight:bold;">A Section Title</text>
<g opacity="0.549000024795532">
<rect x="70.58" y="392.29" width="143.03" height="2" fill="#383E45"/>
<rect x="70.75" y="397.29" width="206.93" height="2" fill="#383E45"/>
<rect x="327.15" y="713.94" width="143.03" height="2" fill="#383E45"/>
</g>
<path d="M383.58,466.83c140.49,202.94,52.7,252-46,210.44-39.29-16.55-40.84-36.73-71.77-89.54C194.16,465.34,309.14,359.31,383.58,466.83Z" style="fill:none;stroke:#7C6576;stroke-miterlimit:10;stroke-width:7px"/>
<!-- Picture Image -->
<path width="194.229" height="277.7082" class="img_reference_s_picture_default_image" fill="url(#theme_avantgarde_s_picture_default_image_id)" d="M256.9,592.49l19.64-114c4.73-27.45,26-49.94,54.73-57.79h0c41.13-11.24,84.28,10.62,96.38,48.83a68,68,0,0,1,2.35,10l19.35,124.07c5,31.81-13.34,62.83-44.88,76.06l-22.4,9.39c-32.47,13.63-70.77,5-92.85-21l-16.6-19.47A68.48,68.48,0,0,1,256.9,592.49Z"/>
</g>
<!-- Columns -->
<g class="s_three_columns">
<rect y="757.19" width="700" height="452.29" fill="#F6F6F6"/>
<!-- Overlay -->
<rect y="757.19" width="700" height="452.29" style="fill:#FFF;opacity:0.5"/>
<!-- Column 1 -->
<rect x="89.67" y="830.12" width="147.6" height="237.6" rx="2.32" fill="#7C6576"/>
<!-- Image -->
<rect x="107.67" y="848.12" width="147.6" height="160.04" class="img_reference_s_three_columns_default_image_1" fill="url(#theme_avantgarde_s_three_columns_default_image_1_id)"/>
<rect x="107.67" y="1008.16" width="147.6" height="77.56" fill="#FFFFFF"/>
<g opacity="0.393999993801117">
<rect x="120.27" y="1047.02" width="75.6" height="1.8" fill="#383E45"/>
<rect x="120.27" y="1051.52" width="66.94" height="1.8" fill="#383E45"/>
<rect x="120.27" y="1056.02" width="45.59" height="1.8" fill="#383E45"/>
<rect x="120.27" y="1060.52" width="52.52" height="1.8" fill="#383E45"/>
</g>
<rect x="107.67" y="848.12" width="147.6" height="237.6" rx="2.32" style="fill:none;stroke:#7C6576;stroke-miterlimit:10;stroke-width:4px"/>
<!-- Text -->
<text x="120" y="1035" style="font-size:16.9px;fill:#7C6576;font-family:'Syne';font-weight:bold;">Entry Title</text>
<!-- Column 2 -->
<!-- Shadow -->
<rect width="147.6" height="237.6" transform="translate(285 848.5)" filter="drop-shadow(0 0 25px rgba(0,0,0,.5))"/>
<!-- Image -->
<rect x="284.39" y="848.12" width="147.6" height="160.04" class="img_reference_s_three_columns_default_image_2" fill="url(#theme_avantgarde_s_three_columns_default_image_2_id)"/>
<rect x="284.39" y="1008.16" width="147.6" height="77.56" fill="#FFFFFF"/>
<g opacity="0.393999993801117">
<rect x="296.99" y="1047.02" width="75.6" height="1.8" fill="#383E45"/>
<rect x="296.99" y="1051.52" width="66.94" height="1.8" fill="#383E45"/>
<rect x="296.99" y="1056.02" width="45.59" height="1.8" fill="#383E45"/>
<rect x="296.99" y="1060.52" width="52.52" height="1.8" fill="#383E45"/>
</g>
<rect x="284.39" y="848.12" width="147.6" height="237.6" rx="2.32" style="fill:none;stroke:#FFFFFF;stroke-miterlimit:10;stroke-width:4px"/>
<!-- Text -->
<text x="296.75" y="1035" style="font-size:16.9px;fill:#7C6576;font-family:'Syne';font-weight:bold;">Entry Title</text>
<!-- Column 3 -->
<rect x="478.09" y="870.12" width="147.6" height="237.6" rx="2.32" fill="#3AADAA"/>
<!-- Image -->
<rect x="456.09" y="848.12" width="147.6" height="160.04" class="img_reference_s_three_columns_default_image_3" fill="url(#theme_avantgarde_s_three_columns_default_image_3_id)"/>
<rect x="456.09" y="1008.16" width="147.6" height="77.56" fill="#FFFFFF"/>
<g opacity="0.393999993801117">
<rect x="468.69" y="1047.02" width="75.6" height="1.8" fill="#383E45"/>
<rect x="468.69" y="1051.52" width="66.94" height="1.8" fill="#383E45"/>
<rect x="468.69" y="1056.02" width="45.59" height="1.8" fill="#383E45"/>
<rect x="468.69" y="1060.52" width="52.52" height="1.8" fill="#383E45"/>
</g>
<rect x="456.09" y="848.12" width="147.6" height="237.6" rx="2.32" style="fill:none;stroke:#3AADAA;stroke-miterlimit:10;stroke-width:4px"/>
<!-- Text -->
<text x="468.75" y="1035" style="font-size:16.9px;fill:#7C6576;font-family:'Syne';font-weight:bold;">Entry Title</text>
<!-- Shape -->
<path d="M700,1210.12H0v-12.06c134.4,8.89,268.5,17.63,340.8,1.33,6.1-1.39,12.3-2.56,18.55-3.69,170-30.06,211.4-6.18,340.7,2.36v12.06Z" fill="#7C6576"/>
<!-- Shape Overlay-->
<path d="M700,1210.12H0v-12.06c134.4,8.89,268.5,17.63,340.8,1.33,6.1-1.39,12.3-2.56,18.55-3.69,170-30.06,211.4-6.18,340.7,2.36v12.06Z" style="fill:#000;opacity:0.3"/>
</g>
<!-- Text - Image -->
<g class="s_text_image">
<rect y="1207.61" width="700.05" height="332.89" fill="#7C6576"/>
<!-- Overlay -->
<rect y="1207.61" width="700.05" height="332.89" style="fill:#000;opacity:0.3"/>
<path d="M537.44,1352.75l-51.91-41.27-52.4-41.1a16.33,16.33,0,0,0-9.86-3.69c-11-.19-20,11.51-20.11,26.13l-.67,81-.68,80.89a33.34,33.34,0,0,0,2.67,13.59c5.48,12.61,17.59,16.9,27,9.59l52.9-39.62,53-39.63a24.2,24.2,0,0,0,7.29-9.72C550.21,1376.23,546.94,1360,537.44,1352.75Z" style="fill:none;stroke:#3AADAA;stroke-miterlimit:10;stroke-width:6px;isolation:isolate"/>
<!-- Image -->
<path width="193.0843" height="192.9226" class="img_reference_s_text_image_default_image" fill="url(#theme_avantgarde_s_text_image_default_image_id)" d="M498.73,1284.89c21.95,9.59,42.41,42.28,44.07,77.7,1.5,34.55-16.47,71.93-43,92.7s-61.49,25.79-89.54,12-49.85-46.31-57.43-80c-7.45-32.85-.67-66.93,14.47-81s39.43-7.35,62.83-11.55C454.22,1290.42,476.87,1276.14,498.73,1284.89Z"/>
<!-- Content -->
<g opacity="0.393999993801117">
<rect x="150.31" y="1373.16" width="127.97" height="2" fill="#FFFFFF"/>
<rect x="150.31" y="1378.16" width="135.86" height="2" fill="#FFFFFF"/>
<rect x="150.31" y="1383.16" width="138.89" height="2" fill="#FFFFFF"/>
<rect x="150.31" y="1388.16" width="118.5" height="2" fill="#FFFFFF"/>
<rect x="150.31" y="1404.03" width="138.89" height="2" fill="#FFFFFF"/>
<rect x="150.31" y="1409.03" width="122.98" height="2" fill="#FFFFFF"/>
<rect x="150.31" y="1414.03" width="83.76" height="2" fill="#FFFFFF"/>
</g>
<!-- Text -->
<text x="150.5" y="1319.5" style="font-size:33.8px;fill:#F6F6F6;font-family:'Syne';font-weight:bold;">Section
<tspan x="150.5" y="1350.5">Title</tspan>
</text>
<rect x="151.31" y="1436.89" width="66.21" height="19.72" rx="1.41" style="fill:none;stroke:#3AADAA;stroke-miterlimit:10;stroke-width:2px"/>
</g>
<!-- Call to Action -->
<g class="s_call_to_action">
<rect y="1538" width="700" height="175" fill="#7C6576"/>
<!-- Overlay -->
<rect y="1538" width="700" height="175" style="fill:#000;opacity:0.3"/>
<!-- Shape -->
<path d="M0,1691.19V1714H700v-22.85C457.85,1711.59,224,1712.79,0,1691.19Z" fill="#FOOTER_COLOR"/>
<rect x="455.38" y="1616.16" width="66.21" height="19.72" rx="1.41" style="fill:none;stroke:#3AADAA;stroke-miterlimit:10;stroke-width:2px"/>
<g opacity="0.393999993801117">
<rect x="160.7" y="1622.52" width="282.56" height="2" fill="#FFFFFF"/>
<rect x="193.06" y="1627.52" width="250.2" height="2" fill="#FFFFFF"/>
</g>
</g>
<!-- Footer -->
<g class="svgc_footer">
<!-- Footer Background -->
<rect class="svgc_footer_bg" y="1713" width="700" height="137" fill="#FOOTER_COLOR"/>
<!-- Contents -->
<g opacity="0.55">
<circle cx="561.35" cy="1802.49" r="7.5" fill="#FOOTER_COLOR" class="svgc_text" filter="url(#filter_readability_avantgarde)"/>
<circle cx="581.35" cy="1802.49" r="7.5" fill="#FOOTER_COLOR" class="svgc_text" filter="url(#filter_readability_avantgarde)"/>
<circle cx="601.35" cy="1802.49" r="7.5" fill="#FOOTER_COLOR" class="svgc_text" filter="url(#filter_readability_avantgarde)"/>
<rect x="337.12" y="1779.26" width="173.79" height="2" fill="#FOOTER_COLOR" class="svgc_text" filter="url(#filter_readability_avantgarde)"/>
<rect x="337.12" y="1784.26" width="153.89" height="2" fill="#FOOTER_COLOR" class="svgc_text" filter="url(#filter_readability_avantgarde)"/>
<rect x="337.12" y="1789.26" width="104.8" height="2" fill="#FOOTER_COLOR" class="svgc_text" filter="url(#filter_readability_avantgarde)"/>
<rect x="337.12" y="1794.26" width="120.72" height="2" fill="#FOOTER_COLOR" class="svgc_text" filter="url(#filter_readability_avantgarde)"/>
<circle cx="621.35" cy="1802.49" r="7.5" fill="#FOOTER_COLOR" class="svgc_text" filter="url(#filter_readability_avantgarde)"/>
<rect x="70.61" y="1779.26" width="205.45" height="2" fill="#FOOTER_COLOR" class="svgc_text" filter="url(#filter_readability_avantgarde)"/>
<rect x="70.61" y="1753.01" width="155.02" height="2" fill="#FOOTER_COLOR" class="svgc_text" filter="url(#filter_readability_avantgarde)"/>
<rect x="70.61" y="1784.26" width="181.92" height="2" fill="#FOOTER_COLOR" class="svgc_text" filter="url(#filter_readability_avantgarde)"/>
<rect x="70.61" y="1789.26" width="197.08" height="2" fill="#FOOTER_COLOR" class="svgc_text" filter="url(#filter_readability_avantgarde)"/>
<rect x="70.61" y="1794.26" width="123.76" height="2" fill="#FOOTER_COLOR" class="svgc_text" filter="url(#filter_readability_avantgarde)"/>
<rect x="553.85" y="1779.26" width="65.58" height="2" fill="#FOOTER_COLOR" class="svgc_text" filter="url(#filter_readability_avantgarde)"/>
<rect x="553.85" y="1784.26" width="75.54" height="2" fill="#FOOTER_COLOR" class="svgc_text" filter="url(#filter_readability_avantgarde)"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

View file

@ -0,0 +1,50 @@
{\rtf1\ansi\ansicpg1252\cocoartf1344\cocoasubrtf720
{\fonttbl\f0\fnil\fcharset0 Georgia;}
{\colortbl;\red255\green255\blue255;\red0\green0\blue0;}
\paperw11900\paperh16840\margl1440\margr1440\vieww10800\viewh8400\viewkind0
\deftab720
\pard\pardeftab720\sl560\sa108
\f0\fs26 \cf0 \expnd0\expndtw0\kerning0
bg_image_01.jpg / \expnd0\expndtw0\kerning0
bg_image_05.jpg\expnd0\expndtw0\kerning0
\
{\field{\*\fldinst{HYPERLINK "https://unsplash.com/"}}{\fldrslt https://unsplash.com/}}\
\
\pard\pardeftab720\sl560\sa108
\cf0 \expnd0\expndtw0\kerning0
bg_image_06.jpg\expnd0\expndtw0\kerning0
\
\pard\pardeftab720\sl560\sa108
\cf2 \expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 Egon Schiele - Gustav Klimt im blauen Malerkittel - 1913\
\pard\pardeftab720\sl560\sa108
{\field{\*\fldinst{HYPERLINK "http://commons.wikimedia.org/wiki/File:Egon_Schiele_-_Gustav_Klimt_im_blauen_Malerkittel_-_1913.jpeg"}}{\fldrslt \cf0 \expnd0\expndtw0\kerning0
\outl0\strokewidth0 http://commons.wikimedia.org/wiki/File:Egon_Schiele_-_Gustav_Klimt_im_blauen_Malerkittel_-_1913.jpeg}}\cf0 \expnd0\expndtw0\kerning0
\outl0\strokewidth0 \
\
\pard\pardeftab720\sl560\sa108
\cf0 \expnd0\expndtw0\kerning0
bg_image_07.jpg\expnd0\expndtw0\kerning0
\
1988 le rocher \'e9clabouss\'e9\kerning1\expnd0\expndtw0 \
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\pardeftab720\pardirnatural
{\field{\*\fldinst{HYPERLINK "http://commons.wikimedia.org/wiki/File:1988_le_rocher_%C3%A9clabouss%C3%A9.jpg"}}{\fldrslt \cf0 http://commons.wikimedia.org/wiki/File:1988_le_rocher_%C3%A9clabouss%C3%A9.jpg}}\
\
\
\pard\pardeftab720\sl560\sa108
\cf0 \expnd0\expndtw0\kerning0
bg_image_08.jpg\kerning1\expnd0\expndtw0 \
\pard\pardeftab720\sl560\sa108
\cf2 \expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 Paul Gauguin - Portrait of a man - Google Art Project.jpg\cf0 \kerning1\expnd0\expndtw0 \outl0\strokewidth0 \
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\pardeftab720\pardirnatural
{\field{\*\fldinst{HYPERLINK "http://commons.wikimedia.org/wiki/File:Paul_Gauguin_-_Portrait_of_a_man_-_Google_Art_Project.jpg"}}{\fldrslt \cf0 http://commons.wikimedia.org/wiki/File:Paul_Gauguin_-_Portrait_of_a_man_-_Google_Art_Project.jpg}}\
\
\pard\pardeftab720\sl560\sa108
\cf0 \expnd0\expndtw0\kerning0
bg_image_09.jpg\cf2 \expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 \
\pard\pardeftab720\sl560\sa108
\cf2 Winter landscape Paul Gauguin.jpg\
{\field{\*\fldinst{HYPERLINK "http://commons.wikimedia.org/wiki/File:Winter_landscape_Paul_Gauguin.jpg"}}{\fldrslt http://commons.wikimedia.org/wiki/File:Winter_landscape_Paul_Gauguin.jpg}}}

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

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