diff --git a/bemade_packing_wizard/models/delivery_carrier.py b/bemade_packing_wizard/models/delivery_carrier.py index 4f72762..e89e204 100644 --- a/bemade_packing_wizard/models/delivery_carrier.py +++ b/bemade_packing_wizard/models/delivery_carrier.py @@ -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 diff --git a/bemade_packing_wizard/models/stock_quant_package.py b/bemade_packing_wizard/models/stock_quant_package.py index fc4ce1f..9366771 100644 --- a/bemade_packing_wizard/models/stock_quant_package.py +++ b/bemade_packing_wizard/models/stock_quant_package.py @@ -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 \ No newline at end of file diff --git a/bemade_packing_wizard/views/stock_package_views.xml b/bemade_packing_wizard/views/stock_package_views.xml index 8210b1d..31e680a 100644 --- a/bemade_packing_wizard/views/stock_package_views.xml +++ b/bemade_packing_wizard/views/stock_package_views.xml @@ -11,9 +11,12 @@ attrs="{'invisible': [('package_type_id', '=', False),('auto_create_package', '=', True)]}"/> - - - + + + diff --git a/bemade_packing_wizard/wizard/choose_delivery_package.py b/bemade_packing_wizard/wizard/choose_delivery_package.py index 75d1658..55a0a9e 100644 --- a/bemade_packing_wizard/wizard/choose_delivery_package.py +++ b/bemade_packing_wizard/wizard/choose_delivery_package.py @@ -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"]}', diff --git a/bemade_packing_wizard/wizard/choose_delivery_package_views.xml b/bemade_packing_wizard/wizard/choose_delivery_package_views.xml index ea9654b..da22a15 100644 --- a/bemade_packing_wizard/wizard/choose_delivery_package_views.xml +++ b/bemade_packing_wizard/wizard/choose_delivery_package_views.xml @@ -10,8 +10,7 @@ + attrs="{'invisible': [('auto_create_package', '=', True)]}" /> diff --git a/theme_durpro/LICENSE b/theme_durpro/LICENSE new file mode 100644 index 0000000..b01eaf1 --- /dev/null +++ b/theme_durpro/LICENSE @@ -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. diff --git a/theme_durpro/__init__.py b/theme_durpro/__init__.py new file mode 100644 index 0000000..be9f4fa --- /dev/null +++ b/theme_durpro/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from . import models diff --git a/theme_durpro/__manifest__.py b/theme_durpro/__manifest__.py new file mode 100644 index 0000000..ea01786 --- /dev/null +++ b/theme_durpro/__manifest__.py @@ -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', + ], + } +} diff --git a/theme_durpro/data/ir_asset.xml b/theme_durpro/data/ir_asset.xml new file mode 100644 index 0000000..ad77a7f --- /dev/null +++ b/theme_durpro/data/ir_asset.xml @@ -0,0 +1,43 @@ + + + + + theme_durpro.s_showcase_slider_000_variables_scss + Showcase slider 000 variables SCSS + web._assets_primary_variables + theme_durpro/static/src/old_snippets/s_showcase_slider/000_variables.scss + + + + + theme_durpro.primary_variables_scss + Primary variables SCSS + web._assets_primary_variables + append + theme_durpro/static/src/scss/primary_variables.scss + + + + theme_durpro.secondary_variables_scss + Secondary variables SCSS + web._assets_secondary_variables + theme_durpro/static/src/scss/secondary_variables.scss + + + + theme_durpro.bootstrap_overridden_scss + Bootstrap overridden SCSS + web._assets_frontend_helpers + prepend + theme_durpro/static/src/scss/bootstrap_overridden.scss + + + + theme_durpro.custom_styles_scss + Custom Styles SCSS + web._assets_frontend + append + theme_durpro/static/src/scss/custom_styles.scss + + + diff --git a/theme_durpro/i18n/de.po b/theme_durpro/i18n/de.po new file mode 100644 index 0000000..830799a --- /dev/null +++ b/theme_durpro/i18n/de.po @@ -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 "50,000+ companies run our software." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover +msgid "Making the difference." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +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, CTO" +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, CFO" +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "Mich Stark, COO" +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.
Extensive " +"documentation & guides, an active community,
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
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, CEO" +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.
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 "" diff --git a/theme_durpro/i18n/es.po b/theme_durpro/i18n/es.po new file mode 100644 index 0000000..197260b --- /dev/null +++ b/theme_durpro/i18n/es.po @@ -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 "50,000+ companies run our software." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover +msgid "Making the difference." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +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, CTO" +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, CFO" +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "Mich Stark, COO" +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.
Extensive " +"documentation & guides, an active community,
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
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, CEO" +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.
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 "" diff --git a/theme_durpro/i18n/fr.po b/theme_durpro/i18n/fr.po new file mode 100644 index 0000000..965de47 --- /dev/null +++ b/theme_durpro/i18n/fr.po @@ -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 "50,000+ companies run our software." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover +msgid "Making the difference." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +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, CTO" +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, CFO" +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "Mich Stark, COO" +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.
Extensive " +"documentation & guides, an active community,
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
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, CEO" +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.
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 "" diff --git a/theme_durpro/i18n/it.po b/theme_durpro/i18n/it.po new file mode 100644 index 0000000..10c48f5 --- /dev/null +++ b/theme_durpro/i18n/it.po @@ -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 , 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 , 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 "50,000+ companies run our software." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover +msgid "Making the difference." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +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, CTO" +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, CFO" +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "Mich Stark, COO" +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.
Extensive " +"documentation & guides, an active community,
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
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, CEO" +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.
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 "" diff --git a/theme_durpro/i18n/nl.po b/theme_durpro/i18n/nl.po new file mode 100644 index 0000000..ec2534f --- /dev/null +++ b/theme_durpro/i18n/nl.po @@ -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 "50,000+ companies run our software." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover +msgid "Making the difference." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +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, CTO" +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, CFO" +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "Mich Stark, COO" +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.
Extensive " +"documentation & guides, an active community,
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
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, CEO" +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.
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 "" diff --git a/theme_durpro/i18n/theme_graphene.pot b/theme_durpro/i18n/theme_graphene.pot new file mode 100644 index 0000000..30d3993 --- /dev/null +++ b/theme_durpro/i18n/theme_graphene.pot @@ -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 "50,000+ companies run our software." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover +msgid "Making the difference." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +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, CTO" +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, CFO" +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "Mich Stark, COO" +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.
Extensive " +"documentation & guides, an active community,
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
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, CEO" +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.
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 "" diff --git a/theme_durpro/i18n/zh_CN.po b/theme_durpro/i18n/zh_CN.po new file mode 100644 index 0000000..93f526c --- /dev/null +++ b/theme_durpro/i18n/zh_CN.po @@ -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 "50,000+ companies run our software." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_cover +msgid "Making the difference." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "" +"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." +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, CTO" +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, CFO" +msgstr "" + +#. module: theme_durpro +#: model_terms:theme.ir.ui.view,arch:theme_durpro.s_company_team +msgid "Mich Stark, COO" +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.
Extensive " +"documentation & guides, an active community,
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
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, CEO" +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.
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 "" diff --git a/theme_durpro/models/__init__.py b/theme_durpro/models/__init__.py new file mode 100644 index 0000000..3e1c76c --- /dev/null +++ b/theme_durpro/models/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from . import theme_durpro diff --git a/theme_durpro/models/theme_durpro.py b/theme_durpro/models/theme_durpro.py new file mode 100644 index 0000000..6c4ffde --- /dev/null +++ b/theme_durpro/models/theme_durpro.py @@ -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') diff --git a/theme_durpro/static/description/durpro_poster.png b/theme_durpro/static/description/durpro_poster.png new file mode 100644 index 0000000..546ce5b Binary files /dev/null and b/theme_durpro/static/description/durpro_poster.png differ diff --git a/theme_durpro/static/description/durpro_screenshot.jpg b/theme_durpro/static/description/durpro_screenshot.jpg new file mode 100644 index 0000000..522a58d Binary files /dev/null and b/theme_durpro/static/description/durpro_screenshot.jpg differ diff --git a/theme_durpro/static/description/index.html b/theme_durpro/static/description/index.html new file mode 100644 index 0000000..a0f7375 --- /dev/null +++ b/theme_durpro/static/description/index.html @@ -0,0 +1,2 @@ +
+
diff --git a/theme_durpro/static/description/theme_durpro.svg b/theme_durpro/static/description/theme_durpro.svg new file mode 100644 index 0000000..12d1d86 --- /dev/null +++ b/theme_durpro/static/description/theme_durpro.svg @@ -0,0 +1,236 @@ + + theme_durpro + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Welcome Message + + + + + + + + + + + + + Discover + + + + + + + + + + + Section Title + + + + + + + + + + + Discover + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 40 + 23 + 8 + 12 + + + + + + + + + + + + Section Title + + + + + + + + + + + + + + + $35 + + + + + + Discover + + + + + + + + + + + + + + + + + $55 + + + + + Discover + + + + + + + + + + + + + + + + + $85 + + + + + Discover + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme_durpro/static/src/img/patterns/bg_pattern_01.jpg b/theme_durpro/static/src/img/patterns/bg_pattern_01.jpg new file mode 100755 index 0000000..0787d58 Binary files /dev/null and b/theme_durpro/static/src/img/patterns/bg_pattern_01.jpg differ diff --git a/theme_durpro/static/src/img/patterns/bg_pattern_02.jpg b/theme_durpro/static/src/img/patterns/bg_pattern_02.jpg new file mode 100755 index 0000000..c2f1a1e Binary files /dev/null and b/theme_durpro/static/src/img/patterns/bg_pattern_02.jpg differ diff --git a/theme_durpro/static/src/img/patterns/bg_pattern_03.jpg b/theme_durpro/static/src/img/patterns/bg_pattern_03.jpg new file mode 100755 index 0000000..b96a511 Binary files /dev/null and b/theme_durpro/static/src/img/patterns/bg_pattern_03.jpg differ diff --git a/theme_durpro/static/src/img/patterns/bg_pattern_04.jpg b/theme_durpro/static/src/img/patterns/bg_pattern_04.jpg new file mode 100755 index 0000000..08fe32f Binary files /dev/null and b/theme_durpro/static/src/img/patterns/bg_pattern_04.jpg differ diff --git a/theme_durpro/static/src/img/patterns/bg_pattern_05.jpg b/theme_durpro/static/src/img/patterns/bg_pattern_05.jpg new file mode 100755 index 0000000..e67e5f2 Binary files /dev/null and b/theme_durpro/static/src/img/patterns/bg_pattern_05.jpg differ diff --git a/theme_durpro/static/src/img/patterns/bg_pattern_06.jpg b/theme_durpro/static/src/img/patterns/bg_pattern_06.jpg new file mode 100755 index 0000000..1b72873 Binary files /dev/null and b/theme_durpro/static/src/img/patterns/bg_pattern_06.jpg differ diff --git a/theme_durpro/static/src/img/pictures/bg_image_01.jpg b/theme_durpro/static/src/img/pictures/bg_image_01.jpg new file mode 100755 index 0000000..4cf7531 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/bg_image_01.jpg differ diff --git a/theme_durpro/static/src/img/pictures/bg_image_02.jpg b/theme_durpro/static/src/img/pictures/bg_image_02.jpg new file mode 100755 index 0000000..87a5e82 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/bg_image_02.jpg differ diff --git a/theme_durpro/static/src/img/pictures/bg_image_03.jpg b/theme_durpro/static/src/img/pictures/bg_image_03.jpg new file mode 100755 index 0000000..5780458 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/bg_image_03.jpg differ diff --git a/theme_durpro/static/src/img/pictures/bg_image_04.jpg b/theme_durpro/static/src/img/pictures/bg_image_04.jpg new file mode 100755 index 0000000..a8d85c9 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/bg_image_04.jpg differ diff --git a/theme_durpro/static/src/img/pictures/bg_image_05.jpg b/theme_durpro/static/src/img/pictures/bg_image_05.jpg new file mode 100755 index 0000000..f8e8a98 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/bg_image_05.jpg differ diff --git a/theme_durpro/static/src/img/pictures/bg_image_06.jpg b/theme_durpro/static/src/img/pictures/bg_image_06.jpg new file mode 100755 index 0000000..cf1db29 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/bg_image_06.jpg differ diff --git a/theme_durpro/static/src/img/pictures/bg_image_07.jpg b/theme_durpro/static/src/img/pictures/bg_image_07.jpg new file mode 100755 index 0000000..c49bc69 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/bg_image_07.jpg differ diff --git a/theme_durpro/static/src/img/pictures/bg_image_08.jpg b/theme_durpro/static/src/img/pictures/bg_image_08.jpg new file mode 100755 index 0000000..6791829 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/bg_image_08.jpg differ diff --git a/theme_durpro/static/src/img/pictures/bg_image_09.jpg b/theme_durpro/static/src/img/pictures/bg_image_09.jpg new file mode 100755 index 0000000..ba614f8 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/bg_image_09.jpg differ diff --git a/theme_durpro/static/src/img/pictures/bg_image_10.jpg b/theme_durpro/static/src/img/pictures/bg_image_10.jpg new file mode 100755 index 0000000..d0d7a78 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/bg_image_10.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_01.jpg b/theme_durpro/static/src/img/pictures/content_01.jpg new file mode 100644 index 0000000..c89ee56 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_01.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_02.jpg b/theme_durpro/static/src/img/pictures/content_02.jpg new file mode 100644 index 0000000..7f81983 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_02.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_03.jpg b/theme_durpro/static/src/img/pictures/content_03.jpg new file mode 100644 index 0000000..ca3aca2 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_03.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_04.jpg b/theme_durpro/static/src/img/pictures/content_04.jpg new file mode 100644 index 0000000..811d3e3 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_04.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_05.jpg b/theme_durpro/static/src/img/pictures/content_05.jpg new file mode 100644 index 0000000..b333231 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_05.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_06.jpg b/theme_durpro/static/src/img/pictures/content_06.jpg new file mode 100644 index 0000000..2846018 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_06.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_07.jpg b/theme_durpro/static/src/img/pictures/content_07.jpg new file mode 100644 index 0000000..b9a7cc9 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_07.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_08.jpg b/theme_durpro/static/src/img/pictures/content_08.jpg new file mode 100644 index 0000000..de9ec35 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_08.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_09.jpg b/theme_durpro/static/src/img/pictures/content_09.jpg new file mode 100644 index 0000000..71a8c9e Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_09.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_10.jpg b/theme_durpro/static/src/img/pictures/content_10.jpg new file mode 100644 index 0000000..bd44351 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_10.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_11.jpg b/theme_durpro/static/src/img/pictures/content_11.jpg new file mode 100644 index 0000000..076ed92 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_11.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_12.jpg b/theme_durpro/static/src/img/pictures/content_12.jpg new file mode 100644 index 0000000..efe63f6 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_12.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_13.jpg b/theme_durpro/static/src/img/pictures/content_13.jpg new file mode 100644 index 0000000..eec06e3 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_13.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_14.jpg b/theme_durpro/static/src/img/pictures/content_14.jpg new file mode 100644 index 0000000..3b98b86 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_14.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_15.jpg b/theme_durpro/static/src/img/pictures/content_15.jpg new file mode 100644 index 0000000..0482793 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_15.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_16.jpg b/theme_durpro/static/src/img/pictures/content_16.jpg new file mode 100644 index 0000000..486f94a Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_16.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_17.jpg b/theme_durpro/static/src/img/pictures/content_17.jpg new file mode 100644 index 0000000..86765e8 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_17.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_18.jpg b/theme_durpro/static/src/img/pictures/content_18.jpg new file mode 100644 index 0000000..e9485fe Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_18.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_19.jpg b/theme_durpro/static/src/img/pictures/content_19.jpg new file mode 100644 index 0000000..665b7f4 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_19.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_20.jpg b/theme_durpro/static/src/img/pictures/content_20.jpg new file mode 100644 index 0000000..0903766 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_20.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_21.jpg b/theme_durpro/static/src/img/pictures/content_21.jpg new file mode 100644 index 0000000..8a605f5 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_21.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_22.jpg b/theme_durpro/static/src/img/pictures/content_22.jpg new file mode 100644 index 0000000..4256f78 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_22.jpg differ diff --git a/theme_durpro/static/src/img/pictures/content_23.jpg b/theme_durpro/static/src/img/pictures/content_23.jpg new file mode 100644 index 0000000..370ea36 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/content_23.jpg differ diff --git a/theme_durpro/static/src/img/pictures/s_numbers.jpg b/theme_durpro/static/src/img/pictures/s_numbers.jpg new file mode 100644 index 0000000..5b33ca6 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/s_numbers.jpg differ diff --git a/theme_durpro/static/src/img/pictures/s_popup.jpg b/theme_durpro/static/src/img/pictures/s_popup.jpg new file mode 100644 index 0000000..c8c51f7 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/s_popup.jpg differ diff --git a/theme_durpro/static/src/img/pictures/uiface_01.jpg b/theme_durpro/static/src/img/pictures/uiface_01.jpg new file mode 100644 index 0000000..6db64e9 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/uiface_01.jpg differ diff --git a/theme_durpro/static/src/img/pictures/uiface_02.jpg b/theme_durpro/static/src/img/pictures/uiface_02.jpg new file mode 100644 index 0000000..f4121f8 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/uiface_02.jpg differ diff --git a/theme_durpro/static/src/img/pictures/uiface_03.jpg b/theme_durpro/static/src/img/pictures/uiface_03.jpg new file mode 100644 index 0000000..910dd42 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/uiface_03.jpg differ diff --git a/theme_durpro/static/src/img/pictures/uiface_04.jpg b/theme_durpro/static/src/img/pictures/uiface_04.jpg new file mode 100644 index 0000000..bcbc1b4 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/uiface_04.jpg differ diff --git a/theme_durpro/static/src/img/pictures/uiface_05.jpg b/theme_durpro/static/src/img/pictures/uiface_05.jpg new file mode 100644 index 0000000..41b2f8e Binary files /dev/null and b/theme_durpro/static/src/img/pictures/uiface_05.jpg differ diff --git a/theme_durpro/static/src/img/pictures/uiface_06.jpg b/theme_durpro/static/src/img/pictures/uiface_06.jpg new file mode 100644 index 0000000..8a9edd8 Binary files /dev/null and b/theme_durpro/static/src/img/pictures/uiface_06.jpg differ diff --git a/theme_durpro/static/src/img/pictures/uiface_07.jpg b/theme_durpro/static/src/img/pictures/uiface_07.jpg new file mode 100644 index 0000000..4f50b5c Binary files /dev/null and b/theme_durpro/static/src/img/pictures/uiface_07.jpg differ diff --git a/theme_durpro/static/src/js/tour.js b/theme_durpro/static/src/js/tour.js new file mode 100644 index 0000000..6efc15c --- /dev/null +++ b/theme_durpro/static/src/js/tour.js @@ -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(), +]); +}); diff --git a/theme_durpro/static/src/old_snippets/s_showcase_slider/000_variables.scss b/theme_durpro/static/src/old_snippets/s_showcase_slider/000_variables.scss new file mode 100644 index 0000000..ff89d18 --- /dev/null +++ b/theme_durpro/static/src/old_snippets/s_showcase_slider/000_variables.scss @@ -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; + } +} diff --git a/theme_durpro/static/src/scss/bootstrap_overridden.scss b/theme_durpro/static/src/scss/bootstrap_overridden.scss new file mode 100644 index 0000000..5d5c4d5 --- /dev/null +++ b/theme_durpro/static/src/scss/bootstrap_overridden.scss @@ -0,0 +1,3 @@ +// Headings font weight + +$headings-font-weight: 700 !default; diff --git a/theme_durpro/static/src/scss/custom_styles.scss b/theme_durpro/static/src/scss/custom_styles.scss new file mode 100644 index 0000000..2dc614d --- /dev/null +++ b/theme_durpro/static/src/scss/custom_styles.scss @@ -0,0 +1,5 @@ +ul#top_menu { + > li:first-child { + font-size: 200%; // This will make the font size twice as big + } +} \ No newline at end of file diff --git a/theme_durpro/static/src/scss/primary_variables.scss b/theme_durpro/static/src/scss/primary_variables.scss new file mode 100644 index 0000000..fbd9a1c --- /dev/null +++ b/theme_durpro/static/src/scss/primary_variables.scss @@ -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)); + diff --git a/theme_durpro/static/src/scss/secondary_variables.scss b/theme_durpro/static/src/scss/secondary_variables.scss new file mode 100644 index 0000000..047cfac --- /dev/null +++ b/theme_durpro/static/src/scss/secondary_variables.scss @@ -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); diff --git a/theme_durpro/views/customizations.xml b/theme_durpro/views/customizations.xml new file mode 100644 index 0000000..4fc850f --- /dev/null +++ b/theme_durpro/views/customizations.xml @@ -0,0 +1,295 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme_durpro/views/images_library.xml b/theme_durpro/views/images_library.xml new file mode 100644 index 0000000..56fbbfc --- /dev/null +++ b/theme_durpro/views/images_library.xml @@ -0,0 +1,333 @@ + + + + + + theme_durpro.image_content_01 + theme_durpro.image_content_01 + /theme_durpro/static/src/img/pictures/bg_image_01.jpg + + + theme_durpro.image_content_02 + theme_durpro.image_content_02 + /theme_durpro/static/src/img/pictures/bg_image_02.jpg + + + theme_durpro.image_content_03 + theme_durpro.image_content_03 + /theme_durpro/static/src/img/pictures/bg_image_03.jpg + + + theme_durpro.image_content_04 + theme_durpro.image_content_04 + /theme_durpro/static/src/img/pictures/bg_image_04.jpg + + + theme_durpro.image_content_05 + theme_durpro.image_content_05 + /theme_durpro/static/src/img/pictures/bg_image_05.jpg + + + theme_durpro.image_content_06 + theme_durpro.image_content_06 + /theme_durpro/static/src/img/pictures/bg_image_06.jpg + + + theme_durpro.image_content_07 + theme_durpro.image_content_07 + /theme_durpro/static/src/img/pictures/bg_image_07.jpg + + + theme_durpro.image_content_08 + theme_durpro.image_content_08 + /theme_durpro/static/src/img/pictures/bg_image_08.jpg + + + theme_durpro.image_content_09 + theme_durpro.image_content_09 + /theme_durpro/static/src/img/pictures/bg_image_09.jpg + + + theme_durpro.image_content_10 + theme_durpro.image_content_10 + /theme_durpro/static/src/img/pictures/bg_image_10.jpg + + + + theme_durpro.image_content_19 + theme_durpro.image_content_19 + /theme_durpro/static/src/img/pictures/bg_image_01.jpg + + + theme_durpro.image_content_20 + theme_durpro.image_content_20 + /theme_durpro/static/src/img/pictures/bg_image_01.jpg + + + theme_durpro.image_content_21 + theme_durpro.image_content_21 + /theme_durpro/static/src/img/pictures/bg_image_02.jpg + + + theme_durpro.image_content_22 + theme_durpro.image_content_22 + /theme_durpro/static/src/img/pictures/bg_image_03.jpg + + + theme_durpro.image_content_23 + theme_durpro.image_content_23 + /theme_durpro/static/src/img/pictures/bg_image_03.jpg + + + + + website.s_background_image_01 + Background Image 01 + /theme_durpro/static/src/img/patterns/bg_pattern_01.jpg + + + website.s_background_image_02 + Background Image 02 + /theme_durpro/static/src/img/patterns/bg_pattern_02.jpg + + + website.s_background_image_03 + Background Image 03 + /theme_durpro/static/src/img/patterns/bg_pattern_03.jpg + + + website.s_background_image_04 + Background Image 04 + /theme_durpro/static/src/img/patterns/bg_pattern_04.jpg + + + website.s_background_image_05 + Background Image 05 + /theme_durpro/static/src/img/patterns/bg_pattern_05.jpg + + + website.s_background_image_06 + Background Image 06 + /theme_durpro/static/src/img/patterns/bg_pattern_06.jpg + + + + + + website.s_cover_default_image + website.s_cover_default_image + /theme_durpro/static/src/img/pictures/bg_image_08.jpg + + + + + website.s_banner_default_image + website.s_banner_default_image + /theme_durpro/static/src/img/pictures/content_01.jpg + + + + + website.s_popup_default_image + website.s_popup_default_image + /theme_durpro/static/src/img/pictures/s_popup.jpg + + + + + website.s_text_image_default_image + website.s_text_image_default_image + /theme_durpro/static/src/img/pictures/content_02.jpg + + + + + website.s_image_text_default_image + website.s_image_text_default_image + /theme_durpro/static/src/img/pictures/content_03.jpg + + + + + website.s_picture_default_image + website.s_picture_default_image + /theme_durpro/static/src/img/pictures/content_04.jpg + + + + + website.library_image_11 + website.library_image_11 + /theme_durpro/static/src/img/pictures/content_05.jpg + + + website.library_image_13 + website.library_image_13 + /theme_durpro/static/src/img/pictures/content_06.jpg + + + website.library_image_07 + website.library_image_07 + /theme_durpro/static/src/img/pictures/content_07.jpg + + + + + website.s_masonry_block_default_image_1 + website.s_masonry_block_default_image_1 + /theme_durpro/static/src/img/pictures/content_08.jpg + + + + + website.s_carousel_default_image_1 + website.s_carousel_default_image_1 + /theme_durpro/static/src/img/pictures/content_09.jpg + + + website.s_carousel_default_image_2 + website.s_carousel_default_image_2 + /theme_durpro/static/src/img/pictures/content_10.jpg + + + website.s_carousel_default_image_3 + website.s_carousel_default_image_3 + /theme_durpro/static/src/img/pictures/content_11.jpg + + + + + website.s_parallax_default_image + website.s_parallax_default_image + /theme_durpro/static/src/img/pictures/content_12.jpg + + + + + website.s_company_team_image_1 + website.s_company_team_image_1 + /theme_durpro/static/src/img/pictures/uiface_02.jpg + + + website.s_company_team_image_2 + website.s_company_team_image_2 + /theme_durpro/static/src/img/pictures/uiface_01.jpg + + + website.s_company_team_image_3 + website.s_company_team_image_3 + /theme_durpro/static/src/img/pictures/uiface_03.jpg + + + website.s_company_team_image_4 + website.s_company_team_image_4 + /theme_durpro/static/src/img/pictures/uiface_04.jpg + + + + + + website.s_quotes_carousel_demo_image_3 + website.s_quotes_carousel_demo_image_3 + /theme_durpro/static/src/img/pictures/uiface_05.jpg + + + + website.s_quotes_carousel_demo_image_4 + website.s_quotes_carousel_demo_image_4 + /theme_durpro/static/src/img/pictures/uiface_06.jpg + + + + website.s_quotes_carousel_demo_image_1 + website.s_quotes_carousel_demo_image_1 + /theme_durpro/static/src/img/pictures/content_13.jpg + + + + website.s_quotes_carousel_demo_image_5 + website.s_quotes_carousel_demo_image_5 + /theme_durpro/static/src/img/pictures/uiface_07.jpg + + + + website.s_quotes_carousel_demo_image_2 + website.s_quotes_carousel_demo_image_2 + /theme_durpro/static/src/img/pictures/content_14.jpg + + + + + website.s_product_catalog_default_image + website.s_product_catalog_default_image + /theme_durpro/static/src/img/pictures/content_15.jpg + + + + + website.s_product_list_default_image_1 + website.s_product_list_default_image_1 + /theme_durpro/static/src/img/pictures/content_16.jpg + + + website.s_product_list_default_image_2 + website.s_product_list_default_image_2 + /theme_durpro/static/src/img/pictures/content_17.jpg + + + website.s_product_list_default_image_3 + website.s_product_list_default_image_3 + /theme_durpro/static/src/img/pictures/content_18.jpg + + + website.s_product_list_default_image_4 + website.s_product_list_default_image_4 + /theme_durpro/static/src/img/pictures/content_19.jpg + + + website.s_product_list_default_image_5 + website.s_product_list_default_image_5 + /theme_durpro/static/src/img/pictures/content_20.jpg + + + website.s_product_list_default_image_6 + website.s_product_list_default_image_6 + /theme_durpro/static/src/img/pictures/content_21.jpg + + + + + website.s_numbers_default_image + website.s_numbers_default_image + /theme_durpro/static/src/img/pictures/s_numbers.jpg + + + + + website.library_image_03 + website.library_image_03 + /theme_durpro/static/src/img/pictures/content_08.jpg + + + website.library_image_10 + website.library_image_10 + /theme_durpro/static/src/img/pictures/content_22.jpg + + + website.library_image_05 + website.library_image_05 + /theme_durpro/static/src/img/pictures/content_05.jpg + + + website.library_image_14 + website.library_image_14 + /theme_durpro/static/src/img/pictures/content_07.jpg + + + website.library_image_16 + website.library_image_16 + /theme_durpro/static/src/img/pictures/content_23.jpg + + + diff --git a/theme_durpro_old/__init__.py b/theme_durpro_old/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/theme_durpro_old/__manifest__.py b/theme_durpro_old/__manifest__.py new file mode 100644 index 0000000..dd477f1 --- /dev/null +++ b/theme_durpro_old/__manifest__.py @@ -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'), + # ], + # }, + +} + + diff --git a/theme_durpro_old/data/ir_asset.xml b/theme_durpro_old/data/ir_asset.xml new file mode 100644 index 0000000..64f465f --- /dev/null +++ b/theme_durpro_old/data/ir_asset.xml @@ -0,0 +1,19 @@ + + + + + theme_durpro.primary_variables_scss + Primary variables SCSS + web._assets_primary_variables + theme_durpro/static/src/scss/primary_variables.scss + + + + + + + + + + + diff --git a/theme_durpro_old/static/src/scss/primary_variables.scss b/theme_durpro_old/static/src/scss/primary_variables.scss new file mode 100644 index 0000000..4ba761b --- /dev/null +++ b/theme_durpro_old/static/src/scss/primary_variables.scss @@ -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)); diff --git a/theme_durpro_old2/__init__.py b/theme_durpro_old2/__init__.py new file mode 100644 index 0000000..be9f4fa --- /dev/null +++ b/theme_durpro_old2/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from . import models diff --git a/theme_durpro_old2/__manifest__.py b/theme_durpro_old2/__manifest__.py new file mode 100644 index 0000000..9b3bb19 --- /dev/null +++ b/theme_durpro_old2/__manifest__.py @@ -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', + ], + } +} diff --git a/theme_durpro_old2/data/ir_asset.xml b/theme_durpro_old2/data/ir_asset.xml new file mode 100644 index 0000000..d43050b --- /dev/null +++ b/theme_durpro_old2/data/ir_asset.xml @@ -0,0 +1,34 @@ + + + + + theme_durpro.s_showcase_slider_000_variables_scss + Showcase slider 000 variables SCSS + web._assets_primary_variables + theme_durpro/static/src/old_snippets/s_showcase_slider/000_variables.scss + + + + + theme_durpro.s_css_slider_000_variables_scss + Css slider 000 variables SCSS + web._assets_primary_variables + theme_durpro/static/src/old_snippets/s_css_slider/000_variables.scss + + + + + theme_durpro.primary_variables_scss + Primary variables SCSS + web._assets_primary_variables + theme_durpro/static/src/scss/primary_variables.scss + + + + theme_durpro.secondary_variables_scss + Secondary variables SCSS + web._assets_secondary_variables + theme_durpro/static/src/scss/secondary_variables.scss + + + diff --git a/theme_durpro_old2/i18n/de.po b/theme_durpro_old2/i18n/de.po new file mode 100644 index 0000000..f2de869 --- /dev/null +++ b/theme_durpro_old2/i18n/de.po @@ -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 "Since 1992 creating around the world." +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_carousel +msgid "" +"Making Simple" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image +msgid "" +"Our R&D Approach" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns +msgid "Collaboration" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns +msgid "Excellence" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns +msgid "Sustainability" +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.
\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.
\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. We’d 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 "" diff --git a/theme_durpro_old2/i18n/es.po b/theme_durpro_old2/i18n/es.po new file mode 100644 index 0000000..42b32cb --- /dev/null +++ b/theme_durpro_old2/i18n/es.po @@ -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 "Since 1992 creating around the world." +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_carousel +msgid "" +"Making Simple" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image +msgid "" +"Our R&D Approach" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns +msgid "Collaboration" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns +msgid "Excellence" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns +msgid "Sustainability" +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.
\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.
\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. We’d 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 "" diff --git a/theme_durpro_old2/i18n/fr.po b/theme_durpro_old2/i18n/fr.po new file mode 100644 index 0000000..7164820 --- /dev/null +++ b/theme_durpro_old2/i18n/fr.po @@ -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 "Since 1992 creating around the world." +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_carousel +msgid "" +"Making Simple" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image +msgid "" +"Our R&D Approach" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns +msgid "Collaboration" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns +msgid "Excellence" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns +msgid "Sustainability" +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.
\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.
\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. We’d 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 "" diff --git a/theme_durpro_old2/i18n/it.po b/theme_durpro_old2/i18n/it.po new file mode 100644 index 0000000..60a98c8 --- /dev/null +++ b/theme_durpro_old2/i18n/it.po @@ -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 "Since 1992 creating around the world." +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_carousel +msgid "" +"Making Simple" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image +msgid "" +"Our R&D Approach" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns +msgid "Collaboration" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns +msgid "Excellence" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns +msgid "Sustainability" +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.
\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.
\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. We’d 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 "" diff --git a/theme_durpro_old2/i18n/nl.po b/theme_durpro_old2/i18n/nl.po new file mode 100644 index 0000000..9c06ce0 --- /dev/null +++ b/theme_durpro_old2/i18n/nl.po @@ -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 "Since 1992 creating around the world." +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_carousel +msgid "" +"Making Simple" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image +msgid "" +"Our R&D Approach" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns +msgid "Collaboration" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns +msgid "Excellence" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns +msgid "Sustainability" +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.
\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.
\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. We’d 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 "" diff --git a/theme_durpro_old2/i18n/theme_avantgarde.pot b/theme_durpro_old2/i18n/theme_avantgarde.pot new file mode 100644 index 0000000..4f0554d --- /dev/null +++ b/theme_durpro_old2/i18n/theme_avantgarde.pot @@ -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 "Since 1992 creating around the world." +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_carousel +msgid "" +"Making Simple" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image +msgid "" +"Our R&D Approach" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns +msgid "Collaboration" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns +msgid "Excellence" +msgstr "" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns +msgid "Sustainability" +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.
\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.
\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. We’d 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 "" diff --git a/theme_durpro_old2/i18n/zh_CN.po b/theme_durpro_old2/i18n/zh_CN.po new file mode 100644 index 0000000..82d60bd --- /dev/null +++ b/theme_durpro_old2/i18n/zh_CN.po @@ -0,0 +1,140 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * theme_avantgarde +# +# Translators: +# Benson , 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 , 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 "Since 1992 creating around the world." +msgstr "始于 1992年 在世界各地创作." + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_carousel +msgid "" +"Making Simple" +msgstr "" +"变得简单" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_text_image +msgid "" +"Our R&D Approach" +msgstr "" +"我们的研发方法" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns +msgid "Collaboration" +msgstr "合作" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns +msgid "Excellence" +msgstr "优越性" + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_three_columns +msgid "Sustainability" +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.
\n" +" We combine a wide spectrum of technologies with a good portion of creativity." +msgstr "" +"我们的设计方法植根于我们的核心价值观.
\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.
\n" +" Our methods allow us to explore a future that is equitable, data-driven, and green." +msgstr "" +"我们创造建筑、景观、室内设计、产品设计和平面设计.
\n" +" 我们的方法使我们能够探索公平、数据驱动和绿色的未来." + +#. module: theme_avantgarde +#: model_terms:theme.ir.ui.view,arch:theme_avantgarde.s_call_to_action +msgid "We partner with ambitious clients. We’d 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 "我们依靠丰富的合作来推动我们的思维。 在我们的合作伙伴的推动下,持续不断的重塑状态对我们的工作至关重要." diff --git a/theme_durpro_old2/models/__init__.py b/theme_durpro_old2/models/__init__.py new file mode 100644 index 0000000..3e1c76c --- /dev/null +++ b/theme_durpro_old2/models/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from . import theme_durpro diff --git a/theme_durpro_old2/models/theme_durpro.py b/theme_durpro_old2/models/theme_durpro.py new file mode 100644 index 0000000..4b9296c --- /dev/null +++ b/theme_durpro_old2/models/theme_durpro.py @@ -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') + diff --git a/theme_durpro_old2/static/description/durpro_screenshot.jpg b/theme_durpro_old2/static/description/durpro_screenshot.jpg new file mode 100644 index 0000000..1f1b6ef Binary files /dev/null and b/theme_durpro_old2/static/description/durpro_screenshot.jpg differ diff --git a/theme_durpro_old2/static/description/index.html b/theme_durpro_old2/static/description/index.html new file mode 100644 index 0000000..dbdd96f --- /dev/null +++ b/theme_durpro_old2/static/description/index.html @@ -0,0 +1 @@ +
diff --git a/theme_durpro_old2/static/description/poster.jpg b/theme_durpro_old2/static/description/poster.jpg new file mode 100644 index 0000000..386aac6 Binary files /dev/null and b/theme_durpro_old2/static/description/poster.jpg differ diff --git a/theme_durpro_old2/static/description/theme_durpro.svg b/theme_durpro_old2/static/description/theme_durpro.svg new file mode 100644 index 0000000..5c9bfa1 --- /dev/null +++ b/theme_durpro_old2/static/description/theme_durpro.svg @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + We are Avantgarde. + + + + + + + + + A Section Title + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Entry Title + + + + + + + + + + + + + + + Entry Title + + + + + + + + + + + + + + Entry Title + + + + + + + + + + + + + + + + + + + + + + + + + + Section + Title + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme_durpro_old2/static/src/images_list.rtf b/theme_durpro_old2/static/src/images_list.rtf new file mode 100644 index 0000000..c3e8f62 --- /dev/null +++ b/theme_durpro_old2/static/src/images_list.rtf @@ -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}}} \ No newline at end of file diff --git a/theme_durpro_old2/static/src/img/patterns/bg_pattern_01.jpg b/theme_durpro_old2/static/src/img/patterns/bg_pattern_01.jpg new file mode 100755 index 0000000..0787d58 Binary files /dev/null and b/theme_durpro_old2/static/src/img/patterns/bg_pattern_01.jpg differ diff --git a/theme_durpro_old2/static/src/img/patterns/bg_pattern_02.jpg b/theme_durpro_old2/static/src/img/patterns/bg_pattern_02.jpg new file mode 100755 index 0000000..c2f1a1e Binary files /dev/null and b/theme_durpro_old2/static/src/img/patterns/bg_pattern_02.jpg differ diff --git a/theme_durpro_old2/static/src/img/patterns/bg_pattern_03.jpg b/theme_durpro_old2/static/src/img/patterns/bg_pattern_03.jpg new file mode 100755 index 0000000..b96a511 Binary files /dev/null and b/theme_durpro_old2/static/src/img/patterns/bg_pattern_03.jpg differ diff --git a/theme_durpro_old2/static/src/img/patterns/bg_pattern_04.jpg b/theme_durpro_old2/static/src/img/patterns/bg_pattern_04.jpg new file mode 100755 index 0000000..08fe32f Binary files /dev/null and b/theme_durpro_old2/static/src/img/patterns/bg_pattern_04.jpg differ diff --git a/theme_durpro_old2/static/src/img/patterns/bg_pattern_05.jpg b/theme_durpro_old2/static/src/img/patterns/bg_pattern_05.jpg new file mode 100755 index 0000000..e67e5f2 Binary files /dev/null and b/theme_durpro_old2/static/src/img/patterns/bg_pattern_05.jpg differ diff --git a/theme_durpro_old2/static/src/img/patterns/bg_pattern_06.jpg b/theme_durpro_old2/static/src/img/patterns/bg_pattern_06.jpg new file mode 100755 index 0000000..1b72873 Binary files /dev/null and b/theme_durpro_old2/static/src/img/patterns/bg_pattern_06.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_01.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_01.jpg new file mode 100755 index 0000000..8c74bb2 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_01.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_02.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_02.jpg new file mode 100755 index 0000000..c151fbf Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_02.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_03.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_03.jpg new file mode 100755 index 0000000..2f3b110 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_03.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_04.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_04.jpg new file mode 100644 index 0000000..d957cb4 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_04.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_05.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_05.jpg new file mode 100755 index 0000000..f7faf54 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_05.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_06.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_06.jpg new file mode 100755 index 0000000..a5b31ff Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_06.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_07.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_07.jpg new file mode 100755 index 0000000..0bf8035 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_07.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_08.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_08.jpg new file mode 100644 index 0000000..3cea6e4 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_08.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_09.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_09.jpg new file mode 100644 index 0000000..64cd319 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_09.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_10.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_10.jpg new file mode 100755 index 0000000..a422aab Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_10.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_11.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_11.jpg new file mode 100755 index 0000000..a1c8997 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_11.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_12.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_12.jpg new file mode 100755 index 0000000..fbbaa49 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_12.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_13.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_13.jpg new file mode 100644 index 0000000..743adae Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_13.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_14.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_14.jpg new file mode 100644 index 0000000..a7c6b05 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_14.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_15.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_15.jpg new file mode 100644 index 0000000..6ac4c7c Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_15.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_16.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_16.jpg new file mode 100644 index 0000000..ef352e1 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_16.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_17.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_17.jpg new file mode 100644 index 0000000..f9df07c Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_17.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_18.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_18.jpg new file mode 100644 index 0000000..302ddfa Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_18.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_19.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_19.jpg new file mode 100644 index 0000000..7a46f2e Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_19.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_20.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_20.jpg new file mode 100644 index 0000000..76057a1 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_20.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_21.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_21.jpg new file mode 100644 index 0000000..32218eb Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_21.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_22.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_22.jpg new file mode 100644 index 0000000..f2bc776 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_22.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_27.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_27.jpg new file mode 100644 index 0000000..9ce57bc Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_27.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_28.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_28.jpg new file mode 100644 index 0000000..9db2f12 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_28.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_29.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_29.jpg new file mode 100644 index 0000000..9ffcba6 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_29.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_30.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_30.jpg new file mode 100644 index 0000000..ddcfb64 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_30.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_31.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_31.jpg new file mode 100644 index 0000000..0eb3154 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_31.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_32.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_32.jpg new file mode 100644 index 0000000..303925a Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_32.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/bg_image_33.jpg b/theme_durpro_old2/static/src/img/pictures/bg_image_33.jpg new file mode 100644 index 0000000..1ef3fbc Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/bg_image_33.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/item_01.jpg b/theme_durpro_old2/static/src/img/pictures/item_01.jpg new file mode 100644 index 0000000..60ccd08 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/item_01.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/item_02.jpg b/theme_durpro_old2/static/src/img/pictures/item_02.jpg new file mode 100644 index 0000000..102335c Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/item_02.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/item_03.jpg b/theme_durpro_old2/static/src/img/pictures/item_03.jpg new file mode 100644 index 0000000..5ecf9b5 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/item_03.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/item_04.jpg b/theme_durpro_old2/static/src/img/pictures/item_04.jpg new file mode 100644 index 0000000..30a4c56 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/item_04.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/item_05.jpg b/theme_durpro_old2/static/src/img/pictures/item_05.jpg new file mode 100644 index 0000000..e71ed65 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/item_05.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/item_06.jpg b/theme_durpro_old2/static/src/img/pictures/item_06.jpg new file mode 100644 index 0000000..2554dc9 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/item_06.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/s_popup.jpg b/theme_durpro_old2/static/src/img/pictures/s_popup.jpg new file mode 100644 index 0000000..979dc0d Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/s_popup.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/uiface_01.jpg b/theme_durpro_old2/static/src/img/pictures/uiface_01.jpg new file mode 100644 index 0000000..b33e964 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/uiface_01.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/uiface_02.jpg b/theme_durpro_old2/static/src/img/pictures/uiface_02.jpg new file mode 100644 index 0000000..8b9f4b8 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/uiface_02.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/uiface_03.jpg b/theme_durpro_old2/static/src/img/pictures/uiface_03.jpg new file mode 100644 index 0000000..8ed208d Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/uiface_03.jpg differ diff --git a/theme_durpro_old2/static/src/img/pictures/uiface_04.jpg b/theme_durpro_old2/static/src/img/pictures/uiface_04.jpg new file mode 100644 index 0000000..cb761d8 Binary files /dev/null and b/theme_durpro_old2/static/src/img/pictures/uiface_04.jpg differ diff --git a/theme_durpro_old2/static/src/js/durpro.editor.js b/theme_durpro_old2/static/src/js/durpro.editor.js new file mode 100644 index 0000000..e69de29 diff --git a/theme_durpro_old2/static/src/js/tour.js b/theme_durpro_old2/static/src/js/tour.js new file mode 100644 index 0000000..f915c31 --- /dev/null +++ b/theme_durpro_old2/static/src/js/tour.js @@ -0,0 +1,38 @@ +/** @odoo-module */ +import wTourUtils from 'website.tour_utils'; + +const snippets = [ + { + id: 's_cover', + name: 'Cover', + }, + { + id: 's_picture', + name: 'Picture', + }, + { + id: 's_three_columns', + name: 'Columns', + }, + { + id: 's_text_image', + name: 'Text - Image', + }, + { + id: 's_call_to_action', + name: 'Call to Action', + }, +]; + +wTourUtils.registerThemeHomepageTour("durpro_tour", [ + wTourUtils.dragNDrop(snippets[0], 'top'), + wTourUtils.clickOnText(snippets[0], 'h1', 'left'), + wTourUtils.goBackToBlocks(), + wTourUtils.dragNDrop(snippets[1], 'left'), + wTourUtils.dragNDrop(snippets[2], 'bottom'), + wTourUtils.clickOnSnippet(snippets[2], 'top'), + wTourUtils.changePaddingSize('top'), + wTourUtils.goBackToBlocks(), + wTourUtils.dragNDrop(snippets[3], 'top'), + wTourUtils.dragNDrop(snippets[4], 'top'), +]); diff --git a/theme_durpro_old2/static/src/old_snippets/s_css_slider/000_variables.scss b/theme_durpro_old2/static/src/old_snippets/s_css_slider/000_variables.scss new file mode 100644 index 0000000..7197eb2 --- /dev/null +++ b/theme_durpro_old2/static/src/old_snippets/s_css_slider/000_variables.scss @@ -0,0 +1,22 @@ +$s-css-slider-info-bg-color: "var(--body)"; +$s-css-slider-info-text-color: "var(--text)"; + +@mixin s-css-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-css-slider-close-hook { + background: url("../img/ui/s_showcase_slider-close.svg") no-repeat center center; + text-indent: 100%; +} diff --git a/theme_durpro_old2/static/src/old_snippets/s_showcase_slider/000_variables.scss b/theme_durpro_old2/static/src/old_snippets/s_showcase_slider/000_variables.scss new file mode 100644 index 0000000..e9d0368 --- /dev/null +++ b/theme_durpro_old2/static/src/old_snippets/s_showcase_slider/000_variables.scss @@ -0,0 +1,23 @@ +@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; + } +} diff --git a/theme_durpro_old2/static/src/scss/main.scss b/theme_durpro_old2/static/src/scss/main.scss new file mode 100644 index 0000000..e69de29 diff --git a/theme_durpro_old2/static/src/scss/primary_variables.scss b/theme_durpro_old2/static/src/scss/primary_variables.scss new file mode 100644 index 0000000..157e940 --- /dev/null +++ b/theme_durpro_old2/static/src/scss/primary_variables.scss @@ -0,0 +1,165 @@ + +//------------------------------------------------------------------------------ +// Colors +//------------------------------------------------------------------------------ + +// Theme colors +$o-color-palettes: map-merge($o-color-palettes, + ( + 'avantgarde-1':( + 'alpha': #3975A1, + 'beta': #60575A, + 'gamma': #FFFFFF, + 'delta': #A0A0B0, + 'epsilon': #000000, + + 'success': #31B05E, + 'info': #4D68A3, + 'warning': #EACF41, + 'danger': #CB3E3E, + ), + ) +); + +//------------------------------------------------------------------------------ +// Fonts +//------------------------------------------------------------------------------ + +$o-theme-h1-font-size-multiplier: 3; +$o-theme-h2-font-size-multiplier: 2.5; +$o-theme-h3-font-size-multiplier: (31.25 / 16); +$o-theme-h4-font-size-multiplier: (25.00 / 16); +$o-theme-h5-font-size-multiplier: (20.00 / 16); +$o-theme-h6-font-size-multiplier: 1.1; + +$o-theme-font-configs: ( + 'Lato': ( + 'family': ('Lato', sans-serif), + 'url': 'Lato:300,300i,400,400i,700,700i', + ), + 'Raleway': ( + 'family': ('Raleway', sans-serif), + 'url': 'Raleway:300,300i,400,400i,700,700i', + ), + 'Heebo': ( + 'family': ('Heebo', sans-serif), + 'url': 'Heebo:300,300i,400,400i,700,700i', + ), + 'Abril Fatface': ( + 'family': ('Abril Fatface', cursive), + 'url': 'Abril+Fatface:300,300i,400,400i,700,700i', + ), + 'Alfa Slab One': ( + 'family': ('Alfa Slab One', cursive), + 'url': 'Alfa+Slab+One:300,300i,400,400i,700,700i', + ), + 'Arvo': ( + 'family': ('Arvo', serif), + 'url': 'Arvo:300,300i,400,400i,700,700i', + ), + 'Cantata One': ( + 'family': ('Cantata One', serif), + 'url': 'Cantata+One:300,300i,400,400i,700,700i', + ), + 'Open Sans Condensed': ( + 'family': ('Open Sans Condensed', sans-serif), + 'url': 'Open+Sans+Condensed:300,300i,400,400i,700,700i', + ), + 'Open Sans': ( + 'family': ('Open Sans', sans-serif), + 'url': 'Open+Sans:300,300i,400,400i,700,700i', + ), + 'Oswald': ( + 'family': ('Oswald', sans-serif), + 'url': 'Oswald:300,300i,400,400i,700,700i', + ), + 'Poiret One': ( + 'family': ('Poiret One', cursive), + 'url': 'Poiret+One:300,300i,400,400i,700,700i', + ), + 'PT Sans Narrow': ( + 'family': ('PT Sans Narrow', sans-serif), + 'url': 'PT+Sans+Narrow:300,300i,400,400i,700,700i', + ), + 'Roboto Slab': ( + 'family': ('Roboto Slab', serif), + 'url': 'Roboto+Slab:300,300i,400,400i,700,700i', + ), + 'Playfair Display': ( + 'family': ('Playfair Display', serif), + 'url': 'Playfair+Display:300,300i,400,400i,700,700i', + ), + 'Vollkorn': ( + 'family': ('Vollkorn', serif), + 'url': 'Vollkorn:300,300i,400,400i,700,700i', + ), + 'Libre Baskerville': ( + 'family': ('Libre Baskerville', serif), + 'url': 'Libre+Baskerville:300,300i,400,400i,700,700i', + ), + 'Atkinson Hyperlegible': ( + 'family': ('Atkinson Hyperlegible', serif), + 'url': 'Atkinson+Hyperlegible:300,300i,400,400i,700,700i', + ), + 'Syne': ( + 'family': ('Syne', serif), + 'url': 'Syne:300,300i,400,400i,700,700i', + ), +); + +//------------------------------------------------------------------------------ +// Website customizations +//------------------------------------------------------------------------------ + +$o-website-values-palettes: ( + ( + 'color-palettes-name': 'durpro-1', + 'layout': 'full', + + 'font-size-base': 1rem, + 'font': 'Syne', + 'headings-font': 'Syne', + 'navbar-font': 'Syne', + 'buttons-font': 'Syne', + + 'header-template': 'hamburger', + 'hamburger-type': 'default', + 'hamburger-position': 'right', + + 'footer-template': 'descriptive', + + 'btn-primary-outline': true, + 'link-underline': 'never', + ), +); + +//$o-selected-color-palettes-names: (); +$o-selected-color-palettes-names: append($o-selected-color-palettes-names, 'avantgarde-1'); + +$o-color-palettes-compatibility-indexes: ( + 1: 'avantgarde-1', + 2: 'generic-1', + 3: 'generic-2', + 4: 'generic-3', + 5: 'generic-4', + 6: 'generic-5', + 7: 'generic-6', + 8: 'generic-7', + 9: 'generic-8', + 10: 'generic-9', + 11: 'generic-10', + 12: 'generic-11', + 13: 'generic-12', + 14: 'generic-13', + 15: 'generic-14', + 16: 'generic-15', + 17: 'generic-16', + 18: 'generic-17', +); + +//------------------------------------------------------------------------------ +// Shapes +//------------------------------------------------------------------------------ + +$o-bg-shapes: change-shape-colors-mapping('web_editor', 'Origins/18', (1: 3)); +$o-bg-shapes: change-shape-colors-mapping('web_editor', 'Origins/14_001', (3: 4, 4: rgba(0, 0, 0, 0))); diff --git a/theme_durpro_old2/static/src/scss/secondary_variables.scss b/theme_durpro_old2/static/src/scss/secondary_variables.scss new file mode 100644 index 0000000..4bda9a6 --- /dev/null +++ b/theme_durpro_old2/static/src/scss/secondary_variables.scss @@ -0,0 +1,4 @@ + +//------------------------------------------------------------------------------ +// Secondary Variables +//------------------------------------------------------------------------------ diff --git a/theme_durpro_old2/views/customizations.xml b/theme_durpro_old2/views/customizations.xml new file mode 100644 index 0000000..bc60857 --- /dev/null +++ b/theme_durpro_old2/views/customizations.xml @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme_durpro_old2/views/images_library.xml b/theme_durpro_old2/views/images_library.xml new file mode 100644 index 0000000..e479cbf --- /dev/null +++ b/theme_durpro_old2/views/images_library.xml @@ -0,0 +1,301 @@ + + + + + + theme_common.image_content_01 + theme_common.image_content_01 + /theme_durpro/static/src/img/pictures/bg_image_01.jpg + + + theme_common.image_content_02 + theme_common.image_content_02 + /theme_durpro/static/src/img/pictures/bg_image_02.jpg + + + theme_common.image_content_03 + theme_common.image_content_03 + /theme_durpro/static/src/img/pictures/bg_image_03.jpg + + + theme_common.image_content_04 + theme_common.image_content_04 + /theme_durpro/static/src/img/pictures/bg_image_04.jpg + + + theme_common.image_content_05 + theme_common.image_content_05 + /theme_durpro/static/src/img/pictures/bg_image_05.jpg + + + theme_common.image_content_06 + theme_common.image_content_06 + /theme_durpro/static/src/img/pictures/bg_image_06.jpg + + + theme_common.image_content_07 + theme_common.image_content_07 + /theme_durpro/static/src/img/pictures/bg_image_07.jpg + + + theme_common.image_content_08 + theme_common.image_content_08 + /theme_durpro/static/src/img/pictures/bg_image_08.jpg + + + theme_common.image_content_09 + theme_common.image_content_09 + /theme_durpro/static/src/img/pictures/bg_image_09.jpg + + + theme_common.image_content_10 + theme_common.image_content_10 + /theme_durpro/static/src/img/pictures/bg_image_10.jpg + + + theme_common.image_content_11 + theme_common.image_content_11 + /theme_durpro/static/src/img/pictures/bg_image_11.jpg + + + theme_common.image_content_12 + theme_common.image_content_12 + /theme_durpro/static/src/img/pictures/bg_image_12.jpg + + + theme_common.image_content_20 + theme_common.image_content_20 + /theme_durpro/static/src/img/pictures/bg_image_01.jpg + + + theme_common.image_content_21 + theme_common.image_content_21 + /theme_durpro/static/src/img/pictures/bg_image_02.jpg + + + theme_common.image_content_22 + theme_common.image_content_22 + /theme_durpro/static/src/img/pictures/bg_image_03.jpg + + + website.library_image_11 + website.library_image_11 + /theme_durpro/static/src/img/pictures/bg_image_15.jpg + + + website.library_image_13 + website.library_image_13 + /theme_durpro/static/src/img/pictures/bg_image_16.jpg + + + website.library_image_07 + website.library_image_07 + /theme_durpro/static/src/img/pictures/bg_image_17.jpg + + + + + website.s_background_image_01 + Background Image 01 + /theme_durpro/static/src/img/patterns/bg_pattern_01.jpg + + + website.s_background_image_02 + Background Image 02 + /theme_durpro/static/src/img/patterns/bg_pattern_02.jpg + + + website.s_background_image_03 + Background Image 03 + /theme_durpro/static/src/img/patterns/bg_pattern_03.jpg + + + website.s_background_image_04 + Background Image 04 + /theme_durpro/static/src/img/patterns/bg_pattern_04.jpg + + + website.s_background_image_05 + Background Image 05 + /theme_durpro/static/src/img/patterns/bg_pattern_05.jpg + + + website.s_background_image_06 + Background Image 06 + /theme_durpro/static/src/img/patterns/bg_pattern_06.jpg + + + + + website.s_cover_default_image + website.s_cover_default_image + /theme_durpro/static/src/img/pictures/bg_image_08.jpg + + + website.s_banner_default_image + website.s_banner_default_image + /theme_durpro/static/src/img/pictures/bg_image_04.jpg + + + website.s_popup_default_image + website.s_popup_default_image + /theme_durpro/static/src/img/pictures/s_popup.jpg + + + website.s_text_image_default_image + website.s_text_image_default_image + /theme_durpro/static/src/img/pictures/bg_image_13.jpg + + + website.s_image_text_default_image + website.s_image_text_default_image + /theme_durpro/static/src/img/pictures/bg_image_09.jpg + + + website.s_picture_default_image + website.s_picture_default_image + /theme_durpro/static/src/img/pictures/bg_image_14.jpg + + + website.s_three_columns_default_image_1 + website.s_three_columns_default_image_1 + /theme_durpro/static/src/img/pictures/bg_image_15.jpg + + + website.s_three_columns_default_image_2 + website.s_three_columns_default_image_2 + /theme_durpro/static/src/img/pictures/bg_image_16.jpg + + + website.s_three_columns_default_image_3 + website.s_three_columns_default_image_3 + /theme_durpro/static/src/img/pictures/bg_image_17.jpg + + + website.s_masonry_block_default_image_1 + website.s_masonry_block_default_image_1 + /theme_durpro/static/src/img/pictures/bg_image_19.jpg + + + website.s_carousel_default_image_1 + website.s_carousel_default_image_1 + /theme_durpro/static/src/img/pictures/bg_image_28.jpg + + + website.s_carousel_default_image_2 + website.s_carousel_default_image_2 + /theme_durpro/static/src/img/pictures/bg_image_29.jpg + + + website.s_carousel_default_image_3 + website.s_carousel_default_image_3 + /theme_durpro/static/src/img/pictures/bg_image_30.jpg + + + website.s_media_list_default_image_1 + website.s_media_list_default_image_1 + /theme_durpro/static/src/img/pictures/bg_image_31.jpg + + + website.s_media_list_default_image_2 + website.s_media_list_default_image_2 + /theme_durpro/static/src/img/pictures/bg_image_32.jpg + + + website.s_media_list_default_image_3 + website.s_media_list_default_image_3 + /theme_durpro/static/src/img/pictures/bg_image_33.jpg + + + website.s_parallax_default_image + website.s_parallax_default_image + /theme_durpro/static/src/img/pictures/bg_image_18.jpg + + + website.s_company_team_image_1 + website.s_company_team_image_1 + /theme_durpro/static/src/img/pictures/uiface_02.jpg + + + website.s_company_team_image_2 + website.s_company_team_image_2 + /theme_durpro/static/src/img/pictures/uiface_01.jpg + + + website.s_company_team_image_3 + website.s_company_team_image_3 + /theme_durpro/static/src/img/pictures/uiface_03.jpg + + + website.s_company_team_image_4 + website.s_company_team_image_4 + /theme_durpro/static/src/img/pictures/uiface_04.jpg + + + website.s_product_catalog_default_image + website.s_product_catalog_default_image + /theme_durpro/static/src/img/pictures/bg_image_27.jpg + + + website.s_quotes_carousel_demo_image_1 + website.s_quotes_carousel_demo_image_1 + /theme_durpro/static/src/img/pictures/bg_image_18.jpg + + + website.s_quotes_carousel_demo_image_2 + website.s_quotes_carousel_demo_image_2 + /theme_durpro/static/src/img/pictures/bg_image_04.jpg + + + website.s_quotes_carousel_demo_image_3 + website.s_quotes_carousel_demo_image_3 + /theme_durpro/static/src/img/pictures/uiface_03.jpg + + + website.s_quotes_carousel_demo_image_4 + website.s_quotes_carousel_demo_image_4 + /theme_durpro/static/src/img/pictures/uiface_02.jpg + + + website.s_quotes_carousel_demo_image_5 + website.s_quotes_carousel_demo_image_5 + /theme_durpro/static/src/img/pictures/uiface_04.jpg + + + website.s_product_list_default_image_1 + website.s_product_list_default_image_1 + /theme_durpro/static/src/img/pictures/item_01.jpg + + + website.s_product_list_default_image_2 + website.s_product_list_default_image_2 + /theme_durpro/static/src/img/pictures/item_02.jpg + + + website.s_product_list_default_image_3 + website.s_product_list_default_image_3 + /theme_durpro/static/src/img/pictures/item_03.jpg + + + website.s_product_list_default_image_4 + website.s_product_list_default_image_4 + /theme_durpro/static/src/img/pictures/item_04.jpg + + + website.s_product_list_default_image_5 + website.s_product_list_default_image_5 + /theme_durpro/static/src/img/pictures/item_05.jpg + + + website.s_product_list_default_image_6 + website.s_product_list_default_image_6 + /theme_durpro/static/src/img/pictures/item_06.jpg + + + website.library_image_17 + website.library_image_17 + /theme_durpro/static/src/img/pictures/bg_image_33.jpg + + +