diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..688416d Binary files /dev/null and b/.DS_Store differ diff --git a/theme_anelusia/theme_anelusia/LICENSE b/theme_anelusia/LICENSE similarity index 100% rename from theme_anelusia/theme_anelusia/LICENSE rename to theme_anelusia/LICENSE diff --git a/theme_anelusia/theme_anelusia/__init__.py b/theme_anelusia/__init__.py similarity index 100% rename from theme_anelusia/theme_anelusia/__init__.py rename to theme_anelusia/__init__.py diff --git a/theme_anelusia/__manifest__.py b/theme_anelusia/__manifest__.py new file mode 100644 index 0000000..a1a2848 --- /dev/null +++ b/theme_anelusia/__manifest__.py @@ -0,0 +1,30 @@ +{ + 'name': 'Anelusia Theme', + 'description': 'Anelusia Fashion Theme', + 'category': 'Theme/Retail', + 'summary': 'Fashions, Trends, Clothes, Shoes, Sports, Fitness, Stores', + 'sequence': 180, + 'version': '2.0.0', + 'author': 'Odoo S.A.', + 'depends': ['theme_common'], + 'data': [ + 'views/assets.xml', + 'views/images_content.xml', + 'views/images_library.xml', + + 'views/snippets/s_company_team.xml', + 'views/snippets/s_cover.xml', + 'views/snippets/s_images_wall.xml', + 'views/snippets/s_media_list.xml', + + 'views/old_snippets/s_banner_parallax.xml', + 'views/old_snippets/s_features_carousel.xml', + 'views/old_snippets/s_products_carousel.xml', + ], + 'images': [ + 'static/description/anelusia_description.png', + 'static/description/anelusia_screenshot.jpg', + ], + 'license': 'LGPL-3', + 'live_test_url': 'https://theme-anelusia.odoo.com', +} diff --git a/theme_anelusia/theme_anelusia/i18n/de.po b/theme_anelusia/i18n/de.po similarity index 100% rename from theme_anelusia/theme_anelusia/i18n/de.po rename to theme_anelusia/i18n/de.po diff --git a/theme_anelusia/theme_anelusia/i18n/es.po b/theme_anelusia/i18n/es.po similarity index 100% rename from theme_anelusia/theme_anelusia/i18n/es.po rename to theme_anelusia/i18n/es.po diff --git a/theme_anelusia/theme_anelusia/i18n/fr.po b/theme_anelusia/i18n/fr.po similarity index 100% rename from theme_anelusia/theme_anelusia/i18n/fr.po rename to theme_anelusia/i18n/fr.po diff --git a/theme_anelusia/theme_anelusia/i18n/nl.po b/theme_anelusia/i18n/nl.po similarity index 100% rename from theme_anelusia/theme_anelusia/i18n/nl.po rename to theme_anelusia/i18n/nl.po diff --git a/theme_anelusia/theme_anelusia/i18n/theme_anelusia.pot b/theme_anelusia/i18n/theme_anelusia.pot similarity index 100% rename from theme_anelusia/theme_anelusia/i18n/theme_anelusia.pot rename to theme_anelusia/i18n/theme_anelusia.pot diff --git a/theme_anelusia/theme_anelusia/i18n/zh_CN.po b/theme_anelusia/i18n/zh_CN.po similarity index 100% rename from theme_anelusia/theme_anelusia/i18n/zh_CN.po rename to theme_anelusia/i18n/zh_CN.po diff --git a/theme_anelusia/theme_anelusia/models/__init__.py b/theme_anelusia/models/__init__.py similarity index 100% rename from theme_anelusia/theme_anelusia/models/__init__.py rename to theme_anelusia/models/__init__.py diff --git a/theme_anelusia/models/theme_anelusia.py b/theme_anelusia/models/theme_anelusia.py new file mode 100644 index 0000000..5f54fed --- /dev/null +++ b/theme_anelusia/models/theme_anelusia.py @@ -0,0 +1,18 @@ +from odoo import models + + +class ThemeAnelusia(models.AbstractModel): + _inherit = 'theme.utils' + + def _theme_anelusia_post_copy(self, mod): + self.disable_view('website.template_header_default') + self.enable_view('website.template_header_hamburger_full') + self.enable_view('website.template_header_default_align_center') + self.enable_view('website.template_header_hamburger_align_center') + self.enable_view('website.no_autohide_menu') + + self.disable_view('website.footer_custom') + self.enable_view('website.template_footer_headline') + + # For compatibility + # self.enable_view('theme_common.compatibility-saas-10-1') diff --git a/theme_anelusia/theme_anelusia/static/description/anelusia_description.png b/theme_anelusia/static/description/anelusia_description.png similarity index 100% rename from theme_anelusia/theme_anelusia/static/description/anelusia_description.png rename to theme_anelusia/static/description/anelusia_description.png diff --git a/theme_anelusia/static/description/anelusia_screenshot.jpg b/theme_anelusia/static/description/anelusia_screenshot.jpg new file mode 100644 index 0000000..e62b623 Binary files /dev/null and b/theme_anelusia/static/description/anelusia_screenshot.jpg differ diff --git a/theme_anelusia/theme_anelusia/static/description/contributors/applicatour.jpg b/theme_anelusia/static/description/contributors/applicatour.jpg similarity index 100% rename from theme_anelusia/theme_anelusia/static/description/contributors/applicatour.jpg rename to theme_anelusia/static/description/contributors/applicatour.jpg diff --git a/theme_anelusia/theme_anelusia/static/description/contributors/aselcis.jpg b/theme_anelusia/static/description/contributors/aselcis.jpg similarity index 100% rename from theme_anelusia/theme_anelusia/static/description/contributors/aselcis.jpg rename to theme_anelusia/static/description/contributors/aselcis.jpg diff --git a/theme_anelusia/theme_anelusia/static/description/contributors/bas-solutions.png b/theme_anelusia/static/description/contributors/bas-solutions.png similarity index 100% rename from theme_anelusia/theme_anelusia/static/description/contributors/bas-solutions.png rename to theme_anelusia/static/description/contributors/bas-solutions.png diff --git a/theme_anelusia/theme_anelusia/static/description/contributors/bloopark.png b/theme_anelusia/static/description/contributors/bloopark.png similarity index 100% rename from theme_anelusia/theme_anelusia/static/description/contributors/bloopark.png rename to theme_anelusia/static/description/contributors/bloopark.png diff --git a/theme_anelusia/theme_anelusia/static/description/contributors/brouwland.jpg b/theme_anelusia/static/description/contributors/brouwland.jpg similarity index 100% rename from theme_anelusia/theme_anelusia/static/description/contributors/brouwland.jpg rename to theme_anelusia/static/description/contributors/brouwland.jpg diff --git a/theme_anelusia/theme_anelusia/static/description/contributors/catsdogs.png b/theme_anelusia/static/description/contributors/catsdogs.png similarity index 100% rename from theme_anelusia/theme_anelusia/static/description/contributors/catsdogs.png rename to theme_anelusia/static/description/contributors/catsdogs.png diff --git a/theme_anelusia/theme_anelusia/static/description/contributors/dialognet.png b/theme_anelusia/static/description/contributors/dialognet.png similarity index 100% rename from theme_anelusia/theme_anelusia/static/description/contributors/dialognet.png rename to theme_anelusia/static/description/contributors/dialognet.png diff --git a/theme_anelusia/theme_anelusia/static/description/contributors/dynapps.jpg b/theme_anelusia/static/description/contributors/dynapps.jpg similarity index 100% rename from theme_anelusia/theme_anelusia/static/description/contributors/dynapps.jpg rename to theme_anelusia/static/description/contributors/dynapps.jpg diff --git a/theme_anelusia/theme_anelusia/static/description/contributors/huckemedia.png b/theme_anelusia/static/description/contributors/huckemedia.png similarity index 100% rename from theme_anelusia/theme_anelusia/static/description/contributors/huckemedia.png rename to theme_anelusia/static/description/contributors/huckemedia.png diff --git a/theme_anelusia/theme_anelusia/static/description/contributors/opusvl.png b/theme_anelusia/static/description/contributors/opusvl.png similarity index 100% rename from theme_anelusia/theme_anelusia/static/description/contributors/opusvl.png rename to theme_anelusia/static/description/contributors/opusvl.png diff --git a/theme_anelusia/theme_anelusia/static/description/contributors/oxen.jpg b/theme_anelusia/static/description/contributors/oxen.jpg similarity index 100% rename from theme_anelusia/theme_anelusia/static/description/contributors/oxen.jpg rename to theme_anelusia/static/description/contributors/oxen.jpg diff --git a/theme_anelusia/theme_anelusia/static/description/contributors/simplitco.jpg b/theme_anelusia/static/description/contributors/simplitco.jpg similarity index 100% rename from theme_anelusia/theme_anelusia/static/description/contributors/simplitco.jpg rename to theme_anelusia/static/description/contributors/simplitco.jpg diff --git a/theme_anelusia/theme_anelusia/static/description/contributors/sodexis.jpg b/theme_anelusia/static/description/contributors/sodexis.jpg similarity index 100% rename from theme_anelusia/theme_anelusia/static/description/contributors/sodexis.jpg rename to theme_anelusia/static/description/contributors/sodexis.jpg diff --git a/theme_anelusia/theme_anelusia/static/description/contributors/tech-receptives.png b/theme_anelusia/static/description/contributors/tech-receptives.png similarity index 100% rename from theme_anelusia/theme_anelusia/static/description/contributors/tech-receptives.png rename to theme_anelusia/static/description/contributors/tech-receptives.png diff --git a/theme_anelusia/theme_anelusia/static/description/contributors/vauxoo.png b/theme_anelusia/static/description/contributors/vauxoo.png similarity index 100% rename from theme_anelusia/theme_anelusia/static/description/contributors/vauxoo.png rename to theme_anelusia/static/description/contributors/vauxoo.png diff --git a/theme_anelusia/theme_anelusia/static/description/customtool.jpg b/theme_anelusia/static/description/customtool.jpg similarity index 100% rename from theme_anelusia/theme_anelusia/static/description/customtool.jpg rename to theme_anelusia/static/description/customtool.jpg diff --git a/theme_anelusia/theme_anelusia/static/description/customtool2.jpg b/theme_anelusia/static/description/customtool2.jpg similarity index 100% rename from theme_anelusia/theme_anelusia/static/description/customtool2.jpg rename to theme_anelusia/static/description/customtool2.jpg diff --git a/theme_anelusia/theme_anelusia/static/description/icon.png b/theme_anelusia/static/description/icon.png similarity index 100% rename from theme_anelusia/theme_anelusia/static/description/icon.png rename to theme_anelusia/static/description/icon.png diff --git a/theme_anelusia/static/description/index.html b/theme_anelusia/static/description/index.html new file mode 100644 index 0000000..7e7b814 --- /dev/null +++ b/theme_anelusia/static/description/index.html @@ -0,0 +1,204 @@ +
+

Html5 Responsive Bootstrap Theme for Odoo CMS

+
+ +

Anelusia is a professional responsive HTML5 theme, built using Bootstrap3, + the most popular front-end framework for developing responsive, mobile + first projects on the web. Just drag & drop the new building blocks + you need to easily build your layout. All layouts are made of sections, + that you can easily combine to fit your specific project.

+ +
+ +

Anelusia Customization Tool

+ +

Theme Anelusia comes with customization tools. You can easily change + the background, the colors and the font combination of your website or + you a preset.

+ +
+
+ +
+
+

Theme Anelusia comes with a lot of options

+
    +
  • 6 PRESETS
  • +
  • WIDE OR BOXED LAYOUT
  • +
  • 6 COLOR SCHEMES
  • +
  • 8 BACKGROUND SHADES OR USE YOUR OWN
  • +
  • 6 FONT COMBINATIONS
  • +
  • 10 BACKGROUND PATTERNS
  • +
+

All the background, color and font combinations were made to work together.  + You can not go wrong with the settings.

+ +

Minimalistic Flat Design

+

Anelusia was made with easy customization and branding in mind. Based on + simple, modern and typographical elements, it allows you to easily customize + your website.

+ +

6 Prebuild Presets

+

You don't have the time to play with options? Don't worry, Anelusia gives + you six full presets wich combine colors, fonts and background.

+

This theme has an additional eCommerce plugin.

+
+
+
+ +

Anelusia Building Blocks

+ +

You get a new complete range of building blocks.

+ +
+
+

CONTENT BLOCKS

+
    +
  • Title
  • +
  • 1 Column Text
  • +
  • 2 Column Text
  • +
  • 3 Column Text
  • +
  • 4 Column Text
  • +
  • Separator Block
  • +
+

STRUCTURE BLOCKS

+
    +
  • Custom Banner
  • +
  • Big Picture + Text
  • +
  • Text + Big Picture
  • +
  • Cubes
  • +
  • Features Slideshow
  • +
  • Header + Text + Picture
  • +
  • Product List
  • +
  • 2 Color Blocks
  • +
  • 4 Color Blocks
  • +
  • Numbers
  • +
  • Logos Bar
  • +
  • Testimonial Slider
  • +
+
+
+

FEATURES BLOCKS

+
    +
  • Slide Banner
  • +
  • Slideshow with products
  • +
+
+
+

Customize Your Blocks

+

Each building blocks comes with its own options. 

+ +
+
+ +

Some fonts might not work with extended charsets.

+

The images in the theme are copyrighted and can't be used outside of the odoo.com domain.

+
+ +

CONTRIBUTORS LIST

+
+ +

This theme was created with the help of our user community.

+ +

Thanks to our backers the Indiegogo campaign was a success!

+ +

https://www.indiegogo.com/projects/bootstrap-themes-for-odoo-cms/

+
+ +

Main Sponsor

+
+ +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+
+
+ + + +
+
+ + + +
+
+ + + +
+
+ +

Ross Whiting, Oxenworkwear - Hans Balis - Stephan Keller, Sodexis, Inc. - Michael Hucke, Hucke Media GmbH & Co. KG - Joachim Grubelnik, DaDi EDV GmbH​ datadialog.net - DynApps - Cats&Dogs bvba - Bloopark systems GmbH & Co. KG - Parthiv Patel, Tech Receptives Solutions Pvt. Ltd. - Stuart Mackintosh, OpusVL - Erwin van der Ploeg, BAS Solutions - ali Zuaby, simplit co - Aselcis Consulting - Nhomar Hernandez, Vauxoo

+ +

Sponsor

+
+ +

Robert Baumgartner, datenpol gmbh - openBIG - Russell Phillippe, Protogenos Ltd - Julien Allo, Julius - EasyPME - Jonathan Wilson, WillowIT Pty Ltd - Xavier Mallein, MAallein - Pedro M. Baeza, Serv. Tecnol. Avanzados - Daniel Dico, OERP Canada - Jantz Business Group b.v. - LogicaSoft Consulting - Eric Caudal, Elico Corp - Ermin Trevisan, Twanda - Jean-François Mattler, OpenFid SAS - Alex Ferrer, Lannex IT Solutions - Tony Gu, Shine IT Co. Ltd. 先安科技 - TaPo-IT OG - Jos De Graeve, Apertoso - Nicolas Rigo, eezee-it - Luis Miguel Varón E, Colorisa S.A - OpenBias - Stanislas Drouin Applicatour

+ +

Power Designer

+
+ +

Rohit Thakral - François Dhommeaux, Ubic Informatique - Judson Alves, Market Home Delivery - Eric Flaux, ABF Osiell - Gilles Dupont - Arnis Putniņš - Johnson Martt, GetOpenERP (Part of OpenStow Technologies) - Gianluca Milano - Daniel Stolovich, ATEL S.A. - Equitania Software GmbH - Senthilnathan G - Houssine Bakkali - Arend Trip - Kevin Woolf, Baba Kevin's American Barbecue Co., Ltd. - toodoo sàrl - Zoltan Gabor 'Apersis' - Tom De Decker, WEB2GO LTD - Nicolás Cavalier Montenegro, STOREGUD CORPORATION SAC - Keirse Jerome - REAL Solutions S.A. - Davide Corio - Brice Muangkhot - Melvin Miguel Martinez, Mendoza Hernandez - Auditores - Chua Wen Ching - Tran Minh Tri working, ungdungtinhoc.com - Badisheng Morena - Sogexis - Josh Wardini - The Tee Shirt Bakery - Bruce Letterle, Red Lab Media - Benoit Vankoningsloo - Francisco Manuel Garcia Claramonte. - Paulina Mikolajczak-Blasco - Collectiv - Tony Fernando - Herbert Riener, rigaConcepts - Kalmen Chia, E-Global SCM Solution Sdn Bhd - Rob North, Pair A Dice Games - David E. Vargas, CloudShop - François Le Gal - Calin Chete (24h Solutions) - Maria Gabriela Fong, MAGA Systems & Consulting - Pascal Behr, Cytosurge AG - Marc Antwertinger - Opencloud Unipessoal, Lda - Ruchir Shukla, BizzAppDev - Michael Hucke, Hucke Media GmbH & Co. KG - Mathias Neef, copadoMEDIA UG - Pablo Arias - Same Motion - livingprocess.de - Habib Ayob - Igor Jovanovic - Liangming Wang, Weixuan Inc. - Jason Au Yeung, Binary System Limited - Fredrik Arvas, Arvas International AB - Martin Temmink, Zigaret - Mathieu Vanneste, Flockdesign - Filip Fruru, Instant Media - Marianne Wilmsmeier, Fabrik Fünf GmbH - Vertex Group Enterprises - Bingen Eguzkitza - Herczeg Péter, InnOpen Group Kft - Giles Hohnen - Luis Felipe Miléo, KMEE - Maria Gabriela Fong, MAGA Systems & Consulting - Aaron Magon, Web Industries - Andrew Trueman, B.M. Trueman & Partners - Sven Petersen, Conexus - Nous Cambas - Oliver Yuan, OpenStone - Henri Ibowili, A-YANT.COM - Nicolas JEUDY - Helmut Drewes - Maik Steinfeld, Streward - Hans Henrik Gabelgaard - AJ Rosman - Eduard - Patrick Darribet, SUDOKEYS - Camptocamp - Cyril Morisse - Alejandro Santana - Eva Pinter, YBO - Mathias Neef, copadoMEDIA UG - Jean-Christophe Perrot, LOGICASOFT - Zarshed Ali, HiTechnologia - Stefan Reisich - Maxime Chambreuil, Savoir-faire Linux - Mario Gielissen, Openworx - Nicholas Burdic, Aptoworks LLC - Olivier Lenoir

+
diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/content_img_02.jpg b/theme_anelusia/static/src/img/content/content_img_02.jpg similarity index 100% rename from theme_anelusia/theme_anelusia/static/src/img/content/content_img_02.jpg rename to theme_anelusia/static/src/img/content/content_img_02.jpg diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/content_img_03.jpg b/theme_anelusia/static/src/img/content/content_img_03.jpg similarity index 100% rename from theme_anelusia/theme_anelusia/static/src/img/content/content_img_03.jpg rename to theme_anelusia/static/src/img/content/content_img_03.jpg diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/content_img_07.jpg b/theme_anelusia/static/src/img/content/content_img_07.jpg similarity index 100% rename from theme_anelusia/theme_anelusia/static/src/img/content/content_img_07.jpg rename to theme_anelusia/static/src/img/content/content_img_07.jpg diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/content_img_09.jpg b/theme_anelusia/static/src/img/content/content_img_09.jpg similarity index 100% rename from theme_anelusia/theme_anelusia/static/src/img/content/content_img_09.jpg rename to theme_anelusia/static/src/img/content/content_img_09.jpg diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/content_img_10.jpg b/theme_anelusia/static/src/img/content/content_img_10.jpg similarity index 100% rename from theme_anelusia/theme_anelusia/static/src/img/content/content_img_10.jpg rename to theme_anelusia/static/src/img/content/content_img_10.jpg diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/content_img_11.jpg b/theme_anelusia/static/src/img/content/content_img_11.jpg similarity index 100% rename from theme_anelusia/theme_anelusia/static/src/img/content/content_img_11.jpg rename to theme_anelusia/static/src/img/content/content_img_11.jpg diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/content_img_12.jpg b/theme_anelusia/static/src/img/content/content_img_12.jpg similarity index 100% rename from theme_anelusia/theme_anelusia/static/src/img/content/content_img_12.jpg rename to theme_anelusia/static/src/img/content/content_img_12.jpg diff --git a/theme_anelusia/static/src/img/snippets/library_image_07.jpg b/theme_anelusia/static/src/img/snippets/library_image_07.jpg new file mode 100644 index 0000000..aca9b2f Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/library_image_07.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/library_image_11.jpg b/theme_anelusia/static/src/img/snippets/library_image_11.jpg new file mode 100644 index 0000000..bd15ce5 Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/library_image_11.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/library_image_13.jpg b/theme_anelusia/static/src/img/snippets/library_image_13.jpg new file mode 100644 index 0000000..6ae25b3 Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/library_image_13.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_banner.jpg b/theme_anelusia/static/src/img/snippets/s_banner.jpg new file mode 100644 index 0000000..9f24a74 Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_banner.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_carousel_1.jpg b/theme_anelusia/static/src/img/snippets/s_carousel_1.jpg new file mode 100644 index 0000000..710d1ba Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_carousel_1.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_carousel_2.jpg b/theme_anelusia/static/src/img/snippets/s_carousel_2.jpg new file mode 100644 index 0000000..09416da Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_carousel_2.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_carousel_3.jpg b/theme_anelusia/static/src/img/snippets/s_carousel_3.jpg new file mode 100644 index 0000000..a2d4b70 Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_carousel_3.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_cover.jpg b/theme_anelusia/static/src/img/snippets/s_cover.jpg new file mode 100644 index 0000000..de77443 Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_cover.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_image_text.jpg b/theme_anelusia/static/src/img/snippets/s_image_text.jpg new file mode 100644 index 0000000..1d885ef Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_image_text.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_masonry_block.jpg b/theme_anelusia/static/src/img/snippets/s_masonry_block.jpg new file mode 100644 index 0000000..b940c5a Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_masonry_block.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_media_list_1.jpg b/theme_anelusia/static/src/img/snippets/s_media_list_1.jpg new file mode 100644 index 0000000..4dee9ee Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_media_list_1.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_media_list_2.jpg b/theme_anelusia/static/src/img/snippets/s_media_list_2.jpg new file mode 100644 index 0000000..ed049f2 Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_media_list_2.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_media_list_3.jpg b/theme_anelusia/static/src/img/snippets/s_media_list_3.jpg new file mode 100644 index 0000000..36ad59e Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_media_list_3.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_newsletter_block.jpg b/theme_anelusia/static/src/img/snippets/s_newsletter_block.jpg new file mode 100644 index 0000000..d727c0a Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_newsletter_block.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_parallax.jpg b/theme_anelusia/static/src/img/snippets/s_parallax.jpg new file mode 100644 index 0000000..2a4c31c Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_parallax.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_picture.jpg b/theme_anelusia/static/src/img/snippets/s_picture.jpg new file mode 100755 index 0000000..a4389ba Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_picture.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_popup.jpg b/theme_anelusia/static/src/img/snippets/s_popup.jpg new file mode 100644 index 0000000..02b8ff4 Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_popup.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_product_1.jpg b/theme_anelusia/static/src/img/snippets/s_product_1.jpg new file mode 100644 index 0000000..6b6b5b7 Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_product_1.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_product_2.jpg b/theme_anelusia/static/src/img/snippets/s_product_2.jpg new file mode 100644 index 0000000..dcca3ab Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_product_2.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_product_3.jpg b/theme_anelusia/static/src/img/snippets/s_product_3.jpg new file mode 100644 index 0000000..f7b56f5 Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_product_3.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_product_4.jpg b/theme_anelusia/static/src/img/snippets/s_product_4.jpg new file mode 100644 index 0000000..1dc8722 Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_product_4.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_product_5.jpg b/theme_anelusia/static/src/img/snippets/s_product_5.jpg new file mode 100644 index 0000000..f34c61f Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_product_5.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_product_6.jpg b/theme_anelusia/static/src/img/snippets/s_product_6.jpg new file mode 100644 index 0000000..95441a2 Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_product_6.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_product_catalog.jpg b/theme_anelusia/static/src/img/snippets/s_product_catalog.jpg new file mode 100644 index 0000000..ebd7bd5 Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_product_catalog.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_quotes_carousel_1.jpg b/theme_anelusia/static/src/img/snippets/s_quotes_carousel_1.jpg new file mode 100644 index 0000000..ee0cdec Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_quotes_carousel_1.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_quotes_carousel_2.jpg b/theme_anelusia/static/src/img/snippets/s_quotes_carousel_2.jpg new file mode 100644 index 0000000..9d535e5 Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_quotes_carousel_2.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/s_text_image.jpg b/theme_anelusia/static/src/img/snippets/s_text_image.jpg new file mode 100644 index 0000000..b597ceb Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/s_text_image.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/uiface_1.jpg b/theme_anelusia/static/src/img/snippets/uiface_1.jpg new file mode 100644 index 0000000..062a6de Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/uiface_1.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/uiface_2.jpg b/theme_anelusia/static/src/img/snippets/uiface_2.jpg new file mode 100644 index 0000000..082faf1 Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/uiface_2.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/uiface_3.jpg b/theme_anelusia/static/src/img/snippets/uiface_3.jpg new file mode 100644 index 0000000..5e262c8 Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/uiface_3.jpg differ diff --git a/theme_anelusia/static/src/img/snippets/uiface_4.jpg b/theme_anelusia/static/src/img/snippets/uiface_4.jpg new file mode 100644 index 0000000..6ed2c99 Binary files /dev/null and b/theme_anelusia/static/src/img/snippets/uiface_4.jpg differ diff --git a/theme_anelusia/static/src/js/tour.js b/theme_anelusia/static/src/js/tour.js new file mode 100644 index 0000000..97e0dd7 --- /dev/null +++ b/theme_anelusia/static/src/js/tour.js @@ -0,0 +1,37 @@ +odoo.define("theme_anelusia.tour.anelusia", function (require) { +"use strict"; + +const wTourUtils = require("website.tour_utils"); +var tour = require("web_tour.tour"); + +const snippets = [ + { + id: 's_cover', + name: 'Cover', + }, + { + id: 's_images_wall', + name: 'Images Wall', + }, + { + id: 's_media_list', + name: 'Media List', + }, + { + id: 's_company_team', + name: 'Team', + }, +]; + +wTourUtils.registerThemeHomepageTour("anelusia_tour", [ + wTourUtils.dragNDrop(snippets[0]), + wTourUtils.clickOnText(snippets[0], 'h1', 'top'), + wTourUtils.goBackToBlocks(), + wTourUtils.dragNDrop(snippets[1]), + wTourUtils.dragNDrop(snippets[2], 'top'), + wTourUtils.dragNDrop(snippets[3]), + wTourUtils.clickOnSnippet(snippets[3], 'top'), + wTourUtils.changeBackgroundColor(), + wTourUtils.clickOnSave(), +]); +}); diff --git a/theme_anelusia/static/src/old_snippets/s_banner_parallax/000.scss b/theme_anelusia/static/src/old_snippets/s_banner_parallax/000.scss new file mode 100644 index 0000000..fb39e42 --- /dev/null +++ b/theme_anelusia/static/src/old_snippets/s_banner_parallax/000.scss @@ -0,0 +1,4 @@ + +#wrapwrap:not(.o_header_overlay) main #wrap > .s_banner_parallax:first-child::before { + content: none; +} diff --git a/theme_anelusia/theme_anelusia/static/src/scss/snippets/s_banner_parallax.scss b/theme_anelusia/static/src/old_snippets/s_banner_parallax/000_variables.scss similarity index 100% rename from theme_anelusia/theme_anelusia/static/src/scss/snippets/s_banner_parallax.scss rename to theme_anelusia/static/src/old_snippets/s_banner_parallax/000_variables.scss diff --git a/theme_anelusia/theme_anelusia/static/src/scss/snippets/s_features_carousel.scss b/theme_anelusia/static/src/old_snippets/s_features_carousel/000_variables.scss similarity index 100% rename from theme_anelusia/theme_anelusia/static/src/scss/snippets/s_features_carousel.scss rename to theme_anelusia/static/src/old_snippets/s_features_carousel/000_variables.scss diff --git a/theme_anelusia/static/src/old_snippets/s_products_carousel/000.scss b/theme_anelusia/static/src/old_snippets/s_products_carousel/000.scss new file mode 100644 index 0000000..1e8c2b1 --- /dev/null +++ b/theme_anelusia/static/src/old_snippets/s_products_carousel/000.scss @@ -0,0 +1,3 @@ +#wrapwrap:not(.o_header_overlay) main #wrap > .s_products_carousel:first-child::before { + content: none; +} diff --git a/theme_anelusia/theme_anelusia/static/src/scss/snippets/s_products_carousel.scss b/theme_anelusia/static/src/old_snippets/s_products_carousel/000_variables.scss similarity index 100% rename from theme_anelusia/theme_anelusia/static/src/scss/snippets/s_products_carousel.scss rename to theme_anelusia/static/src/old_snippets/s_products_carousel/000_variables.scss diff --git a/theme_anelusia/static/src/scss/bootstrap_overridden.scss b/theme_anelusia/static/src/scss/bootstrap_overridden.scss new file mode 100644 index 0000000..3a9e7bb --- /dev/null +++ b/theme_anelusia/static/src/scss/bootstrap_overridden.scss @@ -0,0 +1,60 @@ +//------------------------------------------------------------------------------// +// Bootstrap +//------------------------------------------------------------------------------// + +// The yiq lightness value that determines when the lightness of color changes from "dark" to "light". Acceptable values are between 0 and 255. +$yiq-contrasted-threshold: 200 !default; + +// Spacing +// +// Control the default styling of most Bootstrap elements by modifying these +// variables. Mostly focused on spacing. +// You can add more entries to the $spacers map, should you need more variation. + +$spacer: 1.25rem !default; + +// Components +// +// Define common padding and border radius sizes and more. + +$border-radius: 0 !default; +$border-radius-lg: 0 !default; +$border-radius-sm: 0 !default; + +$box-shadow-sm: 0 0 .3125rem rgba(0,0,0,.25) !default; +$box-shadow: 0 0 .3125rem rgba(0,0,0,.25) !default; +$box-shadow-lg: 0 0 .3125rem rgba(0,0,0,.25) !default; + +// Fonts +// +// Font, line-height, and color for body text, headings, and more. + +// stylelint-enable value-keyword-case + +$font-weight-normal: if(o-website-value('font-number') == 4, 300, 500) !default; + +$headings-font-weight: 700 !default; + +// Dropdowns +// +// Dropdown menu container and contents. + +$dropdown-border-radius: .25rem !default; +$dropdown-border-width: .0625rem !default; +$dropdown-box-shadow: 0 .375rem 1.75em rgba(o-color('black'), .175) !default; + +// Badges + +$badge-padding-y: .3125rem !default; +$badge-padding-x: .625rem !default; +$badge-border-radius: .625rem !default; + +// Breadcrumbs + +$breadcrumb-padding-y: .5rem !default; +$breadcrumb-padding-x: .9375rem !default; + +$breadcrumb-margin-bottom: 1.25rem !default; + +$breadcrumb-bg: o-color('white') !default; +$breadcrumb-active-color: o-color('600') !default; diff --git a/theme_anelusia/static/src/scss/compatibility-saas-11.4-variables.scss b/theme_anelusia/static/src/scss/compatibility-saas-11.4-variables.scss new file mode 100644 index 0000000..87e8901 --- /dev/null +++ b/theme_anelusia/static/src/scss/compatibility-saas-11.4-variables.scss @@ -0,0 +1,19 @@ +$s-banner-3-carosel-control-color: rgba(0, 0, 0, 0); +$s-banner-3-padding: 15px; +$s-banner-3-fa-color: o-color('alpha'); +$s-banner-3-carousel-height: 100vh; + +@mixin s-banner-3-col-center-hook { + text-align: center; + width: 100%; + padding-top: 60vh; + @include media-breakpoint-down(sm) { + padding-top: 25vh; + } +} + +$s-big-picture-text-padding: 0; + +$s-text-big-picture-padding: 0; + +$s-timeline-company-color: $-gray-700; diff --git a/theme_anelusia/static/src/scss/primary_variables.scss b/theme_anelusia/static/src/scss/primary_variables.scss new file mode 100644 index 0000000..a1bbee5 --- /dev/null +++ b/theme_anelusia/static/src/scss/primary_variables.scss @@ -0,0 +1,182 @@ +//------------------------------------------------------------------------------// +// Presets +//------------------------------------------------------------------------------// + +$o-website-values-palettes: ( + ( + // Header + 'header-font-size': (20 / 16) * 1rem, + 'header-template': 'hamburger-full', + + // Font + 'font': 'Source Sans Pro', + 'headings-font': 'Source Sans Pro', + 'navbar-font': 'Source Sans Pro', + 'buttons-font': 'Source Sans Pro', + + 'link-underline': 'never', + + // Footer + 'footer-template': 'headline', + ), +); + +//------------------------------------------------------------------------------// +// Fonts +//------------------------------------------------------------------------------// + +$o-theme-font-configs: ( + 'Source Sans Pro': ( + 'family': ('Source Sans Pro', sans-serif), + 'url': 'Source+Sans+Pro:300,300i,400,400i,700,700i', + ), + 'Forum': ( + 'family': ('Forum', cursive), + 'url': 'Forum:300,300i,400,400i,700,700i', + ), + 'Heebo': ( + 'family': ('Heebo', sans-serif), + 'url': 'Heebo:300,300i,400,400i,600,600i', + ), + 'Buda': ( + 'family': ('Buda', cursive), + 'url': 'Buda:300,300i,400,400i,700,700i', + ), + 'PT Serif': ( + 'family': ('PT Serif', serif), + 'url': 'PT+Serif:300,300i,400,400i,700,700i', + ), + 'Rajdhani': ( + 'family': ('Rajdhani', sans-serif), + 'url': 'Rajdhani:300,300i,400,400i,700,700i', + ), + 'EB Garamond': ( + 'family': ('EB Garamond', serif), + 'url': 'EB+Garamond:300,300i,400,400i,700,700i', + ), +); + +//------------------------------------------------------------------------------ +// Colors +//------------------------------------------------------------------------------ + +$o-color-palettes: ( + ( // Palette 1 + 'o-color-1': #000000, + 'o-color-2': #e4e4e4, + 'o-color-3': #00459e, + 'o-color-4': #ffffff, + 'o-color-5': #444444, + + 'o-cc2-headings': 'o-color-4', + 'o-cc2-link': 'o-color-4', + 'o-cc2-btn-primary': 'o-color-4', + + 'o-cc4-headings': 'o-color-4', + 'o-cc4-btn-primary': 'o-color-4', + 'o-cc4-text': 'o-color-2', + 'o-cc4-link': 'o-color-4', + + 'o-cc5-text': 'o-color-2', + 'o-cc5-link': 'o-color-4', + + 'menu': 4, + 'footer': 4, + 'copyright': 4, + ), + ( // Palette 2 + 'o-color-1': #d4ab0a, + 'o-color-2': #444444, + 'o-color-3': #ececec, + 'o-color-4': #ffffff, + 'o-color-5': #000000, + + 'menu': 4, + 'footer': 1, + 'copyright': 2, + ), + ( // Palette 3 + 'o-color-1': #005699, + 'o-color-2': #ac5e82, + 'o-color-3': #d8eff1, + 'o-color-4': #ffffff, + 'o-color-5': #222222, + + 'o-cc5-link': #218bdf, + 'o-cc5-btn-primary': #218bdf, + ), + ( // Palette 4 + 'o-color-1': #dc143c, + 'o-color-2': #7e2839, + 'o-color-3': #faf7e1, + 'o-color-4': #ffffff, + 'o-color-5': #222222, + ), + ( // Palette 5 + 'o-color-1': #32c0c9, + 'o-color-2': #cfcfcf, + 'o-color-3': #cee6e7, + 'o-color-4': #ffffff, + 'o-color-5': #2e2e2e, + + 'footer': 1, + ), + ( // Palette 6 + 'o-color-1': #e27b92, + 'o-color-2': #e4e4e4, + 'o-color-3': #465548, + 'o-color-4': #ffffff, + 'o-color-5': #222222, + + 'o-cc2-headings': 'o-color-4', + 'o-cc5-text': 'o-color-2', + + 'menu': 2, + 'footer': 2, + ), +); +// Compatibility +$o-theme-color-palettes: ( + ( + 'alpha': #ffffff, + 'beta': #cdd0a2, + 'gamma': #b4bbb9, + 'delta': #242327, + 'epsilon': #957985, + ), + ( + 'alpha': #ffffff, + 'beta': #f4f1db, + 'gamma': #928371, + 'delta': #53453f, + 'epsilon': #c31737, + ), + ( + 'alpha': #ffffff, + 'beta': #d8eff1, + 'gamma': #0d75ac, + 'delta': #000f3d, + 'epsilon': #e07a6b, + ), + ( + 'alpha': #ffffff, + 'beta': #faf7e1, + 'gamma': #e3d6c6, + 'delta': #eed187, + 'epsilon': #dc733f, + ), + ( + 'alpha': #ffffff, + 'beta': #cfcfcf, + 'gamma': #2e2e2e, + 'delta': #000000, + 'epsilon': #32c0c9, + ), + ( + 'alpha': #ffffff, + 'beta': #aacfb0, + 'gamma': #4dac5e, + 'delta': #93ab12, + 'epsilon': #e62e3e, + ), +); diff --git a/theme_anelusia/theme_anelusia/__manifest__.py b/theme_anelusia/theme_anelusia/__manifest__.py deleted file mode 100644 index b1edcd4..0000000 --- a/theme_anelusia/theme_anelusia/__manifest__.py +++ /dev/null @@ -1,23 +0,0 @@ -{ - 'name': 'Anelusia Theme', - 'description': 'Anelusia Fashion Theme', - 'category': 'Theme/Retail', - 'summary': 'Fashions, Trends, Clothes, Shoes, Sports, Fitness, Stores', - 'sequence': 180, - 'version': '1.0', - 'depends': ['theme_common'], - 'data': [ - 'views/assets.xml', - 'views/customize_modal.xml', - 'views/snippets.xml', - 'views/images_content.xml', - 'views/images_library.xml', - 'views/snippet_options.xml', - ], - 'images': [ - 'static/description/anelusia_description.png', - 'static/description/anelusia_screenshot.jpg', - ], - 'license': 'LGPL-3', - 'live_test_url': 'https://theme-anelusia.odoo.com/page/demo1', -} diff --git a/theme_anelusia/theme_anelusia/models/theme_anelusia.py b/theme_anelusia/theme_anelusia/models/theme_anelusia.py deleted file mode 100644 index afe05b2..0000000 --- a/theme_anelusia/theme_anelusia/models/theme_anelusia.py +++ /dev/null @@ -1,12 +0,0 @@ -from odoo import models - - -class ThemeAnelusia(models.AbstractModel): - _inherit = 'theme.utils' - - def _theme_anelusia_post_copy(self, mod): - # Hamburger preset - self.enable_view('website.no_autohide_menu') - - # For compatibility - # self.enable_view('theme_common.compatibility-saas-10-1') diff --git a/theme_anelusia/theme_anelusia/static/description/anelusia_screenshot.jpg b/theme_anelusia/theme_anelusia/static/description/anelusia_screenshot.jpg deleted file mode 100644 index a818c5e..0000000 Binary files a/theme_anelusia/theme_anelusia/static/description/anelusia_screenshot.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/description/index.html b/theme_anelusia/theme_anelusia/static/description/index.html deleted file mode 100644 index b50f0a6..0000000 --- a/theme_anelusia/theme_anelusia/static/description/index.html +++ /dev/null @@ -1,214 +0,0 @@ -
-

Html5 Responsive Bootstrap Theme for Odoo CMS

-
- -

Anelusia is a professional responsive HTML5 theme, built using Bootstrap3, - the most popular front-end framework for developing responsive, mobile - first projects on the web. Just drag & drop the new building blocks - you need to easily build your layout. All layouts are made of sections, - that you can easily combine to fit your specific project.

- -
- -

Anelusia Customization Tool

- -

Theme Anelusia comes with customization tools. You can easily change - the background, the colors and the font combination of your website or - you a preset.

- -
-
- -
-
-

Theme Anelusia comes with a lot of options

-
    -
  • 6 PRESETS
  • -
  • WIDE OR BOXED LAYOUT
  • -
  • 6 COLOR SCHEMES
  • -
  • 8 BACKGROUND SHADES OR USE YOUR OWN
  • -
  • 6 FONT COMBINATIONS
  • -
  • 10 BACKGROUND PATTERNS
  • -
-

All the background, color and font combinations were made to work together.  - You can not go wrong with the settings.

- -

Minimalistic Flat Design

-

Anelusia was made with easy customization and branding in mind. Based on - simple, modern and typographical elements, it allows you to easily customize - your website.

- -

6 Prebuild Presets

-

You don't have the time to play with options? Don't worry, Anelusia gives - you six full presets wich combine colors, fonts and background.

-

This theme has an additional eCommerce plugin.

-
-
-
- -

Anelusia Building Blocks

- -

You get a new complete range of building blocks.

- -
-
-

CONTENT BLOCKS

-
    -
  • Title
  • -
  • 1 Column Text
  • -
  • 2 Column Text
  • -
  • 3 Column Text
  • -
  • 4 Column Text
  • -
  • Custom Button
  • -
  • Separator Block
  • -
-

STRUCTURE BLOCKS

-
    -
  • Custom Banner
  • -
  • Big Picture + Text
  • -
  • Text + Big Picture
  • -
  • Cubes
  • -
  • Features Slideshow
  • -
  • Header + Text + Picture
  • -
  • Product List
  • -
  • Text + Image + Text
  • -
  • Parallax Banner
  • -
  • 2 Color Blocks
  • -
  • 4 Color Blocks
  • -
  • Numbers
  • -
  • Timeline
  • -
  • Event List
  • -
  • Logos Bar
  • -
  • Testimonial Slider
  • -
  • Progress
  • -
-
-
-

FEATURES BLOCKS

-
    -
  • Slide Banner
  • -
  • Slideshow with products
  • -
-

EFFECTS BLOCKS

-
    -
  • Big Image Parallax
  • -
-
-
-

Customize Your Blocks

-

Each building blocks comes with its own options. 

- -
-
- -

Some fonts might not work with extended charsets.

-

The images in the theme are copyrighted and can't be used outside of the odoo.com domain.

-
- -

CONTRIBUTORS LIST

-
- -

This theme was created with the help of our user community.

- -

Thanks to our backers the Indiegogo campaign was a success!

- -

https://www.indiegogo.com/projects/bootstrap-themes-for-odoo-cms/

-
- -

Main Sponsor

-
- -
-
- - - -
-
- - - -
-
- - - -
-
- - - -
-
- - - -
-
- - - -
-
-
-
- - - -
-
- - - -
-
- - - -
-
- - - -
-
- - - -
-
- - - -
-
-
-
- - - -
-
- - - -
-
- - - -
-
- -

Ross Whiting, Oxenworkwear - Hans Balis - Stephan Keller, Sodexis, Inc. - Michael Hucke, Hucke Media GmbH & Co. KG - Joachim Grubelnik, DaDi EDV GmbH​ datadialog.net - DynApps - Cats&Dogs bvba - Bloopark systems GmbH & Co. KG - Parthiv Patel, Tech Receptives Solutions Pvt. Ltd. - Stuart Mackintosh, OpusVL - Erwin van der Ploeg, BAS Solutions - ali Zuaby, simplit co - Aselcis Consulting - Nhomar Hernandez, Vauxoo

- -

Sponsor

-
- -

Robert Baumgartner, datenpol gmbh - openBIG - Russell Phillippe, Protogenos Ltd - Julien Allo, Julius - EasyPME - Jonathan Wilson, WillowIT Pty Ltd - Xavier Mallein, MAallein - Pedro M. Baeza, Serv. Tecnol. Avanzados - Daniel Dico, OERP Canada - Jantz Business Group b.v. - LogicaSoft Consulting - Eric Caudal, Elico Corp - Ermin Trevisan, Twanda - Jean-François Mattler, OpenFid SAS - Alex Ferrer, Lannex IT Solutions - Tony Gu, Shine IT Co. Ltd. 先安科技 - TaPo-IT OG - Jos De Graeve, Apertoso - Nicolas Rigo, eezee-it - Luis Miguel Varón E, Colorisa S.A - OpenBias - Stanislas Drouin Applicatour

- -

Power Designer

-
- -

Rohit Thakral - François Dhommeaux, Ubic Informatique - Judson Alves, Market Home Delivery - Eric Flaux, ABF Osiell - Gilles Dupont - Arnis Putniņš - Johnson Martt, GetOpenERP (Part of OpenStow Technologies) - Gianluca Milano - Daniel Stolovich, ATEL S.A. - Equitania Software GmbH - Senthilnathan G - Houssine Bakkali - Arend Trip - Kevin Woolf, Baba Kevin's American Barbecue Co., Ltd. - toodoo sàrl - Zoltan Gabor 'Apersis' - Tom De Decker, WEB2GO LTD - Nicolás Cavalier Montenegro, STOREGUD CORPORATION SAC - Keirse Jerome - REAL Solutions S.A. - Davide Corio - Brice Muangkhot - Melvin Miguel Martinez, Mendoza Hernandez - Auditores - Chua Wen Ching - Tran Minh Tri working, ungdungtinhoc.com - Badisheng Morena - Sogexis - Josh Wardini - The Tee Shirt Bakery - Bruce Letterle, Red Lab Media - Benoit Vankoningsloo - Francisco Manuel Garcia Claramonte. - Paulina Mikolajczak-Blasco - Collectiv - Tony Fernando - Herbert Riener, rigaConcepts - Kalmen Chia, E-Global SCM Solution Sdn Bhd - Rob North, Pair A Dice Games - David E. Vargas, CloudShop - François Le Gal - Calin Chete (24h Solutions) - Maria Gabriela Fong, MAGA Systems & Consulting - Pascal Behr, Cytosurge AG - Marc Antwertinger - Opencloud Unipessoal, Lda - Ruchir Shukla, BizzAppDev - Michael Hucke, Hucke Media GmbH & Co. KG - Mathias Neef, copadoMEDIA UG - Pablo Arias - Same Motion - livingprocess.de - Habib Ayob - Igor Jovanovic - Liangming Wang, Weixuan Inc. - Jason Au Yeung, Binary System Limited - Fredrik Arvas, Arvas International AB - Martin Temmink, Zigaret - Mathieu Vanneste, Flockdesign - Filip Fruru, Instant Media - Marianne Wilmsmeier, Fabrik Fünf GmbH - Vertex Group Enterprises - Bingen Eguzkitza - Herczeg Péter, InnOpen Group Kft - Giles Hohnen - Luis Felipe Miléo, KMEE - Maria Gabriela Fong, MAGA Systems & Consulting - Aaron Magon, Web Industries - Andrew Trueman, B.M. Trueman & Partners - Sven Petersen, Conexus - Nous Cambas - Oliver Yuan, OpenStone - Henri Ibowili, A-YANT.COM - Nicolas JEUDY - Helmut Drewes - Maik Steinfeld, Streward - Hans Henrik Gabelgaard - AJ Rosman - Eduard - Patrick Darribet, SUDOKEYS - Camptocamp - Cyril Morisse - Alejandro Santana - Eva Pinter, YBO - Mathias Neef, copadoMEDIA UG - Jean-Christophe Perrot, LOGICASOFT - Zarshed Ali, HiTechnologia - Stefan Reisich - Maxime Chambreuil, Savoir-faire Linux - Mario Gielissen, Openworx - Nicholas Burdic, Aptoworks LLC - Olivier Lenoir

-
diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/content_img_01.jpg b/theme_anelusia/theme_anelusia/static/src/img/content/content_img_01.jpg deleted file mode 100755 index e9d5d2a..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/content/content_img_01.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/content_img_04.jpg b/theme_anelusia/theme_anelusia/static/src/img/content/content_img_04.jpg deleted file mode 100755 index c8b9b2d..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/content/content_img_04.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/content_img_05.jpg b/theme_anelusia/theme_anelusia/static/src/img/content/content_img_05.jpg deleted file mode 100755 index 27fba4f..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/content/content_img_05.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/content_img_06.jpg b/theme_anelusia/theme_anelusia/static/src/img/content/content_img_06.jpg deleted file mode 100755 index de619a4..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/content/content_img_06.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/content_img_08.jpg b/theme_anelusia/theme_anelusia/static/src/img/content/content_img_08.jpg deleted file mode 100755 index 2b601a8..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/content/content_img_08.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/content_logo.png b/theme_anelusia/theme_anelusia/static/src/img/content/content_logo.png deleted file mode 100755 index 30266c6..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/content/content_logo.png and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_01.jpg b/theme_anelusia/theme_anelusia/static/src/img/content/product_img_01.jpg deleted file mode 100755 index 2f65774..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_01.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_02.jpg b/theme_anelusia/theme_anelusia/static/src/img/content/product_img_02.jpg deleted file mode 100755 index 782290f..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_02.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_03.jpg b/theme_anelusia/theme_anelusia/static/src/img/content/product_img_03.jpg deleted file mode 100755 index d2c694b..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_03.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_04.jpg b/theme_anelusia/theme_anelusia/static/src/img/content/product_img_04.jpg deleted file mode 100755 index 428c5ec..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_04.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_05.jpg b/theme_anelusia/theme_anelusia/static/src/img/content/product_img_05.jpg deleted file mode 100755 index 58a7f21..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_05.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_06.jpg b/theme_anelusia/theme_anelusia/static/src/img/content/product_img_06.jpg deleted file mode 100755 index b6928a9..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_06.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_07.jpg b/theme_anelusia/theme_anelusia/static/src/img/content/product_img_07.jpg deleted file mode 100755 index 42dbaed..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_07.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_08.jpg b/theme_anelusia/theme_anelusia/static/src/img/content/product_img_08.jpg deleted file mode 100755 index 3a5e5af..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_08.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_09.jpg b/theme_anelusia/theme_anelusia/static/src/img/content/product_img_09.jpg deleted file mode 100755 index b3aa0c2..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_09.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_10.jpg b/theme_anelusia/theme_anelusia/static/src/img/content/product_img_10.jpg deleted file mode 100755 index b9a1bec..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_10.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_11.jpg b/theme_anelusia/theme_anelusia/static/src/img/content/product_img_11.jpg deleted file mode 100755 index ef6e637..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_11.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_12.jpg b/theme_anelusia/theme_anelusia/static/src/img/content/product_img_12.jpg deleted file mode 100755 index c969006..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_12.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_13.jpg b/theme_anelusia/theme_anelusia/static/src/img/content/product_img_13.jpg deleted file mode 100755 index 22d6c1f..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_13.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_14.jpg b/theme_anelusia/theme_anelusia/static/src/img/content/product_img_14.jpg deleted file mode 100755 index 016c004..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_14.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_15.jpg b/theme_anelusia/theme_anelusia/static/src/img/content/product_img_15.jpg deleted file mode 100755 index c62e07d..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_15.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_16.jpg b/theme_anelusia/theme_anelusia/static/src/img/content/product_img_16.jpg deleted file mode 100755 index 30878ed..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/content/product_img_16.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/library/bg1.jpg b/theme_anelusia/theme_anelusia/static/src/img/library/bg1.jpg deleted file mode 100755 index b964de6..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/library/bg1.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/library/bg10.jpg b/theme_anelusia/theme_anelusia/static/src/img/library/bg10.jpg deleted file mode 100755 index 822cf7d..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/library/bg10.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/library/bg2.jpg b/theme_anelusia/theme_anelusia/static/src/img/library/bg2.jpg deleted file mode 100755 index 7afaa06..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/library/bg2.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/library/bg3.jpg b/theme_anelusia/theme_anelusia/static/src/img/library/bg3.jpg deleted file mode 100755 index ec0817c..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/library/bg3.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/library/bg4.jpg b/theme_anelusia/theme_anelusia/static/src/img/library/bg4.jpg deleted file mode 100755 index 6eb50ec..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/library/bg4.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/library/bg5.jpg b/theme_anelusia/theme_anelusia/static/src/img/library/bg5.jpg deleted file mode 100755 index c54ddfe..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/library/bg5.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/library/bg6.jpg b/theme_anelusia/theme_anelusia/static/src/img/library/bg6.jpg deleted file mode 100755 index dde7de0..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/library/bg6.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/library/bg7.jpg b/theme_anelusia/theme_anelusia/static/src/img/library/bg7.jpg deleted file mode 100755 index 71a9f45..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/library/bg7.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/library/bg8.jpg b/theme_anelusia/theme_anelusia/static/src/img/library/bg8.jpg deleted file mode 100755 index 594e009..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/library/bg8.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/library/bg9.jpg b/theme_anelusia/theme_anelusia/static/src/img/library/bg9.jpg deleted file mode 100755 index 58a0215..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/library/bg9.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/library/tn-bg-custom.jpg b/theme_anelusia/theme_anelusia/static/src/img/library/tn-bg-custom.jpg deleted file mode 100755 index 816f171..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/library/tn-bg-custom.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/library/tn-bg-none.jpg b/theme_anelusia/theme_anelusia/static/src/img/library/tn-bg-none.jpg deleted file mode 100755 index 607dfbb..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/library/tn-bg-none.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_01.jpg b/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_01.jpg deleted file mode 100755 index b9de252..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_01.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_02.jpg b/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_02.jpg deleted file mode 100755 index 2afe0ea..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_02.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_03.jpg b/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_03.jpg deleted file mode 100755 index 7bd08a4..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_03.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_04.jpg b/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_04.jpg deleted file mode 100755 index 536ca51..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_04.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_05.jpg b/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_05.jpg deleted file mode 100755 index 256dfcf..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_05.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_06.jpg b/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_06.jpg deleted file mode 100755 index e148901..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_06.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_07.jpg b/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_07.jpg deleted file mode 100755 index 189898c..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_07.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_08.jpg b/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_08.jpg deleted file mode 100755 index 643c18d..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_08.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_09.jpg b/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_09.jpg deleted file mode 100755 index 0483b44..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_09.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_10.jpg b/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_10.jpg deleted file mode 100755 index 928bca4..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/pattern/pattern_10.jpg and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/snippets/2_color_blocks.png b/theme_anelusia/theme_anelusia/static/src/img/snippets/2_color_blocks.png deleted file mode 100644 index 0c3c6c9..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/snippets/2_color_blocks.png and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/snippets/color_blocks.png b/theme_anelusia/theme_anelusia/static/src/img/snippets/color_blocks.png deleted file mode 100644 index 24d14d6..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/snippets/color_blocks.png and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/snippets/event_list.png b/theme_anelusia/theme_anelusia/static/src/img/snippets/event_list.png deleted file mode 100644 index 07dea2f..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/snippets/event_list.png and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/snippets/references.png b/theme_anelusia/theme_anelusia/static/src/img/snippets/references.png deleted file mode 100644 index 47802c0..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/snippets/references.png and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/snippets/s_3column_menu.png b/theme_anelusia/theme_anelusia/static/src/img/snippets/s_3column_menu.png deleted file mode 100644 index 5df2229..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/snippets/s_3column_menu.png and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/snippets/s_numbers.png b/theme_anelusia/theme_anelusia/static/src/img/snippets/s_numbers.png deleted file mode 100644 index 34a2625..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/snippets/s_numbers.png and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/snippets/s_progress.png b/theme_anelusia/theme_anelusia/static/src/img/snippets/s_progress.png deleted file mode 100644 index 57e3aec..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/snippets/s_progress.png and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/snippets/testimonial.png b/theme_anelusia/theme_anelusia/static/src/img/snippets/testimonial.png deleted file mode 100644 index 78d4d21..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/snippets/testimonial.png and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/img/snippets/timeline.png b/theme_anelusia/theme_anelusia/static/src/img/snippets/timeline.png deleted file mode 100644 index eddf13c..0000000 Binary files a/theme_anelusia/theme_anelusia/static/src/img/snippets/timeline.png and /dev/null differ diff --git a/theme_anelusia/theme_anelusia/static/src/js/main.js b/theme_anelusia/theme_anelusia/static/src/js/main.js deleted file mode 100644 index 3c3f757..0000000 --- a/theme_anelusia/theme_anelusia/static/src/js/main.js +++ /dev/null @@ -1,70 +0,0 @@ -odoo.define('theme_anelusia.main', function (require) { -'use strict'; - -var publicWidget = require('web.public.widget'); -require('website.content.menu'); - -// FIXME - -publicWidget.registry.anelusiaHeader = publicWidget.Widget.extend({ - selector: '.navbar-toggler', - events: { - 'click': '_onToggleClick', - }, - - //-------------------------------------------------------------------------- - // Handlers - //-------------------------------------------------------------------------- - - /** - * @private - */ - _onToggleClick: function () { - $('body').toggleClass('no-scroll'); - setTimeout(function () { $(window).trigger('scroll'); }, 100); - }, -}); - -publicWidget.registry.affixMenu.include({ - /** - * @override - */ - start: function () { - var def = this._super.apply(this, arguments); - if (this.$headerClone) { - this.$clonedNavbarHeader = this.$headerClone.find('.navbar-toggler'); - } - return def; - }, - - //-------------------------------------------------------------------------- - // Private - //-------------------------------------------------------------------------- - - /** - * @override - */ - _getHeaderHeight: function () { - return Math.max( - this.$headerClone.find('.navbar-brand').outerHeight(true), - this.$headerClone.find('.container').outerHeight(true) - ); - }, - - //-------------------------------------------------------------------------- - // Handlers - //-------------------------------------------------------------------------- - - /** - * @override - */ - _onWindowUpdate: function () { - this._super.apply(this, arguments); - - var affixed = this.$headerClone.is('.affixed'); - var noScroll = $('body').hasClass('no-scroll'); - var hasHamburgerMenu = ($(".new-toggle").length > 0); - this.$clonedNavbarHeader.css('background', (affixed && !noScroll && hasHamburgerMenu) ? 'rgba(0, 0, 0, 0.8)' : 'none'); - }, -}); -}); diff --git a/theme_anelusia/theme_anelusia/static/src/scss/bootstrap_overridden.scss b/theme_anelusia/theme_anelusia/static/src/scss/bootstrap_overridden.scss deleted file mode 100644 index a6ab875..0000000 --- a/theme_anelusia/theme_anelusia/static/src/scss/bootstrap_overridden.scss +++ /dev/null @@ -1,161 +0,0 @@ -// -// Color system -// - -// The yiq lightness value that determines when the lightness of color changes from "dark" to "light". Acceptable values are between 0 and 255. -$yiq-contrasted-threshold: 200 !default; - -// Spacing -// -// Control the default styling of most Bootstrap elements by modifying these -// variables. Mostly focused on spacing. -// You can add more entries to the $spacers map, should you need more variation. - -$spacer: 1.25rem !default; - -// Links -// -// Style anchor elements. - -$link-color: palette-theme-color("epsilon") !default; -$link-hover-color: palette-theme-color("delta") !default; -$link-hover-decoration: none !default; - -// Components -// -// Define common padding and border radius sizes and more. - -$border-color: palette-gray('200') !default; - -$border-radius: 0 !default; -$border-radius-lg: 0 !default; -$border-radius-sm: 0 !default; - -$box-shadow-sm: 0 0 .3125rem rgba(0,0,0,.25) !default; -$box-shadow: 0 0 .3125rem rgba(0,0,0,.25) !default; -$box-shadow-lg: 0 0 .3125rem rgba(0,0,0,.25) !default; - - -// Fonts -// -// Font, line-height, and color for body text, headings, and more. - -// stylelint-enable value-keyword-case - -$font-weight-normal: 500 !default; - -$h1-font-size: $o-theme-font-size-base * (36 / 16) !default; -$h2-font-size: $o-theme-font-size-base * (30 / 16) !default; -$h3-font-size: $o-theme-font-size-base * (24 / 16) !default; -$h4-font-size: $o-theme-font-size-base * (18 / 16) !default; -$h5-font-size: $o-theme-font-size-base * (14 / 16) !default; -$h6-font-size: $o-theme-font-size-base * (12 / 16) !default; - -$headings-font-weight: 700 !default; - -$hr-border-color: palette-theme-color('gamma') !default; - -// Buttons + Forms -// -// Shared variables that are reassigned to `$input-` and `$btn-` specific variables. - -$input-btn-padding-y: .625rem !default; -$input-btn-padding-x: 1.25rem !default; - -$input-btn-focus-color: darken(palette-theme-color('primary'), 15%) !default; -$input-btn-focus-box-shadow: 0 0 0 0 0 !default; - -$input-btn-padding-y-sm: .625rem !default; -$input-btn-padding-x-sm: 1.25rem !default; - -$input-btn-padding-y-lg: .625rem !default; -$input-btn-padding-x-lg: 1.25rem !default; - -$input-btn-border-width: 0 !default; - - -// Buttons -// -// For each of Bootstrap's buttons, define text, background, and border color. - -$btn-box-shadow: 0 0 0 0 0 !default; -$btn-focus-box-shadow: $btn-box-shadow !default; -$btn-active-box-shadow: $btn-box-shadow !default; - -// Forms - -$input-bg: palette-theme-color('primary') !default; - -$input-color: #242327 !default; -$input-border-width: 0 !default; -$input-box-shadow: $btn-box-shadow !default; - -$input-focus-bg: darken(palette-theme-color('primary'), 15%) !default; -$input-focus-border-color: none !default; -$input-focus-box-shadow: $btn-box-shadow !default; - -$input-height-border: .0625rem !default; - -$form-check-input-margin-y: 0 !default; -$form-check-input-margin-x: 0 !default; - -$form-check-inline-margin-x: 0 !default; -$form-check-inline-input-margin-x: 0 !default; - -$custom-select-focus-box-shadow: none !default; - -// Dropdowns -// -// Dropdown menu container and contents. - -$dropdown-border-radius: .25rem !default; -$dropdown-border-width: .0625rem !default; -$dropdown-box-shadow: 0 .375rem 1.75em rgba(palette-gray('black'), .175) !default; - -// Navs - -$nav-link-padding-y: .625rem !default; -$nav-link-padding-x: .9375rem !default; - -$nav-tabs-border-width: 0 !default; -$nav-tabs-link-active-color: palette-gray('white') !default; -$nav-tabs-link-active-bg: transparent !default; - -$nav-pills-link-active-color: palette-gray('white') !default; -$nav-pills-link-active-bg: transparent !default; - -$nav-divider-color: transparent !default; -$nav-divider-margin-y: 0 !default; - -// Navbar - -$navbar-padding-y: 0 !default; -$navbar-padding-x: 2rem !default; - -// Pagination - -$pagination-focus-box-shadow: 0 0 0 0 0 !default; - -// Cards - -$card-cap-bg: palette-gray('white') !default; - -// Badges - -$badge-padding-y: .3125rem !default; -$badge-padding-x: .625rem !default; -$badge-border-radius: .625rem !default; - -// Breadcrumbs - -$breadcrumb-padding-y: .5rem !default; -$breadcrumb-padding-x: .9375rem !default; - -$breadcrumb-margin-bottom: 1.25rem !default; - -$breadcrumb-bg: palette-gray('white') !default; -$breadcrumb-active-color: palette-gray('600') !default; - -// Carousel - -$carousel-control-color: palette-theme-color('alpha') !default; diff --git a/theme_anelusia/theme_anelusia/static/src/scss/compatibility-saas-11.4-variables.scss b/theme_anelusia/theme_anelusia/static/src/scss/compatibility-saas-11.4-variables.scss deleted file mode 100644 index 0827fe1..0000000 --- a/theme_anelusia/theme_anelusia/static/src/scss/compatibility-saas-11.4-variables.scss +++ /dev/null @@ -1,19 +0,0 @@ -$s-banner-3-carosel-control-color: rgba(0, 0, 0, 0); -$s-banner-3-padding: 15px; -$s-banner-3-fa-color: o-theme-color('alpha'); -$s-banner-3-carousel-height: 100vh; - -@mixin s-banner-3-col-center-hook { - text-align: center; - width: 100%; - padding-top: 60vh; - @include media-breakpoint-down(sm) { - padding-top: 25vh; - } -} - -$s-big-picture-text-padding: 0; - -$s-text-big-picture-padding: 0; - -$s-timeline-company-color: $-gray-700; diff --git a/theme_anelusia/theme_anelusia/static/src/scss/options/layout/hamburger_variables.scss b/theme_anelusia/theme_anelusia/static/src/scss/options/layout/hamburger_variables.scss deleted file mode 100644 index a9e20ef..0000000 --- a/theme_anelusia/theme_anelusia/static/src/scss/options/layout/hamburger_variables.scss +++ /dev/null @@ -1 +0,0 @@ -$o-theme-hamburger-layout: true; diff --git a/theme_anelusia/theme_anelusia/static/src/scss/primary_variables.scss b/theme_anelusia/theme_anelusia/static/src/scss/primary_variables.scss deleted file mode 100644 index 968eb4d..0000000 --- a/theme_anelusia/theme_anelusia/static/src/scss/primary_variables.scss +++ /dev/null @@ -1,147 +0,0 @@ -@mixin o-bg-color-extension($color, $text-color, $with-muted) { - // FIXME "support" of link colors as before ? - // a:not(.btn) { - // color: $linkcolor; - // &:hover, &:focus { - // color: $hovercolor; - // } - // } -} - -$o-theme-navbar-height: 80px; -$o-theme-hamburger-layout: false; - -$o-theme-bg-img-01: url("/web/image/theme_common.image_content_11"); -$o-theme-bg-img-02: url("/web/image/theme_common.image_content_09"); -$o-theme-bg-img-03: url("/web/image/theme_common.image_content_10"); -$o-theme-bg-img-04: url("/web/image/theme_common.image_content_12"); -$o-theme-bg-img-05: url("/web/image/theme_common.image_content_02"); -$o-theme-bg-img-06: url("/web/image/theme_common.image_content_03"); -$o-theme-bg-img-07: url("/web/image/theme_common.image_content_07"); - -$font-size-base: 1rem; - -//------------------------------------------------------------------------------ -// Colors -//------------------------------------------------------------------------------ - -// Theme colors -$-palettes: ( - ( - 'alpha': #ffffff, - 'beta': #cdd0a2, - 'gamma': #b4bbb9, - 'delta': #242327, - 'epsilon': #957985, - ), - ( - 'alpha': #ffffff, - 'beta': #f4f1db, - 'gamma': #928371, - 'delta': #53453f, - 'epsilon': #c31737, - ), - ( - 'alpha': #ffffff, - 'beta': #d8eff1, - 'gamma': #0d75ac, - 'delta': #000f3d, - 'epsilon': #e07a6b, - ), - ( - 'alpha': #ffffff, - 'beta': #faf7e1, - 'gamma': #e3d6c6, - 'delta': #eed187, - 'epsilon': #dc733f, - ), - ( - 'alpha': #ffffff, - 'beta': #cfcfcf, - 'gamma': #2e2e2e, - 'delta': #000000, - 'epsilon': #32c0c9, - ), - ( - 'alpha': #ffffff, - 'beta': #aacfb0, - 'gamma': #4dac5e, - 'delta': #93ab12, - 'epsilon': #e62e3e, - ), -); -$o-theme-color-palettes: (); -@each $-palette in $-palettes { - $o-theme-color-palettes: append($o-theme-color-palettes, map-merge($-palette, ( - 'primary': map-get($-palette, 'beta'), - 'secondary': map-get($-palette, 'alpha'), - ))); -} - -// Grays -$-gray-700: lighten(#000, 33.5%); -$o-gray-color-palettes: (); -@each $-palette in $o-theme-color-palettes { - $o-gray-color-palettes: append($o-gray-color-palettes, ( - 'black': #000000, - '900': lighten(#000, 20%), - '700': $-gray-700, - '600': lighten(#000, 46.7%), - '200': lighten(#000, 85%), - 'white': #ffffff, - )); -} - -// Colors -$o-color-palettes: (); -@each $-palette in $o-theme-color-palettes { - $o-color-palettes: append($o-color-palettes, ( - 'body': desaturate(map-get($-palette, 'delta'), 100%), - 'menu': map-get($-palette, 'beta'), - 'footer': map-get($-palette, 'delta'), - 'text': $-gray-700, - )); -} - -//------------------------------------------------------------------------------ -// Fonts -//------------------------------------------------------------------------------ - -$o-theme-fonts: ( - ('Source Sans Pro', sans-serif), - ('Forum', cursive), - ('Helvetica','Arial', sans-serif), - ('Buda', cursive), - ('PT Serif', serif), - ('Rajdhani', sans-serif), -); -$o-theme-font-urls: ( - 'Source+Sans+Pro:400,400i,700,700i', - 'Forum', - null, - 'Buda:300', - 'PT+Serif:400,400i,700,700i', - 'Rajdhani:400,700', -); -$o-theme-font-names: ( - 'Source Sans Pro', - 'Forum', - 'Helvetica', - 'Buda', - 'PT Serif', - 'Rajdhani', -); - -//------------------------------------------------------------------------------ -// Website customizations -//------------------------------------------------------------------------------ - -$o-website-values-palettes: ( - ( - 'header-font-size': (50 / 16) * 1rem, - 'font-number': 1, - 'headings-font-number': 1, - 'navbar-font-number': 1, - 'buttons-font-number': 1, - ), -); diff --git a/theme_anelusia/theme_anelusia/static/src/scss/secondary_variables.scss b/theme_anelusia/theme_anelusia/static/src/scss/secondary_variables.scss deleted file mode 100644 index 16470e4..0000000 --- a/theme_anelusia/theme_anelusia/static/src/scss/secondary_variables.scss +++ /dev/null @@ -1,9 +0,0 @@ -$-palettes: $o-color-palettes; -$o-color-palettes: (); -$i: 1; -@each $-palette in $-palettes { - $-theme-palette: nth($o-theme-color-palettes, $i); - $o-color-palettes: append($o-color-palettes, o-theme-common-add-color-variations($-theme-palette, $-palette)); - $i: $i + 1; -} -$o-user-color-palette: o-theme-common-add-color-variations($o-user-theme-color-palette, $o-user-color-palette); diff --git a/theme_anelusia/theme_anelusia/static/src/scss/theme.scss b/theme_anelusia/theme_anelusia/static/src/scss/theme.scss deleted file mode 100644 index be4c986..0000000 --- a/theme_anelusia/theme_anelusia/static/src/scss/theme.scss +++ /dev/null @@ -1,310 +0,0 @@ -/* ====================== GENERAL =====================*/ - -@include o-theme-cfa-header-shadows(); - -#wrapwrap:not(.o_header_overlay) main { - >:first-child:not(#wrap):before { - content: ""; - display: block; - margin-top: $o-theme-navbar-height; - } - - #wrap { - background-color: $white; - - >:first-child { - &:before { - content: ""; - display: block; - margin-top: $o-theme-navbar-height; - } - &.s_products_carousel:before, &.s_banner_parallax:before { - content: none; - } - } - } -} -header { - position: relative; -} -#wrap { - @include media-breakpoint-down(sm) { - margin-top: 0px !important; - } - margin-bottom: 0px; - .text-muted{ - &:after { - color: rgba(0, 0, 0, 0); - } - } -} - -/* ========== Navigation =========== */ - -.no-scroll { - overflow: hidden; -} - -/* ====================== Footer ======================== */ -#wrapwrap > footer { - background-color: o-theme-color('delta'); - hr { - opacity: 0.7; - } - .container { - h4 { - border-left: 15px solid o-theme-color('gamma-dark'); - } - a:hover { - color: color-beta; - } - } - @include o-theme-cfa-footer-style($container-padding: 10px 65px, $padding: 8px); - > .container:last-child { - color: gray('600'); - a:not(.js_change_lang) { - color: o-theme-color('alpha'); - } - } - #footer { - .col-lg-3, .col-lg-5 { - padding: 20px 0px; - h2 { // social icons in footer - text-transform: uppercase; - font-size: 25px; - color: o-theme-color('beta'); - a { - display: inline; - } - } - } - } -} -footer > :not(#footer):last-child { - background-color: o-theme-color('delta'); - color: white; -} - -@include o-theme-cfa-btn-style(); - -/* ====================== form style ======================== */ - -.form-control:not(.quantity):not(.modal):not(.oe_search_box) { - @include o-theme-cfa-custom-form-control(); - border-bottom: 1px solid gray('200'); - background-color: rgba(0, 0, 0, 0); -} - -/* ===================== BLOG ===================== */ - -@include o-theme-cfa-website-blog-styles(); - -/* ===================== FORUM ===================== */ -@include o-theme-cfa-forum-style($nav-link-color: o-theme-color('delta')); - -/* ============== Breadcrumb in events, job etc ============== */ - -.breadcrumb { - background: rgba(0, 0, 0, 0); - border-radius: 0px; -} -/* ============== Nav-pills in events, job etc ============== */ -@include o-theme-cfa-nav-pills-styles(); - -/* ============== Panel styles ============== */ - -@include o-theme-cfa-card-classes(); - -@include o-theme-cfa-header-responsive-sizes(); - -@include o-theme-cfa-bg-img-classes(); - -@include o-theme-cfa-px-classes(); - -#wrapwrap { - .search { - background-color: o-theme-color('delta'); - } -} - -@if $o-theme-layout == 'boxed' { - #wrapwrap { - padding: 0 !important; - - #wrap { - max-width: 992px; - margin: 0 auto; - @include media-breakpoint-down(sm) { - width: 100%; - } - } - .container { - max-width: 100%; - } - } - .navbar { - width: 100%; - margin: 0 auto; - } - footer:not(.modal-footer) > :not(#footer):last-child { - margin-bottom: 80px; - } -} @else { - @include o-theme-cfa-full-width-styles(); -} - -@if $o-theme-hamburger-layout { - @include media-breakpoint-up(md) { - #wrapwrap { - header { - .navbar-toggler { - display: block; - - &:focus, &:active, &:focus:active { - outline: none; - } - } - .navbar-collapse { - border-top: 1px solid rgba(0, 0, 0, 0); - box-shadow: inset 0 1px 0 rgba(255,255,255,0.1); - - &.collapse { - height: 0 !important; - - &.show { - height: 100vh !important; - transition: height 0.4s; - } - } - } - .navbar-fixed-top { - top: 0; - border-width: 0 0 1px; - } - .navbar-nav { - float: none!important; - >li { - float: none; - } - } - } - } - } - - #wrapwrap > header .navbar { - position: absolute; - width: 100%; - border: none; - background: rgba(0, 0, 0, 0) !important; - - .container { - padding: 0px; - height: $o-theme-navbar-height; - top: -100px; - li > .dropdown-menu { - margin-top: 9px; - border: none; - } - .navbar-toggler { - border-color: gray('700'); - border-radius: 30px; - background-color: rgba(0, 0, 0, 0.7); - z-index: 2; - padding: 7px 15px; - transition: background-color 0.2s ease-out; - - &:hover, &:focus { - background-color: rgba(0, 0, 0, 0); - background-color: rgba(0, 0, 0, 0.5); - } - } - .new-toggle { - display: inline-block; - position: relative; - top: 2px; - left: 6px; - transition: all 0.2s ease-out; - &:hover { - -ms-transform: rotate(180deg); - -webkit-transform: rotate(180deg); - transform: rotate(180deg); - } - } - .new-toggle-text { - display: inline-block; - position: relative; - left: 9px; - top: 0px; - z-index: 2; - padding-right: 15px; - color: $white; - } - .navbar-brand { - color: o-theme-color('alpha'); - z-index: 2; - } - .navbar-collapse { - @include o-position-absolute(0, 0, 0, 0); - position: fixed; - z-index: 1; - background-color: color('menu'); - - .collapse_icon { - height: 100px; - border-top: 1px solid o-theme-color('beta'); - margin: 60px 200px 0; - @include media-breakpoint-down(sm) { - margin: 0; - } - a { - margin-right: 35px; - } - } - } - } - } - #oe_main_menu_navbar ~ #wrapwrap > header .navbar .container .navbar-collapse { - top: $o-navbar-height; - } - #wrapwrap > header .container .navbar-collapse { - text-align: center; - @include media-breakpoint-down(sm) { - margin: 0; - } - } - #top_menu { - @include o-theme-cfa-top-menu-style((1rem + max(if(o-website-value('logo-height'), o-website-value('logo-height'), 0), 5rem)) 0 0 0, inline-block, 0, 120px 0 0 0, rgba(0, 0, 0, 0), $font-size: 50px, $dropdown-item-color: #333333, - $font-weight: 800, $transition: color 0.2s ease-out); - - .nav-item { - display: inline-block; - &:hover { - @include media-breakpoint-down(sm) { - border: none; - } - } - .nav-link { - padding-left: 15px; - padding-right: 15px; - line-height: 2.2; - @include media-breakpoint-down(sm) { - font-size: 0.7em; - line-height: 1; - } - } - } - .dropdown-menu, .navbar-collapse { - .dropdown-item, .nav-link { - display: inline-block; - } - } - .dropdown-menu { - position: relative; - .dropdown-item { - @include media-breakpoint-down(sm) { - font-size: 30px; - } - } - } - } -} diff --git a/theme_anelusia/theme_anelusia/views/assets.xml b/theme_anelusia/theme_anelusia/views/assets.xml deleted file mode 100644 index a9f1160..0000000 --- a/theme_anelusia/theme_anelusia/views/assets.xml +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - diff --git a/theme_anelusia/theme_anelusia/views/customize_modal.xml b/theme_anelusia/theme_anelusia/views/customize_modal.xml deleted file mode 100644 index f7899bf..0000000 --- a/theme_anelusia/theme_anelusia/views/customize_modal.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - diff --git a/theme_anelusia/theme_anelusia/views/images_content.xml b/theme_anelusia/theme_anelusia/views/images_content.xml deleted file mode 100644 index b814163..0000000 --- a/theme_anelusia/theme_anelusia/views/images_content.xml +++ /dev/null @@ -1,132 +0,0 @@ - - - - - theme_common.image_content_01 - theme_common.image_content_01 - /theme_anelusia/static/src/img/content/content_img_01.png - - - theme_common.image_content_02 - theme_common.image_content_02 - /theme_anelusia/static/src/img/content/content_img_02.jpg - - - theme_common.image_content_03 - theme_common.image_content_03 - /theme_anelusia/static/src/img/content/content_img_03.jpg - - - theme_common.image_content_04 - theme_common.image_content_04 - /theme_anelusia/static/src/img/content/content_img_04.jpg - - - theme_common.image_content_05 - theme_common.image_content_05 - /theme_anelusia/static/src/img/content/content_img_05.jpg - - - theme_common.image_content_06 - theme_common.image_content_06 - /theme_anelusia/static/src/img/content/content_img_06.jpg - - - theme_common.image_content_07 - theme_common.image_content_07 - /theme_anelusia/static/src/img/content/content_img_07.jpg - - - theme_common.image_content_08 - theme_common.image_content_08 - /theme_anelusia/static/src/img/content/content_img_08.png - - - theme_common.image_content_09 - theme_common.image_content_09 - /theme_anelusia/static/src/img/content/content_img_09.jpg - - - theme_common.image_content_10 - theme_common.image_content_10 - /theme_anelusia/static/src/img/content/content_img_10.jpg - - - theme_common.image_content_11 - theme_common.image_content_11 - /theme_anelusia/static/src/img/content/content_img_11.jpg - - - theme_common.image_content_12 - theme_common.image_content_12 - /theme_anelusia/static/src/img/content/content_img_12.jpg - - - - - theme_common.image_product_01 - theme_common.image_product_01 - /theme_anelusia/static/src/img/content/product_img_01.jpg - - - theme_common.image_product_02 - theme_common.image_product_02 - /theme_anelusia/static/src/img/content/product_img_02.jpg - - - theme_common.image_product_03 - theme_common.image_product_03 - /theme_anelusia/static/src/img/content/product_img_03.jpg - - - theme_common.image_product_04 - theme_common.image_product_04 - /theme_anelusia/static/src/img/content/product_img_04.jpg - - - theme_common.image_product_05 - theme_common.image_product_05 - /theme_anelusia/static/src/img/content/product_img_05.jpg - - - theme_common.image_product_06 - theme_common.image_product_06 - /theme_anelusia/static/src/img/content/product_img_06.jpg - - - theme_common.image_product_07 - theme_common.image_product_07 - /theme_anelusia/static/src/img/content/product_img_07.jpg - - - theme_common.image_product_08 - theme_common.image_product_08 - /theme_anelusia/static/src/img/content/product_img_08.jpg - - - theme_common.image_product_09 - theme_common.image_product_09 - /theme_anelusia/static/src/img/content/product_img_09.jpg - - - theme_common.image_product_10 - theme_common.image_product_10 - /theme_anelusia/static/src/img/content/product_img_10.jpg - - - theme_common.image_product_11 - theme_common.image_product_11 - /theme_anelusia/static/src/img/content/product_img_11.jpg - - - - - website.s_cover_default_image - website.s_cover_default_image - /theme_anelusia/static/src/img/library/bg6.jpg - - diff --git a/theme_anelusia/theme_anelusia/views/images_library.xml b/theme_anelusia/theme_anelusia/views/images_library.xml deleted file mode 100644 index 036c677..0000000 --- a/theme_anelusia/theme_anelusia/views/images_library.xml +++ /dev/null @@ -1,53 +0,0 @@ - - - - theme_anelusia.bg_img_01 - theme_anelusia.background_img_01 - /theme_anelusia/static/src/img/library/bg1.jpg - - - theme_anelusia.bg_img_02 - theme_anelusia.background_img_02 - /theme_anelusia/static/src/img/library/bg2.jpg - - - theme_anelusia.bg_img_03 - theme_anelusia.background_img_03 - /theme_anelusia/static/src/img/library/bg3.jpg - - - theme_anelusia.bg_img_04 - theme_anelusia.background_img_04 - /theme_anelusia/static/src/img/library/bg4.jpg - - - theme_anelusia.bg_img_05 - theme_anelusia.background_img_05 - /theme_anelusia/static/src/img/library/bg5.jpg - - - theme_anelusia.bg_img_06 - theme_anelusia.background_img_06 - /theme_anelusia/static/src/img/library/bg6.jpg - - - theme_anelusia.bg_img_07 - theme_anelusia.background_img_07 - /theme_anelusia/static/src/img/library/bg7.jpg - - - theme_anelusia.bg_img_08 - theme_anelusia.background_img_08 - /theme_anelusia/static/src/img/library/bg8.jpg - - - theme_anelusia.bg_img_09 - theme_anelusia.background_img_09 - /theme_anelusia/static/src/img/library/bg9.jpg - - - theme_anelusia.bg_img_10 - theme_anelusia.background_img_10 - /theme_anelusia/static/src/img/library/bg10.jpg - - diff --git a/theme_anelusia/theme_anelusia/views/snippet_options.xml b/theme_anelusia/theme_anelusia/views/snippet_options.xml deleted file mode 100644 index 9bb02e6..0000000 --- a/theme_anelusia/theme_anelusia/views/snippet_options.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/theme_anelusia/theme_anelusia/views/snippets.xml b/theme_anelusia/theme_anelusia/views/snippets.xml deleted file mode 100644 index b66f9a8..0000000 --- a/theme_anelusia/theme_anelusia/views/snippets.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - diff --git a/theme_anelusia/theme_common/__init__.py b/theme_anelusia/theme_common/__init__.py deleted file mode 100644 index bb0aae7..0000000 --- a/theme_anelusia/theme_common/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -# -*- coding: utf-8 -*- -# Part of Odoo. See LICENSE file for full copyright and licensing details. -from . import controllers -from . import models diff --git a/theme_anelusia/theme_common/__manifest__.py b/theme_anelusia/theme_common/__manifest__.py deleted file mode 100644 index 650196d..0000000 --- a/theme_anelusia/theme_common/__manifest__.py +++ /dev/null @@ -1,72 +0,0 @@ -{ - 'name': 'Theme Common', - 'summary': 'Snippets Library', - 'description': 'Snippets library containing snippets to be styled in themes.', - 'category': 'Hidden', - 'version': '1.1', - 'depends': ['website', 'website_theme_install'], - 'data': [ - 'data/data.xml', - 'data/image_content.xml', - 'views/assets.xml', - 'views/theme_common_templates.xml', - 'views/s_google_map.xml', - # CLEAN - 'views/s_big_image.xml', - 'views/s_big_image_parallax.xml', - 'views/s_color_blocks_2.xml', - 'views/s_color_blocks_4.xml', - 'views/s_column.xml', - 'views/s_discount.xml', - 'views/s_event_list.xml', - 'views/s_icon_box.xml', - 'views/s_pricing.xml', - 'views/s_progress_bar.xml', - 'views/s_profile.xml', - 'views/s_text_highlight.xml', - 'views/s_three_columns_circle.xml', - 'views/s_two_columns.xml', - # ENARK - 'views/s_big_icons.xml', - # BEWISE - 'views/s_mini_nav_bar.xml', - 'views/s_separator_nav.xml', - 'views/s_color_blocks_img.xml', - # ZAP - 'views/s_badge.xml', - 'views/s_images_carousel.xml', - 'views/s_images_row.xml', - 'views/s_media_list.xml', - 'views/s_news_carousel.xml', - 'views/s_numbers.xml', - 'views/s_page_header.xml', - 'views/s_process_steps.xml', - 'views/s_team_profiles.xml', - 'views/s_blockquote.xml', - 'views/s_timeline.xml', - # KIDDO - 'views/s_banner_parallax.xml', - 'views/s_features_carousel.xml', - 'views/s_header_text_big_picture.xml', - 'views/s_product_list.xml', - 'views/s_text_picture_text.xml', - 'views/s_products_carousel.xml', - # ANELUSIA - 'views/s_progress.xml', - 'views/s_menu_three_columns.xml', - # GRAPHENE - 'views/s_animated_boxes.xml', - 'views/s_showcase.xml', - 'views/s_showcase_slider.xml', - 'views/s_masonry_block.xml', - # AVANTGARDE - 'views/s_css_slider.xml', - 'views/s_showcase_image.xml', - 'views/s_clonable_boxes.xml', - # MONGLIA - 'views/s_full_menu.xml', - 'views/s_compact_menu.xml', - 'views/s_event_slide.xml', - ], - 'application': False, -} diff --git a/theme_anelusia/theme_common/controllers/__init__.py b/theme_anelusia/theme_common/controllers/__init__.py deleted file mode 100644 index 12a7e52..0000000 --- a/theme_anelusia/theme_common/controllers/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from . import main diff --git a/theme_anelusia/theme_common/controllers/main.py b/theme_anelusia/theme_common/controllers/main.py deleted file mode 100644 index 2f16356..0000000 --- a/theme_anelusia/theme_common/controllers/main.py +++ /dev/null @@ -1,15 +0,0 @@ -# -*- coding: utf-8 -*- -# Part of Odoo. See LICENSE file for full copyright and licensing details. - -import json - -from odoo import http -from odoo.http import request - -class ThemeCommon(http.Controller): - - @http.route('/theme_common/google_maps_api_key', type='json', auth='public', website=True) - def google_maps_api_key(self): - return json.dumps({ - 'google_maps_api_key': request.website.google_maps_api_key or '' - }) diff --git a/theme_anelusia/theme_common/data/image_content.xml b/theme_anelusia/theme_common/data/image_content.xml deleted file mode 100644 index 4f17464..0000000 --- a/theme_anelusia/theme_common/data/image_content.xml +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - theme_common.image_content_logo_small - theme_common.image_content_logo_small - - - - - theme_common.image_content_01 - theme_common.image_content_01 - - - theme_common.image_content_02 - theme_common.image_content_02 - - - theme_common.image_content_03 - theme_common.image_content_03 - - - theme_common.image_content_04 - theme_common.image_content_04 - - - theme_common.image_content_05 - theme_common.image_content_05 - - - theme_common.image_content_06 - theme_common.image_content_06 - - - theme_common.image_content_07 - theme_common.image_content_07 - - - theme_common.image_content_08 - theme_common.image_content_08 - - - theme_common.image_content_09 - theme_common.image_content_09 - - - theme_common.image_content_10 - theme_common.image_content_10 - - - theme_common.image_content_11 - theme_common.image_content_11 - - - theme_common.image_content_12 - theme_common.image_content_12 - - - theme_common.image_content_13 - theme_common.image_content_13 - - - theme_common.image_content_14 - theme_common.image_content_14 - - - theme_common.image_content_15 - theme_common.image_content_15 - - - theme_common.image_content_16 - theme_common.image_content_16 - - - theme_common.image_content_17 - theme_common.image_content_17 - - - theme_common.image_content_18 - theme_common.image_content_18 - - - theme_common.image_content_19 - theme_common.image_content_19 - - - theme_common.image_content_20 - theme_common.image_content_20 - - - theme_common.image_content_21 - theme_common.image_content_21 - - - theme_common.image_content_22 - theme_common.image_content_22 - - - theme_common.image_content_23 - theme_common.image_content_23 - - - theme_common.image_content_24 - theme_common.image_content_24 - - - theme_common.image_content_25 - theme_common.image_content_25 - - - theme_common.image_content_26 - theme_common.image_content_26 - - - theme_common.image_content_27 - theme_common.image_content_27 - - - theme_common.image_content_28 - theme_common.image_content_28 - - - theme_common.image_content_29 - theme_common.image_content_29 - - - theme_common.image_content_30 - theme_common.image_content_30 - - - - - theme_common.image_product_01 - theme_common.image_product_01 - - - theme_common.image_product_02 - theme_common.image_product_02 - - - theme_common.image_product_03 - theme_common.image_product_03 - - - theme_common.image_product_04 - theme_common.image_product_04 - - - theme_common.image_product_05 - theme_common.image_product_05 - - - theme_common.image_product_06 - theme_common.image_product_06 - - - theme_common.image_product_07 - theme_common.image_product_07 - - - theme_common.image_product_08 - theme_common.image_product_08 - - - theme_common.image_product_09 - theme_common.image_product_09 - - - theme_common.image_product_10 - theme_common.image_product_10 - - - theme_common.image_product_11 - theme_common.image_product_11 - - diff --git a/theme_anelusia/theme_common/models/theme_common.py b/theme_anelusia/theme_common/models/theme_common.py deleted file mode 100644 index 6720d3a..0000000 --- a/theme_anelusia/theme_common/models/theme_common.py +++ /dev/null @@ -1,16 +0,0 @@ -from odoo import models - - -class ThemeCommon(models.AbstractModel): - _inherit = 'theme.utils' - - def _theme_common_post_copy(self, mod): - self.disable_view('website_theme_install.customize_modal') - - # Reset all default color when switching themes - for nb in range(2, 9): - self.disable_view('theme_common.option_colors_%02d_variables' % nb) - - # For compatibility - # self.enable_view('theme_common.compatibility-saas-11-4-variables') - # self.enable_view('theme_common.compatibility-saas-11-4') diff --git a/theme_anelusia/theme_common/static/src/img/snippets/bg-img-placeholder.jpg b/theme_anelusia/theme_common/static/src/img/snippets/bg-img-placeholder.jpg deleted file mode 100644 index bc79e5b..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/bg-img-placeholder.jpg and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/bg-img-placeholder.png b/theme_anelusia/theme_common/static/src/img/snippets/bg-img-placeholder.png deleted file mode 100644 index 59a7f13..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/bg-img-placeholder.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_1_column_text.png b/theme_anelusia/theme_common/static/src/img/snippets/s_1_column_text.png deleted file mode 100644 index 38cf33d..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_1_column_text.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_2_column_text.png b/theme_anelusia/theme_common/static/src/img/snippets/s_2_column_text.png deleted file mode 100644 index 4a3dd66..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_2_column_text.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_3_column_text.png b/theme_anelusia/theme_common/static/src/img/snippets/s_3_column_text.png deleted file mode 100644 index ad7fe51..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_3_column_text.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_3column_menu.png b/theme_anelusia/theme_common/static/src/img/snippets/s_3column_menu.png deleted file mode 100644 index 5c05882..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_3column_menu.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_4_column_text.png b/theme_anelusia/theme_common/static/src/img/snippets/s_4_column_text.png deleted file mode 100644 index d858911..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_4_column_text.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_badge.png b/theme_anelusia/theme_common/static/src/img/snippets/s_badge.png deleted file mode 100644 index bf8c87b..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_badge.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_big_image.png b/theme_anelusia/theme_common/static/src/img/snippets/s_big_image.png deleted file mode 100644 index 3aa5721..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_big_image.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_big_picture_text.png b/theme_anelusia/theme_common/static/src/img/snippets/s_big_picture_text.png deleted file mode 100644 index cb4c5d4..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_big_picture_text.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_blockquote.png b/theme_anelusia/theme_common/static/src/img/snippets/s_blockquote.png deleted file mode 100644 index a0dc97e..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_blockquote.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_button_text.png b/theme_anelusia/theme_common/static/src/img/snippets/s_button_text.png deleted file mode 100755 index af2c2f7..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_button_text.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_color_block.png b/theme_anelusia/theme_common/static/src/img/snippets/s_color_block.png deleted file mode 100644 index 9894311..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_color_block.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_column.png b/theme_anelusia/theme_common/static/src/img/snippets/s_column.png deleted file mode 100644 index 919704c..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_column.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_compact_menu.png b/theme_anelusia/theme_common/static/src/img/snippets/s_compact_menu.png deleted file mode 100644 index 64a0a79..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_compact_menu.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_comparison.png b/theme_anelusia/theme_common/static/src/img/snippets/s_comparison.png deleted file mode 100644 index dba553f..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_comparison.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_cubes.png b/theme_anelusia/theme_common/static/src/img/snippets/s_cubes.png deleted file mode 100644 index 0bd05fb..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_cubes.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_cubes_reversed.png b/theme_anelusia/theme_common/static/src/img/snippets/s_cubes_reversed.png deleted file mode 100644 index 9452161..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_cubes_reversed.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_event_list.png b/theme_anelusia/theme_common/static/src/img/snippets/s_event_list.png deleted file mode 100644 index bf02397..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_event_list.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_event_slide.png b/theme_anelusia/theme_common/static/src/img/snippets/s_event_slide.png deleted file mode 100644 index 89fa6e2..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_event_slide.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_features.png b/theme_anelusia/theme_common/static/src/img/snippets/s_features.png deleted file mode 100755 index f668665..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_features.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_full_height_banner.png b/theme_anelusia/theme_common/static/src/img/snippets/s_full_height_banner.png deleted file mode 100644 index 2e43164..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_full_height_banner.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_full_menu.png b/theme_anelusia/theme_common/static/src/img/snippets/s_full_menu.png deleted file mode 100644 index 58c1d9b..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_full_menu.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_google_map.png b/theme_anelusia/theme_common/static/src/img/snippets/s_google_map.png deleted file mode 100644 index 5137e9f..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_google_map.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_google_map_marker.png b/theme_anelusia/theme_common/static/src/img/snippets/s_google_map_marker.png deleted file mode 100644 index cbfec35..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_google_map_marker.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_header_text_bigpicture.png b/theme_anelusia/theme_common/static/src/img/snippets/s_header_text_bigpicture.png deleted file mode 100644 index 36e2949..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_header_text_bigpicture.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_icon_box.png b/theme_anelusia/theme_common/static/src/img/snippets/s_icon_box.png deleted file mode 100644 index fc72ee5..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_icon_box.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_icon_box_circle.png b/theme_anelusia/theme_common/static/src/img/snippets/s_icon_box_circle.png deleted file mode 100644 index 05e0f4c..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_icon_box_circle.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_icon_box_square.png b/theme_anelusia/theme_common/static/src/img/snippets/s_icon_box_square.png deleted file mode 100644 index 35d9979..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_icon_box_square.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_image_text_2.png b/theme_anelusia/theme_common/static/src/img/snippets/s_image_text_2.png deleted file mode 100644 index 50dcb2e..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_image_text_2.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_images_carousel.png b/theme_anelusia/theme_common/static/src/img/snippets/s_images_carousel.png deleted file mode 100644 index ce39244..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_images_carousel.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_images_row.png b/theme_anelusia/theme_common/static/src/img/snippets/s_images_row.png deleted file mode 100644 index e08ad57..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_images_row.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_lead_bar.png b/theme_anelusia/theme_common/static/src/img/snippets/s_lead_bar.png deleted file mode 100644 index b45554c..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_lead_bar.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_logo_bar.png b/theme_anelusia/theme_common/static/src/img/snippets/s_logo_bar.png deleted file mode 100644 index b4495c3..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_logo_bar.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_masonry_block.png b/theme_anelusia/theme_common/static/src/img/snippets/s_masonry_block.png deleted file mode 100644 index 25bc2ec..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_masonry_block.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_media_list.png b/theme_anelusia/theme_common/static/src/img/snippets/s_media_list.png deleted file mode 100644 index 8dd856e..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_media_list.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_news_carousel.png b/theme_anelusia/theme_common/static/src/img/snippets/s_news_carousel.png deleted file mode 100644 index 0fd3b97..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_news_carousel.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_numbers.png b/theme_anelusia/theme_common/static/src/img/snippets/s_numbers.png deleted file mode 100644 index ce3c597..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_numbers.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_page_header.png b/theme_anelusia/theme_common/static/src/img/snippets/s_page_header.png deleted file mode 100644 index 4f86157..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_page_header.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_popup.png b/theme_anelusia/theme_common/static/src/img/snippets/s_popup.png deleted file mode 100644 index 0a48261..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_popup.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_process_step.png b/theme_anelusia/theme_common/static/src/img/snippets/s_process_step.png deleted file mode 100644 index d1b68f9..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_process_step.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_process_steps.png b/theme_anelusia/theme_common/static/src/img/snippets/s_process_steps.png deleted file mode 100644 index 4b1c694..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_process_steps.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_product_list.png b/theme_anelusia/theme_common/static/src/img/snippets/s_product_list.png deleted file mode 100644 index 0d59406..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_product_list.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_products_carousel.png b/theme_anelusia/theme_common/static/src/img/snippets/s_products_carousel.png deleted file mode 100644 index 6f75249..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_products_carousel.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_profile.png b/theme_anelusia/theme_common/static/src/img/snippets/s_profile.png deleted file mode 100644 index ea340bf..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_profile.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_progress_bar.png b/theme_anelusia/theme_common/static/src/img/snippets/s_progress_bar.png deleted file mode 100644 index 21a9a94..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_progress_bar.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_references_images.png b/theme_anelusia/theme_common/static/src/img/snippets/s_references_images.png deleted file mode 100644 index 1e5aa76..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_references_images.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_separator.png b/theme_anelusia/theme_common/static/src/img/snippets/s_separator.png deleted file mode 100644 index 0fe2396..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_separator.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_separator_block.png b/theme_anelusia/theme_common/static/src/img/snippets/s_separator_block.png deleted file mode 100755 index 53eacba..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_separator_block.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_showcase.jpg b/theme_anelusia/theme_common/static/src/img/snippets/s_showcase.jpg deleted file mode 100644 index da8ea09..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_showcase.jpg and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_showcase_slider.jpg b/theme_anelusia/theme_common/static/src/img/snippets/s_showcase_slider.jpg deleted file mode 100644 index 4b3dab4..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_showcase_slider.jpg and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_slideshow.png b/theme_anelusia/theme_common/static/src/img/snippets/s_slideshow.png deleted file mode 100644 index b8fd71b..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_slideshow.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_team_profiles.png b/theme_anelusia/theme_common/static/src/img/snippets/s_team_profiles.png deleted file mode 100644 index e386bcb..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_team_profiles.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_testimonial_slider.png b/theme_anelusia/theme_common/static/src/img/snippets/s_testimonial_slider.png deleted file mode 100644 index 7723a25..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_testimonial_slider.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_text_big_picture.png b/theme_anelusia/theme_common/static/src/img/snippets/s_text_big_picture.png deleted file mode 100644 index 1158af9..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_text_big_picture.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_text_block.png b/theme_anelusia/theme_common/static/src/img/snippets/s_text_block.png deleted file mode 100644 index 0ce74ed..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_text_block.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_text_image_2.png b/theme_anelusia/theme_common/static/src/img/snippets/s_text_image_2.png deleted file mode 100644 index 3f62301..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_text_image_2.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_text_picture_text.png b/theme_anelusia/theme_common/static/src/img/snippets/s_text_picture_text.png deleted file mode 100644 index 007eac2..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_text_picture_text.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_three_columns_circle.png b/theme_anelusia/theme_common/static/src/img/snippets/s_three_columns_circle.png deleted file mode 100644 index a7f4c53..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_three_columns_circle.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_timeline.png b/theme_anelusia/theme_common/static/src/img/snippets/s_timeline.png deleted file mode 100644 index be5ae96..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_timeline.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_title.png b/theme_anelusia/theme_common/static/src/img/snippets/s_title.png deleted file mode 100755 index 08fcef4..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_title.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_title_small.png b/theme_anelusia/theme_common/static/src/img/snippets/s_title_small.png deleted file mode 100644 index 18cacae..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_title_small.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/s_two_columns.png b/theme_anelusia/theme_common/static/src/img/snippets/s_two_columns.png deleted file mode 100644 index a00e8bc..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/s_two_columns.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/snippets/small_separator.gif b/theme_anelusia/theme_common/static/src/img/snippets/small_separator.gif deleted file mode 100644 index 9737c81..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/snippets/small_separator.gif and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/ui/s_media_block/iframe.png b/theme_anelusia/theme_common/static/src/img/ui/s_media_block/iframe.png deleted file mode 100644 index cdd6c18..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/ui/s_media_block/iframe.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/img/ui/s_media_block/share.png b/theme_anelusia/theme_common/static/src/img/ui/s_media_block/share.png deleted file mode 100644 index 04ba3eb..0000000 Binary files a/theme_anelusia/theme_common/static/src/img/ui/s_media_block/share.png and /dev/null differ diff --git a/theme_anelusia/theme_common/static/src/js/compatibility_editor.js b/theme_anelusia/theme_common/static/src/js/compatibility_editor.js deleted file mode 100644 index 9043f03..0000000 --- a/theme_anelusia/theme_common/static/src/js/compatibility_editor.js +++ /dev/null @@ -1,19 +0,0 @@ -odoo.define('theme_common.compatibility_editor', function (require) { -'use strict'; - -var sOptions = require('web_editor.snippets.options'); - -sOptions.registry.background.include({ - /** - * @override - */ - background: function (previewMode, value, $opt) { - this._super.apply(this, arguments); - - var customClass = this.$target.attr('class').match(/\b(bg-img-\d+)\b/); - if (customClass) { - this.$target.removeClass(customClass[1]); - } - }, -}); -}); diff --git a/theme_anelusia/theme_common/static/src/js/s_animated_boxes_editor.js b/theme_anelusia/theme_common/static/src/js/s_animated_boxes_editor.js deleted file mode 100644 index 5ca3230..0000000 --- a/theme_anelusia/theme_common/static/src/js/s_animated_boxes_editor.js +++ /dev/null @@ -1,79 +0,0 @@ -odoo.define('theme_common.s_animated_boxes_editor', function (require) { - 'use strict'; - - var s_options = require('web_editor.snippets.options'); - - s_options.registry.s_animated_boxes = s_options.Class.extend({ - start: function () { - var self = this; - self.add_btn_edit_slide(); - setTimeout(function () { - if (self.$target.find(".slide").length > 0) { - self.$overlay.data('$optionsSection').find(".createSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".btn-showSlide").removeClass("hide"); - } else { - self.$overlay.data('$optionsSection').find(".createSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".btn-showSlide").addClass("hide"); - } - }, 100); - }, - - add_btn_edit_slide: function () { - var self = this; - self.$overlay.data('$optionsSection').append(' Edit Slide '); - self.$overlay.data('$optionsSection').on('click', '.btn-showSlide', _.bind(this.toggle_slide, this)); - }, - - create_slide: function (previewMode, value, $li) { - var self = this, - slide = '

Your new slide

'; - self.$target.append(slide); - self.$overlay.data('$optionsSection').find(".btn-showSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".createSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").removeClass("hide"); - }, - - delete_slide: function (previewMode, value, $li) { - var self = this; - self.$target.find(".slide").remove(); - self.$overlay.data('$optionsSection').find(".btn-showSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".createSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").addClass("hide"); - }, - - toggle_slide: function () { - var a = this.$overlay.data('$optionsSection').find(".btn-showSlide"), - i = a.find("i"), - t = this.$target, - s = t.find(".slide"); - if (!t.hasClass("showSlide")) { - t.addClass("showSlide"); i.addClass("fa-toggle-on").removeClass("fa-toggle-off"); i.css("color", "#FFF"); - s.addClass("visible"); - } else { - t.removeClass("showSlide"); i.removeClass("fa-toggle-on").addClass("fa-toggle-off"); i.css("color", ""); - s.removeClass("visible"); - } - }, - onFocus: function () { - this._adapt_items_height(); - }, - onBlur: function () { - this._adapt_items_height(); - }, - cleanForSave: function() { - this.$target.removeClass("showSlide") - .find(".slide").removeClass("visible"); - - this._adapt_items_height(); - }, - _adapt_items_height: function () { - var $items = this.$target.closest(".s_animated_boxes").find(".item"); - var min_height = _.reduce($items.find(".v-align"), function (memo, item) { - return Math.max(memo, $(item).outerHeight(true) + 40); - }, 200); - $items.css("height", min_height); - }, - }); -}); diff --git a/theme_anelusia/theme_common/static/src/js/s_css_slider_editor.js b/theme_anelusia/theme_common/static/src/js/s_css_slider_editor.js deleted file mode 100644 index 78d7861..0000000 --- a/theme_anelusia/theme_common/static/src/js/s_css_slider_editor.js +++ /dev/null @@ -1,82 +0,0 @@ -odoo.define('theme_common.s_css_slider_editor', function (require) { - 'use strict'; - - var s_options = require('web_editor.snippets.options'); - - s_options.registry.s_css_slider_slide = s_options.Class.extend({ - newSlideUrl: "/web/image/theme_common.image_content_23", - - start: function () { - var self = this; - - self.reset(); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - - setTimeout(function () { - self.$overlay.data('$optionsSection').find(".js_s_css_slider_addSlide").on('click', function () { self.addSlide(); }); - self.$overlay.data('$optionsSection').find(".js_s_css_slider_removeSlide").on('click', function () { self.removeSlide(); }); - }, 100); - - $(document.body).on("media-saved", function () { - self.resizeImgsEditor(); - }); - }, - - resizeImgsEditor: function () { - var self = this; - setTimeout(function () { - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }); - }, - - reset: function () { - var self= this; - self.$target.find(".s_css_slider_pagination").remove().end() - .find("span").unbind("click.s_css"); - }, - - addSlide: function () { - var self = this; - var $currentSlide = self.$target.find(".slider .slide.selected"); - $currentSlide.clone().insertAfter($currentSlide).removeClass("selected"); - - _.defer(function () { - self.reset(); - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }); - }, - - removeSlide: function () { - var self = this; - var $currentSlide = self.$target.find(".slider .slide.selected"); - - $currentSlide.remove(); - _.defer(function () { - self.reset(); - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }); - }, - - cleanForSave: function () { - var self = this; - self.$target - .find(".s_css_slider_pagination").remove().end() - .find(".navigation .prev").addClass("inactive").end() - .find(".navigation .next").removeClass("inactive").end() - .find(".slider .slide").removeClass("selected move-left").end() - .find(".slider .slide").first().addClass("selected"); - }, - }); -}); diff --git a/theme_anelusia/theme_common/static/src/js/s_google_map_editor.js b/theme_anelusia/theme_common/static/src/js/s_google_map_editor.js deleted file mode 100644 index 9a5b4d7..0000000 --- a/theme_anelusia/theme_common/static/src/js/s_google_map_editor.js +++ /dev/null @@ -1,149 +0,0 @@ -odoo.define('theme_common.s_google_map_editor', function (require) { -'use strict'; - -var Dialog = require('web_editor.widget').Dialog; -var core = require('web.core'); -var sOptions = require('web_editor.snippets.options'); -var googleScriptLoaded = require('theme_common.s_google_map_frontend').googleScriptLoaded; - -var _t = core._t; - -sOptions.registry.map = sOptions.Class.extend({ - xmlDependencies: ['/theme_common/static/src/xml/s_google_map_modal.xml'], - defaultLocation: '(50.854975,4.3753899)', - - /** - * @override - */ - onBuilt: function () { - this._super.apply(this, arguments); - this.map('click', null, null); - }, - - //-------------------------------------------------------------------------- - // Options - //-------------------------------------------------------------------------- - - /** - * Opens the customization dialog. - * - * @see this.selectClass for parameters - */ - map: function (previewMode, value, $opt) { - var self = this; - - this.dialog = new Dialog(this, { - size: 'medium', - title: _t("Customize your map"), - buttons: [ - {text: _t("Save"), classes: 'btn-primary', close: true, click: function () { - if (!this.$('#placeBk').val()) { - this.$('#placeBk').val(self.defaultLocation); - } - self.$target.attr({ - 'data-map-gps': this.$('#placeBk').val(), - 'data-pin-style': this.$('#pin_style').val(), - 'data-pin-address': this.$('#pin_address').val(), - }); - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }}, - {text: _t("Cancel"), close: true} - ], - $content: $(core.qweb.render('theme_common.s_google_map_modal')) - }); - - this.dialog.opened().then((function () { - this.$('#pin_address').val(self.$target.attr('data-pin-address')); - this.$('#pin_style').val(self.$target.attr('data-pin-style')); - this.$('#placeBk').val(self.$target.attr('data-map-gps')); - var autocomplete = new google.maps.places.Autocomplete(this.$('#pin_address').get(0), {types: ['geocode']}); - google.maps.event.addListener(autocomplete, 'place_changed', function () { - var place = autocomplete.getPlace(); - self.dialog.$('#placeBk').val(place.geometry ? place.geometry.location : self.defaultLocation); - }); - }).bind(this.dialog)); - - googleScriptLoaded.then(function () { - self.dialog.open(); - }); - }, - /** - * Adapts map's type. - * - * @see this.selectClass for parameters - */ - mapType: function (previewMode, value, $opt) { - this.$target.attr('data-map-type', value); - this.$target.attr('data-map-color', ''); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - /** - * Adapts map's color. - * - * @see this.selectClass for parameters - */ - mapColor: function (previewMode, value, $opt) { - this.$target.attr('data-map-color', value); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - /** - * Adapts map's zoom. - * - * @see this.selectClass for parameters - */ - mapZoom: function (previewMode, value, $opt) { - this.$target.attr('data-map-zoom', value); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - /** - * Adapts map's location. - * - * @see this.selectClass for parameters - */ - mapGps: function (previewMode, value, $opt) { - this.$target.attr('data-map-gps', value); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - - //-------------------------------------------------------------------------- - // Private - //-------------------------------------------------------------------------- - - /** - * @override - */ - _setActive: function () { - this.$el.find('[data-map-type]') - .removeClass('active') - .filter('[data-map-type="' + this.$target.attr('data-map-type') + '"]') - .addClass('active'); - this.$el.find('[data-map-color]') - .removeClass('active') - .filter('[data-map-color="' + this.$target.attr('data-map-color') + '"]') - .addClass('active'); - this.$el.find('[data-map-zoom]') - .removeClass('active') - .filter('[data-map-zoom="' + this.$target.attr('data-map-zoom') + '"]') - .addClass('active'); - this.$el.find('[data-map-gps]') - .removeClass('active') - .filter('[data-map-gps="' + this.$target.attr('data-map-gps') + '"]') - .addClass('active'); - }, -}); -}); diff --git a/theme_anelusia/theme_common/static/src/js/s_google_map_frontend.js b/theme_anelusia/theme_common/static/src/js/s_google_map_frontend.js deleted file mode 100644 index a22cb5b..0000000 --- a/theme_anelusia/theme_common/static/src/js/s_google_map_frontend.js +++ /dev/null @@ -1,144 +0,0 @@ -odoo.define('theme_common.s_google_map_frontend', function (require) { -'use strict'; - -var core = require('web.core'); -var publicWidget = require('web.public.widget'); -var googleScriptLoaded = $.Deferred(); - -var _t = core._t; - -publicWidget.registry.s_google_map = publicWidget.Widget.extend({ - selector: '.s_google_map', - disabledInEditableMode: false, - - /** - * @override - */ - start: function () { - var self = this; - var defs = [this._super.apply(this, arguments)]; - - if (typeof google !== 'object' || typeof google.maps !== 'object') { - if (!publicWidget.registry.s_google_map.isScriptLoading) { - publicWidget.registry.s_google_map.isScriptLoading = true; - window.odoo_s_google_map_redraw_all = function odoo_s_google_map_redraw_all() { - _.each($('section.s_google_map'), function (map) { - self.trigger_up('widgets_start_request', { - editableMode: self.editableMode, - $target: $(map), - }); - }); - publicWidget.registry.s_google_map.isScriptLoading = false; - googleScriptLoaded.resolve(); - }; - - defs.push(this._rpc({ - route: '/theme_common/google_maps_api_key', - }).then(function (data) { - var key_param = ''; - var data_json = JSON.parse(data); - if (data_json.google_maps_api_key !== '') { - key_param = '&key=' + data_json.google_maps_api_key; - } - $('head').append($('" ).attr( { - "src": jQuery.mbYTPlayer.locationProtocol + "//www.youtube.com/iframe_api?v=" + jQuery.mbYTPlayer.version, - "id": "YTAPI" - } ); - jQuery( "head" ).prepend( tag ); - } else { - setTimeout( function() { - jQuery( document ).trigger( "YTAPIReady" ); - }, 100 ) - } - jQuery( document ).on( "YTAPIReady", function() { - if( ( YTPlayer.isBackground && ytp.backgroundIsInited ) || YTPlayer.isInit ) return; - if( YTPlayer.isBackground ) { - ytp.backgroundIsInited = true; - } - YTPlayer.opt.autoPlay = typeof YTPlayer.opt.autoPlay == "undefined" ? ( YTPlayer.isBackground ? true : false ) : YTPlayer.opt.autoPlay; - YTPlayer.opt.vol = YTPlayer.opt.vol ? YTPlayer.opt.vol : 100; - jQuery.mbYTPlayer.getDataFromAPI( YTPlayer ); - jQuery( YTPlayer ).on( "YTPChanged", function() { - if( YTPlayer.isInit ) return; - YTPlayer.isInit = true; - //if is mobile && isPlayer fallback to the default YT player - if( jQuery.browser.mobile && YTPlayer.canPlayOnMobile ) { - // Try to adjust the player dimention - if( YTPlayer.opt.containment.outerWidth() > jQuery( window ).width() ) { - YTPlayer.opt.containment.css( { - maxWidth: "100%" - } ); - var h = YTPlayer.opt.containment.outerWidth() * .6; - YTPlayer.opt.containment.css( { - maxHeight: h - } ); - } - new YT.Player( playerID, { - videoId: YTPlayer.videoID.toString(), - height: '100%', - width: '100%', - events: { - 'onReady': function( event ) { - YTPlayer.player = event.target; - playerBox.css( { - opacity: 1 - } ); - YTPlayer.wrapper.css( { - opacity: 1 - } ); - } - } - } ); - return; - } - new YT.Player( playerID, { - videoId: YTPlayer.videoID.toString(), - playerVars: playerVars, - events: { - 'onReady': function( event ) { - YTPlayer.player = event.target; - if( YTPlayer.isReady ) return; - YTPlayer.isReady = YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ? false : true; - YTPlayer.playerEl = YTPlayer.player.getIframe(); - $YTPlayer.optimizeDisplay(); - YTPlayer.videoID = videoID; - jQuery( window ).on( "resize.YTP", function() { - $YTPlayer.optimizeDisplay(); - } ); - jQuery.mbYTPlayer.checkForState( YTPlayer ); - // Trigger state events - var YTPEvent = jQuery.Event( "YTPUnstarted" ); - YTPEvent.time = YTPlayer.player.time; - if( YTPlayer.canTrigger ) jQuery( YTPlayer ).trigger( YTPEvent ); - }, - /** - * - * @param event - * - * -1 (unstarted) - * 0 (ended) - * 1 (playing) - * 2 (paused) - * 3 (buffering) - * 5 (video cued). - * - * - */ - 'onStateChange': function( event ) { - if( typeof event.target.getPlayerState != "function" ) return; - var state = event.target.getPlayerState(); - if( YTPlayer.state == state ) return; - YTPlayer.state = state; - var eventType; - switch( state ) { - case -1: //------------------------------------------------ unstarted - eventType = "YTPUnstarted"; - break; - case 0: //------------------------------------------------ ended - eventType = "YTPEnd"; - break; - case 1: //------------------------------------------------ play - eventType = "YTPStart"; - if( YTPlayer.controlBar ) YTPlayer.controlBar.find( ".mb_YTPPlaypause" ).html( jQuery.mbYTPlayer.controls.pause ); - if( typeof _gaq != "undefined" && eval( YTPlayer.opt.gaTrack ) ) _gaq.push( [ '_trackEvent', 'YTPlayer', 'Play', ( YTPlayer.hasData ? YTPlayer.videoData.title : YTPlayer.videoID.toString() ) ] ); - if( typeof ga != "undefined" && eval( YTPlayer.opt.gaTrack ) ) ga( 'send', 'event', 'YTPlayer', 'play', ( YTPlayer.hasData ? YTPlayer.videoData.title : YTPlayer.videoID.toString() ) ); - break; - case 2: //------------------------------------------------ pause - eventType = "YTPPause"; - if( YTPlayer.controlBar ) YTPlayer.controlBar.find( ".mb_YTPPlaypause" ).html( jQuery.mbYTPlayer.controls.play ); - break; - case 3: //------------------------------------------------ buffer - YTPlayer.player.setPlaybackQuality( YTPlayer.opt.quality ); - eventType = "YTPBuffering"; - if( YTPlayer.controlBar ) YTPlayer.controlBar.find( ".mb_YTPPlaypause" ).html( jQuery.mbYTPlayer.controls.play ); - break; - case 5: //------------------------------------------------ cued - eventType = "YTPCued"; - break; - default: - break; - } - // Trigger state events - var YTPEvent = jQuery.Event( eventType ); - YTPEvent.time = YTPlayer.player.time; - if( YTPlayer.canTrigger ) jQuery( YTPlayer ).trigger( YTPEvent ); - }, - /** - * - * @param e - */ - 'onPlaybackQualityChange': function( e ) { - var quality = e.target.getPlaybackQuality(); - var YTPQualityChange = jQuery.Event( "YTPQualityChange" ); - YTPQualityChange.quality = quality; - jQuery( YTPlayer ).trigger( YTPQualityChange ); - }, - /** - * - * @param err - */ - 'onError': function( err ) { - if( err.data == 150 ) { - console.log( "Embedding this video is restricted by Youtube." ); - if( YTPlayer.isPlayList ) jQuery( YTPlayer ).playNext(); - } - if( err.data == 2 && YTPlayer.isPlayList ) jQuery( YTPlayer ).playNext(); - if( typeof YTPlayer.opt.onError == "function" ) YTPlayer.opt.onError( $YTPlayer, err ); - } - } - } ); - } ); - } ) - } ); - }, - /** - * - * @param YTPlayer - */ - getDataFromAPI: function( YTPlayer ) { - YTPlayer.videoData = jQuery.mbStorage.get( "YYTPlayer_data_" + YTPlayer.videoID ); - jQuery( YTPlayer ).off( "YTPData.YTPlayer" ).on( "YTPData.YTPlayer", function() { - if( YTPlayer.hasData ) { - - if( YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ) { - var bgndURL = YTPlayer.videoData.thumb_max || YTPlayer.videoData.thumb_high || YTPlayer.videoData.thumb_medium; - YTPlayer.opt.containment.css( { - background: "rgba(0,0,0,0.5) url(" + bgndURL + ") center center", - backgroundSize: "cover" - } ); - YTPlayer.opt.backgroundUrl = bgndURL; - } - } - } ); - - if( YTPlayer.videoData ) { - - setTimeout( function() { - YTPlayer.opt.ratio = YTPlayer.opt.ratio == "auto" ? "16/9" : YTPlayer.opt.ratio; - YTPlayer.dataReceived = true; - jQuery( YTPlayer ).trigger( "YTPChanged" ); - var YTPData = jQuery.Event( "YTPData" ); - YTPData.prop = {}; - for( var x in YTPlayer.videoData ) YTPData.prop[ x ] = YTPlayer.videoData[ x ]; - jQuery( YTPlayer ).trigger( YTPData ); - }, 500 ); - - YTPlayer.hasData = true; - } else if( jQuery.mbYTPlayer.apiKey ) { - // Get video info from API3 (needs api key) - // snippet,player,contentDetails,statistics,status - jQuery.getJSON( jQuery.mbYTPlayer.locationProtocol + "//www.googleapis.com/youtube/v3/videos?id=" + YTPlayer.videoID + "&key=" + jQuery.mbYTPlayer.apiKey + "&part=snippet", function( data ) { - YTPlayer.dataReceived = true; - jQuery( YTPlayer ).trigger( "YTPChanged" ); - - function parseYTPlayer_data( data ) { - YTPlayer.videoData = {}; - YTPlayer.videoData.id = YTPlayer.videoID; - YTPlayer.videoData.channelTitle = data.channelTitle; - YTPlayer.videoData.title = data.title; - YTPlayer.videoData.description = data.description.length < 400 ? data.description : data.description.substring( 0, 400 ) + " ..."; - YTPlayer.videoData.aspectratio = YTPlayer.opt.ratio == "auto" ? "16/9" : YTPlayer.opt.ratio; - YTPlayer.opt.ratio = YTPlayer.videoData.aspectratio; - YTPlayer.videoData.thumb_max = data.thumbnails.maxres ? data.thumbnails.maxres.url : null; - YTPlayer.videoData.thumb_high = data.thumbnails.high ? data.thumbnails.high.url : null; - YTPlayer.videoData.thumb_medium = data.thumbnails.medium ? data.thumbnails.medium.url : null; - jQuery.mbStorage.set( "YYTPlayer_data_" + YTPlayer.videoID, YTPlayer.videoData ); - } - parseYTPlayer_data( data.items[ 0 ].snippet ); - YTPlayer.hasData = true; - var YTPData = jQuery.Event( "YTPData" ); - YTPData.prop = {}; - for( var x in YTPlayer.videoData ) YTPData.prop[ x ] = YTPlayer.videoData[ x ]; - jQuery( YTPlayer ).trigger( YTPData ); - } ); - } else { - setTimeout( function() { - jQuery( YTPlayer ).trigger( "YTPChanged" ); - }, 50 ); - if( YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ) { - var bgndURL = jQuery.mbYTPlayer.locationProtocol + "//i.ytimg.com/vi/" + YTPlayer.videoID + "/hqdefault.jpg"; - YTPlayer.opt.containment.css( { - background: "rgba(0,0,0,0.5) url(" + bgndURL + ") center center", - backgroundSize: "cover" - } ); - YTPlayer.opt.backgroundUrl = bgndURL; - } - YTPlayer.videoData = null; - YTPlayer.opt.ratio = YTPlayer.opt.ratio == "auto" ? "16/9" : YTPlayer.opt.ratio; - } - if( YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ) { - YTPlayer.loading = jQuery( "
" ).addClass( "loading" ).html( "Loading" ).hide(); - jQuery( YTPlayer ).append( YTPlayer.loading ); - YTPlayer.loading.fadeIn(); - } - }, - /** - * - */ - removeStoredData: function() { - jQuery.mbStorage.remove(); - }, - /** - * - * @returns {*|YTPlayer.videoData} - */ - getVideoData: function() { - var YTPlayer = this.get( 0 ); - return YTPlayer.videoData; - }, - /** - * - * @returns {*|YTPlayer.videoID|boolean} - */ - getVideoID: function() { - var YTPlayer = this.get( 0 ); - return YTPlayer.videoID || false; - }, - /** - * - * @param quality - */ - setVideoQuality: function( quality ) { - var YTPlayer = this.get( 0 ); - if( !jQuery.browser.chrome ) YTPlayer.player.setPlaybackQuality( quality ); - }, - /** - * @param videos - * @param shuffle - * @param callback - * @returns {jQuery.mbYTPlayer} - */ - playlist: function( videos, shuffle, callback ) { - var $YTPlayer = this; - var YTPlayer = $YTPlayer.get( 0 ); - YTPlayer.isPlayList = true; - if( shuffle ) videos = jQuery.shuffle( videos ); - if( !YTPlayer.videoID ) { - YTPlayer.videos = videos; - YTPlayer.videoCounter = 0; - YTPlayer.videoLength = videos.length; - jQuery( YTPlayer ).data( "property", videos[ 0 ] ); - jQuery( YTPlayer ).mb_YTPlayer(); - } - if( typeof callback == "function" ) jQuery( YTPlayer ).on( "YTPChanged", function() { - callback( YTPlayer ); - } ); - jQuery( YTPlayer ).on( "YTPEnd", function() { - jQuery( YTPlayer ).playNext(); - } ); - return $YTPlayer; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - playNext: function() { - var YTPlayer = this.get( 0 ); - YTPlayer.videoCounter++; - if( YTPlayer.videoCounter >= YTPlayer.videoLength ) YTPlayer.videoCounter = 0; - jQuery( YTPlayer ).changeMovie( YTPlayer.videos[ YTPlayer.videoCounter ] ); - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - playPrev: function() { - var YTPlayer = this.get( 0 ); - YTPlayer.videoCounter--; - if( YTPlayer.videoCounter < 0 ) YTPlayer.videoCounter = YTPlayer.videoLength - 1; - jQuery( YTPlayer ).changeMovie( YTPlayer.videos[ YTPlayer.videoCounter ] ); - return this; - }, - /** - * - * @param opt - */ - changeMovie: function( opt ) { - var YTPlayer = this.get( 0 ); - YTPlayer.opt.startAt = 0; - YTPlayer.opt.stopAt = 0; - YTPlayer.opt.mute = true; - YTPlayer.hasData = false; - YTPlayer.hasChanged = true; - if( opt ) jQuery.extend( YTPlayer.opt, YTPlayer.defaultOpt, opt ); - YTPlayer.videoID = getYTPVideoID( YTPlayer.opt.videoURL ).videoID; - jQuery( YTPlayer.playerEl ).CSSAnimate( { - opacity: 0 - }, 200, function() { - jQuery( YTPlayer ).YTPGetPlayer().cueVideoByUrl( encodeURI( jQuery.mbYTPlayer.locationProtocol + "//www.youtube.com/v/" + YTPlayer.videoID ), 1, YTPlayer.opt.quality ); - jQuery.mbYTPlayer.checkForState( YTPlayer ); - jQuery( YTPlayer ).optimizeDisplay(); - jQuery.mbYTPlayer.getDataFromAPI( YTPlayer ); - return this; - } ); - }, - /** - * - * @returns {player} - */ - getPlayer: function() { - return jQuery( this ).get( 0 ).player; - }, - playerDestroy: function() { - var YTPlayer = this.get( 0 ); - ytp.YTAPIReady = false; - ytp.backgroundIsInited = false; - YTPlayer.isInit = false; - YTPlayer.videoID = null; - var playerBox = YTPlayer.wrapper; - playerBox.remove(); - jQuery( "#controlBar_" + YTPlayer.id ).remove(); - clearInterval( YTPlayer.checkForStartAt ); - clearInterval( YTPlayer.getState ); - return this; - }, - /** - * - * @param real - * @returns {jQuery.mbYTPlayer} - */ - fullscreen: function( real ) { - var YTPlayer = this.get( 0 ); - if( typeof real == "undefined" ) real = YTPlayer.opt.realfullscreen; - real = eval( real ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var fullScreenBtn = controls.find( ".mb_OnlyYT" ); - var videoWrapper = YTPlayer.isSelf ? YTPlayer.opt.containment : YTPlayer.wrapper; - //var videoWrapper = YTPlayer.wrapper; - if( real ) { - var fullscreenchange = jQuery.browser.mozilla ? "mozfullscreenchange" : jQuery.browser.webkit ? "webkitfullscreenchange" : "fullscreenchange"; - jQuery( document ).off( fullscreenchange ).on( fullscreenchange, function() { - var isFullScreen = RunPrefixMethod( document, "IsFullScreen" ) || RunPrefixMethod( document, "FullScreen" ); - if( !isFullScreen ) { - YTPlayer.isAlone = false; - fullScreenBtn.html( jQuery.mbYTPlayer.controls.onlyYT ); - jQuery( YTPlayer ).YTPSetVideoQuality( YTPlayer.opt.quality ); - videoWrapper.removeClass( "fullscreen" ); - videoWrapper.CSSAnimate( { - opacity: YTPlayer.opt.opacity - }, 500 ); - videoWrapper.css( { - zIndex: 0 - } ); - if( YTPlayer.isBackground ) { - jQuery( "body" ).after( controls ); - } else { - YTPlayer.wrapper.before( controls ); - } - jQuery( window ).resize(); - jQuery( YTPlayer ).trigger( "YTPFullScreenEnd" ); - } else { - jQuery( YTPlayer ).YTPSetVideoQuality( "default" ); - jQuery( YTPlayer ).trigger( "YTPFullScreenStart" ); - } - } ); - } - if( !YTPlayer.isAlone ) { - function hideMouse() { - YTPlayer.overlay.css( { - cursor: "none" - } ); - } - jQuery( document ).on( "mousemove.YTPlayer", function( e ) { - YTPlayer.overlay.css( { - cursor: "auto" - } ); - clearTimeout( YTPlayer.hideCursor ); - if( !jQuery( e.target ).parents().is( ".mb_YTPBar" ) ) YTPlayer.hideCursor = setTimeout( hideMouse, 3000 ); - } ); - hideMouse(); - if( real ) { - videoWrapper.css( { - opacity: 0 - } ); - videoWrapper.addClass( "fullscreen" ); - launchFullscreen( videoWrapper.get( 0 ) ); - setTimeout( function() { - videoWrapper.CSSAnimate( { - opacity: 1 - }, 1000 ); - YTPlayer.wrapper.append( controls ); - jQuery( YTPlayer ).optimizeDisplay(); - YTPlayer.player.seekTo( YTPlayer.player.getCurrentTime() + .1, true ); - }, 500 ) - } else videoWrapper.css( { - zIndex: 10000 - } ).CSSAnimate( { - opacity: 1 - }, 1000 ); - fullScreenBtn.html( jQuery.mbYTPlayer.controls.showSite ); - YTPlayer.isAlone = true; - } else { - jQuery( document ).off( "mousemove.YTPlayer" ); - YTPlayer.overlay.css( { - cursor: "auto" - } ); - if( real ) { - cancelFullscreen(); - } else { - videoWrapper.CSSAnimate( { - opacity: YTPlayer.opt.opacity - }, 500 ); - videoWrapper.css( { - zIndex: 0 - } ); - } - fullScreenBtn.html( jQuery.mbYTPlayer.controls.onlyYT ); - YTPlayer.isAlone = false; - } - - function RunPrefixMethod( obj, method ) { - var pfx = [ "webkit", "moz", "ms", "o", "" ]; - var p = 0, - m, t; - while( p < pfx.length && !obj[ m ] ) { - m = method; - if( pfx[ p ] == "" ) { - m = m.substr( 0, 1 ).toLowerCase() + m.substr( 1 ); - } - m = pfx[ p ] + m; - t = typeof obj[ m ]; - if( t != "undefined" ) { - pfx = [ pfx[ p ] ]; - return( t == "function" ? obj[ m ]() : obj[ m ] ); - } - p++; - } - } - - function launchFullscreen( element ) { - RunPrefixMethod( element, "RequestFullScreen" ); - } - - function cancelFullscreen() { - if( RunPrefixMethod( document, "FullScreen" ) || RunPrefixMethod( document, "IsFullScreen" ) ) { - RunPrefixMethod( document, "CancelFullScreen" ); - } - } - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - toggleLoops: function() { - var YTPlayer = this.get( 0 ); - var data = YTPlayer.opt; - if( data.loop == 1 ) { - data.loop = 0; - } else { - if( data.startAt ) { - YTPlayer.player.seekTo( data.startAt ); - } else { - YTPlayer.player.playVideo(); - } - data.loop = 1; - } - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - play: function() { - var YTPlayer = this.get( 0 ); - if( !YTPlayer.isReady ) return; - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var playBtn = controls.find( ".mb_YTPPlaypause" ); - playBtn.html( jQuery.mbYTPlayer.controls.pause ); - YTPlayer.player.playVideo(); - YTPlayer.wrapper.CSSAnimate( { - opacity: YTPlayer.isAlone ? 1 : YTPlayer.opt.opacity - }, 2000 ); - jQuery( YTPlayer.playerEl ).CSSAnimate( { - opacity: 1 - }, 1000 ); - jQuery( YTPlayer ).css( "background-image", "none" ); - return this; - }, - /** - * - * @param callback - * @returns {jQuery.mbYTPlayer} - */ - togglePlay: function( callback ) { - var YTPlayer = this.get( 0 ); - if( YTPlayer.state == 1 ) this.YTPPause(); - else this.YTPPlay(); - if( typeof callback == "function" ) { - callback( YTPlayer.state ); - } - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - stop: function() { - var YTPlayer = this.get( 0 ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var playBtn = controls.find( ".mb_YTPPlaypause" ); - playBtn.html( jQuery.mbYTPlayer.controls.play ); - YTPlayer.player.stopVideo(); - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - pause: function() { - var YTPlayer = this.get( 0 ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var playBtn = controls.find( ".mb_YTPPlaypause" ); - playBtn.html( jQuery.mbYTPlayer.controls.play ); - YTPlayer.player.pauseVideo(); - return this; - }, - /** - * - * @param val - * @returns {jQuery.mbYTPlayer} - */ - seekTo: function( val ) { - var YTPlayer = this.get( 0 ); - YTPlayer.player.seekTo( val, true ); - return this; - }, - /** - * - * @param val - * @returns {jQuery.mbYTPlayer} - */ - setVolume: function( val ) { - var YTPlayer = this.get( 0 ); - if( !val && !YTPlayer.opt.vol && YTPlayer.player.getVolume() == 0 ) jQuery( YTPlayer ).YTPUnmute(); - else if( ( !val && YTPlayer.player.getVolume() > 0 ) || ( val && YTPlayer.opt.vol == val ) ) { - if( !YTPlayer.isMute ) jQuery( YTPlayer ).YTPMute(); - else jQuery( YTPlayer ).YTPUnmute(); - } else { - YTPlayer.opt.vol = val; - YTPlayer.player.setVolume( YTPlayer.opt.vol ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length ) YTPlayer.volumeBar.updateSliderVal( val ) - } - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - mute: function() { - var YTPlayer = this.get( 0 ); - if( YTPlayer.isMute ) return; - YTPlayer.player.mute(); - YTPlayer.isMute = true; - YTPlayer.player.setVolume( 0 ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length && YTPlayer.volumeBar.width() > 10 ) { - YTPlayer.volumeBar.updateSliderVal( 0 ); - } - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var muteBtn = controls.find( ".mb_YTPMuteUnmute" ); - muteBtn.html( jQuery.mbYTPlayer.controls.unmute ); - jQuery( YTPlayer ).addClass( "isMuted" ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length ) YTPlayer.volumeBar.addClass( "muted" ); - var YTPEvent = jQuery.Event( "YTPMuted" ); - YTPEvent.time = YTPlayer.player.time; - if( YTPlayer.canTrigger ) jQuery( YTPlayer ).trigger( YTPEvent ); - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - unmute: function() { - var YTPlayer = this.get( 0 ); - if( !YTPlayer.isMute ) return; - YTPlayer.player.unMute(); - YTPlayer.isMute = false; - YTPlayer.player.setVolume( YTPlayer.opt.vol ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length ) YTPlayer.volumeBar.updateSliderVal( YTPlayer.opt.vol > 10 ? YTPlayer.opt.vol : 10 ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var muteBtn = controls.find( ".mb_YTPMuteUnmute" ); - muteBtn.html( jQuery.mbYTPlayer.controls.mute ); - jQuery( YTPlayer ).removeClass( "isMuted" ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length ) YTPlayer.volumeBar.removeClass( "muted" ); - var YTPEvent = jQuery.Event( "YTPUnmuted" ); - YTPEvent.time = YTPlayer.player.time; - if( YTPlayer.canTrigger ) jQuery( YTPlayer ).trigger( YTPEvent ); - return this; - }, - /** - * - * @param filter - * @param value - * @returns {jQuery.mbYTPlayer} - */ - applyFilter: function( filter, value ) { - var YTPlayer = this.get( 0 ); - YTPlayer.filters[ filter ].value = value; - if( YTPlayer.filtersEnabled ) this.YTPEnableFilters(); - return this; - }, - /** - * - * @param filters - * @returns {jQuery.mbYTPlayer} - */ - applyFilters: function( filters ) { - var YTPlayer = this.get( 0 ); - this.on( "YTPReady", function() { - for( var key in filters ) { - YTPlayer.filters[ key ].value = filters[ key ]; - jQuery( YTPlayer ).YTPApplyFilter( key, filters[ key ] ); - } - jQuery( YTPlayer ).trigger( "YTPFiltersApplied" ); - } ); - return this; - }, - /** - * - * @param filter - * @param value - * @returns {*} - */ - toggleFilter: function( filter, value ) { - return this.each( function() { - var YTPlayer = this; - if( !YTPlayer.filters[ filter ].value ) YTPlayer.filters[ filter ].value = value; - else YTPlayer.filters[ filter ].value = 0; - if( YTPlayer.filtersEnabled ) jQuery( this ).YTPEnableFilters(); - } ) - return this; - }, - /** - * - * @param callback - * @returns {*} - */ - toggleFilters: function( callback ) { - return this.each( function() { - var YTPlayer = this; - if( YTPlayer.filtersEnabled ) { - jQuery( YTPlayer ).trigger( "YTPDisableFilters" ); - jQuery( YTPlayer ).YTPDisableFilters(); - } else { - jQuery( YTPlayer ).YTPEnableFilters(); - jQuery( YTPlayer ).trigger( "YTPEnableFilters" ); - } - if( typeof callback == "function" ) callback( YTPlayer.filtersEnabled ); - } ) - }, - /** - * - * @returns {*} - */ - disableFilters: function() { - return this.each( function() { - var YTPlayer = this; - var iframe = jQuery( YTPlayer.playerEl ); - iframe.css( "-webkit-filter", "" ); - iframe.css( "filter", "" ); - YTPlayer.filtersEnabled = false; - } ) - }, - /** - * - * @returns {*} - */ - enableFilters: function() { - return this.each( function() { - var YTPlayer = this; - var iframe = jQuery( YTPlayer.playerEl ); - var filterStyle = ""; - for( var key in YTPlayer.filters ) { - if( YTPlayer.filters[ key ].value ) filterStyle += key.replace( "_", "-" ) + "(" + YTPlayer.filters[ key ].value + YTPlayer.filters[ key ].unit + ") "; - } - iframe.css( "-webkit-filter", filterStyle ); - iframe.css( "filter", filterStyle ); - YTPlayer.filtersEnabled = true; - } ) - return this; - }, - /** - * - * @param filter - * @param callback - * @returns {*} - */ - removeFilter: function( filter, callback ) { - return this.each( function() { - if( typeof filter == "function" ) { - callback = filter; - filter = null; - } - var YTPlayer = this; - if( !filter ) - for( var key in YTPlayer.filters ) { - jQuery( this ).YTPApplyFilter( key, 0 ); - if( typeof callback == "function" ) callback( key ); - } else { - jQuery( this ).YTPApplyFilter( filter, 0 ); - if( typeof callback == "function" ) callback( filter ); - } - } ); - return this; - }, - /** - * - * @returns {{totalTime: number, currentTime: number}} - */ - manageProgress: function() { - var YTPlayer = this.get( 0 ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var progressBar = controls.find( ".mb_YTPProgress" ); - var loadedBar = controls.find( ".mb_YTPLoaded" ); - var timeBar = controls.find( ".mb_YTPseekbar" ); - var totW = progressBar.outerWidth(); - var currentTime = Math.floor( YTPlayer.player.getCurrentTime() ); - var totalTime = Math.floor( YTPlayer.player.getDuration() ); - var timeW = ( currentTime * totW ) / totalTime; - var startLeft = 0; - var loadedW = YTPlayer.player.getVideoLoadedFraction() * 100; - loadedBar.css( { - left: startLeft, - width: loadedW + "%" - } ); - timeBar.css( { - left: 0, - width: timeW - } ); - return { - totalTime: totalTime, - currentTime: currentTime - }; - }, - /** - * - * @param YTPlayer - */ - buildControls: function( YTPlayer ) { - var data = YTPlayer.opt; - // @data.printUrl: is deprecated; use data.showYTLogo - data.showYTLogo = data.showYTLogo || data.printUrl; - if( jQuery( "#controlBar_" + YTPlayer.id ).length ) return; - YTPlayer.controlBar = jQuery( "" ).attr( "id", "controlBar_" + YTPlayer.id ).addClass( "mb_YTPBar" ).css( { - whiteSpace: "noWrap", - position: YTPlayer.isBackground ? "fixed" : "absolute", - zIndex: YTPlayer.isBackground ? 10000 : 1000 - } ).hide(); - var buttonBar = jQuery( "
" ).addClass( "buttonBar" ); - /* play/pause button*/ - var playpause = jQuery( "" + jQuery.mbYTPlayer.controls.play + "" ).addClass( "mb_YTPPlaypause ytpicon" ).click( function() { - if( YTPlayer.player.getPlayerState() == 1 ) jQuery( YTPlayer ).YTPPause(); - else jQuery( YTPlayer ).YTPPlay(); - } ); - /* mute/unmute button*/ - var MuteUnmute = jQuery( "" + jQuery.mbYTPlayer.controls.mute + "" ).addClass( "mb_YTPMuteUnmute ytpicon" ).click( function() { - if( YTPlayer.player.getVolume() == 0 ) { - jQuery( YTPlayer ).YTPUnmute(); - } else { - jQuery( YTPlayer ).YTPMute(); - } - } ); - /* volume bar*/ - var volumeBar = jQuery( "
" ).addClass( "mb_YTPVolumeBar" ).css( { - display: "inline-block" - } ); - YTPlayer.volumeBar = volumeBar; - /* time elapsed */ - var idx = jQuery( "" ).addClass( "mb_YTPTime" ); - var vURL = data.videoURL ? data.videoURL : ""; - if( vURL.indexOf( "http" ) < 0 ) vURL = jQuery.mbYTPlayer.locationProtocol + "//www.youtube.com/watch?v=" + data.videoURL; - var movieUrl = jQuery( "" ).html( jQuery.mbYTPlayer.controls.ytLogo ).addClass( "mb_YTPUrl ytpicon" ).attr( "title", "view on YouTube" ).on( "click", function() { - window.open( vURL, "viewOnYT" ) - } ); - var onlyVideo = jQuery( "" ).html( jQuery.mbYTPlayer.controls.onlyYT ).addClass( "mb_OnlyYT ytpicon" ).on( "click", function() { - jQuery( YTPlayer ).YTPFullscreen( data.realfullscreen ); - } ); - var progressBar = jQuery( "
" ).addClass( "mb_YTPProgress" ).css( "position", "absolute" ).click( function( e ) { - timeBar.css( { - width: ( e.clientX - timeBar.offset().left ) - } ); - YTPlayer.timeW = e.clientX - timeBar.offset().left; - YTPlayer.controlBar.find( ".mb_YTPLoaded" ).css( { - width: 0 - } ); - var totalTime = Math.floor( YTPlayer.player.getDuration() ); - YTPlayer.goto = ( timeBar.outerWidth() * totalTime ) / progressBar.outerWidth(); - YTPlayer.player.seekTo( parseFloat( YTPlayer.goto ), true ); - YTPlayer.controlBar.find( ".mb_YTPLoaded" ).css( { - width: 0 - } ); - } ); - var loadedBar = jQuery( "
" ).addClass( "mb_YTPLoaded" ).css( "position", "absolute" ); - var timeBar = jQuery( "
" ).addClass( "mb_YTPseekbar" ).css( "position", "absolute" ); - progressBar.append( loadedBar ).append( timeBar ); - buttonBar.append( playpause ).append( MuteUnmute ).append( volumeBar ).append( idx ); - if( data.showYTLogo ) { - buttonBar.append( movieUrl ); - } - if( YTPlayer.isBackground || ( eval( YTPlayer.opt.realfullscreen ) && !YTPlayer.isBackground ) ) buttonBar.append( onlyVideo ); - YTPlayer.controlBar.append( buttonBar ).append( progressBar ); - if( !YTPlayer.isBackground ) { - YTPlayer.controlBar.addClass( "inlinePlayer" ); - YTPlayer.wrapper.before( YTPlayer.controlBar ); - } else { - jQuery( "body" ).after( YTPlayer.controlBar ); - } - volumeBar.simpleSlider( { - initialval: YTPlayer.opt.vol, - scale: 100, - orientation: "h", - callback: function( el ) { - if( el.value == 0 ) { - jQuery( YTPlayer ).YTPMute(); - } else { - jQuery( YTPlayer ).YTPUnmute(); - } - YTPlayer.player.setVolume( el.value ); - if( !YTPlayer.isMute ) YTPlayer.opt.vol = el.value; - } - } ); - }, - /** - * - * - * */ - checkForState: function( YTPlayer ) { - var interval = YTPlayer.opt.showControls ? 100 : 700; - clearInterval( YTPlayer.getState ); - //Checking if player has been removed from scene - if( !jQuery.contains( document, YTPlayer ) ) { - jQuery( YTPlayer ).YTPPlayerDestroy(); - clearInterval( YTPlayer.getState ); - clearInterval( YTPlayer.checkForStartAt ); - return; - } - jQuery.mbYTPlayer.checkForStart( YTPlayer ); - YTPlayer.getState = setInterval( function() { - var prog = jQuery( YTPlayer ).YTPManageProgress(); - var $YTPlayer = jQuery( YTPlayer ); - var data = YTPlayer.opt; - var startAt = YTPlayer.opt.startAt ? YTPlayer.opt.startAt : 0; - var stopAt = YTPlayer.opt.stopAt > YTPlayer.opt.startAt ? YTPlayer.opt.stopAt : 0; - stopAt = stopAt < YTPlayer.player.getDuration() ? stopAt : 0; - if( YTPlayer.player.time != prog.currentTime ) { - var YTPEvent = jQuery.Event( "YTPTime" ); - YTPEvent.time = YTPlayer.player.time; - jQuery( YTPlayer ).trigger( YTPEvent ); - } - YTPlayer.player.time = prog.currentTime; - if( YTPlayer.player.getVolume() == 0 ) $YTPlayer.addClass( "isMuted" ); - else $YTPlayer.removeClass( "isMuted" ); - if( YTPlayer.opt.showControls ) - if( prog.totalTime ) { - YTPlayer.controlBar.find( ".mb_YTPTime" ).html( jQuery.mbYTPlayer.formatTime( prog.currentTime ) + " / " + jQuery.mbYTPlayer.formatTime( prog.totalTime ) ); - } else { - YTPlayer.controlBar.find( ".mb_YTPTime" ).html( "-- : -- / -- : --" ); - } - if( eval( YTPlayer.opt.stopMovieOnBlur ) ) - if( !document.hasFocus() ) { - if( YTPlayer.state == 1 ) { - YTPlayer.hasFocus = false; - $YTPlayer.YTPPause(); - } - } else if( document.hasFocus() && !YTPlayer.hasFocus && !( YTPlayer.state == -1 || YTPlayer.state == 0 ) ) { - YTPlayer.hasFocus = true; - $YTPlayer.YTPPlay(); - } - if( YTPlayer.controlBar && YTPlayer.controlBar.outerWidth() <= 400 && !YTPlayer.isCompact ) { - YTPlayer.controlBar.addClass( "compact" ); - YTPlayer.isCompact = true; - if( !YTPlayer.isMute && YTPlayer.volumeBar ) YTPlayer.volumeBar.updateSliderVal( YTPlayer.opt.vol ); - } else if( YTPlayer.controlBar && YTPlayer.controlBar.outerWidth() > 400 && YTPlayer.isCompact ) { - YTPlayer.controlBar.removeClass( "compact" ); - YTPlayer.isCompact = false; - if( !YTPlayer.isMute && YTPlayer.volumeBar ) YTPlayer.volumeBar.updateSliderVal( YTPlayer.opt.vol ); - } - if( YTPlayer.player.getPlayerState() == 1 && ( parseFloat( YTPlayer.player.getDuration() - 1.5 ) < YTPlayer.player.getCurrentTime() || ( stopAt > 0 && parseFloat( YTPlayer.player.getCurrentTime() ) > stopAt ) ) ) { - if( YTPlayer.isEnded ) return; - YTPlayer.isEnded = true; - setTimeout( function() { - YTPlayer.isEnded = false - }, 1000 ); - if( YTPlayer.isPlayList ) { - clearInterval( YTPlayer.getState ); - var YTPEnd = jQuery.Event( "YTPEnd" ); - YTPEnd.time = YTPlayer.player.time; - jQuery( YTPlayer ).trigger( YTPEnd ); - return; - } else if( !data.loop ) { - YTPlayer.player.pauseVideo(); - YTPlayer.wrapper.CSSAnimate( { - opacity: 0 - }, 1000, function() { - var YTPEnd = jQuery.Event( "YTPEnd" ); - YTPEnd.time = YTPlayer.player.time; - jQuery( YTPlayer ).trigger( YTPEnd ); - YTPlayer.player.seekTo( startAt, true ); - if( !YTPlayer.isBackground ) { - YTPlayer.opt.containment.css( { - background: "rgba(0,0,0,0.5) url(" + YTPlayer.opt.backgroundUrl + ") center center", - backgroundSize: "cover" - } ); - } - } ); - } else { - - startAt = startAt || 1; - - YTPlayer.player.pauseVideo(); - YTPlayer.player.seekTo( startAt, true ); - $YTPlayer.YTPPlay(); - - } - } - }, interval ); - }, - /** - * - * */ - checkForStart: function( YTPlayer ) { - var $YTPlayer = jQuery( YTPlayer ); - //Checking if player has been removed from scene - if( !jQuery.contains( document, YTPlayer ) ) { - jQuery( YTPlayer ).YTPPlayerDestroy(); - return - } - if( jQuery.browser.chrome ) YTPlayer.opt.quality = "default"; - YTPlayer.player.pauseVideo(); - jQuery( YTPlayer ).muteYTPVolume(); - jQuery( "#controlBar_" + YTPlayer.id ).remove(); - if( YTPlayer.opt.showControls ) jQuery.mbYTPlayer.buildControls( YTPlayer ); - if( YTPlayer.opt.addRaster ) { - var classN = YTPlayer.opt.addRaster == "dot" ? "raster-dot" : "raster"; - YTPlayer.overlay.addClass( YTPlayer.isRetina ? classN + " retina" : classN ); - } else { - YTPlayer.overlay.removeClass( function( index, classNames ) { - // change the list into an array - var current_classes = classNames.split( " " ), - // array of classes which are to be removed - classes_to_remove = []; - jQuery.each( current_classes, function( index, class_name ) { - // if the classname begins with bg add it to the classes_to_remove array - if( /raster.*/.test( class_name ) ) { - classes_to_remove.push( class_name ); - } - } ); - classes_to_remove.push( "retina" ); - // turn the array back into a string - return classes_to_remove.join( " " ); - } ) - } - YTPlayer.checkForStartAt = setInterval( function() { - jQuery( YTPlayer ).YTPMute(); - var startAt = YTPlayer.opt.startAt ? YTPlayer.opt.startAt : 1; - var canPlayVideo = ( YTPlayer.player.getVideoLoadedFraction() > startAt / YTPlayer.player.getDuration() ); - if( YTPlayer.player.getDuration() > 0 && YTPlayer.player.getCurrentTime() >= startAt && canPlayVideo ) { - clearInterval( YTPlayer.checkForStartAt ); - YTPlayer.isReady = true; - if( typeof YTPlayer.opt.onReady == "function" ) YTPlayer.opt.onReady( YTPlayer ); - var YTPready = jQuery.Event( "YTPReady" ); - jQuery( YTPlayer ).trigger( YTPready ); - YTPlayer.player.pauseVideo(); - if( !YTPlayer.opt.mute ) jQuery( YTPlayer ).YTPUnmute(); - YTPlayer.canTrigger = true; - if( YTPlayer.opt.autoPlay ) { - $YTPlayer.YTPPlay(); - $YTPlayer.css( "background-image", "none" ); - jQuery( YTPlayer.playerEl ).CSSAnimate( { - opacity: 1 - }, 1000 ); - YTPlayer.wrapper.CSSAnimate( { - opacity: YTPlayer.isAlone ? 1 : YTPlayer.opt.opacity - }, 1000 ); - } else { - YTPlayer.player.pauseVideo(); - if( !YTPlayer.isPlayer ) { - jQuery( YTPlayer.playerEl ).CSSAnimate( { - opacity: 1 - }, 1000 ); - YTPlayer.wrapper.CSSAnimate( { - opacity: YTPlayer.isAlone ? 1 : YTPlayer.opt.opacity - }, 1000 ); - } - } - if( YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ) { - YTPlayer.loading.html( "Ready" ); - setTimeout( function() { - YTPlayer.loading.fadeOut(); - - - }, 100 ) - } - if( YTPlayer.controlBar ) YTPlayer.controlBar.slideDown( 1000 ); - } else { - //YTPlayer.player.playVideo(); - if( startAt >= 0 ) YTPlayer.player.seekTo( startAt, true ); - } - }, 1000 ); - }, - /** - * - * @param s - * @returns {string} - */ - formatTime: function( s ) { - var min = Math.floor( s / 60 ); - var sec = Math.floor( s - ( 60 * min ) ); - return( min <= 9 ? "0" + min : min ) + " : " + ( sec <= 9 ? "0" + sec : sec ); - } - }; - /** - * - * @returns {boolean} - */ - jQuery.fn.toggleVolume = function() { - var YTPlayer = this.get( 0 ); - if( !YTPlayer ) return; - if( YTPlayer.player.isMuted() ) { - jQuery( YTPlayer ).YTPUnmute(); - return true; - } else { - jQuery( YTPlayer ).YTPMute(); - return false; - } - }; - /** - * - */ - jQuery.fn.optimizeDisplay = function() { - var YTPlayer = this.get( 0 ); - var data = YTPlayer.opt; - var playerBox = jQuery( YTPlayer.playerEl ); - var win = {}; - var el = YTPlayer.wrapper; - win.width = el.outerWidth(); - win.height = el.outerHeight(); - var margin = 24; - var overprint = 100; - var vid = {}; - if( data.optimizeDisplay ) { - vid.width = win.width + ( ( win.width * margin ) / 100 ); - vid.height = data.ratio == "16/9" ? Math.ceil( ( 9 * win.width ) / 16 ) : Math.ceil( ( 3 * win.width ) / 4 ); - vid.marginTop = -( ( vid.height - win.height ) / 2 ); - vid.marginLeft = -( ( win.width * ( margin / 2 ) ) / 100 ); - if( vid.height < win.height ) { - vid.height = win.height + ( ( win.height * margin ) / 100 ); - vid.width = data.ratio == "16/9" ? Math.floor( ( 16 * win.height ) / 9 ) : Math.floor( ( 4 * win.height ) / 3 ); - vid.marginTop = -( ( win.height * ( margin / 2 ) ) / 100 ); - vid.marginLeft = -( ( vid.width - win.width ) / 2 ); - } - vid.width += overprint; - vid.height += overprint; - vid.marginTop -= overprint / 2; - vid.marginLeft -= overprint / 2; - } else { - vid.width = "100%"; - vid.height = "100%"; - vid.marginTop = 0; - vid.marginLeft = 0; - } - playerBox.css( { - width: vid.width, - height: vid.height, - marginTop: vid.marginTop, - marginLeft: vid.marginLeft - } ); - }; - /** - * - * @param arr - * @returns {Array|string|Blob|*} - * - */ - jQuery.shuffle = function( arr ) { - var newArray = arr.slice(); - var len = newArray.length; - var i = len; - while( i-- ) { - var p = parseInt( Math.random() * len ); - var t = newArray[ i ]; - newArray[ i ] = newArray[ p ]; - newArray[ p ] = t; - } - return newArray; - }; - - /* Exposed public method */ - jQuery.fn.YTPlayer = jQuery.mbYTPlayer.buildPlayer; - jQuery.fn.YTPGetPlayer = jQuery.mbYTPlayer.getPlayer; - jQuery.fn.YTPGetVideoID = jQuery.mbYTPlayer.getVideoID; - jQuery.fn.YTPChangeMovie = jQuery.mbYTPlayer.changeMovie; - jQuery.fn.YTPPlayerDestroy = jQuery.mbYTPlayer.playerDestroy; - - jQuery.fn.YTPPlay = jQuery.mbYTPlayer.play; - jQuery.fn.YTPTogglePlay = jQuery.mbYTPlayer.togglePlay; - jQuery.fn.YTPStop = jQuery.mbYTPlayer.stop; - jQuery.fn.YTPPause = jQuery.mbYTPlayer.pause; - jQuery.fn.YTPSeekTo = jQuery.mbYTPlayer.seekTo; - - jQuery.fn.YTPlaylist = jQuery.mbYTPlayer.playlist; - jQuery.fn.YTPPlayNext = jQuery.mbYTPlayer.playNext; - jQuery.fn.YTPPlayPrev = jQuery.mbYTPlayer.playPrev; - - jQuery.fn.YTPMute = jQuery.mbYTPlayer.mute; - jQuery.fn.YTPUnmute = jQuery.mbYTPlayer.unmute; - jQuery.fn.YTPToggleVolume = jQuery.mbYTPlayer.toggleVolume; - jQuery.fn.YTPSetVolume = jQuery.mbYTPlayer.setVolume; - - jQuery.fn.YTPGetVideoData = jQuery.mbYTPlayer.getVideoData; - jQuery.fn.YTPFullscreen = jQuery.mbYTPlayer.fullscreen; - jQuery.fn.YTPToggleLoops = jQuery.mbYTPlayer.toggleLoops; - jQuery.fn.YTPSetVideoQuality = jQuery.mbYTPlayer.setVideoQuality; - jQuery.fn.YTPManageProgress = jQuery.mbYTPlayer.manageProgress; - - jQuery.fn.YTPApplyFilter = jQuery.mbYTPlayer.applyFilter; - jQuery.fn.YTPApplyFilters = jQuery.mbYTPlayer.applyFilters; - jQuery.fn.YTPToggleFilter = jQuery.mbYTPlayer.toggleFilter; - jQuery.fn.YTPToggleFilters = jQuery.mbYTPlayer.toggleFilters; - jQuery.fn.YTPRemoveFilter = jQuery.mbYTPlayer.removeFilter; - jQuery.fn.YTPDisableFilters = jQuery.mbYTPlayer.disableFilters; - jQuery.fn.YTPEnableFilters = jQuery.mbYTPlayer.enableFilters; - - - /** - * - * @deprecated - * - **/ - jQuery.fn.mb_YTPlayer = jQuery.mbYTPlayer.buildPlayer; - jQuery.fn.playNext = jQuery.mbYTPlayer.playNext; - jQuery.fn.playPrev = jQuery.mbYTPlayer.playPrev; - jQuery.fn.changeMovie = jQuery.mbYTPlayer.changeMovie; - jQuery.fn.getVideoID = jQuery.mbYTPlayer.getVideoID; - jQuery.fn.getPlayer = jQuery.mbYTPlayer.getPlayer; - jQuery.fn.playerDestroy = jQuery.mbYTPlayer.playerDestroy; - jQuery.fn.fullscreen = jQuery.mbYTPlayer.fullscreen; - jQuery.fn.buildYTPControls = jQuery.mbYTPlayer.buildControls; - jQuery.fn.playYTP = jQuery.mbYTPlayer.play; - jQuery.fn.toggleLoops = jQuery.mbYTPlayer.toggleLoops; - jQuery.fn.stopYTP = jQuery.mbYTPlayer.stop; - jQuery.fn.pauseYTP = jQuery.mbYTPlayer.pause; - jQuery.fn.seekToYTP = jQuery.mbYTPlayer.seekTo; - jQuery.fn.muteYTPVolume = jQuery.mbYTPlayer.mute; - jQuery.fn.unmuteYTPVolume = jQuery.mbYTPlayer.unmute; - jQuery.fn.setYTPVolume = jQuery.mbYTPlayer.setVolume; - jQuery.fn.setVideoQuality = jQuery.mbYTPlayer.setVideoQuality; - jQuery.fn.manageYTPProgress = jQuery.mbYTPlayer.manageProgress; - jQuery.fn.YTPGetDataFromFeed = jQuery.mbYTPlayer.getVideoData; - - -} )( jQuery, ytp ); -; -/* - * ****************************************************************************** - * jquery.mb.components - * file: jquery.mb.CSSAnimate.min.js - * - * Copyright (c) 2001-2014. Matteo Bicocchi (Pupunzi); - * Open lab srl, Firenze - Italy - * email: matteo@open-lab.com - * site: http://pupunzi.com - * blog: http://pupunzi.open-lab.com - * http://open-lab.com - * - * Licences: MIT, GPL - * http://www.opensource.org/licenses/mit-license.php - * http://www.gnu.org/licenses/gpl.html - * - * last modified: 26/03/14 21.40 - * ***************************************************************************** - */ - -function uncamel(a){return a.replace(/([A-Z])/g,function(a){return"-"+a.toLowerCase()})}function setUnit(a,b){return"string"!=typeof a||a.match(/^[\-0-9\.]+jQuery/)?""+a+b:a}function setFilter(a,b,c){var d=uncamel(b),e=jQuery.browser.mozilla?"":jQuery.CSS.sfx;a[e+"filter"]=a[e+"filter"]||"",c=setUnit(c>jQuery.CSS.filters[b].max?jQuery.CSS.filters[b].max:c,jQuery.CSS.filters[b].unit),a[e+"filter"]+=d+"("+c+") ",delete a[b]}jQuery.support.CSStransition=function(){var a=document.body||document.documentElement,b=a.style;return void 0!==b.transition||void 0!==b.WebkitTransition||void 0!==b.MozTransition||void 0!==b.MsTransition||void 0!==b.OTransition}(),jQuery.CSS={name:"mb.CSSAnimate",author:"Matteo Bicocchi",version:"2.0.0",transitionEnd:"transitionEnd",sfx:"",filters:{blur:{min:0,max:100,unit:"px"},brightness:{min:0,max:400,unit:"%"},contrast:{min:0,max:400,unit:"%"},grayscale:{min:0,max:100,unit:"%"},hueRotate:{min:0,max:360,unit:"deg"},invert:{min:0,max:100,unit:"%"},saturate:{min:0,max:400,unit:"%"},sepia:{min:0,max:100,unit:"%"}},normalizeCss:function(a){var b=jQuery.extend(!0,{},a);jQuery.browser.webkit||jQuery.browser.opera?jQuery.CSS.sfx="-webkit-":jQuery.browser.mozilla?jQuery.CSS.sfx="-moz-":jQuery.browser.msie&&(jQuery.CSS.sfx="-ms-");for(var c in b){"transform"===c&&(b[jQuery.CSS.sfx+"transform"]=b[c],delete b[c]),"transform-origin"===c&&(b[jQuery.CSS.sfx+"transform-origin"]=a[c],delete b[c]),"filter"!==c||jQuery.browser.mozilla||(b[jQuery.CSS.sfx+"filter"]=a[c],delete b[c]),"blur"===c&&setFilter(b,"blur",a[c]),"brightness"===c&&setFilter(b,"brightness",a[c]),"contrast"===c&&setFilter(b,"contrast",a[c]),"grayscale"===c&&setFilter(b,"grayscale",a[c]),"hueRotate"===c&&setFilter(b,"hueRotate",a[c]),"invert"===c&&setFilter(b,"invert",a[c]),"saturate"===c&&setFilter(b,"saturate",a[c]),"sepia"===c&&setFilter(b,"sepia",a[c]);var d="";"x"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" translateX("+setUnit(a[c],"px")+")",delete b[c]),"y"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" translateY("+setUnit(a[c],"px")+")",delete b[c]),"z"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" translateZ("+setUnit(a[c],"px")+")",delete b[c]),"rotate"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" rotate("+setUnit(a[c],"deg")+")",delete b[c]),"rotateX"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" rotateX("+setUnit(a[c],"deg")+")",delete b[c]),"rotateY"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" rotateY("+setUnit(a[c],"deg")+")",delete b[c]),"rotateZ"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" rotateZ("+setUnit(a[c],"deg")+")",delete b[c]),"scale"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" scale("+setUnit(a[c],"")+")",delete b[c]),"scaleX"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" scaleX("+setUnit(a[c],"")+")",delete b[c]),"scaleY"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" scaleY("+setUnit(a[c],"")+")",delete b[c]),"scaleZ"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" scaleZ("+setUnit(a[c],"")+")",delete b[c]),"skew"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" skew("+setUnit(a[c],"deg")+")",delete b[c]),"skewX"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" skewX("+setUnit(a[c],"deg")+")",delete b[c]),"skewY"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" skewY("+setUnit(a[c],"deg")+")",delete b[c]),"perspective"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" perspective("+setUnit(a[c],"px")+")",delete b[c])}return b},getProp:function(a){var b=[];for(var c in a)b.indexOf(c)<0&&b.push(uncamel(c));return b.join(",")},animate:function(a,b,c,d,e){return this.each(function(){function o(){f.called=!0,f.CSSAIsRunning=!1,g.off(jQuery.CSS.transitionEnd+"."+f.id),clearTimeout(f.timeout),g.css(jQuery.CSS.sfx+"transition",""),"function"==typeof e&&e.apply(f),"function"==typeof f.CSSqueue&&(f.CSSqueue(),f.CSSqueue=null)}var f=this,g=jQuery(this);f.id=f.id||"CSSA_"+(new Date).getTime();var h=h||{type:"noEvent"};if(f.CSSAIsRunning&&f.eventType==h.type&&!jQuery.browser.msie&&jQuery.browser.version<=9)return f.CSSqueue=function(){g.CSSAnimate(a,b,c,d,e)},void 0;if(f.CSSqueue=null,f.eventType=h.type,0!==g.length&&a){if(a=jQuery.normalizeCss(a),f.CSSAIsRunning=!0,"function"==typeof b&&(e=b,b=jQuery.fx.speeds._default),"function"==typeof c&&(d=c,c=0),"string"==typeof c&&(e=c,c=0),"function"==typeof d&&(e=d,d="cubic-bezier(0.65,0.03,0.36,0.72)"),"string"==typeof b)for(var i in jQuery.fx.speeds){if(b==i){b=jQuery.fx.speeds[i];break}b=jQuery.fx.speeds._default}if(b||(b=jQuery.fx.speeds._default),"string"==typeof e&&(d=e,e=null),!jQuery.support.CSStransition){for(var j in a){if("transform"===j&&delete a[j],"filter"===j&&delete a[j],"transform-origin"===j&&delete a[j],"auto"===a[j]&&delete a[j],"x"===j){var k=a[j],l="left";a[l]=k,delete a[j]}if("y"===j){var k=a[j],l="top";a[l]=k,delete a[j]}("-ms-transform"===j||"-ms-filter"===j)&&delete a[j]}return g.delay(c).animate(a,b,e),void 0}var m={"default":"ease","in":"ease-in",out:"ease-out","in-out":"ease-in-out",snap:"cubic-bezier(0,1,.5,1)",easeOutCubic:"cubic-bezier(.215,.61,.355,1)",easeInOutCubic:"cubic-bezier(.645,.045,.355,1)",easeInCirc:"cubic-bezier(.6,.04,.98,.335)",easeOutCirc:"cubic-bezier(.075,.82,.165,1)",easeInOutCirc:"cubic-bezier(.785,.135,.15,.86)",easeInExpo:"cubic-bezier(.95,.05,.795,.035)",easeOutExpo:"cubic-bezier(.19,1,.22,1)",easeInOutExpo:"cubic-bezier(1,0,0,1)",easeInQuad:"cubic-bezier(.55,.085,.68,.53)",easeOutQuad:"cubic-bezier(.25,.46,.45,.94)",easeInOutQuad:"cubic-bezier(.455,.03,.515,.955)",easeInQuart:"cubic-bezier(.895,.03,.685,.22)",easeOutQuart:"cubic-bezier(.165,.84,.44,1)",easeInOutQuart:"cubic-bezier(.77,0,.175,1)",easeInQuint:"cubic-bezier(.755,.05,.855,.06)",easeOutQuint:"cubic-bezier(.23,1,.32,1)",easeInOutQuint:"cubic-bezier(.86,0,.07,1)",easeInSine:"cubic-bezier(.47,0,.745,.715)",easeOutSine:"cubic-bezier(.39,.575,.565,1)",easeInOutSine:"cubic-bezier(.445,.05,.55,.95)",easeInBack:"cubic-bezier(.6,-.28,.735,.045)",easeOutBack:"cubic-bezier(.175, .885,.32,1.275)",easeInOutBack:"cubic-bezier(.68,-.55,.265,1.55)"};m[d]&&(d=m[d]),g.off(jQuery.CSS.transitionEnd+"."+f.id);var n=jQuery.CSS.getProp(a),p={};jQuery.extend(p,a),p[jQuery.CSS.sfx+"transition-property"]=n,p[jQuery.CSS.sfx+"transition-duration"]=b+"ms",p[jQuery.CSS.sfx+"transition-delay"]=c+"ms",p[jQuery.CSS.sfx+"transition-timing-function"]=d,setTimeout(function(){g.one(jQuery.CSS.transitionEnd+"."+f.id,o),g.css(p)},1),f.timeout=setTimeout(function(){return f.called||!e?(f.called=!1,f.CSSAIsRunning=!1,void 0):(g.css(jQuery.CSS.sfx+"transition",""),e.apply(f),f.CSSAIsRunning=!1,"function"==typeof f.CSSqueue&&(f.CSSqueue(),f.CSSqueue=null),void 0)},b+c+10)}})}},jQuery.fn.CSSAnimate=jQuery.CSS.animate,jQuery.normalizeCss=jQuery.CSS.normalizeCss,jQuery.fn.css3=function(a){return this.each(function(){var b=jQuery(this),c=jQuery.normalizeCss(a);b.css(c)})}; -;/* - * ****************************************************************************** - * jquery.mb.components - * file: jquery.mb.browser.min.js - * - * Copyright (c) 2001-2014. Matteo Bicocchi (Pupunzi); - * Open lab srl, Firenze - Italy - * email: matteo@open-lab.com - * site: http://pupunzi.com - * blog: http://pupunzi.open-lab.com - * http://open-lab.com - * - * Licences: MIT, GPL - * http://www.opensource.org/licenses/mit-license.php - * http://www.gnu.org/licenses/gpl.html - * - * last modified: 26/03/14 21.43 - * ***************************************************************************** - */ - -var nAgt=navigator.userAgent;if(!jQuery.browser){jQuery.browser={},jQuery.browser.mozilla=!1,jQuery.browser.webkit=!1,jQuery.browser.opera=!1,jQuery.browser.safari=!1,jQuery.browser.chrome=!1,jQuery.browser.msie=!1,jQuery.browser.ua=nAgt,jQuery.browser.name=navigator.appName,jQuery.browser.fullVersion=""+parseFloat(navigator.appVersion),jQuery.browser.majorVersion=parseInt(navigator.appVersion,10);var nameOffset,verOffset,ix;if(-1!=(verOffset=nAgt.indexOf("Opera")))jQuery.browser.opera=!0,jQuery.browser.name="Opera",jQuery.browser.fullVersion=nAgt.substring(verOffset+6),-1!=(verOffset=nAgt.indexOf("Version"))&&(jQuery.browser.fullVersion=nAgt.substring(verOffset+8));else if(-1!=(verOffset=nAgt.indexOf("OPR")))jQuery.browser.opera=!0,jQuery.browser.name="Opera",jQuery.browser.fullVersion=nAgt.substring(verOffset+4);else if(-1!=(verOffset=nAgt.indexOf("MSIE")))jQuery.browser.msie=!0,jQuery.browser.name="Microsoft Internet Explorer",jQuery.browser.fullVersion=nAgt.substring(verOffset+5);else if(-1!=nAgt.indexOf("Trident")){jQuery.browser.msie=!0,jQuery.browser.name="Microsoft Internet Explorer";var start=nAgt.indexOf("rv:")+3,end=start+4;jQuery.browser.fullVersion=nAgt.substring(start,end)}else-1!=(verOffset=nAgt.indexOf("Chrome"))?(jQuery.browser.webkit=!0,jQuery.browser.chrome=!0,jQuery.browser.name="Chrome",jQuery.browser.fullVersion=nAgt.substring(verOffset+7)):-1!=(verOffset=nAgt.indexOf("Safari"))?(jQuery.browser.webkit=!0,jQuery.browser.safari=!0,jQuery.browser.name="Safari",jQuery.browser.fullVersion=nAgt.substring(verOffset+7),-1!=(verOffset=nAgt.indexOf("Version"))&&(jQuery.browser.fullVersion=nAgt.substring(verOffset+8))):-1!=(verOffset=nAgt.indexOf("AppleWebkit"))?(jQuery.browser.webkit=!0,jQuery.browser.name="Safari",jQuery.browser.fullVersion=nAgt.substring(verOffset+7),-1!=(verOffset=nAgt.indexOf("Version"))&&(jQuery.browser.fullVersion=nAgt.substring(verOffset+8))):-1!=(verOffset=nAgt.indexOf("Firefox"))?(jQuery.browser.mozilla=!0,jQuery.browser.name="Firefox",jQuery.browser.fullVersion=nAgt.substring(verOffset+8)):(nameOffset=nAgt.lastIndexOf(" ")+1)<(verOffset=nAgt.lastIndexOf("/"))&&(jQuery.browser.name=nAgt.substring(nameOffset,verOffset),jQuery.browser.fullVersion=nAgt.substring(verOffset+1),jQuery.browser.name.toLowerCase()==jQuery.browser.name.toUpperCase()&&(jQuery.browser.name=navigator.appName));-1!=(ix=jQuery.browser.fullVersion.indexOf(";"))&&(jQuery.browser.fullVersion=jQuery.browser.fullVersion.substring(0,ix)),-1!=(ix=jQuery.browser.fullVersion.indexOf(" "))&&(jQuery.browser.fullVersion=jQuery.browser.fullVersion.substring(0,ix)),jQuery.browser.majorVersion=parseInt(""+jQuery.browser.fullVersion,10),isNaN(jQuery.browser.majorVersion)&&(jQuery.browser.fullVersion=""+parseFloat(navigator.appVersion),jQuery.browser.majorVersion=parseInt(navigator.appVersion,10)),jQuery.browser.version=jQuery.browser.majorVersion}jQuery.browser.android=/Android/i.test(nAgt),jQuery.browser.blackberry=/BlackBerry|BB|PlayBook/i.test(nAgt),jQuery.browser.ios=/iPhone|iPad|iPod|webOS/i.test(nAgt),jQuery.browser.operaMobile=/Opera Mini/i.test(nAgt),jQuery.browser.windowsMobile=/IEMobile|Windows Phone/i.test(nAgt),jQuery.browser.kindle=/Kindle|Silk/i.test(nAgt),jQuery.browser.mobile=jQuery.browser.android||jQuery.browser.blackberry||jQuery.browser.ios||jQuery.browser.windowsMobile||jQuery.browser.operaMobile||jQuery.browser.kindle,jQuery.isMobile=jQuery.browser.mobile,jQuery.isTablet=jQuery.browser.mobile&&jQuery(window).width()>765,jQuery.isAndroidDefault=jQuery.browser.android&&!/chrome/i.test(nAgt); -;/*___________________________________________________________________________________________________________________________________________________ - _ jquery.mb.components _ - _ _ - _ file: jquery.mb.simpleSlider.min.js _ - _ last modified: 16/05/15 23.45 _ - _ _ - _ Open Lab s.r.l., Florence - Italy _ - _ _ - _ email: matteo@open-lab.com _ - _ site: http://pupunzi.com _ - _ http://open-lab.com _ - _ blog: http://pupunzi.open-lab.com _ - _ Q&A: http://jquery.pupunzi.com _ - _ _ - _ Licences: MIT, GPL _ - _ http://www.opensource.org/licenses/mit-license.php _ - _ http://www.gnu.org/licenses/gpl.html _ - _ _ - _ Copyright (c) 2001-2015. Matteo Bicocchi (Pupunzi); _ - ___________________________________________________________________________________________________________________________________________________*/ - -!function(a){/iphone|ipod|ipad|android|ie|blackberry|fennec/.test(navigator.userAgent.toLowerCase());var c="ontouchstart"in window||window.navigator&&window.navigator.msPointerEnabled&&window.MSGesture||window.DocumentTouch&&document instanceof DocumentTouch||!1;a.simpleSlider={defaults:{initialval:0,scale:100,orientation:"h",readonly:!1,callback:!1},events:{start:c?"touchstart":"mousedown",end:c?"touchend":"mouseup",move:c?"touchmove":"mousemove"},init:function(b){return this.each(function(){var d=this,e=a(d);e.addClass("simpleSlider"),d.opt={},a.extend(d.opt,a.simpleSlider.defaults,b),a.extend(d.opt,e.data());var f="h"==d.opt.orientation?"horizontal":"vertical",g=a("
").addClass("level").addClass(f);e.prepend(g),d.level=g,e.css({cursor:"default"}),"auto"==d.opt.scale&&(d.opt.scale=a(d).outerWidth()),e.updateSliderVal(),d.opt.readonly||(e.on(a.simpleSlider.events.start,function(a){c&&(a=a.changedTouches[0]),d.canSlide=!0,e.updateSliderVal(a),e.css({cursor:"col-resize"}),a.preventDefault(),a.stopPropagation()}),a(document).on(a.simpleSlider.events.move,function(b){c&&(b=b.changedTouches[0]),d.canSlide&&(a(document).css({cursor:"default"}),e.updateSliderVal(b),b.preventDefault(),b.stopPropagation())}).on(a.simpleSlider.events.end,function(){a(document).css({cursor:"auto"}),d.canSlide=!1,e.css({cursor:"auto"})}))})},updateSliderVal:function(b){function g(a,b){return Math.floor(100*a/b)}var c=this,d=c.get(0);d.opt.initialval="number"==typeof d.opt.initialval?d.opt.initialval:d.opt.initialval(d);var e=a(d).outerWidth(),f=a(d).outerHeight();d.x="object"==typeof b?b.clientX+document.body.scrollLeft-c.offset().left:"number"==typeof b?b*e/d.opt.scale:d.opt.initialval*e/d.opt.scale,d.y="object"==typeof b?b.clientY+document.body.scrollTop-c.offset().top:"number"==typeof b?(d.opt.scale-d.opt.initialval-b)*f/d.opt.scale:d.opt.initialval*f/d.opt.scale,d.y=c.outerHeight()-d.y,d.scaleX=d.x*d.opt.scale/e,d.scaleY=d.y*d.opt.scale/f,d.outOfRangeX=d.scaleX>d.opt.scale?d.scaleX-d.opt.scale:d.scaleX<0?d.scaleX:0,d.outOfRangeY=d.scaleY>d.opt.scale?d.scaleY-d.opt.scale:d.scaleY<0?d.scaleY:0,d.outOfRange="h"==d.opt.orientation?d.outOfRangeX:d.outOfRangeY,d.value="undefined"!=typeof b?"h"==d.opt.orientation?d.x>=c.outerWidth()?d.opt.scale:d.x<=0?0:d.scaleX:d.y>=c.outerHeight()?d.opt.scale:d.y<=0?0:d.scaleY:"h"==d.opt.orientation?d.scaleX:d.scaleY,"h"==d.opt.orientation?d.level.width(g(d.x,e)+"%"):d.level.height(g(d.y,f)),"function"==typeof d.opt.callback&&d.opt.callback(d)}},a.fn.simpleSlider=a.simpleSlider.init,a.fn.updateSliderVal=a.simpleSlider.updateSliderVal}(jQuery); -;/*___________________________________________________________________________________________________________________________________________________ - _ jquery.mb.components _ - _ _ - _ file: jquery.mb.storage.min.js _ - _ last modified: 24/05/15 16.08 _ - _ _ - _ Open Lab s.r.l., Florence - Italy _ - _ _ - _ email: matteo@open-lab.com _ - _ site: http://pupunzi.com _ - _ http://open-lab.com _ - _ blog: http://pupunzi.open-lab.com _ - _ Q&A: http://jquery.pupunzi.com _ - _ _ - _ Licences: MIT, GPL _ - _ http://www.opensource.org/licenses/mit-license.php _ - _ http://www.gnu.org/licenses/gpl.html _ - _ _ - _ Copyright (c) 2001-2015. Matteo Bicocchi (Pupunzi); _ - ___________________________________________________________________________________________________________________________________________________*/ - -!function(a){a.mbCookie={set:function(a,b,c,d){b=JSON.stringify(b),c||(c=7),d=d?"; domain="+d:"";var f,e=new Date;e.setTime(e.getTime()+1e3*60*60*24*c),f="; expires="+e.toGMTString(),document.cookie=a+"="+b+f+"; path=/"+d},get:function(a){for(var b=a+"=",c=document.cookie.split(";"),d=0;d 0) { - self.$overlay.data('$optionsSection').find(".createSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".btn-showSlide").removeClass("hide"); - } else { - self.$overlay.data('$optionsSection').find(".createSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".btn-showSlide").addClass("hide"); - } - }, 100); - }, - - add_btn_edit_slide: function () { - var self = this; - self.$overlay.data('$optionsSection').append(' Edit Slide '); - self.$overlay.data('$optionsSection').on('click', '.btn-showSlide', _.bind(this.toggle_slide, this)); - }, - - create_slide: function (previewMode, value, $li) { - var self = this, - slide = '

Your new slide

'; - self.$target.append(slide); - self.$overlay.data('$optionsSection').find(".btn-showSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".createSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").removeClass("hide"); - }, - - delete_slide: function (previewMode, value, $li) { - var self = this; - self.$target.find(".slide").remove(); - self.$overlay.data('$optionsSection').find(".btn-showSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".createSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").addClass("hide"); - }, - - toggle_slide: function () { - var a = this.$overlay.data('$optionsSection').find(".btn-showSlide"), - i = a.find("i"), - t = this.$target, - s = t.find(".slide"); - if (!t.hasClass("showSlide")) { - t.addClass("showSlide"); i.addClass("fa-toggle-on").removeClass("fa-toggle-off"); i.css("color", "#FFF"); - s.addClass("visible"); - } else { - t.removeClass("showSlide"); i.removeClass("fa-toggle-on").addClass("fa-toggle-off"); i.css("color", ""); - s.removeClass("visible"); - } - }, - onFocus: function () { - this._adapt_items_height(); - }, - onBlur: function () { - this._adapt_items_height(); - }, - cleanForSave: function() { - this.$target.removeClass("showSlide") - .find(".slide").removeClass("visible"); - - this._adapt_items_height(); - }, - _adapt_items_height: function () { - var $items = this.$target.closest(".s_animated_boxes").find(".item"); - var min_height = _.reduce($items.find(".v-align"), function (memo, item) { - return Math.max(memo, $(item).outerHeight(true) + 40); - }, 200); - $items.css("height", min_height); - }, - }); -}); diff --git a/theme_artists/theme_common/static/src/js/s_animated_boxes_frontend.js b/theme_artists/theme_common/static/src/js/s_animated_boxes_frontend.js deleted file mode 100644 index ec39eab..0000000 --- a/theme_artists/theme_common/static/src/js/s_animated_boxes_frontend.js +++ /dev/null @@ -1,15 +0,0 @@ -odoo.define('theme_common.s_animated_boxes_frontend', function (require) { - 'use strict'; - -var publicWidget = require('web.public.widget'); - -/** - * This is a fix for some apple devices. - * The slide of animated boxes widget is shown on hover or click on mobile - * devices, but iOS only activates :hover if the element targeted is - * clickable. - */ -publicWidget.registry._fixAnimatedBoxesAppleClick = publicWidget.registry._fixAppleCollapse.extend({ - selector: '.s_animated_boxes .item', -}); -}); diff --git a/theme_artists/theme_common/static/src/js/s_css_slider_editor.js b/theme_artists/theme_common/static/src/js/s_css_slider_editor.js deleted file mode 100644 index 78d7861..0000000 --- a/theme_artists/theme_common/static/src/js/s_css_slider_editor.js +++ /dev/null @@ -1,82 +0,0 @@ -odoo.define('theme_common.s_css_slider_editor', function (require) { - 'use strict'; - - var s_options = require('web_editor.snippets.options'); - - s_options.registry.s_css_slider_slide = s_options.Class.extend({ - newSlideUrl: "/web/image/theme_common.image_content_23", - - start: function () { - var self = this; - - self.reset(); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - - setTimeout(function () { - self.$overlay.data('$optionsSection').find(".js_s_css_slider_addSlide").on('click', function () { self.addSlide(); }); - self.$overlay.data('$optionsSection').find(".js_s_css_slider_removeSlide").on('click', function () { self.removeSlide(); }); - }, 100); - - $(document.body).on("media-saved", function () { - self.resizeImgsEditor(); - }); - }, - - resizeImgsEditor: function () { - var self = this; - setTimeout(function () { - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }); - }, - - reset: function () { - var self= this; - self.$target.find(".s_css_slider_pagination").remove().end() - .find("span").unbind("click.s_css"); - }, - - addSlide: function () { - var self = this; - var $currentSlide = self.$target.find(".slider .slide.selected"); - $currentSlide.clone().insertAfter($currentSlide).removeClass("selected"); - - _.defer(function () { - self.reset(); - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }); - }, - - removeSlide: function () { - var self = this; - var $currentSlide = self.$target.find(".slider .slide.selected"); - - $currentSlide.remove(); - _.defer(function () { - self.reset(); - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }); - }, - - cleanForSave: function () { - var self = this; - self.$target - .find(".s_css_slider_pagination").remove().end() - .find(".navigation .prev").addClass("inactive").end() - .find(".navigation .next").removeClass("inactive").end() - .find(".slider .slide").removeClass("selected move-left").end() - .find(".slider .slide").first().addClass("selected"); - }, - }); -}); diff --git a/theme_artists/theme_common/static/src/js/s_css_slider_frontend.js b/theme_artists/theme_common/static/src/js/s_css_slider_frontend.js deleted file mode 100644 index 99d225c..0000000 --- a/theme_artists/theme_common/static/src/js/s_css_slider_frontend.js +++ /dev/null @@ -1,122 +0,0 @@ -odoo.define('theme_common.s_css_slider_frontend', function (require) { - 'use strict'; - - var publicWidget = require('web.public.widget'); - - publicWidget.registry.s_css_slider = publicWidget.Widget.extend({ - selector: ".s_css_slider", - disabledInEditableMode: false, - - start: function () { - var self = this; - var $container = self.$target; - $container.find(".s_css_slider_pagination").remove(); - // create slider pagination - var sliderPagination = self.createSliderPagination($container); - self.bindEvents($container, sliderPagination); - $(window).on("resize", function () { - self.resizeImgs($container); - }).trigger("resize"); - return this._super.apply(this, arguments); - }, - - bindEvents: function ($container, sliderPagination) { - var self = this, - $next_btn = $container.find('.next'), - $prev_btn = $container.find('.prev'); - - $next_btn.on('click.s_css', function (e) { - self.nextSlide($container, sliderPagination); - }); - - $prev_btn.on('click.s_css', function (e) { - self.prevSlide($container, sliderPagination); - }); - - if ($container.hasClass("autoplay") && this.editableMode !== true) { - var interval; - var autoplay = function () { - interval = setInterval(function () { - if (!$next_btn.hasClass("inactive")) { - self.nextSlide($container, sliderPagination); - } else { - self.prevSlide($container, sliderPagination, 0); - } - }, 3000); - }; - autoplay(); - $container.hover(function () { clearInterval(interval); }); - $container.mouseleave(function () { autoplay(); }); - } - - sliderPagination.on('click.s_css', function () { - var selectedDot = $(this); - if (!selectedDot.hasClass('selected')) { - var selectedPosition = selectedDot.index(), - activePosition = $container.find('.slider .selected').index(); - if ( activePosition < selectedPosition) { - self.nextSlide($container, sliderPagination, selectedPosition); - } else { - self.prevSlide($container, sliderPagination, selectedPosition); - } - } - }); - }, - - resizeImgs: function ($container) { - var cont_h = $container.height(), - imgs = $container.find(".slide img"); - - imgs.each(function () { - var $img = $(this), - img_h = $img.height(); - if (img_h > cont_h) { - $img.css("width", "100%"); - $img.css("margin-top", (cont_h - img_h)/2); - } - }); - }, - - createSliderPagination: function ($container) { - var wrapper = $('
    ').insertAfter($container.find('.navigation')); - $container.find('.slider .slide').each(function (index) { - var dotWrapper = (index === 0) ? $('
  • ') : $('
  • '), - dot = $('').appendTo(dotWrapper); - dotWrapper.appendTo(wrapper); - dot.text(index+1); - }); - return wrapper.children('li'); - }, - - nextSlide: function ($container, $pagination, $n) { - var self = this, - visibleSlide = $container.find('.slider .selected'), - navigationDot = $container.find('.s_css_slider_pagination .selected'); - - if (typeof $n === 'undefined') $n = visibleSlide.index() + 1; - visibleSlide.removeClass('selected'); - $container.find('.slider .slide').eq($n).addClass('selected').prevAll().addClass('move-left'); - navigationDot.removeClass('selected'); - $pagination.eq($n).addClass('selected'); - self.updateNavigation($container, $container.find('.slider .slide').eq($n)); - }, - - prevSlide: function ($container, $pagination, $n) { - var self = this, - visibleSlide = $container.find('.slider .selected'), - navigationDot = $container.find('.s_css_slider_pagination .selected'); - - if (typeof $n === 'undefined') $n = visibleSlide.index() - 1; - visibleSlide.removeClass('selected'); - $container.find('.slider .slide').eq($n).addClass('selected').removeClass('move-left').nextAll().removeClass('move-left'); - navigationDot.removeClass('selected'); - $pagination.eq($n).addClass('selected'); - self.updateNavigation($container, $container.find('.slider .slide').eq($n)); - }, - - updateNavigation: function ($container, $active) { - $container.find('.prev').toggleClass('inactive', $active.is(':first-child')); - $container.find('.next').toggleClass('inactive', $active.is(':last-child')); - }, - }); -}); diff --git a/theme_artists/theme_common/static/src/js/s_google_map_editor.js b/theme_artists/theme_common/static/src/js/s_google_map_editor.js deleted file mode 100644 index 9a5b4d7..0000000 --- a/theme_artists/theme_common/static/src/js/s_google_map_editor.js +++ /dev/null @@ -1,149 +0,0 @@ -odoo.define('theme_common.s_google_map_editor', function (require) { -'use strict'; - -var Dialog = require('web_editor.widget').Dialog; -var core = require('web.core'); -var sOptions = require('web_editor.snippets.options'); -var googleScriptLoaded = require('theme_common.s_google_map_frontend').googleScriptLoaded; - -var _t = core._t; - -sOptions.registry.map = sOptions.Class.extend({ - xmlDependencies: ['/theme_common/static/src/xml/s_google_map_modal.xml'], - defaultLocation: '(50.854975,4.3753899)', - - /** - * @override - */ - onBuilt: function () { - this._super.apply(this, arguments); - this.map('click', null, null); - }, - - //-------------------------------------------------------------------------- - // Options - //-------------------------------------------------------------------------- - - /** - * Opens the customization dialog. - * - * @see this.selectClass for parameters - */ - map: function (previewMode, value, $opt) { - var self = this; - - this.dialog = new Dialog(this, { - size: 'medium', - title: _t("Customize your map"), - buttons: [ - {text: _t("Save"), classes: 'btn-primary', close: true, click: function () { - if (!this.$('#placeBk').val()) { - this.$('#placeBk').val(self.defaultLocation); - } - self.$target.attr({ - 'data-map-gps': this.$('#placeBk').val(), - 'data-pin-style': this.$('#pin_style').val(), - 'data-pin-address': this.$('#pin_address').val(), - }); - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }}, - {text: _t("Cancel"), close: true} - ], - $content: $(core.qweb.render('theme_common.s_google_map_modal')) - }); - - this.dialog.opened().then((function () { - this.$('#pin_address').val(self.$target.attr('data-pin-address')); - this.$('#pin_style').val(self.$target.attr('data-pin-style')); - this.$('#placeBk').val(self.$target.attr('data-map-gps')); - var autocomplete = new google.maps.places.Autocomplete(this.$('#pin_address').get(0), {types: ['geocode']}); - google.maps.event.addListener(autocomplete, 'place_changed', function () { - var place = autocomplete.getPlace(); - self.dialog.$('#placeBk').val(place.geometry ? place.geometry.location : self.defaultLocation); - }); - }).bind(this.dialog)); - - googleScriptLoaded.then(function () { - self.dialog.open(); - }); - }, - /** - * Adapts map's type. - * - * @see this.selectClass for parameters - */ - mapType: function (previewMode, value, $opt) { - this.$target.attr('data-map-type', value); - this.$target.attr('data-map-color', ''); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - /** - * Adapts map's color. - * - * @see this.selectClass for parameters - */ - mapColor: function (previewMode, value, $opt) { - this.$target.attr('data-map-color', value); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - /** - * Adapts map's zoom. - * - * @see this.selectClass for parameters - */ - mapZoom: function (previewMode, value, $opt) { - this.$target.attr('data-map-zoom', value); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - /** - * Adapts map's location. - * - * @see this.selectClass for parameters - */ - mapGps: function (previewMode, value, $opt) { - this.$target.attr('data-map-gps', value); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - - //-------------------------------------------------------------------------- - // Private - //-------------------------------------------------------------------------- - - /** - * @override - */ - _setActive: function () { - this.$el.find('[data-map-type]') - .removeClass('active') - .filter('[data-map-type="' + this.$target.attr('data-map-type') + '"]') - .addClass('active'); - this.$el.find('[data-map-color]') - .removeClass('active') - .filter('[data-map-color="' + this.$target.attr('data-map-color') + '"]') - .addClass('active'); - this.$el.find('[data-map-zoom]') - .removeClass('active') - .filter('[data-map-zoom="' + this.$target.attr('data-map-zoom') + '"]') - .addClass('active'); - this.$el.find('[data-map-gps]') - .removeClass('active') - .filter('[data-map-gps="' + this.$target.attr('data-map-gps') + '"]') - .addClass('active'); - }, -}); -}); diff --git a/theme_artists/theme_common/static/src/js/s_google_map_frontend.js b/theme_artists/theme_common/static/src/js/s_google_map_frontend.js deleted file mode 100644 index a22cb5b..0000000 --- a/theme_artists/theme_common/static/src/js/s_google_map_frontend.js +++ /dev/null @@ -1,144 +0,0 @@ -odoo.define('theme_common.s_google_map_frontend', function (require) { -'use strict'; - -var core = require('web.core'); -var publicWidget = require('web.public.widget'); -var googleScriptLoaded = $.Deferred(); - -var _t = core._t; - -publicWidget.registry.s_google_map = publicWidget.Widget.extend({ - selector: '.s_google_map', - disabledInEditableMode: false, - - /** - * @override - */ - start: function () { - var self = this; - var defs = [this._super.apply(this, arguments)]; - - if (typeof google !== 'object' || typeof google.maps !== 'object') { - if (!publicWidget.registry.s_google_map.isScriptLoading) { - publicWidget.registry.s_google_map.isScriptLoading = true; - window.odoo_s_google_map_redraw_all = function odoo_s_google_map_redraw_all() { - _.each($('section.s_google_map'), function (map) { - self.trigger_up('widgets_start_request', { - editableMode: self.editableMode, - $target: $(map), - }); - }); - publicWidget.registry.s_google_map.isScriptLoading = false; - googleScriptLoaded.resolve(); - }; - - defs.push(this._rpc({ - route: '/theme_common/google_maps_api_key', - }).then(function (data) { - var key_param = ''; - var data_json = JSON.parse(data); - if (data_json.google_maps_api_key !== '') { - key_param = '&key=' + data_json.google_maps_api_key; - } - $('head').append($(' - - - - - diff --git a/theme_artists/theme_monglia/views/customize_modal.xml b/theme_artists/theme_monglia/views/customize_modal.xml deleted file mode 100644 index 3eb70ea..0000000 --- a/theme_artists/theme_monglia/views/customize_modal.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - diff --git a/theme_artists/theme_monglia/views/images_content.xml b/theme_artists/theme_monglia/views/images_content.xml deleted file mode 100644 index a67281a..0000000 --- a/theme_artists/theme_monglia/views/images_content.xml +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - theme_common.image_content_01 - theme_common.image_content_01 - /theme_monglia/static/src/img/content/content_img_01.png - - - theme_common.image_content_02 - theme_common.image_content_02 - /theme_monglia/static/src/img/content/content_img_02.jpg - - - theme_common.image_content_03 - theme_common.image_content_03 - /theme_monglia/static/src/img/content/content_img_03.jpg - - - theme_common.image_content_04 - theme_common.image_content_04 - /theme_monglia/static/src/img/content/content_img_04.jpg - - - theme_common.image_content_05 - theme_common.image_content_05 - /theme_monglia/static/src/img/content/content_img_05.jpg - - - theme_common.image_content_06 - theme_common.image_content_06 - /theme_monglia/static/src/img/content/content_img_06.jpg - - - theme_common.image_content_07 - theme_common.image_content_07 - /theme_monglia/static/src/img/content/content_img_07.jpg - - - theme_common.image_content_08 - theme_common.image_content_08 - /theme_monglia/static/src/img/content/content_img_08.png - - - theme_common.image_content_09 - theme_common.image_content_09 - /theme_monglia/static/src/img/content/content_img_09.jpg - - - theme_common.image_content_10 - theme_common.image_content_10 - /theme_monglia/static/src/img/content/content_img_10.jpg - - - theme_common.image_content_11 - theme_common.image_content_11 - /theme_monglia/static/src/img/content/content_img_11.jpg - - - theme_common.image_content_12 - theme_common.image_content_12 - /theme_monglia/static/src/img/content/content_img_12.jpg - - - theme_common.image_content_13 - theme_common.image_content_13 - /theme_monglia/static/src/img/content/content_img_13.jpg - - - theme_common.image_content_14 - theme_common.image_content_14 - /theme_monglia/static/src/img/content/content_img_14.jpg - - - - - theme_common.image_product_01 - theme_common.image_product_01 - /theme_monglia/static/src/img/content/product_img_01.jpg - - - theme_common.image_product_02 - theme_common.image_product_02 - /theme_monglia/static/src/img/content/product_img_02.jpg - - - theme_common.image_product_03 - theme_common.image_product_03 - /theme_monglia/static/src/img/content/product_img_03.jpg - - - theme_common.image_product_04 - theme_common.image_product_04 - /theme_monglia/static/src/img/content/product_img_04.jpg - - - theme_common.image_product_05 - theme_common.image_product_05 - /theme_monglia/static/src/img/content/product_img_05.jpg - - - theme_common.image_product_06 - theme_common.image_product_06 - /theme_monglia/static/src/img/content/product_img_06.jpg - - - theme_common.image_product_07 - theme_common.image_product_07 - /theme_monglia/static/src/img/content/product_img_07.jpg - - - theme_common.image_product_08 - theme_common.image_product_08 - /theme_monglia/static/src/img/content/product_img_08.jpg - - - theme_common.image_product_09 - theme_common.image_product_09 - /theme_monglia/static/src/img/content/product_img_09.jpg - - - theme_common.image_product_10 - theme_common.image_product_10 - /theme_monglia/static/src/img/content/product_img_10.jpg - - - theme_common.image_product_11 - theme_common.image_product_11 - /theme_monglia/static/src/img/content/product_img_11.jpg - - - diff --git a/theme_artists/theme_monglia/views/images_library.xml b/theme_artists/theme_monglia/views/images_library.xml deleted file mode 100644 index 3e00e67..0000000 --- a/theme_artists/theme_monglia/views/images_library.xml +++ /dev/null @@ -1,107 +0,0 @@ - - - - - theme_monglia.bg_img_01 - theme_monglia.background_img_01 - /theme_monglia/static/src/img/library/bg1.jpg - - - theme_monglia.bg_img_02 - theme_monglia.background_img_02 - /theme_monglia/static/src/img/library/bg2.jpg - - - theme_monglia.bg_img_03 - theme_monglia.background_img_03 - /theme_monglia/static/src/img/library/bg3.jpg - - - theme_monglia.bg_img_04 - theme_monglia.background_img_04 - /theme_monglia/static/src/img/library/bg4.jpg - - - theme_monglia.bg_img_05 - theme_monglia.background_img_05 - /theme_monglia/static/src/img/library/bg5.jpg - - - theme_monglia.bg_img_06 - theme_monglia.background_img_06 - /theme_monglia/static/src/img/library/bg6.jpg - - - theme_monglia.bg_img_07 - theme_monglia.background_img_07 - /theme_monglia/static/src/img/library/bg7.jpg - - - theme_monglia.bg_img_08 - theme_monglia.background_img_08 - /theme_monglia/static/src/img/library/bg8.jpg - - - theme_monglia.bg_img_09 - theme_monglia.background_img_09 - /theme_monglia/static/src/img/library/bg9.jpg - - - theme_monglia.bg_img_10 - theme_monglia.background_img_10 - /theme_monglia/static/src/img/library/bg10.jpg - - - - - theme_monglia.bg_pattern_01 - theme_monglia.background_pattern_01 - /theme_monglia/static/src/img/pattern/pattern_01.png - - - theme_monglia.bg_pattern_02 - theme_monglia.background_pattern_02 - /theme_monglia/static/src/img/pattern/pattern_02.png - - - theme_monglia.bg_pattern_03 - theme_monglia.background_pattern_03 - /theme_monglia/static/src/img/pattern/pattern_03.png - - - theme_monglia.bg_pattern_04 - theme_monglia.background_pattern_04 - /theme_monglia/static/src/img/pattern/pattern_04.png - - - theme_monglia.bg_pattern_05 - theme_monglia.background_pattern_05 - /theme_monglia/static/src/img/pattern/pattern_05.png - - - theme_monglia.bg_pattern_06 - theme_monglia.background_pattern_06 - /theme_monglia/static/src/img/pattern/pattern_06.png - - - theme_monglia.bg_pattern_07 - theme_monglia.background_pattern_07 - /theme_monglia/static/src/img/pattern/pattern_07.png - - - theme_monglia.bg_pattern_08 - theme_monglia.background_pattern_08 - /theme_monglia/static/src/img/pattern/pattern_08.png - - - theme_monglia.bg_pattern_09 - theme_monglia.background_pattern_09 - /theme_monglia/static/src/img/pattern/pattern_09.png - - - theme_monglia.bg_pattern_10 - theme_monglia.background_pattern_10 - /theme_monglia/static/src/img/pattern/pattern_10.png - - - diff --git a/theme_artists/theme_monglia/views/snippets.xml b/theme_artists/theme_monglia/views/snippets.xml deleted file mode 100644 index 006de3c..0000000 --- a/theme_artists/theme_monglia/views/snippets.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - diff --git a/theme_artists/views/assets.xml b/theme_artists/views/assets.xml new file mode 100644 index 0000000..122421c --- /dev/null +++ b/theme_artists/views/assets.xml @@ -0,0 +1,18 @@ + + + + + - diff --git a/theme_bewise/theme_bewise/views/customize_modal.xml b/theme_bewise/theme_bewise/views/customize_modal.xml deleted file mode 100644 index 27f71e1..0000000 --- a/theme_bewise/theme_bewise/views/customize_modal.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - diff --git a/theme_bewise/theme_bewise/views/image_content.xml b/theme_bewise/theme_bewise/views/image_content.xml deleted file mode 100644 index d65f4cc..0000000 --- a/theme_bewise/theme_bewise/views/image_content.xml +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - theme_common.image_content_logo_small - theme_common.image_content_logo_small - /theme_bewise/static/src/img/content/content_logo_small.png - - - - - theme_common.image_content_01 - theme_common.image_content_01 - /theme_bewise/static/src/img/content/content_img_01.png - - - theme_common.image_content_02 - theme_common.image_content_02 - /theme_bewise/static/src/img/content/content_img_02.png - - - theme_common.image_content_03 - theme_common.image_content_03 - /theme_bewise/static/src/img/content/content_img_03.png - - - theme_common.image_content_04 - theme_common.image_content_04 - /theme_bewise/static/src/img/content/content_img_04.png - - - theme_common.image_content_05 - theme_common.image_content_05 - /theme_bewise/static/src/img/content/content_img_05.png - - - theme_common.image_content_06 - theme_common.image_content_06 - /theme_bewise/static/src/img/content/content_img_06.png - - - theme_common.image_content_07 - theme_common.image_content_07 - /theme_bewise/static/src/img/content/content_img_07.png - - - theme_common.image_content_08 - theme_common.image_content_08 - /theme_bewise/static/src/img/content/content_img_08.png - - - theme_common.image_content_09 - theme_common.image_content_09 - /theme_bewise/static/src/img/content/content_img_09.jpg - - - theme_common.image_content_10 - theme_common.image_content_10 - /theme_bewise/static/src/img/content/content_img_10.jpg - - - theme_common.image_content_11 - theme_common.image_content_11 - /theme_bewise/static/src/img/content/content_img_11.jpg - - - - theme_common.image_content_13 - theme_common.image_content_13 - /theme_bewise/static/src/img/content/content_img_13.jpg - - - theme_common.image_content_14 - theme_common.image_content_14 - /theme_bewise/static/src/img/content/content_img_14.png - - - theme_common.image_content_15 - theme_common.image_content_15 - /theme_bewise/static/src/img/content/content_img_15.png - - - theme_common.image_content_16 - theme_common.image_content_16 - /theme_bewise/static/src/img/content/content_img_16.png - - - theme_common.image_content_17 - theme_common.image_content_17 - /theme_bewise/static/src/img/content/content_img_17.png - - - theme_common.image_content_18 - theme_common.image_content_18 - /theme_bewise/static/src/img/content/content_img_18.png - - - - - website.s_cover_default_image - website.s_cover_default_image - /theme_bewise/static/src/img/backgrounds/bg_img_06.jpg - - diff --git a/theme_bewise/theme_bewise/views/image_library.xml b/theme_bewise/theme_bewise/views/image_library.xml deleted file mode 100644 index c847be9..0000000 --- a/theme_bewise/theme_bewise/views/image_library.xml +++ /dev/null @@ -1,52 +0,0 @@ - - - theme_bewise.img_library_01 - theme_bewise.img_library_01 - /theme_bewise/static/src/img/library/img_library_01.jpg - - - theme_bewise.img_library_02 - theme_bewise.img_library_02 - /theme_bewise/static/src/img/library/img_library_02.jpg - - - theme_bewise.img_library_03 - theme_bewise.img_library_03 - /theme_bewise/static/src/img/library/img_library_03.jpg - - - theme_bewise.img_library_04 - theme_bewise.img_library_04 - /theme_bewise/static/src/img/library/img_library_04.jpg - - - theme_bewise.img_library_05 - theme_bewise.img_library_05 - /theme_bewise/static/src/img/library/img_library_05.jpg - - - theme_bewise.img_library_06 - theme_bewise.img_library_06 - /theme_bewise/static/src/img/library/img_library_06.jpg - - - theme_bewise.img_library_07 - theme_bewise.img_library_07 - /theme_bewise/static/src/img/library/img_library_07.jpg - - - theme_bewise.img_library_08 - theme_bewise.img_library_08 - /theme_bewise/static/src/img/library/img_library_08.jpg - - - theme_bewise.img_library_09 - theme_bewise.img_library_09 - /theme_bewise/static/src/img/library/img_library_09.jpg - - - theme_bewise.img_library_10 - theme_bewise.img_library_10 - /theme_bewise/static/src/img/library/img_library_10.jpg - - diff --git a/theme_bewise/theme_bewise/views/snippets.xml b/theme_bewise/theme_bewise/views/snippets.xml deleted file mode 100644 index f4f8910..0000000 --- a/theme_bewise/theme_bewise/views/snippets.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - diff --git a/theme_bewise/theme_bewise/views/snippets_options.xml b/theme_bewise/theme_bewise/views/snippets_options.xml deleted file mode 100644 index f780f8a..0000000 --- a/theme_bewise/theme_bewise/views/snippets_options.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - diff --git a/theme_bewise/theme_common/__init__.py b/theme_bewise/theme_common/__init__.py deleted file mode 100644 index bb0aae7..0000000 --- a/theme_bewise/theme_common/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -# -*- coding: utf-8 -*- -# Part of Odoo. See LICENSE file for full copyright and licensing details. -from . import controllers -from . import models diff --git a/theme_bewise/theme_common/__manifest__.py b/theme_bewise/theme_common/__manifest__.py deleted file mode 100644 index 650196d..0000000 --- a/theme_bewise/theme_common/__manifest__.py +++ /dev/null @@ -1,72 +0,0 @@ -{ - 'name': 'Theme Common', - 'summary': 'Snippets Library', - 'description': 'Snippets library containing snippets to be styled in themes.', - 'category': 'Hidden', - 'version': '1.1', - 'depends': ['website', 'website_theme_install'], - 'data': [ - 'data/data.xml', - 'data/image_content.xml', - 'views/assets.xml', - 'views/theme_common_templates.xml', - 'views/s_google_map.xml', - # CLEAN - 'views/s_big_image.xml', - 'views/s_big_image_parallax.xml', - 'views/s_color_blocks_2.xml', - 'views/s_color_blocks_4.xml', - 'views/s_column.xml', - 'views/s_discount.xml', - 'views/s_event_list.xml', - 'views/s_icon_box.xml', - 'views/s_pricing.xml', - 'views/s_progress_bar.xml', - 'views/s_profile.xml', - 'views/s_text_highlight.xml', - 'views/s_three_columns_circle.xml', - 'views/s_two_columns.xml', - # ENARK - 'views/s_big_icons.xml', - # BEWISE - 'views/s_mini_nav_bar.xml', - 'views/s_separator_nav.xml', - 'views/s_color_blocks_img.xml', - # ZAP - 'views/s_badge.xml', - 'views/s_images_carousel.xml', - 'views/s_images_row.xml', - 'views/s_media_list.xml', - 'views/s_news_carousel.xml', - 'views/s_numbers.xml', - 'views/s_page_header.xml', - 'views/s_process_steps.xml', - 'views/s_team_profiles.xml', - 'views/s_blockquote.xml', - 'views/s_timeline.xml', - # KIDDO - 'views/s_banner_parallax.xml', - 'views/s_features_carousel.xml', - 'views/s_header_text_big_picture.xml', - 'views/s_product_list.xml', - 'views/s_text_picture_text.xml', - 'views/s_products_carousel.xml', - # ANELUSIA - 'views/s_progress.xml', - 'views/s_menu_three_columns.xml', - # GRAPHENE - 'views/s_animated_boxes.xml', - 'views/s_showcase.xml', - 'views/s_showcase_slider.xml', - 'views/s_masonry_block.xml', - # AVANTGARDE - 'views/s_css_slider.xml', - 'views/s_showcase_image.xml', - 'views/s_clonable_boxes.xml', - # MONGLIA - 'views/s_full_menu.xml', - 'views/s_compact_menu.xml', - 'views/s_event_slide.xml', - ], - 'application': False, -} diff --git a/theme_bewise/theme_common/controllers/__init__.py b/theme_bewise/theme_common/controllers/__init__.py deleted file mode 100644 index 12a7e52..0000000 --- a/theme_bewise/theme_common/controllers/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from . import main diff --git a/theme_bewise/theme_common/controllers/main.py b/theme_bewise/theme_common/controllers/main.py deleted file mode 100644 index 2f16356..0000000 --- a/theme_bewise/theme_common/controllers/main.py +++ /dev/null @@ -1,15 +0,0 @@ -# -*- coding: utf-8 -*- -# Part of Odoo. See LICENSE file for full copyright and licensing details. - -import json - -from odoo import http -from odoo.http import request - -class ThemeCommon(http.Controller): - - @http.route('/theme_common/google_maps_api_key', type='json', auth='public', website=True) - def google_maps_api_key(self): - return json.dumps({ - 'google_maps_api_key': request.website.google_maps_api_key or '' - }) diff --git a/theme_bewise/theme_common/data/data.xml b/theme_bewise/theme_common/data/data.xml deleted file mode 100644 index 1d88569..0000000 --- a/theme_bewise/theme_common/data/data.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/theme_bewise/theme_common/data/image_content.xml b/theme_bewise/theme_common/data/image_content.xml deleted file mode 100644 index 4f17464..0000000 --- a/theme_bewise/theme_common/data/image_content.xml +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - theme_common.image_content_logo_small - theme_common.image_content_logo_small - - - - - theme_common.image_content_01 - theme_common.image_content_01 - - - theme_common.image_content_02 - theme_common.image_content_02 - - - theme_common.image_content_03 - theme_common.image_content_03 - - - theme_common.image_content_04 - theme_common.image_content_04 - - - theme_common.image_content_05 - theme_common.image_content_05 - - - theme_common.image_content_06 - theme_common.image_content_06 - - - theme_common.image_content_07 - theme_common.image_content_07 - - - theme_common.image_content_08 - theme_common.image_content_08 - - - theme_common.image_content_09 - theme_common.image_content_09 - - - theme_common.image_content_10 - theme_common.image_content_10 - - - theme_common.image_content_11 - theme_common.image_content_11 - - - theme_common.image_content_12 - theme_common.image_content_12 - - - theme_common.image_content_13 - theme_common.image_content_13 - - - theme_common.image_content_14 - theme_common.image_content_14 - - - theme_common.image_content_15 - theme_common.image_content_15 - - - theme_common.image_content_16 - theme_common.image_content_16 - - - theme_common.image_content_17 - theme_common.image_content_17 - - - theme_common.image_content_18 - theme_common.image_content_18 - - - theme_common.image_content_19 - theme_common.image_content_19 - - - theme_common.image_content_20 - theme_common.image_content_20 - - - theme_common.image_content_21 - theme_common.image_content_21 - - - theme_common.image_content_22 - theme_common.image_content_22 - - - theme_common.image_content_23 - theme_common.image_content_23 - - - theme_common.image_content_24 - theme_common.image_content_24 - - - theme_common.image_content_25 - theme_common.image_content_25 - - - theme_common.image_content_26 - theme_common.image_content_26 - - - theme_common.image_content_27 - theme_common.image_content_27 - - - theme_common.image_content_28 - theme_common.image_content_28 - - - theme_common.image_content_29 - theme_common.image_content_29 - - - theme_common.image_content_30 - theme_common.image_content_30 - - - - - theme_common.image_product_01 - theme_common.image_product_01 - - - theme_common.image_product_02 - theme_common.image_product_02 - - - theme_common.image_product_03 - theme_common.image_product_03 - - - theme_common.image_product_04 - theme_common.image_product_04 - - - theme_common.image_product_05 - theme_common.image_product_05 - - - theme_common.image_product_06 - theme_common.image_product_06 - - - theme_common.image_product_07 - theme_common.image_product_07 - - - theme_common.image_product_08 - theme_common.image_product_08 - - - theme_common.image_product_09 - theme_common.image_product_09 - - - theme_common.image_product_10 - theme_common.image_product_10 - - - theme_common.image_product_11 - theme_common.image_product_11 - - diff --git a/theme_bewise/theme_common/i18n/de.po b/theme_bewise/theme_common/i18n/de.po deleted file mode 100644 index 441a914..0000000 --- a/theme_bewise/theme_common/i18n/de.po +++ /dev/null @@ -1,2157 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * theme_common -# -# Translators: -# Felix Schubert , 2019 -# Katharina Moritz , 2019 -# Niki Waibel, 2019 -# Jan Meyer, 2019 -# e2f , 2019 -# Martin Trigaux, 2019 -# Ermin Trevisan , 2019 -# Luc Muller , 2019 -# Marco Tarsia , 2019 -# Rudolf Schnapka , 2019 -# Leon Grill , 2019 -# Chris Egal , 2019 -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 12.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-24 09:00+0000\n" -"PO-Revision-Date: 2019-04-24 11:21+0000\n" -"Last-Translator: Chris Egal , 2019\n" -"Language-Team: German (https://www.transifex.com/odoo/teams/41243/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$15/mo" -msgstr "$15 mtl." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$29/mo" -msgstr "$29 mtl." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$69/mo" -msgstr "$69 mtl." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$99/mo" -msgstr "$99 mtl." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- ART DIRECTOR -" -msgstr "- ART DIRECTOR -" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- PARTNER -" -msgstr "- PARTNER -" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- TRAINEE -" -msgstr "- PRAKTIKANT -" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "-50% OFF" -msgstr "-50% RABATT" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "...and switch the timeline contents to fit your needs." -msgstr "...und wechseln Sie den Inhalt der Zeitachse nach Ihren Bedürfnissen." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 03-11-2014 ///" -msgstr "/// 03-11-2014 ///" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 08-11-2014 ///" -msgstr "/// 08-11-2014 ///" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 22-10-2014 ///" -msgstr "/// 22-10-2014 ///" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 28-10-2014 ///" -msgstr "/// 28-10-2014 ///" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "02" -msgstr "02" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "05" -msgstr "05" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "1000 Apps" -msgstr "1000 Apps" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "12:00 AM" -msgstr "12:00" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "18" -msgstr "18" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "20.000 Users" -msgstr "20.000 Benutzer" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "2014" -msgstr "2014" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "21" -msgstr "21" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "234 Clients" -msgstr "234 Kunden" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "25%" -msgstr "25%" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "30 Countries" -msgstr "30 Länder" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "30%" -msgstr "30%" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "50$" -msgstr "50$" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "75 Partners" -msgstr "75 Partner" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Page Title" -msgstr "Seitenüberschrift" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map -msgid "" -"Visit us:\n" -" Our office is located in the northeast of Brussels. TEL (555) 432 2365" -msgstr "" -"Besuchen Sie uns:\n" -" Unser Büro befindet sich im Nordosten Brüssels. TEL (555) 432 2365" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Date" -msgstr "" -"\n" -" Datum" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Images" -msgstr "Bilder" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Time" -msgstr "" -"\n" -" Uhrzeit" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid " More Details" -msgstr " Mehr Einzelheiten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Notes" -msgstr "Hinweise" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Location" -msgstr "" -"\n" -" Ort" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 100+ conferences" -msgstr "" -"\n" -" 100+ Konferenzen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "News" -msgstr "Nachrichten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Edit" -msgstr "" -"Bearbeiten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 2,000+ attendees" -msgstr "" -"\n" -" 2,000+ Teilnehmer" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -msgid "Position" -msgstr "Stelle" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid " Autoplay" -msgstr " Autoplay" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Image position" -msgstr "Bildposition" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Inner Spacing" -msgstr "Innere Abstände" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles_options -msgid "Color" -msgstr "Farbe" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Colors" -msgstr "Farben" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Facebook" -msgstr " Facebook" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Map Options" -msgstr "Karten-Optionen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block_option -msgid "Video Options" -msgstr "Video Optionen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Type" -msgstr "Typ" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Zoom" -msgstr "Zoom" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " GitHub" -msgstr " GitHub" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "" -" - An additional " -"information" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -" An additional " -"information" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Linkedin" -msgstr " Linkedin" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Styles" -msgstr "Aussehen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Add Slide" -msgstr "Folie hinzufügen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Add a new Slide" -msgstr "Neue Folie hinzufügen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Caption position" -msgstr "Position Legende" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Delete Slide" -msgstr "Folie löschen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Remove current slide" -msgstr "Aktuelle Folie entfernen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "* Conditions and restrictions apply." -msgstr "* es gelten Konditionen und Einschränkungen." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Clients" -msgstr "Kunden" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Followers" -msgstr "Beobachter" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Projects" -msgstr "Projekte" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2015" -msgstr "2015" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2018" -msgstr "2018" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2019" -msgstr "2019" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" Next" -msgstr "" -"\n" -" Nächste" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "" -"\n" -" Next" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" Previous" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "" -"\n" -" Previous" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "First feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Another feature" -msgstr "Ein weiteres Feature" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Second feature" -msgstr "Zweites Feature" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Last Feature" -msgstr "Letztes Feature" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Link" -msgstr " Link" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Info" -msgstr " Info" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Chardonnay\n" -" Sonoma Coast, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Malbec\n" -" Mendoza, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Pinot Noir\n" -" California, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Rose\n" -" Napa, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"rum, lime, juice cane sugar\n" -" fresh mint, soda, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"whiskey, vermouth, angostura,\n" -" maraschino cherry" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"white tequila, frenadine,\n" -" orange juice, soda, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"white tequila, triple sec,\n" -" lime juice, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "" -"\n" -" Tag\n" -" \n" -" \n" -" Category\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 3 months ago\n" -" \n" -" \n" -" by John DOE\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_badge -msgid "" -"\n" -" Category\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" New\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"18\n" -" December" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"3\n" -" January" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "12" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "45" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "37" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "01." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "02." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Close" -msgstr "Schließen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress_bar -msgid "80% Development" -msgstr "80% Entwicklung" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "80% Html5/CSS3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "85% Bootstrap" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "99% COMPLETE" -msgstr "99% ERLEDIGT" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "A caption for this image" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " 20,7K " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "120GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "143" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "245" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "50GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "80GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "COMPANY: Odoo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "FUNCTION: Web Designer / UI." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Free Billing Systems" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "" -"Increase the amount of your visitors by offering them great discount.\n" -"
    Let them find the coupon code." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "My great button" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "" -"Skills: html5, css3, jquery, " -"bootstrap3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Domains" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited MySQL Databases" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "" -"Write something about you.This is a good way to briefly " -"tell your visitors who you are and what you do. Link Clean Flat Profile to " -"your social networks and use the customizable progress bars to show your " -"skills." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "A Big Image and a Paragraph" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image_parallax -msgid "A Business Theme For Odoo CMS" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "A COLOR BLOCK" -msgstr "EIN FARBIGER BAUSTEIN" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "A Great Way to Present Your Team" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "A Great Way to Show Your Numbers" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "A Great way to show your range" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "A great title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story. Write one or two paragraphs " -"describing your product or services. To be successful your content needs to " -"be useful to your readers. Start with the customer. Find out what they want " -"and give it to them." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story. Write one or two paragraphs " -"describing your product or services. To be successful your content needs to " -"be useful to your readers. Start with the customer. Find out what they want " -"and give it to them. A great way to catch your reader's attention is to tell" -" a story. Everything you consider writing can be told as a story. Write one " -"or two paragraphs describing your product or services. To be successful your" -" content needs to be useful to your readers. Start with the customer. Find " -"out what they want and give it to them." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -"A timeline is a graphical representation on which important events are " -"marked." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "ALL DAY" -msgstr "DEN GANZEN TAG" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "About Me" -msgstr "Über mich" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Add Slide" -msgstr "Folie hinzufügen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Add to cart" -msgstr "In den Einkaufskorb" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:31 -#, python-format -msgid "" -"Add videos, playlists or other contents pasting the iframe code or video url" -" into the box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Add your co-Workers and a link to their profiles." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:5 -#, python-format -msgid "Address" -msgstr "Adresse" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Amazing pages" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "An Other Color Block" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "And a great subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Animal Cannibals" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Animated" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:109 -#, python-format -msgid "Apply" -msgstr "Anwenden" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:81 -#, python-format -msgid "Autoplay" -msgstr "Automatisch abspielen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"BLACKBIRD VINEYARDS | € " -"11.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Basement Jaxx" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Beautiful snippets" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "Big Icons" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Bigger" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Left" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Right" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box Description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Build relationships and recognition by staying in touch with your customers." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"COLORES DEL SOL | € " -"12.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "COUPON" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:53 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:108 -#, python-format -msgid "Cancel" -msgstr "Abbrechen" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_frontend.js:51 -#, python-format -msgid "Cannot load google map, check your configuration !" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Change the color of this box" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Click here" -msgstr "Hier klicken" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Click on the icon to adapt it
    to your purpose." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Click the" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:8 -#, python-format -msgid "Close" -msgstr "Abschliessen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Cocktails" -msgstr "Cocktails" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Collapsable Tab Code" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "" -"Color blocks are a simple and effective way to present and highlight" -" your content. Choose an image or a color for the background. You " -"can even resize and duplicate the blocks to create your own layout. Add " -"images or icons to customize the blocks." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_pricing -msgid "Colors" -msgstr "Farben" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Continue reading " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Convert your visitors to customers." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:36 -#, python-format -msgid "Copy the code provided in the expanded box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Create an irresistible website." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Customize Backgrounds" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:37 -#, python-format -msgid "Customize your map" -msgstr "Passen Sie Ihre Karte an" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Cycling through elements" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DECISIONS, DECISIONS, AND EVEN MORE DECISIONS" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DESIGN, DESIGN, AND EVEN MORE DESIGN" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "DISCOVER THE PRODUCT" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Deciding the features" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:24 -#, python-format -msgid "Default" -msgstr "Standard" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "" -"Design expression comes from the combined effect of all elements in a " -"product. Colour tone, shape and size should direct a person's thoughts " -"towards buying the product. Therefore it is in the product designer's best " -"interest to consider the audiences who are most likely to be the product's " -"end consumers. Keeping in mind how consumers will perceive the product " -"during the design process will direct towards the product’s success in the " -"market. However, even within a specific audience, it is challenging to cater" -" to each possible personality within that group." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Discover" -msgstr "Entdecke" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Discover all the features" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Display Your Last Activities" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Double-click an icon to change it." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Drink menu" -msgstr "Getränkekarte" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Duplicate blocks
    to add more steps." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Edit this text and change it with your content." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Embed" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Event Heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"FRANCIS FORD COPPOLA | €" -" 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "False" -msgstr "Falsch" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "Features" -msgstr "Funktionen" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:92 -#, python-format -msgid "Fill container with video" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:23 -#, python-format -msgid "Flat" -msgstr "Minimalistisch" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Fleetwood Mac" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "" -"Focus on what the customer would like to know, not what you want to show. " -"Write a small explanation of this great feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Fonts" -msgstr "Schriftarten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Freak!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Full Detailed Price List" -msgstr "Detaillierte Preisliste" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "GIFT" -msgstr "GESCHENK" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Get Delivered" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Get a code" -msgstr "Einen Code erhalten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Getting feedback" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:22 -#, python-format -msgid "HTML5 Video - Youtube - Vimeo - Dailymotion" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Hamburgers" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:32 -#, python-format -msgid "Here’s how to embed a Youtube video:" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Highlight Your Content" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Honey Dijon Chicken Burger | " -"€ 12.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Hybrid" -msgstr "Hybrid" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Icon Box / Features List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Images Carousel" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "" -"In a systematic approach, product designers conceptualize and evaluate " -"ideas, turning them into tangible inventions and products. The product " -"designer's role is to combine art, science, and technology to create new " -"products that other people can use." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Introduce your content in few lines." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "It is super easy to resize and/or duplicate each box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "John DOE" -msgstr "Hans MUSTER" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "John DOE • CEO of MyCompany" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "John Doe" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Jul" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "LV5MAY14" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Layout" -msgstr "Layout" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Left" -msgstr "Links" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Let your customers follow
    and understand your process." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:74 -#, python-format -msgid "Loop video" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iste eius, nam " -"optio dolor mollitia, consectetur asperiores libero illum. Repellendus, " -"molestias consequatur rem ipsa. Tempora omnis eius, ipsam quaerat optio " -"suscipit necessitatibus aliquam obcaecati. Vero quia mollitia repellendus " -"maxime, alias. Harum!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laboriosam " -"repellendus sunt nobis libero delectus aperiam animi porro, optio expedita " -"odio impedit quae praesentium fugit consequuntur vero architecto, excepturi," -" maiores aliquid." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perspiciatis " -"nobis, tempore voluptatem qui dolorum quae." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellendus ullam " -"minus qui aliquid optio, animi nam odio iste quisquam voluptas laudantium, " -"magni recusandae nemo eligendi!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rerum incidunt, " -"eum quae neque officiis dignissimos, veritatis amet, dolorum aperiam tempore" -" sed. Modi rerum velit itaque ex nobis vero necessitatibus adipisci eaque " -"cum iste nisi molestias quibusdam, voluptate odit deserunt, beatae." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vitae, inventore " -"accusantium dolores. Ad non necessitatibus recusandae cupiditate animi " -"quibusdam enim earum, nulla, qui. Dolorem sunt impedit similique a quia " -"earum fuga unde, repellendus omnis iure." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MANHATTAN | € 12.50" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MARGARITA | € 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MOJITO | € 12.00" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:20 -#, python-format -msgid "Marker Style" -msgstr "Marker-Stil" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Media heading" -msgstr "Medientitel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Medium" -msgstr "Mittel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Menu A'la carte" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "More Features" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:60 -#, python-format -msgid "Muted" -msgstr "Stummgeschaltet" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "My Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Next" -msgstr "Weiter" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Nice % Discount Tables" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Nice and Efficient Events List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Normal" -msgstr "Normal" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "OLV4SY3R" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "OUR CATALOG" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:54 -#, python-format -msgid "Options" -msgstr "Optionen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -msgid "Organize Your Content with These Three Columns" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Organize Your Content with These Two Columns" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Outstanding images" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"PATZ AND HALL | € " -"12.50" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:37 -#, python-format -msgid "Paste the code into the box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Pay" -msgstr "Zahlen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Planning" -msgstr "Planung" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Post heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Prepare for the future of eCommerce." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Preparing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "Present your products" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Present your products online!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Previous" -msgstr "Vorherige" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Pro" -msgstr "Pro" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Producing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "" -"Product design is the process of creating a new product to be sold by a " -"business to its customers. A very broad concept, it is essentially the " -"efficient and effective generation and development of ideas through a " -"process that leads to new products." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 01" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 02" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 03" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Put the focus on what you have to say!" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:98 -#, python-format -msgid "Put video in container" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "REGISTER " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "Read more" -msgstr "Mehr lesen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Register" -msgstr "Anmelden" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Remove current slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Resize and Duplicate" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "Resume with A Nice Subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Resume with a Subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Right" -msgstr "Rechts" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "RoadMap" -msgstr "Straßenkarte" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Sandwich with Ham and Cheese | " -"€ 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Satellite" -msgstr "Satellit" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:39 -#, python-format -msgid "Save" -msgstr "Speichern" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 1" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 2" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 4" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 5" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 6" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:9 -#, python-format -msgid "Select a video" -msgstr "Ein Video wählen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Select and delete blocks
    to remove some steps." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Select the Colors" -msgstr "Farben wählen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Select your favorite font combination to emphase your texts." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Sep" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block -msgid "Set a catchy headline" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "Share" -msgstr "Teilen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Shipping" -msgstr "Versand" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:67 -#, python-format -msgid "Show controls" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Showcase Your Services and Features" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Sign in" -msgstr "Anmelden" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "Slide title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Small" -msgstr "Sehr klein" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Speakers from all over the world will join our experts to give inspiring " -"talks on various topics." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Striped" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Style" -msgstr "Stil" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"TEQUILA SUNRISE | € " -"11.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_menu_three_columns -msgid "Take a tour" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Terrain" -msgstr "Gelände" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Testing" -msgstr "Softwaretest" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Text Highlight" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The best approach" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "The famous band comes last time in this year, don't miss it!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The latest technology" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "The process from paper version" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "The product which fits your needs" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "" -"The solution to that is to create a product that, in its designed appearance" -" and function, expresses a personality or tells a story. Products that carry" -" such attributes are more likely to give off a stronger expression that will" -" attract more consumers. On that note it is important to keep in mind that " -"design expression does not only concern the appearance of a product, but " -"also its function. For example, as humans our appearance as well as our " -"actions are subject to people's judgment when they are making a first " -"impression of us." -msgstr "" - -#. module: theme_common -#: model:ir.model,name:theme_common.model_theme_utils -msgid "Theme Utils" -msgstr "Werkzeuge" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "This Is a Color Block" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "This Is a Column" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "" -"This theme does not limit you to one setup, we prefer to give you options. " -"From boxed layout to wide, left sidebars to right and multiple headers; we " -"let you decide. That’s right, you can have your cake and eat some too." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Tiny" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_separator_nav -msgid "Top" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Left" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Right" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "True" -msgstr "Wahr" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Upcoming Events" -msgstr "Nächste Veranstaltungen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Use newsletters to increase your popularity" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:14 -#, python-format -msgid "" -"Use the 'Customize 'menu to define a fallback background image for not " -"compatible devices" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "" -"Use this building block to showcase your content with an images carousel. " -"You can edit, add or remove images using the customize options." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Use this component for creating a list of featured elements to which you " -"want to bring attention." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "" -"Use this paragraph to write a short, sweet and successful resume about this " -"member of your team." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Use this snippet to build various types of components that feature a left- " -"or right-aligned image alongside textual content. Duplicate the element to " -"create a list that fit your needs." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -"Use this timeline as a part of your resume, to show your visitors what " -"you've done in the past." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Useful options" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:17 -#, python-format -msgid "Video" -msgstr "Video" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_product_list -msgid "View item" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "We have Awesome Products" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Which trends to follow? Which ideas will work?
    Opening Keynote - " -"Presented by John DOE." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Wine" -msgstr "Wein" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "" -"With Theme Clean you get a list of your events with date, time, description, etc. Select the simple or image mode and edit your content.\n" -"
    You can link your events to your favorite social network." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "With a great subtitle" -msgstr "Mit einem großartigen Untertitel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "With the most effective technique" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Write Something Nice for Your Users" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Write a description of your event here." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "" -"Write a quote here from one of your customers. Quotes are a great way to " -"build confidence in your products or services." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Write one or two paragraphs describing your product" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "" -"Write one or two paragraphs describing your product, services or a specific " -"feature. To be successful your content needs to be useful to your readers." -msgstr "" -"Schreiben Sie ein oder zwei Absätze, die Produkte, Dienste oder spezifische " -"Funktionen beschreiben. Um erfolgreich zu sein, müssen Ihre Inhalte nützlich" -" für Ihre Leser sein." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can change the box color by using the customize option." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "You can edit, duplicate..." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can even replace the icon by one of your choice." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "You get a free drink with your entrance!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Your Event Name" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:11 -#, python-format -msgid "Your address" -msgstr "Ihre Adresse" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Your title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Your website is where almost all of your customers will end up first. " -"
    Let's clear up what it takes to give them the best experience with it." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "ZUY4OPLQ" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "card" -msgstr "Karte" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:16 -#, python-format -msgid "e.g. De Brouckere, Brussels, Belgium" -msgstr "z.B. De Brouckere, Brüssel, Belgien" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:44 -#, python-format -msgid "iframe" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "link under the video." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "link." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "off" -msgstr "Rabatt" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:41 -#, python-format -msgid "share" -msgstr "teilen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "with this theme." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "worldwilde" -msgstr "" diff --git a/theme_bewise/theme_common/i18n/es.po b/theme_bewise/theme_common/i18n/es.po deleted file mode 100644 index 2d97283..0000000 --- a/theme_bewise/theme_common/i18n/es.po +++ /dev/null @@ -1,2146 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * theme_common -# -# Translators: -# Leonardo J. Caballero G. , 2019 -# Nhomar Hernández [Vauxoo] , 2019 -# Gabriel Umana , 2019 -# Pierre-Antoine Magnet , 2019 -# JOSE ALEJANDRO ECHEVERRI VALENCIA , 2019 -# Nicolás Broggi , 2019 -# Carolina Gonzalez , 2019 -# e2f , 2019 -# Martin Trigaux, 2019 -# Daniel Blanco , 2019 -# Alejandro Die Sanchis , 2019 -# Antonio Trueba, 2019 -# RGB Consulting , 2019 -# Cris Martin , 2019 -# Carlos Lopez , 2019 -# Noemi Nahomy , 2019 -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 12.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-24 09:00+0000\n" -"PO-Revision-Date: 2019-04-24 11:21+0000\n" -"Last-Translator: Noemi Nahomy , 2019\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_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$15/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$29/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$69/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$99/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- ART DIRECTOR -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- PARTNER -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- TRAINEE -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "-50% OFF" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "...and switch the timeline contents to fit your needs." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 03-11-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 08-11-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 22-10-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 28-10-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "02" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "05" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "1000 Apps" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "12:00 AM" -msgstr "12:00 AM" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "18" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "20.000 Users" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "2014" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "21" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "234 Clients" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "25%" -msgstr "25%" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "30 Countries" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "30%" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "50$" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "75 Partners" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Page Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map -msgid "" -"Visit us:\n" -" Our office is located in the northeast of Brussels. TEL (555) 432 2365" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Date" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Images" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Time" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid " More Details" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Notes" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Location" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 100+ conferences" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "News" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Edit" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 2,000+ attendees" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -msgid "Position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid " Autoplay" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Image position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Inner Spacing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles_options -msgid "Color" -msgstr "Color" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Colors" -msgstr "Colores" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Facebook" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Map Options" -msgstr "Opciones de Mapas" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block_option -msgid "Video Options" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Type" -msgstr "Tipo" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Zoom" -msgstr "Acercar" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " GitHub" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "" -" - An additional " -"information" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -" An additional " -"information" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Linkedin" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Styles" -msgstr "Estilos" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Add Slide" -msgstr "Añadir diapositiva" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Add a new Slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Caption position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Delete Slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Remove current slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "* Conditions and restrictions apply." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Clients" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Followers" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Projects" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2015" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2018" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2019" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" Next" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "" -"\n" -" Next" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" Previous" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "" -"\n" -" Previous" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "First feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Another feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Second feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Last Feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Link" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Info" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Chardonnay\n" -" Sonoma Coast, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Malbec\n" -" Mendoza, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Pinot Noir\n" -" California, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Rose\n" -" Napa, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"rum, lime, juice cane sugar\n" -" fresh mint, soda, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"whiskey, vermouth, angostura,\n" -" maraschino cherry" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"white tequila, frenadine,\n" -" orange juice, soda, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"white tequila, triple sec,\n" -" lime juice, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "" -"\n" -" Tag\n" -" \n" -" \n" -" Category\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 3 months ago\n" -" \n" -" \n" -" by John DOE\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_badge -msgid "" -"\n" -" Category\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" New\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"18\n" -" December" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"3\n" -" January" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "12" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "45" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "37" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "01." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "02." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Close" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress_bar -msgid "80% Development" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "80% Html5/CSS3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "85% Bootstrap" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "99% COMPLETE" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "A caption for this image" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " 20,7K " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "120GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "143" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "245" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "50GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "80GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "COMPANY: Odoo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "FUNCTION: Web Designer / UI." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Free Billing Systems" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "" -"Increase the amount of your visitors by offering them great discount.\n" -"
    Let them find the coupon code." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "My great button" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "" -"Skills: html5, css3, jquery, " -"bootstrap3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Domains" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited MySQL Databases" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "" -"Write something about you.This is a good way to briefly " -"tell your visitors who you are and what you do. Link Clean Flat Profile to " -"your social networks and use the customizable progress bars to show your " -"skills." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "A Big Image and a Paragraph" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image_parallax -msgid "A Business Theme For Odoo CMS" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "A COLOR BLOCK" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "A Great Way to Present Your Team" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "A Great Way to Show Your Numbers" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "A Great way to show your range" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "A great title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story. Write one or two paragraphs " -"describing your product or services. To be successful your content needs to " -"be useful to your readers. Start with the customer. Find out what they want " -"and give it to them." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story. Write one or two paragraphs " -"describing your product or services. To be successful your content needs to " -"be useful to your readers. Start with the customer. Find out what they want " -"and give it to them. A great way to catch your reader's attention is to tell" -" a story. Everything you consider writing can be told as a story. Write one " -"or two paragraphs describing your product or services. To be successful your" -" content needs to be useful to your readers. Start with the customer. Find " -"out what they want and give it to them." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -"A timeline is a graphical representation on which important events are " -"marked." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "ALL DAY" -msgstr "TODO EL DÍA" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "About Me" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Add Slide" -msgstr "Añadir diapositivas" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Add to cart" -msgstr "Agregar al carrito" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:31 -#, python-format -msgid "" -"Add videos, playlists or other contents pasting the iframe code or video url" -" into the box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Add your co-Workers and a link to their profiles." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:5 -#, python-format -msgid "Address" -msgstr "Dirección" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Amazing pages" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "An Other Color Block" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "And a great subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Animal Cannibals" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Animated" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:109 -#, python-format -msgid "Apply" -msgstr "Aplicar" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:81 -#, python-format -msgid "Autoplay" -msgstr "Reproducción automática" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"BLACKBIRD VINEYARDS | € " -"11.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Basement Jaxx" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Beautiful snippets" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "Big Icons" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Bigger" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Left" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Right" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box Description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Build relationships and recognition by staying in touch with your customers." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"COLORES DEL SOL | € " -"12.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "COUPON" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:53 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:108 -#, python-format -msgid "Cancel" -msgstr "Cancelar" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_frontend.js:51 -#, python-format -msgid "Cannot load google map, check your configuration !" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Change the color of this box" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Click here" -msgstr "Haga clic aquí" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Click on the icon to adapt it
    to your purpose." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Click the" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:8 -#, python-format -msgid "Close" -msgstr "Cerrar" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Cocktails" -msgstr "Cócteles" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Collapsable Tab Code" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "" -"Color blocks are a simple and effective way to present and highlight" -" your content. Choose an image or a color for the background. You " -"can even resize and duplicate the blocks to create your own layout. Add " -"images or icons to customize the blocks." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_pricing -msgid "Colors" -msgstr "Colores" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Continue reading " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Convert your visitors to customers." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:36 -#, python-format -msgid "Copy the code provided in the expanded box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Create an irresistible website." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Customize Backgrounds" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:37 -#, python-format -msgid "Customize your map" -msgstr "Personalizar su mapa" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Cycling through elements" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DECISIONS, DECISIONS, AND EVEN MORE DECISIONS" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DESIGN, DESIGN, AND EVEN MORE DESIGN" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "DISCOVER THE PRODUCT" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Deciding the features" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:24 -#, python-format -msgid "Default" -msgstr "Por defecto" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "" -"Design expression comes from the combined effect of all elements in a " -"product. Colour tone, shape and size should direct a person's thoughts " -"towards buying the product. Therefore it is in the product designer's best " -"interest to consider the audiences who are most likely to be the product's " -"end consumers. Keeping in mind how consumers will perceive the product " -"during the design process will direct towards the product’s success in the " -"market. However, even within a specific audience, it is challenging to cater" -" to each possible personality within that group." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Discover" -msgstr "Descubrir" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Discover all the features" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Display Your Last Activities" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Double-click an icon to change it." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Drink menu" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Duplicate blocks
    to add more steps." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Edit this text and change it with your content." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Embed" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Event Heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"FRANCIS FORD COPPOLA | €" -" 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "False" -msgstr "Falso" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "Features" -msgstr "Características" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:92 -#, python-format -msgid "Fill container with video" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:23 -#, python-format -msgid "Flat" -msgstr "Plano" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Fleetwood Mac" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "" -"Focus on what the customer would like to know, not what you want to show. " -"Write a small explanation of this great feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Fonts" -msgstr "Tipos de letra" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Freak!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Full Detailed Price List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "GIFT" -msgstr "REGALO" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Get Delivered" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Get a code" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Getting feedback" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:22 -#, python-format -msgid "HTML5 Video - Youtube - Vimeo - Dailymotion" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Hamburgers" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:32 -#, python-format -msgid "Here’s how to embed a Youtube video:" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Highlight Your Content" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Honey Dijon Chicken Burger | " -"€ 12.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Hybrid" -msgstr "Híbrido" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Icon Box / Features List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Images Carousel" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "" -"In a systematic approach, product designers conceptualize and evaluate " -"ideas, turning them into tangible inventions and products. The product " -"designer's role is to combine art, science, and technology to create new " -"products that other people can use." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Introduce your content in few lines." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "It is super easy to resize and/or duplicate each box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "John DOE" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "John DOE • CEO of MyCompany" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "John Doe" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Jul" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "LV5MAY14" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Layout" -msgstr "Diseño" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Left" -msgstr "Izquierda" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Let your customers follow
    and understand your process." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:74 -#, python-format -msgid "Loop video" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iste eius, nam " -"optio dolor mollitia, consectetur asperiores libero illum. Repellendus, " -"molestias consequatur rem ipsa. Tempora omnis eius, ipsam quaerat optio " -"suscipit necessitatibus aliquam obcaecati. Vero quia mollitia repellendus " -"maxime, alias. Harum!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laboriosam " -"repellendus sunt nobis libero delectus aperiam animi porro, optio expedita " -"odio impedit quae praesentium fugit consequuntur vero architecto, excepturi," -" maiores aliquid." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perspiciatis " -"nobis, tempore voluptatem qui dolorum quae." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellendus ullam " -"minus qui aliquid optio, animi nam odio iste quisquam voluptas laudantium, " -"magni recusandae nemo eligendi!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rerum incidunt, " -"eum quae neque officiis dignissimos, veritatis amet, dolorum aperiam tempore" -" sed. Modi rerum velit itaque ex nobis vero necessitatibus adipisci eaque " -"cum iste nisi molestias quibusdam, voluptate odit deserunt, beatae." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vitae, inventore " -"accusantium dolores. Ad non necessitatibus recusandae cupiditate animi " -"quibusdam enim earum, nulla, qui. Dolorem sunt impedit similique a quia " -"earum fuga unde, repellendus omnis iure." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MANHATTAN | € 12.50" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MARGARITA | € 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MOJITO | € 12.00" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:20 -#, python-format -msgid "Marker Style" -msgstr "Estilo del marcador" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Media heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Medium" -msgstr "Media" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Menu A'la carte" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "More Features" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:60 -#, python-format -msgid "Muted" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "My Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Next" -msgstr "Siguiente" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Nice % Discount Tables" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Nice and Efficient Events List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Normal" -msgstr "Normal" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "OLV4SY3R" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "OUR CATALOG" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:54 -#, python-format -msgid "Options" -msgstr "Opciones" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -msgid "Organize Your Content with These Three Columns" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Organize Your Content with These Two Columns" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Outstanding images" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"PATZ AND HALL | € " -"12.50" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:37 -#, python-format -msgid "Paste the code into the box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Pay" -msgstr "Pagar" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Planning" -msgstr "Planificación" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Post heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Prepare for the future of eCommerce." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Preparing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "Present your products" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Present your products online!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Previous" -msgstr "Anterior" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Pro" -msgstr "Pro" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Producing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "" -"Product design is the process of creating a new product to be sold by a " -"business to its customers. A very broad concept, it is essentially the " -"efficient and effective generation and development of ideas through a " -"process that leads to new products." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 01" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 02" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 03" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Put the focus on what you have to say!" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:98 -#, python-format -msgid "Put video in container" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "REGISTER " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "Read more" -msgstr "Leer más" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Register" -msgstr "Registro" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Remove current slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Resize and Duplicate" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "Resume with A Nice Subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Resume with a Subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Right" -msgstr "Derecha" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "RoadMap" -msgstr "Mapa de ruta" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Sandwich with Ham and Cheese | " -"€ 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Satellite" -msgstr "Satelite" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:39 -#, python-format -msgid "Save" -msgstr "Guardar" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 1" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 2" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 4" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 5" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 6" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:9 -#, python-format -msgid "Select a video" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Select and delete blocks
    to remove some steps." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Select the Colors" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Select your favorite font combination to emphase your texts." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Sep" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block -msgid "Set a catchy headline" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "Share" -msgstr "Compartir" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Shipping" -msgstr "Envío" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:67 -#, python-format -msgid "Show controls" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Showcase Your Services and Features" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Sign in" -msgstr "Registrar entrada" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "Slide title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Small" -msgstr "Pequeño" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Speakers from all over the world will join our experts to give inspiring " -"talks on various topics." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Striped" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Style" -msgstr "Estilo" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"TEQUILA SUNRISE | € " -"11.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_menu_three_columns -msgid "Take a tour" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Terrain" -msgstr "Terreno" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Testing" -msgstr "Prueba" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Text Highlight" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The best approach" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "The famous band comes last time in this year, don't miss it!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The latest technology" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "The process from paper version" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "The product which fits your needs" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "" -"The solution to that is to create a product that, in its designed appearance" -" and function, expresses a personality or tells a story. Products that carry" -" such attributes are more likely to give off a stronger expression that will" -" attract more consumers. On that note it is important to keep in mind that " -"design expression does not only concern the appearance of a product, but " -"also its function. For example, as humans our appearance as well as our " -"actions are subject to people's judgment when they are making a first " -"impression of us." -msgstr "" - -#. module: theme_common -#: model:ir.model,name:theme_common.model_theme_utils -msgid "Theme Utils" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "This Is a Color Block" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "This Is a Column" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "" -"This theme does not limit you to one setup, we prefer to give you options. " -"From boxed layout to wide, left sidebars to right and multiple headers; we " -"let you decide. That’s right, you can have your cake and eat some too." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Tiny" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_separator_nav -msgid "Top" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Left" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Right" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "True" -msgstr "Verdadero" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Upcoming Events" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Use newsletters to increase your popularity" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:14 -#, python-format -msgid "" -"Use the 'Customize 'menu to define a fallback background image for not " -"compatible devices" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "" -"Use this building block to showcase your content with an images carousel. " -"You can edit, add or remove images using the customize options." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Use this component for creating a list of featured elements to which you " -"want to bring attention." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "" -"Use this paragraph to write a short, sweet and successful resume about this " -"member of your team." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Use this snippet to build various types of components that feature a left- " -"or right-aligned image alongside textual content. Duplicate the element to " -"create a list that fit your needs." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -"Use this timeline as a part of your resume, to show your visitors what " -"you've done in the past." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Useful options" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:17 -#, python-format -msgid "Video" -msgstr "Video" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_product_list -msgid "View item" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "We have Awesome Products" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Which trends to follow? Which ideas will work?
    Opening Keynote - " -"Presented by John DOE." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Wine" -msgstr "Vino" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "" -"With Theme Clean you get a list of your events with date, time, description, etc. Select the simple or image mode and edit your content.\n" -"
    You can link your events to your favorite social network." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "With a great subtitle" -msgstr "Con un gran subtítulo" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "With the most effective technique" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Write Something Nice for Your Users" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Write a description of your event here." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "" -"Write a quote here from one of your customers. Quotes are a great way to " -"build confidence in your products or services." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Write one or two paragraphs describing your product" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "" -"Write one or two paragraphs describing your product, services or a specific " -"feature. To be successful your content needs to be useful to your readers." -msgstr "" -"Escriba uno o dos párrafos describiendo su producto, servicio o " -"característica especifica. Para tener éxito su contenido debe ser útil a sus" -" lectores." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can change the box color by using the customize option." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "You can edit, duplicate..." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can even replace the icon by one of your choice." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "You get a free drink with your entrance!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Your Event Name" -msgstr "Tu nombre del evento" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:11 -#, python-format -msgid "Your address" -msgstr "Su dirección" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Your title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Your website is where almost all of your customers will end up first. " -"
    Let's clear up what it takes to give them the best experience with it." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "ZUY4OPLQ" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "card" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:16 -#, python-format -msgid "e.g. De Brouckere, Brussels, Belgium" -msgstr "P. Ej. De Brouckere, Bruselas, Bélgica" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:44 -#, python-format -msgid "iframe" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "link under the video." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "link." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "off" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:41 -#, python-format -msgid "share" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "with this theme." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "worldwilde" -msgstr "" diff --git a/theme_bewise/theme_common/i18n/fr.po b/theme_bewise/theme_common/i18n/fr.po deleted file mode 100644 index 86d2d3d..0000000 --- a/theme_bewise/theme_common/i18n/fr.po +++ /dev/null @@ -1,2143 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * theme_common -# -# Translators: -# Christophe CHAUVET , 2019 -# Jean-Marc Dupont , 2019 -# Kévin R., 2019 -# Lucas Deliege , 2019 -# 6534c450c77b2549e41c52e2051f5839, 2019 -# Martin Trigaux, 2019 -# Frédéric LIETART , 2019 -# Vincent Hammadache , 2019 -# Melanie Bernard , 2019 -# Eloïse Stilmant , 2019 -# Nathan Grognet , 2019 -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 12.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-24 09:00+0000\n" -"PO-Revision-Date: 2019-04-24 11:21+0000\n" -"Last-Translator: Nathan Grognet , 2019\n" -"Language-Team: French (https://www.transifex.com/odoo/teams/41243/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$15/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$29/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$69/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$99/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- ART DIRECTOR -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- PARTNER -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- TRAINEE -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "-50% OFF" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "...and switch the timeline contents to fit your needs." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 03-11-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 08-11-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 22-10-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 28-10-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "02" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "05" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "1000 Apps" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "12:00 AM" -msgstr "12:00" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "18" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "20.000 Users" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "2014" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "21" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "234 Clients" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "25%" -msgstr "25%" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "30 Countries" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "30%" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "50$" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "75 Partners" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Page Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map -msgid "" -"Visit us:\n" -" Our office is located in the northeast of Brussels. TEL (555) 432 2365" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Date" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Images" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Time" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid " More Details" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Notes" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Location" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 100+ conferences" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "News" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Edit" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 2,000+ attendees" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -msgid "Position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid " Autoplay" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Image position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Inner Spacing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles_options -msgid "Color" -msgstr "Couleur" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Colors" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Facebook" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Map Options" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block_option -msgid "Video Options" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Type" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Zoom" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " GitHub" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "" -" - An additional " -"information" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -" An additional " -"information" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Linkedin" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Styles" -msgstr "Styles" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Add Slide" -msgstr "Ajouter une diapositive" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Add a new Slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Caption position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Delete Slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Remove current slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "* Conditions and restrictions apply." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Clients" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Followers" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Projects" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2015" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2018" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2019" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" Next" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "" -"\n" -" Next" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" Previous" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "" -"\n" -" Previous" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "First feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Another feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Second feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Last Feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Link" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Info" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Chardonnay\n" -" Sonoma Coast, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Malbec\n" -" Mendoza, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Pinot Noir\n" -" California, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Rose\n" -" Napa, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"rum, lime, juice cane sugar\n" -" fresh mint, soda, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"whiskey, vermouth, angostura,\n" -" maraschino cherry" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"white tequila, frenadine,\n" -" orange juice, soda, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"white tequila, triple sec,\n" -" lime juice, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "" -"\n" -" Tag\n" -" \n" -" \n" -" Category\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 3 months ago\n" -" \n" -" \n" -" by John DOE\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_badge -msgid "" -"\n" -" Category\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" New\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"18\n" -" December" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"3\n" -" January" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "12" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "45" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "37" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "01." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "02." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Close" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress_bar -msgid "80% Development" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "80% Html5/CSS3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "85% Bootstrap" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "99% COMPLETE" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "A caption for this image" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " 20,7K " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "120GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "143" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "245" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "50GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "80GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "COMPANY: Odoo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "FUNCTION: Web Designer / UI." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Free Billing Systems" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "" -"Increase the amount of your visitors by offering them great discount.\n" -"
    Let them find the coupon code." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "My great button" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "" -"Skills: html5, css3, jquery, " -"bootstrap3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Domains" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited MySQL Databases" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "" -"Write something about you.This is a good way to briefly " -"tell your visitors who you are and what you do. Link Clean Flat Profile to " -"your social networks and use the customizable progress bars to show your " -"skills." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "A Big Image and a Paragraph" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image_parallax -msgid "A Business Theme For Odoo CMS" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "A COLOR BLOCK" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "A Great Way to Present Your Team" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "A Great Way to Show Your Numbers" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "A Great way to show your range" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "A great title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story. Write one or two paragraphs " -"describing your product or services. To be successful your content needs to " -"be useful to your readers. Start with the customer. Find out what they want " -"and give it to them." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story. Write one or two paragraphs " -"describing your product or services. To be successful your content needs to " -"be useful to your readers. Start with the customer. Find out what they want " -"and give it to them. A great way to catch your reader's attention is to tell" -" a story. Everything you consider writing can be told as a story. Write one " -"or two paragraphs describing your product or services. To be successful your" -" content needs to be useful to your readers. Start with the customer. Find " -"out what they want and give it to them." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -"A timeline is a graphical representation on which important events are " -"marked." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "ALL DAY" -msgstr "TOUTE LA JOURNEE" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "About Me" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Add Slide" -msgstr "Ajouter un diaporama" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Add to cart" -msgstr "Ajouter au panier" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:31 -#, python-format -msgid "" -"Add videos, playlists or other contents pasting the iframe code or video url" -" into the box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Add your co-Workers and a link to their profiles." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:5 -#, python-format -msgid "Address" -msgstr "Adresse" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Amazing pages" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "An Other Color Block" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "And a great subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Animal Cannibals" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Animated" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:109 -#, python-format -msgid "Apply" -msgstr "Appliquer" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:81 -#, python-format -msgid "Autoplay" -msgstr "Lecture automatique" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"BLACKBIRD VINEYARDS | € " -"11.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Basement Jaxx" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Beautiful snippets" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "Big Icons" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Bigger" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Left" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Right" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box Description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Build relationships and recognition by staying in touch with your customers." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"COLORES DEL SOL | € " -"12.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "COUPON" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:53 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:108 -#, python-format -msgid "Cancel" -msgstr "Annuler" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_frontend.js:51 -#, python-format -msgid "Cannot load google map, check your configuration !" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Change the color of this box" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Click here" -msgstr "Cliquez ici" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Click on the icon to adapt it
    to your purpose." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Click the" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:8 -#, python-format -msgid "Close" -msgstr "Fermer" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Cocktails" -msgstr "Cocktails" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Collapsable Tab Code" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "" -"Color blocks are a simple and effective way to present and highlight" -" your content. Choose an image or a color for the background. You " -"can even resize and duplicate the blocks to create your own layout. Add " -"images or icons to customize the blocks." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_pricing -msgid "Colors" -msgstr "Couleurs" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Continue reading " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Convert your visitors to customers." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:36 -#, python-format -msgid "Copy the code provided in the expanded box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Create an irresistible website." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Customize Backgrounds" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:37 -#, python-format -msgid "Customize your map" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Cycling through elements" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DECISIONS, DECISIONS, AND EVEN MORE DECISIONS" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DESIGN, DESIGN, AND EVEN MORE DESIGN" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "DISCOVER THE PRODUCT" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Deciding the features" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:24 -#, python-format -msgid "Default" -msgstr "Par défaut" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "" -"Design expression comes from the combined effect of all elements in a " -"product. Colour tone, shape and size should direct a person's thoughts " -"towards buying the product. Therefore it is in the product designer's best " -"interest to consider the audiences who are most likely to be the product's " -"end consumers. Keeping in mind how consumers will perceive the product " -"during the design process will direct towards the product’s success in the " -"market. However, even within a specific audience, it is challenging to cater" -" to each possible personality within that group." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Discover" -msgstr "Découvrir" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Discover all the features" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Display Your Last Activities" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Double-click an icon to change it." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Drink menu" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Duplicate blocks
    to add more steps." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Edit this text and change it with your content." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Embed" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Event Heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"FRANCIS FORD COPPOLA | €" -" 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "False" -msgstr "Faux" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "Features" -msgstr "Fonctionnalités" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:92 -#, python-format -msgid "Fill container with video" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:23 -#, python-format -msgid "Flat" -msgstr "Plat" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Fleetwood Mac" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "" -"Focus on what the customer would like to know, not what you want to show. " -"Write a small explanation of this great feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Fonts" -msgstr "Polices de caractères" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Freak!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Full Detailed Price List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "GIFT" -msgstr "CADEAU" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Get Delivered" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Get a code" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Getting feedback" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:22 -#, python-format -msgid "HTML5 Video - Youtube - Vimeo - Dailymotion" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Hamburgers" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:32 -#, python-format -msgid "Here’s how to embed a Youtube video:" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Highlight Your Content" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Honey Dijon Chicken Burger | " -"€ 12.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Hybrid" -msgstr "Hybride" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Icon Box / Features List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Images Carousel" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "" -"In a systematic approach, product designers conceptualize and evaluate " -"ideas, turning them into tangible inventions and products. The product " -"designer's role is to combine art, science, and technology to create new " -"products that other people can use." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Introduce your content in few lines." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "It is super easy to resize and/or duplicate each box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "John DOE" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "John DOE • CEO of MyCompany" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "John Doe" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Jul" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "LV5MAY14" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Layout" -msgstr "Agencement" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Left" -msgstr "Gauche" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Let your customers follow
    and understand your process." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:74 -#, python-format -msgid "Loop video" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iste eius, nam " -"optio dolor mollitia, consectetur asperiores libero illum. Repellendus, " -"molestias consequatur rem ipsa. Tempora omnis eius, ipsam quaerat optio " -"suscipit necessitatibus aliquam obcaecati. Vero quia mollitia repellendus " -"maxime, alias. Harum!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laboriosam " -"repellendus sunt nobis libero delectus aperiam animi porro, optio expedita " -"odio impedit quae praesentium fugit consequuntur vero architecto, excepturi," -" maiores aliquid." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perspiciatis " -"nobis, tempore voluptatem qui dolorum quae." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellendus ullam " -"minus qui aliquid optio, animi nam odio iste quisquam voluptas laudantium, " -"magni recusandae nemo eligendi!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rerum incidunt, " -"eum quae neque officiis dignissimos, veritatis amet, dolorum aperiam tempore" -" sed. Modi rerum velit itaque ex nobis vero necessitatibus adipisci eaque " -"cum iste nisi molestias quibusdam, voluptate odit deserunt, beatae." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vitae, inventore " -"accusantium dolores. Ad non necessitatibus recusandae cupiditate animi " -"quibusdam enim earum, nulla, qui. Dolorem sunt impedit similique a quia " -"earum fuga unde, repellendus omnis iure." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MANHATTAN | € 12.50" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MARGARITA | € 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MOJITO | € 12.00" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:20 -#, python-format -msgid "Marker Style" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Media heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Medium" -msgstr "Moyen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Menu A'la carte" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "More Features" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:60 -#, python-format -msgid "Muted" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "My Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Next" -msgstr "Suivant" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Nice % Discount Tables" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Nice and Efficient Events List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Normal" -msgstr "Normale" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "OLV4SY3R" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "OUR CATALOG" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:54 -#, python-format -msgid "Options" -msgstr "Options" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -msgid "Organize Your Content with These Three Columns" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Organize Your Content with These Two Columns" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Outstanding images" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"PATZ AND HALL | € " -"12.50" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:37 -#, python-format -msgid "Paste the code into the box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Pay" -msgstr "Payer" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Planning" -msgstr "Planning" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Post heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Prepare for the future of eCommerce." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Preparing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "Present your products" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Present your products online!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Previous" -msgstr "Précedent" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Pro" -msgstr "Pro" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Producing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "" -"Product design is the process of creating a new product to be sold by a " -"business to its customers. A very broad concept, it is essentially the " -"efficient and effective generation and development of ideas through a " -"process that leads to new products." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 01" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 02" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 03" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Put the focus on what you have to say!" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:98 -#, python-format -msgid "Put video in container" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "REGISTER " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "Read more" -msgstr "En savoir plus" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Register" -msgstr "S'inscrire" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Remove current slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Resize and Duplicate" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "Resume with A Nice Subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Resume with a Subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Right" -msgstr "Droit" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "RoadMap" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Sandwich with Ham and Cheese | " -"€ 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Satellite" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:39 -#, python-format -msgid "Save" -msgstr "Sauvegarder" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 1" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 2" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 4" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 5" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 6" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:9 -#, python-format -msgid "Select a video" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Select and delete blocks
    to remove some steps." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Select the Colors" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Select your favorite font combination to emphase your texts." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Sep" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block -msgid "Set a catchy headline" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "Share" -msgstr "Partager" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Shipping" -msgstr "Expédition" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:67 -#, python-format -msgid "Show controls" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Showcase Your Services and Features" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Sign in" -msgstr "Pointer l'entrée" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "Slide title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Small" -msgstr "Petit" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Speakers from all over the world will join our experts to give inspiring " -"talks on various topics." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Striped" -msgstr "Rayé" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Style" -msgstr "Style" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"TEQUILA SUNRISE | € " -"11.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_menu_three_columns -msgid "Take a tour" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Terrain" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Testing" -msgstr "En test" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Text Highlight" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The best approach" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "The famous band comes last time in this year, don't miss it!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The latest technology" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "The process from paper version" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "The product which fits your needs" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "" -"The solution to that is to create a product that, in its designed appearance" -" and function, expresses a personality or tells a story. Products that carry" -" such attributes are more likely to give off a stronger expression that will" -" attract more consumers. On that note it is important to keep in mind that " -"design expression does not only concern the appearance of a product, but " -"also its function. For example, as humans our appearance as well as our " -"actions are subject to people's judgment when they are making a first " -"impression of us." -msgstr "" - -#. module: theme_common -#: model:ir.model,name:theme_common.model_theme_utils -msgid "Theme Utils" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "This Is a Color Block" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "This Is a Column" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "" -"This theme does not limit you to one setup, we prefer to give you options. " -"From boxed layout to wide, left sidebars to right and multiple headers; we " -"let you decide. That’s right, you can have your cake and eat some too." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Tiny" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_separator_nav -msgid "Top" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Left" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Right" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "True" -msgstr "Vrai" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Upcoming Events" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Use newsletters to increase your popularity" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:14 -#, python-format -msgid "" -"Use the 'Customize 'menu to define a fallback background image for not " -"compatible devices" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "" -"Use this building block to showcase your content with an images carousel. " -"You can edit, add or remove images using the customize options." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Use this component for creating a list of featured elements to which you " -"want to bring attention." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "" -"Use this paragraph to write a short, sweet and successful resume about this " -"member of your team." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Use this snippet to build various types of components that feature a left- " -"or right-aligned image alongside textual content. Duplicate the element to " -"create a list that fit your needs." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -"Use this timeline as a part of your resume, to show your visitors what " -"you've done in the past." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Useful options" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:17 -#, python-format -msgid "Video" -msgstr "Vidéo" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_product_list -msgid "View item" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "We have Awesome Products" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Which trends to follow? Which ideas will work?
    Opening Keynote - " -"Presented by John DOE." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Wine" -msgstr "Vin" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "" -"With Theme Clean you get a list of your events with date, time, description, etc. Select the simple or image mode and edit your content.\n" -"
    You can link your events to your favorite social network." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "With a great subtitle" -msgstr "Avec un super sous-titre" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "With the most effective technique" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Write Something Nice for Your Users" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Write a description of your event here." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "" -"Write a quote here from one of your customers. Quotes are a great way to " -"build confidence in your products or services." -msgstr "" -"Ecrivez une citation d'un de vos clients ici. Les citations sont une superbe" -" manière de construire la confiance dans vos produits ou services." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Write one or two paragraphs describing your product" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "" -"Write one or two paragraphs describing your product, services or a specific " -"feature. To be successful your content needs to be useful to your readers." -msgstr "" -"Ecrivez un ou deux paragraphes décrivant votre produit, vos services ou une " -"fonctionnalité spécifique. Votre contenu doit être utile pour l'utilisateur " -"afin d'être efficace. " - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can change the box color by using the customize option." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "You can edit, duplicate..." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can even replace the icon by one of your choice." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "You get a free drink with your entrance!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Your Event Name" -msgstr "Le nom de votre événement" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:11 -#, python-format -msgid "Your address" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Your title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Your website is where almost all of your customers will end up first. " -"
    Let's clear up what it takes to give them the best experience with it." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "ZUY4OPLQ" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "card" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:16 -#, python-format -msgid "e.g. De Brouckere, Brussels, Belgium" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:44 -#, python-format -msgid "iframe" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "link under the video." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "link." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "off" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:41 -#, python-format -msgid "share" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "with this theme." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "worldwilde" -msgstr "" diff --git a/theme_bewise/theme_common/i18n/nl.po b/theme_bewise/theme_common/i18n/nl.po deleted file mode 100644 index 5141a6c..0000000 --- a/theme_bewise/theme_common/i18n/nl.po +++ /dev/null @@ -1,2324 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * theme_common -# -# Translators: -# Martin Trigaux, 2019 -# Erwin van der Ploeg , 2019 -# Gunther Clauwaert , 2019 -# Cas Vissers , 2019 -# Yenthe Van Ginneken , 2019 -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 12.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-24 09:00+0000\n" -"PO-Revision-Date: 2019-04-24 11:21+0000\n" -"Last-Translator: Yenthe Van Ginneken , 2019\n" -"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$15/mo" -msgstr "$15/mnd" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$29/mo" -msgstr "$29/mnd" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$69/mo" -msgstr "$69/mnd" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$99/mo" -msgstr "$99/mnd" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- ART DIRECTOR -" -msgstr "- ART DIRECTOR -" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- PARTNER -" -msgstr "- PARTNER -" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- TRAINEE -" -msgstr "- STAGIAR -" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "-50% OFF" -msgstr "-50% KORTING" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "...and switch the timeline contents to fit your needs." -msgstr "... en wissel de tijdslijn inhoud naar uw vereisten." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 03-11-2014 ///" -msgstr "/// 03-11-2014 ///" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 08-11-2014 ///" -msgstr "/// 08-11-2014 ///" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 22-10-2014 ///" -msgstr "/// 22-10-2014 ///" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 28-10-2014 ///" -msgstr "/// 28-10-2014 ///" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "02" -msgstr "02" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "05" -msgstr "05" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "1000 Apps" -msgstr "1000 Apps" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "12:00 AM" -msgstr "12:00" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "18" -msgstr "18" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "20.000 Users" -msgstr "20.000 Gebruikers" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "2014" -msgstr "2014" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "21" -msgstr "21" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "234 Clients" -msgstr "234 klanten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "25%" -msgstr "25%" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "30 Countries" -msgstr "30 landen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "30%" -msgstr "30%" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "50$" -msgstr "50$" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "75 Partners" -msgstr "75 Partners" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Page Title" -msgstr "Pagina titel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map -msgid "" -"Visit us:\n" -" Our office is located in the northeast of Brussels. TEL (555) 432 2365" -msgstr "" -"Bezoek ons:\n" -"Ons kantoor bevind zich in het noord-oosten van Brussel. TEL (555) 432 2365" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Date" -msgstr "" -"\n" -" Datum" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Images" -msgstr "Afbeeldingen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Time" -msgstr "" -"\n" -" Tijd" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid " More Details" -msgstr " Meer Details" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Notes" -msgstr "Notities" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Location" -msgstr "" -"\n" -" Locatie" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 100+ conferences" -msgstr "" -"\n" -" 100+ conferenties" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "News" -msgstr "Nieuws" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Edit" -msgstr "Wijzig" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 2,000+ attendees" -msgstr "" -"\n" -" 2,000+ deelnemers" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -msgid "Position" -msgstr " Positie" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid " Autoplay" -msgstr "Automatisch afspelen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Image position" -msgstr "Positie afbeelding" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Inner Spacing" -msgstr "Binnenste tussenruimte" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles_options -msgid "Color" -msgstr "Kleur" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Colors" -msgstr " Kleuren" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Facebook" -msgstr " Facebook" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Map Options" -msgstr "Map opties" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block_option -msgid "Video Options" -msgstr "Video Opties" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Type" -msgstr "Soort" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Zoom" -msgstr "Zoom" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " GitHub" -msgstr " GitHub" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "" -" - An additional " -"information" -msgstr "" -" - Extra " -"informatie" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -" An additional " -"information" -msgstr " Extra informatie" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Linkedin" -msgstr " Linkedin" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Styles" -msgstr "Stijlen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Add Slide" -msgstr "Dia toevoegen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Add a new Slide" -msgstr "Nieuwe slide toevoegen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Caption position" -msgstr "Positie onderschrift" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Delete Slide" -msgstr "Slide verwijderen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Remove current slide" -msgstr "Huidige slide verwijderen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "* Conditions and restrictions apply." -msgstr "* Condities en restricties toepassen." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Clients" -msgstr "Klanten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Followers" -msgstr "Volgers" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Projects" -msgstr "Projecten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2015" -msgstr "2015" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2018" -msgstr "2018" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2019" -msgstr "2019" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" Next" -msgstr "" -"\n" -" Volgende" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "" -"\n" -" Next" -msgstr "" -"\n" -" Volgende" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" Previous" -msgstr "" -"\n" -" Vorige" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "" -"\n" -" Previous" -msgstr "" -"\n" -" Vorige" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "First feature" -msgstr "Eerste optie" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Another feature" -msgstr "Een andere optie" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Second feature" -msgstr "Tweede optie" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Last Feature" -msgstr "Laatste optie" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Link" -msgstr " Link" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Info" -msgstr " Info" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Chardonnay\n" -" Sonoma Coast, 2012" -msgstr "" -"Chardonnay\n" -"Sonoma kust, 2012" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Malbec\n" -" Mendoza, 2012" -msgstr "" -"Malbec\n" -"Mendoza, 2012" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Pinot Noir\n" -" California, 2012" -msgstr "" -"Pinot Noir\n" -"Californië, 2012" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Rose\n" -" Napa, 2012" -msgstr "" -"Rose\n" -"Napa, 2012" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"rum, lime, juice cane sugar\n" -" fresh mint, soda, ice" -msgstr "" -"rum, limoen, sap rietsuiker\n" -"verse munt, frisdrank, ijs" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"whiskey, vermouth, angostura,\n" -" maraschino cherry" -msgstr "" -"Whiskey, vermouth, angostura,\n" -"Maraschino Kersen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"white tequila, frenadine,\n" -" orange juice, soda, ice" -msgstr "" -"witte tequila, frenadine,\n" -"sinaasappelsap, soda, ijs" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"white tequila, triple sec,\n" -" lime juice, ice" -msgstr "" -"witte tequila, triple sec,\n" -" limoensap, ijs" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "" -"\n" -" Tag\n" -" \n" -" \n" -" Category\n" -" " -msgstr "" -"\n" -" Label\n" -" \n" -" \n" -" Categorie\n" -" " - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 3 months ago\n" -" \n" -" \n" -" by John DOE\n" -" " -msgstr "" -"\n" -" 3 maanden geleden\n" -" \n" -" \n" -" door John DOE\n" -" " - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_badge -msgid "" -"\n" -" Category\n" -" " -msgstr "" -"\n" -" Categorie\n" -" " - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" New\n" -" " -msgstr "" -"\n" -" Nieuw\n" -" " - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"18\n" -" December" -msgstr "" -"18\n" -" December" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"3\n" -" January" -msgstr "" -"3\n" -" Januari" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "12" -msgstr "12" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "45" -msgstr "45" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "37" -msgstr "37" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "01." -msgstr "01." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "02." -msgstr "02." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Close" -msgstr "Sluiten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress_bar -msgid "80% Development" -msgstr "80% ontwkkeling" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "80% Html5/CSS3" -msgstr "80% Html5/CSS3" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "85% Bootstrap" -msgstr "85% Bootstrap" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "99% COMPLETE" -msgstr "99% VOLTOOID" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "A caption for this image" -msgstr "Een bijschrift voor deze afbeelding" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " 20,7K " -msgstr " 20,7K " - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "120GB Disk Space" -msgstr "120GB opslagruimte" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "143" -msgstr "143" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "245" -msgstr "245" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "50GB Disk Space" -msgstr "50GB opslagruimte" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "80GB Disk Space" -msgstr "80GB opslagruimte" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "COMPANY: Odoo" -msgstr "BEDRIJF: Odoo" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "FUNCTION: Web Designer / UI." -msgstr "FUNCTIE: Web Designer / UI." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Free Billing Systems" -msgstr "Gratis facturatiesystemen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "" -"Increase the amount of your visitors by offering them great discount.\n" -"
    Let them find the coupon code." -msgstr "" -"Verhoog het aantal bezoekers door ze een geweldige korting aan te bieden.\n" -"
    Laat ze de kortingscode vinden." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "My great button" -msgstr "Mijn geweldige knop" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "" -"Skills: html5, css3, jquery, " -"bootstrap3" -msgstr "" -"Skills: html5, css3, jquery, " -"bootstrap3" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "Ongelimiteerde e-mailadressen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Domains" -msgstr "Ongelimiteerde domeinen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "Ongelimiteerde e-mailadressen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited MySQL Databases" -msgstr "Ongelimiteerde MySQL databases" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "" -"Write something about you.This is a good way to briefly " -"tell your visitors who you are and what you do. Link Clean Flat Profile to " -"your social networks and use the customizable progress bars to show your " -"skills." -msgstr "" -"Schrijf iets over u.Dit is een goede manier om uw bezoekers" -" te vertellen wie u bent en wat u doet. Link profielen naar uw sociale " -"netwerken en gebruik de personaliseerbare voortgangsbalken om uw " -"vaardigheden te tonen." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "A Big Image and a Paragraph" -msgstr "Een grote afbeelding en een paragraaf" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image_parallax -msgid "A Business Theme For Odoo CMS" -msgstr "Een bedrijfsthema voor Odoo CMS" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "A COLOR BLOCK" -msgstr "EEN KLEUR BLOK" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "A Great Way to Present Your Team" -msgstr "Een geweldige manier om uw team te presenteren" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "A Great Way to Show Your Numbers" -msgstr "Een geweldige manier om uw cijfers te tonen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "A Great way to show your range" -msgstr "Een geweldige manier om uw aanbod te tonen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "A great title" -msgstr "Een goede titel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story." -msgstr "" -"Een geweldige manier om de aandacht van uw lezer te krijgen is om een " -"verhaal te vertellen. Alles wat je bedenkt om te schrijven kan worden " -"verteld als een verhaal." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story. Write one or two paragraphs " -"describing your product or services. To be successful your content needs to " -"be useful to your readers. Start with the customer. Find out what they want " -"and give it to them." -msgstr "" -"Een geweldige manier om uw lezer zijn aandacht te trekken is door een " -"verhaal te vertellen. Alles wat u overweegt om te schrijven kan als een " -"verhaal geschreven worden. Schrijf één of twee paragrafen die uw product of " -"diensten omschrijven. Om succesvol te zijn moet uw inhoud bruikbaar zijn " -"voor lezers. Start met de klant. Vind wat ze willen en geef het aan hen." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story. Write one or two paragraphs " -"describing your product or services. To be successful your content needs to " -"be useful to your readers. Start with the customer. Find out what they want " -"and give it to them. A great way to catch your reader's attention is to tell" -" a story. Everything you consider writing can be told as a story. Write one " -"or two paragraphs describing your product or services. To be successful your" -" content needs to be useful to your readers. Start with the customer. Find " -"out what they want and give it to them." -msgstr "" -"Een geweldige manier om uw lezer zijn aandacht te krijgen is door een " -"verhaal te vertellen. Alles wat u overweegt om te vertellen kan geschreven " -"worden als een verhaal. Schrijf één of twee paragrafen die uw producten of " -"diensten omschrijven. Om succesvol te zijn moet uw inhoud handig zijn voor " -"de lezer. Start met de klant. Ontdek wat de klant wilt en geef het aan hem. " -"Een geweldige manier om uw lezer zijn aandacht te krijgen is door een " -"verhaal te vertellen. Alles wat u overweegt om te vertellen kan geschreven " -"worden als een verhaal. Schrijf één of twee paragrafen die uw producten of " -"diensten omschrijven. Om succesvol te zijn moet uw inhoud handig zijn voor " -"de lezer. Start met de klant. Ontdek wat de klant wilt en geef het aan hem. " - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -"A timeline is a graphical representation on which important events are " -"marked." -msgstr "" -"Een tijdslijn is een grafische voorstelling voor een tijdsperiode, waarop " -"belangrijke momenten aangeduid zijn." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "ALL DAY" -msgstr "HELE DAG" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "About Me" -msgstr "Over mij" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Add Slide" -msgstr "Slide toevoegen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Add to cart" -msgstr "Voeg toe aan mandje" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:31 -#, python-format -msgid "" -"Add videos, playlists or other contents pasting the iframe code or video url" -" into the box." -msgstr "" -"Voeg video's, afspeellijsten of andere inhoud toe door de iframe code of " -"video url in het vak te plakken." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Add your co-Workers and a link to their profiles." -msgstr "Voeg uw medewerkers toe en voeg een link toe aan uw profielen." - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:5 -#, python-format -msgid "Address" -msgstr "Adres" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Amazing pages" -msgstr "Geweldige pagina's" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "An Other Color Block" -msgstr "Een andere kleur blok" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "And a great subtitle" -msgstr "En een geweldige ondertitel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Animal Cannibals" -msgstr "Animal Cannibals" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Animated" -msgstr "Geanimeer" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:109 -#, python-format -msgid "Apply" -msgstr "Toepassen" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:81 -#, python-format -msgid "Autoplay" -msgstr "Automatisch afspelen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"BLACKBIRD VINEYARDS | € " -"11.00" -msgstr "" -"BLACKBIRD VINEYARDS | € " -"11.00" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Basement Jaxx" -msgstr "Basement Jaxx" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Beautiful snippets" -msgstr "Prachtige snippets" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "Big Icons" -msgstr "Grote iconen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Bigger" -msgstr "Groter" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Left" -msgstr "Linksonder" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Right" -msgstr "Rechtsonder" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box Description" -msgstr "Box omschrijving" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box title" -msgstr "Box titel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Build relationships and recognition by staying in touch with your customers." -msgstr "" -"Bouw relaties en erkenningen door in contact te blijven met uw klanten." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"COLORES DEL SOL | € " -"12.00" -msgstr "" -"COLORES DEL SOL | € " -"12.00" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "COUPON" -msgstr "KORTINGSBON" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:53 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:108 -#, python-format -msgid "Cancel" -msgstr "Annuleren" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_frontend.js:51 -#, python-format -msgid "Cannot load google map, check your configuration !" -msgstr "Kan Google maps niet laden, controleer uw configuratie!" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Change the color of this box" -msgstr "Wijzig de kleur van deze box" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Click here" -msgstr "Klik hier" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Click on the icon to adapt it
    to your purpose." -msgstr "Klik op het icoon om het te wijzigen
    aan uw doel." - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Click the" -msgstr "Klik op de" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:8 -#, python-format -msgid "Close" -msgstr "Afsluiten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Cocktails" -msgstr "Cocktails" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Collapsable Tab Code" -msgstr "Inklapbare tab code" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "" -"Color blocks are a simple and effective way to present and highlight" -" your content. Choose an image or a color for the background. You " -"can even resize and duplicate the blocks to create your own layout. Add " -"images or icons to customize the blocks." -msgstr "" -"Kleurblokken zijn een gemakkelijke en effectieve manier om uw inhoud" -" te tonen en presenteren. Kies een afbeelding of een kleur voor de " -"achtergrond. U kan zelfs de blokken herschalen en dupliceren om uw eigen " -"layout te maken. Voeg afbeeldingen of iconen toe om de blokken te " -"personaliseren." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_pricing -msgid "Colors" -msgstr "Kleuren" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Continue reading " -msgstr "" -"Ga verder met lezen " - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Convert your visitors to customers." -msgstr "Converteer uw bezoekers naar klanten." - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:36 -#, python-format -msgid "Copy the code provided in the expanded box." -msgstr "Kopieer de code uit de uitgeklapte box." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Create an irresistible website." -msgstr "Bouw een onweerstaanbare website." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Customize Backgrounds" -msgstr "Aanpasbare achtergronden" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:37 -#, python-format -msgid "Customize your map" -msgstr "Personaliseer uw kaart" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Cycling through elements" -msgstr "Fietsen door elementen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DECISIONS, DECISIONS, AND EVEN MORE DECISIONS" -msgstr "BESLISSINGEN, BESLISSINGEN, EN NOG MEER BESLISSINGEN" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DESIGN, DESIGN, AND EVEN MORE DESIGN" -msgstr "DESIGN, DESIGN, EN NOG MEER DESIGN" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "DISCOVER THE PRODUCT" -msgstr "ONTDEK HET PRODUCT" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Deciding the features" -msgstr "De mogelijkheden beslissen" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:24 -#, python-format -msgid "Default" -msgstr "Standaard" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "" -"Design expression comes from the combined effect of all elements in a " -"product. Colour tone, shape and size should direct a person's thoughts " -"towards buying the product. Therefore it is in the product designer's best " -"interest to consider the audiences who are most likely to be the product's " -"end consumers. Keeping in mind how consumers will perceive the product " -"during the design process will direct towards the product’s success in the " -"market. However, even within a specific audience, it is challenging to cater" -" to each possible personality within that group." -msgstr "" -"Ontwerp uitdrukkingen komen vanuit het gecombineerde effect van alle " -"elementen in een product. Kleurtoon, vorm en grootte moeten een koper zijn " -"aandacht richten op het product kopen. Daarom is het in het belang van de " -"product ontwerpen om de doelgroepen in het oog te houden die waarschijnlijk " -"de eindklant zijn. In het achterhoofd houden hoe de consumenten het product " -"zullen zien tijdens het product zal bijdragen aan het product zijn succes. " -"Hoewel, zelfs met een specifieke doelgroep, het een uitdaging is om elke " -"persoonlijkheid te verzorgen binnen de doelgroep." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Discover" -msgstr "Ontdek" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Discover all the features" -msgstr "Ontdek alle mogelijkheden" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Display Your Last Activities" -msgstr "Toon uw laatste activiteiten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Double-click an icon to change it." -msgstr "Dubbelklik op een icoon om het te wijzigen." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Drink menu" -msgstr "Drinken menu" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Duplicate blocks
    to add more steps." -msgstr "Dupliceer bouwblokken
    om meer stappen toe te voegen." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Edit this text and change it with your content." -msgstr "Wijzig deze tekst en voeg uw content toe." - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Embed" -msgstr "Insluiten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Event Heading" -msgstr "Event hoofding" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"FRANCIS FORD COPPOLA | €" -" 9.00" -msgstr "" -"FRANCIS FORD COPPOLA | €" -" 9.00" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "False" -msgstr "Onwaar" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "Features" -msgstr "Mogelijkheden" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:92 -#, python-format -msgid "Fill container with video" -msgstr "Vul container met video" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:23 -#, python-format -msgid "Flat" -msgstr "Vast" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Fleetwood Mac" -msgstr "Fleetwood Mac" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "" -"Focus on what the customer would like to know, not what you want to show. " -"Write a small explanation of this great feature" -msgstr "" -"Focus op wat de klant zou willen weten, niet wat u wilt tonen. Schrijf een " -"korte uitleg van deze geweldige optie" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Fonts" -msgstr "Lettertypes" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Freak!" -msgstr "Freak!" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Full Detailed Price List" -msgstr "Volledig gedetailleerde prijslijst" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "GIFT" -msgstr "CADEAU" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Get Delivered" -msgstr "Krijg geleverd" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Get a code" -msgstr "Krijg een code" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Getting feedback" -msgstr "Feedback krijgen" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:22 -#, python-format -msgid "HTML5 Video - Youtube - Vimeo - Dailymotion" -msgstr "HTML5 Video - Youtube - Vimeo - Dailymotion" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Hamburgers" -msgstr "Hamburgers" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:32 -#, python-format -msgid "Here’s how to embed a Youtube video:" -msgstr "Hier is hoe u een Youtube video insluit:" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Highlight Your Content" -msgstr "Highlight uw inhoud" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Honey Dijon Chicken Burger | " -"€ 12.00" -msgstr "" -"Honey Dijon Chicken Burger | " -"€ 12.00" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Hybrid" -msgstr "Hybride" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Icon Box / Features List" -msgstr "Icoon vak / Mogelijkheden lijst" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Images Carousel" -msgstr "Afbeelding carousel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "" -"In a systematic approach, product designers conceptualize and evaluate " -"ideas, turning them into tangible inventions and products. The product " -"designer's role is to combine art, science, and technology to create new " -"products that other people can use." -msgstr "" -"In een systematische aanpak conceptualiseren product ontwerpers en evalueren" -" ze ideeën; om ze om te vormen in tastbare uitvindingen en producten. De rol" -" van de product ontwerpen is om kunst, wetenschap en technologie te " -"combineren om nieuwe producten te maken die andere mensen kunnen gebruiken." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Introduce your content in few lines." -msgstr "Introduceer uw inhoud in een paar lijnen." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "It is super easy to resize and/or duplicate each box." -msgstr "" -"Het is enorm gemakkelijk te wijzigen van grootte en/of om elke box te " -"dupliceren." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "John DOE" -msgstr "John DOE" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "John DOE • CEO of MyCompany" -msgstr "John DOE • CEO van MijnBedrijf" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "John Doe" -msgstr "John Doe" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Jul" -msgstr "Jul" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "LV5MAY14" -msgstr "LV5MAY14" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Layout" -msgstr "Layout" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Left" -msgstr "Links" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Let your customers follow
    and understand your process." -msgstr "Laat uw klanten uw proces
    volgen en begrijpen." - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:74 -#, python-format -msgid "Loop video" -msgstr "Video loopen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iste eius, nam " -"optio dolor mollitia, consectetur asperiores libero illum. Repellendus, " -"molestias consequatur rem ipsa. Tempora omnis eius, ipsam quaerat optio " -"suscipit necessitatibus aliquam obcaecati. Vero quia mollitia repellendus " -"maxime, alias. Harum!" -msgstr "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iste eius, nam " -"optio dolor mollitia, consectetur asperiores libero illum. Repellendus, " -"molestias consequatur rem ipsa. Tempora omnis eius, ipsam quaerat optio " -"suscipit necessitatibus aliquam obcaecati. Vero quia mollitia repellendus " -"maxime, alias. Harum!" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laboriosam " -"repellendus sunt nobis libero delectus aperiam animi porro, optio expedita " -"odio impedit quae praesentium fugit consequuntur vero architecto, excepturi," -" maiores aliquid." -msgstr "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laboriosam " -"repellendus sunt nobis libero delectus aperiam animi porro, optio expedita " -"odio impedit quae praesentium fugit consequuntur vero architecto, excepturi," -" maiores aliquid." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perspiciatis " -"nobis, tempore voluptatem qui dolorum quae." -msgstr "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perspiciatis " -"nobis, tempore voluptatem qui dolorum quae." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellendus ullam " -"minus qui aliquid optio, animi nam odio iste quisquam voluptas laudantium, " -"magni recusandae nemo eligendi!" -msgstr "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellendus ullam " -"minus qui aliquid optio, animi nam odio iste quisquam voluptas laudantium, " -"magni recusandae nemo eligendi!" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rerum incidunt, " -"eum quae neque officiis dignissimos, veritatis amet, dolorum aperiam tempore" -" sed. Modi rerum velit itaque ex nobis vero necessitatibus adipisci eaque " -"cum iste nisi molestias quibusdam, voluptate odit deserunt, beatae." -msgstr "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rerum incidunt, " -"eum quae neque officiis dignissimos, veritatis amet, dolorum aperiam tempore" -" sed. Modi rerum velit itaque ex nobis vero necessitatibus adipisci eaque " -"cum iste nisi molestias quibusdam, voluptate odit deserunt, beatae." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vitae, inventore " -"accusantium dolores. Ad non necessitatibus recusandae cupiditate animi " -"quibusdam enim earum, nulla, qui. Dolorem sunt impedit similique a quia " -"earum fuga unde, repellendus omnis iure." -msgstr "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vitae, inventore " -"accusantium dolores. Ad non necessitatibus recusandae cupiditate animi " -"quibusdam enim earum, nulla, qui. Dolorem sunt impedit similique a quia " -"earum fuga unde, repellendus omnis iure." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MANHATTAN | € 12.50" -msgstr "" -"MANHATTAN | € " -"12.50" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MARGARITA | € 9.00" -msgstr "MARGARITA | € 9.00" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MOJITO | € 12.00" -msgstr "MOJITO | € 12.00" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:20 -#, python-format -msgid "Marker Style" -msgstr "Markeer stijl" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Media heading" -msgstr "Media hoofding" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Medium" -msgstr "Medium" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Menu A'la carte" -msgstr "Menu A'la carte" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "More Features" -msgstr "Meer features" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:60 -#, python-format -msgid "Muted" -msgstr "Gedempt" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "My Title" -msgstr "Mijn titel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Next" -msgstr "Volgende" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Nice % Discount Tables" -msgstr "Mooie % kortingstabellen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Nice and Efficient Events List" -msgstr "Mooie en efficiënte evenement lijsten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Normal" -msgstr "Normaal" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "OLV4SY3R" -msgstr "OLV4SY3R" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "OUR CATALOG" -msgstr "ONZE CATALOGUS" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:54 -#, python-format -msgid "Options" -msgstr "Opties" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -msgid "Organize Your Content with These Three Columns" -msgstr "Organiseer uw inhoud met deze drie kolommen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Organize Your Content with These Two Columns" -msgstr "Organiseer uw inhoud met deze twee kolommen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Outstanding images" -msgstr "Uitgaande afbeeldingen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"PATZ AND HALL | € " -"12.50" -msgstr "" -"PATZ AND HALL | € " -"12.50" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:37 -#, python-format -msgid "Paste the code into the box." -msgstr "Plak de code in deze box." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Pay" -msgstr "Betaal" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Planning" -msgstr "Planning" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Post heading" -msgstr "Post hoofding" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Prepare for the future of eCommerce." -msgstr "Bereid u voor op de toekomst van e-commerce." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Preparing" -msgstr "Voorbereiding" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "Present your products" -msgstr "Presenteer uw producten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Present your products online!" -msgstr "Presenteer uw producten online!" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Previous" -msgstr "Vorige" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Pro" -msgstr "Pro" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Producing" -msgstr "Produceren" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "" -"Product design is the process of creating a new product to be sold by a " -"business to its customers. A very broad concept, it is essentially the " -"efficient and effective generation and development of ideas through a " -"process that leads to new products." -msgstr "" -"Product ontwerp is het proces van het maken van een nieuw product dat " -"verkocht wordt door een bedrijf aan zijn klanten. Een breed concept, het is " -"in essentie het efficiënt en effectief genereren en ontwerpen van ideeën " -"tijdens een proces dat lijdt tot nieuwe producten." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 01" -msgstr "Project 01" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 02" -msgstr "Project 02" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 03" -msgstr "Project 03" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Put the focus on what you have to say!" -msgstr "Plaats de focus op wat u te zeggen hebt!" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:98 -#, python-format -msgid "Put video in container" -msgstr "Plaats video in een container" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "REGISTER " -msgstr "REGISTREER " - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "Read more" -msgstr "Lees meer" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Register" -msgstr "Registreer" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Remove current slide" -msgstr "Verwijder huidige dia" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Resize and Duplicate" -msgstr "Resize en dupliceren" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "Resume with A Nice Subtitle" -msgstr "Hervat met een leuke subtitel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Resume with a Subtitle" -msgstr "Hervat met een subtitel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Right" -msgstr "Rechts" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "RoadMap" -msgstr "Wegenkaart" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample Title" -msgstr "Voorbeeld titel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample description" -msgstr "Voorbeeld omschrijving" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Sandwich with Ham and Cheese | " -"€ 9.00" -msgstr "" -"Sandwich met ham en kaas | " -"€9.00" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Satellite" -msgstr "Satelliet" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:39 -#, python-format -msgid "Save" -msgstr "Opslaan" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 1" -msgstr "Sectie 1" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 2" -msgstr "Sectie 2" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 3" -msgstr "Sectie 3" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 4" -msgstr "Sectie 4" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 5" -msgstr "Sectie 5" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 6" -msgstr "Sectie 6" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:9 -#, python-format -msgid "Select a video" -msgstr "Selecteer een video" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Select and delete blocks
    to remove some steps." -msgstr "Selecteer en verwijder bouwblokken
    om stappen te verwijderen." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Select the Colors" -msgstr "Selecteer de kleuren" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Select your favorite font combination to emphase your texts." -msgstr "Selecteer uw favoriete lettertype om uw teksten te benadrukken." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Sep" -msgstr "Sep" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block -msgid "Set a catchy headline" -msgstr "Stel een aantrekkelijke kop in" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "Share" -msgstr "Delen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Shipping" -msgstr "Afleveradres" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:67 -#, python-format -msgid "Show controls" -msgstr "Toon controls" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Showcase Your Services and Features" -msgstr "Toon uw diensten en functies" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Sign in" -msgstr "Aanmelden" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Description" -msgstr "Slide omschrijving" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Title" -msgstr "Dia titel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "Slide title" -msgstr "Dia titel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Small" -msgstr "Klein" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Speakers from all over the world will join our experts to give inspiring " -"talks on various topics." -msgstr "" -"Sprekers van over de hele wereld zullen samen met onze experts inspirerende " -"presentaties geven over verschillende onderwerpen." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Striped" -msgstr "Gestreept" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Style" -msgstr "Stijl" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"TEQUILA SUNRISE | € " -"11.00" -msgstr "" -"TEQUILA SUNRISE | € " -"11.00" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_menu_three_columns -msgid "Take a tour" -msgstr "Volg een rondleiding" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Terrain" -msgstr "Terrein" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Testing" -msgstr "Testen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Text Highlight" -msgstr "Tekst highlight" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The best approach" -msgstr "De beste aanpak" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "The famous band comes last time in this year, don't miss it!" -msgstr "De beroemde band komt dit jaar voor de laatste keer, mis het niet!" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The latest technology" -msgstr "De laatste technologie" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "The process from paper version" -msgstr "Het proces vanuit papier versie" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "The product which fits your needs" -msgstr "Het product dat aan uw noden voldoet" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "" -"The solution to that is to create a product that, in its designed appearance" -" and function, expresses a personality or tells a story. Products that carry" -" such attributes are more likely to give off a stronger expression that will" -" attract more consumers. On that note it is important to keep in mind that " -"design expression does not only concern the appearance of a product, but " -"also its function. For example, as humans our appearance as well as our " -"actions are subject to people's judgment when they are making a first " -"impression of us." -msgstr "" -"De oplossing is om een product aan te maken dat, in zijn ontwerp en functie," -" een persoonlijkheid uitdrukt of een verhaal verteld. Producten die zulke " -"kenmerken vertonen geven een sterkere expressie die meer klanten aantrekt. " -"Het is belangrijk dat de ontwerp expressie niet alleen het voorkomen van het" -" product aangaat, maar ook zijn functionaliteit. Bijvoorbeeld, als mensen is" -" onze verschijning alsook onze acties blootgesteld aan mensen hun oordeel " -"wanneer ze een eerste impressie vormen van ons." - -#. module: theme_common -#: model:ir.model,name:theme_common.model_theme_utils -msgid "Theme Utils" -msgstr "Thema tools" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "This Is a Color Block" -msgstr "Dit is een kleurblok" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "This Is a Column" -msgstr "Dit is een kolom" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "" -"This theme does not limit you to one setup, we prefer to give you options. " -"From boxed layout to wide, left sidebars to right and multiple headers; we " -"let you decide. That’s right, you can have your cake and eat some too." -msgstr "" -"Dit thema limiteert u niet tot één opstelling, wij geven u graag opties. Van" -" geboxte layouts tot brede layouts, linkse menubalken of rechtse en meerdere" -" hoofdingen; we laten u kiezen." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Tiny" -msgstr "Klein" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_separator_nav -msgid "Top" -msgstr "Bovenaan" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Left" -msgstr "Links bovenaan" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Right" -msgstr "Rechts bovenaan" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "True" -msgstr "Waar" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Upcoming Events" -msgstr "Aankomende evenementen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Use newsletters to increase your popularity" -msgstr "Gebruik nieuwsbrieven om uw populariteit te verhogen" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:14 -#, python-format -msgid "" -"Use the 'Customize 'menu to define a fallback background image for not " -"compatible devices" -msgstr "" -"Gebruik het 'Personaliseer' menu om een achtergrondafbeelding in te stellen " -"voor niet compatibele toestellen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "" -"Use this building block to showcase your content with an images carousel. " -"You can edit, add or remove images using the customize options." -msgstr "" -"Gebruik deze bouwstenen om uw inhoud te tonen met een afbeeldingen carousel." -" U kan afbeeldingen wijzigen, toevoegen of verwijderen via de personaliseer " -"opties." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Use this component for creating a list of featured elements to which you " -"want to bring attention." -msgstr "" -"Gebruik deze component voor het aanmaken van een lijst met voorgestelde " -"elementen welke u onder de aandacht wilt brengen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "" -"Use this paragraph to write a short, sweet and successful resume about this " -"member of your team." -msgstr "" -"Gebruik deze paragraaf om een korte, leuke en succesvolle samenvatting te " -"schrijven over dit teamlid." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Use this snippet to build various types of components that feature a left- " -"or right-aligned image alongside textual content. Duplicate the element to " -"create a list that fit your needs." -msgstr "" -"Gebruik deze snippet om verschillende soorten componenten te bouwen die " -"links of rechts uitgelijnde afbeelding tonen naast tekst. Dupliceer het " -"element om een lijst te maken die voldoet aan uw noden." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -"Use this timeline as a part of your resume, to show your visitors what " -"you've done in the past." -msgstr "" -"Gebruik deze tijdlijn als een deel van uw CV, om bezoekers te tonen wat u in" -" het verleden heeft gedaan." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Useful options" -msgstr "Handige opties" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:17 -#, python-format -msgid "Video" -msgstr "Video" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_product_list -msgid "View item" -msgstr "Bekijk item" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "We have Awesome Products" -msgstr "We hebben geweldige producten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Which trends to follow? Which ideas will work?
    Opening Keynote - " -"Presented by John DOE." -msgstr "" -"Welke trends moet u volgen? Welke ideeën zullen werken?
    Opening keynote " -"- gepresenteerd door John DOE." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Wine" -msgstr "Wijn" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "" -"With Theme Clean you get a list of your events with date, time, description, etc. Select the simple or image mode and edit your content.\n" -"
    You can link your events to your favorite social network." -msgstr "" -"Met dit thema krijgt u een lijst van evenementen met datum, tijd, omschrijving, enz. Selecteer de gemakkelijke of afbeeldingsmodus en wijzig uw inhoud.\n" -"
    U kan uw evenementen linken aan uw favoriete sociale netwerk." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "With a great subtitle" -msgstr "Met een geweldige subtitel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "With the most effective technique" -msgstr "Met de meest effectieve techniek" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Write Something Nice for Your Users" -msgstr "Schrijf iets leuk voor uw gebruikers" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Write a description of your event here." -msgstr "Schrijf hier een omschrijving voor uw evenement." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "" -"Write a quote here from one of your customers. Quotes are a great way to " -"build confidence in your products or services." -msgstr "" -"Schrijf hier een citaat van één van uw klanten. Citaten zijn een geweldige " -"manier om het vertrouwen in uw producten of diensten te vergroten." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Write one or two paragraphs describing your product" -msgstr "Schrijf één of twee paragrafen die uw product omschrijven" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "" -"Write one or two paragraphs describing your product, services or a specific " -"feature. To be successful your content needs to be useful to your readers." -msgstr "" -"Schrijf één of meer paragrafen die uw product, dienst of een specifieke " -"kenmerk te omschrijven. Om succesvol te zijn moet uw inhoud bruikbaar zijn " -"voor uw gebruikers." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can change the box color by using the customize option." -msgstr "U kan de box kleur wijzigen door de personaliseer optie te gebruiken." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "You can edit, duplicate..." -msgstr "U kan wijzigen, dupliceren..." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can even replace the icon by one of your choice." -msgstr "U kan zelfs het icoon wijzigen voor één van uw keuze." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "You get a free drink with your entrance!" -msgstr "U krijgt een gratis drankje bij uw entree!" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Your Event Name" -msgstr "Uw evenementsnaam" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:11 -#, python-format -msgid "Your address" -msgstr "Uw adres" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Your title" -msgstr "Uw titel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Your website is where almost all of your customers will end up first. " -"
    Let's clear up what it takes to give them the best experience with it." -msgstr "" -"Uw website is waar bijna al uw klanten eerst op uitkomen.
    Laten we " -"uitklaren wat er nodig is om hem de beste ervaring hiermee te geven." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "ZUY4OPLQ" -msgstr "ZUY4OPLQ" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "card" -msgstr "kaart" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:16 -#, python-format -msgid "e.g. De Brouckere, Brussels, Belgium" -msgstr "b.v De Brouckere, Brussel, België" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:44 -#, python-format -msgid "iframe" -msgstr "iframe" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "link under the video." -msgstr "link onder de video." - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "link." -msgstr "link." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "off" -msgstr "uit" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:41 -#, python-format -msgid "share" -msgstr "deel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "with this theme." -msgstr "met dit thema." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "worldwilde" -msgstr "wereldweid" diff --git a/theme_bewise/theme_common/i18n/theme_common.pot b/theme_bewise/theme_common/i18n/theme_common.pot deleted file mode 100644 index 5493d8a..0000000 --- a/theme_bewise/theme_common/i18n/theme_common.pot +++ /dev/null @@ -1,1976 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * theme_common -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 12.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-24 09:00+0000\n" -"PO-Revision-Date: 2019-04-24 09: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_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$15/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$29/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$69/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$99/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- ART DIRECTOR -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- PARTNER -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- TRAINEE -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "-50% OFF" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "...and switch the timeline contents to fit your needs." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 03-11-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 08-11-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 22-10-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 28-10-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "02" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "05" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "1000 Apps" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "12:00 AM" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "18" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "20.000 Users" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "2014" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "21" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "234 Clients" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "25%" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "30 Countries" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "30%" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "50$" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "75 Partners" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Page Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map -msgid "Visit us:\n" -" Our office is located in the northeast of Brussels. TEL (555) 432 2365" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "\n" -" Date" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Images" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "\n" -" Time" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid " More Details" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Notes" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "\n" -" Location" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "\n" -" 100+ conferences" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "News" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Edit" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "\n" -" 2,000+ attendees" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -msgid "Position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid " Autoplay" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Image position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Inner Spacing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles_options -msgid "Color" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Colors" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Facebook" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Map Options" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block_option -msgid "Video Options" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Type" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Zoom" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " GitHub" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid " - An additional information" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid " An additional information" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Linkedin" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Styles" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Add Slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Add a new Slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Caption position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Delete Slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Remove current slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "* Conditions and restrictions apply." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Clients" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Followers" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Projects" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2015" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2018" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2019" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "\n" -" Next" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "\n" -" Next" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "\n" -" Previous" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "\n" -" Previous" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "First feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Another feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Second feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Last Feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Link" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Info" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Chardonnay\n" -" Sonoma Coast, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Malbec\n" -" Mendoza, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Pinot Noir\n" -" California, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Rose\n" -" Napa, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "rum, lime, juice cane sugar\n" -" fresh mint, soda, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "whiskey, vermouth, angostura,\n" -" maraschino cherry" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "white tequila, frenadine,\n" -" orange juice, soda, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "white tequila, triple sec,\n" -" lime juice, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "\n" -" Tag\n" -" \n" -" \n" -" Category\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "\n" -" 3 months ago\n" -" \n" -" \n" -" by John DOE\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_badge -msgid "\n" -" Category\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "\n" -" New\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "18\n" -" December" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "3\n" -" January" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "12" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "45" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "37" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "01." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "02." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Close" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress_bar -msgid "80% Development" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "80% Html5/CSS3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "85% Bootstrap" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "99% COMPLETE" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "A caption for this image" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " 20,7K " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "120GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "143" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "245" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "50GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "80GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "COMPANY: Odoo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "FUNCTION: Web Designer / UI." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Free Billing Systems" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Increase the amount of your visitors by offering them great discount.\n" -"
    Let them find the coupon code." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "My great button" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Skills: html5, css3, jquery, bootstrap3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Domains" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited MySQL Databases" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Write something about you.This is a good way to briefly tell your visitors who you are and what you do. Link Clean Flat Profile to your social networks and use the customizable progress bars to show your skills." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "A Big Image and a Paragraph" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image_parallax -msgid "A Business Theme For Odoo CMS" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "A COLOR BLOCK" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "A Great Way to Present Your Team" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "A Great Way to Show Your Numbers" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "A Great way to show your range" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "A great title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "A great way to catch your reader's attention is to tell a story. Everything you consider writing can be told as a story." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "A great way to catch your reader's attention is to tell a story. Everything you consider writing can be told as a story. Write one or two paragraphs describing your product or services. To be successful your content needs to be useful to your readers. Start with the customer. Find out what they want and give it to them." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "A great way to catch your reader's attention is to tell a story. Everything you consider writing can be told as a story. Write one or two paragraphs describing your product or services. To be successful your content needs to be useful to your readers. Start with the customer. Find out what they want and give it to them. A great way to catch your reader's attention is to tell a story. Everything you consider writing can be told as a story. Write one or two paragraphs describing your product or services. To be successful your content needs to be useful to your readers. Start with the customer. Find out what they want and give it to them." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "A timeline is a graphical representation on which important events are marked." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "ALL DAY" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "About Me" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Add Slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Add to cart" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:31 -#, python-format -msgid "Add videos, playlists or other contents pasting the iframe code or video url into the box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Add your co-Workers and a link to their profiles." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:5 -#, python-format -msgid "Address" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Amazing pages" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "An Other Color Block" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "And a great subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Animal Cannibals" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Animated" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:109 -#, python-format -msgid "Apply" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:81 -#, python-format -msgid "Autoplay" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "BLACKBIRD VINEYARDS | € 11.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Basement Jaxx" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Beautiful snippets" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "Big Icons" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Bigger" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Left" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Right" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box Description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Build relationships and recognition by staying in touch with your customers." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "COLORES DEL SOL | € 12.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "COUPON" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:53 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:108 -#, python-format -msgid "Cancel" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_frontend.js:51 -#, python-format -msgid "Cannot load google map, check your configuration !" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Change the color of this box" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Click here" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Click on the icon to adapt it
    to your purpose." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Click the" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:8 -#, python-format -msgid "Close" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Cocktails" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Collapsable Tab Code" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "Color blocks are a simple and effective way to present and highlight your content. Choose an image or a color for the background. You can even resize and duplicate the blocks to create your own layout. Add images or icons to customize the blocks." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_pricing -msgid "Colors" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Continue reading " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Convert your visitors to customers." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:36 -#, python-format -msgid "Copy the code provided in the expanded box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Create an irresistible website." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Customize Backgrounds" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:37 -#, python-format -msgid "Customize your map" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Cycling through elements" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DECISIONS, DECISIONS, AND EVEN MORE DECISIONS" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DESIGN, DESIGN, AND EVEN MORE DESIGN" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "DISCOVER THE PRODUCT" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Deciding the features" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:24 -#, python-format -msgid "Default" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "Design expression comes from the combined effect of all elements in a product. Colour tone, shape and size should direct a person's thoughts towards buying the product. Therefore it is in the product designer's best interest to consider the audiences who are most likely to be the product's end consumers. Keeping in mind how consumers will perceive the product during the design process will direct towards the product’s success in the market. However, even within a specific audience, it is challenging to cater to each possible personality within that group." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Discover" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Discover all the features" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Display Your Last Activities" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Double-click an icon to change it." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Drink menu" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Duplicate blocks
    to add more steps." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Edit this text and change it with your content." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Embed" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Event Heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "FRANCIS FORD COPPOLA | € 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "False" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "Features" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:92 -#, python-format -msgid "Fill container with video" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:23 -#, python-format -msgid "Flat" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Fleetwood Mac" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Focus on what the customer would like to know, not what you want to show. Write a small explanation of this great feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Fonts" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Freak!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Full Detailed Price List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "GIFT" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Get Delivered" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Get a code" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Getting feedback" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:22 -#, python-format -msgid "HTML5 Video - Youtube - Vimeo - Dailymotion" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Hamburgers" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:32 -#, python-format -msgid "Here’s how to embed a Youtube video:" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Highlight Your Content" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Honey Dijon Chicken Burger | € 12.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Hybrid" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Icon Box / Features List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Images Carousel" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "In a systematic approach, product designers conceptualize and evaluate ideas, turning them into tangible inventions and products. The product designer's role is to combine art, science, and technology to create new products that other people can use." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Introduce your content in few lines." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "It is super easy to resize and/or duplicate each box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "John DOE" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "John DOE • CEO of MyCompany" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "John Doe" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Jul" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "LV5MAY14" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Layout" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Left" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Let your customers follow
    and understand your process." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:74 -#, python-format -msgid "Loop video" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iste eius, nam optio dolor mollitia, consectetur asperiores libero illum. Repellendus, molestias consequatur rem ipsa. Tempora omnis eius, ipsam quaerat optio suscipit necessitatibus aliquam obcaecati. Vero quia mollitia repellendus maxime, alias. Harum!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laboriosam repellendus sunt nobis libero delectus aperiam animi porro, optio expedita odio impedit quae praesentium fugit consequuntur vero architecto, excepturi, maiores aliquid." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perspiciatis nobis, tempore voluptatem qui dolorum quae." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellendus ullam minus qui aliquid optio, animi nam odio iste quisquam voluptas laudantium, magni recusandae nemo eligendi!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rerum incidunt, eum quae neque officiis dignissimos, veritatis amet, dolorum aperiam tempore sed. Modi rerum velit itaque ex nobis vero necessitatibus adipisci eaque cum iste nisi molestias quibusdam, voluptate odit deserunt, beatae." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vitae, inventore accusantium dolores. Ad non necessitatibus recusandae cupiditate animi quibusdam enim earum, nulla, qui. Dolorem sunt impedit similique a quia earum fuga unde, repellendus omnis iure." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MANHATTAN | € 12.50" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MARGARITA | € 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MOJITO | € 12.00" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:20 -#, python-format -msgid "Marker Style" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Media heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Medium" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Menu A'la carte" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "More Features" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:60 -#, python-format -msgid "Muted" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "My Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Next" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Nice % Discount Tables" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Nice and Efficient Events List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Normal" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "OLV4SY3R" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "OUR CATALOG" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:54 -#, python-format -msgid "Options" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -msgid "Organize Your Content with These Three Columns" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Organize Your Content with These Two Columns" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Outstanding images" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "PATZ AND HALL | € 12.50" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:37 -#, python-format -msgid "Paste the code into the box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Pay" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Planning" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Post heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Prepare for the future of eCommerce." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Preparing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "Present your products" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Present your products online!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Previous" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Pro" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Producing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "Product design is the process of creating a new product to be sold by a business to its customers. A very broad concept, it is essentially the efficient and effective generation and development of ideas through a process that leads to new products." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 01" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 02" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 03" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Put the focus on what you have to say!" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:98 -#, python-format -msgid "Put video in container" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "REGISTER " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "Read more" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Register" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Remove current slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Resize and Duplicate" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "Resume with A Nice Subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Resume with a Subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Right" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "RoadMap" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Sandwich with Ham and Cheese | € 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Satellite" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:39 -#, python-format -msgid "Save" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 1" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 2" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 4" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 5" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 6" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:9 -#, python-format -msgid "Select a video" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Select and delete blocks
    to remove some steps." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Select the Colors" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Select your favorite font combination to emphase your texts." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Sep" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block -msgid "Set a catchy headline" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "Share" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Shipping" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:67 -#, python-format -msgid "Show controls" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Showcase Your Services and Features" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Sign in" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "Slide title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Small" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Speakers from all over the world will join our experts to give inspiring talks on various topics." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Striped" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Style" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "TEQUILA SUNRISE | € 11.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_menu_three_columns -msgid "Take a tour" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Terrain" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Testing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Text Highlight" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The best approach" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "The famous band comes last time in this year, don't miss it!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The latest technology" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "The process from paper version" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "The product which fits your needs" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "The solution to that is to create a product that, in its designed appearance and function, expresses a personality or tells a story. Products that carry such attributes are more likely to give off a stronger expression that will attract more consumers. On that note it is important to keep in mind that design expression does not only concern the appearance of a product, but also its function. For example, as humans our appearance as well as our actions are subject to people's judgment when they are making a first impression of us." -msgstr "" - -#. module: theme_common -#: model:ir.model,name:theme_common.model_theme_utils -msgid "Theme Utils" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "This Is a Color Block" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "This Is a Column" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "This theme does not limit you to one setup, we prefer to give you options. From boxed layout to wide, left sidebars to right and multiple headers; we let you decide. That’s right, you can have your cake and eat some too." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Tiny" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_separator_nav -msgid "Top" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Left" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Right" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "True" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Upcoming Events" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Use newsletters to increase your popularity" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:14 -#, python-format -msgid "Use the 'Customize 'menu to define a fallback background image for not compatible devices" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Use this building block to showcase your content with an images carousel. You can edit, add or remove images using the customize options." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Use this component for creating a list of featured elements to which you want to bring attention." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "Use this paragraph to write a short, sweet and successful resume about this member of your team." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Use this snippet to build various types of components that feature a left- or right-aligned image alongside textual content. Duplicate the element to create a list that fit your needs." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Use this timeline as a part of your resume, to show your visitors what you've done in the past." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Useful options" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:17 -#, python-format -msgid "Video" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_product_list -msgid "View item" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "We have Awesome Products" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Which trends to follow? Which ideas will work?
    Opening Keynote - Presented by John DOE." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Wine" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "With Theme Clean you get a list of your events with date, time, description, etc. Select the simple or image mode and edit your content.\n" -"
    You can link your events to your favorite social network." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "With a great subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "With the most effective technique" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Write Something Nice for Your Users" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Write a description of your event here." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "Write a quote here from one of your customers. Quotes are a great way to build confidence in your products or services." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Write one or two paragraphs describing your product" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Write one or two paragraphs describing your product, services or a specific feature. To be successful your content needs to be useful to your readers." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can change the box color by using the customize option." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "You can edit, duplicate..." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can even replace the icon by one of your choice." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "You get a free drink with your entrance!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Your Event Name" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:11 -#, python-format -msgid "Your address" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Your title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Your website is where almost all of your customers will end up first.
    Let's clear up what it takes to give them the best experience with it." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "ZUY4OPLQ" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "card" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:16 -#, python-format -msgid "e.g. De Brouckere, Brussels, Belgium" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:44 -#, python-format -msgid "iframe" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "link under the video." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "link." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "off" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:41 -#, python-format -msgid "share" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "with this theme." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "worldwilde" -msgstr "" - diff --git a/theme_bewise/theme_common/i18n/zh_CN.po b/theme_bewise/theme_common/i18n/zh_CN.po deleted file mode 100644 index 5d9344f..0000000 --- a/theme_bewise/theme_common/i18n/zh_CN.po +++ /dev/null @@ -1,2142 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * theme_common -# -# Translators: -# v2exerer <9010446@qq.com>, 2019 -# 老窦 北京 <2662059195@qq.com>, 2019 -# Jeff Yu - Elico Corp , 2019 -# diaojiaolou <124412206@qq.com>, 2019 -# ChinaMaker , 2019 -# Martin Trigaux, 2019 -# Jeffery CHEN Fan , 2019 -# Gary Wei , 2019 -# fausthuang, 2019 -# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2019 -# Rangy Chen , 2019 -# e2f_cn c5 , 2019 -# Lisa Zhang , 2019 -# inspur qiuguodong , 2019 -# liAnGjiA , 2019 -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 12.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-24 09:00+0000\n" -"PO-Revision-Date: 2019-04-24 11:21+0000\n" -"Last-Translator: liAnGjiA , 2019\n" -"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$15/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$29/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$69/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$99/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- ART DIRECTOR -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- PARTNER -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- TRAINEE -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "-50% OFF" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "...and switch the timeline contents to fit your needs." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 03-11-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 08-11-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 22-10-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 28-10-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "02" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "05" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "1000 Apps" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "12:00 AM" -msgstr "12:00 AM" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "18" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "20.000 Users" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "2014" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "21" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "234 Clients" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "25%" -msgstr "25%" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "30 Countries" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "30%" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "50$" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "75 Partners" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Page Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map -msgid "" -"Visit us:\n" -" Our office is located in the northeast of Brussels. TEL (555) 432 2365" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Date" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Images" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Time" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid " More Details" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Notes" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Location" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 100+ conferences" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "News" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Edit" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 2,000+ attendees" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -msgid "Position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid " Autoplay" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Image position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Inner Spacing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles_options -msgid "Color" -msgstr "颜色" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Colors" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Facebook" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Map Options" -msgstr "地图选项" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block_option -msgid "Video Options" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Type" -msgstr "类型" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Zoom" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " GitHub" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "" -" - An additional " -"information" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -" An additional " -"information" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Linkedin" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Styles" -msgstr "样式" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Add Slide" -msgstr "添加幻灯片" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Add a new Slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Caption position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Delete Slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Remove current slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "* Conditions and restrictions apply." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Clients" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Followers" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Projects" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2015" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2018" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2019" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" Next" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "" -"\n" -" Next" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" Previous" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "" -"\n" -" Previous" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "First feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Another feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Second feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Last Feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Link" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Info" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Chardonnay\n" -" Sonoma Coast, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Malbec\n" -" Mendoza, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Pinot Noir\n" -" California, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Rose\n" -" Napa, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"rum, lime, juice cane sugar\n" -" fresh mint, soda, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"whiskey, vermouth, angostura,\n" -" maraschino cherry" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"white tequila, frenadine,\n" -" orange juice, soda, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"white tequila, triple sec,\n" -" lime juice, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "" -"\n" -" Tag\n" -" \n" -" \n" -" Category\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 3 months ago\n" -" \n" -" \n" -" by John DOE\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_badge -msgid "" -"\n" -" Category\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" New\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"18\n" -" December" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"3\n" -" January" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "12" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "45" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "37" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "01." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "02." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Close" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress_bar -msgid "80% Development" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "80% Html5/CSS3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "85% Bootstrap" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "99% COMPLETE" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "A caption for this image" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " 20,7K " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "120GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "143" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "245" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "50GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "80GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "COMPANY: Odoo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "FUNCTION: Web Designer / UI." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Free Billing Systems" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "" -"Increase the amount of your visitors by offering them great discount.\n" -"
    Let them find the coupon code." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "My great button" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "" -"Skills: html5, css3, jquery, " -"bootstrap3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Domains" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited MySQL Databases" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "" -"Write something about you.This is a good way to briefly " -"tell your visitors who you are and what you do. Link Clean Flat Profile to " -"your social networks and use the customizable progress bars to show your " -"skills." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "A Big Image and a Paragraph" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image_parallax -msgid "A Business Theme For Odoo CMS" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "A COLOR BLOCK" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "A Great Way to Present Your Team" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "A Great Way to Show Your Numbers" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "A Great way to show your range" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "A great title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story. Write one or two paragraphs " -"describing your product or services. To be successful your content needs to " -"be useful to your readers. Start with the customer. Find out what they want " -"and give it to them." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story. Write one or two paragraphs " -"describing your product or services. To be successful your content needs to " -"be useful to your readers. Start with the customer. Find out what they want " -"and give it to them. A great way to catch your reader's attention is to tell" -" a story. Everything you consider writing can be told as a story. Write one " -"or two paragraphs describing your product or services. To be successful your" -" content needs to be useful to your readers. Start with the customer. Find " -"out what they want and give it to them." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -"A timeline is a graphical representation on which important events are " -"marked." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "ALL DAY" -msgstr "全天" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "About Me" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Add Slide" -msgstr "添加幻灯片" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Add to cart" -msgstr "加入购物车" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:31 -#, python-format -msgid "" -"Add videos, playlists or other contents pasting the iframe code or video url" -" into the box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Add your co-Workers and a link to their profiles." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:5 -#, python-format -msgid "Address" -msgstr "地址" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Amazing pages" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "An Other Color Block" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "And a great subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Animal Cannibals" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Animated" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:109 -#, python-format -msgid "Apply" -msgstr "应用" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:81 -#, python-format -msgid "Autoplay" -msgstr "自动播放" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"BLACKBIRD VINEYARDS | € " -"11.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Basement Jaxx" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Beautiful snippets" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "Big Icons" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Bigger" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Left" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Right" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box Description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Build relationships and recognition by staying in touch with your customers." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"COLORES DEL SOL | € " -"12.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "COUPON" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:53 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:108 -#, python-format -msgid "Cancel" -msgstr "取消日期" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_frontend.js:51 -#, python-format -msgid "Cannot load google map, check your configuration !" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Change the color of this box" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Click here" -msgstr "点击这里" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Click on the icon to adapt it
    to your purpose." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Click the" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:8 -#, python-format -msgid "Close" -msgstr "关闭" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Cocktails" -msgstr "鸡尾酒" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Collapsable Tab Code" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "" -"Color blocks are a simple and effective way to present and highlight" -" your content. Choose an image or a color for the background. You " -"can even resize and duplicate the blocks to create your own layout. Add " -"images or icons to customize the blocks." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_pricing -msgid "Colors" -msgstr "颜色" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Continue reading " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Convert your visitors to customers." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:36 -#, python-format -msgid "Copy the code provided in the expanded box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Create an irresistible website." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Customize Backgrounds" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:37 -#, python-format -msgid "Customize your map" -msgstr "定制您的地图" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Cycling through elements" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DECISIONS, DECISIONS, AND EVEN MORE DECISIONS" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DESIGN, DESIGN, AND EVEN MORE DESIGN" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "DISCOVER THE PRODUCT" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Deciding the features" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:24 -#, python-format -msgid "Default" -msgstr "默认" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "" -"Design expression comes from the combined effect of all elements in a " -"product. Colour tone, shape and size should direct a person's thoughts " -"towards buying the product. Therefore it is in the product designer's best " -"interest to consider the audiences who are most likely to be the product's " -"end consumers. Keeping in mind how consumers will perceive the product " -"during the design process will direct towards the product’s success in the " -"market. However, even within a specific audience, it is challenging to cater" -" to each possible personality within that group." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Discover" -msgstr "探索" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Discover all the features" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Display Your Last Activities" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Double-click an icon to change it." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Drink menu" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Duplicate blocks
    to add more steps." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Edit this text and change it with your content." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Embed" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Event Heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"FRANCIS FORD COPPOLA | €" -" 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "False" -msgstr "否" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "Features" -msgstr "功能" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:92 -#, python-format -msgid "Fill container with video" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:23 -#, python-format -msgid "Flat" -msgstr "普通" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Fleetwood Mac" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "" -"Focus on what the customer would like to know, not what you want to show. " -"Write a small explanation of this great feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Fonts" -msgstr "字体" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Freak!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Full Detailed Price List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "GIFT" -msgstr "礼品" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Get Delivered" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Get a code" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Getting feedback" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:22 -#, python-format -msgid "HTML5 Video - Youtube - Vimeo - Dailymotion" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Hamburgers" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:32 -#, python-format -msgid "Here’s how to embed a Youtube video:" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Highlight Your Content" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Honey Dijon Chicken Burger | " -"€ 12.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Hybrid" -msgstr "混合动力" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Icon Box / Features List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Images Carousel" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "" -"In a systematic approach, product designers conceptualize and evaluate " -"ideas, turning them into tangible inventions and products. The product " -"designer's role is to combine art, science, and technology to create new " -"products that other people can use." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Introduce your content in few lines." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "It is super easy to resize and/or duplicate each box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "John DOE" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "John DOE • CEO of MyCompany" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "John Doe" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Jul" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "LV5MAY14" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Layout" -msgstr "布局" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Left" -msgstr "左" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Let your customers follow
    and understand your process." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:74 -#, python-format -msgid "Loop video" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iste eius, nam " -"optio dolor mollitia, consectetur asperiores libero illum. Repellendus, " -"molestias consequatur rem ipsa. Tempora omnis eius, ipsam quaerat optio " -"suscipit necessitatibus aliquam obcaecati. Vero quia mollitia repellendus " -"maxime, alias. Harum!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laboriosam " -"repellendus sunt nobis libero delectus aperiam animi porro, optio expedita " -"odio impedit quae praesentium fugit consequuntur vero architecto, excepturi," -" maiores aliquid." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perspiciatis " -"nobis, tempore voluptatem qui dolorum quae." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellendus ullam " -"minus qui aliquid optio, animi nam odio iste quisquam voluptas laudantium, " -"magni recusandae nemo eligendi!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rerum incidunt, " -"eum quae neque officiis dignissimos, veritatis amet, dolorum aperiam tempore" -" sed. Modi rerum velit itaque ex nobis vero necessitatibus adipisci eaque " -"cum iste nisi molestias quibusdam, voluptate odit deserunt, beatae." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vitae, inventore " -"accusantium dolores. Ad non necessitatibus recusandae cupiditate animi " -"quibusdam enim earum, nulla, qui. Dolorem sunt impedit similique a quia " -"earum fuga unde, repellendus omnis iure." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MANHATTAN | € 12.50" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MARGARITA | € 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MOJITO | € 12.00" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:20 -#, python-format -msgid "Marker Style" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Media heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Medium" -msgstr "媒介" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Menu A'la carte" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "More Features" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:60 -#, python-format -msgid "Muted" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "My Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Next" -msgstr "下一页" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Nice % Discount Tables" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Nice and Efficient Events List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Normal" -msgstr "一般" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "OLV4SY3R" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "OUR CATALOG" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:54 -#, python-format -msgid "Options" -msgstr "选项" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -msgid "Organize Your Content with These Three Columns" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Organize Your Content with These Two Columns" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Outstanding images" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"PATZ AND HALL | € " -"12.50" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:37 -#, python-format -msgid "Paste the code into the box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Pay" -msgstr "付款" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Planning" -msgstr "计划" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Post heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Prepare for the future of eCommerce." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Preparing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "Present your products" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Present your products online!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Previous" -msgstr "上一页" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Pro" -msgstr "Pro" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Producing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "" -"Product design is the process of creating a new product to be sold by a " -"business to its customers. A very broad concept, it is essentially the " -"efficient and effective generation and development of ideas through a " -"process that leads to new products." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 01" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 02" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 03" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Put the focus on what you have to say!" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:98 -#, python-format -msgid "Put video in container" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "REGISTER " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "Read more" -msgstr "阅读更多" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Register" -msgstr "注册" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Remove current slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Resize and Duplicate" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "Resume with A Nice Subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Resume with a Subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Right" -msgstr "右" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "RoadMap" -msgstr "路线图" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Sandwich with Ham and Cheese | " -"€ 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Satellite" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:39 -#, python-format -msgid "Save" -msgstr "保存" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 1" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 2" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 4" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 5" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 6" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:9 -#, python-format -msgid "Select a video" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Select and delete blocks
    to remove some steps." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Select the Colors" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Select your favorite font combination to emphase your texts." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Sep" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block -msgid "Set a catchy headline" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "Share" -msgstr "共享" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Shipping" -msgstr "送货" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:67 -#, python-format -msgid "Show controls" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Showcase Your Services and Features" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Sign in" -msgstr "登录" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "Slide title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Small" -msgstr "小" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Speakers from all over the world will join our experts to give inspiring " -"talks on various topics." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Striped" -msgstr "条纹" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Style" -msgstr "风格" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"TEQUILA SUNRISE | € " -"11.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_menu_three_columns -msgid "Take a tour" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Terrain" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Testing" -msgstr "测试" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Text Highlight" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The best approach" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "The famous band comes last time in this year, don't miss it!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The latest technology" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "The process from paper version" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "The product which fits your needs" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "" -"The solution to that is to create a product that, in its designed appearance" -" and function, expresses a personality or tells a story. Products that carry" -" such attributes are more likely to give off a stronger expression that will" -" attract more consumers. On that note it is important to keep in mind that " -"design expression does not only concern the appearance of a product, but " -"also its function. For example, as humans our appearance as well as our " -"actions are subject to people's judgment when they are making a first " -"impression of us." -msgstr "" - -#. module: theme_common -#: model:ir.model,name:theme_common.model_theme_utils -msgid "Theme Utils" -msgstr "主题实用工具" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "This Is a Color Block" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "This Is a Column" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "" -"This theme does not limit you to one setup, we prefer to give you options. " -"From boxed layout to wide, left sidebars to right and multiple headers; we " -"let you decide. That’s right, you can have your cake and eat some too." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Tiny" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_separator_nav -msgid "Top" -msgstr "顶部" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Left" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Right" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "True" -msgstr "真" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Upcoming Events" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Use newsletters to increase your popularity" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:14 -#, python-format -msgid "" -"Use the 'Customize 'menu to define a fallback background image for not " -"compatible devices" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "" -"Use this building block to showcase your content with an images carousel. " -"You can edit, add or remove images using the customize options." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Use this component for creating a list of featured elements to which you " -"want to bring attention." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "" -"Use this paragraph to write a short, sweet and successful resume about this " -"member of your team." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Use this snippet to build various types of components that feature a left- " -"or right-aligned image alongside textual content. Duplicate the element to " -"create a list that fit your needs." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -"Use this timeline as a part of your resume, to show your visitors what " -"you've done in the past." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Useful options" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:17 -#, python-format -msgid "Video" -msgstr "视频" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_product_list -msgid "View item" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "We have Awesome Products" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Which trends to follow? Which ideas will work?
    Opening Keynote - " -"Presented by John DOE." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Wine" -msgstr "酒" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "" -"With Theme Clean you get a list of your events with date, time, description, etc. Select the simple or image mode and edit your content.\n" -"
    You can link your events to your favorite social network." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "With a great subtitle" -msgstr "附带很棒的副标题" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "With the most effective technique" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Write Something Nice for Your Users" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Write a description of your event here." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "" -"Write a quote here from one of your customers. Quotes are a great way to " -"build confidence in your products or services." -msgstr "在这里写一个客户的好评。好评是建立客户对你的产品或服务的信心的好方法。" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Write one or two paragraphs describing your product" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "" -"Write one or two paragraphs describing your product, services or a specific " -"feature. To be successful your content needs to be useful to your readers." -msgstr "写一两个段落描述您的产品服务或特定功能。要想取得成功,您的内容需要对读者有用。" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can change the box color by using the customize option." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "You can edit, duplicate..." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can even replace the icon by one of your choice." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "You get a free drink with your entrance!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Your Event Name" -msgstr "你的时间名称" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:11 -#, python-format -msgid "Your address" -msgstr "您的地址" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Your title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Your website is where almost all of your customers will end up first. " -"
    Let's clear up what it takes to give them the best experience with it." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "ZUY4OPLQ" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "card" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:16 -#, python-format -msgid "e.g. De Brouckere, Brussels, Belgium" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:44 -#, python-format -msgid "iframe" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "link under the video." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "link." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "off" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:41 -#, python-format -msgid "share" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "with this theme." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "worldwilde" -msgstr "" diff --git a/theme_bewise/theme_common/models/__init__.py b/theme_bewise/theme_common/models/__init__.py deleted file mode 100644 index ef70e5a..0000000 --- a/theme_bewise/theme_common/models/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -# -*- coding: utf-8 -*- -# Part of Odoo. See LICENSE file for full copyright and licensing details. -from . import theme_common diff --git a/theme_bewise/theme_common/models/theme_common.py b/theme_bewise/theme_common/models/theme_common.py deleted file mode 100644 index 6720d3a..0000000 --- a/theme_bewise/theme_common/models/theme_common.py +++ /dev/null @@ -1,16 +0,0 @@ -from odoo import models - - -class ThemeCommon(models.AbstractModel): - _inherit = 'theme.utils' - - def _theme_common_post_copy(self, mod): - self.disable_view('website_theme_install.customize_modal') - - # Reset all default color when switching themes - for nb in range(2, 9): - self.disable_view('theme_common.option_colors_%02d_variables' % nb) - - # For compatibility - # self.enable_view('theme_common.compatibility-saas-11-4-variables') - # self.enable_view('theme_common.compatibility-saas-11-4') diff --git a/theme_bewise/theme_common/static/lib/YTPlayer/jquery.mb.YTPlayer.js b/theme_bewise/theme_common/static/lib/YTPlayer/jquery.mb.YTPlayer.js deleted file mode 100644 index 6952c9a..0000000 --- a/theme_bewise/theme_common/static/lib/YTPlayer/jquery.mb.YTPlayer.js +++ /dev/null @@ -1,1543 +0,0 @@ -/*___________________________________________________________________________________________________________________________________________________ - _ jquery.mb.components _ - _ _ - _ file: jquery.mb.YTPlayer.src.js _ - _ last modified: 01/07/15 19.35 _ - _ _ - _ Open Lab s.r.l., Florence - Italy _ - _ _ - _ email: matteo@open-lab.com _ - _ site: http://pupunzi.com _ - _ http://open-lab.com _ - _ blog: http://pupunzi.open-lab.com _ - _ Q&A: http://jquery.pupunzi.com _ - _ _ - _ Licences: MIT, GPL _ - _ http://www.opensource.org/licenses/mit-license.php _ - _ http://www.gnu.org/licenses/gpl.html _ - _ _ - _ Copyright (c) 2001-2015. Matteo Bicocchi (Pupunzi); _ - ___________________________________________________________________________________________________________________________________________________*/ -var ytp = ytp || {}; - -function onYouTubeIframeAPIReady() { - if( ytp.YTAPIReady ) return; - ytp.YTAPIReady = true; - jQuery( document ).trigger( "YTAPIReady" ); -} - -var getYTPVideoID = function( url ) { - var videoID, playlistID; - if( url.indexOf( "youtu.be" ) > 0 ) { - videoID = url.substr( url.lastIndexOf( "/" ) + 1, url.length ); - playlistID = videoID.indexOf( "?list=" ) > 0 ? videoID.substr( videoID.lastIndexOf( "=" ), videoID.length ) : null; - videoID = playlistID ? videoID.substr( 0, videoID.lastIndexOf( "?" ) ) : videoID; - } else if( url.indexOf( "http" ) > -1 ) { - videoID = url.match( /[\\?&]v=([^&#]*)/ )[ 1 ]; - playlistID = url.indexOf( "list=" ) > 0 ? url.match( /[\\?&]list=([^&#]*)/ )[ 1 ] : null; - } else { - videoID = url.length > 15 ? null : url; - playlistID = videoID ? null : url; - } - return { - videoID: videoID, - playlistID: playlistID - }; -}; - -( function( jQuery, ytp ) { - - jQuery.mbYTPlayer = { - name: "jquery.mb.YTPlayer", - version: "2.9.4", - build: "{{ build }}", - author: "Matteo Bicocchi", - apiKey: "", - defaults: { - containment: "body", - ratio: "auto", // "auto", "16/9", "4/3" - videoURL: null, - playlistURL: null, - startAt: 0, - stopAt: 0, - autoPlay: true, - vol: 50, // 1 to 100 - addRaster: false, - opacity: 1, - quality: "default", //or “small”, “medium”, “large”, “hd720”, “hd1080”, “highres” - mute: false, - loop: true, - showControls: true, - showAnnotations: false, - showYTLogo: true, - stopMovieOnBlur: true, - realfullscreen: true, - gaTrack: true, - optimizeDisplay: true, - onReady: function( player ) {} - }, - /* @fontface icons */ - controls: { - play: "P", - pause: "p", - mute: "M", - unmute: "A", - onlyYT: "O", - showSite: "R", - ytLogo: "Y" - }, - locationProtocol: "https:", - /** - * - * @param options - * @returns [players] - */ - buildPlayer: function( options ) { - return this.each( function() { - var YTPlayer = this; - var $YTPlayer = jQuery( YTPlayer ); - YTPlayer.loop = 0; - YTPlayer.opt = {}; - YTPlayer.state = {}; - YTPlayer.filtersEnabled = true; - YTPlayer.filters = { - grayscale: { - value: 0, - unit: "%" - }, - hue_rotate: { - value: 0, - unit: "deg" - }, - invert: { - value: 0, - unit: "%" - }, - opacity: { - value: 0, - unit: "%" - }, - saturate: { - value: 0, - unit: "%" - }, - sepia: { - value: 0, - unit: "%" - }, - brightness: { - value: 0, - unit: "%" - }, - contrast: { - value: 0, - unit: "%" - }, - blur: { - value: 0, - unit: "px" - } - }; - $YTPlayer.addClass( "mb_YTPlayer" ); - var property = $YTPlayer.data( "property" ) && typeof $YTPlayer.data( "property" ) == "string" ? eval( '(' + $YTPlayer.data( "property" ) + ')' ) : $YTPlayer.data( "property" ); - if( typeof property != "undefined" && typeof property.vol != "undefined" ) property.vol = property.vol === 0 ? property.vol = 1 : property.vol; - jQuery.extend( YTPlayer.opt, jQuery.mbYTPlayer.defaults, options, property ); - if( !YTPlayer.hasChanged ) { - YTPlayer.defaultOpt = {}; - jQuery.extend( YTPlayer.defaultOpt, jQuery.mbYTPlayer.defaults, options, property ); - } - YTPlayer.isRetina = ( window.retina || window.devicePixelRatio > 1 ); - var isIframe = function() { - var isIfr = false; - try { - if( self.location.href != top.location.href ) isIfr = true; - } catch( e ) { - isIfr = true; - } - return isIfr; - }; - YTPlayer.canGoFullScreen = !( jQuery.browser.msie || jQuery.browser.opera || isIframe() ); - if( !YTPlayer.canGoFullScreen ) YTPlayer.opt.realfullscreen = false; - if( !$YTPlayer.attr( "id" ) ) $YTPlayer.attr( "id", "video_" + new Date().getTime() ); - var playerID = "mbYTP_" + YTPlayer.id; - YTPlayer.isAlone = false; - YTPlayer.hasFocus = true; - var videoID = this.opt.videoURL ? getYTPVideoID( this.opt.videoURL ).videoID : $YTPlayer.attr( "href" ) ? getYTPVideoID( $YTPlayer.attr( "href" ) ).videoID : false; - var playlistID = this.opt.videoURL ? getYTPVideoID( this.opt.videoURL ).playlistID : $YTPlayer.attr( "href" ) ? getYTPVideoID( $YTPlayer.attr( "href" ) ).playlistID : false; - YTPlayer.videoID = videoID; - YTPlayer.playlistID = playlistID; - YTPlayer.opt.showAnnotations = ( YTPlayer.opt.showAnnotations ) ? '0' : '3'; - var playerVars = { - 'autoplay': 0, - 'modestbranding': 1, - 'controls': 0, - 'showinfo': 0, - 'rel': 0, - 'enablejsapi': 1, - 'version': 3, - 'playerapiid': playerID, - 'origin': '*', - 'allowfullscreen': true, - 'wmode': 'transparent', - 'iv_load_policy': YTPlayer.opt.showAnnotations - }; - if( document.createElement( 'video' ).canPlayType ) jQuery.extend( playerVars, { - 'html5': 1 - } ); - if( jQuery.browser.msie && jQuery.browser.version < 9 ) this.opt.opacity = 1; - var playerBox = jQuery( "
    " ).attr( "id", playerID ).addClass( "playerBox" ); - var overlay = jQuery( "
    " ).css( { - position: "absolute", - top: 0, - left: 0, - width: "100%", - height: "100%" - } ).addClass( "YTPOverlay" ); - YTPlayer.isSelf = YTPlayer.opt.containment == "self"; - YTPlayer.defaultOpt.containment = YTPlayer.opt.containment = YTPlayer.opt.containment == "self" ? jQuery( this ) : jQuery( YTPlayer.opt.containment ); - YTPlayer.isBackground = YTPlayer.opt.containment.get( 0 ).tagName.toLowerCase() == "body"; - if( YTPlayer.isBackground && ytp.backgroundIsInited ) return; - var isPlayer = YTPlayer.opt.containment.is( jQuery( this ) ); - YTPlayer.canPlayOnMobile = isPlayer && jQuery( this ).children().length === 0; - if( !isPlayer ) { - $YTPlayer.hide(); - } else { - YTPlayer.isPlayer = true; - } - if( jQuery.browser.mobile && !YTPlayer.canPlayOnMobile ) { - $YTPlayer.remove(); - return; - } - var wrapper = jQuery( "
    " ).addClass( "mbYTP_wrapper" ).attr( "id", "wrapper_" + playerID ); - wrapper.css( { - position: "absolute", - zIndex: 0, - minWidth: "100%", - minHeight: "100%", - left: 0, - top: 0, - overflow: "hidden", - opacity: 0 - } ); - playerBox.css( { - position: "absolute", - zIndex: 0, - width: "100%", - height: "100%", - top: 0, - left: 0, - overflow: "hidden" - } ); - wrapper.append( playerBox ); - YTPlayer.opt.containment.children().not( "script, style" ).each( function() { - if( jQuery( this ).css( "position" ) == "static" ) jQuery( this ).css( "position", "relative" ); - } ); - if( YTPlayer.isBackground ) { - jQuery( "body" ).css( { - boxSizing: "border-box" - } ); - wrapper.css( { - position: "fixed", - top: 0, - left: 0, - zIndex: 0 - } ); - $YTPlayer.hide(); - } else if( YTPlayer.opt.containment.css( "position" ) == "static" ) YTPlayer.opt.containment.css( { - position: "relative" - } ); - YTPlayer.opt.containment.prepend( wrapper ); - YTPlayer.wrapper = wrapper; - playerBox.css( { - opacity: 1 - } ); - if( !jQuery.browser.mobile ) { - playerBox.after( overlay ); - YTPlayer.overlay = overlay; - } - if( !YTPlayer.isBackground ) { - overlay.on( "mouseenter", function() { - if( YTPlayer.controlBar ) YTPlayer.controlBar.addClass( "visible" ); - } ).on( "mouseleave", function() { - if( YTPlayer.controlBar ) YTPlayer.controlBar.removeClass( "visible" ); - } ) - } - if( !ytp.YTAPIReady ) { - jQuery( "#YTAPI" ).remove(); - var tag = jQuery( "" ).attr( { - "src": jQuery.mbYTPlayer.locationProtocol + "//www.youtube.com/iframe_api?v=" + jQuery.mbYTPlayer.version, - "id": "YTAPI" - } ); - jQuery( "head" ).prepend( tag ); - } else { - setTimeout( function() { - jQuery( document ).trigger( "YTAPIReady" ); - }, 100 ) - } - jQuery( document ).on( "YTAPIReady", function() { - if( ( YTPlayer.isBackground && ytp.backgroundIsInited ) || YTPlayer.isInit ) return; - if( YTPlayer.isBackground ) { - ytp.backgroundIsInited = true; - } - YTPlayer.opt.autoPlay = typeof YTPlayer.opt.autoPlay == "undefined" ? ( YTPlayer.isBackground ? true : false ) : YTPlayer.opt.autoPlay; - YTPlayer.opt.vol = YTPlayer.opt.vol ? YTPlayer.opt.vol : 100; - jQuery.mbYTPlayer.getDataFromAPI( YTPlayer ); - jQuery( YTPlayer ).on( "YTPChanged", function() { - if( YTPlayer.isInit ) return; - YTPlayer.isInit = true; - //if is mobile && isPlayer fallback to the default YT player - if( jQuery.browser.mobile && YTPlayer.canPlayOnMobile ) { - // Try to adjust the player dimention - if( YTPlayer.opt.containment.outerWidth() > jQuery( window ).width() ) { - YTPlayer.opt.containment.css( { - maxWidth: "100%" - } ); - var h = YTPlayer.opt.containment.outerWidth() * .6; - YTPlayer.opt.containment.css( { - maxHeight: h - } ); - } - new YT.Player( playerID, { - videoId: YTPlayer.videoID.toString(), - height: '100%', - width: '100%', - events: { - 'onReady': function( event ) { - YTPlayer.player = event.target; - playerBox.css( { - opacity: 1 - } ); - YTPlayer.wrapper.css( { - opacity: 1 - } ); - } - } - } ); - return; - } - new YT.Player( playerID, { - videoId: YTPlayer.videoID.toString(), - playerVars: playerVars, - events: { - 'onReady': function( event ) { - YTPlayer.player = event.target; - if( YTPlayer.isReady ) return; - YTPlayer.isReady = YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ? false : true; - YTPlayer.playerEl = YTPlayer.player.getIframe(); - $YTPlayer.optimizeDisplay(); - YTPlayer.videoID = videoID; - jQuery( window ).on( "resize.YTP", function() { - $YTPlayer.optimizeDisplay(); - } ); - jQuery.mbYTPlayer.checkForState( YTPlayer ); - // Trigger state events - var YTPEvent = jQuery.Event( "YTPUnstarted" ); - YTPEvent.time = YTPlayer.player.time; - if( YTPlayer.canTrigger ) jQuery( YTPlayer ).trigger( YTPEvent ); - }, - /** - * - * @param event - * - * -1 (unstarted) - * 0 (ended) - * 1 (playing) - * 2 (paused) - * 3 (buffering) - * 5 (video cued). - * - * - */ - 'onStateChange': function( event ) { - if( typeof event.target.getPlayerState != "function" ) return; - var state = event.target.getPlayerState(); - if( YTPlayer.state == state ) return; - YTPlayer.state = state; - var eventType; - switch( state ) { - case -1: //------------------------------------------------ unstarted - eventType = "YTPUnstarted"; - break; - case 0: //------------------------------------------------ ended - eventType = "YTPEnd"; - break; - case 1: //------------------------------------------------ play - eventType = "YTPStart"; - if( YTPlayer.controlBar ) YTPlayer.controlBar.find( ".mb_YTPPlaypause" ).html( jQuery.mbYTPlayer.controls.pause ); - if( typeof _gaq != "undefined" && eval( YTPlayer.opt.gaTrack ) ) _gaq.push( [ '_trackEvent', 'YTPlayer', 'Play', ( YTPlayer.hasData ? YTPlayer.videoData.title : YTPlayer.videoID.toString() ) ] ); - if( typeof ga != "undefined" && eval( YTPlayer.opt.gaTrack ) ) ga( 'send', 'event', 'YTPlayer', 'play', ( YTPlayer.hasData ? YTPlayer.videoData.title : YTPlayer.videoID.toString() ) ); - break; - case 2: //------------------------------------------------ pause - eventType = "YTPPause"; - if( YTPlayer.controlBar ) YTPlayer.controlBar.find( ".mb_YTPPlaypause" ).html( jQuery.mbYTPlayer.controls.play ); - break; - case 3: //------------------------------------------------ buffer - YTPlayer.player.setPlaybackQuality( YTPlayer.opt.quality ); - eventType = "YTPBuffering"; - if( YTPlayer.controlBar ) YTPlayer.controlBar.find( ".mb_YTPPlaypause" ).html( jQuery.mbYTPlayer.controls.play ); - break; - case 5: //------------------------------------------------ cued - eventType = "YTPCued"; - break; - default: - break; - } - // Trigger state events - var YTPEvent = jQuery.Event( eventType ); - YTPEvent.time = YTPlayer.player.time; - if( YTPlayer.canTrigger ) jQuery( YTPlayer ).trigger( YTPEvent ); - }, - /** - * - * @param e - */ - 'onPlaybackQualityChange': function( e ) { - var quality = e.target.getPlaybackQuality(); - var YTPQualityChange = jQuery.Event( "YTPQualityChange" ); - YTPQualityChange.quality = quality; - jQuery( YTPlayer ).trigger( YTPQualityChange ); - }, - /** - * - * @param err - */ - 'onError': function( err ) { - if( err.data == 150 ) { - console.log( "Embedding this video is restricted by Youtube." ); - if( YTPlayer.isPlayList ) jQuery( YTPlayer ).playNext(); - } - if( err.data == 2 && YTPlayer.isPlayList ) jQuery( YTPlayer ).playNext(); - if( typeof YTPlayer.opt.onError == "function" ) YTPlayer.opt.onError( $YTPlayer, err ); - } - } - } ); - } ); - } ) - } ); - }, - /** - * - * @param YTPlayer - */ - getDataFromAPI: function( YTPlayer ) { - YTPlayer.videoData = jQuery.mbStorage.get( "YYTPlayer_data_" + YTPlayer.videoID ); - jQuery( YTPlayer ).off( "YTPData.YTPlayer" ).on( "YTPData.YTPlayer", function() { - if( YTPlayer.hasData ) { - - if( YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ) { - var bgndURL = YTPlayer.videoData.thumb_max || YTPlayer.videoData.thumb_high || YTPlayer.videoData.thumb_medium; - YTPlayer.opt.containment.css( { - background: "rgba(0,0,0,0.5) url(" + bgndURL + ") center center", - backgroundSize: "cover" - } ); - YTPlayer.opt.backgroundUrl = bgndURL; - } - } - } ); - - if( YTPlayer.videoData ) { - - setTimeout( function() { - YTPlayer.opt.ratio = YTPlayer.opt.ratio == "auto" ? "16/9" : YTPlayer.opt.ratio; - YTPlayer.dataReceived = true; - jQuery( YTPlayer ).trigger( "YTPChanged" ); - var YTPData = jQuery.Event( "YTPData" ); - YTPData.prop = {}; - for( var x in YTPlayer.videoData ) YTPData.prop[ x ] = YTPlayer.videoData[ x ]; - jQuery( YTPlayer ).trigger( YTPData ); - }, 500 ); - - YTPlayer.hasData = true; - } else if( jQuery.mbYTPlayer.apiKey ) { - // Get video info from API3 (needs api key) - // snippet,player,contentDetails,statistics,status - jQuery.getJSON( jQuery.mbYTPlayer.locationProtocol + "//www.googleapis.com/youtube/v3/videos?id=" + YTPlayer.videoID + "&key=" + jQuery.mbYTPlayer.apiKey + "&part=snippet", function( data ) { - YTPlayer.dataReceived = true; - jQuery( YTPlayer ).trigger( "YTPChanged" ); - - function parseYTPlayer_data( data ) { - YTPlayer.videoData = {}; - YTPlayer.videoData.id = YTPlayer.videoID; - YTPlayer.videoData.channelTitle = data.channelTitle; - YTPlayer.videoData.title = data.title; - YTPlayer.videoData.description = data.description.length < 400 ? data.description : data.description.substring( 0, 400 ) + " ..."; - YTPlayer.videoData.aspectratio = YTPlayer.opt.ratio == "auto" ? "16/9" : YTPlayer.opt.ratio; - YTPlayer.opt.ratio = YTPlayer.videoData.aspectratio; - YTPlayer.videoData.thumb_max = data.thumbnails.maxres ? data.thumbnails.maxres.url : null; - YTPlayer.videoData.thumb_high = data.thumbnails.high ? data.thumbnails.high.url : null; - YTPlayer.videoData.thumb_medium = data.thumbnails.medium ? data.thumbnails.medium.url : null; - jQuery.mbStorage.set( "YYTPlayer_data_" + YTPlayer.videoID, YTPlayer.videoData ); - } - parseYTPlayer_data( data.items[ 0 ].snippet ); - YTPlayer.hasData = true; - var YTPData = jQuery.Event( "YTPData" ); - YTPData.prop = {}; - for( var x in YTPlayer.videoData ) YTPData.prop[ x ] = YTPlayer.videoData[ x ]; - jQuery( YTPlayer ).trigger( YTPData ); - } ); - } else { - setTimeout( function() { - jQuery( YTPlayer ).trigger( "YTPChanged" ); - }, 50 ); - if( YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ) { - var bgndURL = jQuery.mbYTPlayer.locationProtocol + "//i.ytimg.com/vi/" + YTPlayer.videoID + "/hqdefault.jpg"; - YTPlayer.opt.containment.css( { - background: "rgba(0,0,0,0.5) url(" + bgndURL + ") center center", - backgroundSize: "cover" - } ); - YTPlayer.opt.backgroundUrl = bgndURL; - } - YTPlayer.videoData = null; - YTPlayer.opt.ratio = YTPlayer.opt.ratio == "auto" ? "16/9" : YTPlayer.opt.ratio; - } - if( YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ) { - YTPlayer.loading = jQuery( "
    " ).addClass( "loading" ).html( "Loading" ).hide(); - jQuery( YTPlayer ).append( YTPlayer.loading ); - YTPlayer.loading.fadeIn(); - } - }, - /** - * - */ - removeStoredData: function() { - jQuery.mbStorage.remove(); - }, - /** - * - * @returns {*|YTPlayer.videoData} - */ - getVideoData: function() { - var YTPlayer = this.get( 0 ); - return YTPlayer.videoData; - }, - /** - * - * @returns {*|YTPlayer.videoID|boolean} - */ - getVideoID: function() { - var YTPlayer = this.get( 0 ); - return YTPlayer.videoID || false; - }, - /** - * - * @param quality - */ - setVideoQuality: function( quality ) { - var YTPlayer = this.get( 0 ); - if( !jQuery.browser.chrome ) YTPlayer.player.setPlaybackQuality( quality ); - }, - /** - * @param videos - * @param shuffle - * @param callback - * @returns {jQuery.mbYTPlayer} - */ - playlist: function( videos, shuffle, callback ) { - var $YTPlayer = this; - var YTPlayer = $YTPlayer.get( 0 ); - YTPlayer.isPlayList = true; - if( shuffle ) videos = jQuery.shuffle( videos ); - if( !YTPlayer.videoID ) { - YTPlayer.videos = videos; - YTPlayer.videoCounter = 0; - YTPlayer.videoLength = videos.length; - jQuery( YTPlayer ).data( "property", videos[ 0 ] ); - jQuery( YTPlayer ).mb_YTPlayer(); - } - if( typeof callback == "function" ) jQuery( YTPlayer ).on( "YTPChanged", function() { - callback( YTPlayer ); - } ); - jQuery( YTPlayer ).on( "YTPEnd", function() { - jQuery( YTPlayer ).playNext(); - } ); - return $YTPlayer; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - playNext: function() { - var YTPlayer = this.get( 0 ); - YTPlayer.videoCounter++; - if( YTPlayer.videoCounter >= YTPlayer.videoLength ) YTPlayer.videoCounter = 0; - jQuery( YTPlayer ).changeMovie( YTPlayer.videos[ YTPlayer.videoCounter ] ); - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - playPrev: function() { - var YTPlayer = this.get( 0 ); - YTPlayer.videoCounter--; - if( YTPlayer.videoCounter < 0 ) YTPlayer.videoCounter = YTPlayer.videoLength - 1; - jQuery( YTPlayer ).changeMovie( YTPlayer.videos[ YTPlayer.videoCounter ] ); - return this; - }, - /** - * - * @param opt - */ - changeMovie: function( opt ) { - var YTPlayer = this.get( 0 ); - YTPlayer.opt.startAt = 0; - YTPlayer.opt.stopAt = 0; - YTPlayer.opt.mute = true; - YTPlayer.hasData = false; - YTPlayer.hasChanged = true; - if( opt ) jQuery.extend( YTPlayer.opt, YTPlayer.defaultOpt, opt ); - YTPlayer.videoID = getYTPVideoID( YTPlayer.opt.videoURL ).videoID; - jQuery( YTPlayer.playerEl ).CSSAnimate( { - opacity: 0 - }, 200, function() { - jQuery( YTPlayer ).YTPGetPlayer().cueVideoByUrl( encodeURI( jQuery.mbYTPlayer.locationProtocol + "//www.youtube.com/v/" + YTPlayer.videoID ), 1, YTPlayer.opt.quality ); - jQuery.mbYTPlayer.checkForState( YTPlayer ); - jQuery( YTPlayer ).optimizeDisplay(); - jQuery.mbYTPlayer.getDataFromAPI( YTPlayer ); - return this; - } ); - }, - /** - * - * @returns {player} - */ - getPlayer: function() { - return jQuery( this ).get( 0 ).player; - }, - playerDestroy: function() { - var YTPlayer = this.get( 0 ); - ytp.YTAPIReady = false; - ytp.backgroundIsInited = false; - YTPlayer.isInit = false; - YTPlayer.videoID = null; - var playerBox = YTPlayer.wrapper; - playerBox.remove(); - jQuery( "#controlBar_" + YTPlayer.id ).remove(); - clearInterval( YTPlayer.checkForStartAt ); - clearInterval( YTPlayer.getState ); - return this; - }, - /** - * - * @param real - * @returns {jQuery.mbYTPlayer} - */ - fullscreen: function( real ) { - var YTPlayer = this.get( 0 ); - if( typeof real == "undefined" ) real = YTPlayer.opt.realfullscreen; - real = eval( real ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var fullScreenBtn = controls.find( ".mb_OnlyYT" ); - var videoWrapper = YTPlayer.isSelf ? YTPlayer.opt.containment : YTPlayer.wrapper; - //var videoWrapper = YTPlayer.wrapper; - if( real ) { - var fullscreenchange = jQuery.browser.mozilla ? "mozfullscreenchange" : jQuery.browser.webkit ? "webkitfullscreenchange" : "fullscreenchange"; - jQuery( document ).off( fullscreenchange ).on( fullscreenchange, function() { - var isFullScreen = RunPrefixMethod( document, "IsFullScreen" ) || RunPrefixMethod( document, "FullScreen" ); - if( !isFullScreen ) { - YTPlayer.isAlone = false; - fullScreenBtn.html( jQuery.mbYTPlayer.controls.onlyYT ); - jQuery( YTPlayer ).YTPSetVideoQuality( YTPlayer.opt.quality ); - videoWrapper.removeClass( "fullscreen" ); - videoWrapper.CSSAnimate( { - opacity: YTPlayer.opt.opacity - }, 500 ); - videoWrapper.css( { - zIndex: 0 - } ); - if( YTPlayer.isBackground ) { - jQuery( "body" ).after( controls ); - } else { - YTPlayer.wrapper.before( controls ); - } - jQuery( window ).resize(); - jQuery( YTPlayer ).trigger( "YTPFullScreenEnd" ); - } else { - jQuery( YTPlayer ).YTPSetVideoQuality( "default" ); - jQuery( YTPlayer ).trigger( "YTPFullScreenStart" ); - } - } ); - } - if( !YTPlayer.isAlone ) { - function hideMouse() { - YTPlayer.overlay.css( { - cursor: "none" - } ); - } - jQuery( document ).on( "mousemove.YTPlayer", function( e ) { - YTPlayer.overlay.css( { - cursor: "auto" - } ); - clearTimeout( YTPlayer.hideCursor ); - if( !jQuery( e.target ).parents().is( ".mb_YTPBar" ) ) YTPlayer.hideCursor = setTimeout( hideMouse, 3000 ); - } ); - hideMouse(); - if( real ) { - videoWrapper.css( { - opacity: 0 - } ); - videoWrapper.addClass( "fullscreen" ); - launchFullscreen( videoWrapper.get( 0 ) ); - setTimeout( function() { - videoWrapper.CSSAnimate( { - opacity: 1 - }, 1000 ); - YTPlayer.wrapper.append( controls ); - jQuery( YTPlayer ).optimizeDisplay(); - YTPlayer.player.seekTo( YTPlayer.player.getCurrentTime() + .1, true ); - }, 500 ) - } else videoWrapper.css( { - zIndex: 10000 - } ).CSSAnimate( { - opacity: 1 - }, 1000 ); - fullScreenBtn.html( jQuery.mbYTPlayer.controls.showSite ); - YTPlayer.isAlone = true; - } else { - jQuery( document ).off( "mousemove.YTPlayer" ); - YTPlayer.overlay.css( { - cursor: "auto" - } ); - if( real ) { - cancelFullscreen(); - } else { - videoWrapper.CSSAnimate( { - opacity: YTPlayer.opt.opacity - }, 500 ); - videoWrapper.css( { - zIndex: 0 - } ); - } - fullScreenBtn.html( jQuery.mbYTPlayer.controls.onlyYT ); - YTPlayer.isAlone = false; - } - - function RunPrefixMethod( obj, method ) { - var pfx = [ "webkit", "moz", "ms", "o", "" ]; - var p = 0, - m, t; - while( p < pfx.length && !obj[ m ] ) { - m = method; - if( pfx[ p ] == "" ) { - m = m.substr( 0, 1 ).toLowerCase() + m.substr( 1 ); - } - m = pfx[ p ] + m; - t = typeof obj[ m ]; - if( t != "undefined" ) { - pfx = [ pfx[ p ] ]; - return( t == "function" ? obj[ m ]() : obj[ m ] ); - } - p++; - } - } - - function launchFullscreen( element ) { - RunPrefixMethod( element, "RequestFullScreen" ); - } - - function cancelFullscreen() { - if( RunPrefixMethod( document, "FullScreen" ) || RunPrefixMethod( document, "IsFullScreen" ) ) { - RunPrefixMethod( document, "CancelFullScreen" ); - } - } - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - toggleLoops: function() { - var YTPlayer = this.get( 0 ); - var data = YTPlayer.opt; - if( data.loop == 1 ) { - data.loop = 0; - } else { - if( data.startAt ) { - YTPlayer.player.seekTo( data.startAt ); - } else { - YTPlayer.player.playVideo(); - } - data.loop = 1; - } - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - play: function() { - var YTPlayer = this.get( 0 ); - if( !YTPlayer.isReady ) return; - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var playBtn = controls.find( ".mb_YTPPlaypause" ); - playBtn.html( jQuery.mbYTPlayer.controls.pause ); - YTPlayer.player.playVideo(); - YTPlayer.wrapper.CSSAnimate( { - opacity: YTPlayer.isAlone ? 1 : YTPlayer.opt.opacity - }, 2000 ); - jQuery( YTPlayer.playerEl ).CSSAnimate( { - opacity: 1 - }, 1000 ); - jQuery( YTPlayer ).css( "background-image", "none" ); - return this; - }, - /** - * - * @param callback - * @returns {jQuery.mbYTPlayer} - */ - togglePlay: function( callback ) { - var YTPlayer = this.get( 0 ); - if( YTPlayer.state == 1 ) this.YTPPause(); - else this.YTPPlay(); - if( typeof callback == "function" ) { - callback( YTPlayer.state ); - } - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - stop: function() { - var YTPlayer = this.get( 0 ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var playBtn = controls.find( ".mb_YTPPlaypause" ); - playBtn.html( jQuery.mbYTPlayer.controls.play ); - YTPlayer.player.stopVideo(); - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - pause: function() { - var YTPlayer = this.get( 0 ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var playBtn = controls.find( ".mb_YTPPlaypause" ); - playBtn.html( jQuery.mbYTPlayer.controls.play ); - YTPlayer.player.pauseVideo(); - return this; - }, - /** - * - * @param val - * @returns {jQuery.mbYTPlayer} - */ - seekTo: function( val ) { - var YTPlayer = this.get( 0 ); - YTPlayer.player.seekTo( val, true ); - return this; - }, - /** - * - * @param val - * @returns {jQuery.mbYTPlayer} - */ - setVolume: function( val ) { - var YTPlayer = this.get( 0 ); - if( !val && !YTPlayer.opt.vol && YTPlayer.player.getVolume() == 0 ) jQuery( YTPlayer ).YTPUnmute(); - else if( ( !val && YTPlayer.player.getVolume() > 0 ) || ( val && YTPlayer.opt.vol == val ) ) { - if( !YTPlayer.isMute ) jQuery( YTPlayer ).YTPMute(); - else jQuery( YTPlayer ).YTPUnmute(); - } else { - YTPlayer.opt.vol = val; - YTPlayer.player.setVolume( YTPlayer.opt.vol ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length ) YTPlayer.volumeBar.updateSliderVal( val ) - } - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - mute: function() { - var YTPlayer = this.get( 0 ); - if( YTPlayer.isMute ) return; - YTPlayer.player.mute(); - YTPlayer.isMute = true; - YTPlayer.player.setVolume( 0 ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length && YTPlayer.volumeBar.width() > 10 ) { - YTPlayer.volumeBar.updateSliderVal( 0 ); - } - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var muteBtn = controls.find( ".mb_YTPMuteUnmute" ); - muteBtn.html( jQuery.mbYTPlayer.controls.unmute ); - jQuery( YTPlayer ).addClass( "isMuted" ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length ) YTPlayer.volumeBar.addClass( "muted" ); - var YTPEvent = jQuery.Event( "YTPMuted" ); - YTPEvent.time = YTPlayer.player.time; - if( YTPlayer.canTrigger ) jQuery( YTPlayer ).trigger( YTPEvent ); - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - unmute: function() { - var YTPlayer = this.get( 0 ); - if( !YTPlayer.isMute ) return; - YTPlayer.player.unMute(); - YTPlayer.isMute = false; - YTPlayer.player.setVolume( YTPlayer.opt.vol ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length ) YTPlayer.volumeBar.updateSliderVal( YTPlayer.opt.vol > 10 ? YTPlayer.opt.vol : 10 ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var muteBtn = controls.find( ".mb_YTPMuteUnmute" ); - muteBtn.html( jQuery.mbYTPlayer.controls.mute ); - jQuery( YTPlayer ).removeClass( "isMuted" ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length ) YTPlayer.volumeBar.removeClass( "muted" ); - var YTPEvent = jQuery.Event( "YTPUnmuted" ); - YTPEvent.time = YTPlayer.player.time; - if( YTPlayer.canTrigger ) jQuery( YTPlayer ).trigger( YTPEvent ); - return this; - }, - /** - * - * @param filter - * @param value - * @returns {jQuery.mbYTPlayer} - */ - applyFilter: function( filter, value ) { - var YTPlayer = this.get( 0 ); - YTPlayer.filters[ filter ].value = value; - if( YTPlayer.filtersEnabled ) this.YTPEnableFilters(); - return this; - }, - /** - * - * @param filters - * @returns {jQuery.mbYTPlayer} - */ - applyFilters: function( filters ) { - var YTPlayer = this.get( 0 ); - this.on( "YTPReady", function() { - for( var key in filters ) { - YTPlayer.filters[ key ].value = filters[ key ]; - jQuery( YTPlayer ).YTPApplyFilter( key, filters[ key ] ); - } - jQuery( YTPlayer ).trigger( "YTPFiltersApplied" ); - } ); - return this; - }, - /** - * - * @param filter - * @param value - * @returns {*} - */ - toggleFilter: function( filter, value ) { - return this.each( function() { - var YTPlayer = this; - if( !YTPlayer.filters[ filter ].value ) YTPlayer.filters[ filter ].value = value; - else YTPlayer.filters[ filter ].value = 0; - if( YTPlayer.filtersEnabled ) jQuery( this ).YTPEnableFilters(); - } ) - return this; - }, - /** - * - * @param callback - * @returns {*} - */ - toggleFilters: function( callback ) { - return this.each( function() { - var YTPlayer = this; - if( YTPlayer.filtersEnabled ) { - jQuery( YTPlayer ).trigger( "YTPDisableFilters" ); - jQuery( YTPlayer ).YTPDisableFilters(); - } else { - jQuery( YTPlayer ).YTPEnableFilters(); - jQuery( YTPlayer ).trigger( "YTPEnableFilters" ); - } - if( typeof callback == "function" ) callback( YTPlayer.filtersEnabled ); - } ) - }, - /** - * - * @returns {*} - */ - disableFilters: function() { - return this.each( function() { - var YTPlayer = this; - var iframe = jQuery( YTPlayer.playerEl ); - iframe.css( "-webkit-filter", "" ); - iframe.css( "filter", "" ); - YTPlayer.filtersEnabled = false; - } ) - }, - /** - * - * @returns {*} - */ - enableFilters: function() { - return this.each( function() { - var YTPlayer = this; - var iframe = jQuery( YTPlayer.playerEl ); - var filterStyle = ""; - for( var key in YTPlayer.filters ) { - if( YTPlayer.filters[ key ].value ) filterStyle += key.replace( "_", "-" ) + "(" + YTPlayer.filters[ key ].value + YTPlayer.filters[ key ].unit + ") "; - } - iframe.css( "-webkit-filter", filterStyle ); - iframe.css( "filter", filterStyle ); - YTPlayer.filtersEnabled = true; - } ) - return this; - }, - /** - * - * @param filter - * @param callback - * @returns {*} - */ - removeFilter: function( filter, callback ) { - return this.each( function() { - if( typeof filter == "function" ) { - callback = filter; - filter = null; - } - var YTPlayer = this; - if( !filter ) - for( var key in YTPlayer.filters ) { - jQuery( this ).YTPApplyFilter( key, 0 ); - if( typeof callback == "function" ) callback( key ); - } else { - jQuery( this ).YTPApplyFilter( filter, 0 ); - if( typeof callback == "function" ) callback( filter ); - } - } ); - return this; - }, - /** - * - * @returns {{totalTime: number, currentTime: number}} - */ - manageProgress: function() { - var YTPlayer = this.get( 0 ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var progressBar = controls.find( ".mb_YTPProgress" ); - var loadedBar = controls.find( ".mb_YTPLoaded" ); - var timeBar = controls.find( ".mb_YTPseekbar" ); - var totW = progressBar.outerWidth(); - var currentTime = Math.floor( YTPlayer.player.getCurrentTime() ); - var totalTime = Math.floor( YTPlayer.player.getDuration() ); - var timeW = ( currentTime * totW ) / totalTime; - var startLeft = 0; - var loadedW = YTPlayer.player.getVideoLoadedFraction() * 100; - loadedBar.css( { - left: startLeft, - width: loadedW + "%" - } ); - timeBar.css( { - left: 0, - width: timeW - } ); - return { - totalTime: totalTime, - currentTime: currentTime - }; - }, - /** - * - * @param YTPlayer - */ - buildControls: function( YTPlayer ) { - var data = YTPlayer.opt; - // @data.printUrl: is deprecated; use data.showYTLogo - data.showYTLogo = data.showYTLogo || data.printUrl; - if( jQuery( "#controlBar_" + YTPlayer.id ).length ) return; - YTPlayer.controlBar = jQuery( "" ).attr( "id", "controlBar_" + YTPlayer.id ).addClass( "mb_YTPBar" ).css( { - whiteSpace: "noWrap", - position: YTPlayer.isBackground ? "fixed" : "absolute", - zIndex: YTPlayer.isBackground ? 10000 : 1000 - } ).hide(); - var buttonBar = jQuery( "
    " ).addClass( "buttonBar" ); - /* play/pause button*/ - var playpause = jQuery( "" + jQuery.mbYTPlayer.controls.play + "" ).addClass( "mb_YTPPlaypause ytpicon" ).click( function() { - if( YTPlayer.player.getPlayerState() == 1 ) jQuery( YTPlayer ).YTPPause(); - else jQuery( YTPlayer ).YTPPlay(); - } ); - /* mute/unmute button*/ - var MuteUnmute = jQuery( "" + jQuery.mbYTPlayer.controls.mute + "" ).addClass( "mb_YTPMuteUnmute ytpicon" ).click( function() { - if( YTPlayer.player.getVolume() == 0 ) { - jQuery( YTPlayer ).YTPUnmute(); - } else { - jQuery( YTPlayer ).YTPMute(); - } - } ); - /* volume bar*/ - var volumeBar = jQuery( "
    " ).addClass( "mb_YTPVolumeBar" ).css( { - display: "inline-block" - } ); - YTPlayer.volumeBar = volumeBar; - /* time elapsed */ - var idx = jQuery( "" ).addClass( "mb_YTPTime" ); - var vURL = data.videoURL ? data.videoURL : ""; - if( vURL.indexOf( "http" ) < 0 ) vURL = jQuery.mbYTPlayer.locationProtocol + "//www.youtube.com/watch?v=" + data.videoURL; - var movieUrl = jQuery( "" ).html( jQuery.mbYTPlayer.controls.ytLogo ).addClass( "mb_YTPUrl ytpicon" ).attr( "title", "view on YouTube" ).on( "click", function() { - window.open( vURL, "viewOnYT" ) - } ); - var onlyVideo = jQuery( "" ).html( jQuery.mbYTPlayer.controls.onlyYT ).addClass( "mb_OnlyYT ytpicon" ).on( "click", function() { - jQuery( YTPlayer ).YTPFullscreen( data.realfullscreen ); - } ); - var progressBar = jQuery( "
    " ).addClass( "mb_YTPProgress" ).css( "position", "absolute" ).click( function( e ) { - timeBar.css( { - width: ( e.clientX - timeBar.offset().left ) - } ); - YTPlayer.timeW = e.clientX - timeBar.offset().left; - YTPlayer.controlBar.find( ".mb_YTPLoaded" ).css( { - width: 0 - } ); - var totalTime = Math.floor( YTPlayer.player.getDuration() ); - YTPlayer.goto = ( timeBar.outerWidth() * totalTime ) / progressBar.outerWidth(); - YTPlayer.player.seekTo( parseFloat( YTPlayer.goto ), true ); - YTPlayer.controlBar.find( ".mb_YTPLoaded" ).css( { - width: 0 - } ); - } ); - var loadedBar = jQuery( "
    " ).addClass( "mb_YTPLoaded" ).css( "position", "absolute" ); - var timeBar = jQuery( "
    " ).addClass( "mb_YTPseekbar" ).css( "position", "absolute" ); - progressBar.append( loadedBar ).append( timeBar ); - buttonBar.append( playpause ).append( MuteUnmute ).append( volumeBar ).append( idx ); - if( data.showYTLogo ) { - buttonBar.append( movieUrl ); - } - if( YTPlayer.isBackground || ( eval( YTPlayer.opt.realfullscreen ) && !YTPlayer.isBackground ) ) buttonBar.append( onlyVideo ); - YTPlayer.controlBar.append( buttonBar ).append( progressBar ); - if( !YTPlayer.isBackground ) { - YTPlayer.controlBar.addClass( "inlinePlayer" ); - YTPlayer.wrapper.before( YTPlayer.controlBar ); - } else { - jQuery( "body" ).after( YTPlayer.controlBar ); - } - volumeBar.simpleSlider( { - initialval: YTPlayer.opt.vol, - scale: 100, - orientation: "h", - callback: function( el ) { - if( el.value == 0 ) { - jQuery( YTPlayer ).YTPMute(); - } else { - jQuery( YTPlayer ).YTPUnmute(); - } - YTPlayer.player.setVolume( el.value ); - if( !YTPlayer.isMute ) YTPlayer.opt.vol = el.value; - } - } ); - }, - /** - * - * - * */ - checkForState: function( YTPlayer ) { - var interval = YTPlayer.opt.showControls ? 100 : 700; - clearInterval( YTPlayer.getState ); - //Checking if player has been removed from scene - if( !jQuery.contains( document, YTPlayer ) ) { - jQuery( YTPlayer ).YTPPlayerDestroy(); - clearInterval( YTPlayer.getState ); - clearInterval( YTPlayer.checkForStartAt ); - return; - } - jQuery.mbYTPlayer.checkForStart( YTPlayer ); - YTPlayer.getState = setInterval( function() { - var prog = jQuery( YTPlayer ).YTPManageProgress(); - var $YTPlayer = jQuery( YTPlayer ); - var data = YTPlayer.opt; - var startAt = YTPlayer.opt.startAt ? YTPlayer.opt.startAt : 0; - var stopAt = YTPlayer.opt.stopAt > YTPlayer.opt.startAt ? YTPlayer.opt.stopAt : 0; - stopAt = stopAt < YTPlayer.player.getDuration() ? stopAt : 0; - if( YTPlayer.player.time != prog.currentTime ) { - var YTPEvent = jQuery.Event( "YTPTime" ); - YTPEvent.time = YTPlayer.player.time; - jQuery( YTPlayer ).trigger( YTPEvent ); - } - YTPlayer.player.time = prog.currentTime; - if( YTPlayer.player.getVolume() == 0 ) $YTPlayer.addClass( "isMuted" ); - else $YTPlayer.removeClass( "isMuted" ); - if( YTPlayer.opt.showControls ) - if( prog.totalTime ) { - YTPlayer.controlBar.find( ".mb_YTPTime" ).html( jQuery.mbYTPlayer.formatTime( prog.currentTime ) + " / " + jQuery.mbYTPlayer.formatTime( prog.totalTime ) ); - } else { - YTPlayer.controlBar.find( ".mb_YTPTime" ).html( "-- : -- / -- : --" ); - } - if( eval( YTPlayer.opt.stopMovieOnBlur ) ) - if( !document.hasFocus() ) { - if( YTPlayer.state == 1 ) { - YTPlayer.hasFocus = false; - $YTPlayer.YTPPause(); - } - } else if( document.hasFocus() && !YTPlayer.hasFocus && !( YTPlayer.state == -1 || YTPlayer.state == 0 ) ) { - YTPlayer.hasFocus = true; - $YTPlayer.YTPPlay(); - } - if( YTPlayer.controlBar && YTPlayer.controlBar.outerWidth() <= 400 && !YTPlayer.isCompact ) { - YTPlayer.controlBar.addClass( "compact" ); - YTPlayer.isCompact = true; - if( !YTPlayer.isMute && YTPlayer.volumeBar ) YTPlayer.volumeBar.updateSliderVal( YTPlayer.opt.vol ); - } else if( YTPlayer.controlBar && YTPlayer.controlBar.outerWidth() > 400 && YTPlayer.isCompact ) { - YTPlayer.controlBar.removeClass( "compact" ); - YTPlayer.isCompact = false; - if( !YTPlayer.isMute && YTPlayer.volumeBar ) YTPlayer.volumeBar.updateSliderVal( YTPlayer.opt.vol ); - } - if( YTPlayer.player.getPlayerState() == 1 && ( parseFloat( YTPlayer.player.getDuration() - 1.5 ) < YTPlayer.player.getCurrentTime() || ( stopAt > 0 && parseFloat( YTPlayer.player.getCurrentTime() ) > stopAt ) ) ) { - if( YTPlayer.isEnded ) return; - YTPlayer.isEnded = true; - setTimeout( function() { - YTPlayer.isEnded = false - }, 1000 ); - if( YTPlayer.isPlayList ) { - clearInterval( YTPlayer.getState ); - var YTPEnd = jQuery.Event( "YTPEnd" ); - YTPEnd.time = YTPlayer.player.time; - jQuery( YTPlayer ).trigger( YTPEnd ); - return; - } else if( !data.loop ) { - YTPlayer.player.pauseVideo(); - YTPlayer.wrapper.CSSAnimate( { - opacity: 0 - }, 1000, function() { - var YTPEnd = jQuery.Event( "YTPEnd" ); - YTPEnd.time = YTPlayer.player.time; - jQuery( YTPlayer ).trigger( YTPEnd ); - YTPlayer.player.seekTo( startAt, true ); - if( !YTPlayer.isBackground ) { - YTPlayer.opt.containment.css( { - background: "rgba(0,0,0,0.5) url(" + YTPlayer.opt.backgroundUrl + ") center center", - backgroundSize: "cover" - } ); - } - } ); - } else { - - startAt = startAt || 1; - - YTPlayer.player.pauseVideo(); - YTPlayer.player.seekTo( startAt, true ); - $YTPlayer.YTPPlay(); - - } - } - }, interval ); - }, - /** - * - * */ - checkForStart: function( YTPlayer ) { - var $YTPlayer = jQuery( YTPlayer ); - //Checking if player has been removed from scene - if( !jQuery.contains( document, YTPlayer ) ) { - jQuery( YTPlayer ).YTPPlayerDestroy(); - return - } - if( jQuery.browser.chrome ) YTPlayer.opt.quality = "default"; - YTPlayer.player.pauseVideo(); - jQuery( YTPlayer ).muteYTPVolume(); - jQuery( "#controlBar_" + YTPlayer.id ).remove(); - if( YTPlayer.opt.showControls ) jQuery.mbYTPlayer.buildControls( YTPlayer ); - if( YTPlayer.opt.addRaster ) { - var classN = YTPlayer.opt.addRaster == "dot" ? "raster-dot" : "raster"; - YTPlayer.overlay.addClass( YTPlayer.isRetina ? classN + " retina" : classN ); - } else { - YTPlayer.overlay.removeClass( function( index, classNames ) { - // change the list into an array - var current_classes = classNames.split( " " ), - // array of classes which are to be removed - classes_to_remove = []; - jQuery.each( current_classes, function( index, class_name ) { - // if the classname begins with bg add it to the classes_to_remove array - if( /raster.*/.test( class_name ) ) { - classes_to_remove.push( class_name ); - } - } ); - classes_to_remove.push( "retina" ); - // turn the array back into a string - return classes_to_remove.join( " " ); - } ) - } - YTPlayer.checkForStartAt = setInterval( function() { - jQuery( YTPlayer ).YTPMute(); - var startAt = YTPlayer.opt.startAt ? YTPlayer.opt.startAt : 1; - var canPlayVideo = ( YTPlayer.player.getVideoLoadedFraction() > startAt / YTPlayer.player.getDuration() ); - if( YTPlayer.player.getDuration() > 0 && YTPlayer.player.getCurrentTime() >= startAt && canPlayVideo ) { - clearInterval( YTPlayer.checkForStartAt ); - YTPlayer.isReady = true; - if( typeof YTPlayer.opt.onReady == "function" ) YTPlayer.opt.onReady( YTPlayer ); - var YTPready = jQuery.Event( "YTPReady" ); - jQuery( YTPlayer ).trigger( YTPready ); - YTPlayer.player.pauseVideo(); - if( !YTPlayer.opt.mute ) jQuery( YTPlayer ).YTPUnmute(); - YTPlayer.canTrigger = true; - if( YTPlayer.opt.autoPlay ) { - $YTPlayer.YTPPlay(); - $YTPlayer.css( "background-image", "none" ); - jQuery( YTPlayer.playerEl ).CSSAnimate( { - opacity: 1 - }, 1000 ); - YTPlayer.wrapper.CSSAnimate( { - opacity: YTPlayer.isAlone ? 1 : YTPlayer.opt.opacity - }, 1000 ); - } else { - YTPlayer.player.pauseVideo(); - if( !YTPlayer.isPlayer ) { - jQuery( YTPlayer.playerEl ).CSSAnimate( { - opacity: 1 - }, 1000 ); - YTPlayer.wrapper.CSSAnimate( { - opacity: YTPlayer.isAlone ? 1 : YTPlayer.opt.opacity - }, 1000 ); - } - } - if( YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ) { - YTPlayer.loading.html( "Ready" ); - setTimeout( function() { - YTPlayer.loading.fadeOut(); - - - }, 100 ) - } - if( YTPlayer.controlBar ) YTPlayer.controlBar.slideDown( 1000 ); - } else { - //YTPlayer.player.playVideo(); - if( startAt >= 0 ) YTPlayer.player.seekTo( startAt, true ); - } - }, 1000 ); - }, - /** - * - * @param s - * @returns {string} - */ - formatTime: function( s ) { - var min = Math.floor( s / 60 ); - var sec = Math.floor( s - ( 60 * min ) ); - return( min <= 9 ? "0" + min : min ) + " : " + ( sec <= 9 ? "0" + sec : sec ); - } - }; - /** - * - * @returns {boolean} - */ - jQuery.fn.toggleVolume = function() { - var YTPlayer = this.get( 0 ); - if( !YTPlayer ) return; - if( YTPlayer.player.isMuted() ) { - jQuery( YTPlayer ).YTPUnmute(); - return true; - } else { - jQuery( YTPlayer ).YTPMute(); - return false; - } - }; - /** - * - */ - jQuery.fn.optimizeDisplay = function() { - var YTPlayer = this.get( 0 ); - var data = YTPlayer.opt; - var playerBox = jQuery( YTPlayer.playerEl ); - var win = {}; - var el = YTPlayer.wrapper; - win.width = el.outerWidth(); - win.height = el.outerHeight(); - var margin = 24; - var overprint = 100; - var vid = {}; - if( data.optimizeDisplay ) { - vid.width = win.width + ( ( win.width * margin ) / 100 ); - vid.height = data.ratio == "16/9" ? Math.ceil( ( 9 * win.width ) / 16 ) : Math.ceil( ( 3 * win.width ) / 4 ); - vid.marginTop = -( ( vid.height - win.height ) / 2 ); - vid.marginLeft = -( ( win.width * ( margin / 2 ) ) / 100 ); - if( vid.height < win.height ) { - vid.height = win.height + ( ( win.height * margin ) / 100 ); - vid.width = data.ratio == "16/9" ? Math.floor( ( 16 * win.height ) / 9 ) : Math.floor( ( 4 * win.height ) / 3 ); - vid.marginTop = -( ( win.height * ( margin / 2 ) ) / 100 ); - vid.marginLeft = -( ( vid.width - win.width ) / 2 ); - } - vid.width += overprint; - vid.height += overprint; - vid.marginTop -= overprint / 2; - vid.marginLeft -= overprint / 2; - } else { - vid.width = "100%"; - vid.height = "100%"; - vid.marginTop = 0; - vid.marginLeft = 0; - } - playerBox.css( { - width: vid.width, - height: vid.height, - marginTop: vid.marginTop, - marginLeft: vid.marginLeft - } ); - }; - /** - * - * @param arr - * @returns {Array|string|Blob|*} - * - */ - jQuery.shuffle = function( arr ) { - var newArray = arr.slice(); - var len = newArray.length; - var i = len; - while( i-- ) { - var p = parseInt( Math.random() * len ); - var t = newArray[ i ]; - newArray[ i ] = newArray[ p ]; - newArray[ p ] = t; - } - return newArray; - }; - - /* Exposed public method */ - jQuery.fn.YTPlayer = jQuery.mbYTPlayer.buildPlayer; - jQuery.fn.YTPGetPlayer = jQuery.mbYTPlayer.getPlayer; - jQuery.fn.YTPGetVideoID = jQuery.mbYTPlayer.getVideoID; - jQuery.fn.YTPChangeMovie = jQuery.mbYTPlayer.changeMovie; - jQuery.fn.YTPPlayerDestroy = jQuery.mbYTPlayer.playerDestroy; - - jQuery.fn.YTPPlay = jQuery.mbYTPlayer.play; - jQuery.fn.YTPTogglePlay = jQuery.mbYTPlayer.togglePlay; - jQuery.fn.YTPStop = jQuery.mbYTPlayer.stop; - jQuery.fn.YTPPause = jQuery.mbYTPlayer.pause; - jQuery.fn.YTPSeekTo = jQuery.mbYTPlayer.seekTo; - - jQuery.fn.YTPlaylist = jQuery.mbYTPlayer.playlist; - jQuery.fn.YTPPlayNext = jQuery.mbYTPlayer.playNext; - jQuery.fn.YTPPlayPrev = jQuery.mbYTPlayer.playPrev; - - jQuery.fn.YTPMute = jQuery.mbYTPlayer.mute; - jQuery.fn.YTPUnmute = jQuery.mbYTPlayer.unmute; - jQuery.fn.YTPToggleVolume = jQuery.mbYTPlayer.toggleVolume; - jQuery.fn.YTPSetVolume = jQuery.mbYTPlayer.setVolume; - - jQuery.fn.YTPGetVideoData = jQuery.mbYTPlayer.getVideoData; - jQuery.fn.YTPFullscreen = jQuery.mbYTPlayer.fullscreen; - jQuery.fn.YTPToggleLoops = jQuery.mbYTPlayer.toggleLoops; - jQuery.fn.YTPSetVideoQuality = jQuery.mbYTPlayer.setVideoQuality; - jQuery.fn.YTPManageProgress = jQuery.mbYTPlayer.manageProgress; - - jQuery.fn.YTPApplyFilter = jQuery.mbYTPlayer.applyFilter; - jQuery.fn.YTPApplyFilters = jQuery.mbYTPlayer.applyFilters; - jQuery.fn.YTPToggleFilter = jQuery.mbYTPlayer.toggleFilter; - jQuery.fn.YTPToggleFilters = jQuery.mbYTPlayer.toggleFilters; - jQuery.fn.YTPRemoveFilter = jQuery.mbYTPlayer.removeFilter; - jQuery.fn.YTPDisableFilters = jQuery.mbYTPlayer.disableFilters; - jQuery.fn.YTPEnableFilters = jQuery.mbYTPlayer.enableFilters; - - - /** - * - * @deprecated - * - **/ - jQuery.fn.mb_YTPlayer = jQuery.mbYTPlayer.buildPlayer; - jQuery.fn.playNext = jQuery.mbYTPlayer.playNext; - jQuery.fn.playPrev = jQuery.mbYTPlayer.playPrev; - jQuery.fn.changeMovie = jQuery.mbYTPlayer.changeMovie; - jQuery.fn.getVideoID = jQuery.mbYTPlayer.getVideoID; - jQuery.fn.getPlayer = jQuery.mbYTPlayer.getPlayer; - jQuery.fn.playerDestroy = jQuery.mbYTPlayer.playerDestroy; - jQuery.fn.fullscreen = jQuery.mbYTPlayer.fullscreen; - jQuery.fn.buildYTPControls = jQuery.mbYTPlayer.buildControls; - jQuery.fn.playYTP = jQuery.mbYTPlayer.play; - jQuery.fn.toggleLoops = jQuery.mbYTPlayer.toggleLoops; - jQuery.fn.stopYTP = jQuery.mbYTPlayer.stop; - jQuery.fn.pauseYTP = jQuery.mbYTPlayer.pause; - jQuery.fn.seekToYTP = jQuery.mbYTPlayer.seekTo; - jQuery.fn.muteYTPVolume = jQuery.mbYTPlayer.mute; - jQuery.fn.unmuteYTPVolume = jQuery.mbYTPlayer.unmute; - jQuery.fn.setYTPVolume = jQuery.mbYTPlayer.setVolume; - jQuery.fn.setVideoQuality = jQuery.mbYTPlayer.setVideoQuality; - jQuery.fn.manageYTPProgress = jQuery.mbYTPlayer.manageProgress; - jQuery.fn.YTPGetDataFromFeed = jQuery.mbYTPlayer.getVideoData; - - -} )( jQuery, ytp ); -; -/* - * ****************************************************************************** - * jquery.mb.components - * file: jquery.mb.CSSAnimate.min.js - * - * Copyright (c) 2001-2014. Matteo Bicocchi (Pupunzi); - * Open lab srl, Firenze - Italy - * email: matteo@open-lab.com - * site: http://pupunzi.com - * blog: http://pupunzi.open-lab.com - * http://open-lab.com - * - * Licences: MIT, GPL - * http://www.opensource.org/licenses/mit-license.php - * http://www.gnu.org/licenses/gpl.html - * - * last modified: 26/03/14 21.40 - * ***************************************************************************** - */ - -function uncamel(a){return a.replace(/([A-Z])/g,function(a){return"-"+a.toLowerCase()})}function setUnit(a,b){return"string"!=typeof a||a.match(/^[\-0-9\.]+jQuery/)?""+a+b:a}function setFilter(a,b,c){var d=uncamel(b),e=jQuery.browser.mozilla?"":jQuery.CSS.sfx;a[e+"filter"]=a[e+"filter"]||"",c=setUnit(c>jQuery.CSS.filters[b].max?jQuery.CSS.filters[b].max:c,jQuery.CSS.filters[b].unit),a[e+"filter"]+=d+"("+c+") ",delete a[b]}jQuery.support.CSStransition=function(){var a=document.body||document.documentElement,b=a.style;return void 0!==b.transition||void 0!==b.WebkitTransition||void 0!==b.MozTransition||void 0!==b.MsTransition||void 0!==b.OTransition}(),jQuery.CSS={name:"mb.CSSAnimate",author:"Matteo Bicocchi",version:"2.0.0",transitionEnd:"transitionEnd",sfx:"",filters:{blur:{min:0,max:100,unit:"px"},brightness:{min:0,max:400,unit:"%"},contrast:{min:0,max:400,unit:"%"},grayscale:{min:0,max:100,unit:"%"},hueRotate:{min:0,max:360,unit:"deg"},invert:{min:0,max:100,unit:"%"},saturate:{min:0,max:400,unit:"%"},sepia:{min:0,max:100,unit:"%"}},normalizeCss:function(a){var b=jQuery.extend(!0,{},a);jQuery.browser.webkit||jQuery.browser.opera?jQuery.CSS.sfx="-webkit-":jQuery.browser.mozilla?jQuery.CSS.sfx="-moz-":jQuery.browser.msie&&(jQuery.CSS.sfx="-ms-");for(var c in b){"transform"===c&&(b[jQuery.CSS.sfx+"transform"]=b[c],delete b[c]),"transform-origin"===c&&(b[jQuery.CSS.sfx+"transform-origin"]=a[c],delete b[c]),"filter"!==c||jQuery.browser.mozilla||(b[jQuery.CSS.sfx+"filter"]=a[c],delete b[c]),"blur"===c&&setFilter(b,"blur",a[c]),"brightness"===c&&setFilter(b,"brightness",a[c]),"contrast"===c&&setFilter(b,"contrast",a[c]),"grayscale"===c&&setFilter(b,"grayscale",a[c]),"hueRotate"===c&&setFilter(b,"hueRotate",a[c]),"invert"===c&&setFilter(b,"invert",a[c]),"saturate"===c&&setFilter(b,"saturate",a[c]),"sepia"===c&&setFilter(b,"sepia",a[c]);var d="";"x"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" translateX("+setUnit(a[c],"px")+")",delete b[c]),"y"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" translateY("+setUnit(a[c],"px")+")",delete b[c]),"z"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" translateZ("+setUnit(a[c],"px")+")",delete b[c]),"rotate"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" rotate("+setUnit(a[c],"deg")+")",delete b[c]),"rotateX"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" rotateX("+setUnit(a[c],"deg")+")",delete b[c]),"rotateY"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" rotateY("+setUnit(a[c],"deg")+")",delete b[c]),"rotateZ"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" rotateZ("+setUnit(a[c],"deg")+")",delete b[c]),"scale"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" scale("+setUnit(a[c],"")+")",delete b[c]),"scaleX"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" scaleX("+setUnit(a[c],"")+")",delete b[c]),"scaleY"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" scaleY("+setUnit(a[c],"")+")",delete b[c]),"scaleZ"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" scaleZ("+setUnit(a[c],"")+")",delete b[c]),"skew"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" skew("+setUnit(a[c],"deg")+")",delete b[c]),"skewX"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" skewX("+setUnit(a[c],"deg")+")",delete b[c]),"skewY"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" skewY("+setUnit(a[c],"deg")+")",delete b[c]),"perspective"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" perspective("+setUnit(a[c],"px")+")",delete b[c])}return b},getProp:function(a){var b=[];for(var c in a)b.indexOf(c)<0&&b.push(uncamel(c));return b.join(",")},animate:function(a,b,c,d,e){return this.each(function(){function o(){f.called=!0,f.CSSAIsRunning=!1,g.off(jQuery.CSS.transitionEnd+"."+f.id),clearTimeout(f.timeout),g.css(jQuery.CSS.sfx+"transition",""),"function"==typeof e&&e.apply(f),"function"==typeof f.CSSqueue&&(f.CSSqueue(),f.CSSqueue=null)}var f=this,g=jQuery(this);f.id=f.id||"CSSA_"+(new Date).getTime();var h=h||{type:"noEvent"};if(f.CSSAIsRunning&&f.eventType==h.type&&!jQuery.browser.msie&&jQuery.browser.version<=9)return f.CSSqueue=function(){g.CSSAnimate(a,b,c,d,e)},void 0;if(f.CSSqueue=null,f.eventType=h.type,0!==g.length&&a){if(a=jQuery.normalizeCss(a),f.CSSAIsRunning=!0,"function"==typeof b&&(e=b,b=jQuery.fx.speeds._default),"function"==typeof c&&(d=c,c=0),"string"==typeof c&&(e=c,c=0),"function"==typeof d&&(e=d,d="cubic-bezier(0.65,0.03,0.36,0.72)"),"string"==typeof b)for(var i in jQuery.fx.speeds){if(b==i){b=jQuery.fx.speeds[i];break}b=jQuery.fx.speeds._default}if(b||(b=jQuery.fx.speeds._default),"string"==typeof e&&(d=e,e=null),!jQuery.support.CSStransition){for(var j in a){if("transform"===j&&delete a[j],"filter"===j&&delete a[j],"transform-origin"===j&&delete a[j],"auto"===a[j]&&delete a[j],"x"===j){var k=a[j],l="left";a[l]=k,delete a[j]}if("y"===j){var k=a[j],l="top";a[l]=k,delete a[j]}("-ms-transform"===j||"-ms-filter"===j)&&delete a[j]}return g.delay(c).animate(a,b,e),void 0}var m={"default":"ease","in":"ease-in",out:"ease-out","in-out":"ease-in-out",snap:"cubic-bezier(0,1,.5,1)",easeOutCubic:"cubic-bezier(.215,.61,.355,1)",easeInOutCubic:"cubic-bezier(.645,.045,.355,1)",easeInCirc:"cubic-bezier(.6,.04,.98,.335)",easeOutCirc:"cubic-bezier(.075,.82,.165,1)",easeInOutCirc:"cubic-bezier(.785,.135,.15,.86)",easeInExpo:"cubic-bezier(.95,.05,.795,.035)",easeOutExpo:"cubic-bezier(.19,1,.22,1)",easeInOutExpo:"cubic-bezier(1,0,0,1)",easeInQuad:"cubic-bezier(.55,.085,.68,.53)",easeOutQuad:"cubic-bezier(.25,.46,.45,.94)",easeInOutQuad:"cubic-bezier(.455,.03,.515,.955)",easeInQuart:"cubic-bezier(.895,.03,.685,.22)",easeOutQuart:"cubic-bezier(.165,.84,.44,1)",easeInOutQuart:"cubic-bezier(.77,0,.175,1)",easeInQuint:"cubic-bezier(.755,.05,.855,.06)",easeOutQuint:"cubic-bezier(.23,1,.32,1)",easeInOutQuint:"cubic-bezier(.86,0,.07,1)",easeInSine:"cubic-bezier(.47,0,.745,.715)",easeOutSine:"cubic-bezier(.39,.575,.565,1)",easeInOutSine:"cubic-bezier(.445,.05,.55,.95)",easeInBack:"cubic-bezier(.6,-.28,.735,.045)",easeOutBack:"cubic-bezier(.175, .885,.32,1.275)",easeInOutBack:"cubic-bezier(.68,-.55,.265,1.55)"};m[d]&&(d=m[d]),g.off(jQuery.CSS.transitionEnd+"."+f.id);var n=jQuery.CSS.getProp(a),p={};jQuery.extend(p,a),p[jQuery.CSS.sfx+"transition-property"]=n,p[jQuery.CSS.sfx+"transition-duration"]=b+"ms",p[jQuery.CSS.sfx+"transition-delay"]=c+"ms",p[jQuery.CSS.sfx+"transition-timing-function"]=d,setTimeout(function(){g.one(jQuery.CSS.transitionEnd+"."+f.id,o),g.css(p)},1),f.timeout=setTimeout(function(){return f.called||!e?(f.called=!1,f.CSSAIsRunning=!1,void 0):(g.css(jQuery.CSS.sfx+"transition",""),e.apply(f),f.CSSAIsRunning=!1,"function"==typeof f.CSSqueue&&(f.CSSqueue(),f.CSSqueue=null),void 0)},b+c+10)}})}},jQuery.fn.CSSAnimate=jQuery.CSS.animate,jQuery.normalizeCss=jQuery.CSS.normalizeCss,jQuery.fn.css3=function(a){return this.each(function(){var b=jQuery(this),c=jQuery.normalizeCss(a);b.css(c)})}; -;/* - * ****************************************************************************** - * jquery.mb.components - * file: jquery.mb.browser.min.js - * - * Copyright (c) 2001-2014. Matteo Bicocchi (Pupunzi); - * Open lab srl, Firenze - Italy - * email: matteo@open-lab.com - * site: http://pupunzi.com - * blog: http://pupunzi.open-lab.com - * http://open-lab.com - * - * Licences: MIT, GPL - * http://www.opensource.org/licenses/mit-license.php - * http://www.gnu.org/licenses/gpl.html - * - * last modified: 26/03/14 21.43 - * ***************************************************************************** - */ - -var nAgt=navigator.userAgent;if(!jQuery.browser){jQuery.browser={},jQuery.browser.mozilla=!1,jQuery.browser.webkit=!1,jQuery.browser.opera=!1,jQuery.browser.safari=!1,jQuery.browser.chrome=!1,jQuery.browser.msie=!1,jQuery.browser.ua=nAgt,jQuery.browser.name=navigator.appName,jQuery.browser.fullVersion=""+parseFloat(navigator.appVersion),jQuery.browser.majorVersion=parseInt(navigator.appVersion,10);var nameOffset,verOffset,ix;if(-1!=(verOffset=nAgt.indexOf("Opera")))jQuery.browser.opera=!0,jQuery.browser.name="Opera",jQuery.browser.fullVersion=nAgt.substring(verOffset+6),-1!=(verOffset=nAgt.indexOf("Version"))&&(jQuery.browser.fullVersion=nAgt.substring(verOffset+8));else if(-1!=(verOffset=nAgt.indexOf("OPR")))jQuery.browser.opera=!0,jQuery.browser.name="Opera",jQuery.browser.fullVersion=nAgt.substring(verOffset+4);else if(-1!=(verOffset=nAgt.indexOf("MSIE")))jQuery.browser.msie=!0,jQuery.browser.name="Microsoft Internet Explorer",jQuery.browser.fullVersion=nAgt.substring(verOffset+5);else if(-1!=nAgt.indexOf("Trident")){jQuery.browser.msie=!0,jQuery.browser.name="Microsoft Internet Explorer";var start=nAgt.indexOf("rv:")+3,end=start+4;jQuery.browser.fullVersion=nAgt.substring(start,end)}else-1!=(verOffset=nAgt.indexOf("Chrome"))?(jQuery.browser.webkit=!0,jQuery.browser.chrome=!0,jQuery.browser.name="Chrome",jQuery.browser.fullVersion=nAgt.substring(verOffset+7)):-1!=(verOffset=nAgt.indexOf("Safari"))?(jQuery.browser.webkit=!0,jQuery.browser.safari=!0,jQuery.browser.name="Safari",jQuery.browser.fullVersion=nAgt.substring(verOffset+7),-1!=(verOffset=nAgt.indexOf("Version"))&&(jQuery.browser.fullVersion=nAgt.substring(verOffset+8))):-1!=(verOffset=nAgt.indexOf("AppleWebkit"))?(jQuery.browser.webkit=!0,jQuery.browser.name="Safari",jQuery.browser.fullVersion=nAgt.substring(verOffset+7),-1!=(verOffset=nAgt.indexOf("Version"))&&(jQuery.browser.fullVersion=nAgt.substring(verOffset+8))):-1!=(verOffset=nAgt.indexOf("Firefox"))?(jQuery.browser.mozilla=!0,jQuery.browser.name="Firefox",jQuery.browser.fullVersion=nAgt.substring(verOffset+8)):(nameOffset=nAgt.lastIndexOf(" ")+1)<(verOffset=nAgt.lastIndexOf("/"))&&(jQuery.browser.name=nAgt.substring(nameOffset,verOffset),jQuery.browser.fullVersion=nAgt.substring(verOffset+1),jQuery.browser.name.toLowerCase()==jQuery.browser.name.toUpperCase()&&(jQuery.browser.name=navigator.appName));-1!=(ix=jQuery.browser.fullVersion.indexOf(";"))&&(jQuery.browser.fullVersion=jQuery.browser.fullVersion.substring(0,ix)),-1!=(ix=jQuery.browser.fullVersion.indexOf(" "))&&(jQuery.browser.fullVersion=jQuery.browser.fullVersion.substring(0,ix)),jQuery.browser.majorVersion=parseInt(""+jQuery.browser.fullVersion,10),isNaN(jQuery.browser.majorVersion)&&(jQuery.browser.fullVersion=""+parseFloat(navigator.appVersion),jQuery.browser.majorVersion=parseInt(navigator.appVersion,10)),jQuery.browser.version=jQuery.browser.majorVersion}jQuery.browser.android=/Android/i.test(nAgt),jQuery.browser.blackberry=/BlackBerry|BB|PlayBook/i.test(nAgt),jQuery.browser.ios=/iPhone|iPad|iPod|webOS/i.test(nAgt),jQuery.browser.operaMobile=/Opera Mini/i.test(nAgt),jQuery.browser.windowsMobile=/IEMobile|Windows Phone/i.test(nAgt),jQuery.browser.kindle=/Kindle|Silk/i.test(nAgt),jQuery.browser.mobile=jQuery.browser.android||jQuery.browser.blackberry||jQuery.browser.ios||jQuery.browser.windowsMobile||jQuery.browser.operaMobile||jQuery.browser.kindle,jQuery.isMobile=jQuery.browser.mobile,jQuery.isTablet=jQuery.browser.mobile&&jQuery(window).width()>765,jQuery.isAndroidDefault=jQuery.browser.android&&!/chrome/i.test(nAgt); -;/*___________________________________________________________________________________________________________________________________________________ - _ jquery.mb.components _ - _ _ - _ file: jquery.mb.simpleSlider.min.js _ - _ last modified: 16/05/15 23.45 _ - _ _ - _ Open Lab s.r.l., Florence - Italy _ - _ _ - _ email: matteo@open-lab.com _ - _ site: http://pupunzi.com _ - _ http://open-lab.com _ - _ blog: http://pupunzi.open-lab.com _ - _ Q&A: http://jquery.pupunzi.com _ - _ _ - _ Licences: MIT, GPL _ - _ http://www.opensource.org/licenses/mit-license.php _ - _ http://www.gnu.org/licenses/gpl.html _ - _ _ - _ Copyright (c) 2001-2015. Matteo Bicocchi (Pupunzi); _ - ___________________________________________________________________________________________________________________________________________________*/ - -!function(a){/iphone|ipod|ipad|android|ie|blackberry|fennec/.test(navigator.userAgent.toLowerCase());var c="ontouchstart"in window||window.navigator&&window.navigator.msPointerEnabled&&window.MSGesture||window.DocumentTouch&&document instanceof DocumentTouch||!1;a.simpleSlider={defaults:{initialval:0,scale:100,orientation:"h",readonly:!1,callback:!1},events:{start:c?"touchstart":"mousedown",end:c?"touchend":"mouseup",move:c?"touchmove":"mousemove"},init:function(b){return this.each(function(){var d=this,e=a(d);e.addClass("simpleSlider"),d.opt={},a.extend(d.opt,a.simpleSlider.defaults,b),a.extend(d.opt,e.data());var f="h"==d.opt.orientation?"horizontal":"vertical",g=a("
    ").addClass("level").addClass(f);e.prepend(g),d.level=g,e.css({cursor:"default"}),"auto"==d.opt.scale&&(d.opt.scale=a(d).outerWidth()),e.updateSliderVal(),d.opt.readonly||(e.on(a.simpleSlider.events.start,function(a){c&&(a=a.changedTouches[0]),d.canSlide=!0,e.updateSliderVal(a),e.css({cursor:"col-resize"}),a.preventDefault(),a.stopPropagation()}),a(document).on(a.simpleSlider.events.move,function(b){c&&(b=b.changedTouches[0]),d.canSlide&&(a(document).css({cursor:"default"}),e.updateSliderVal(b),b.preventDefault(),b.stopPropagation())}).on(a.simpleSlider.events.end,function(){a(document).css({cursor:"auto"}),d.canSlide=!1,e.css({cursor:"auto"})}))})},updateSliderVal:function(b){function g(a,b){return Math.floor(100*a/b)}var c=this,d=c.get(0);d.opt.initialval="number"==typeof d.opt.initialval?d.opt.initialval:d.opt.initialval(d);var e=a(d).outerWidth(),f=a(d).outerHeight();d.x="object"==typeof b?b.clientX+document.body.scrollLeft-c.offset().left:"number"==typeof b?b*e/d.opt.scale:d.opt.initialval*e/d.opt.scale,d.y="object"==typeof b?b.clientY+document.body.scrollTop-c.offset().top:"number"==typeof b?(d.opt.scale-d.opt.initialval-b)*f/d.opt.scale:d.opt.initialval*f/d.opt.scale,d.y=c.outerHeight()-d.y,d.scaleX=d.x*d.opt.scale/e,d.scaleY=d.y*d.opt.scale/f,d.outOfRangeX=d.scaleX>d.opt.scale?d.scaleX-d.opt.scale:d.scaleX<0?d.scaleX:0,d.outOfRangeY=d.scaleY>d.opt.scale?d.scaleY-d.opt.scale:d.scaleY<0?d.scaleY:0,d.outOfRange="h"==d.opt.orientation?d.outOfRangeX:d.outOfRangeY,d.value="undefined"!=typeof b?"h"==d.opt.orientation?d.x>=c.outerWidth()?d.opt.scale:d.x<=0?0:d.scaleX:d.y>=c.outerHeight()?d.opt.scale:d.y<=0?0:d.scaleY:"h"==d.opt.orientation?d.scaleX:d.scaleY,"h"==d.opt.orientation?d.level.width(g(d.x,e)+"%"):d.level.height(g(d.y,f)),"function"==typeof d.opt.callback&&d.opt.callback(d)}},a.fn.simpleSlider=a.simpleSlider.init,a.fn.updateSliderVal=a.simpleSlider.updateSliderVal}(jQuery); -;/*___________________________________________________________________________________________________________________________________________________ - _ jquery.mb.components _ - _ _ - _ file: jquery.mb.storage.min.js _ - _ last modified: 24/05/15 16.08 _ - _ _ - _ Open Lab s.r.l., Florence - Italy _ - _ _ - _ email: matteo@open-lab.com _ - _ site: http://pupunzi.com _ - _ http://open-lab.com _ - _ blog: http://pupunzi.open-lab.com _ - _ Q&A: http://jquery.pupunzi.com _ - _ _ - _ Licences: MIT, GPL _ - _ http://www.opensource.org/licenses/mit-license.php _ - _ http://www.gnu.org/licenses/gpl.html _ - _ _ - _ Copyright (c) 2001-2015. Matteo Bicocchi (Pupunzi); _ - ___________________________________________________________________________________________________________________________________________________*/ - -!function(a){a.mbCookie={set:function(a,b,c,d){b=JSON.stringify(b),c||(c=7),d=d?"; domain="+d:"";var f,e=new Date;e.setTime(e.getTime()+1e3*60*60*24*c),f="; expires="+e.toGMTString(),document.cookie=a+"="+b+f+"; path=/"+d},get:function(a){for(var b=a+"=",c=document.cookie.split(";"),d=0;d 0) { - self.$overlay.data('$optionsSection').find(".createSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".btn-showSlide").removeClass("hide"); - } else { - self.$overlay.data('$optionsSection').find(".createSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".btn-showSlide").addClass("hide"); - } - }, 100); - }, - - add_btn_edit_slide: function () { - var self = this; - self.$overlay.data('$optionsSection').append(' Edit Slide '); - self.$overlay.data('$optionsSection').on('click', '.btn-showSlide', _.bind(this.toggle_slide, this)); - }, - - create_slide: function (previewMode, value, $li) { - var self = this, - slide = '

    Your new slide

    '; - self.$target.append(slide); - self.$overlay.data('$optionsSection').find(".btn-showSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".createSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").removeClass("hide"); - }, - - delete_slide: function (previewMode, value, $li) { - var self = this; - self.$target.find(".slide").remove(); - self.$overlay.data('$optionsSection').find(".btn-showSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".createSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").addClass("hide"); - }, - - toggle_slide: function () { - var a = this.$overlay.data('$optionsSection').find(".btn-showSlide"), - i = a.find("i"), - t = this.$target, - s = t.find(".slide"); - if (!t.hasClass("showSlide")) { - t.addClass("showSlide"); i.addClass("fa-toggle-on").removeClass("fa-toggle-off"); i.css("color", "#FFF"); - s.addClass("visible"); - } else { - t.removeClass("showSlide"); i.removeClass("fa-toggle-on").addClass("fa-toggle-off"); i.css("color", ""); - s.removeClass("visible"); - } - }, - onFocus: function () { - this._adapt_items_height(); - }, - onBlur: function () { - this._adapt_items_height(); - }, - cleanForSave: function() { - this.$target.removeClass("showSlide") - .find(".slide").removeClass("visible"); - - this._adapt_items_height(); - }, - _adapt_items_height: function () { - var $items = this.$target.closest(".s_animated_boxes").find(".item"); - var min_height = _.reduce($items.find(".v-align"), function (memo, item) { - return Math.max(memo, $(item).outerHeight(true) + 40); - }, 200); - $items.css("height", min_height); - }, - }); -}); diff --git a/theme_bewise/theme_common/static/src/js/s_animated_boxes_frontend.js b/theme_bewise/theme_common/static/src/js/s_animated_boxes_frontend.js deleted file mode 100644 index ec39eab..0000000 --- a/theme_bewise/theme_common/static/src/js/s_animated_boxes_frontend.js +++ /dev/null @@ -1,15 +0,0 @@ -odoo.define('theme_common.s_animated_boxes_frontend', function (require) { - 'use strict'; - -var publicWidget = require('web.public.widget'); - -/** - * This is a fix for some apple devices. - * The slide of animated boxes widget is shown on hover or click on mobile - * devices, but iOS only activates :hover if the element targeted is - * clickable. - */ -publicWidget.registry._fixAnimatedBoxesAppleClick = publicWidget.registry._fixAppleCollapse.extend({ - selector: '.s_animated_boxes .item', -}); -}); diff --git a/theme_bewise/theme_common/static/src/js/s_css_slider_editor.js b/theme_bewise/theme_common/static/src/js/s_css_slider_editor.js deleted file mode 100644 index 78d7861..0000000 --- a/theme_bewise/theme_common/static/src/js/s_css_slider_editor.js +++ /dev/null @@ -1,82 +0,0 @@ -odoo.define('theme_common.s_css_slider_editor', function (require) { - 'use strict'; - - var s_options = require('web_editor.snippets.options'); - - s_options.registry.s_css_slider_slide = s_options.Class.extend({ - newSlideUrl: "/web/image/theme_common.image_content_23", - - start: function () { - var self = this; - - self.reset(); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - - setTimeout(function () { - self.$overlay.data('$optionsSection').find(".js_s_css_slider_addSlide").on('click', function () { self.addSlide(); }); - self.$overlay.data('$optionsSection').find(".js_s_css_slider_removeSlide").on('click', function () { self.removeSlide(); }); - }, 100); - - $(document.body).on("media-saved", function () { - self.resizeImgsEditor(); - }); - }, - - resizeImgsEditor: function () { - var self = this; - setTimeout(function () { - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }); - }, - - reset: function () { - var self= this; - self.$target.find(".s_css_slider_pagination").remove().end() - .find("span").unbind("click.s_css"); - }, - - addSlide: function () { - var self = this; - var $currentSlide = self.$target.find(".slider .slide.selected"); - $currentSlide.clone().insertAfter($currentSlide).removeClass("selected"); - - _.defer(function () { - self.reset(); - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }); - }, - - removeSlide: function () { - var self = this; - var $currentSlide = self.$target.find(".slider .slide.selected"); - - $currentSlide.remove(); - _.defer(function () { - self.reset(); - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }); - }, - - cleanForSave: function () { - var self = this; - self.$target - .find(".s_css_slider_pagination").remove().end() - .find(".navigation .prev").addClass("inactive").end() - .find(".navigation .next").removeClass("inactive").end() - .find(".slider .slide").removeClass("selected move-left").end() - .find(".slider .slide").first().addClass("selected"); - }, - }); -}); diff --git a/theme_bewise/theme_common/static/src/js/s_css_slider_frontend.js b/theme_bewise/theme_common/static/src/js/s_css_slider_frontend.js deleted file mode 100644 index 99d225c..0000000 --- a/theme_bewise/theme_common/static/src/js/s_css_slider_frontend.js +++ /dev/null @@ -1,122 +0,0 @@ -odoo.define('theme_common.s_css_slider_frontend', function (require) { - 'use strict'; - - var publicWidget = require('web.public.widget'); - - publicWidget.registry.s_css_slider = publicWidget.Widget.extend({ - selector: ".s_css_slider", - disabledInEditableMode: false, - - start: function () { - var self = this; - var $container = self.$target; - $container.find(".s_css_slider_pagination").remove(); - // create slider pagination - var sliderPagination = self.createSliderPagination($container); - self.bindEvents($container, sliderPagination); - $(window).on("resize", function () { - self.resizeImgs($container); - }).trigger("resize"); - return this._super.apply(this, arguments); - }, - - bindEvents: function ($container, sliderPagination) { - var self = this, - $next_btn = $container.find('.next'), - $prev_btn = $container.find('.prev'); - - $next_btn.on('click.s_css', function (e) { - self.nextSlide($container, sliderPagination); - }); - - $prev_btn.on('click.s_css', function (e) { - self.prevSlide($container, sliderPagination); - }); - - if ($container.hasClass("autoplay") && this.editableMode !== true) { - var interval; - var autoplay = function () { - interval = setInterval(function () { - if (!$next_btn.hasClass("inactive")) { - self.nextSlide($container, sliderPagination); - } else { - self.prevSlide($container, sliderPagination, 0); - } - }, 3000); - }; - autoplay(); - $container.hover(function () { clearInterval(interval); }); - $container.mouseleave(function () { autoplay(); }); - } - - sliderPagination.on('click.s_css', function () { - var selectedDot = $(this); - if (!selectedDot.hasClass('selected')) { - var selectedPosition = selectedDot.index(), - activePosition = $container.find('.slider .selected').index(); - if ( activePosition < selectedPosition) { - self.nextSlide($container, sliderPagination, selectedPosition); - } else { - self.prevSlide($container, sliderPagination, selectedPosition); - } - } - }); - }, - - resizeImgs: function ($container) { - var cont_h = $container.height(), - imgs = $container.find(".slide img"); - - imgs.each(function () { - var $img = $(this), - img_h = $img.height(); - if (img_h > cont_h) { - $img.css("width", "100%"); - $img.css("margin-top", (cont_h - img_h)/2); - } - }); - }, - - createSliderPagination: function ($container) { - var wrapper = $('
      ').insertAfter($container.find('.navigation')); - $container.find('.slider .slide').each(function (index) { - var dotWrapper = (index === 0) ? $('
    • ') : $('
    • '), - dot = $('').appendTo(dotWrapper); - dotWrapper.appendTo(wrapper); - dot.text(index+1); - }); - return wrapper.children('li'); - }, - - nextSlide: function ($container, $pagination, $n) { - var self = this, - visibleSlide = $container.find('.slider .selected'), - navigationDot = $container.find('.s_css_slider_pagination .selected'); - - if (typeof $n === 'undefined') $n = visibleSlide.index() + 1; - visibleSlide.removeClass('selected'); - $container.find('.slider .slide').eq($n).addClass('selected').prevAll().addClass('move-left'); - navigationDot.removeClass('selected'); - $pagination.eq($n).addClass('selected'); - self.updateNavigation($container, $container.find('.slider .slide').eq($n)); - }, - - prevSlide: function ($container, $pagination, $n) { - var self = this, - visibleSlide = $container.find('.slider .selected'), - navigationDot = $container.find('.s_css_slider_pagination .selected'); - - if (typeof $n === 'undefined') $n = visibleSlide.index() - 1; - visibleSlide.removeClass('selected'); - $container.find('.slider .slide').eq($n).addClass('selected').removeClass('move-left').nextAll().removeClass('move-left'); - navigationDot.removeClass('selected'); - $pagination.eq($n).addClass('selected'); - self.updateNavigation($container, $container.find('.slider .slide').eq($n)); - }, - - updateNavigation: function ($container, $active) { - $container.find('.prev').toggleClass('inactive', $active.is(':first-child')); - $container.find('.next').toggleClass('inactive', $active.is(':last-child')); - }, - }); -}); diff --git a/theme_bewise/theme_common/static/src/js/s_google_map_editor.js b/theme_bewise/theme_common/static/src/js/s_google_map_editor.js deleted file mode 100644 index 9a5b4d7..0000000 --- a/theme_bewise/theme_common/static/src/js/s_google_map_editor.js +++ /dev/null @@ -1,149 +0,0 @@ -odoo.define('theme_common.s_google_map_editor', function (require) { -'use strict'; - -var Dialog = require('web_editor.widget').Dialog; -var core = require('web.core'); -var sOptions = require('web_editor.snippets.options'); -var googleScriptLoaded = require('theme_common.s_google_map_frontend').googleScriptLoaded; - -var _t = core._t; - -sOptions.registry.map = sOptions.Class.extend({ - xmlDependencies: ['/theme_common/static/src/xml/s_google_map_modal.xml'], - defaultLocation: '(50.854975,4.3753899)', - - /** - * @override - */ - onBuilt: function () { - this._super.apply(this, arguments); - this.map('click', null, null); - }, - - //-------------------------------------------------------------------------- - // Options - //-------------------------------------------------------------------------- - - /** - * Opens the customization dialog. - * - * @see this.selectClass for parameters - */ - map: function (previewMode, value, $opt) { - var self = this; - - this.dialog = new Dialog(this, { - size: 'medium', - title: _t("Customize your map"), - buttons: [ - {text: _t("Save"), classes: 'btn-primary', close: true, click: function () { - if (!this.$('#placeBk').val()) { - this.$('#placeBk').val(self.defaultLocation); - } - self.$target.attr({ - 'data-map-gps': this.$('#placeBk').val(), - 'data-pin-style': this.$('#pin_style').val(), - 'data-pin-address': this.$('#pin_address').val(), - }); - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }}, - {text: _t("Cancel"), close: true} - ], - $content: $(core.qweb.render('theme_common.s_google_map_modal')) - }); - - this.dialog.opened().then((function () { - this.$('#pin_address').val(self.$target.attr('data-pin-address')); - this.$('#pin_style').val(self.$target.attr('data-pin-style')); - this.$('#placeBk').val(self.$target.attr('data-map-gps')); - var autocomplete = new google.maps.places.Autocomplete(this.$('#pin_address').get(0), {types: ['geocode']}); - google.maps.event.addListener(autocomplete, 'place_changed', function () { - var place = autocomplete.getPlace(); - self.dialog.$('#placeBk').val(place.geometry ? place.geometry.location : self.defaultLocation); - }); - }).bind(this.dialog)); - - googleScriptLoaded.then(function () { - self.dialog.open(); - }); - }, - /** - * Adapts map's type. - * - * @see this.selectClass for parameters - */ - mapType: function (previewMode, value, $opt) { - this.$target.attr('data-map-type', value); - this.$target.attr('data-map-color', ''); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - /** - * Adapts map's color. - * - * @see this.selectClass for parameters - */ - mapColor: function (previewMode, value, $opt) { - this.$target.attr('data-map-color', value); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - /** - * Adapts map's zoom. - * - * @see this.selectClass for parameters - */ - mapZoom: function (previewMode, value, $opt) { - this.$target.attr('data-map-zoom', value); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - /** - * Adapts map's location. - * - * @see this.selectClass for parameters - */ - mapGps: function (previewMode, value, $opt) { - this.$target.attr('data-map-gps', value); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - - //-------------------------------------------------------------------------- - // Private - //-------------------------------------------------------------------------- - - /** - * @override - */ - _setActive: function () { - this.$el.find('[data-map-type]') - .removeClass('active') - .filter('[data-map-type="' + this.$target.attr('data-map-type') + '"]') - .addClass('active'); - this.$el.find('[data-map-color]') - .removeClass('active') - .filter('[data-map-color="' + this.$target.attr('data-map-color') + '"]') - .addClass('active'); - this.$el.find('[data-map-zoom]') - .removeClass('active') - .filter('[data-map-zoom="' + this.$target.attr('data-map-zoom') + '"]') - .addClass('active'); - this.$el.find('[data-map-gps]') - .removeClass('active') - .filter('[data-map-gps="' + this.$target.attr('data-map-gps') + '"]') - .addClass('active'); - }, -}); -}); diff --git a/theme_bewise/theme_common/static/src/js/s_google_map_frontend.js b/theme_bewise/theme_common/static/src/js/s_google_map_frontend.js deleted file mode 100644 index a22cb5b..0000000 --- a/theme_bewise/theme_common/static/src/js/s_google_map_frontend.js +++ /dev/null @@ -1,144 +0,0 @@ -odoo.define('theme_common.s_google_map_frontend', function (require) { -'use strict'; - -var core = require('web.core'); -var publicWidget = require('web.public.widget'); -var googleScriptLoaded = $.Deferred(); - -var _t = core._t; - -publicWidget.registry.s_google_map = publicWidget.Widget.extend({ - selector: '.s_google_map', - disabledInEditableMode: false, - - /** - * @override - */ - start: function () { - var self = this; - var defs = [this._super.apply(this, arguments)]; - - if (typeof google !== 'object' || typeof google.maps !== 'object') { - if (!publicWidget.registry.s_google_map.isScriptLoading) { - publicWidget.registry.s_google_map.isScriptLoading = true; - window.odoo_s_google_map_redraw_all = function odoo_s_google_map_redraw_all() { - _.each($('section.s_google_map'), function (map) { - self.trigger_up('widgets_start_request', { - editableMode: self.editableMode, - $target: $(map), - }); - }); - publicWidget.registry.s_google_map.isScriptLoading = false; - googleScriptLoaded.resolve(); - }; - - defs.push(this._rpc({ - route: '/theme_common/google_maps_api_key', - }).then(function (data) { - var key_param = ''; - var data_json = JSON.parse(data); - if (data_json.google_maps_api_key !== '') { - key_param = '&key=' + data_json.google_maps_api_key; - } - $('head').append($('" ).attr( { - "src": jQuery.mbYTPlayer.locationProtocol + "//www.youtube.com/iframe_api?v=" + jQuery.mbYTPlayer.version, - "id": "YTAPI" - } ); - jQuery( "head" ).prepend( tag ); - } else { - setTimeout( function() { - jQuery( document ).trigger( "YTAPIReady" ); - }, 100 ) - } - jQuery( document ).on( "YTAPIReady", function() { - if( ( YTPlayer.isBackground && ytp.backgroundIsInited ) || YTPlayer.isInit ) return; - if( YTPlayer.isBackground ) { - ytp.backgroundIsInited = true; - } - YTPlayer.opt.autoPlay = typeof YTPlayer.opt.autoPlay == "undefined" ? ( YTPlayer.isBackground ? true : false ) : YTPlayer.opt.autoPlay; - YTPlayer.opt.vol = YTPlayer.opt.vol ? YTPlayer.opt.vol : 100; - jQuery.mbYTPlayer.getDataFromAPI( YTPlayer ); - jQuery( YTPlayer ).on( "YTPChanged", function() { - if( YTPlayer.isInit ) return; - YTPlayer.isInit = true; - //if is mobile && isPlayer fallback to the default YT player - if( jQuery.browser.mobile && YTPlayer.canPlayOnMobile ) { - // Try to adjust the player dimention - if( YTPlayer.opt.containment.outerWidth() > jQuery( window ).width() ) { - YTPlayer.opt.containment.css( { - maxWidth: "100%" - } ); - var h = YTPlayer.opt.containment.outerWidth() * .6; - YTPlayer.opt.containment.css( { - maxHeight: h - } ); - } - new YT.Player( playerID, { - videoId: YTPlayer.videoID.toString(), - height: '100%', - width: '100%', - events: { - 'onReady': function( event ) { - YTPlayer.player = event.target; - playerBox.css( { - opacity: 1 - } ); - YTPlayer.wrapper.css( { - opacity: 1 - } ); - } - } - } ); - return; - } - new YT.Player( playerID, { - videoId: YTPlayer.videoID.toString(), - playerVars: playerVars, - events: { - 'onReady': function( event ) { - YTPlayer.player = event.target; - if( YTPlayer.isReady ) return; - YTPlayer.isReady = YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ? false : true; - YTPlayer.playerEl = YTPlayer.player.getIframe(); - $YTPlayer.optimizeDisplay(); - YTPlayer.videoID = videoID; - jQuery( window ).on( "resize.YTP", function() { - $YTPlayer.optimizeDisplay(); - } ); - jQuery.mbYTPlayer.checkForState( YTPlayer ); - // Trigger state events - var YTPEvent = jQuery.Event( "YTPUnstarted" ); - YTPEvent.time = YTPlayer.player.time; - if( YTPlayer.canTrigger ) jQuery( YTPlayer ).trigger( YTPEvent ); - }, - /** - * - * @param event - * - * -1 (unstarted) - * 0 (ended) - * 1 (playing) - * 2 (paused) - * 3 (buffering) - * 5 (video cued). - * - * - */ - 'onStateChange': function( event ) { - if( typeof event.target.getPlayerState != "function" ) return; - var state = event.target.getPlayerState(); - if( YTPlayer.state == state ) return; - YTPlayer.state = state; - var eventType; - switch( state ) { - case -1: //------------------------------------------------ unstarted - eventType = "YTPUnstarted"; - break; - case 0: //------------------------------------------------ ended - eventType = "YTPEnd"; - break; - case 1: //------------------------------------------------ play - eventType = "YTPStart"; - if( YTPlayer.controlBar ) YTPlayer.controlBar.find( ".mb_YTPPlaypause" ).html( jQuery.mbYTPlayer.controls.pause ); - if( typeof _gaq != "undefined" && eval( YTPlayer.opt.gaTrack ) ) _gaq.push( [ '_trackEvent', 'YTPlayer', 'Play', ( YTPlayer.hasData ? YTPlayer.videoData.title : YTPlayer.videoID.toString() ) ] ); - if( typeof ga != "undefined" && eval( YTPlayer.opt.gaTrack ) ) ga( 'send', 'event', 'YTPlayer', 'play', ( YTPlayer.hasData ? YTPlayer.videoData.title : YTPlayer.videoID.toString() ) ); - break; - case 2: //------------------------------------------------ pause - eventType = "YTPPause"; - if( YTPlayer.controlBar ) YTPlayer.controlBar.find( ".mb_YTPPlaypause" ).html( jQuery.mbYTPlayer.controls.play ); - break; - case 3: //------------------------------------------------ buffer - YTPlayer.player.setPlaybackQuality( YTPlayer.opt.quality ); - eventType = "YTPBuffering"; - if( YTPlayer.controlBar ) YTPlayer.controlBar.find( ".mb_YTPPlaypause" ).html( jQuery.mbYTPlayer.controls.play ); - break; - case 5: //------------------------------------------------ cued - eventType = "YTPCued"; - break; - default: - break; - } - // Trigger state events - var YTPEvent = jQuery.Event( eventType ); - YTPEvent.time = YTPlayer.player.time; - if( YTPlayer.canTrigger ) jQuery( YTPlayer ).trigger( YTPEvent ); - }, - /** - * - * @param e - */ - 'onPlaybackQualityChange': function( e ) { - var quality = e.target.getPlaybackQuality(); - var YTPQualityChange = jQuery.Event( "YTPQualityChange" ); - YTPQualityChange.quality = quality; - jQuery( YTPlayer ).trigger( YTPQualityChange ); - }, - /** - * - * @param err - */ - 'onError': function( err ) { - if( err.data == 150 ) { - console.log( "Embedding this video is restricted by Youtube." ); - if( YTPlayer.isPlayList ) jQuery( YTPlayer ).playNext(); - } - if( err.data == 2 && YTPlayer.isPlayList ) jQuery( YTPlayer ).playNext(); - if( typeof YTPlayer.opt.onError == "function" ) YTPlayer.opt.onError( $YTPlayer, err ); - } - } - } ); - } ); - } ) - } ); - }, - /** - * - * @param YTPlayer - */ - getDataFromAPI: function( YTPlayer ) { - YTPlayer.videoData = jQuery.mbStorage.get( "YYTPlayer_data_" + YTPlayer.videoID ); - jQuery( YTPlayer ).off( "YTPData.YTPlayer" ).on( "YTPData.YTPlayer", function() { - if( YTPlayer.hasData ) { - - if( YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ) { - var bgndURL = YTPlayer.videoData.thumb_max || YTPlayer.videoData.thumb_high || YTPlayer.videoData.thumb_medium; - YTPlayer.opt.containment.css( { - background: "rgba(0,0,0,0.5) url(" + bgndURL + ") center center", - backgroundSize: "cover" - } ); - YTPlayer.opt.backgroundUrl = bgndURL; - } - } - } ); - - if( YTPlayer.videoData ) { - - setTimeout( function() { - YTPlayer.opt.ratio = YTPlayer.opt.ratio == "auto" ? "16/9" : YTPlayer.opt.ratio; - YTPlayer.dataReceived = true; - jQuery( YTPlayer ).trigger( "YTPChanged" ); - var YTPData = jQuery.Event( "YTPData" ); - YTPData.prop = {}; - for( var x in YTPlayer.videoData ) YTPData.prop[ x ] = YTPlayer.videoData[ x ]; - jQuery( YTPlayer ).trigger( YTPData ); - }, 500 ); - - YTPlayer.hasData = true; - } else if( jQuery.mbYTPlayer.apiKey ) { - // Get video info from API3 (needs api key) - // snippet,player,contentDetails,statistics,status - jQuery.getJSON( jQuery.mbYTPlayer.locationProtocol + "//www.googleapis.com/youtube/v3/videos?id=" + YTPlayer.videoID + "&key=" + jQuery.mbYTPlayer.apiKey + "&part=snippet", function( data ) { - YTPlayer.dataReceived = true; - jQuery( YTPlayer ).trigger( "YTPChanged" ); - - function parseYTPlayer_data( data ) { - YTPlayer.videoData = {}; - YTPlayer.videoData.id = YTPlayer.videoID; - YTPlayer.videoData.channelTitle = data.channelTitle; - YTPlayer.videoData.title = data.title; - YTPlayer.videoData.description = data.description.length < 400 ? data.description : data.description.substring( 0, 400 ) + " ..."; - YTPlayer.videoData.aspectratio = YTPlayer.opt.ratio == "auto" ? "16/9" : YTPlayer.opt.ratio; - YTPlayer.opt.ratio = YTPlayer.videoData.aspectratio; - YTPlayer.videoData.thumb_max = data.thumbnails.maxres ? data.thumbnails.maxres.url : null; - YTPlayer.videoData.thumb_high = data.thumbnails.high ? data.thumbnails.high.url : null; - YTPlayer.videoData.thumb_medium = data.thumbnails.medium ? data.thumbnails.medium.url : null; - jQuery.mbStorage.set( "YYTPlayer_data_" + YTPlayer.videoID, YTPlayer.videoData ); - } - parseYTPlayer_data( data.items[ 0 ].snippet ); - YTPlayer.hasData = true; - var YTPData = jQuery.Event( "YTPData" ); - YTPData.prop = {}; - for( var x in YTPlayer.videoData ) YTPData.prop[ x ] = YTPlayer.videoData[ x ]; - jQuery( YTPlayer ).trigger( YTPData ); - } ); - } else { - setTimeout( function() { - jQuery( YTPlayer ).trigger( "YTPChanged" ); - }, 50 ); - if( YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ) { - var bgndURL = jQuery.mbYTPlayer.locationProtocol + "//i.ytimg.com/vi/" + YTPlayer.videoID + "/hqdefault.jpg"; - YTPlayer.opt.containment.css( { - background: "rgba(0,0,0,0.5) url(" + bgndURL + ") center center", - backgroundSize: "cover" - } ); - YTPlayer.opt.backgroundUrl = bgndURL; - } - YTPlayer.videoData = null; - YTPlayer.opt.ratio = YTPlayer.opt.ratio == "auto" ? "16/9" : YTPlayer.opt.ratio; - } - if( YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ) { - YTPlayer.loading = jQuery( "
      " ).addClass( "loading" ).html( "Loading" ).hide(); - jQuery( YTPlayer ).append( YTPlayer.loading ); - YTPlayer.loading.fadeIn(); - } - }, - /** - * - */ - removeStoredData: function() { - jQuery.mbStorage.remove(); - }, - /** - * - * @returns {*|YTPlayer.videoData} - */ - getVideoData: function() { - var YTPlayer = this.get( 0 ); - return YTPlayer.videoData; - }, - /** - * - * @returns {*|YTPlayer.videoID|boolean} - */ - getVideoID: function() { - var YTPlayer = this.get( 0 ); - return YTPlayer.videoID || false; - }, - /** - * - * @param quality - */ - setVideoQuality: function( quality ) { - var YTPlayer = this.get( 0 ); - if( !jQuery.browser.chrome ) YTPlayer.player.setPlaybackQuality( quality ); - }, - /** - * @param videos - * @param shuffle - * @param callback - * @returns {jQuery.mbYTPlayer} - */ - playlist: function( videos, shuffle, callback ) { - var $YTPlayer = this; - var YTPlayer = $YTPlayer.get( 0 ); - YTPlayer.isPlayList = true; - if( shuffle ) videos = jQuery.shuffle( videos ); - if( !YTPlayer.videoID ) { - YTPlayer.videos = videos; - YTPlayer.videoCounter = 0; - YTPlayer.videoLength = videos.length; - jQuery( YTPlayer ).data( "property", videos[ 0 ] ); - jQuery( YTPlayer ).mb_YTPlayer(); - } - if( typeof callback == "function" ) jQuery( YTPlayer ).on( "YTPChanged", function() { - callback( YTPlayer ); - } ); - jQuery( YTPlayer ).on( "YTPEnd", function() { - jQuery( YTPlayer ).playNext(); - } ); - return $YTPlayer; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - playNext: function() { - var YTPlayer = this.get( 0 ); - YTPlayer.videoCounter++; - if( YTPlayer.videoCounter >= YTPlayer.videoLength ) YTPlayer.videoCounter = 0; - jQuery( YTPlayer ).changeMovie( YTPlayer.videos[ YTPlayer.videoCounter ] ); - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - playPrev: function() { - var YTPlayer = this.get( 0 ); - YTPlayer.videoCounter--; - if( YTPlayer.videoCounter < 0 ) YTPlayer.videoCounter = YTPlayer.videoLength - 1; - jQuery( YTPlayer ).changeMovie( YTPlayer.videos[ YTPlayer.videoCounter ] ); - return this; - }, - /** - * - * @param opt - */ - changeMovie: function( opt ) { - var YTPlayer = this.get( 0 ); - YTPlayer.opt.startAt = 0; - YTPlayer.opt.stopAt = 0; - YTPlayer.opt.mute = true; - YTPlayer.hasData = false; - YTPlayer.hasChanged = true; - if( opt ) jQuery.extend( YTPlayer.opt, YTPlayer.defaultOpt, opt ); - YTPlayer.videoID = getYTPVideoID( YTPlayer.opt.videoURL ).videoID; - jQuery( YTPlayer.playerEl ).CSSAnimate( { - opacity: 0 - }, 200, function() { - jQuery( YTPlayer ).YTPGetPlayer().cueVideoByUrl( encodeURI( jQuery.mbYTPlayer.locationProtocol + "//www.youtube.com/v/" + YTPlayer.videoID ), 1, YTPlayer.opt.quality ); - jQuery.mbYTPlayer.checkForState( YTPlayer ); - jQuery( YTPlayer ).optimizeDisplay(); - jQuery.mbYTPlayer.getDataFromAPI( YTPlayer ); - return this; - } ); - }, - /** - * - * @returns {player} - */ - getPlayer: function() { - return jQuery( this ).get( 0 ).player; - }, - playerDestroy: function() { - var YTPlayer = this.get( 0 ); - ytp.YTAPIReady = false; - ytp.backgroundIsInited = false; - YTPlayer.isInit = false; - YTPlayer.videoID = null; - var playerBox = YTPlayer.wrapper; - playerBox.remove(); - jQuery( "#controlBar_" + YTPlayer.id ).remove(); - clearInterval( YTPlayer.checkForStartAt ); - clearInterval( YTPlayer.getState ); - return this; - }, - /** - * - * @param real - * @returns {jQuery.mbYTPlayer} - */ - fullscreen: function( real ) { - var YTPlayer = this.get( 0 ); - if( typeof real == "undefined" ) real = YTPlayer.opt.realfullscreen; - real = eval( real ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var fullScreenBtn = controls.find( ".mb_OnlyYT" ); - var videoWrapper = YTPlayer.isSelf ? YTPlayer.opt.containment : YTPlayer.wrapper; - //var videoWrapper = YTPlayer.wrapper; - if( real ) { - var fullscreenchange = jQuery.browser.mozilla ? "mozfullscreenchange" : jQuery.browser.webkit ? "webkitfullscreenchange" : "fullscreenchange"; - jQuery( document ).off( fullscreenchange ).on( fullscreenchange, function() { - var isFullScreen = RunPrefixMethod( document, "IsFullScreen" ) || RunPrefixMethod( document, "FullScreen" ); - if( !isFullScreen ) { - YTPlayer.isAlone = false; - fullScreenBtn.html( jQuery.mbYTPlayer.controls.onlyYT ); - jQuery( YTPlayer ).YTPSetVideoQuality( YTPlayer.opt.quality ); - videoWrapper.removeClass( "fullscreen" ); - videoWrapper.CSSAnimate( { - opacity: YTPlayer.opt.opacity - }, 500 ); - videoWrapper.css( { - zIndex: 0 - } ); - if( YTPlayer.isBackground ) { - jQuery( "body" ).after( controls ); - } else { - YTPlayer.wrapper.before( controls ); - } - jQuery( window ).resize(); - jQuery( YTPlayer ).trigger( "YTPFullScreenEnd" ); - } else { - jQuery( YTPlayer ).YTPSetVideoQuality( "default" ); - jQuery( YTPlayer ).trigger( "YTPFullScreenStart" ); - } - } ); - } - if( !YTPlayer.isAlone ) { - function hideMouse() { - YTPlayer.overlay.css( { - cursor: "none" - } ); - } - jQuery( document ).on( "mousemove.YTPlayer", function( e ) { - YTPlayer.overlay.css( { - cursor: "auto" - } ); - clearTimeout( YTPlayer.hideCursor ); - if( !jQuery( e.target ).parents().is( ".mb_YTPBar" ) ) YTPlayer.hideCursor = setTimeout( hideMouse, 3000 ); - } ); - hideMouse(); - if( real ) { - videoWrapper.css( { - opacity: 0 - } ); - videoWrapper.addClass( "fullscreen" ); - launchFullscreen( videoWrapper.get( 0 ) ); - setTimeout( function() { - videoWrapper.CSSAnimate( { - opacity: 1 - }, 1000 ); - YTPlayer.wrapper.append( controls ); - jQuery( YTPlayer ).optimizeDisplay(); - YTPlayer.player.seekTo( YTPlayer.player.getCurrentTime() + .1, true ); - }, 500 ) - } else videoWrapper.css( { - zIndex: 10000 - } ).CSSAnimate( { - opacity: 1 - }, 1000 ); - fullScreenBtn.html( jQuery.mbYTPlayer.controls.showSite ); - YTPlayer.isAlone = true; - } else { - jQuery( document ).off( "mousemove.YTPlayer" ); - YTPlayer.overlay.css( { - cursor: "auto" - } ); - if( real ) { - cancelFullscreen(); - } else { - videoWrapper.CSSAnimate( { - opacity: YTPlayer.opt.opacity - }, 500 ); - videoWrapper.css( { - zIndex: 0 - } ); - } - fullScreenBtn.html( jQuery.mbYTPlayer.controls.onlyYT ); - YTPlayer.isAlone = false; - } - - function RunPrefixMethod( obj, method ) { - var pfx = [ "webkit", "moz", "ms", "o", "" ]; - var p = 0, - m, t; - while( p < pfx.length && !obj[ m ] ) { - m = method; - if( pfx[ p ] == "" ) { - m = m.substr( 0, 1 ).toLowerCase() + m.substr( 1 ); - } - m = pfx[ p ] + m; - t = typeof obj[ m ]; - if( t != "undefined" ) { - pfx = [ pfx[ p ] ]; - return( t == "function" ? obj[ m ]() : obj[ m ] ); - } - p++; - } - } - - function launchFullscreen( element ) { - RunPrefixMethod( element, "RequestFullScreen" ); - } - - function cancelFullscreen() { - if( RunPrefixMethod( document, "FullScreen" ) || RunPrefixMethod( document, "IsFullScreen" ) ) { - RunPrefixMethod( document, "CancelFullScreen" ); - } - } - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - toggleLoops: function() { - var YTPlayer = this.get( 0 ); - var data = YTPlayer.opt; - if( data.loop == 1 ) { - data.loop = 0; - } else { - if( data.startAt ) { - YTPlayer.player.seekTo( data.startAt ); - } else { - YTPlayer.player.playVideo(); - } - data.loop = 1; - } - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - play: function() { - var YTPlayer = this.get( 0 ); - if( !YTPlayer.isReady ) return; - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var playBtn = controls.find( ".mb_YTPPlaypause" ); - playBtn.html( jQuery.mbYTPlayer.controls.pause ); - YTPlayer.player.playVideo(); - YTPlayer.wrapper.CSSAnimate( { - opacity: YTPlayer.isAlone ? 1 : YTPlayer.opt.opacity - }, 2000 ); - jQuery( YTPlayer.playerEl ).CSSAnimate( { - opacity: 1 - }, 1000 ); - jQuery( YTPlayer ).css( "background-image", "none" ); - return this; - }, - /** - * - * @param callback - * @returns {jQuery.mbYTPlayer} - */ - togglePlay: function( callback ) { - var YTPlayer = this.get( 0 ); - if( YTPlayer.state == 1 ) this.YTPPause(); - else this.YTPPlay(); - if( typeof callback == "function" ) { - callback( YTPlayer.state ); - } - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - stop: function() { - var YTPlayer = this.get( 0 ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var playBtn = controls.find( ".mb_YTPPlaypause" ); - playBtn.html( jQuery.mbYTPlayer.controls.play ); - YTPlayer.player.stopVideo(); - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - pause: function() { - var YTPlayer = this.get( 0 ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var playBtn = controls.find( ".mb_YTPPlaypause" ); - playBtn.html( jQuery.mbYTPlayer.controls.play ); - YTPlayer.player.pauseVideo(); - return this; - }, - /** - * - * @param val - * @returns {jQuery.mbYTPlayer} - */ - seekTo: function( val ) { - var YTPlayer = this.get( 0 ); - YTPlayer.player.seekTo( val, true ); - return this; - }, - /** - * - * @param val - * @returns {jQuery.mbYTPlayer} - */ - setVolume: function( val ) { - var YTPlayer = this.get( 0 ); - if( !val && !YTPlayer.opt.vol && YTPlayer.player.getVolume() == 0 ) jQuery( YTPlayer ).YTPUnmute(); - else if( ( !val && YTPlayer.player.getVolume() > 0 ) || ( val && YTPlayer.opt.vol == val ) ) { - if( !YTPlayer.isMute ) jQuery( YTPlayer ).YTPMute(); - else jQuery( YTPlayer ).YTPUnmute(); - } else { - YTPlayer.opt.vol = val; - YTPlayer.player.setVolume( YTPlayer.opt.vol ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length ) YTPlayer.volumeBar.updateSliderVal( val ) - } - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - mute: function() { - var YTPlayer = this.get( 0 ); - if( YTPlayer.isMute ) return; - YTPlayer.player.mute(); - YTPlayer.isMute = true; - YTPlayer.player.setVolume( 0 ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length && YTPlayer.volumeBar.width() > 10 ) { - YTPlayer.volumeBar.updateSliderVal( 0 ); - } - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var muteBtn = controls.find( ".mb_YTPMuteUnmute" ); - muteBtn.html( jQuery.mbYTPlayer.controls.unmute ); - jQuery( YTPlayer ).addClass( "isMuted" ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length ) YTPlayer.volumeBar.addClass( "muted" ); - var YTPEvent = jQuery.Event( "YTPMuted" ); - YTPEvent.time = YTPlayer.player.time; - if( YTPlayer.canTrigger ) jQuery( YTPlayer ).trigger( YTPEvent ); - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - unmute: function() { - var YTPlayer = this.get( 0 ); - if( !YTPlayer.isMute ) return; - YTPlayer.player.unMute(); - YTPlayer.isMute = false; - YTPlayer.player.setVolume( YTPlayer.opt.vol ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length ) YTPlayer.volumeBar.updateSliderVal( YTPlayer.opt.vol > 10 ? YTPlayer.opt.vol : 10 ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var muteBtn = controls.find( ".mb_YTPMuteUnmute" ); - muteBtn.html( jQuery.mbYTPlayer.controls.mute ); - jQuery( YTPlayer ).removeClass( "isMuted" ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length ) YTPlayer.volumeBar.removeClass( "muted" ); - var YTPEvent = jQuery.Event( "YTPUnmuted" ); - YTPEvent.time = YTPlayer.player.time; - if( YTPlayer.canTrigger ) jQuery( YTPlayer ).trigger( YTPEvent ); - return this; - }, - /** - * - * @param filter - * @param value - * @returns {jQuery.mbYTPlayer} - */ - applyFilter: function( filter, value ) { - var YTPlayer = this.get( 0 ); - YTPlayer.filters[ filter ].value = value; - if( YTPlayer.filtersEnabled ) this.YTPEnableFilters(); - return this; - }, - /** - * - * @param filters - * @returns {jQuery.mbYTPlayer} - */ - applyFilters: function( filters ) { - var YTPlayer = this.get( 0 ); - this.on( "YTPReady", function() { - for( var key in filters ) { - YTPlayer.filters[ key ].value = filters[ key ]; - jQuery( YTPlayer ).YTPApplyFilter( key, filters[ key ] ); - } - jQuery( YTPlayer ).trigger( "YTPFiltersApplied" ); - } ); - return this; - }, - /** - * - * @param filter - * @param value - * @returns {*} - */ - toggleFilter: function( filter, value ) { - return this.each( function() { - var YTPlayer = this; - if( !YTPlayer.filters[ filter ].value ) YTPlayer.filters[ filter ].value = value; - else YTPlayer.filters[ filter ].value = 0; - if( YTPlayer.filtersEnabled ) jQuery( this ).YTPEnableFilters(); - } ) - return this; - }, - /** - * - * @param callback - * @returns {*} - */ - toggleFilters: function( callback ) { - return this.each( function() { - var YTPlayer = this; - if( YTPlayer.filtersEnabled ) { - jQuery( YTPlayer ).trigger( "YTPDisableFilters" ); - jQuery( YTPlayer ).YTPDisableFilters(); - } else { - jQuery( YTPlayer ).YTPEnableFilters(); - jQuery( YTPlayer ).trigger( "YTPEnableFilters" ); - } - if( typeof callback == "function" ) callback( YTPlayer.filtersEnabled ); - } ) - }, - /** - * - * @returns {*} - */ - disableFilters: function() { - return this.each( function() { - var YTPlayer = this; - var iframe = jQuery( YTPlayer.playerEl ); - iframe.css( "-webkit-filter", "" ); - iframe.css( "filter", "" ); - YTPlayer.filtersEnabled = false; - } ) - }, - /** - * - * @returns {*} - */ - enableFilters: function() { - return this.each( function() { - var YTPlayer = this; - var iframe = jQuery( YTPlayer.playerEl ); - var filterStyle = ""; - for( var key in YTPlayer.filters ) { - if( YTPlayer.filters[ key ].value ) filterStyle += key.replace( "_", "-" ) + "(" + YTPlayer.filters[ key ].value + YTPlayer.filters[ key ].unit + ") "; - } - iframe.css( "-webkit-filter", filterStyle ); - iframe.css( "filter", filterStyle ); - YTPlayer.filtersEnabled = true; - } ) - return this; - }, - /** - * - * @param filter - * @param callback - * @returns {*} - */ - removeFilter: function( filter, callback ) { - return this.each( function() { - if( typeof filter == "function" ) { - callback = filter; - filter = null; - } - var YTPlayer = this; - if( !filter ) - for( var key in YTPlayer.filters ) { - jQuery( this ).YTPApplyFilter( key, 0 ); - if( typeof callback == "function" ) callback( key ); - } else { - jQuery( this ).YTPApplyFilter( filter, 0 ); - if( typeof callback == "function" ) callback( filter ); - } - } ); - return this; - }, - /** - * - * @returns {{totalTime: number, currentTime: number}} - */ - manageProgress: function() { - var YTPlayer = this.get( 0 ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var progressBar = controls.find( ".mb_YTPProgress" ); - var loadedBar = controls.find( ".mb_YTPLoaded" ); - var timeBar = controls.find( ".mb_YTPseekbar" ); - var totW = progressBar.outerWidth(); - var currentTime = Math.floor( YTPlayer.player.getCurrentTime() ); - var totalTime = Math.floor( YTPlayer.player.getDuration() ); - var timeW = ( currentTime * totW ) / totalTime; - var startLeft = 0; - var loadedW = YTPlayer.player.getVideoLoadedFraction() * 100; - loadedBar.css( { - left: startLeft, - width: loadedW + "%" - } ); - timeBar.css( { - left: 0, - width: timeW - } ); - return { - totalTime: totalTime, - currentTime: currentTime - }; - }, - /** - * - * @param YTPlayer - */ - buildControls: function( YTPlayer ) { - var data = YTPlayer.opt; - // @data.printUrl: is deprecated; use data.showYTLogo - data.showYTLogo = data.showYTLogo || data.printUrl; - if( jQuery( "#controlBar_" + YTPlayer.id ).length ) return; - YTPlayer.controlBar = jQuery( "" ).attr( "id", "controlBar_" + YTPlayer.id ).addClass( "mb_YTPBar" ).css( { - whiteSpace: "noWrap", - position: YTPlayer.isBackground ? "fixed" : "absolute", - zIndex: YTPlayer.isBackground ? 10000 : 1000 - } ).hide(); - var buttonBar = jQuery( "
      " ).addClass( "buttonBar" ); - /* play/pause button*/ - var playpause = jQuery( "" + jQuery.mbYTPlayer.controls.play + "" ).addClass( "mb_YTPPlaypause ytpicon" ).click( function() { - if( YTPlayer.player.getPlayerState() == 1 ) jQuery( YTPlayer ).YTPPause(); - else jQuery( YTPlayer ).YTPPlay(); - } ); - /* mute/unmute button*/ - var MuteUnmute = jQuery( "" + jQuery.mbYTPlayer.controls.mute + "" ).addClass( "mb_YTPMuteUnmute ytpicon" ).click( function() { - if( YTPlayer.player.getVolume() == 0 ) { - jQuery( YTPlayer ).YTPUnmute(); - } else { - jQuery( YTPlayer ).YTPMute(); - } - } ); - /* volume bar*/ - var volumeBar = jQuery( "
      " ).addClass( "mb_YTPVolumeBar" ).css( { - display: "inline-block" - } ); - YTPlayer.volumeBar = volumeBar; - /* time elapsed */ - var idx = jQuery( "" ).addClass( "mb_YTPTime" ); - var vURL = data.videoURL ? data.videoURL : ""; - if( vURL.indexOf( "http" ) < 0 ) vURL = jQuery.mbYTPlayer.locationProtocol + "//www.youtube.com/watch?v=" + data.videoURL; - var movieUrl = jQuery( "" ).html( jQuery.mbYTPlayer.controls.ytLogo ).addClass( "mb_YTPUrl ytpicon" ).attr( "title", "view on YouTube" ).on( "click", function() { - window.open( vURL, "viewOnYT" ) - } ); - var onlyVideo = jQuery( "" ).html( jQuery.mbYTPlayer.controls.onlyYT ).addClass( "mb_OnlyYT ytpicon" ).on( "click", function() { - jQuery( YTPlayer ).YTPFullscreen( data.realfullscreen ); - } ); - var progressBar = jQuery( "
      " ).addClass( "mb_YTPProgress" ).css( "position", "absolute" ).click( function( e ) { - timeBar.css( { - width: ( e.clientX - timeBar.offset().left ) - } ); - YTPlayer.timeW = e.clientX - timeBar.offset().left; - YTPlayer.controlBar.find( ".mb_YTPLoaded" ).css( { - width: 0 - } ); - var totalTime = Math.floor( YTPlayer.player.getDuration() ); - YTPlayer.goto = ( timeBar.outerWidth() * totalTime ) / progressBar.outerWidth(); - YTPlayer.player.seekTo( parseFloat( YTPlayer.goto ), true ); - YTPlayer.controlBar.find( ".mb_YTPLoaded" ).css( { - width: 0 - } ); - } ); - var loadedBar = jQuery( "
      " ).addClass( "mb_YTPLoaded" ).css( "position", "absolute" ); - var timeBar = jQuery( "
      " ).addClass( "mb_YTPseekbar" ).css( "position", "absolute" ); - progressBar.append( loadedBar ).append( timeBar ); - buttonBar.append( playpause ).append( MuteUnmute ).append( volumeBar ).append( idx ); - if( data.showYTLogo ) { - buttonBar.append( movieUrl ); - } - if( YTPlayer.isBackground || ( eval( YTPlayer.opt.realfullscreen ) && !YTPlayer.isBackground ) ) buttonBar.append( onlyVideo ); - YTPlayer.controlBar.append( buttonBar ).append( progressBar ); - if( !YTPlayer.isBackground ) { - YTPlayer.controlBar.addClass( "inlinePlayer" ); - YTPlayer.wrapper.before( YTPlayer.controlBar ); - } else { - jQuery( "body" ).after( YTPlayer.controlBar ); - } - volumeBar.simpleSlider( { - initialval: YTPlayer.opt.vol, - scale: 100, - orientation: "h", - callback: function( el ) { - if( el.value == 0 ) { - jQuery( YTPlayer ).YTPMute(); - } else { - jQuery( YTPlayer ).YTPUnmute(); - } - YTPlayer.player.setVolume( el.value ); - if( !YTPlayer.isMute ) YTPlayer.opt.vol = el.value; - } - } ); - }, - /** - * - * - * */ - checkForState: function( YTPlayer ) { - var interval = YTPlayer.opt.showControls ? 100 : 700; - clearInterval( YTPlayer.getState ); - //Checking if player has been removed from scene - if( !jQuery.contains( document, YTPlayer ) ) { - jQuery( YTPlayer ).YTPPlayerDestroy(); - clearInterval( YTPlayer.getState ); - clearInterval( YTPlayer.checkForStartAt ); - return; - } - jQuery.mbYTPlayer.checkForStart( YTPlayer ); - YTPlayer.getState = setInterval( function() { - var prog = jQuery( YTPlayer ).YTPManageProgress(); - var $YTPlayer = jQuery( YTPlayer ); - var data = YTPlayer.opt; - var startAt = YTPlayer.opt.startAt ? YTPlayer.opt.startAt : 0; - var stopAt = YTPlayer.opt.stopAt > YTPlayer.opt.startAt ? YTPlayer.opt.stopAt : 0; - stopAt = stopAt < YTPlayer.player.getDuration() ? stopAt : 0; - if( YTPlayer.player.time != prog.currentTime ) { - var YTPEvent = jQuery.Event( "YTPTime" ); - YTPEvent.time = YTPlayer.player.time; - jQuery( YTPlayer ).trigger( YTPEvent ); - } - YTPlayer.player.time = prog.currentTime; - if( YTPlayer.player.getVolume() == 0 ) $YTPlayer.addClass( "isMuted" ); - else $YTPlayer.removeClass( "isMuted" ); - if( YTPlayer.opt.showControls ) - if( prog.totalTime ) { - YTPlayer.controlBar.find( ".mb_YTPTime" ).html( jQuery.mbYTPlayer.formatTime( prog.currentTime ) + " / " + jQuery.mbYTPlayer.formatTime( prog.totalTime ) ); - } else { - YTPlayer.controlBar.find( ".mb_YTPTime" ).html( "-- : -- / -- : --" ); - } - if( eval( YTPlayer.opt.stopMovieOnBlur ) ) - if( !document.hasFocus() ) { - if( YTPlayer.state == 1 ) { - YTPlayer.hasFocus = false; - $YTPlayer.YTPPause(); - } - } else if( document.hasFocus() && !YTPlayer.hasFocus && !( YTPlayer.state == -1 || YTPlayer.state == 0 ) ) { - YTPlayer.hasFocus = true; - $YTPlayer.YTPPlay(); - } - if( YTPlayer.controlBar && YTPlayer.controlBar.outerWidth() <= 400 && !YTPlayer.isCompact ) { - YTPlayer.controlBar.addClass( "compact" ); - YTPlayer.isCompact = true; - if( !YTPlayer.isMute && YTPlayer.volumeBar ) YTPlayer.volumeBar.updateSliderVal( YTPlayer.opt.vol ); - } else if( YTPlayer.controlBar && YTPlayer.controlBar.outerWidth() > 400 && YTPlayer.isCompact ) { - YTPlayer.controlBar.removeClass( "compact" ); - YTPlayer.isCompact = false; - if( !YTPlayer.isMute && YTPlayer.volumeBar ) YTPlayer.volumeBar.updateSliderVal( YTPlayer.opt.vol ); - } - if( YTPlayer.player.getPlayerState() == 1 && ( parseFloat( YTPlayer.player.getDuration() - 1.5 ) < YTPlayer.player.getCurrentTime() || ( stopAt > 0 && parseFloat( YTPlayer.player.getCurrentTime() ) > stopAt ) ) ) { - if( YTPlayer.isEnded ) return; - YTPlayer.isEnded = true; - setTimeout( function() { - YTPlayer.isEnded = false - }, 1000 ); - if( YTPlayer.isPlayList ) { - clearInterval( YTPlayer.getState ); - var YTPEnd = jQuery.Event( "YTPEnd" ); - YTPEnd.time = YTPlayer.player.time; - jQuery( YTPlayer ).trigger( YTPEnd ); - return; - } else if( !data.loop ) { - YTPlayer.player.pauseVideo(); - YTPlayer.wrapper.CSSAnimate( { - opacity: 0 - }, 1000, function() { - var YTPEnd = jQuery.Event( "YTPEnd" ); - YTPEnd.time = YTPlayer.player.time; - jQuery( YTPlayer ).trigger( YTPEnd ); - YTPlayer.player.seekTo( startAt, true ); - if( !YTPlayer.isBackground ) { - YTPlayer.opt.containment.css( { - background: "rgba(0,0,0,0.5) url(" + YTPlayer.opt.backgroundUrl + ") center center", - backgroundSize: "cover" - } ); - } - } ); - } else { - - startAt = startAt || 1; - - YTPlayer.player.pauseVideo(); - YTPlayer.player.seekTo( startAt, true ); - $YTPlayer.YTPPlay(); - - } - } - }, interval ); - }, - /** - * - * */ - checkForStart: function( YTPlayer ) { - var $YTPlayer = jQuery( YTPlayer ); - //Checking if player has been removed from scene - if( !jQuery.contains( document, YTPlayer ) ) { - jQuery( YTPlayer ).YTPPlayerDestroy(); - return - } - if( jQuery.browser.chrome ) YTPlayer.opt.quality = "default"; - YTPlayer.player.pauseVideo(); - jQuery( YTPlayer ).muteYTPVolume(); - jQuery( "#controlBar_" + YTPlayer.id ).remove(); - if( YTPlayer.opt.showControls ) jQuery.mbYTPlayer.buildControls( YTPlayer ); - if( YTPlayer.opt.addRaster ) { - var classN = YTPlayer.opt.addRaster == "dot" ? "raster-dot" : "raster"; - YTPlayer.overlay.addClass( YTPlayer.isRetina ? classN + " retina" : classN ); - } else { - YTPlayer.overlay.removeClass( function( index, classNames ) { - // change the list into an array - var current_classes = classNames.split( " " ), - // array of classes which are to be removed - classes_to_remove = []; - jQuery.each( current_classes, function( index, class_name ) { - // if the classname begins with bg add it to the classes_to_remove array - if( /raster.*/.test( class_name ) ) { - classes_to_remove.push( class_name ); - } - } ); - classes_to_remove.push( "retina" ); - // turn the array back into a string - return classes_to_remove.join( " " ); - } ) - } - YTPlayer.checkForStartAt = setInterval( function() { - jQuery( YTPlayer ).YTPMute(); - var startAt = YTPlayer.opt.startAt ? YTPlayer.opt.startAt : 1; - var canPlayVideo = ( YTPlayer.player.getVideoLoadedFraction() > startAt / YTPlayer.player.getDuration() ); - if( YTPlayer.player.getDuration() > 0 && YTPlayer.player.getCurrentTime() >= startAt && canPlayVideo ) { - clearInterval( YTPlayer.checkForStartAt ); - YTPlayer.isReady = true; - if( typeof YTPlayer.opt.onReady == "function" ) YTPlayer.opt.onReady( YTPlayer ); - var YTPready = jQuery.Event( "YTPReady" ); - jQuery( YTPlayer ).trigger( YTPready ); - YTPlayer.player.pauseVideo(); - if( !YTPlayer.opt.mute ) jQuery( YTPlayer ).YTPUnmute(); - YTPlayer.canTrigger = true; - if( YTPlayer.opt.autoPlay ) { - $YTPlayer.YTPPlay(); - $YTPlayer.css( "background-image", "none" ); - jQuery( YTPlayer.playerEl ).CSSAnimate( { - opacity: 1 - }, 1000 ); - YTPlayer.wrapper.CSSAnimate( { - opacity: YTPlayer.isAlone ? 1 : YTPlayer.opt.opacity - }, 1000 ); - } else { - YTPlayer.player.pauseVideo(); - if( !YTPlayer.isPlayer ) { - jQuery( YTPlayer.playerEl ).CSSAnimate( { - opacity: 1 - }, 1000 ); - YTPlayer.wrapper.CSSAnimate( { - opacity: YTPlayer.isAlone ? 1 : YTPlayer.opt.opacity - }, 1000 ); - } - } - if( YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ) { - YTPlayer.loading.html( "Ready" ); - setTimeout( function() { - YTPlayer.loading.fadeOut(); - - - }, 100 ) - } - if( YTPlayer.controlBar ) YTPlayer.controlBar.slideDown( 1000 ); - } else { - //YTPlayer.player.playVideo(); - if( startAt >= 0 ) YTPlayer.player.seekTo( startAt, true ); - } - }, 1000 ); - }, - /** - * - * @param s - * @returns {string} - */ - formatTime: function( s ) { - var min = Math.floor( s / 60 ); - var sec = Math.floor( s - ( 60 * min ) ); - return( min <= 9 ? "0" + min : min ) + " : " + ( sec <= 9 ? "0" + sec : sec ); - } - }; - /** - * - * @returns {boolean} - */ - jQuery.fn.toggleVolume = function() { - var YTPlayer = this.get( 0 ); - if( !YTPlayer ) return; - if( YTPlayer.player.isMuted() ) { - jQuery( YTPlayer ).YTPUnmute(); - return true; - } else { - jQuery( YTPlayer ).YTPMute(); - return false; - } - }; - /** - * - */ - jQuery.fn.optimizeDisplay = function() { - var YTPlayer = this.get( 0 ); - var data = YTPlayer.opt; - var playerBox = jQuery( YTPlayer.playerEl ); - var win = {}; - var el = YTPlayer.wrapper; - win.width = el.outerWidth(); - win.height = el.outerHeight(); - var margin = 24; - var overprint = 100; - var vid = {}; - if( data.optimizeDisplay ) { - vid.width = win.width + ( ( win.width * margin ) / 100 ); - vid.height = data.ratio == "16/9" ? Math.ceil( ( 9 * win.width ) / 16 ) : Math.ceil( ( 3 * win.width ) / 4 ); - vid.marginTop = -( ( vid.height - win.height ) / 2 ); - vid.marginLeft = -( ( win.width * ( margin / 2 ) ) / 100 ); - if( vid.height < win.height ) { - vid.height = win.height + ( ( win.height * margin ) / 100 ); - vid.width = data.ratio == "16/9" ? Math.floor( ( 16 * win.height ) / 9 ) : Math.floor( ( 4 * win.height ) / 3 ); - vid.marginTop = -( ( win.height * ( margin / 2 ) ) / 100 ); - vid.marginLeft = -( ( vid.width - win.width ) / 2 ); - } - vid.width += overprint; - vid.height += overprint; - vid.marginTop -= overprint / 2; - vid.marginLeft -= overprint / 2; - } else { - vid.width = "100%"; - vid.height = "100%"; - vid.marginTop = 0; - vid.marginLeft = 0; - } - playerBox.css( { - width: vid.width, - height: vid.height, - marginTop: vid.marginTop, - marginLeft: vid.marginLeft - } ); - }; - /** - * - * @param arr - * @returns {Array|string|Blob|*} - * - */ - jQuery.shuffle = function( arr ) { - var newArray = arr.slice(); - var len = newArray.length; - var i = len; - while( i-- ) { - var p = parseInt( Math.random() * len ); - var t = newArray[ i ]; - newArray[ i ] = newArray[ p ]; - newArray[ p ] = t; - } - return newArray; - }; - - /* Exposed public method */ - jQuery.fn.YTPlayer = jQuery.mbYTPlayer.buildPlayer; - jQuery.fn.YTPGetPlayer = jQuery.mbYTPlayer.getPlayer; - jQuery.fn.YTPGetVideoID = jQuery.mbYTPlayer.getVideoID; - jQuery.fn.YTPChangeMovie = jQuery.mbYTPlayer.changeMovie; - jQuery.fn.YTPPlayerDestroy = jQuery.mbYTPlayer.playerDestroy; - - jQuery.fn.YTPPlay = jQuery.mbYTPlayer.play; - jQuery.fn.YTPTogglePlay = jQuery.mbYTPlayer.togglePlay; - jQuery.fn.YTPStop = jQuery.mbYTPlayer.stop; - jQuery.fn.YTPPause = jQuery.mbYTPlayer.pause; - jQuery.fn.YTPSeekTo = jQuery.mbYTPlayer.seekTo; - - jQuery.fn.YTPlaylist = jQuery.mbYTPlayer.playlist; - jQuery.fn.YTPPlayNext = jQuery.mbYTPlayer.playNext; - jQuery.fn.YTPPlayPrev = jQuery.mbYTPlayer.playPrev; - - jQuery.fn.YTPMute = jQuery.mbYTPlayer.mute; - jQuery.fn.YTPUnmute = jQuery.mbYTPlayer.unmute; - jQuery.fn.YTPToggleVolume = jQuery.mbYTPlayer.toggleVolume; - jQuery.fn.YTPSetVolume = jQuery.mbYTPlayer.setVolume; - - jQuery.fn.YTPGetVideoData = jQuery.mbYTPlayer.getVideoData; - jQuery.fn.YTPFullscreen = jQuery.mbYTPlayer.fullscreen; - jQuery.fn.YTPToggleLoops = jQuery.mbYTPlayer.toggleLoops; - jQuery.fn.YTPSetVideoQuality = jQuery.mbYTPlayer.setVideoQuality; - jQuery.fn.YTPManageProgress = jQuery.mbYTPlayer.manageProgress; - - jQuery.fn.YTPApplyFilter = jQuery.mbYTPlayer.applyFilter; - jQuery.fn.YTPApplyFilters = jQuery.mbYTPlayer.applyFilters; - jQuery.fn.YTPToggleFilter = jQuery.mbYTPlayer.toggleFilter; - jQuery.fn.YTPToggleFilters = jQuery.mbYTPlayer.toggleFilters; - jQuery.fn.YTPRemoveFilter = jQuery.mbYTPlayer.removeFilter; - jQuery.fn.YTPDisableFilters = jQuery.mbYTPlayer.disableFilters; - jQuery.fn.YTPEnableFilters = jQuery.mbYTPlayer.enableFilters; - - - /** - * - * @deprecated - * - **/ - jQuery.fn.mb_YTPlayer = jQuery.mbYTPlayer.buildPlayer; - jQuery.fn.playNext = jQuery.mbYTPlayer.playNext; - jQuery.fn.playPrev = jQuery.mbYTPlayer.playPrev; - jQuery.fn.changeMovie = jQuery.mbYTPlayer.changeMovie; - jQuery.fn.getVideoID = jQuery.mbYTPlayer.getVideoID; - jQuery.fn.getPlayer = jQuery.mbYTPlayer.getPlayer; - jQuery.fn.playerDestroy = jQuery.mbYTPlayer.playerDestroy; - jQuery.fn.fullscreen = jQuery.mbYTPlayer.fullscreen; - jQuery.fn.buildYTPControls = jQuery.mbYTPlayer.buildControls; - jQuery.fn.playYTP = jQuery.mbYTPlayer.play; - jQuery.fn.toggleLoops = jQuery.mbYTPlayer.toggleLoops; - jQuery.fn.stopYTP = jQuery.mbYTPlayer.stop; - jQuery.fn.pauseYTP = jQuery.mbYTPlayer.pause; - jQuery.fn.seekToYTP = jQuery.mbYTPlayer.seekTo; - jQuery.fn.muteYTPVolume = jQuery.mbYTPlayer.mute; - jQuery.fn.unmuteYTPVolume = jQuery.mbYTPlayer.unmute; - jQuery.fn.setYTPVolume = jQuery.mbYTPlayer.setVolume; - jQuery.fn.setVideoQuality = jQuery.mbYTPlayer.setVideoQuality; - jQuery.fn.manageYTPProgress = jQuery.mbYTPlayer.manageProgress; - jQuery.fn.YTPGetDataFromFeed = jQuery.mbYTPlayer.getVideoData; - - -} )( jQuery, ytp ); -; -/* - * ****************************************************************************** - * jquery.mb.components - * file: jquery.mb.CSSAnimate.min.js - * - * Copyright (c) 2001-2014. Matteo Bicocchi (Pupunzi); - * Open lab srl, Firenze - Italy - * email: matteo@open-lab.com - * site: http://pupunzi.com - * blog: http://pupunzi.open-lab.com - * http://open-lab.com - * - * Licences: MIT, GPL - * http://www.opensource.org/licenses/mit-license.php - * http://www.gnu.org/licenses/gpl.html - * - * last modified: 26/03/14 21.40 - * ***************************************************************************** - */ - -function uncamel(a){return a.replace(/([A-Z])/g,function(a){return"-"+a.toLowerCase()})}function setUnit(a,b){return"string"!=typeof a||a.match(/^[\-0-9\.]+jQuery/)?""+a+b:a}function setFilter(a,b,c){var d=uncamel(b),e=jQuery.browser.mozilla?"":jQuery.CSS.sfx;a[e+"filter"]=a[e+"filter"]||"",c=setUnit(c>jQuery.CSS.filters[b].max?jQuery.CSS.filters[b].max:c,jQuery.CSS.filters[b].unit),a[e+"filter"]+=d+"("+c+") ",delete a[b]}jQuery.support.CSStransition=function(){var a=document.body||document.documentElement,b=a.style;return void 0!==b.transition||void 0!==b.WebkitTransition||void 0!==b.MozTransition||void 0!==b.MsTransition||void 0!==b.OTransition}(),jQuery.CSS={name:"mb.CSSAnimate",author:"Matteo Bicocchi",version:"2.0.0",transitionEnd:"transitionEnd",sfx:"",filters:{blur:{min:0,max:100,unit:"px"},brightness:{min:0,max:400,unit:"%"},contrast:{min:0,max:400,unit:"%"},grayscale:{min:0,max:100,unit:"%"},hueRotate:{min:0,max:360,unit:"deg"},invert:{min:0,max:100,unit:"%"},saturate:{min:0,max:400,unit:"%"},sepia:{min:0,max:100,unit:"%"}},normalizeCss:function(a){var b=jQuery.extend(!0,{},a);jQuery.browser.webkit||jQuery.browser.opera?jQuery.CSS.sfx="-webkit-":jQuery.browser.mozilla?jQuery.CSS.sfx="-moz-":jQuery.browser.msie&&(jQuery.CSS.sfx="-ms-");for(var c in b){"transform"===c&&(b[jQuery.CSS.sfx+"transform"]=b[c],delete b[c]),"transform-origin"===c&&(b[jQuery.CSS.sfx+"transform-origin"]=a[c],delete b[c]),"filter"!==c||jQuery.browser.mozilla||(b[jQuery.CSS.sfx+"filter"]=a[c],delete b[c]),"blur"===c&&setFilter(b,"blur",a[c]),"brightness"===c&&setFilter(b,"brightness",a[c]),"contrast"===c&&setFilter(b,"contrast",a[c]),"grayscale"===c&&setFilter(b,"grayscale",a[c]),"hueRotate"===c&&setFilter(b,"hueRotate",a[c]),"invert"===c&&setFilter(b,"invert",a[c]),"saturate"===c&&setFilter(b,"saturate",a[c]),"sepia"===c&&setFilter(b,"sepia",a[c]);var d="";"x"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" translateX("+setUnit(a[c],"px")+")",delete b[c]),"y"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" translateY("+setUnit(a[c],"px")+")",delete b[c]),"z"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" translateZ("+setUnit(a[c],"px")+")",delete b[c]),"rotate"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" rotate("+setUnit(a[c],"deg")+")",delete b[c]),"rotateX"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" rotateX("+setUnit(a[c],"deg")+")",delete b[c]),"rotateY"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" rotateY("+setUnit(a[c],"deg")+")",delete b[c]),"rotateZ"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" rotateZ("+setUnit(a[c],"deg")+")",delete b[c]),"scale"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" scale("+setUnit(a[c],"")+")",delete b[c]),"scaleX"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" scaleX("+setUnit(a[c],"")+")",delete b[c]),"scaleY"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" scaleY("+setUnit(a[c],"")+")",delete b[c]),"scaleZ"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" scaleZ("+setUnit(a[c],"")+")",delete b[c]),"skew"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" skew("+setUnit(a[c],"deg")+")",delete b[c]),"skewX"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" skewX("+setUnit(a[c],"deg")+")",delete b[c]),"skewY"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" skewY("+setUnit(a[c],"deg")+")",delete b[c]),"perspective"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" perspective("+setUnit(a[c],"px")+")",delete b[c])}return b},getProp:function(a){var b=[];for(var c in a)b.indexOf(c)<0&&b.push(uncamel(c));return b.join(",")},animate:function(a,b,c,d,e){return this.each(function(){function o(){f.called=!0,f.CSSAIsRunning=!1,g.off(jQuery.CSS.transitionEnd+"."+f.id),clearTimeout(f.timeout),g.css(jQuery.CSS.sfx+"transition",""),"function"==typeof e&&e.apply(f),"function"==typeof f.CSSqueue&&(f.CSSqueue(),f.CSSqueue=null)}var f=this,g=jQuery(this);f.id=f.id||"CSSA_"+(new Date).getTime();var h=h||{type:"noEvent"};if(f.CSSAIsRunning&&f.eventType==h.type&&!jQuery.browser.msie&&jQuery.browser.version<=9)return f.CSSqueue=function(){g.CSSAnimate(a,b,c,d,e)},void 0;if(f.CSSqueue=null,f.eventType=h.type,0!==g.length&&a){if(a=jQuery.normalizeCss(a),f.CSSAIsRunning=!0,"function"==typeof b&&(e=b,b=jQuery.fx.speeds._default),"function"==typeof c&&(d=c,c=0),"string"==typeof c&&(e=c,c=0),"function"==typeof d&&(e=d,d="cubic-bezier(0.65,0.03,0.36,0.72)"),"string"==typeof b)for(var i in jQuery.fx.speeds){if(b==i){b=jQuery.fx.speeds[i];break}b=jQuery.fx.speeds._default}if(b||(b=jQuery.fx.speeds._default),"string"==typeof e&&(d=e,e=null),!jQuery.support.CSStransition){for(var j in a){if("transform"===j&&delete a[j],"filter"===j&&delete a[j],"transform-origin"===j&&delete a[j],"auto"===a[j]&&delete a[j],"x"===j){var k=a[j],l="left";a[l]=k,delete a[j]}if("y"===j){var k=a[j],l="top";a[l]=k,delete a[j]}("-ms-transform"===j||"-ms-filter"===j)&&delete a[j]}return g.delay(c).animate(a,b,e),void 0}var m={"default":"ease","in":"ease-in",out:"ease-out","in-out":"ease-in-out",snap:"cubic-bezier(0,1,.5,1)",easeOutCubic:"cubic-bezier(.215,.61,.355,1)",easeInOutCubic:"cubic-bezier(.645,.045,.355,1)",easeInCirc:"cubic-bezier(.6,.04,.98,.335)",easeOutCirc:"cubic-bezier(.075,.82,.165,1)",easeInOutCirc:"cubic-bezier(.785,.135,.15,.86)",easeInExpo:"cubic-bezier(.95,.05,.795,.035)",easeOutExpo:"cubic-bezier(.19,1,.22,1)",easeInOutExpo:"cubic-bezier(1,0,0,1)",easeInQuad:"cubic-bezier(.55,.085,.68,.53)",easeOutQuad:"cubic-bezier(.25,.46,.45,.94)",easeInOutQuad:"cubic-bezier(.455,.03,.515,.955)",easeInQuart:"cubic-bezier(.895,.03,.685,.22)",easeOutQuart:"cubic-bezier(.165,.84,.44,1)",easeInOutQuart:"cubic-bezier(.77,0,.175,1)",easeInQuint:"cubic-bezier(.755,.05,.855,.06)",easeOutQuint:"cubic-bezier(.23,1,.32,1)",easeInOutQuint:"cubic-bezier(.86,0,.07,1)",easeInSine:"cubic-bezier(.47,0,.745,.715)",easeOutSine:"cubic-bezier(.39,.575,.565,1)",easeInOutSine:"cubic-bezier(.445,.05,.55,.95)",easeInBack:"cubic-bezier(.6,-.28,.735,.045)",easeOutBack:"cubic-bezier(.175, .885,.32,1.275)",easeInOutBack:"cubic-bezier(.68,-.55,.265,1.55)"};m[d]&&(d=m[d]),g.off(jQuery.CSS.transitionEnd+"."+f.id);var n=jQuery.CSS.getProp(a),p={};jQuery.extend(p,a),p[jQuery.CSS.sfx+"transition-property"]=n,p[jQuery.CSS.sfx+"transition-duration"]=b+"ms",p[jQuery.CSS.sfx+"transition-delay"]=c+"ms",p[jQuery.CSS.sfx+"transition-timing-function"]=d,setTimeout(function(){g.one(jQuery.CSS.transitionEnd+"."+f.id,o),g.css(p)},1),f.timeout=setTimeout(function(){return f.called||!e?(f.called=!1,f.CSSAIsRunning=!1,void 0):(g.css(jQuery.CSS.sfx+"transition",""),e.apply(f),f.CSSAIsRunning=!1,"function"==typeof f.CSSqueue&&(f.CSSqueue(),f.CSSqueue=null),void 0)},b+c+10)}})}},jQuery.fn.CSSAnimate=jQuery.CSS.animate,jQuery.normalizeCss=jQuery.CSS.normalizeCss,jQuery.fn.css3=function(a){return this.each(function(){var b=jQuery(this),c=jQuery.normalizeCss(a);b.css(c)})}; -;/* - * ****************************************************************************** - * jquery.mb.components - * file: jquery.mb.browser.min.js - * - * Copyright (c) 2001-2014. Matteo Bicocchi (Pupunzi); - * Open lab srl, Firenze - Italy - * email: matteo@open-lab.com - * site: http://pupunzi.com - * blog: http://pupunzi.open-lab.com - * http://open-lab.com - * - * Licences: MIT, GPL - * http://www.opensource.org/licenses/mit-license.php - * http://www.gnu.org/licenses/gpl.html - * - * last modified: 26/03/14 21.43 - * ***************************************************************************** - */ - -var nAgt=navigator.userAgent;if(!jQuery.browser){jQuery.browser={},jQuery.browser.mozilla=!1,jQuery.browser.webkit=!1,jQuery.browser.opera=!1,jQuery.browser.safari=!1,jQuery.browser.chrome=!1,jQuery.browser.msie=!1,jQuery.browser.ua=nAgt,jQuery.browser.name=navigator.appName,jQuery.browser.fullVersion=""+parseFloat(navigator.appVersion),jQuery.browser.majorVersion=parseInt(navigator.appVersion,10);var nameOffset,verOffset,ix;if(-1!=(verOffset=nAgt.indexOf("Opera")))jQuery.browser.opera=!0,jQuery.browser.name="Opera",jQuery.browser.fullVersion=nAgt.substring(verOffset+6),-1!=(verOffset=nAgt.indexOf("Version"))&&(jQuery.browser.fullVersion=nAgt.substring(verOffset+8));else if(-1!=(verOffset=nAgt.indexOf("OPR")))jQuery.browser.opera=!0,jQuery.browser.name="Opera",jQuery.browser.fullVersion=nAgt.substring(verOffset+4);else if(-1!=(verOffset=nAgt.indexOf("MSIE")))jQuery.browser.msie=!0,jQuery.browser.name="Microsoft Internet Explorer",jQuery.browser.fullVersion=nAgt.substring(verOffset+5);else if(-1!=nAgt.indexOf("Trident")){jQuery.browser.msie=!0,jQuery.browser.name="Microsoft Internet Explorer";var start=nAgt.indexOf("rv:")+3,end=start+4;jQuery.browser.fullVersion=nAgt.substring(start,end)}else-1!=(verOffset=nAgt.indexOf("Chrome"))?(jQuery.browser.webkit=!0,jQuery.browser.chrome=!0,jQuery.browser.name="Chrome",jQuery.browser.fullVersion=nAgt.substring(verOffset+7)):-1!=(verOffset=nAgt.indexOf("Safari"))?(jQuery.browser.webkit=!0,jQuery.browser.safari=!0,jQuery.browser.name="Safari",jQuery.browser.fullVersion=nAgt.substring(verOffset+7),-1!=(verOffset=nAgt.indexOf("Version"))&&(jQuery.browser.fullVersion=nAgt.substring(verOffset+8))):-1!=(verOffset=nAgt.indexOf("AppleWebkit"))?(jQuery.browser.webkit=!0,jQuery.browser.name="Safari",jQuery.browser.fullVersion=nAgt.substring(verOffset+7),-1!=(verOffset=nAgt.indexOf("Version"))&&(jQuery.browser.fullVersion=nAgt.substring(verOffset+8))):-1!=(verOffset=nAgt.indexOf("Firefox"))?(jQuery.browser.mozilla=!0,jQuery.browser.name="Firefox",jQuery.browser.fullVersion=nAgt.substring(verOffset+8)):(nameOffset=nAgt.lastIndexOf(" ")+1)<(verOffset=nAgt.lastIndexOf("/"))&&(jQuery.browser.name=nAgt.substring(nameOffset,verOffset),jQuery.browser.fullVersion=nAgt.substring(verOffset+1),jQuery.browser.name.toLowerCase()==jQuery.browser.name.toUpperCase()&&(jQuery.browser.name=navigator.appName));-1!=(ix=jQuery.browser.fullVersion.indexOf(";"))&&(jQuery.browser.fullVersion=jQuery.browser.fullVersion.substring(0,ix)),-1!=(ix=jQuery.browser.fullVersion.indexOf(" "))&&(jQuery.browser.fullVersion=jQuery.browser.fullVersion.substring(0,ix)),jQuery.browser.majorVersion=parseInt(""+jQuery.browser.fullVersion,10),isNaN(jQuery.browser.majorVersion)&&(jQuery.browser.fullVersion=""+parseFloat(navigator.appVersion),jQuery.browser.majorVersion=parseInt(navigator.appVersion,10)),jQuery.browser.version=jQuery.browser.majorVersion}jQuery.browser.android=/Android/i.test(nAgt),jQuery.browser.blackberry=/BlackBerry|BB|PlayBook/i.test(nAgt),jQuery.browser.ios=/iPhone|iPad|iPod|webOS/i.test(nAgt),jQuery.browser.operaMobile=/Opera Mini/i.test(nAgt),jQuery.browser.windowsMobile=/IEMobile|Windows Phone/i.test(nAgt),jQuery.browser.kindle=/Kindle|Silk/i.test(nAgt),jQuery.browser.mobile=jQuery.browser.android||jQuery.browser.blackberry||jQuery.browser.ios||jQuery.browser.windowsMobile||jQuery.browser.operaMobile||jQuery.browser.kindle,jQuery.isMobile=jQuery.browser.mobile,jQuery.isTablet=jQuery.browser.mobile&&jQuery(window).width()>765,jQuery.isAndroidDefault=jQuery.browser.android&&!/chrome/i.test(nAgt); -;/*___________________________________________________________________________________________________________________________________________________ - _ jquery.mb.components _ - _ _ - _ file: jquery.mb.simpleSlider.min.js _ - _ last modified: 16/05/15 23.45 _ - _ _ - _ Open Lab s.r.l., Florence - Italy _ - _ _ - _ email: matteo@open-lab.com _ - _ site: http://pupunzi.com _ - _ http://open-lab.com _ - _ blog: http://pupunzi.open-lab.com _ - _ Q&A: http://jquery.pupunzi.com _ - _ _ - _ Licences: MIT, GPL _ - _ http://www.opensource.org/licenses/mit-license.php _ - _ http://www.gnu.org/licenses/gpl.html _ - _ _ - _ Copyright (c) 2001-2015. Matteo Bicocchi (Pupunzi); _ - ___________________________________________________________________________________________________________________________________________________*/ - -!function(a){/iphone|ipod|ipad|android|ie|blackberry|fennec/.test(navigator.userAgent.toLowerCase());var c="ontouchstart"in window||window.navigator&&window.navigator.msPointerEnabled&&window.MSGesture||window.DocumentTouch&&document instanceof DocumentTouch||!1;a.simpleSlider={defaults:{initialval:0,scale:100,orientation:"h",readonly:!1,callback:!1},events:{start:c?"touchstart":"mousedown",end:c?"touchend":"mouseup",move:c?"touchmove":"mousemove"},init:function(b){return this.each(function(){var d=this,e=a(d);e.addClass("simpleSlider"),d.opt={},a.extend(d.opt,a.simpleSlider.defaults,b),a.extend(d.opt,e.data());var f="h"==d.opt.orientation?"horizontal":"vertical",g=a("
      ").addClass("level").addClass(f);e.prepend(g),d.level=g,e.css({cursor:"default"}),"auto"==d.opt.scale&&(d.opt.scale=a(d).outerWidth()),e.updateSliderVal(),d.opt.readonly||(e.on(a.simpleSlider.events.start,function(a){c&&(a=a.changedTouches[0]),d.canSlide=!0,e.updateSliderVal(a),e.css({cursor:"col-resize"}),a.preventDefault(),a.stopPropagation()}),a(document).on(a.simpleSlider.events.move,function(b){c&&(b=b.changedTouches[0]),d.canSlide&&(a(document).css({cursor:"default"}),e.updateSliderVal(b),b.preventDefault(),b.stopPropagation())}).on(a.simpleSlider.events.end,function(){a(document).css({cursor:"auto"}),d.canSlide=!1,e.css({cursor:"auto"})}))})},updateSliderVal:function(b){function g(a,b){return Math.floor(100*a/b)}var c=this,d=c.get(0);d.opt.initialval="number"==typeof d.opt.initialval?d.opt.initialval:d.opt.initialval(d);var e=a(d).outerWidth(),f=a(d).outerHeight();d.x="object"==typeof b?b.clientX+document.body.scrollLeft-c.offset().left:"number"==typeof b?b*e/d.opt.scale:d.opt.initialval*e/d.opt.scale,d.y="object"==typeof b?b.clientY+document.body.scrollTop-c.offset().top:"number"==typeof b?(d.opt.scale-d.opt.initialval-b)*f/d.opt.scale:d.opt.initialval*f/d.opt.scale,d.y=c.outerHeight()-d.y,d.scaleX=d.x*d.opt.scale/e,d.scaleY=d.y*d.opt.scale/f,d.outOfRangeX=d.scaleX>d.opt.scale?d.scaleX-d.opt.scale:d.scaleX<0?d.scaleX:0,d.outOfRangeY=d.scaleY>d.opt.scale?d.scaleY-d.opt.scale:d.scaleY<0?d.scaleY:0,d.outOfRange="h"==d.opt.orientation?d.outOfRangeX:d.outOfRangeY,d.value="undefined"!=typeof b?"h"==d.opt.orientation?d.x>=c.outerWidth()?d.opt.scale:d.x<=0?0:d.scaleX:d.y>=c.outerHeight()?d.opt.scale:d.y<=0?0:d.scaleY:"h"==d.opt.orientation?d.scaleX:d.scaleY,"h"==d.opt.orientation?d.level.width(g(d.x,e)+"%"):d.level.height(g(d.y,f)),"function"==typeof d.opt.callback&&d.opt.callback(d)}},a.fn.simpleSlider=a.simpleSlider.init,a.fn.updateSliderVal=a.simpleSlider.updateSliderVal}(jQuery); -;/*___________________________________________________________________________________________________________________________________________________ - _ jquery.mb.components _ - _ _ - _ file: jquery.mb.storage.min.js _ - _ last modified: 24/05/15 16.08 _ - _ _ - _ Open Lab s.r.l., Florence - Italy _ - _ _ - _ email: matteo@open-lab.com _ - _ site: http://pupunzi.com _ - _ http://open-lab.com _ - _ blog: http://pupunzi.open-lab.com _ - _ Q&A: http://jquery.pupunzi.com _ - _ _ - _ Licences: MIT, GPL _ - _ http://www.opensource.org/licenses/mit-license.php _ - _ http://www.gnu.org/licenses/gpl.html _ - _ _ - _ Copyright (c) 2001-2015. Matteo Bicocchi (Pupunzi); _ - ___________________________________________________________________________________________________________________________________________________*/ - -!function(a){a.mbCookie={set:function(a,b,c,d){b=JSON.stringify(b),c||(c=7),d=d?"; domain="+d:"";var f,e=new Date;e.setTime(e.getTime()+1e3*60*60*24*c),f="; expires="+e.toGMTString(),document.cookie=a+"="+b+f+"; path=/"+d},get:function(a){for(var b=a+"=",c=document.cookie.split(";"),d=0;d 0) { - self.$overlay.data('$optionsSection').find(".createSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".btn-showSlide").removeClass("hide"); - } else { - self.$overlay.data('$optionsSection').find(".createSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".btn-showSlide").addClass("hide"); - } - }, 100); - }, - - add_btn_edit_slide: function () { - var self = this; - self.$overlay.data('$optionsSection').append(' Edit Slide '); - self.$overlay.data('$optionsSection').on('click', '.btn-showSlide', _.bind(this.toggle_slide, this)); - }, - - create_slide: function (previewMode, value, $li) { - var self = this, - slide = '

      Your new slide

      '; - self.$target.append(slide); - self.$overlay.data('$optionsSection').find(".btn-showSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".createSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").removeClass("hide"); - }, - - delete_slide: function (previewMode, value, $li) { - var self = this; - self.$target.find(".slide").remove(); - self.$overlay.data('$optionsSection').find(".btn-showSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".createSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").addClass("hide"); - }, - - toggle_slide: function () { - var a = this.$overlay.data('$optionsSection').find(".btn-showSlide"), - i = a.find("i"), - t = this.$target, - s = t.find(".slide"); - if (!t.hasClass("showSlide")) { - t.addClass("showSlide"); i.addClass("fa-toggle-on").removeClass("fa-toggle-off"); i.css("color", "#FFF"); - s.addClass("visible"); - } else { - t.removeClass("showSlide"); i.removeClass("fa-toggle-on").addClass("fa-toggle-off"); i.css("color", ""); - s.removeClass("visible"); - } - }, - onFocus: function () { - this._adapt_items_height(); - }, - onBlur: function () { - this._adapt_items_height(); - }, - cleanForSave: function() { - this.$target.removeClass("showSlide") - .find(".slide").removeClass("visible"); - - this._adapt_items_height(); - }, - _adapt_items_height: function () { - var $items = this.$target.closest(".s_animated_boxes").find(".item"); - var min_height = _.reduce($items.find(".v-align"), function (memo, item) { - return Math.max(memo, $(item).outerHeight(true) + 40); - }, 200); - $items.css("height", min_height); - }, - }); -}); diff --git a/theme_bistro/theme_common/static/src/js/s_animated_boxes_frontend.js b/theme_bistro/theme_common/static/src/js/s_animated_boxes_frontend.js deleted file mode 100644 index ec39eab..0000000 --- a/theme_bistro/theme_common/static/src/js/s_animated_boxes_frontend.js +++ /dev/null @@ -1,15 +0,0 @@ -odoo.define('theme_common.s_animated_boxes_frontend', function (require) { - 'use strict'; - -var publicWidget = require('web.public.widget'); - -/** - * This is a fix for some apple devices. - * The slide of animated boxes widget is shown on hover or click on mobile - * devices, but iOS only activates :hover if the element targeted is - * clickable. - */ -publicWidget.registry._fixAnimatedBoxesAppleClick = publicWidget.registry._fixAppleCollapse.extend({ - selector: '.s_animated_boxes .item', -}); -}); diff --git a/theme_bistro/theme_common/static/src/js/s_css_slider_editor.js b/theme_bistro/theme_common/static/src/js/s_css_slider_editor.js deleted file mode 100644 index 78d7861..0000000 --- a/theme_bistro/theme_common/static/src/js/s_css_slider_editor.js +++ /dev/null @@ -1,82 +0,0 @@ -odoo.define('theme_common.s_css_slider_editor', function (require) { - 'use strict'; - - var s_options = require('web_editor.snippets.options'); - - s_options.registry.s_css_slider_slide = s_options.Class.extend({ - newSlideUrl: "/web/image/theme_common.image_content_23", - - start: function () { - var self = this; - - self.reset(); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - - setTimeout(function () { - self.$overlay.data('$optionsSection').find(".js_s_css_slider_addSlide").on('click', function () { self.addSlide(); }); - self.$overlay.data('$optionsSection').find(".js_s_css_slider_removeSlide").on('click', function () { self.removeSlide(); }); - }, 100); - - $(document.body).on("media-saved", function () { - self.resizeImgsEditor(); - }); - }, - - resizeImgsEditor: function () { - var self = this; - setTimeout(function () { - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }); - }, - - reset: function () { - var self= this; - self.$target.find(".s_css_slider_pagination").remove().end() - .find("span").unbind("click.s_css"); - }, - - addSlide: function () { - var self = this; - var $currentSlide = self.$target.find(".slider .slide.selected"); - $currentSlide.clone().insertAfter($currentSlide).removeClass("selected"); - - _.defer(function () { - self.reset(); - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }); - }, - - removeSlide: function () { - var self = this; - var $currentSlide = self.$target.find(".slider .slide.selected"); - - $currentSlide.remove(); - _.defer(function () { - self.reset(); - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }); - }, - - cleanForSave: function () { - var self = this; - self.$target - .find(".s_css_slider_pagination").remove().end() - .find(".navigation .prev").addClass("inactive").end() - .find(".navigation .next").removeClass("inactive").end() - .find(".slider .slide").removeClass("selected move-left").end() - .find(".slider .slide").first().addClass("selected"); - }, - }); -}); diff --git a/theme_bistro/theme_common/static/src/js/s_css_slider_frontend.js b/theme_bistro/theme_common/static/src/js/s_css_slider_frontend.js deleted file mode 100644 index 99d225c..0000000 --- a/theme_bistro/theme_common/static/src/js/s_css_slider_frontend.js +++ /dev/null @@ -1,122 +0,0 @@ -odoo.define('theme_common.s_css_slider_frontend', function (require) { - 'use strict'; - - var publicWidget = require('web.public.widget'); - - publicWidget.registry.s_css_slider = publicWidget.Widget.extend({ - selector: ".s_css_slider", - disabledInEditableMode: false, - - start: function () { - var self = this; - var $container = self.$target; - $container.find(".s_css_slider_pagination").remove(); - // create slider pagination - var sliderPagination = self.createSliderPagination($container); - self.bindEvents($container, sliderPagination); - $(window).on("resize", function () { - self.resizeImgs($container); - }).trigger("resize"); - return this._super.apply(this, arguments); - }, - - bindEvents: function ($container, sliderPagination) { - var self = this, - $next_btn = $container.find('.next'), - $prev_btn = $container.find('.prev'); - - $next_btn.on('click.s_css', function (e) { - self.nextSlide($container, sliderPagination); - }); - - $prev_btn.on('click.s_css', function (e) { - self.prevSlide($container, sliderPagination); - }); - - if ($container.hasClass("autoplay") && this.editableMode !== true) { - var interval; - var autoplay = function () { - interval = setInterval(function () { - if (!$next_btn.hasClass("inactive")) { - self.nextSlide($container, sliderPagination); - } else { - self.prevSlide($container, sliderPagination, 0); - } - }, 3000); - }; - autoplay(); - $container.hover(function () { clearInterval(interval); }); - $container.mouseleave(function () { autoplay(); }); - } - - sliderPagination.on('click.s_css', function () { - var selectedDot = $(this); - if (!selectedDot.hasClass('selected')) { - var selectedPosition = selectedDot.index(), - activePosition = $container.find('.slider .selected').index(); - if ( activePosition < selectedPosition) { - self.nextSlide($container, sliderPagination, selectedPosition); - } else { - self.prevSlide($container, sliderPagination, selectedPosition); - } - } - }); - }, - - resizeImgs: function ($container) { - var cont_h = $container.height(), - imgs = $container.find(".slide img"); - - imgs.each(function () { - var $img = $(this), - img_h = $img.height(); - if (img_h > cont_h) { - $img.css("width", "100%"); - $img.css("margin-top", (cont_h - img_h)/2); - } - }); - }, - - createSliderPagination: function ($container) { - var wrapper = $('
        ').insertAfter($container.find('.navigation')); - $container.find('.slider .slide').each(function (index) { - var dotWrapper = (index === 0) ? $('
      • ') : $('
      • '), - dot = $('').appendTo(dotWrapper); - dotWrapper.appendTo(wrapper); - dot.text(index+1); - }); - return wrapper.children('li'); - }, - - nextSlide: function ($container, $pagination, $n) { - var self = this, - visibleSlide = $container.find('.slider .selected'), - navigationDot = $container.find('.s_css_slider_pagination .selected'); - - if (typeof $n === 'undefined') $n = visibleSlide.index() + 1; - visibleSlide.removeClass('selected'); - $container.find('.slider .slide').eq($n).addClass('selected').prevAll().addClass('move-left'); - navigationDot.removeClass('selected'); - $pagination.eq($n).addClass('selected'); - self.updateNavigation($container, $container.find('.slider .slide').eq($n)); - }, - - prevSlide: function ($container, $pagination, $n) { - var self = this, - visibleSlide = $container.find('.slider .selected'), - navigationDot = $container.find('.s_css_slider_pagination .selected'); - - if (typeof $n === 'undefined') $n = visibleSlide.index() - 1; - visibleSlide.removeClass('selected'); - $container.find('.slider .slide').eq($n).addClass('selected').removeClass('move-left').nextAll().removeClass('move-left'); - navigationDot.removeClass('selected'); - $pagination.eq($n).addClass('selected'); - self.updateNavigation($container, $container.find('.slider .slide').eq($n)); - }, - - updateNavigation: function ($container, $active) { - $container.find('.prev').toggleClass('inactive', $active.is(':first-child')); - $container.find('.next').toggleClass('inactive', $active.is(':last-child')); - }, - }); -}); diff --git a/theme_bistro/theme_common/static/src/js/s_google_map_editor.js b/theme_bistro/theme_common/static/src/js/s_google_map_editor.js deleted file mode 100644 index 9a5b4d7..0000000 --- a/theme_bistro/theme_common/static/src/js/s_google_map_editor.js +++ /dev/null @@ -1,149 +0,0 @@ -odoo.define('theme_common.s_google_map_editor', function (require) { -'use strict'; - -var Dialog = require('web_editor.widget').Dialog; -var core = require('web.core'); -var sOptions = require('web_editor.snippets.options'); -var googleScriptLoaded = require('theme_common.s_google_map_frontend').googleScriptLoaded; - -var _t = core._t; - -sOptions.registry.map = sOptions.Class.extend({ - xmlDependencies: ['/theme_common/static/src/xml/s_google_map_modal.xml'], - defaultLocation: '(50.854975,4.3753899)', - - /** - * @override - */ - onBuilt: function () { - this._super.apply(this, arguments); - this.map('click', null, null); - }, - - //-------------------------------------------------------------------------- - // Options - //-------------------------------------------------------------------------- - - /** - * Opens the customization dialog. - * - * @see this.selectClass for parameters - */ - map: function (previewMode, value, $opt) { - var self = this; - - this.dialog = new Dialog(this, { - size: 'medium', - title: _t("Customize your map"), - buttons: [ - {text: _t("Save"), classes: 'btn-primary', close: true, click: function () { - if (!this.$('#placeBk').val()) { - this.$('#placeBk').val(self.defaultLocation); - } - self.$target.attr({ - 'data-map-gps': this.$('#placeBk').val(), - 'data-pin-style': this.$('#pin_style').val(), - 'data-pin-address': this.$('#pin_address').val(), - }); - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }}, - {text: _t("Cancel"), close: true} - ], - $content: $(core.qweb.render('theme_common.s_google_map_modal')) - }); - - this.dialog.opened().then((function () { - this.$('#pin_address').val(self.$target.attr('data-pin-address')); - this.$('#pin_style').val(self.$target.attr('data-pin-style')); - this.$('#placeBk').val(self.$target.attr('data-map-gps')); - var autocomplete = new google.maps.places.Autocomplete(this.$('#pin_address').get(0), {types: ['geocode']}); - google.maps.event.addListener(autocomplete, 'place_changed', function () { - var place = autocomplete.getPlace(); - self.dialog.$('#placeBk').val(place.geometry ? place.geometry.location : self.defaultLocation); - }); - }).bind(this.dialog)); - - googleScriptLoaded.then(function () { - self.dialog.open(); - }); - }, - /** - * Adapts map's type. - * - * @see this.selectClass for parameters - */ - mapType: function (previewMode, value, $opt) { - this.$target.attr('data-map-type', value); - this.$target.attr('data-map-color', ''); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - /** - * Adapts map's color. - * - * @see this.selectClass for parameters - */ - mapColor: function (previewMode, value, $opt) { - this.$target.attr('data-map-color', value); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - /** - * Adapts map's zoom. - * - * @see this.selectClass for parameters - */ - mapZoom: function (previewMode, value, $opt) { - this.$target.attr('data-map-zoom', value); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - /** - * Adapts map's location. - * - * @see this.selectClass for parameters - */ - mapGps: function (previewMode, value, $opt) { - this.$target.attr('data-map-gps', value); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - - //-------------------------------------------------------------------------- - // Private - //-------------------------------------------------------------------------- - - /** - * @override - */ - _setActive: function () { - this.$el.find('[data-map-type]') - .removeClass('active') - .filter('[data-map-type="' + this.$target.attr('data-map-type') + '"]') - .addClass('active'); - this.$el.find('[data-map-color]') - .removeClass('active') - .filter('[data-map-color="' + this.$target.attr('data-map-color') + '"]') - .addClass('active'); - this.$el.find('[data-map-zoom]') - .removeClass('active') - .filter('[data-map-zoom="' + this.$target.attr('data-map-zoom') + '"]') - .addClass('active'); - this.$el.find('[data-map-gps]') - .removeClass('active') - .filter('[data-map-gps="' + this.$target.attr('data-map-gps') + '"]') - .addClass('active'); - }, -}); -}); diff --git a/theme_bistro/theme_common/static/src/js/s_google_map_frontend.js b/theme_bistro/theme_common/static/src/js/s_google_map_frontend.js deleted file mode 100644 index a22cb5b..0000000 --- a/theme_bistro/theme_common/static/src/js/s_google_map_frontend.js +++ /dev/null @@ -1,144 +0,0 @@ -odoo.define('theme_common.s_google_map_frontend', function (require) { -'use strict'; - -var core = require('web.core'); -var publicWidget = require('web.public.widget'); -var googleScriptLoaded = $.Deferred(); - -var _t = core._t; - -publicWidget.registry.s_google_map = publicWidget.Widget.extend({ - selector: '.s_google_map', - disabledInEditableMode: false, - - /** - * @override - */ - start: function () { - var self = this; - var defs = [this._super.apply(this, arguments)]; - - if (typeof google !== 'object' || typeof google.maps !== 'object') { - if (!publicWidget.registry.s_google_map.isScriptLoading) { - publicWidget.registry.s_google_map.isScriptLoading = true; - window.odoo_s_google_map_redraw_all = function odoo_s_google_map_redraw_all() { - _.each($('section.s_google_map'), function (map) { - self.trigger_up('widgets_start_request', { - editableMode: self.editableMode, - $target: $(map), - }); - }); - publicWidget.registry.s_google_map.isScriptLoading = false; - googleScriptLoaded.resolve(); - }; - - defs.push(this._rpc({ - route: '/theme_common/google_maps_api_key', - }).then(function (data) { - var key_param = ''; - var data_json = JSON.parse(data); - if (data_json.google_maps_api_key !== '') { - key_param = '&key=' + data_json.google_maps_api_key; - } - $('head').append($(' - - - - - diff --git a/theme_bistro/theme_treehouse/views/customize_modal.xml b/theme_bistro/theme_treehouse/views/customize_modal.xml deleted file mode 100644 index 0915674..0000000 --- a/theme_bistro/theme_treehouse/views/customize_modal.xml +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/theme_bistro/theme_treehouse/views/images_content.xml b/theme_bistro/theme_treehouse/views/images_content.xml deleted file mode 100644 index c6c92f4..0000000 --- a/theme_bistro/theme_treehouse/views/images_content.xml +++ /dev/null @@ -1,128 +0,0 @@ - - - - theme_common.image_content_04 - theme_common.image_content_04 - /theme_treehouse/static/src/img/content/text_image.jpg - - - theme_common.image_content_05 - theme_common.image_content_05 - /theme_treehouse/static/src/img/content/big_picture.gif - - - theme_common.image_content_06 - theme_common.image_content_06 - /theme_treehouse/static/src/img/content/image_text.jpg - - - theme_common.image_content_09 - theme_common.image_content_09 - /theme_treehouse/static/src/img/content/profiles_boxes_2.jpg - - - theme_common.image_content_10 - theme_common.image_content_10 - /theme_treehouse/static/src/img/content/author.gif - - - theme_common.image_content_11 - theme_common.image_content_11 - /theme_treehouse/static/src/img/content/profiles_boxes_3.jpg - - - theme_common.image_content_12 - theme_common.image_content_12 - /theme_treehouse/static/src/img/content/logo_bakery.png - - - theme_common.image_content_13 - theme_common.image_content_13 - /theme_treehouse/static/src/img/content/logo_barber.png - - - theme_common.image_content_14 - theme_common.image_content_14 - /theme_treehouse/static/src/img/content/logo_coffee.png - - - theme_common.image_content_15 - theme_common.image_content_15 - /theme_treehouse/static/src/img/content/logo_coffee_ribbon.png - - - theme_common.image_content_16 - theme_common.image_content_16 - /theme_treehouse/static/src/img/content/logo_fish.png - - - theme_common.image_content_17 - theme_common.image_content_17 - /theme_treehouse/static/src/img/content/logo_plane.png - - - theme_common.image_content_18 - theme_common.image_content_18 - /theme_treehouse/static/src/img/content/profiles_boxes_1.jpg - - - theme_common.image_content_19 - theme_common.image_content_19 - /theme_treehouse/static/src/img/content/three_columns_1.jpg - - - theme_common.image_content_20 - theme_common.image_content_20 - /theme_treehouse/static/src/img/content/three_columns_2a.jpg - - - theme_common.image_content_21 - theme_common.image_content_21 - /theme_treehouse/static/src/img/content/three_columns_2b.jpg - - - theme_common.image_content_22 - theme_common.image_content_22 - /theme_treehouse/static/src/img/content/three_columns_2c.jpg - - - theme_common.image_content_23 - theme_common.image_content_23 - /theme_treehouse/static/src/img/content/three_columns_3.jpg - - - theme_common.image_content_24 - theme_common.image_content_24 - /theme_treehouse/static/src/img/backgrounds/01.jpg - - - theme_common.image_content_25 - theme_common.image_content_25 - /theme_treehouse/static/src/img/backgrounds/04.jpg - - - theme_common.image_content_26 - theme_common.image_content_26 - /theme_treehouse/static/src/img/backgrounds/11.jpg - - - theme_common.image_content_27 - theme_common.image_content_27 - /theme_treehouse/static/src/img/backgrounds/13.jpg - - - theme_common.image_content_28 - theme_common.image_content_28 - /theme_treehouse/static/src/img/backgrounds/12.jpg - - - theme_common.image_content_29 - theme_common.image_content_29 - /theme_treehouse/static/src/img/backgrounds/10.jpg - - - theme_common.image_content_30 - theme_common.image_content_30 - /theme_treehouse/static/src/img/backgrounds/16.jpg - - diff --git a/theme_bistro/theme_treehouse/views/images_library.xml b/theme_bistro/theme_treehouse/views/images_library.xml deleted file mode 100644 index cd7b3ad..0000000 --- a/theme_bistro/theme_treehouse/views/images_library.xml +++ /dev/null @@ -1,146 +0,0 @@ - - - - theme_treehouse.bg_img_01 - background_img_01.jpg - /theme_treehouse/static/src/img/backgrounds/01.jpg - - - theme_treehouse.bg_img_02 - background_img_02.jpg - /theme_treehouse/static/src/img/backgrounds/02.jpg - - - theme_treehouse.bg_img_03 - background_img_03.jpg - /theme_treehouse/static/src/img/backgrounds/03.jpg - - - theme_treehouse.bg_img_04 - background_img_04.jpg - /theme_treehouse/static/src/img/backgrounds/04.jpg - - - theme_treehouse.bg_img_05 - background_img_05.jpg - /theme_treehouse/static/src/img/backgrounds/05.jpg - - - theme_treehouse.bg_img_06 - background_img_06.jpg - /theme_treehouse/static/src/img/backgrounds/06.jpg - - - theme_treehouse.bg_img_07 - background_img_07.jpg - /theme_treehouse/static/src/img/backgrounds/07.jpg - - - theme_treehouse.bg_img_08 - background_img_08.jpg - /theme_treehouse/static/src/img/backgrounds/08.jpg - - - theme_treehouse.bg_img_09 - background_img_09.jpg - /theme_treehouse/static/src/img/backgrounds/09.jpg - - - theme_treehouse.bg_img_10 - background_img_10.jpg - /theme_treehouse/static/src/img/backgrounds/10.jpg - - - theme_treehouse.bg_img_11 - background_img_11.jpg - /theme_treehouse/static/src/img/backgrounds/11.jpg - - - theme_treehouse.bg_img_12 - background_img_12.jpg - /theme_treehouse/static/src/img/backgrounds/12.jpg - - - theme_treehouse.bg_img_13 - background_img_13.jpg - /theme_treehouse/static/src/img/backgrounds/13.jpg - - - theme_treehouse.bg_img_14 - background_img_14.jpg - /theme_treehouse/static/src/img/backgrounds/14.jpg - - - theme_treehouse.bg_img_15 - background_img_15.jpg - /theme_treehouse/static/src/img/backgrounds/15.jpg - - - theme_treehouse.bg_img_16 - background_img_16.jpg - /theme_treehouse/static/src/img/backgrounds/16.jpg - - - - theme_treehouse.bg_pattern_01 - background_pattern_01.png - /theme_treehouse/static/src/img/patterns/01.png - - - theme_treehouse.bg_pattern_02 - background_pattern_02.png - /theme_treehouse/static/src/img/patterns/02.png - - - theme_treehouse.bg_pattern_03 - background_pattern_03.png - /theme_treehouse/static/src/img/patterns/03.png - - - theme_treehouse.bg_pattern_04 - background_pattern_04.png - /theme_treehouse/static/src/img/patterns/04.png - - - theme_treehouse.bg_pattern_05 - background_pattern_05.png - /theme_treehouse/static/src/img/patterns/05.png - - - theme_treehouse.bg_pattern_06 - background_pattern_06.png - /theme_treehouse/static/src/img/patterns/06.png - - - theme_treehouse.bg_pattern_07 - background_pattern_07.png - /theme_treehouse/static/src/img/patterns/07.png - - - theme_treehouse.bg_pattern_08 - background_pattern_08.png - /theme_treehouse/static/src/img/patterns/08.png - - - theme_treehouse.bg_pattern_09 - background_pattern_09.png - /theme_treehouse/static/src/img/patterns/09.png - - - - - website.s_cover_default_image - website.s_cover_default_image - /web/image/theme_treehouse.bg_img_15 - - - website.s_text_image_default_image - website.s_text_image_default_image - /web/image/theme_common.image_content_04 - - - website.s_image_text_default_image - website.s_image_text_default_image - /web/image/theme_common.image_content_04 - - diff --git a/theme_bistro/theme_treehouse/views/layout.xml b/theme_bistro/theme_treehouse/views/layout.xml deleted file mode 100644 index b21dcde..0000000 --- a/theme_bistro/theme_treehouse/views/layout.xml +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - diff --git a/theme_bistro/theme_treehouse/views/snippets.xml b/theme_bistro/theme_treehouse/views/snippets.xml deleted file mode 100644 index cf3caf5..0000000 --- a/theme_bistro/theme_treehouse/views/snippets.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - diff --git a/theme_bistro/theme_treehouse/views/snippets/s_panel_extended.xml b/theme_bistro/theme_treehouse/views/snippets/s_panel_extended.xml deleted file mode 100644 index 77ab620..0000000 --- a/theme_bistro/theme_treehouse/views/snippets/s_panel_extended.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - diff --git a/theme_bistro/theme_treehouse/views/snippets/s_share_extended.xml b/theme_bistro/theme_treehouse/views/snippets/s_share_extended.xml deleted file mode 100644 index c550865..0000000 --- a/theme_bistro/theme_treehouse/views/snippets/s_share_extended.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - diff --git a/theme_bistro/theme_treehouse/views/snippets/s_well_extended.xml b/theme_bistro/theme_treehouse/views/snippets/s_well_extended.xml deleted file mode 100644 index ed3d874..0000000 --- a/theme_bistro/theme_treehouse/views/snippets/s_well_extended.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - diff --git a/theme_bistro/theme_treehouse/views/snippets_options.xml b/theme_bistro/theme_treehouse/views/snippets_options.xml deleted file mode 100644 index 0cb54dd..0000000 --- a/theme_bistro/theme_treehouse/views/snippets_options.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - diff --git a/theme_bistro/views/assets.xml b/theme_bistro/views/assets.xml new file mode 100644 index 0000000..a476c2f --- /dev/null +++ b/theme_bistro/views/assets.xml @@ -0,0 +1,18 @@ + + + + + - diff --git a/theme_clean/theme_clean/views/image_content.xml b/theme_clean/theme_clean/views/image_content.xml deleted file mode 100644 index 039e478..0000000 --- a/theme_clean/theme_clean/views/image_content.xml +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - theme_common.image_content_logo_small - image_content_logo_small.png - /theme_clean/static/src/img/content/image_content_logo_small.png - - - - - theme_common.image_content_01 - theme_common.image_content_01 - /theme_clean/static/src/img/content/image_content_01.png - - - theme_common.image_content_02 - theme_common.image_content_02 - /theme_clean/static/src/img/content/image_content_02.png - - - theme_common.image_content_03 - theme_common.image_content_03 - /theme_clean/static/src/img/content/image_content_03.png - - - theme_common.image_content_04 - theme_common.image_content_04 - /theme_clean/static/src/img/content/image_content_04.png - - - theme_common.image_content_05 - theme_common.image_content_05 - /theme_clean/static/src/img/content/image_content_05.png - - - theme_common.image_content_06 - theme_common.image_content_06 - /theme_clean/static/src/img/content/image_content_06.png - - - theme_common.image_content_07 - theme_common.image_content_07 - /theme_clean/static/src/img/content/image_content_07.png - - - theme_common.image_content_09 - theme_common.image_content_09 - /theme_clean/static/src/img/content/image_content_09.jpg - - - theme_common.image_content_08 - theme_common.image_content_08 - /theme_clean/static/src/img/content/image_content_08.png - - - theme_common.image_content_10 - theme_common.image_content_10 - /theme_clean/static/src/img/content/image_content_10.jpg - - - theme_common.image_content_11 - theme_common.image_content_11 - /theme_clean/static/src/img/content/image_content_11.jpg - - - theme_common.image_content_13 - theme_common.image_content_13 - /theme_clean/static/src/img/content/image_content_13.jpg - - - theme_common.image_content_14 - theme_common.image_content_14 - /theme_clean/static/src/img/content/image_content_14.png - - - theme_common.image_content_15 - theme_common.image_content_15 - /theme_clean/static/src/img/content/image_content_15.png - - - theme_common.image_content_16 - theme_common.image_content_16 - /theme_clean/static/src/img/content/image_content_16.png - - - theme_common.image_content_17 - theme_common.image_content_17 - /theme_clean/static/src/img/content/image_content_17.png - - - theme_common.image_content_18 - theme_common.image_content_18 - /theme_clean/static/src/img/content/image_content_18.png - - - - - website.s_cover_default_image - website.s_cover_default_image - /theme_clean/static/src/img/backgrounds/bg_snippet_05.jpg - - - website.s_parallax_slider_default_image - website.s_parallax_slider_default_image - /theme_clean/static/src/img/backgrounds/bg_snippet_01.jpg - - - website.s_banner_default_image - website.s_banner_default_image - /web/image/theme_common.image_content_07 - - diff --git a/theme_clean/theme_clean/views/image_library.xml b/theme_clean/theme_clean/views/image_library.xml deleted file mode 100644 index 33a306a..0000000 --- a/theme_clean/theme_clean/views/image_library.xml +++ /dev/null @@ -1,53 +0,0 @@ - - - - theme_clean.image_bg_clean_pic_blue - theme_clean.image_background_clean_pic_blue - /theme_clean/static/src/img/library/bg_clean_pic_01.jpg - - - theme_clean.image_bg_clean_pic_brown - theme_clean.image_background_clean_pic_brown - /theme_clean/static/src/img/library/bg_clean_pic_02.jpg - - - theme_clean.image_bg_clean_pic_dark - theme_clean.image_background_clean_pic_dark - /theme_clean/static/src/img/library/bg_clean_pic_03.jpg - - - theme_clean.image_bg_clean_pic_gray - theme_clean.image_background_clean_pic_gray - /theme_clean/static/src/img/library/bg_clean_pic_04.jpg - - - theme_clean.image_bg_clean_pic_green - theme_clean.image_background_clean_pic_green - /theme_clean/static/src/img/library/bg_clean_pic_05.jpg - - - theme_clean.image_bg_clean_pic_orange - theme_clean.image_background_clean_pic_orange - /theme_clean/static/src/img/library/bg_clean_pic_06.jpg - - - theme_clean.image_bg_clean_pic_pink - theme_clean.image_background_clean_pic_pink - /theme_clean/static/src/img/library/bg_clean_pic_07.jpg - - - theme_clean.image_bg_clean_pic_purple - theme_clean.image_background_clean_pic_purple - /theme_clean/static/src/img/library/bg_clean_pic_08.jpg - - - theme_clean.image_bg_clean_pic_red - theme_clean.image_background_clean_pic_red - /theme_clean/static/src/img/library/bg_clean_pic_09.jpg - - - theme_clean.image_bg_clean_pic_yellow - theme_clean.image_background_clean_pic_yellow - /theme_clean/static/src/img/library/bg_clean_pic_10.jpg - - diff --git a/theme_clean/theme_clean/views/snippets.xml b/theme_clean/theme_clean/views/snippets.xml deleted file mode 100644 index 4393d14..0000000 --- a/theme_clean/theme_clean/views/snippets.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - diff --git a/theme_clean/theme_clean/views/snippets_options.xml b/theme_clean/theme_clean/views/snippets_options.xml deleted file mode 100644 index c9cdb3d..0000000 --- a/theme_clean/theme_clean/views/snippets_options.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - diff --git a/theme_clean/theme_common/__init__.py b/theme_clean/theme_common/__init__.py deleted file mode 100644 index bb0aae7..0000000 --- a/theme_clean/theme_common/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -# -*- coding: utf-8 -*- -# Part of Odoo. See LICENSE file for full copyright and licensing details. -from . import controllers -from . import models diff --git a/theme_clean/theme_common/__manifest__.py b/theme_clean/theme_common/__manifest__.py deleted file mode 100644 index 650196d..0000000 --- a/theme_clean/theme_common/__manifest__.py +++ /dev/null @@ -1,72 +0,0 @@ -{ - 'name': 'Theme Common', - 'summary': 'Snippets Library', - 'description': 'Snippets library containing snippets to be styled in themes.', - 'category': 'Hidden', - 'version': '1.1', - 'depends': ['website', 'website_theme_install'], - 'data': [ - 'data/data.xml', - 'data/image_content.xml', - 'views/assets.xml', - 'views/theme_common_templates.xml', - 'views/s_google_map.xml', - # CLEAN - 'views/s_big_image.xml', - 'views/s_big_image_parallax.xml', - 'views/s_color_blocks_2.xml', - 'views/s_color_blocks_4.xml', - 'views/s_column.xml', - 'views/s_discount.xml', - 'views/s_event_list.xml', - 'views/s_icon_box.xml', - 'views/s_pricing.xml', - 'views/s_progress_bar.xml', - 'views/s_profile.xml', - 'views/s_text_highlight.xml', - 'views/s_three_columns_circle.xml', - 'views/s_two_columns.xml', - # ENARK - 'views/s_big_icons.xml', - # BEWISE - 'views/s_mini_nav_bar.xml', - 'views/s_separator_nav.xml', - 'views/s_color_blocks_img.xml', - # ZAP - 'views/s_badge.xml', - 'views/s_images_carousel.xml', - 'views/s_images_row.xml', - 'views/s_media_list.xml', - 'views/s_news_carousel.xml', - 'views/s_numbers.xml', - 'views/s_page_header.xml', - 'views/s_process_steps.xml', - 'views/s_team_profiles.xml', - 'views/s_blockquote.xml', - 'views/s_timeline.xml', - # KIDDO - 'views/s_banner_parallax.xml', - 'views/s_features_carousel.xml', - 'views/s_header_text_big_picture.xml', - 'views/s_product_list.xml', - 'views/s_text_picture_text.xml', - 'views/s_products_carousel.xml', - # ANELUSIA - 'views/s_progress.xml', - 'views/s_menu_three_columns.xml', - # GRAPHENE - 'views/s_animated_boxes.xml', - 'views/s_showcase.xml', - 'views/s_showcase_slider.xml', - 'views/s_masonry_block.xml', - # AVANTGARDE - 'views/s_css_slider.xml', - 'views/s_showcase_image.xml', - 'views/s_clonable_boxes.xml', - # MONGLIA - 'views/s_full_menu.xml', - 'views/s_compact_menu.xml', - 'views/s_event_slide.xml', - ], - 'application': False, -} diff --git a/theme_clean/theme_common/controllers/__init__.py b/theme_clean/theme_common/controllers/__init__.py deleted file mode 100644 index 12a7e52..0000000 --- a/theme_clean/theme_common/controllers/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from . import main diff --git a/theme_clean/theme_common/controllers/main.py b/theme_clean/theme_common/controllers/main.py deleted file mode 100644 index 2f16356..0000000 --- a/theme_clean/theme_common/controllers/main.py +++ /dev/null @@ -1,15 +0,0 @@ -# -*- coding: utf-8 -*- -# Part of Odoo. See LICENSE file for full copyright and licensing details. - -import json - -from odoo import http -from odoo.http import request - -class ThemeCommon(http.Controller): - - @http.route('/theme_common/google_maps_api_key', type='json', auth='public', website=True) - def google_maps_api_key(self): - return json.dumps({ - 'google_maps_api_key': request.website.google_maps_api_key or '' - }) diff --git a/theme_clean/theme_common/data/data.xml b/theme_clean/theme_common/data/data.xml deleted file mode 100644 index 1d88569..0000000 --- a/theme_clean/theme_common/data/data.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/theme_clean/theme_common/data/image_content.xml b/theme_clean/theme_common/data/image_content.xml deleted file mode 100644 index 4f17464..0000000 --- a/theme_clean/theme_common/data/image_content.xml +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - theme_common.image_content_logo_small - theme_common.image_content_logo_small - - - - - theme_common.image_content_01 - theme_common.image_content_01 - - - theme_common.image_content_02 - theme_common.image_content_02 - - - theme_common.image_content_03 - theme_common.image_content_03 - - - theme_common.image_content_04 - theme_common.image_content_04 - - - theme_common.image_content_05 - theme_common.image_content_05 - - - theme_common.image_content_06 - theme_common.image_content_06 - - - theme_common.image_content_07 - theme_common.image_content_07 - - - theme_common.image_content_08 - theme_common.image_content_08 - - - theme_common.image_content_09 - theme_common.image_content_09 - - - theme_common.image_content_10 - theme_common.image_content_10 - - - theme_common.image_content_11 - theme_common.image_content_11 - - - theme_common.image_content_12 - theme_common.image_content_12 - - - theme_common.image_content_13 - theme_common.image_content_13 - - - theme_common.image_content_14 - theme_common.image_content_14 - - - theme_common.image_content_15 - theme_common.image_content_15 - - - theme_common.image_content_16 - theme_common.image_content_16 - - - theme_common.image_content_17 - theme_common.image_content_17 - - - theme_common.image_content_18 - theme_common.image_content_18 - - - theme_common.image_content_19 - theme_common.image_content_19 - - - theme_common.image_content_20 - theme_common.image_content_20 - - - theme_common.image_content_21 - theme_common.image_content_21 - - - theme_common.image_content_22 - theme_common.image_content_22 - - - theme_common.image_content_23 - theme_common.image_content_23 - - - theme_common.image_content_24 - theme_common.image_content_24 - - - theme_common.image_content_25 - theme_common.image_content_25 - - - theme_common.image_content_26 - theme_common.image_content_26 - - - theme_common.image_content_27 - theme_common.image_content_27 - - - theme_common.image_content_28 - theme_common.image_content_28 - - - theme_common.image_content_29 - theme_common.image_content_29 - - - theme_common.image_content_30 - theme_common.image_content_30 - - - - - theme_common.image_product_01 - theme_common.image_product_01 - - - theme_common.image_product_02 - theme_common.image_product_02 - - - theme_common.image_product_03 - theme_common.image_product_03 - - - theme_common.image_product_04 - theme_common.image_product_04 - - - theme_common.image_product_05 - theme_common.image_product_05 - - - theme_common.image_product_06 - theme_common.image_product_06 - - - theme_common.image_product_07 - theme_common.image_product_07 - - - theme_common.image_product_08 - theme_common.image_product_08 - - - theme_common.image_product_09 - theme_common.image_product_09 - - - theme_common.image_product_10 - theme_common.image_product_10 - - - theme_common.image_product_11 - theme_common.image_product_11 - - diff --git a/theme_clean/theme_common/i18n/de.po b/theme_clean/theme_common/i18n/de.po deleted file mode 100644 index 441a914..0000000 --- a/theme_clean/theme_common/i18n/de.po +++ /dev/null @@ -1,2157 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * theme_common -# -# Translators: -# Felix Schubert , 2019 -# Katharina Moritz , 2019 -# Niki Waibel, 2019 -# Jan Meyer, 2019 -# e2f , 2019 -# Martin Trigaux, 2019 -# Ermin Trevisan , 2019 -# Luc Muller , 2019 -# Marco Tarsia , 2019 -# Rudolf Schnapka , 2019 -# Leon Grill , 2019 -# Chris Egal , 2019 -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 12.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-24 09:00+0000\n" -"PO-Revision-Date: 2019-04-24 11:21+0000\n" -"Last-Translator: Chris Egal , 2019\n" -"Language-Team: German (https://www.transifex.com/odoo/teams/41243/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$15/mo" -msgstr "$15 mtl." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$29/mo" -msgstr "$29 mtl." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$69/mo" -msgstr "$69 mtl." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$99/mo" -msgstr "$99 mtl." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- ART DIRECTOR -" -msgstr "- ART DIRECTOR -" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- PARTNER -" -msgstr "- PARTNER -" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- TRAINEE -" -msgstr "- PRAKTIKANT -" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "-50% OFF" -msgstr "-50% RABATT" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "...and switch the timeline contents to fit your needs." -msgstr "...und wechseln Sie den Inhalt der Zeitachse nach Ihren Bedürfnissen." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 03-11-2014 ///" -msgstr "/// 03-11-2014 ///" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 08-11-2014 ///" -msgstr "/// 08-11-2014 ///" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 22-10-2014 ///" -msgstr "/// 22-10-2014 ///" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 28-10-2014 ///" -msgstr "/// 28-10-2014 ///" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "02" -msgstr "02" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "05" -msgstr "05" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "1000 Apps" -msgstr "1000 Apps" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "12:00 AM" -msgstr "12:00" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "18" -msgstr "18" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "20.000 Users" -msgstr "20.000 Benutzer" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "2014" -msgstr "2014" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "21" -msgstr "21" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "234 Clients" -msgstr "234 Kunden" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "25%" -msgstr "25%" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "30 Countries" -msgstr "30 Länder" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "30%" -msgstr "30%" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "50$" -msgstr "50$" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "75 Partners" -msgstr "75 Partner" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Page Title" -msgstr "Seitenüberschrift" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map -msgid "" -"Visit us:\n" -" Our office is located in the northeast of Brussels. TEL (555) 432 2365" -msgstr "" -"Besuchen Sie uns:\n" -" Unser Büro befindet sich im Nordosten Brüssels. TEL (555) 432 2365" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Date" -msgstr "" -"\n" -" Datum" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Images" -msgstr "Bilder" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Time" -msgstr "" -"\n" -" Uhrzeit" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid " More Details" -msgstr " Mehr Einzelheiten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Notes" -msgstr "Hinweise" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Location" -msgstr "" -"\n" -" Ort" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 100+ conferences" -msgstr "" -"\n" -" 100+ Konferenzen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "News" -msgstr "Nachrichten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Edit" -msgstr "" -"Bearbeiten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 2,000+ attendees" -msgstr "" -"\n" -" 2,000+ Teilnehmer" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -msgid "Position" -msgstr "Stelle" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid " Autoplay" -msgstr " Autoplay" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Image position" -msgstr "Bildposition" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Inner Spacing" -msgstr "Innere Abstände" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles_options -msgid "Color" -msgstr "Farbe" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Colors" -msgstr "Farben" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Facebook" -msgstr " Facebook" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Map Options" -msgstr "Karten-Optionen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block_option -msgid "Video Options" -msgstr "Video Optionen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Type" -msgstr "Typ" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Zoom" -msgstr "Zoom" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " GitHub" -msgstr " GitHub" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "" -" - An additional " -"information" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -" An additional " -"information" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Linkedin" -msgstr " Linkedin" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Styles" -msgstr "Aussehen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Add Slide" -msgstr "Folie hinzufügen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Add a new Slide" -msgstr "Neue Folie hinzufügen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Caption position" -msgstr "Position Legende" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Delete Slide" -msgstr "Folie löschen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Remove current slide" -msgstr "Aktuelle Folie entfernen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "* Conditions and restrictions apply." -msgstr "* es gelten Konditionen und Einschränkungen." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Clients" -msgstr "Kunden" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Followers" -msgstr "Beobachter" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Projects" -msgstr "Projekte" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2015" -msgstr "2015" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2018" -msgstr "2018" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2019" -msgstr "2019" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" Next" -msgstr "" -"\n" -" Nächste" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "" -"\n" -" Next" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" Previous" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "" -"\n" -" Previous" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "First feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Another feature" -msgstr "Ein weiteres Feature" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Second feature" -msgstr "Zweites Feature" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Last Feature" -msgstr "Letztes Feature" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Link" -msgstr " Link" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Info" -msgstr " Info" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Chardonnay\n" -" Sonoma Coast, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Malbec\n" -" Mendoza, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Pinot Noir\n" -" California, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Rose\n" -" Napa, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"rum, lime, juice cane sugar\n" -" fresh mint, soda, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"whiskey, vermouth, angostura,\n" -" maraschino cherry" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"white tequila, frenadine,\n" -" orange juice, soda, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"white tequila, triple sec,\n" -" lime juice, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "" -"\n" -" Tag\n" -" \n" -" \n" -" Category\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 3 months ago\n" -" \n" -" \n" -" by John DOE\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_badge -msgid "" -"\n" -" Category\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" New\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"18\n" -" December" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"3\n" -" January" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "12" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "45" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "37" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "01." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "02." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Close" -msgstr "Schließen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress_bar -msgid "80% Development" -msgstr "80% Entwicklung" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "80% Html5/CSS3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "85% Bootstrap" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "99% COMPLETE" -msgstr "99% ERLEDIGT" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "A caption for this image" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " 20,7K " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "120GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "143" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "245" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "50GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "80GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "COMPANY: Odoo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "FUNCTION: Web Designer / UI." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Free Billing Systems" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "" -"Increase the amount of your visitors by offering them great discount.\n" -"
        Let them find the coupon code." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "My great button" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "" -"Skills: html5, css3, jquery, " -"bootstrap3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Domains" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited MySQL Databases" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "" -"Write something about you.This is a good way to briefly " -"tell your visitors who you are and what you do. Link Clean Flat Profile to " -"your social networks and use the customizable progress bars to show your " -"skills." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "A Big Image and a Paragraph" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image_parallax -msgid "A Business Theme For Odoo CMS" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "A COLOR BLOCK" -msgstr "EIN FARBIGER BAUSTEIN" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "A Great Way to Present Your Team" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "A Great Way to Show Your Numbers" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "A Great way to show your range" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "A great title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story. Write one or two paragraphs " -"describing your product or services. To be successful your content needs to " -"be useful to your readers. Start with the customer. Find out what they want " -"and give it to them." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story. Write one or two paragraphs " -"describing your product or services. To be successful your content needs to " -"be useful to your readers. Start with the customer. Find out what they want " -"and give it to them. A great way to catch your reader's attention is to tell" -" a story. Everything you consider writing can be told as a story. Write one " -"or two paragraphs describing your product or services. To be successful your" -" content needs to be useful to your readers. Start with the customer. Find " -"out what they want and give it to them." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -"A timeline is a graphical representation on which important events are " -"marked." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "ALL DAY" -msgstr "DEN GANZEN TAG" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "About Me" -msgstr "Über mich" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Add Slide" -msgstr "Folie hinzufügen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Add to cart" -msgstr "In den Einkaufskorb" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:31 -#, python-format -msgid "" -"Add videos, playlists or other contents pasting the iframe code or video url" -" into the box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Add your co-Workers and a link to their profiles." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:5 -#, python-format -msgid "Address" -msgstr "Adresse" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Amazing pages" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "An Other Color Block" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "And a great subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Animal Cannibals" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Animated" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:109 -#, python-format -msgid "Apply" -msgstr "Anwenden" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:81 -#, python-format -msgid "Autoplay" -msgstr "Automatisch abspielen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"BLACKBIRD VINEYARDS | € " -"11.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Basement Jaxx" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Beautiful snippets" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "Big Icons" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Bigger" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Left" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Right" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box Description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Build relationships and recognition by staying in touch with your customers." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"COLORES DEL SOL | € " -"12.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "COUPON" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:53 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:108 -#, python-format -msgid "Cancel" -msgstr "Abbrechen" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_frontend.js:51 -#, python-format -msgid "Cannot load google map, check your configuration !" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Change the color of this box" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Click here" -msgstr "Hier klicken" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Click on the icon to adapt it
        to your purpose." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Click the" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:8 -#, python-format -msgid "Close" -msgstr "Abschliessen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Cocktails" -msgstr "Cocktails" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Collapsable Tab Code" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "" -"Color blocks are a simple and effective way to present and highlight" -" your content. Choose an image or a color for the background. You " -"can even resize and duplicate the blocks to create your own layout. Add " -"images or icons to customize the blocks." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_pricing -msgid "Colors" -msgstr "Farben" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Continue reading " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Convert your visitors to customers." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:36 -#, python-format -msgid "Copy the code provided in the expanded box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Create an irresistible website." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Customize Backgrounds" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:37 -#, python-format -msgid "Customize your map" -msgstr "Passen Sie Ihre Karte an" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Cycling through elements" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DECISIONS, DECISIONS, AND EVEN MORE DECISIONS" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DESIGN, DESIGN, AND EVEN MORE DESIGN" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "DISCOVER THE PRODUCT" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Deciding the features" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:24 -#, python-format -msgid "Default" -msgstr "Standard" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "" -"Design expression comes from the combined effect of all elements in a " -"product. Colour tone, shape and size should direct a person's thoughts " -"towards buying the product. Therefore it is in the product designer's best " -"interest to consider the audiences who are most likely to be the product's " -"end consumers. Keeping in mind how consumers will perceive the product " -"during the design process will direct towards the product’s success in the " -"market. However, even within a specific audience, it is challenging to cater" -" to each possible personality within that group." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Discover" -msgstr "Entdecke" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Discover all the features" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Display Your Last Activities" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Double-click an icon to change it." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Drink menu" -msgstr "Getränkekarte" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Duplicate blocks
        to add more steps." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Edit this text and change it with your content." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Embed" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Event Heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"FRANCIS FORD COPPOLA | €" -" 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "False" -msgstr "Falsch" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "Features" -msgstr "Funktionen" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:92 -#, python-format -msgid "Fill container with video" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:23 -#, python-format -msgid "Flat" -msgstr "Minimalistisch" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Fleetwood Mac" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "" -"Focus on what the customer would like to know, not what you want to show. " -"Write a small explanation of this great feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Fonts" -msgstr "Schriftarten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Freak!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Full Detailed Price List" -msgstr "Detaillierte Preisliste" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "GIFT" -msgstr "GESCHENK" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Get Delivered" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Get a code" -msgstr "Einen Code erhalten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Getting feedback" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:22 -#, python-format -msgid "HTML5 Video - Youtube - Vimeo - Dailymotion" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Hamburgers" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:32 -#, python-format -msgid "Here’s how to embed a Youtube video:" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Highlight Your Content" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Honey Dijon Chicken Burger | " -"€ 12.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Hybrid" -msgstr "Hybrid" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Icon Box / Features List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Images Carousel" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "" -"In a systematic approach, product designers conceptualize and evaluate " -"ideas, turning them into tangible inventions and products. The product " -"designer's role is to combine art, science, and technology to create new " -"products that other people can use." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Introduce your content in few lines." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "It is super easy to resize and/or duplicate each box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "John DOE" -msgstr "Hans MUSTER" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "John DOE • CEO of MyCompany" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "John Doe" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Jul" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "LV5MAY14" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Layout" -msgstr "Layout" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Left" -msgstr "Links" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Let your customers follow
        and understand your process." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:74 -#, python-format -msgid "Loop video" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iste eius, nam " -"optio dolor mollitia, consectetur asperiores libero illum. Repellendus, " -"molestias consequatur rem ipsa. Tempora omnis eius, ipsam quaerat optio " -"suscipit necessitatibus aliquam obcaecati. Vero quia mollitia repellendus " -"maxime, alias. Harum!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laboriosam " -"repellendus sunt nobis libero delectus aperiam animi porro, optio expedita " -"odio impedit quae praesentium fugit consequuntur vero architecto, excepturi," -" maiores aliquid." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perspiciatis " -"nobis, tempore voluptatem qui dolorum quae." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellendus ullam " -"minus qui aliquid optio, animi nam odio iste quisquam voluptas laudantium, " -"magni recusandae nemo eligendi!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rerum incidunt, " -"eum quae neque officiis dignissimos, veritatis amet, dolorum aperiam tempore" -" sed. Modi rerum velit itaque ex nobis vero necessitatibus adipisci eaque " -"cum iste nisi molestias quibusdam, voluptate odit deserunt, beatae." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vitae, inventore " -"accusantium dolores. Ad non necessitatibus recusandae cupiditate animi " -"quibusdam enim earum, nulla, qui. Dolorem sunt impedit similique a quia " -"earum fuga unde, repellendus omnis iure." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MANHATTAN | € 12.50" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MARGARITA | € 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MOJITO | € 12.00" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:20 -#, python-format -msgid "Marker Style" -msgstr "Marker-Stil" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Media heading" -msgstr "Medientitel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Medium" -msgstr "Mittel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Menu A'la carte" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "More Features" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:60 -#, python-format -msgid "Muted" -msgstr "Stummgeschaltet" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "My Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Next" -msgstr "Weiter" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Nice % Discount Tables" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Nice and Efficient Events List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Normal" -msgstr "Normal" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "OLV4SY3R" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "OUR CATALOG" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:54 -#, python-format -msgid "Options" -msgstr "Optionen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -msgid "Organize Your Content with These Three Columns" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Organize Your Content with These Two Columns" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Outstanding images" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"PATZ AND HALL | € " -"12.50" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:37 -#, python-format -msgid "Paste the code into the box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Pay" -msgstr "Zahlen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Planning" -msgstr "Planung" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Post heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Prepare for the future of eCommerce." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Preparing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "Present your products" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Present your products online!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Previous" -msgstr "Vorherige" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Pro" -msgstr "Pro" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Producing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "" -"Product design is the process of creating a new product to be sold by a " -"business to its customers. A very broad concept, it is essentially the " -"efficient and effective generation and development of ideas through a " -"process that leads to new products." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 01" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 02" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 03" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Put the focus on what you have to say!" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:98 -#, python-format -msgid "Put video in container" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "REGISTER " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "Read more" -msgstr "Mehr lesen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Register" -msgstr "Anmelden" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Remove current slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Resize and Duplicate" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "Resume with A Nice Subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Resume with a Subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Right" -msgstr "Rechts" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "RoadMap" -msgstr "Straßenkarte" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Sandwich with Ham and Cheese | " -"€ 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Satellite" -msgstr "Satellit" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:39 -#, python-format -msgid "Save" -msgstr "Speichern" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 1" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 2" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 4" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 5" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 6" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:9 -#, python-format -msgid "Select a video" -msgstr "Ein Video wählen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Select and delete blocks
        to remove some steps." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Select the Colors" -msgstr "Farben wählen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Select your favorite font combination to emphase your texts." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Sep" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block -msgid "Set a catchy headline" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "Share" -msgstr "Teilen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Shipping" -msgstr "Versand" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:67 -#, python-format -msgid "Show controls" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Showcase Your Services and Features" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Sign in" -msgstr "Anmelden" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "Slide title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Small" -msgstr "Sehr klein" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Speakers from all over the world will join our experts to give inspiring " -"talks on various topics." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Striped" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Style" -msgstr "Stil" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"TEQUILA SUNRISE | € " -"11.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_menu_three_columns -msgid "Take a tour" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Terrain" -msgstr "Gelände" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Testing" -msgstr "Softwaretest" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Text Highlight" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The best approach" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "The famous band comes last time in this year, don't miss it!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The latest technology" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "The process from paper version" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "The product which fits your needs" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "" -"The solution to that is to create a product that, in its designed appearance" -" and function, expresses a personality or tells a story. Products that carry" -" such attributes are more likely to give off a stronger expression that will" -" attract more consumers. On that note it is important to keep in mind that " -"design expression does not only concern the appearance of a product, but " -"also its function. For example, as humans our appearance as well as our " -"actions are subject to people's judgment when they are making a first " -"impression of us." -msgstr "" - -#. module: theme_common -#: model:ir.model,name:theme_common.model_theme_utils -msgid "Theme Utils" -msgstr "Werkzeuge" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "This Is a Color Block" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "This Is a Column" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "" -"This theme does not limit you to one setup, we prefer to give you options. " -"From boxed layout to wide, left sidebars to right and multiple headers; we " -"let you decide. That’s right, you can have your cake and eat some too." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Tiny" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_separator_nav -msgid "Top" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Left" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Right" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "True" -msgstr "Wahr" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Upcoming Events" -msgstr "Nächste Veranstaltungen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Use newsletters to increase your popularity" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:14 -#, python-format -msgid "" -"Use the 'Customize 'menu to define a fallback background image for not " -"compatible devices" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "" -"Use this building block to showcase your content with an images carousel. " -"You can edit, add or remove images using the customize options." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Use this component for creating a list of featured elements to which you " -"want to bring attention." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "" -"Use this paragraph to write a short, sweet and successful resume about this " -"member of your team." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Use this snippet to build various types of components that feature a left- " -"or right-aligned image alongside textual content. Duplicate the element to " -"create a list that fit your needs." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -"Use this timeline as a part of your resume, to show your visitors what " -"you've done in the past." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Useful options" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:17 -#, python-format -msgid "Video" -msgstr "Video" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_product_list -msgid "View item" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "We have Awesome Products" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Which trends to follow? Which ideas will work?
        Opening Keynote - " -"Presented by John DOE." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Wine" -msgstr "Wein" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "" -"With Theme Clean you get a list of your events with date, time, description, etc. Select the simple or image mode and edit your content.\n" -"
        You can link your events to your favorite social network." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "With a great subtitle" -msgstr "Mit einem großartigen Untertitel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "With the most effective technique" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Write Something Nice for Your Users" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Write a description of your event here." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "" -"Write a quote here from one of your customers. Quotes are a great way to " -"build confidence in your products or services." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Write one or two paragraphs describing your product" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "" -"Write one or two paragraphs describing your product, services or a specific " -"feature. To be successful your content needs to be useful to your readers." -msgstr "" -"Schreiben Sie ein oder zwei Absätze, die Produkte, Dienste oder spezifische " -"Funktionen beschreiben. Um erfolgreich zu sein, müssen Ihre Inhalte nützlich" -" für Ihre Leser sein." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can change the box color by using the customize option." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "You can edit, duplicate..." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can even replace the icon by one of your choice." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "You get a free drink with your entrance!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Your Event Name" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:11 -#, python-format -msgid "Your address" -msgstr "Ihre Adresse" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Your title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Your website is where almost all of your customers will end up first. " -"
        Let's clear up what it takes to give them the best experience with it." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "ZUY4OPLQ" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "card" -msgstr "Karte" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:16 -#, python-format -msgid "e.g. De Brouckere, Brussels, Belgium" -msgstr "z.B. De Brouckere, Brüssel, Belgien" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:44 -#, python-format -msgid "iframe" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "link under the video." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "link." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "off" -msgstr "Rabatt" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:41 -#, python-format -msgid "share" -msgstr "teilen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "with this theme." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "worldwilde" -msgstr "" diff --git a/theme_clean/theme_common/i18n/es.po b/theme_clean/theme_common/i18n/es.po deleted file mode 100644 index 2d97283..0000000 --- a/theme_clean/theme_common/i18n/es.po +++ /dev/null @@ -1,2146 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * theme_common -# -# Translators: -# Leonardo J. Caballero G. , 2019 -# Nhomar Hernández [Vauxoo] , 2019 -# Gabriel Umana , 2019 -# Pierre-Antoine Magnet , 2019 -# JOSE ALEJANDRO ECHEVERRI VALENCIA , 2019 -# Nicolás Broggi , 2019 -# Carolina Gonzalez , 2019 -# e2f , 2019 -# Martin Trigaux, 2019 -# Daniel Blanco , 2019 -# Alejandro Die Sanchis , 2019 -# Antonio Trueba, 2019 -# RGB Consulting , 2019 -# Cris Martin , 2019 -# Carlos Lopez , 2019 -# Noemi Nahomy , 2019 -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 12.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-24 09:00+0000\n" -"PO-Revision-Date: 2019-04-24 11:21+0000\n" -"Last-Translator: Noemi Nahomy , 2019\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_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$15/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$29/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$69/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$99/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- ART DIRECTOR -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- PARTNER -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- TRAINEE -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "-50% OFF" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "...and switch the timeline contents to fit your needs." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 03-11-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 08-11-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 22-10-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 28-10-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "02" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "05" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "1000 Apps" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "12:00 AM" -msgstr "12:00 AM" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "18" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "20.000 Users" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "2014" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "21" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "234 Clients" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "25%" -msgstr "25%" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "30 Countries" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "30%" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "50$" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "75 Partners" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Page Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map -msgid "" -"Visit us:\n" -" Our office is located in the northeast of Brussels. TEL (555) 432 2365" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Date" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Images" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Time" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid " More Details" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Notes" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Location" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 100+ conferences" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "News" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Edit" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 2,000+ attendees" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -msgid "Position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid " Autoplay" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Image position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Inner Spacing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles_options -msgid "Color" -msgstr "Color" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Colors" -msgstr "Colores" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Facebook" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Map Options" -msgstr "Opciones de Mapas" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block_option -msgid "Video Options" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Type" -msgstr "Tipo" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Zoom" -msgstr "Acercar" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " GitHub" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "" -" - An additional " -"information" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -" An additional " -"information" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Linkedin" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Styles" -msgstr "Estilos" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Add Slide" -msgstr "Añadir diapositiva" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Add a new Slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Caption position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Delete Slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Remove current slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "* Conditions and restrictions apply." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Clients" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Followers" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Projects" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2015" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2018" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2019" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" Next" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "" -"\n" -" Next" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" Previous" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "" -"\n" -" Previous" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "First feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Another feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Second feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Last Feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Link" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Info" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Chardonnay\n" -" Sonoma Coast, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Malbec\n" -" Mendoza, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Pinot Noir\n" -" California, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Rose\n" -" Napa, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"rum, lime, juice cane sugar\n" -" fresh mint, soda, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"whiskey, vermouth, angostura,\n" -" maraschino cherry" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"white tequila, frenadine,\n" -" orange juice, soda, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"white tequila, triple sec,\n" -" lime juice, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "" -"\n" -" Tag\n" -" \n" -" \n" -" Category\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 3 months ago\n" -" \n" -" \n" -" by John DOE\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_badge -msgid "" -"\n" -" Category\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" New\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"18\n" -" December" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"3\n" -" January" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "12" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "45" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "37" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "01." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "02." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Close" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress_bar -msgid "80% Development" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "80% Html5/CSS3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "85% Bootstrap" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "99% COMPLETE" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "A caption for this image" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " 20,7K " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "120GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "143" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "245" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "50GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "80GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "COMPANY: Odoo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "FUNCTION: Web Designer / UI." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Free Billing Systems" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "" -"Increase the amount of your visitors by offering them great discount.\n" -"
        Let them find the coupon code." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "My great button" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "" -"Skills: html5, css3, jquery, " -"bootstrap3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Domains" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited MySQL Databases" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "" -"Write something about you.This is a good way to briefly " -"tell your visitors who you are and what you do. Link Clean Flat Profile to " -"your social networks and use the customizable progress bars to show your " -"skills." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "A Big Image and a Paragraph" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image_parallax -msgid "A Business Theme For Odoo CMS" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "A COLOR BLOCK" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "A Great Way to Present Your Team" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "A Great Way to Show Your Numbers" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "A Great way to show your range" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "A great title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story. Write one or two paragraphs " -"describing your product or services. To be successful your content needs to " -"be useful to your readers. Start with the customer. Find out what they want " -"and give it to them." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story. Write one or two paragraphs " -"describing your product or services. To be successful your content needs to " -"be useful to your readers. Start with the customer. Find out what they want " -"and give it to them. A great way to catch your reader's attention is to tell" -" a story. Everything you consider writing can be told as a story. Write one " -"or two paragraphs describing your product or services. To be successful your" -" content needs to be useful to your readers. Start with the customer. Find " -"out what they want and give it to them." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -"A timeline is a graphical representation on which important events are " -"marked." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "ALL DAY" -msgstr "TODO EL DÍA" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "About Me" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Add Slide" -msgstr "Añadir diapositivas" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Add to cart" -msgstr "Agregar al carrito" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:31 -#, python-format -msgid "" -"Add videos, playlists or other contents pasting the iframe code or video url" -" into the box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Add your co-Workers and a link to their profiles." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:5 -#, python-format -msgid "Address" -msgstr "Dirección" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Amazing pages" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "An Other Color Block" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "And a great subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Animal Cannibals" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Animated" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:109 -#, python-format -msgid "Apply" -msgstr "Aplicar" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:81 -#, python-format -msgid "Autoplay" -msgstr "Reproducción automática" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"BLACKBIRD VINEYARDS | € " -"11.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Basement Jaxx" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Beautiful snippets" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "Big Icons" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Bigger" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Left" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Right" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box Description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Build relationships and recognition by staying in touch with your customers." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"COLORES DEL SOL | € " -"12.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "COUPON" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:53 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:108 -#, python-format -msgid "Cancel" -msgstr "Cancelar" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_frontend.js:51 -#, python-format -msgid "Cannot load google map, check your configuration !" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Change the color of this box" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Click here" -msgstr "Haga clic aquí" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Click on the icon to adapt it
        to your purpose." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Click the" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:8 -#, python-format -msgid "Close" -msgstr "Cerrar" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Cocktails" -msgstr "Cócteles" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Collapsable Tab Code" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "" -"Color blocks are a simple and effective way to present and highlight" -" your content. Choose an image or a color for the background. You " -"can even resize and duplicate the blocks to create your own layout. Add " -"images or icons to customize the blocks." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_pricing -msgid "Colors" -msgstr "Colores" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Continue reading " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Convert your visitors to customers." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:36 -#, python-format -msgid "Copy the code provided in the expanded box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Create an irresistible website." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Customize Backgrounds" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:37 -#, python-format -msgid "Customize your map" -msgstr "Personalizar su mapa" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Cycling through elements" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DECISIONS, DECISIONS, AND EVEN MORE DECISIONS" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DESIGN, DESIGN, AND EVEN MORE DESIGN" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "DISCOVER THE PRODUCT" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Deciding the features" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:24 -#, python-format -msgid "Default" -msgstr "Por defecto" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "" -"Design expression comes from the combined effect of all elements in a " -"product. Colour tone, shape and size should direct a person's thoughts " -"towards buying the product. Therefore it is in the product designer's best " -"interest to consider the audiences who are most likely to be the product's " -"end consumers. Keeping in mind how consumers will perceive the product " -"during the design process will direct towards the product’s success in the " -"market. However, even within a specific audience, it is challenging to cater" -" to each possible personality within that group." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Discover" -msgstr "Descubrir" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Discover all the features" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Display Your Last Activities" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Double-click an icon to change it." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Drink menu" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Duplicate blocks
        to add more steps." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Edit this text and change it with your content." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Embed" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Event Heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"FRANCIS FORD COPPOLA | €" -" 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "False" -msgstr "Falso" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "Features" -msgstr "Características" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:92 -#, python-format -msgid "Fill container with video" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:23 -#, python-format -msgid "Flat" -msgstr "Plano" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Fleetwood Mac" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "" -"Focus on what the customer would like to know, not what you want to show. " -"Write a small explanation of this great feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Fonts" -msgstr "Tipos de letra" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Freak!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Full Detailed Price List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "GIFT" -msgstr "REGALO" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Get Delivered" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Get a code" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Getting feedback" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:22 -#, python-format -msgid "HTML5 Video - Youtube - Vimeo - Dailymotion" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Hamburgers" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:32 -#, python-format -msgid "Here’s how to embed a Youtube video:" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Highlight Your Content" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Honey Dijon Chicken Burger | " -"€ 12.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Hybrid" -msgstr "Híbrido" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Icon Box / Features List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Images Carousel" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "" -"In a systematic approach, product designers conceptualize and evaluate " -"ideas, turning them into tangible inventions and products. The product " -"designer's role is to combine art, science, and technology to create new " -"products that other people can use." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Introduce your content in few lines." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "It is super easy to resize and/or duplicate each box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "John DOE" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "John DOE • CEO of MyCompany" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "John Doe" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Jul" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "LV5MAY14" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Layout" -msgstr "Diseño" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Left" -msgstr "Izquierda" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Let your customers follow
        and understand your process." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:74 -#, python-format -msgid "Loop video" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iste eius, nam " -"optio dolor mollitia, consectetur asperiores libero illum. Repellendus, " -"molestias consequatur rem ipsa. Tempora omnis eius, ipsam quaerat optio " -"suscipit necessitatibus aliquam obcaecati. Vero quia mollitia repellendus " -"maxime, alias. Harum!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laboriosam " -"repellendus sunt nobis libero delectus aperiam animi porro, optio expedita " -"odio impedit quae praesentium fugit consequuntur vero architecto, excepturi," -" maiores aliquid." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perspiciatis " -"nobis, tempore voluptatem qui dolorum quae." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellendus ullam " -"minus qui aliquid optio, animi nam odio iste quisquam voluptas laudantium, " -"magni recusandae nemo eligendi!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rerum incidunt, " -"eum quae neque officiis dignissimos, veritatis amet, dolorum aperiam tempore" -" sed. Modi rerum velit itaque ex nobis vero necessitatibus adipisci eaque " -"cum iste nisi molestias quibusdam, voluptate odit deserunt, beatae." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vitae, inventore " -"accusantium dolores. Ad non necessitatibus recusandae cupiditate animi " -"quibusdam enim earum, nulla, qui. Dolorem sunt impedit similique a quia " -"earum fuga unde, repellendus omnis iure." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MANHATTAN | € 12.50" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MARGARITA | € 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MOJITO | € 12.00" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:20 -#, python-format -msgid "Marker Style" -msgstr "Estilo del marcador" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Media heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Medium" -msgstr "Media" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Menu A'la carte" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "More Features" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:60 -#, python-format -msgid "Muted" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "My Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Next" -msgstr "Siguiente" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Nice % Discount Tables" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Nice and Efficient Events List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Normal" -msgstr "Normal" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "OLV4SY3R" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "OUR CATALOG" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:54 -#, python-format -msgid "Options" -msgstr "Opciones" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -msgid "Organize Your Content with These Three Columns" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Organize Your Content with These Two Columns" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Outstanding images" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"PATZ AND HALL | € " -"12.50" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:37 -#, python-format -msgid "Paste the code into the box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Pay" -msgstr "Pagar" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Planning" -msgstr "Planificación" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Post heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Prepare for the future of eCommerce." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Preparing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "Present your products" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Present your products online!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Previous" -msgstr "Anterior" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Pro" -msgstr "Pro" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Producing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "" -"Product design is the process of creating a new product to be sold by a " -"business to its customers. A very broad concept, it is essentially the " -"efficient and effective generation and development of ideas through a " -"process that leads to new products." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 01" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 02" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 03" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Put the focus on what you have to say!" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:98 -#, python-format -msgid "Put video in container" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "REGISTER " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "Read more" -msgstr "Leer más" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Register" -msgstr "Registro" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Remove current slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Resize and Duplicate" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "Resume with A Nice Subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Resume with a Subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Right" -msgstr "Derecha" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "RoadMap" -msgstr "Mapa de ruta" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Sandwich with Ham and Cheese | " -"€ 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Satellite" -msgstr "Satelite" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:39 -#, python-format -msgid "Save" -msgstr "Guardar" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 1" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 2" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 4" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 5" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 6" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:9 -#, python-format -msgid "Select a video" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Select and delete blocks
        to remove some steps." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Select the Colors" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Select your favorite font combination to emphase your texts." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Sep" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block -msgid "Set a catchy headline" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "Share" -msgstr "Compartir" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Shipping" -msgstr "Envío" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:67 -#, python-format -msgid "Show controls" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Showcase Your Services and Features" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Sign in" -msgstr "Registrar entrada" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "Slide title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Small" -msgstr "Pequeño" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Speakers from all over the world will join our experts to give inspiring " -"talks on various topics." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Striped" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Style" -msgstr "Estilo" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"TEQUILA SUNRISE | € " -"11.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_menu_three_columns -msgid "Take a tour" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Terrain" -msgstr "Terreno" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Testing" -msgstr "Prueba" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Text Highlight" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The best approach" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "The famous band comes last time in this year, don't miss it!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The latest technology" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "The process from paper version" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "The product which fits your needs" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "" -"The solution to that is to create a product that, in its designed appearance" -" and function, expresses a personality or tells a story. Products that carry" -" such attributes are more likely to give off a stronger expression that will" -" attract more consumers. On that note it is important to keep in mind that " -"design expression does not only concern the appearance of a product, but " -"also its function. For example, as humans our appearance as well as our " -"actions are subject to people's judgment when they are making a first " -"impression of us." -msgstr "" - -#. module: theme_common -#: model:ir.model,name:theme_common.model_theme_utils -msgid "Theme Utils" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "This Is a Color Block" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "This Is a Column" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "" -"This theme does not limit you to one setup, we prefer to give you options. " -"From boxed layout to wide, left sidebars to right and multiple headers; we " -"let you decide. That’s right, you can have your cake and eat some too." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Tiny" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_separator_nav -msgid "Top" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Left" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Right" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "True" -msgstr "Verdadero" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Upcoming Events" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Use newsletters to increase your popularity" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:14 -#, python-format -msgid "" -"Use the 'Customize 'menu to define a fallback background image for not " -"compatible devices" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "" -"Use this building block to showcase your content with an images carousel. " -"You can edit, add or remove images using the customize options." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Use this component for creating a list of featured elements to which you " -"want to bring attention." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "" -"Use this paragraph to write a short, sweet and successful resume about this " -"member of your team." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Use this snippet to build various types of components that feature a left- " -"or right-aligned image alongside textual content. Duplicate the element to " -"create a list that fit your needs." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -"Use this timeline as a part of your resume, to show your visitors what " -"you've done in the past." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Useful options" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:17 -#, python-format -msgid "Video" -msgstr "Video" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_product_list -msgid "View item" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "We have Awesome Products" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Which trends to follow? Which ideas will work?
        Opening Keynote - " -"Presented by John DOE." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Wine" -msgstr "Vino" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "" -"With Theme Clean you get a list of your events with date, time, description, etc. Select the simple or image mode and edit your content.\n" -"
        You can link your events to your favorite social network." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "With a great subtitle" -msgstr "Con un gran subtítulo" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "With the most effective technique" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Write Something Nice for Your Users" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Write a description of your event here." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "" -"Write a quote here from one of your customers. Quotes are a great way to " -"build confidence in your products or services." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Write one or two paragraphs describing your product" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "" -"Write one or two paragraphs describing your product, services or a specific " -"feature. To be successful your content needs to be useful to your readers." -msgstr "" -"Escriba uno o dos párrafos describiendo su producto, servicio o " -"característica especifica. Para tener éxito su contenido debe ser útil a sus" -" lectores." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can change the box color by using the customize option." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "You can edit, duplicate..." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can even replace the icon by one of your choice." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "You get a free drink with your entrance!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Your Event Name" -msgstr "Tu nombre del evento" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:11 -#, python-format -msgid "Your address" -msgstr "Su dirección" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Your title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Your website is where almost all of your customers will end up first. " -"
        Let's clear up what it takes to give them the best experience with it." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "ZUY4OPLQ" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "card" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:16 -#, python-format -msgid "e.g. De Brouckere, Brussels, Belgium" -msgstr "P. Ej. De Brouckere, Bruselas, Bélgica" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:44 -#, python-format -msgid "iframe" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "link under the video." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "link." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "off" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:41 -#, python-format -msgid "share" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "with this theme." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "worldwilde" -msgstr "" diff --git a/theme_clean/theme_common/i18n/fr.po b/theme_clean/theme_common/i18n/fr.po deleted file mode 100644 index 86d2d3d..0000000 --- a/theme_clean/theme_common/i18n/fr.po +++ /dev/null @@ -1,2143 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * theme_common -# -# Translators: -# Christophe CHAUVET , 2019 -# Jean-Marc Dupont , 2019 -# Kévin R., 2019 -# Lucas Deliege , 2019 -# 6534c450c77b2549e41c52e2051f5839, 2019 -# Martin Trigaux, 2019 -# Frédéric LIETART , 2019 -# Vincent Hammadache , 2019 -# Melanie Bernard , 2019 -# Eloïse Stilmant , 2019 -# Nathan Grognet , 2019 -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 12.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-24 09:00+0000\n" -"PO-Revision-Date: 2019-04-24 11:21+0000\n" -"Last-Translator: Nathan Grognet , 2019\n" -"Language-Team: French (https://www.transifex.com/odoo/teams/41243/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$15/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$29/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$69/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$99/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- ART DIRECTOR -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- PARTNER -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- TRAINEE -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "-50% OFF" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "...and switch the timeline contents to fit your needs." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 03-11-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 08-11-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 22-10-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 28-10-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "02" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "05" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "1000 Apps" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "12:00 AM" -msgstr "12:00" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "18" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "20.000 Users" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "2014" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "21" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "234 Clients" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "25%" -msgstr "25%" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "30 Countries" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "30%" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "50$" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "75 Partners" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Page Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map -msgid "" -"Visit us:\n" -" Our office is located in the northeast of Brussels. TEL (555) 432 2365" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Date" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Images" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Time" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid " More Details" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Notes" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Location" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 100+ conferences" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "News" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Edit" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 2,000+ attendees" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -msgid "Position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid " Autoplay" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Image position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Inner Spacing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles_options -msgid "Color" -msgstr "Couleur" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Colors" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Facebook" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Map Options" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block_option -msgid "Video Options" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Type" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Zoom" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " GitHub" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "" -" - An additional " -"information" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -" An additional " -"information" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Linkedin" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Styles" -msgstr "Styles" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Add Slide" -msgstr "Ajouter une diapositive" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Add a new Slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Caption position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Delete Slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Remove current slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "* Conditions and restrictions apply." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Clients" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Followers" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Projects" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2015" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2018" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2019" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" Next" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "" -"\n" -" Next" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" Previous" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "" -"\n" -" Previous" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "First feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Another feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Second feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Last Feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Link" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Info" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Chardonnay\n" -" Sonoma Coast, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Malbec\n" -" Mendoza, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Pinot Noir\n" -" California, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Rose\n" -" Napa, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"rum, lime, juice cane sugar\n" -" fresh mint, soda, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"whiskey, vermouth, angostura,\n" -" maraschino cherry" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"white tequila, frenadine,\n" -" orange juice, soda, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"white tequila, triple sec,\n" -" lime juice, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "" -"\n" -" Tag\n" -" \n" -" \n" -" Category\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 3 months ago\n" -" \n" -" \n" -" by John DOE\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_badge -msgid "" -"\n" -" Category\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" New\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"18\n" -" December" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"3\n" -" January" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "12" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "45" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "37" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "01." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "02." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Close" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress_bar -msgid "80% Development" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "80% Html5/CSS3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "85% Bootstrap" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "99% COMPLETE" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "A caption for this image" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " 20,7K " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "120GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "143" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "245" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "50GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "80GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "COMPANY: Odoo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "FUNCTION: Web Designer / UI." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Free Billing Systems" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "" -"Increase the amount of your visitors by offering them great discount.\n" -"
        Let them find the coupon code." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "My great button" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "" -"Skills: html5, css3, jquery, " -"bootstrap3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Domains" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited MySQL Databases" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "" -"Write something about you.This is a good way to briefly " -"tell your visitors who you are and what you do. Link Clean Flat Profile to " -"your social networks and use the customizable progress bars to show your " -"skills." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "A Big Image and a Paragraph" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image_parallax -msgid "A Business Theme For Odoo CMS" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "A COLOR BLOCK" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "A Great Way to Present Your Team" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "A Great Way to Show Your Numbers" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "A Great way to show your range" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "A great title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story. Write one or two paragraphs " -"describing your product or services. To be successful your content needs to " -"be useful to your readers. Start with the customer. Find out what they want " -"and give it to them." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story. Write one or two paragraphs " -"describing your product or services. To be successful your content needs to " -"be useful to your readers. Start with the customer. Find out what they want " -"and give it to them. A great way to catch your reader's attention is to tell" -" a story. Everything you consider writing can be told as a story. Write one " -"or two paragraphs describing your product or services. To be successful your" -" content needs to be useful to your readers. Start with the customer. Find " -"out what they want and give it to them." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -"A timeline is a graphical representation on which important events are " -"marked." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "ALL DAY" -msgstr "TOUTE LA JOURNEE" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "About Me" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Add Slide" -msgstr "Ajouter un diaporama" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Add to cart" -msgstr "Ajouter au panier" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:31 -#, python-format -msgid "" -"Add videos, playlists or other contents pasting the iframe code or video url" -" into the box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Add your co-Workers and a link to their profiles." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:5 -#, python-format -msgid "Address" -msgstr "Adresse" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Amazing pages" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "An Other Color Block" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "And a great subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Animal Cannibals" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Animated" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:109 -#, python-format -msgid "Apply" -msgstr "Appliquer" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:81 -#, python-format -msgid "Autoplay" -msgstr "Lecture automatique" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"BLACKBIRD VINEYARDS | € " -"11.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Basement Jaxx" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Beautiful snippets" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "Big Icons" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Bigger" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Left" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Right" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box Description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Build relationships and recognition by staying in touch with your customers." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"COLORES DEL SOL | € " -"12.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "COUPON" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:53 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:108 -#, python-format -msgid "Cancel" -msgstr "Annuler" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_frontend.js:51 -#, python-format -msgid "Cannot load google map, check your configuration !" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Change the color of this box" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Click here" -msgstr "Cliquez ici" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Click on the icon to adapt it
        to your purpose." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Click the" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:8 -#, python-format -msgid "Close" -msgstr "Fermer" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Cocktails" -msgstr "Cocktails" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Collapsable Tab Code" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "" -"Color blocks are a simple and effective way to present and highlight" -" your content. Choose an image or a color for the background. You " -"can even resize and duplicate the blocks to create your own layout. Add " -"images or icons to customize the blocks." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_pricing -msgid "Colors" -msgstr "Couleurs" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Continue reading " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Convert your visitors to customers." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:36 -#, python-format -msgid "Copy the code provided in the expanded box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Create an irresistible website." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Customize Backgrounds" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:37 -#, python-format -msgid "Customize your map" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Cycling through elements" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DECISIONS, DECISIONS, AND EVEN MORE DECISIONS" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DESIGN, DESIGN, AND EVEN MORE DESIGN" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "DISCOVER THE PRODUCT" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Deciding the features" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:24 -#, python-format -msgid "Default" -msgstr "Par défaut" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "" -"Design expression comes from the combined effect of all elements in a " -"product. Colour tone, shape and size should direct a person's thoughts " -"towards buying the product. Therefore it is in the product designer's best " -"interest to consider the audiences who are most likely to be the product's " -"end consumers. Keeping in mind how consumers will perceive the product " -"during the design process will direct towards the product’s success in the " -"market. However, even within a specific audience, it is challenging to cater" -" to each possible personality within that group." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Discover" -msgstr "Découvrir" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Discover all the features" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Display Your Last Activities" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Double-click an icon to change it." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Drink menu" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Duplicate blocks
        to add more steps." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Edit this text and change it with your content." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Embed" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Event Heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"FRANCIS FORD COPPOLA | €" -" 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "False" -msgstr "Faux" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "Features" -msgstr "Fonctionnalités" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:92 -#, python-format -msgid "Fill container with video" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:23 -#, python-format -msgid "Flat" -msgstr "Plat" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Fleetwood Mac" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "" -"Focus on what the customer would like to know, not what you want to show. " -"Write a small explanation of this great feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Fonts" -msgstr "Polices de caractères" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Freak!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Full Detailed Price List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "GIFT" -msgstr "CADEAU" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Get Delivered" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Get a code" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Getting feedback" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:22 -#, python-format -msgid "HTML5 Video - Youtube - Vimeo - Dailymotion" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Hamburgers" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:32 -#, python-format -msgid "Here’s how to embed a Youtube video:" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Highlight Your Content" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Honey Dijon Chicken Burger | " -"€ 12.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Hybrid" -msgstr "Hybride" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Icon Box / Features List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Images Carousel" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "" -"In a systematic approach, product designers conceptualize and evaluate " -"ideas, turning them into tangible inventions and products. The product " -"designer's role is to combine art, science, and technology to create new " -"products that other people can use." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Introduce your content in few lines." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "It is super easy to resize and/or duplicate each box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "John DOE" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "John DOE • CEO of MyCompany" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "John Doe" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Jul" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "LV5MAY14" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Layout" -msgstr "Agencement" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Left" -msgstr "Gauche" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Let your customers follow
        and understand your process." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:74 -#, python-format -msgid "Loop video" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iste eius, nam " -"optio dolor mollitia, consectetur asperiores libero illum. Repellendus, " -"molestias consequatur rem ipsa. Tempora omnis eius, ipsam quaerat optio " -"suscipit necessitatibus aliquam obcaecati. Vero quia mollitia repellendus " -"maxime, alias. Harum!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laboriosam " -"repellendus sunt nobis libero delectus aperiam animi porro, optio expedita " -"odio impedit quae praesentium fugit consequuntur vero architecto, excepturi," -" maiores aliquid." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perspiciatis " -"nobis, tempore voluptatem qui dolorum quae." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellendus ullam " -"minus qui aliquid optio, animi nam odio iste quisquam voluptas laudantium, " -"magni recusandae nemo eligendi!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rerum incidunt, " -"eum quae neque officiis dignissimos, veritatis amet, dolorum aperiam tempore" -" sed. Modi rerum velit itaque ex nobis vero necessitatibus adipisci eaque " -"cum iste nisi molestias quibusdam, voluptate odit deserunt, beatae." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vitae, inventore " -"accusantium dolores. Ad non necessitatibus recusandae cupiditate animi " -"quibusdam enim earum, nulla, qui. Dolorem sunt impedit similique a quia " -"earum fuga unde, repellendus omnis iure." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MANHATTAN | € 12.50" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MARGARITA | € 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MOJITO | € 12.00" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:20 -#, python-format -msgid "Marker Style" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Media heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Medium" -msgstr "Moyen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Menu A'la carte" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "More Features" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:60 -#, python-format -msgid "Muted" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "My Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Next" -msgstr "Suivant" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Nice % Discount Tables" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Nice and Efficient Events List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Normal" -msgstr "Normale" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "OLV4SY3R" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "OUR CATALOG" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:54 -#, python-format -msgid "Options" -msgstr "Options" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -msgid "Organize Your Content with These Three Columns" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Organize Your Content with These Two Columns" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Outstanding images" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"PATZ AND HALL | € " -"12.50" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:37 -#, python-format -msgid "Paste the code into the box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Pay" -msgstr "Payer" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Planning" -msgstr "Planning" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Post heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Prepare for the future of eCommerce." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Preparing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "Present your products" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Present your products online!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Previous" -msgstr "Précedent" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Pro" -msgstr "Pro" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Producing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "" -"Product design is the process of creating a new product to be sold by a " -"business to its customers. A very broad concept, it is essentially the " -"efficient and effective generation and development of ideas through a " -"process that leads to new products." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 01" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 02" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 03" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Put the focus on what you have to say!" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:98 -#, python-format -msgid "Put video in container" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "REGISTER " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "Read more" -msgstr "En savoir plus" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Register" -msgstr "S'inscrire" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Remove current slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Resize and Duplicate" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "Resume with A Nice Subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Resume with a Subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Right" -msgstr "Droit" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "RoadMap" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Sandwich with Ham and Cheese | " -"€ 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Satellite" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:39 -#, python-format -msgid "Save" -msgstr "Sauvegarder" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 1" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 2" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 4" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 5" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 6" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:9 -#, python-format -msgid "Select a video" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Select and delete blocks
        to remove some steps." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Select the Colors" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Select your favorite font combination to emphase your texts." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Sep" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block -msgid "Set a catchy headline" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "Share" -msgstr "Partager" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Shipping" -msgstr "Expédition" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:67 -#, python-format -msgid "Show controls" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Showcase Your Services and Features" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Sign in" -msgstr "Pointer l'entrée" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "Slide title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Small" -msgstr "Petit" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Speakers from all over the world will join our experts to give inspiring " -"talks on various topics." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Striped" -msgstr "Rayé" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Style" -msgstr "Style" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"TEQUILA SUNRISE | € " -"11.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_menu_three_columns -msgid "Take a tour" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Terrain" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Testing" -msgstr "En test" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Text Highlight" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The best approach" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "The famous band comes last time in this year, don't miss it!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The latest technology" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "The process from paper version" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "The product which fits your needs" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "" -"The solution to that is to create a product that, in its designed appearance" -" and function, expresses a personality or tells a story. Products that carry" -" such attributes are more likely to give off a stronger expression that will" -" attract more consumers. On that note it is important to keep in mind that " -"design expression does not only concern the appearance of a product, but " -"also its function. For example, as humans our appearance as well as our " -"actions are subject to people's judgment when they are making a first " -"impression of us." -msgstr "" - -#. module: theme_common -#: model:ir.model,name:theme_common.model_theme_utils -msgid "Theme Utils" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "This Is a Color Block" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "This Is a Column" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "" -"This theme does not limit you to one setup, we prefer to give you options. " -"From boxed layout to wide, left sidebars to right and multiple headers; we " -"let you decide. That’s right, you can have your cake and eat some too." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Tiny" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_separator_nav -msgid "Top" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Left" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Right" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "True" -msgstr "Vrai" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Upcoming Events" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Use newsletters to increase your popularity" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:14 -#, python-format -msgid "" -"Use the 'Customize 'menu to define a fallback background image for not " -"compatible devices" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "" -"Use this building block to showcase your content with an images carousel. " -"You can edit, add or remove images using the customize options." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Use this component for creating a list of featured elements to which you " -"want to bring attention." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "" -"Use this paragraph to write a short, sweet and successful resume about this " -"member of your team." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Use this snippet to build various types of components that feature a left- " -"or right-aligned image alongside textual content. Duplicate the element to " -"create a list that fit your needs." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -"Use this timeline as a part of your resume, to show your visitors what " -"you've done in the past." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Useful options" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:17 -#, python-format -msgid "Video" -msgstr "Vidéo" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_product_list -msgid "View item" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "We have Awesome Products" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Which trends to follow? Which ideas will work?
        Opening Keynote - " -"Presented by John DOE." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Wine" -msgstr "Vin" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "" -"With Theme Clean you get a list of your events with date, time, description, etc. Select the simple or image mode and edit your content.\n" -"
        You can link your events to your favorite social network." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "With a great subtitle" -msgstr "Avec un super sous-titre" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "With the most effective technique" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Write Something Nice for Your Users" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Write a description of your event here." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "" -"Write a quote here from one of your customers. Quotes are a great way to " -"build confidence in your products or services." -msgstr "" -"Ecrivez une citation d'un de vos clients ici. Les citations sont une superbe" -" manière de construire la confiance dans vos produits ou services." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Write one or two paragraphs describing your product" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "" -"Write one or two paragraphs describing your product, services or a specific " -"feature. To be successful your content needs to be useful to your readers." -msgstr "" -"Ecrivez un ou deux paragraphes décrivant votre produit, vos services ou une " -"fonctionnalité spécifique. Votre contenu doit être utile pour l'utilisateur " -"afin d'être efficace. " - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can change the box color by using the customize option." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "You can edit, duplicate..." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can even replace the icon by one of your choice." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "You get a free drink with your entrance!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Your Event Name" -msgstr "Le nom de votre événement" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:11 -#, python-format -msgid "Your address" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Your title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Your website is where almost all of your customers will end up first. " -"
        Let's clear up what it takes to give them the best experience with it." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "ZUY4OPLQ" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "card" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:16 -#, python-format -msgid "e.g. De Brouckere, Brussels, Belgium" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:44 -#, python-format -msgid "iframe" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "link under the video." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "link." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "off" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:41 -#, python-format -msgid "share" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "with this theme." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "worldwilde" -msgstr "" diff --git a/theme_clean/theme_common/i18n/nl.po b/theme_clean/theme_common/i18n/nl.po deleted file mode 100644 index 5141a6c..0000000 --- a/theme_clean/theme_common/i18n/nl.po +++ /dev/null @@ -1,2324 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * theme_common -# -# Translators: -# Martin Trigaux, 2019 -# Erwin van der Ploeg , 2019 -# Gunther Clauwaert , 2019 -# Cas Vissers , 2019 -# Yenthe Van Ginneken , 2019 -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 12.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-24 09:00+0000\n" -"PO-Revision-Date: 2019-04-24 11:21+0000\n" -"Last-Translator: Yenthe Van Ginneken , 2019\n" -"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$15/mo" -msgstr "$15/mnd" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$29/mo" -msgstr "$29/mnd" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$69/mo" -msgstr "$69/mnd" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$99/mo" -msgstr "$99/mnd" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- ART DIRECTOR -" -msgstr "- ART DIRECTOR -" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- PARTNER -" -msgstr "- PARTNER -" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- TRAINEE -" -msgstr "- STAGIAR -" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "-50% OFF" -msgstr "-50% KORTING" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "...and switch the timeline contents to fit your needs." -msgstr "... en wissel de tijdslijn inhoud naar uw vereisten." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 03-11-2014 ///" -msgstr "/// 03-11-2014 ///" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 08-11-2014 ///" -msgstr "/// 08-11-2014 ///" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 22-10-2014 ///" -msgstr "/// 22-10-2014 ///" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 28-10-2014 ///" -msgstr "/// 28-10-2014 ///" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "02" -msgstr "02" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "05" -msgstr "05" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "1000 Apps" -msgstr "1000 Apps" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "12:00 AM" -msgstr "12:00" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "18" -msgstr "18" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "20.000 Users" -msgstr "20.000 Gebruikers" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "2014" -msgstr "2014" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "21" -msgstr "21" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "234 Clients" -msgstr "234 klanten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "25%" -msgstr "25%" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "30 Countries" -msgstr "30 landen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "30%" -msgstr "30%" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "50$" -msgstr "50$" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "75 Partners" -msgstr "75 Partners" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Page Title" -msgstr "Pagina titel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map -msgid "" -"Visit us:\n" -" Our office is located in the northeast of Brussels. TEL (555) 432 2365" -msgstr "" -"Bezoek ons:\n" -"Ons kantoor bevind zich in het noord-oosten van Brussel. TEL (555) 432 2365" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Date" -msgstr "" -"\n" -" Datum" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Images" -msgstr "Afbeeldingen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Time" -msgstr "" -"\n" -" Tijd" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid " More Details" -msgstr " Meer Details" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Notes" -msgstr "Notities" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Location" -msgstr "" -"\n" -" Locatie" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 100+ conferences" -msgstr "" -"\n" -" 100+ conferenties" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "News" -msgstr "Nieuws" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Edit" -msgstr "Wijzig" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 2,000+ attendees" -msgstr "" -"\n" -" 2,000+ deelnemers" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -msgid "Position" -msgstr " Positie" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid " Autoplay" -msgstr "Automatisch afspelen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Image position" -msgstr "Positie afbeelding" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Inner Spacing" -msgstr "Binnenste tussenruimte" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles_options -msgid "Color" -msgstr "Kleur" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Colors" -msgstr " Kleuren" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Facebook" -msgstr " Facebook" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Map Options" -msgstr "Map opties" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block_option -msgid "Video Options" -msgstr "Video Opties" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Type" -msgstr "Soort" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Zoom" -msgstr "Zoom" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " GitHub" -msgstr " GitHub" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "" -" - An additional " -"information" -msgstr "" -" - Extra " -"informatie" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -" An additional " -"information" -msgstr " Extra informatie" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Linkedin" -msgstr " Linkedin" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Styles" -msgstr "Stijlen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Add Slide" -msgstr "Dia toevoegen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Add a new Slide" -msgstr "Nieuwe slide toevoegen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Caption position" -msgstr "Positie onderschrift" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Delete Slide" -msgstr "Slide verwijderen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Remove current slide" -msgstr "Huidige slide verwijderen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "* Conditions and restrictions apply." -msgstr "* Condities en restricties toepassen." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Clients" -msgstr "Klanten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Followers" -msgstr "Volgers" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Projects" -msgstr "Projecten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2015" -msgstr "2015" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2018" -msgstr "2018" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2019" -msgstr "2019" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" Next" -msgstr "" -"\n" -" Volgende" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "" -"\n" -" Next" -msgstr "" -"\n" -" Volgende" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" Previous" -msgstr "" -"\n" -" Vorige" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "" -"\n" -" Previous" -msgstr "" -"\n" -" Vorige" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "First feature" -msgstr "Eerste optie" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Another feature" -msgstr "Een andere optie" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Second feature" -msgstr "Tweede optie" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Last Feature" -msgstr "Laatste optie" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Link" -msgstr " Link" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Info" -msgstr " Info" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Chardonnay\n" -" Sonoma Coast, 2012" -msgstr "" -"Chardonnay\n" -"Sonoma kust, 2012" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Malbec\n" -" Mendoza, 2012" -msgstr "" -"Malbec\n" -"Mendoza, 2012" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Pinot Noir\n" -" California, 2012" -msgstr "" -"Pinot Noir\n" -"Californië, 2012" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Rose\n" -" Napa, 2012" -msgstr "" -"Rose\n" -"Napa, 2012" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"rum, lime, juice cane sugar\n" -" fresh mint, soda, ice" -msgstr "" -"rum, limoen, sap rietsuiker\n" -"verse munt, frisdrank, ijs" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"whiskey, vermouth, angostura,\n" -" maraschino cherry" -msgstr "" -"Whiskey, vermouth, angostura,\n" -"Maraschino Kersen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"white tequila, frenadine,\n" -" orange juice, soda, ice" -msgstr "" -"witte tequila, frenadine,\n" -"sinaasappelsap, soda, ijs" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"white tequila, triple sec,\n" -" lime juice, ice" -msgstr "" -"witte tequila, triple sec,\n" -" limoensap, ijs" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "" -"\n" -" Tag\n" -" \n" -" \n" -" Category\n" -" " -msgstr "" -"\n" -" Label\n" -" \n" -" \n" -" Categorie\n" -" " - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 3 months ago\n" -" \n" -" \n" -" by John DOE\n" -" " -msgstr "" -"\n" -" 3 maanden geleden\n" -" \n" -" \n" -" door John DOE\n" -" " - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_badge -msgid "" -"\n" -" Category\n" -" " -msgstr "" -"\n" -" Categorie\n" -" " - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" New\n" -" " -msgstr "" -"\n" -" Nieuw\n" -" " - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"18\n" -" December" -msgstr "" -"18\n" -" December" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"3\n" -" January" -msgstr "" -"3\n" -" Januari" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "12" -msgstr "12" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "45" -msgstr "45" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "37" -msgstr "37" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "01." -msgstr "01." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "02." -msgstr "02." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Close" -msgstr "Sluiten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress_bar -msgid "80% Development" -msgstr "80% ontwkkeling" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "80% Html5/CSS3" -msgstr "80% Html5/CSS3" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "85% Bootstrap" -msgstr "85% Bootstrap" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "99% COMPLETE" -msgstr "99% VOLTOOID" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "A caption for this image" -msgstr "Een bijschrift voor deze afbeelding" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " 20,7K " -msgstr " 20,7K " - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "120GB Disk Space" -msgstr "120GB opslagruimte" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "143" -msgstr "143" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "245" -msgstr "245" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "50GB Disk Space" -msgstr "50GB opslagruimte" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "80GB Disk Space" -msgstr "80GB opslagruimte" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "COMPANY: Odoo" -msgstr "BEDRIJF: Odoo" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "FUNCTION: Web Designer / UI." -msgstr "FUNCTIE: Web Designer / UI." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Free Billing Systems" -msgstr "Gratis facturatiesystemen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "" -"Increase the amount of your visitors by offering them great discount.\n" -"
        Let them find the coupon code." -msgstr "" -"Verhoog het aantal bezoekers door ze een geweldige korting aan te bieden.\n" -"
        Laat ze de kortingscode vinden." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "My great button" -msgstr "Mijn geweldige knop" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "" -"Skills: html5, css3, jquery, " -"bootstrap3" -msgstr "" -"Skills: html5, css3, jquery, " -"bootstrap3" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "Ongelimiteerde e-mailadressen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Domains" -msgstr "Ongelimiteerde domeinen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "Ongelimiteerde e-mailadressen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited MySQL Databases" -msgstr "Ongelimiteerde MySQL databases" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "" -"Write something about you.This is a good way to briefly " -"tell your visitors who you are and what you do. Link Clean Flat Profile to " -"your social networks and use the customizable progress bars to show your " -"skills." -msgstr "" -"Schrijf iets over u.Dit is een goede manier om uw bezoekers" -" te vertellen wie u bent en wat u doet. Link profielen naar uw sociale " -"netwerken en gebruik de personaliseerbare voortgangsbalken om uw " -"vaardigheden te tonen." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "A Big Image and a Paragraph" -msgstr "Een grote afbeelding en een paragraaf" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image_parallax -msgid "A Business Theme For Odoo CMS" -msgstr "Een bedrijfsthema voor Odoo CMS" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "A COLOR BLOCK" -msgstr "EEN KLEUR BLOK" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "A Great Way to Present Your Team" -msgstr "Een geweldige manier om uw team te presenteren" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "A Great Way to Show Your Numbers" -msgstr "Een geweldige manier om uw cijfers te tonen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "A Great way to show your range" -msgstr "Een geweldige manier om uw aanbod te tonen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "A great title" -msgstr "Een goede titel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story." -msgstr "" -"Een geweldige manier om de aandacht van uw lezer te krijgen is om een " -"verhaal te vertellen. Alles wat je bedenkt om te schrijven kan worden " -"verteld als een verhaal." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story. Write one or two paragraphs " -"describing your product or services. To be successful your content needs to " -"be useful to your readers. Start with the customer. Find out what they want " -"and give it to them." -msgstr "" -"Een geweldige manier om uw lezer zijn aandacht te trekken is door een " -"verhaal te vertellen. Alles wat u overweegt om te schrijven kan als een " -"verhaal geschreven worden. Schrijf één of twee paragrafen die uw product of " -"diensten omschrijven. Om succesvol te zijn moet uw inhoud bruikbaar zijn " -"voor lezers. Start met de klant. Vind wat ze willen en geef het aan hen." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story. Write one or two paragraphs " -"describing your product or services. To be successful your content needs to " -"be useful to your readers. Start with the customer. Find out what they want " -"and give it to them. A great way to catch your reader's attention is to tell" -" a story. Everything you consider writing can be told as a story. Write one " -"or two paragraphs describing your product or services. To be successful your" -" content needs to be useful to your readers. Start with the customer. Find " -"out what they want and give it to them." -msgstr "" -"Een geweldige manier om uw lezer zijn aandacht te krijgen is door een " -"verhaal te vertellen. Alles wat u overweegt om te vertellen kan geschreven " -"worden als een verhaal. Schrijf één of twee paragrafen die uw producten of " -"diensten omschrijven. Om succesvol te zijn moet uw inhoud handig zijn voor " -"de lezer. Start met de klant. Ontdek wat de klant wilt en geef het aan hem. " -"Een geweldige manier om uw lezer zijn aandacht te krijgen is door een " -"verhaal te vertellen. Alles wat u overweegt om te vertellen kan geschreven " -"worden als een verhaal. Schrijf één of twee paragrafen die uw producten of " -"diensten omschrijven. Om succesvol te zijn moet uw inhoud handig zijn voor " -"de lezer. Start met de klant. Ontdek wat de klant wilt en geef het aan hem. " - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -"A timeline is a graphical representation on which important events are " -"marked." -msgstr "" -"Een tijdslijn is een grafische voorstelling voor een tijdsperiode, waarop " -"belangrijke momenten aangeduid zijn." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "ALL DAY" -msgstr "HELE DAG" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "About Me" -msgstr "Over mij" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Add Slide" -msgstr "Slide toevoegen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Add to cart" -msgstr "Voeg toe aan mandje" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:31 -#, python-format -msgid "" -"Add videos, playlists or other contents pasting the iframe code or video url" -" into the box." -msgstr "" -"Voeg video's, afspeellijsten of andere inhoud toe door de iframe code of " -"video url in het vak te plakken." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Add your co-Workers and a link to their profiles." -msgstr "Voeg uw medewerkers toe en voeg een link toe aan uw profielen." - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:5 -#, python-format -msgid "Address" -msgstr "Adres" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Amazing pages" -msgstr "Geweldige pagina's" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "An Other Color Block" -msgstr "Een andere kleur blok" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "And a great subtitle" -msgstr "En een geweldige ondertitel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Animal Cannibals" -msgstr "Animal Cannibals" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Animated" -msgstr "Geanimeer" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:109 -#, python-format -msgid "Apply" -msgstr "Toepassen" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:81 -#, python-format -msgid "Autoplay" -msgstr "Automatisch afspelen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"BLACKBIRD VINEYARDS | € " -"11.00" -msgstr "" -"BLACKBIRD VINEYARDS | € " -"11.00" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Basement Jaxx" -msgstr "Basement Jaxx" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Beautiful snippets" -msgstr "Prachtige snippets" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "Big Icons" -msgstr "Grote iconen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Bigger" -msgstr "Groter" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Left" -msgstr "Linksonder" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Right" -msgstr "Rechtsonder" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box Description" -msgstr "Box omschrijving" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box title" -msgstr "Box titel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Build relationships and recognition by staying in touch with your customers." -msgstr "" -"Bouw relaties en erkenningen door in contact te blijven met uw klanten." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"COLORES DEL SOL | € " -"12.00" -msgstr "" -"COLORES DEL SOL | € " -"12.00" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "COUPON" -msgstr "KORTINGSBON" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:53 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:108 -#, python-format -msgid "Cancel" -msgstr "Annuleren" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_frontend.js:51 -#, python-format -msgid "Cannot load google map, check your configuration !" -msgstr "Kan Google maps niet laden, controleer uw configuratie!" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Change the color of this box" -msgstr "Wijzig de kleur van deze box" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Click here" -msgstr "Klik hier" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Click on the icon to adapt it
        to your purpose." -msgstr "Klik op het icoon om het te wijzigen
        aan uw doel." - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Click the" -msgstr "Klik op de" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:8 -#, python-format -msgid "Close" -msgstr "Afsluiten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Cocktails" -msgstr "Cocktails" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Collapsable Tab Code" -msgstr "Inklapbare tab code" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "" -"Color blocks are a simple and effective way to present and highlight" -" your content. Choose an image or a color for the background. You " -"can even resize and duplicate the blocks to create your own layout. Add " -"images or icons to customize the blocks." -msgstr "" -"Kleurblokken zijn een gemakkelijke en effectieve manier om uw inhoud" -" te tonen en presenteren. Kies een afbeelding of een kleur voor de " -"achtergrond. U kan zelfs de blokken herschalen en dupliceren om uw eigen " -"layout te maken. Voeg afbeeldingen of iconen toe om de blokken te " -"personaliseren." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_pricing -msgid "Colors" -msgstr "Kleuren" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Continue reading " -msgstr "" -"Ga verder met lezen " - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Convert your visitors to customers." -msgstr "Converteer uw bezoekers naar klanten." - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:36 -#, python-format -msgid "Copy the code provided in the expanded box." -msgstr "Kopieer de code uit de uitgeklapte box." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Create an irresistible website." -msgstr "Bouw een onweerstaanbare website." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Customize Backgrounds" -msgstr "Aanpasbare achtergronden" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:37 -#, python-format -msgid "Customize your map" -msgstr "Personaliseer uw kaart" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Cycling through elements" -msgstr "Fietsen door elementen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DECISIONS, DECISIONS, AND EVEN MORE DECISIONS" -msgstr "BESLISSINGEN, BESLISSINGEN, EN NOG MEER BESLISSINGEN" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DESIGN, DESIGN, AND EVEN MORE DESIGN" -msgstr "DESIGN, DESIGN, EN NOG MEER DESIGN" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "DISCOVER THE PRODUCT" -msgstr "ONTDEK HET PRODUCT" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Deciding the features" -msgstr "De mogelijkheden beslissen" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:24 -#, python-format -msgid "Default" -msgstr "Standaard" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "" -"Design expression comes from the combined effect of all elements in a " -"product. Colour tone, shape and size should direct a person's thoughts " -"towards buying the product. Therefore it is in the product designer's best " -"interest to consider the audiences who are most likely to be the product's " -"end consumers. Keeping in mind how consumers will perceive the product " -"during the design process will direct towards the product’s success in the " -"market. However, even within a specific audience, it is challenging to cater" -" to each possible personality within that group." -msgstr "" -"Ontwerp uitdrukkingen komen vanuit het gecombineerde effect van alle " -"elementen in een product. Kleurtoon, vorm en grootte moeten een koper zijn " -"aandacht richten op het product kopen. Daarom is het in het belang van de " -"product ontwerpen om de doelgroepen in het oog te houden die waarschijnlijk " -"de eindklant zijn. In het achterhoofd houden hoe de consumenten het product " -"zullen zien tijdens het product zal bijdragen aan het product zijn succes. " -"Hoewel, zelfs met een specifieke doelgroep, het een uitdaging is om elke " -"persoonlijkheid te verzorgen binnen de doelgroep." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Discover" -msgstr "Ontdek" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Discover all the features" -msgstr "Ontdek alle mogelijkheden" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Display Your Last Activities" -msgstr "Toon uw laatste activiteiten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Double-click an icon to change it." -msgstr "Dubbelklik op een icoon om het te wijzigen." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Drink menu" -msgstr "Drinken menu" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Duplicate blocks
        to add more steps." -msgstr "Dupliceer bouwblokken
        om meer stappen toe te voegen." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Edit this text and change it with your content." -msgstr "Wijzig deze tekst en voeg uw content toe." - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Embed" -msgstr "Insluiten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Event Heading" -msgstr "Event hoofding" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"FRANCIS FORD COPPOLA | €" -" 9.00" -msgstr "" -"FRANCIS FORD COPPOLA | €" -" 9.00" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "False" -msgstr "Onwaar" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "Features" -msgstr "Mogelijkheden" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:92 -#, python-format -msgid "Fill container with video" -msgstr "Vul container met video" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:23 -#, python-format -msgid "Flat" -msgstr "Vast" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Fleetwood Mac" -msgstr "Fleetwood Mac" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "" -"Focus on what the customer would like to know, not what you want to show. " -"Write a small explanation of this great feature" -msgstr "" -"Focus op wat de klant zou willen weten, niet wat u wilt tonen. Schrijf een " -"korte uitleg van deze geweldige optie" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Fonts" -msgstr "Lettertypes" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Freak!" -msgstr "Freak!" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Full Detailed Price List" -msgstr "Volledig gedetailleerde prijslijst" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "GIFT" -msgstr "CADEAU" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Get Delivered" -msgstr "Krijg geleverd" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Get a code" -msgstr "Krijg een code" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Getting feedback" -msgstr "Feedback krijgen" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:22 -#, python-format -msgid "HTML5 Video - Youtube - Vimeo - Dailymotion" -msgstr "HTML5 Video - Youtube - Vimeo - Dailymotion" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Hamburgers" -msgstr "Hamburgers" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:32 -#, python-format -msgid "Here’s how to embed a Youtube video:" -msgstr "Hier is hoe u een Youtube video insluit:" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Highlight Your Content" -msgstr "Highlight uw inhoud" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Honey Dijon Chicken Burger | " -"€ 12.00" -msgstr "" -"Honey Dijon Chicken Burger | " -"€ 12.00" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Hybrid" -msgstr "Hybride" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Icon Box / Features List" -msgstr "Icoon vak / Mogelijkheden lijst" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Images Carousel" -msgstr "Afbeelding carousel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "" -"In a systematic approach, product designers conceptualize and evaluate " -"ideas, turning them into tangible inventions and products. The product " -"designer's role is to combine art, science, and technology to create new " -"products that other people can use." -msgstr "" -"In een systematische aanpak conceptualiseren product ontwerpers en evalueren" -" ze ideeën; om ze om te vormen in tastbare uitvindingen en producten. De rol" -" van de product ontwerpen is om kunst, wetenschap en technologie te " -"combineren om nieuwe producten te maken die andere mensen kunnen gebruiken." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Introduce your content in few lines." -msgstr "Introduceer uw inhoud in een paar lijnen." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "It is super easy to resize and/or duplicate each box." -msgstr "" -"Het is enorm gemakkelijk te wijzigen van grootte en/of om elke box te " -"dupliceren." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "John DOE" -msgstr "John DOE" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "John DOE • CEO of MyCompany" -msgstr "John DOE • CEO van MijnBedrijf" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "John Doe" -msgstr "John Doe" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Jul" -msgstr "Jul" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "LV5MAY14" -msgstr "LV5MAY14" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Layout" -msgstr "Layout" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Left" -msgstr "Links" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Let your customers follow
        and understand your process." -msgstr "Laat uw klanten uw proces
        volgen en begrijpen." - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:74 -#, python-format -msgid "Loop video" -msgstr "Video loopen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iste eius, nam " -"optio dolor mollitia, consectetur asperiores libero illum. Repellendus, " -"molestias consequatur rem ipsa. Tempora omnis eius, ipsam quaerat optio " -"suscipit necessitatibus aliquam obcaecati. Vero quia mollitia repellendus " -"maxime, alias. Harum!" -msgstr "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iste eius, nam " -"optio dolor mollitia, consectetur asperiores libero illum. Repellendus, " -"molestias consequatur rem ipsa. Tempora omnis eius, ipsam quaerat optio " -"suscipit necessitatibus aliquam obcaecati. Vero quia mollitia repellendus " -"maxime, alias. Harum!" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laboriosam " -"repellendus sunt nobis libero delectus aperiam animi porro, optio expedita " -"odio impedit quae praesentium fugit consequuntur vero architecto, excepturi," -" maiores aliquid." -msgstr "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laboriosam " -"repellendus sunt nobis libero delectus aperiam animi porro, optio expedita " -"odio impedit quae praesentium fugit consequuntur vero architecto, excepturi," -" maiores aliquid." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perspiciatis " -"nobis, tempore voluptatem qui dolorum quae." -msgstr "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perspiciatis " -"nobis, tempore voluptatem qui dolorum quae." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellendus ullam " -"minus qui aliquid optio, animi nam odio iste quisquam voluptas laudantium, " -"magni recusandae nemo eligendi!" -msgstr "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellendus ullam " -"minus qui aliquid optio, animi nam odio iste quisquam voluptas laudantium, " -"magni recusandae nemo eligendi!" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rerum incidunt, " -"eum quae neque officiis dignissimos, veritatis amet, dolorum aperiam tempore" -" sed. Modi rerum velit itaque ex nobis vero necessitatibus adipisci eaque " -"cum iste nisi molestias quibusdam, voluptate odit deserunt, beatae." -msgstr "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rerum incidunt, " -"eum quae neque officiis dignissimos, veritatis amet, dolorum aperiam tempore" -" sed. Modi rerum velit itaque ex nobis vero necessitatibus adipisci eaque " -"cum iste nisi molestias quibusdam, voluptate odit deserunt, beatae." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vitae, inventore " -"accusantium dolores. Ad non necessitatibus recusandae cupiditate animi " -"quibusdam enim earum, nulla, qui. Dolorem sunt impedit similique a quia " -"earum fuga unde, repellendus omnis iure." -msgstr "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vitae, inventore " -"accusantium dolores. Ad non necessitatibus recusandae cupiditate animi " -"quibusdam enim earum, nulla, qui. Dolorem sunt impedit similique a quia " -"earum fuga unde, repellendus omnis iure." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MANHATTAN | € 12.50" -msgstr "" -"MANHATTAN | € " -"12.50" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MARGARITA | € 9.00" -msgstr "MARGARITA | € 9.00" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MOJITO | € 12.00" -msgstr "MOJITO | € 12.00" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:20 -#, python-format -msgid "Marker Style" -msgstr "Markeer stijl" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Media heading" -msgstr "Media hoofding" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Medium" -msgstr "Medium" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Menu A'la carte" -msgstr "Menu A'la carte" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "More Features" -msgstr "Meer features" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:60 -#, python-format -msgid "Muted" -msgstr "Gedempt" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "My Title" -msgstr "Mijn titel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Next" -msgstr "Volgende" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Nice % Discount Tables" -msgstr "Mooie % kortingstabellen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Nice and Efficient Events List" -msgstr "Mooie en efficiënte evenement lijsten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Normal" -msgstr "Normaal" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "OLV4SY3R" -msgstr "OLV4SY3R" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "OUR CATALOG" -msgstr "ONZE CATALOGUS" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:54 -#, python-format -msgid "Options" -msgstr "Opties" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -msgid "Organize Your Content with These Three Columns" -msgstr "Organiseer uw inhoud met deze drie kolommen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Organize Your Content with These Two Columns" -msgstr "Organiseer uw inhoud met deze twee kolommen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Outstanding images" -msgstr "Uitgaande afbeeldingen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"PATZ AND HALL | € " -"12.50" -msgstr "" -"PATZ AND HALL | € " -"12.50" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:37 -#, python-format -msgid "Paste the code into the box." -msgstr "Plak de code in deze box." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Pay" -msgstr "Betaal" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Planning" -msgstr "Planning" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Post heading" -msgstr "Post hoofding" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Prepare for the future of eCommerce." -msgstr "Bereid u voor op de toekomst van e-commerce." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Preparing" -msgstr "Voorbereiding" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "Present your products" -msgstr "Presenteer uw producten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Present your products online!" -msgstr "Presenteer uw producten online!" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Previous" -msgstr "Vorige" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Pro" -msgstr "Pro" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Producing" -msgstr "Produceren" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "" -"Product design is the process of creating a new product to be sold by a " -"business to its customers. A very broad concept, it is essentially the " -"efficient and effective generation and development of ideas through a " -"process that leads to new products." -msgstr "" -"Product ontwerp is het proces van het maken van een nieuw product dat " -"verkocht wordt door een bedrijf aan zijn klanten. Een breed concept, het is " -"in essentie het efficiënt en effectief genereren en ontwerpen van ideeën " -"tijdens een proces dat lijdt tot nieuwe producten." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 01" -msgstr "Project 01" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 02" -msgstr "Project 02" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 03" -msgstr "Project 03" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Put the focus on what you have to say!" -msgstr "Plaats de focus op wat u te zeggen hebt!" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:98 -#, python-format -msgid "Put video in container" -msgstr "Plaats video in een container" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "REGISTER " -msgstr "REGISTREER " - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "Read more" -msgstr "Lees meer" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Register" -msgstr "Registreer" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Remove current slide" -msgstr "Verwijder huidige dia" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Resize and Duplicate" -msgstr "Resize en dupliceren" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "Resume with A Nice Subtitle" -msgstr "Hervat met een leuke subtitel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Resume with a Subtitle" -msgstr "Hervat met een subtitel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Right" -msgstr "Rechts" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "RoadMap" -msgstr "Wegenkaart" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample Title" -msgstr "Voorbeeld titel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample description" -msgstr "Voorbeeld omschrijving" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Sandwich with Ham and Cheese | " -"€ 9.00" -msgstr "" -"Sandwich met ham en kaas | " -"€9.00" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Satellite" -msgstr "Satelliet" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:39 -#, python-format -msgid "Save" -msgstr "Opslaan" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 1" -msgstr "Sectie 1" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 2" -msgstr "Sectie 2" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 3" -msgstr "Sectie 3" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 4" -msgstr "Sectie 4" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 5" -msgstr "Sectie 5" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 6" -msgstr "Sectie 6" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:9 -#, python-format -msgid "Select a video" -msgstr "Selecteer een video" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Select and delete blocks
        to remove some steps." -msgstr "Selecteer en verwijder bouwblokken
        om stappen te verwijderen." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Select the Colors" -msgstr "Selecteer de kleuren" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Select your favorite font combination to emphase your texts." -msgstr "Selecteer uw favoriete lettertype om uw teksten te benadrukken." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Sep" -msgstr "Sep" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block -msgid "Set a catchy headline" -msgstr "Stel een aantrekkelijke kop in" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "Share" -msgstr "Delen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Shipping" -msgstr "Afleveradres" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:67 -#, python-format -msgid "Show controls" -msgstr "Toon controls" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Showcase Your Services and Features" -msgstr "Toon uw diensten en functies" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Sign in" -msgstr "Aanmelden" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Description" -msgstr "Slide omschrijving" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Title" -msgstr "Dia titel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "Slide title" -msgstr "Dia titel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Small" -msgstr "Klein" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Speakers from all over the world will join our experts to give inspiring " -"talks on various topics." -msgstr "" -"Sprekers van over de hele wereld zullen samen met onze experts inspirerende " -"presentaties geven over verschillende onderwerpen." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Striped" -msgstr "Gestreept" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Style" -msgstr "Stijl" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"TEQUILA SUNRISE | € " -"11.00" -msgstr "" -"TEQUILA SUNRISE | € " -"11.00" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_menu_three_columns -msgid "Take a tour" -msgstr "Volg een rondleiding" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Terrain" -msgstr "Terrein" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Testing" -msgstr "Testen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Text Highlight" -msgstr "Tekst highlight" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The best approach" -msgstr "De beste aanpak" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "The famous band comes last time in this year, don't miss it!" -msgstr "De beroemde band komt dit jaar voor de laatste keer, mis het niet!" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The latest technology" -msgstr "De laatste technologie" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "The process from paper version" -msgstr "Het proces vanuit papier versie" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "The product which fits your needs" -msgstr "Het product dat aan uw noden voldoet" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "" -"The solution to that is to create a product that, in its designed appearance" -" and function, expresses a personality or tells a story. Products that carry" -" such attributes are more likely to give off a stronger expression that will" -" attract more consumers. On that note it is important to keep in mind that " -"design expression does not only concern the appearance of a product, but " -"also its function. For example, as humans our appearance as well as our " -"actions are subject to people's judgment when they are making a first " -"impression of us." -msgstr "" -"De oplossing is om een product aan te maken dat, in zijn ontwerp en functie," -" een persoonlijkheid uitdrukt of een verhaal verteld. Producten die zulke " -"kenmerken vertonen geven een sterkere expressie die meer klanten aantrekt. " -"Het is belangrijk dat de ontwerp expressie niet alleen het voorkomen van het" -" product aangaat, maar ook zijn functionaliteit. Bijvoorbeeld, als mensen is" -" onze verschijning alsook onze acties blootgesteld aan mensen hun oordeel " -"wanneer ze een eerste impressie vormen van ons." - -#. module: theme_common -#: model:ir.model,name:theme_common.model_theme_utils -msgid "Theme Utils" -msgstr "Thema tools" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "This Is a Color Block" -msgstr "Dit is een kleurblok" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "This Is a Column" -msgstr "Dit is een kolom" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "" -"This theme does not limit you to one setup, we prefer to give you options. " -"From boxed layout to wide, left sidebars to right and multiple headers; we " -"let you decide. That’s right, you can have your cake and eat some too." -msgstr "" -"Dit thema limiteert u niet tot één opstelling, wij geven u graag opties. Van" -" geboxte layouts tot brede layouts, linkse menubalken of rechtse en meerdere" -" hoofdingen; we laten u kiezen." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Tiny" -msgstr "Klein" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_separator_nav -msgid "Top" -msgstr "Bovenaan" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Left" -msgstr "Links bovenaan" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Right" -msgstr "Rechts bovenaan" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "True" -msgstr "Waar" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Upcoming Events" -msgstr "Aankomende evenementen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Use newsletters to increase your popularity" -msgstr "Gebruik nieuwsbrieven om uw populariteit te verhogen" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:14 -#, python-format -msgid "" -"Use the 'Customize 'menu to define a fallback background image for not " -"compatible devices" -msgstr "" -"Gebruik het 'Personaliseer' menu om een achtergrondafbeelding in te stellen " -"voor niet compatibele toestellen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "" -"Use this building block to showcase your content with an images carousel. " -"You can edit, add or remove images using the customize options." -msgstr "" -"Gebruik deze bouwstenen om uw inhoud te tonen met een afbeeldingen carousel." -" U kan afbeeldingen wijzigen, toevoegen of verwijderen via de personaliseer " -"opties." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Use this component for creating a list of featured elements to which you " -"want to bring attention." -msgstr "" -"Gebruik deze component voor het aanmaken van een lijst met voorgestelde " -"elementen welke u onder de aandacht wilt brengen" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "" -"Use this paragraph to write a short, sweet and successful resume about this " -"member of your team." -msgstr "" -"Gebruik deze paragraaf om een korte, leuke en succesvolle samenvatting te " -"schrijven over dit teamlid." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Use this snippet to build various types of components that feature a left- " -"or right-aligned image alongside textual content. Duplicate the element to " -"create a list that fit your needs." -msgstr "" -"Gebruik deze snippet om verschillende soorten componenten te bouwen die " -"links of rechts uitgelijnde afbeelding tonen naast tekst. Dupliceer het " -"element om een lijst te maken die voldoet aan uw noden." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -"Use this timeline as a part of your resume, to show your visitors what " -"you've done in the past." -msgstr "" -"Gebruik deze tijdlijn als een deel van uw CV, om bezoekers te tonen wat u in" -" het verleden heeft gedaan." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Useful options" -msgstr "Handige opties" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:17 -#, python-format -msgid "Video" -msgstr "Video" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_product_list -msgid "View item" -msgstr "Bekijk item" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "We have Awesome Products" -msgstr "We hebben geweldige producten" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Which trends to follow? Which ideas will work?
        Opening Keynote - " -"Presented by John DOE." -msgstr "" -"Welke trends moet u volgen? Welke ideeën zullen werken?
        Opening keynote " -"- gepresenteerd door John DOE." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Wine" -msgstr "Wijn" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "" -"With Theme Clean you get a list of your events with date, time, description, etc. Select the simple or image mode and edit your content.\n" -"
        You can link your events to your favorite social network." -msgstr "" -"Met dit thema krijgt u een lijst van evenementen met datum, tijd, omschrijving, enz. Selecteer de gemakkelijke of afbeeldingsmodus en wijzig uw inhoud.\n" -"
        U kan uw evenementen linken aan uw favoriete sociale netwerk." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "With a great subtitle" -msgstr "Met een geweldige subtitel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "With the most effective technique" -msgstr "Met de meest effectieve techniek" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Write Something Nice for Your Users" -msgstr "Schrijf iets leuk voor uw gebruikers" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Write a description of your event here." -msgstr "Schrijf hier een omschrijving voor uw evenement." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "" -"Write a quote here from one of your customers. Quotes are a great way to " -"build confidence in your products or services." -msgstr "" -"Schrijf hier een citaat van één van uw klanten. Citaten zijn een geweldige " -"manier om het vertrouwen in uw producten of diensten te vergroten." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Write one or two paragraphs describing your product" -msgstr "Schrijf één of twee paragrafen die uw product omschrijven" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "" -"Write one or two paragraphs describing your product, services or a specific " -"feature. To be successful your content needs to be useful to your readers." -msgstr "" -"Schrijf één of meer paragrafen die uw product, dienst of een specifieke " -"kenmerk te omschrijven. Om succesvol te zijn moet uw inhoud bruikbaar zijn " -"voor uw gebruikers." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can change the box color by using the customize option." -msgstr "U kan de box kleur wijzigen door de personaliseer optie te gebruiken." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "You can edit, duplicate..." -msgstr "U kan wijzigen, dupliceren..." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can even replace the icon by one of your choice." -msgstr "U kan zelfs het icoon wijzigen voor één van uw keuze." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "You get a free drink with your entrance!" -msgstr "U krijgt een gratis drankje bij uw entree!" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Your Event Name" -msgstr "Uw evenementsnaam" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:11 -#, python-format -msgid "Your address" -msgstr "Uw adres" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Your title" -msgstr "Uw titel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Your website is where almost all of your customers will end up first. " -"
        Let's clear up what it takes to give them the best experience with it." -msgstr "" -"Uw website is waar bijna al uw klanten eerst op uitkomen.
        Laten we " -"uitklaren wat er nodig is om hem de beste ervaring hiermee te geven." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "ZUY4OPLQ" -msgstr "ZUY4OPLQ" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "card" -msgstr "kaart" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:16 -#, python-format -msgid "e.g. De Brouckere, Brussels, Belgium" -msgstr "b.v De Brouckere, Brussel, België" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:44 -#, python-format -msgid "iframe" -msgstr "iframe" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "link under the video." -msgstr "link onder de video." - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "link." -msgstr "link." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "off" -msgstr "uit" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:41 -#, python-format -msgid "share" -msgstr "deel" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "with this theme." -msgstr "met dit thema." - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "worldwilde" -msgstr "wereldweid" diff --git a/theme_clean/theme_common/i18n/theme_common.pot b/theme_clean/theme_common/i18n/theme_common.pot deleted file mode 100644 index 5493d8a..0000000 --- a/theme_clean/theme_common/i18n/theme_common.pot +++ /dev/null @@ -1,1976 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * theme_common -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 12.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-24 09:00+0000\n" -"PO-Revision-Date: 2019-04-24 09: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_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$15/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$29/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$69/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$99/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- ART DIRECTOR -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- PARTNER -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- TRAINEE -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "-50% OFF" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "...and switch the timeline contents to fit your needs." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 03-11-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 08-11-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 22-10-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 28-10-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "02" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "05" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "1000 Apps" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "12:00 AM" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "18" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "20.000 Users" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "2014" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "21" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "234 Clients" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "25%" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "30 Countries" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "30%" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "50$" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "75 Partners" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Page Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map -msgid "Visit us:\n" -" Our office is located in the northeast of Brussels. TEL (555) 432 2365" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "\n" -" Date" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Images" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "\n" -" Time" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid " More Details" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Notes" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "\n" -" Location" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "\n" -" 100+ conferences" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "News" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Edit" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "\n" -" 2,000+ attendees" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -msgid "Position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid " Autoplay" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Image position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Inner Spacing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles_options -msgid "Color" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Colors" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Facebook" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Map Options" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block_option -msgid "Video Options" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Type" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Zoom" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " GitHub" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid " - An additional information" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid " An additional information" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Linkedin" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Styles" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Add Slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Add a new Slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Caption position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Delete Slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Remove current slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "* Conditions and restrictions apply." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Clients" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Followers" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Projects" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2015" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2018" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2019" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "\n" -" Next" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "\n" -" Next" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "\n" -" Previous" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "\n" -" Previous" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "First feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Another feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Second feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Last Feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Link" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Info" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Chardonnay\n" -" Sonoma Coast, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Malbec\n" -" Mendoza, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Pinot Noir\n" -" California, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Rose\n" -" Napa, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "rum, lime, juice cane sugar\n" -" fresh mint, soda, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "whiskey, vermouth, angostura,\n" -" maraschino cherry" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "white tequila, frenadine,\n" -" orange juice, soda, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "white tequila, triple sec,\n" -" lime juice, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "\n" -" Tag\n" -" \n" -" \n" -" Category\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "\n" -" 3 months ago\n" -" \n" -" \n" -" by John DOE\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_badge -msgid "\n" -" Category\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "\n" -" New\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "18\n" -" December" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "3\n" -" January" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "12" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "45" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "37" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "01." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "02." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Close" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress_bar -msgid "80% Development" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "80% Html5/CSS3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "85% Bootstrap" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "99% COMPLETE" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "A caption for this image" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " 20,7K " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "120GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "143" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "245" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "50GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "80GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "COMPANY: Odoo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "FUNCTION: Web Designer / UI." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Free Billing Systems" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Increase the amount of your visitors by offering them great discount.\n" -"
        Let them find the coupon code." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "My great button" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Skills: html5, css3, jquery, bootstrap3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Domains" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited MySQL Databases" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Write something about you.This is a good way to briefly tell your visitors who you are and what you do. Link Clean Flat Profile to your social networks and use the customizable progress bars to show your skills." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "A Big Image and a Paragraph" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image_parallax -msgid "A Business Theme For Odoo CMS" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "A COLOR BLOCK" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "A Great Way to Present Your Team" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "A Great Way to Show Your Numbers" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "A Great way to show your range" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "A great title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "A great way to catch your reader's attention is to tell a story. Everything you consider writing can be told as a story." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "A great way to catch your reader's attention is to tell a story. Everything you consider writing can be told as a story. Write one or two paragraphs describing your product or services. To be successful your content needs to be useful to your readers. Start with the customer. Find out what they want and give it to them." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "A great way to catch your reader's attention is to tell a story. Everything you consider writing can be told as a story. Write one or two paragraphs describing your product or services. To be successful your content needs to be useful to your readers. Start with the customer. Find out what they want and give it to them. A great way to catch your reader's attention is to tell a story. Everything you consider writing can be told as a story. Write one or two paragraphs describing your product or services. To be successful your content needs to be useful to your readers. Start with the customer. Find out what they want and give it to them." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "A timeline is a graphical representation on which important events are marked." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "ALL DAY" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "About Me" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Add Slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Add to cart" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:31 -#, python-format -msgid "Add videos, playlists or other contents pasting the iframe code or video url into the box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Add your co-Workers and a link to their profiles." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:5 -#, python-format -msgid "Address" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Amazing pages" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "An Other Color Block" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "And a great subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Animal Cannibals" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Animated" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:109 -#, python-format -msgid "Apply" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:81 -#, python-format -msgid "Autoplay" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "BLACKBIRD VINEYARDS | € 11.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Basement Jaxx" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Beautiful snippets" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "Big Icons" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Bigger" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Left" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Right" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box Description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Build relationships and recognition by staying in touch with your customers." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "COLORES DEL SOL | € 12.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "COUPON" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:53 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:108 -#, python-format -msgid "Cancel" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_frontend.js:51 -#, python-format -msgid "Cannot load google map, check your configuration !" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Change the color of this box" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Click here" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Click on the icon to adapt it
        to your purpose." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Click the" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:8 -#, python-format -msgid "Close" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Cocktails" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Collapsable Tab Code" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "Color blocks are a simple and effective way to present and highlight your content. Choose an image or a color for the background. You can even resize and duplicate the blocks to create your own layout. Add images or icons to customize the blocks." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_pricing -msgid "Colors" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Continue reading " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Convert your visitors to customers." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:36 -#, python-format -msgid "Copy the code provided in the expanded box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Create an irresistible website." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Customize Backgrounds" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:37 -#, python-format -msgid "Customize your map" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Cycling through elements" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DECISIONS, DECISIONS, AND EVEN MORE DECISIONS" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DESIGN, DESIGN, AND EVEN MORE DESIGN" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "DISCOVER THE PRODUCT" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Deciding the features" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:24 -#, python-format -msgid "Default" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "Design expression comes from the combined effect of all elements in a product. Colour tone, shape and size should direct a person's thoughts towards buying the product. Therefore it is in the product designer's best interest to consider the audiences who are most likely to be the product's end consumers. Keeping in mind how consumers will perceive the product during the design process will direct towards the product’s success in the market. However, even within a specific audience, it is challenging to cater to each possible personality within that group." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Discover" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Discover all the features" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Display Your Last Activities" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Double-click an icon to change it." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Drink menu" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Duplicate blocks
        to add more steps." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Edit this text and change it with your content." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Embed" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Event Heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "FRANCIS FORD COPPOLA | € 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "False" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "Features" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:92 -#, python-format -msgid "Fill container with video" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:23 -#, python-format -msgid "Flat" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Fleetwood Mac" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Focus on what the customer would like to know, not what you want to show. Write a small explanation of this great feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Fonts" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Freak!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Full Detailed Price List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "GIFT" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Get Delivered" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Get a code" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Getting feedback" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:22 -#, python-format -msgid "HTML5 Video - Youtube - Vimeo - Dailymotion" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Hamburgers" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:32 -#, python-format -msgid "Here’s how to embed a Youtube video:" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Highlight Your Content" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Honey Dijon Chicken Burger | € 12.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Hybrid" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Icon Box / Features List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Images Carousel" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "In a systematic approach, product designers conceptualize and evaluate ideas, turning them into tangible inventions and products. The product designer's role is to combine art, science, and technology to create new products that other people can use." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Introduce your content in few lines." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "It is super easy to resize and/or duplicate each box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "John DOE" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "John DOE • CEO of MyCompany" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "John Doe" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Jul" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "LV5MAY14" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Layout" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Left" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Let your customers follow
        and understand your process." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:74 -#, python-format -msgid "Loop video" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iste eius, nam optio dolor mollitia, consectetur asperiores libero illum. Repellendus, molestias consequatur rem ipsa. Tempora omnis eius, ipsam quaerat optio suscipit necessitatibus aliquam obcaecati. Vero quia mollitia repellendus maxime, alias. Harum!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laboriosam repellendus sunt nobis libero delectus aperiam animi porro, optio expedita odio impedit quae praesentium fugit consequuntur vero architecto, excepturi, maiores aliquid." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perspiciatis nobis, tempore voluptatem qui dolorum quae." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellendus ullam minus qui aliquid optio, animi nam odio iste quisquam voluptas laudantium, magni recusandae nemo eligendi!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rerum incidunt, eum quae neque officiis dignissimos, veritatis amet, dolorum aperiam tempore sed. Modi rerum velit itaque ex nobis vero necessitatibus adipisci eaque cum iste nisi molestias quibusdam, voluptate odit deserunt, beatae." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vitae, inventore accusantium dolores. Ad non necessitatibus recusandae cupiditate animi quibusdam enim earum, nulla, qui. Dolorem sunt impedit similique a quia earum fuga unde, repellendus omnis iure." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MANHATTAN | € 12.50" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MARGARITA | € 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MOJITO | € 12.00" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:20 -#, python-format -msgid "Marker Style" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Media heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Medium" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Menu A'la carte" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "More Features" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:60 -#, python-format -msgid "Muted" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "My Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Next" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Nice % Discount Tables" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Nice and Efficient Events List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Normal" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "OLV4SY3R" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "OUR CATALOG" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:54 -#, python-format -msgid "Options" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -msgid "Organize Your Content with These Three Columns" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Organize Your Content with These Two Columns" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Outstanding images" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "PATZ AND HALL | € 12.50" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:37 -#, python-format -msgid "Paste the code into the box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Pay" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Planning" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Post heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Prepare for the future of eCommerce." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Preparing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "Present your products" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Present your products online!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Previous" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Pro" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Producing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "Product design is the process of creating a new product to be sold by a business to its customers. A very broad concept, it is essentially the efficient and effective generation and development of ideas through a process that leads to new products." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 01" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 02" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 03" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Put the focus on what you have to say!" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:98 -#, python-format -msgid "Put video in container" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "REGISTER " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "Read more" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Register" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Remove current slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Resize and Duplicate" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "Resume with A Nice Subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Resume with a Subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Right" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "RoadMap" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Sandwich with Ham and Cheese | € 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Satellite" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:39 -#, python-format -msgid "Save" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 1" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 2" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 4" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 5" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 6" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:9 -#, python-format -msgid "Select a video" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Select and delete blocks
        to remove some steps." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Select the Colors" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Select your favorite font combination to emphase your texts." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Sep" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block -msgid "Set a catchy headline" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "Share" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Shipping" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:67 -#, python-format -msgid "Show controls" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Showcase Your Services and Features" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Sign in" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "Slide title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Small" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Speakers from all over the world will join our experts to give inspiring talks on various topics." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Striped" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Style" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "TEQUILA SUNRISE | € 11.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_menu_three_columns -msgid "Take a tour" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Terrain" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Testing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Text Highlight" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The best approach" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "The famous band comes last time in this year, don't miss it!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The latest technology" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "The process from paper version" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "The product which fits your needs" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "The solution to that is to create a product that, in its designed appearance and function, expresses a personality or tells a story. Products that carry such attributes are more likely to give off a stronger expression that will attract more consumers. On that note it is important to keep in mind that design expression does not only concern the appearance of a product, but also its function. For example, as humans our appearance as well as our actions are subject to people's judgment when they are making a first impression of us." -msgstr "" - -#. module: theme_common -#: model:ir.model,name:theme_common.model_theme_utils -msgid "Theme Utils" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "This Is a Color Block" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "This Is a Column" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "This theme does not limit you to one setup, we prefer to give you options. From boxed layout to wide, left sidebars to right and multiple headers; we let you decide. That’s right, you can have your cake and eat some too." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Tiny" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_separator_nav -msgid "Top" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Left" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Right" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "True" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Upcoming Events" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Use newsletters to increase your popularity" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:14 -#, python-format -msgid "Use the 'Customize 'menu to define a fallback background image for not compatible devices" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Use this building block to showcase your content with an images carousel. You can edit, add or remove images using the customize options." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Use this component for creating a list of featured elements to which you want to bring attention." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "Use this paragraph to write a short, sweet and successful resume about this member of your team." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Use this snippet to build various types of components that feature a left- or right-aligned image alongside textual content. Duplicate the element to create a list that fit your needs." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Use this timeline as a part of your resume, to show your visitors what you've done in the past." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Useful options" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:17 -#, python-format -msgid "Video" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_product_list -msgid "View item" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "We have Awesome Products" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Which trends to follow? Which ideas will work?
        Opening Keynote - Presented by John DOE." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Wine" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "With Theme Clean you get a list of your events with date, time, description, etc. Select the simple or image mode and edit your content.\n" -"
        You can link your events to your favorite social network." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "With a great subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "With the most effective technique" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Write Something Nice for Your Users" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Write a description of your event here." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "Write a quote here from one of your customers. Quotes are a great way to build confidence in your products or services." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Write one or two paragraphs describing your product" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Write one or two paragraphs describing your product, services or a specific feature. To be successful your content needs to be useful to your readers." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can change the box color by using the customize option." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "You can edit, duplicate..." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can even replace the icon by one of your choice." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "You get a free drink with your entrance!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Your Event Name" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:11 -#, python-format -msgid "Your address" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Your title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Your website is where almost all of your customers will end up first.
        Let's clear up what it takes to give them the best experience with it." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "ZUY4OPLQ" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "card" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:16 -#, python-format -msgid "e.g. De Brouckere, Brussels, Belgium" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:44 -#, python-format -msgid "iframe" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "link under the video." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "link." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "off" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:41 -#, python-format -msgid "share" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "with this theme." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "worldwilde" -msgstr "" - diff --git a/theme_clean/theme_common/i18n/zh_CN.po b/theme_clean/theme_common/i18n/zh_CN.po deleted file mode 100644 index 5d9344f..0000000 --- a/theme_clean/theme_common/i18n/zh_CN.po +++ /dev/null @@ -1,2142 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * theme_common -# -# Translators: -# v2exerer <9010446@qq.com>, 2019 -# 老窦 北京 <2662059195@qq.com>, 2019 -# Jeff Yu - Elico Corp , 2019 -# diaojiaolou <124412206@qq.com>, 2019 -# ChinaMaker , 2019 -# Martin Trigaux, 2019 -# Jeffery CHEN Fan , 2019 -# Gary Wei , 2019 -# fausthuang, 2019 -# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2019 -# Rangy Chen , 2019 -# e2f_cn c5 , 2019 -# Lisa Zhang , 2019 -# inspur qiuguodong , 2019 -# liAnGjiA , 2019 -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 12.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-04-24 09:00+0000\n" -"PO-Revision-Date: 2019-04-24 11:21+0000\n" -"Last-Translator: liAnGjiA , 2019\n" -"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$15/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$29/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$69/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "$99/mo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- ART DIRECTOR -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- PARTNER -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "- TRAINEE -" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "-50% OFF" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "...and switch the timeline contents to fit your needs." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 03-11-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 08-11-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 22-10-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "/// 28-10-2014 ///" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "02" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "05" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "1000 Apps" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "12:00 AM" -msgstr "12:00 AM" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "18" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "20.000 Users" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "2014" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "21" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "234 Clients" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "25%" -msgstr "25%" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "30 Countries" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "30%" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "50$" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "75 Partners" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Page Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map -msgid "" -"Visit us:\n" -" Our office is located in the northeast of Brussels. TEL (555) 432 2365" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Date" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Images" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Time" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid " More Details" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Notes" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" Location" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 100+ conferences" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "News" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_row -msgid "Edit" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 2,000+ attendees" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -msgid "Position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid " Autoplay" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Image position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Inner Spacing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles_options -msgid "Color" -msgstr "颜色" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Colors" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Facebook" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Map Options" -msgstr "地图选项" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block_option -msgid "Video Options" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Type" -msgstr "类型" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Zoom" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " GitHub" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "" -" - An additional " -"information" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -" An additional " -"information" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " Linkedin" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Styles" -msgstr "样式" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Add Slide" -msgstr "添加幻灯片" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Add a new Slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Caption position" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes_options -msgid "Delete Slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "Remove current slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "* Conditions and restrictions apply." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Clients" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Followers" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Projects" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2015" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2018" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "2019" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" Next" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "" -"\n" -" Next" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" Previous" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "" -"\n" -" Previous" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "First feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Another feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Second feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Last Feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Link" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid " Info" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Chardonnay\n" -" Sonoma Coast, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Malbec\n" -" Mendoza, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Pinot Noir\n" -" California, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"Rose\n" -" Napa, 2012" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"rum, lime, juice cane sugar\n" -" fresh mint, soda, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"whiskey, vermouth, angostura,\n" -" maraschino cherry" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"white tequila, frenadine,\n" -" orange juice, soda, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"white tequila, triple sec,\n" -" lime juice, ice" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "" -"\n" -" Tag\n" -" \n" -" \n" -" Category\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"\n" -" 3 months ago\n" -" \n" -" \n" -" by John DOE\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_badge -msgid "" -"\n" -" Category\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"\n" -" New\n" -" " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"18\n" -" December" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"3\n" -" January" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "12" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "45" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "37" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "01." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "02." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Close" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress_bar -msgid "80% Development" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "80% Html5/CSS3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "85% Bootstrap" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "99% COMPLETE" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "A caption for this image" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid " 20,7K " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "120GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "143" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "245" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "50GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "80GB Disk Space" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "COMPANY: Odoo" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "FUNCTION: Web Designer / UI." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Free Billing Systems" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "" -"Increase the amount of your visitors by offering them great discount.\n" -"
        Let them find the coupon code." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "My great button" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "" -"Skills: html5, css3, jquery, " -"bootstrap3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Domains" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited Email Addresses" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Unlimited MySQL Databases" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "" -"Write something about you.This is a good way to briefly " -"tell your visitors who you are and what you do. Link Clean Flat Profile to " -"your social networks and use the customizable progress bars to show your " -"skills." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "A Big Image and a Paragraph" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image_parallax -msgid "A Business Theme For Odoo CMS" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "A COLOR BLOCK" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "A Great Way to Present Your Team" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "A Great Way to Show Your Numbers" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "A Great way to show your range" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "A great title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story. Write one or two paragraphs " -"describing your product or services. To be successful your content needs to " -"be useful to your readers. Start with the customer. Find out what they want " -"and give it to them." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "" -"A great way to catch your reader's attention is to tell a story. Everything " -"you consider writing can be told as a story. Write one or two paragraphs " -"describing your product or services. To be successful your content needs to " -"be useful to your readers. Start with the customer. Find out what they want " -"and give it to them. A great way to catch your reader's attention is to tell" -" a story. Everything you consider writing can be told as a story. Write one " -"or two paragraphs describing your product or services. To be successful your" -" content needs to be useful to your readers. Start with the customer. Find " -"out what they want and give it to them." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -"A timeline is a graphical representation on which important events are " -"marked." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "ALL DAY" -msgstr "全天" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "About Me" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Add Slide" -msgstr "添加幻灯片" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "Add to cart" -msgstr "加入购物车" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:31 -#, python-format -msgid "" -"Add videos, playlists or other contents pasting the iframe code or video url" -" into the box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Add your co-Workers and a link to their profiles." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:5 -#, python-format -msgid "Address" -msgstr "地址" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Amazing pages" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "An Other Color Block" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block -msgid "And a great subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Animal Cannibals" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Animated" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:109 -#, python-format -msgid "Apply" -msgstr "应用" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:81 -#, python-format -msgid "Autoplay" -msgstr "自动播放" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"BLACKBIRD VINEYARDS | € " -"11.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Basement Jaxx" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Beautiful snippets" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_icons -msgid "Big Icons" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Bigger" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Left" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Bottom Right" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box Description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_clonable_boxes -msgid "Box title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Build relationships and recognition by staying in touch with your customers." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"COLORES DEL SOL | € " -"12.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "COUPON" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:53 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:108 -#, python-format -msgid "Cancel" -msgstr "取消日期" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_frontend.js:51 -#, python-format -msgid "Cannot load google map, check your configuration !" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Change the color of this box" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Click here" -msgstr "点击这里" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Click on the icon to adapt it
        to your purpose." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Click the" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:8 -#, python-format -msgid "Close" -msgstr "关闭" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Cocktails" -msgstr "鸡尾酒" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Collapsable Tab Code" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "" -"Color blocks are a simple and effective way to present and highlight" -" your content. Choose an image or a color for the background. You " -"can even resize and duplicate the blocks to create your own layout. Add " -"images or icons to customize the blocks." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_pricing -msgid "Colors" -msgstr "颜色" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Continue reading " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Convert your visitors to customers." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:36 -#, python-format -msgid "Copy the code provided in the expanded box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Create an irresistible website." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Customize Backgrounds" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:37 -#, python-format -msgid "Customize your map" -msgstr "定制您的地图" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Cycling through elements" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DECISIONS, DECISIONS, AND EVEN MORE DECISIONS" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "DESIGN, DESIGN, AND EVEN MORE DESIGN" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "DISCOVER THE PRODUCT" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Deciding the features" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:24 -#, python-format -msgid "Default" -msgstr "默认" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "" -"Design expression comes from the combined effect of all elements in a " -"product. Colour tone, shape and size should direct a person's thoughts " -"towards buying the product. Therefore it is in the product designer's best " -"interest to consider the audiences who are most likely to be the product's " -"end consumers. Keeping in mind how consumers will perceive the product " -"during the design process will direct towards the product’s success in the " -"market. However, even within a specific audience, it is challenging to cater" -" to each possible personality within that group." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Discover" -msgstr "探索" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "Discover all the features" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Display Your Last Activities" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Double-click an icon to change it." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Drink menu" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Duplicate blocks
        to add more steps." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Edit this text and change it with your content." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "Embed" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Event Heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"FRANCIS FORD COPPOLA | €" -" 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "False" -msgstr "否" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "Features" -msgstr "功能" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:92 -#, python-format -msgid "Fill container with video" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:23 -#, python-format -msgid "Flat" -msgstr "普通" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Fleetwood Mac" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase -msgid "" -"Focus on what the customer would like to know, not what you want to show. " -"Write a small explanation of this great feature" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Fonts" -msgstr "字体" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Freak!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Full Detailed Price List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "GIFT" -msgstr "礼品" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Get Delivered" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Get a code" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Getting feedback" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:22 -#, python-format -msgid "HTML5 Video - Youtube - Vimeo - Dailymotion" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Hamburgers" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:32 -#, python-format -msgid "Here’s how to embed a Youtube video:" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Highlight Your Content" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Honey Dijon Chicken Burger | " -"€ 12.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Hybrid" -msgstr "混合动力" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Icon Box / Features List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "Images Carousel" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "" -"In a systematic approach, product designers conceptualize and evaluate " -"ideas, turning them into tangible inventions and products. The product " -"designer's role is to combine art, science, and technology to create new " -"products that other people can use." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_page_header -msgid "Introduce your content in few lines." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "It is super easy to resize and/or duplicate each box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "John DOE" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "John DOE • CEO of MyCompany" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "John Doe" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Jul" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "LV5MAY14" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Layout" -msgstr "布局" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Left" -msgstr "左" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Let your customers follow
        and understand your process." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:74 -#, python-format -msgid "Loop video" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iste eius, nam " -"optio dolor mollitia, consectetur asperiores libero illum. Repellendus, " -"molestias consequatur rem ipsa. Tempora omnis eius, ipsam quaerat optio " -"suscipit necessitatibus aliquam obcaecati. Vero quia mollitia repellendus " -"maxime, alias. Harum!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laboriosam " -"repellendus sunt nobis libero delectus aperiam animi porro, optio expedita " -"odio impedit quae praesentium fugit consequuntur vero architecto, excepturi," -" maiores aliquid." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perspiciatis " -"nobis, tempore voluptatem qui dolorum quae." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellendus ullam " -"minus qui aliquid optio, animi nam odio iste quisquam voluptas laudantium, " -"magni recusandae nemo eligendi!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rerum incidunt, " -"eum quae neque officiis dignissimos, veritatis amet, dolorum aperiam tempore" -" sed. Modi rerum velit itaque ex nobis vero necessitatibus adipisci eaque " -"cum iste nisi molestias quibusdam, voluptate odit deserunt, beatae." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vitae, inventore " -"accusantium dolores. Ad non necessitatibus recusandae cupiditate animi " -"quibusdam enim earum, nulla, qui. Dolorem sunt impedit similique a quia " -"earum fuga unde, repellendus omnis iure." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MANHATTAN | € 12.50" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MARGARITA | € 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "MOJITO | € 12.00" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:20 -#, python-format -msgid "Marker Style" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Media heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Medium" -msgstr "媒介" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "Menu A'la carte" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "More Features" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:60 -#, python-format -msgid "Muted" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider -msgid "My Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Next" -msgstr "下一页" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Nice % Discount Tables" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Nice and Efficient Events List" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_masonry_block-opt -msgid "Normal" -msgstr "一般" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "OLV4SY3R" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "OUR CATALOG" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:54 -#, python-format -msgid "Options" -msgstr "选项" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -msgid "Organize Your Content with These Three Columns" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Organize Your Content with These Two Columns" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Outstanding images" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"PATZ AND HALL | € " -"12.50" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:37 -#, python-format -msgid "Paste the code into the box." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Pay" -msgstr "付款" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Planning" -msgstr "计划" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Post heading" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Prepare for the future of eCommerce." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Preparing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "Present your products" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Present your products online!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -#: model_terms:theme.ir.ui.view,arch:theme_common.s_products_carousel -msgid "Previous" -msgstr "上一页" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Pro" -msgstr "Pro" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Producing" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "" -"Product design is the process of creating a new product to be sold by a " -"business to its customers. A very broad concept, it is essentially the " -"efficient and effective generation and development of ideas through a " -"process that leads to new products." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 01" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 02" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_profile -msgid "Project 03" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Put the focus on what you have to say!" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:98 -#, python-format -msgid "Put video in container" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "REGISTER " -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "Read more" -msgstr "阅读更多" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "Register" -msgstr "注册" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_slider_options -msgid "Remove current slide" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Resize and Duplicate" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_column -msgid "Resume with A Nice Subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Resume with a Subtitle" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.options_s_timeline -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Right" -msgstr "右" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "RoadMap" -msgstr "路线图" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Sample description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_full_menu -msgid "" -"Sandwich with Ham and Cheese | " -"€ 9.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Satellite" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_editor.js:39 -#, python-format -msgid "Save" -msgstr "保存" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 1" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 2" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 3" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 4" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 5" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_mini_nav_bar -msgid "Section 6" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:9 -#, python-format -msgid "Select a video" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Select and delete blocks
        to remove some steps." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_4 -msgid "Select the Colors" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Select your favorite font combination to emphase your texts." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Sep" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_block -msgid "Set a catchy headline" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "Share" -msgstr "共享" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "Shipping" -msgstr "送货" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:67 -#, python-format -msgid "Show controls" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Showcase Your Services and Features" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_process_steps -msgid "Sign in" -msgstr "登录" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Description" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider -msgid "Slide Title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_animated_boxes -msgid "Slide title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Small" -msgstr "小" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Speakers from all over the world will join our experts to give inspiring " -"talks on various topics." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_options_progress_bar -msgid "Striped" -msgstr "条纹" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "Style" -msgstr "风格" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "" -"TEQUILA SUNRISE | € " -"11.00" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_menu_three_columns -msgid "Take a tour" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_google_map_option -msgid "Terrain" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "Testing" -msgstr "测试" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_highlight -msgid "Text Highlight" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The best approach" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "The famous band comes last time in this year, don't miss it!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_text_picture_text -msgid "The latest technology" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "The process from paper version" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "The product which fits your needs" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_header_text_big_picture -msgid "" -"The solution to that is to create a product that, in its designed appearance" -" and function, expresses a personality or tells a story. Products that carry" -" such attributes are more likely to give off a stronger expression that will" -" attract more consumers. On that note it is important to keep in mind that " -"design expression does not only concern the appearance of a product, but " -"also its function. For example, as humans our appearance as well as our " -"actions are subject to people's judgment when they are making a first " -"impression of us." -msgstr "" - -#. module: theme_common -#: model:ir.model,name:theme_common.model_theme_utils -msgid "Theme Utils" -msgstr "主题实用工具" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_2 -msgid "This Is a Color Block" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "This Is a Column" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_features_carousel -msgid "" -"This theme does not limit you to one setup, we prefer to give you options. " -"From boxed layout to wide, left sidebars to right and multiple headers; we " -"let you decide. That’s right, you can have your cake and eat some too." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_pricing -msgid "Tiny" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_separator_nav -msgid "Top" -msgstr "顶部" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Left" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image-opt -msgid "Top Right" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_css_slider_options -msgid "True" -msgstr "真" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "Upcoming Events" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "Use newsletters to increase your popularity" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:14 -#, python-format -msgid "" -"Use the 'Customize 'menu to define a fallback background image for not " -"compatible devices" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_images_carousel -msgid "" -"Use this building block to showcase your content with an images carousel. " -"You can edit, add or remove images using the customize options." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Use this component for creating a list of featured elements to which you " -"want to bring attention." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_team_profiles -msgid "" -"Use this paragraph to write a short, sweet and successful resume about this " -"member of your team." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_media_list -msgid "" -"Use this snippet to build various types of components that feature a left- " -"or right-aligned image alongside textual content. Duplicate the element to " -"create a list that fit your needs." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "" -"Use this timeline as a part of your resume, to show your visitors what " -"you've done in the past." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_numbers -msgid "Useful options" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:17 -#, python-format -msgid "Video" -msgstr "视频" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_product_list -msgid "View item" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_big_image -msgid "We have Awesome Products" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Which trends to follow? Which ideas will work?
        Opening Keynote - " -"Presented by John DOE." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_compact_menu -msgid "Wine" -msgstr "酒" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "" -"With Theme Clean you get a list of your events with date, time, description, etc. Select the simple or image mode and edit your content.\n" -"
        You can link your events to your favorite social network." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "With a great subtitle" -msgstr "附带很棒的副标题" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_progress -msgid "With the most effective technique" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_color_blocks_img -#: model_terms:theme.ir.ui.view,arch:theme_common.s_three_columns_circle -#: model_terms:theme.ir.ui.view,arch:theme_common.s_two_columns -msgid "Write Something Nice for Your Users" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Write a description of your event here." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_blockquote -msgid "" -"Write a quote here from one of your customers. Quotes are a great way to " -"build confidence in your products or services." -msgstr "在这里写一个客户的好评。好评是建立客户对你的产品或服务的信心的好方法。" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "Write one or two paragraphs describing your product" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_showcase_image -msgid "" -"Write one or two paragraphs describing your product, services or a specific " -"feature. To be successful your content needs to be useful to your readers." -msgstr "写一两个段落描述您的产品服务或特定功能。要想取得成功,您的内容需要对读者有用。" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can change the box color by using the customize option." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "You can edit, duplicate..." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_icon_box -msgid "You can even replace the icon by one of your choice." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_slide -msgid "You get a free drink with your entrance!" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_event_list -msgid "Your Event Name" -msgstr "你的时间名称" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:11 -#, python-format -msgid "Your address" -msgstr "您的地址" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_timeline -msgid "Your title" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_news_carousel -msgid "" -"Your website is where almost all of your customers will end up first. " -"
        Let's clear up what it takes to give them the best experience with it." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "ZUY4OPLQ" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "card" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:16 -#, python-format -msgid "e.g. De Brouckere, Brussels, Belgium" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:44 -#, python-format -msgid "iframe" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -#, python-format -msgid "link under the video." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -#, python-format -msgid "link." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "off" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:41 -#, python-format -msgid "share" -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_banner_parallax -msgid "with this theme." -msgstr "" - -#. module: theme_common -#: model_terms:theme.ir.ui.view,arch:theme_common.s_discount -msgid "worldwilde" -msgstr "" diff --git a/theme_clean/theme_common/models/__init__.py b/theme_clean/theme_common/models/__init__.py deleted file mode 100644 index ef70e5a..0000000 --- a/theme_clean/theme_common/models/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -# -*- coding: utf-8 -*- -# Part of Odoo. See LICENSE file for full copyright and licensing details. -from . import theme_common diff --git a/theme_clean/theme_common/models/theme_common.py b/theme_clean/theme_common/models/theme_common.py deleted file mode 100644 index 6720d3a..0000000 --- a/theme_clean/theme_common/models/theme_common.py +++ /dev/null @@ -1,16 +0,0 @@ -from odoo import models - - -class ThemeCommon(models.AbstractModel): - _inherit = 'theme.utils' - - def _theme_common_post_copy(self, mod): - self.disable_view('website_theme_install.customize_modal') - - # Reset all default color when switching themes - for nb in range(2, 9): - self.disable_view('theme_common.option_colors_%02d_variables' % nb) - - # For compatibility - # self.enable_view('theme_common.compatibility-saas-11-4-variables') - # self.enable_view('theme_common.compatibility-saas-11-4') diff --git a/theme_clean/theme_common/static/lib/YTPlayer/jquery.mb.YTPlayer.js b/theme_clean/theme_common/static/lib/YTPlayer/jquery.mb.YTPlayer.js deleted file mode 100644 index 6952c9a..0000000 --- a/theme_clean/theme_common/static/lib/YTPlayer/jquery.mb.YTPlayer.js +++ /dev/null @@ -1,1543 +0,0 @@ -/*___________________________________________________________________________________________________________________________________________________ - _ jquery.mb.components _ - _ _ - _ file: jquery.mb.YTPlayer.src.js _ - _ last modified: 01/07/15 19.35 _ - _ _ - _ Open Lab s.r.l., Florence - Italy _ - _ _ - _ email: matteo@open-lab.com _ - _ site: http://pupunzi.com _ - _ http://open-lab.com _ - _ blog: http://pupunzi.open-lab.com _ - _ Q&A: http://jquery.pupunzi.com _ - _ _ - _ Licences: MIT, GPL _ - _ http://www.opensource.org/licenses/mit-license.php _ - _ http://www.gnu.org/licenses/gpl.html _ - _ _ - _ Copyright (c) 2001-2015. Matteo Bicocchi (Pupunzi); _ - ___________________________________________________________________________________________________________________________________________________*/ -var ytp = ytp || {}; - -function onYouTubeIframeAPIReady() { - if( ytp.YTAPIReady ) return; - ytp.YTAPIReady = true; - jQuery( document ).trigger( "YTAPIReady" ); -} - -var getYTPVideoID = function( url ) { - var videoID, playlistID; - if( url.indexOf( "youtu.be" ) > 0 ) { - videoID = url.substr( url.lastIndexOf( "/" ) + 1, url.length ); - playlistID = videoID.indexOf( "?list=" ) > 0 ? videoID.substr( videoID.lastIndexOf( "=" ), videoID.length ) : null; - videoID = playlistID ? videoID.substr( 0, videoID.lastIndexOf( "?" ) ) : videoID; - } else if( url.indexOf( "http" ) > -1 ) { - videoID = url.match( /[\\?&]v=([^&#]*)/ )[ 1 ]; - playlistID = url.indexOf( "list=" ) > 0 ? url.match( /[\\?&]list=([^&#]*)/ )[ 1 ] : null; - } else { - videoID = url.length > 15 ? null : url; - playlistID = videoID ? null : url; - } - return { - videoID: videoID, - playlistID: playlistID - }; -}; - -( function( jQuery, ytp ) { - - jQuery.mbYTPlayer = { - name: "jquery.mb.YTPlayer", - version: "2.9.4", - build: "{{ build }}", - author: "Matteo Bicocchi", - apiKey: "", - defaults: { - containment: "body", - ratio: "auto", // "auto", "16/9", "4/3" - videoURL: null, - playlistURL: null, - startAt: 0, - stopAt: 0, - autoPlay: true, - vol: 50, // 1 to 100 - addRaster: false, - opacity: 1, - quality: "default", //or “small”, “medium”, “large”, “hd720”, “hd1080”, “highres” - mute: false, - loop: true, - showControls: true, - showAnnotations: false, - showYTLogo: true, - stopMovieOnBlur: true, - realfullscreen: true, - gaTrack: true, - optimizeDisplay: true, - onReady: function( player ) {} - }, - /* @fontface icons */ - controls: { - play: "P", - pause: "p", - mute: "M", - unmute: "A", - onlyYT: "O", - showSite: "R", - ytLogo: "Y" - }, - locationProtocol: "https:", - /** - * - * @param options - * @returns [players] - */ - buildPlayer: function( options ) { - return this.each( function() { - var YTPlayer = this; - var $YTPlayer = jQuery( YTPlayer ); - YTPlayer.loop = 0; - YTPlayer.opt = {}; - YTPlayer.state = {}; - YTPlayer.filtersEnabled = true; - YTPlayer.filters = { - grayscale: { - value: 0, - unit: "%" - }, - hue_rotate: { - value: 0, - unit: "deg" - }, - invert: { - value: 0, - unit: "%" - }, - opacity: { - value: 0, - unit: "%" - }, - saturate: { - value: 0, - unit: "%" - }, - sepia: { - value: 0, - unit: "%" - }, - brightness: { - value: 0, - unit: "%" - }, - contrast: { - value: 0, - unit: "%" - }, - blur: { - value: 0, - unit: "px" - } - }; - $YTPlayer.addClass( "mb_YTPlayer" ); - var property = $YTPlayer.data( "property" ) && typeof $YTPlayer.data( "property" ) == "string" ? eval( '(' + $YTPlayer.data( "property" ) + ')' ) : $YTPlayer.data( "property" ); - if( typeof property != "undefined" && typeof property.vol != "undefined" ) property.vol = property.vol === 0 ? property.vol = 1 : property.vol; - jQuery.extend( YTPlayer.opt, jQuery.mbYTPlayer.defaults, options, property ); - if( !YTPlayer.hasChanged ) { - YTPlayer.defaultOpt = {}; - jQuery.extend( YTPlayer.defaultOpt, jQuery.mbYTPlayer.defaults, options, property ); - } - YTPlayer.isRetina = ( window.retina || window.devicePixelRatio > 1 ); - var isIframe = function() { - var isIfr = false; - try { - if( self.location.href != top.location.href ) isIfr = true; - } catch( e ) { - isIfr = true; - } - return isIfr; - }; - YTPlayer.canGoFullScreen = !( jQuery.browser.msie || jQuery.browser.opera || isIframe() ); - if( !YTPlayer.canGoFullScreen ) YTPlayer.opt.realfullscreen = false; - if( !$YTPlayer.attr( "id" ) ) $YTPlayer.attr( "id", "video_" + new Date().getTime() ); - var playerID = "mbYTP_" + YTPlayer.id; - YTPlayer.isAlone = false; - YTPlayer.hasFocus = true; - var videoID = this.opt.videoURL ? getYTPVideoID( this.opt.videoURL ).videoID : $YTPlayer.attr( "href" ) ? getYTPVideoID( $YTPlayer.attr( "href" ) ).videoID : false; - var playlistID = this.opt.videoURL ? getYTPVideoID( this.opt.videoURL ).playlistID : $YTPlayer.attr( "href" ) ? getYTPVideoID( $YTPlayer.attr( "href" ) ).playlistID : false; - YTPlayer.videoID = videoID; - YTPlayer.playlistID = playlistID; - YTPlayer.opt.showAnnotations = ( YTPlayer.opt.showAnnotations ) ? '0' : '3'; - var playerVars = { - 'autoplay': 0, - 'modestbranding': 1, - 'controls': 0, - 'showinfo': 0, - 'rel': 0, - 'enablejsapi': 1, - 'version': 3, - 'playerapiid': playerID, - 'origin': '*', - 'allowfullscreen': true, - 'wmode': 'transparent', - 'iv_load_policy': YTPlayer.opt.showAnnotations - }; - if( document.createElement( 'video' ).canPlayType ) jQuery.extend( playerVars, { - 'html5': 1 - } ); - if( jQuery.browser.msie && jQuery.browser.version < 9 ) this.opt.opacity = 1; - var playerBox = jQuery( "
        " ).attr( "id", playerID ).addClass( "playerBox" ); - var overlay = jQuery( "
        " ).css( { - position: "absolute", - top: 0, - left: 0, - width: "100%", - height: "100%" - } ).addClass( "YTPOverlay" ); - YTPlayer.isSelf = YTPlayer.opt.containment == "self"; - YTPlayer.defaultOpt.containment = YTPlayer.opt.containment = YTPlayer.opt.containment == "self" ? jQuery( this ) : jQuery( YTPlayer.opt.containment ); - YTPlayer.isBackground = YTPlayer.opt.containment.get( 0 ).tagName.toLowerCase() == "body"; - if( YTPlayer.isBackground && ytp.backgroundIsInited ) return; - var isPlayer = YTPlayer.opt.containment.is( jQuery( this ) ); - YTPlayer.canPlayOnMobile = isPlayer && jQuery( this ).children().length === 0; - if( !isPlayer ) { - $YTPlayer.hide(); - } else { - YTPlayer.isPlayer = true; - } - if( jQuery.browser.mobile && !YTPlayer.canPlayOnMobile ) { - $YTPlayer.remove(); - return; - } - var wrapper = jQuery( "
        " ).addClass( "mbYTP_wrapper" ).attr( "id", "wrapper_" + playerID ); - wrapper.css( { - position: "absolute", - zIndex: 0, - minWidth: "100%", - minHeight: "100%", - left: 0, - top: 0, - overflow: "hidden", - opacity: 0 - } ); - playerBox.css( { - position: "absolute", - zIndex: 0, - width: "100%", - height: "100%", - top: 0, - left: 0, - overflow: "hidden" - } ); - wrapper.append( playerBox ); - YTPlayer.opt.containment.children().not( "script, style" ).each( function() { - if( jQuery( this ).css( "position" ) == "static" ) jQuery( this ).css( "position", "relative" ); - } ); - if( YTPlayer.isBackground ) { - jQuery( "body" ).css( { - boxSizing: "border-box" - } ); - wrapper.css( { - position: "fixed", - top: 0, - left: 0, - zIndex: 0 - } ); - $YTPlayer.hide(); - } else if( YTPlayer.opt.containment.css( "position" ) == "static" ) YTPlayer.opt.containment.css( { - position: "relative" - } ); - YTPlayer.opt.containment.prepend( wrapper ); - YTPlayer.wrapper = wrapper; - playerBox.css( { - opacity: 1 - } ); - if( !jQuery.browser.mobile ) { - playerBox.after( overlay ); - YTPlayer.overlay = overlay; - } - if( !YTPlayer.isBackground ) { - overlay.on( "mouseenter", function() { - if( YTPlayer.controlBar ) YTPlayer.controlBar.addClass( "visible" ); - } ).on( "mouseleave", function() { - if( YTPlayer.controlBar ) YTPlayer.controlBar.removeClass( "visible" ); - } ) - } - if( !ytp.YTAPIReady ) { - jQuery( "#YTAPI" ).remove(); - var tag = jQuery( "" ).attr( { - "src": jQuery.mbYTPlayer.locationProtocol + "//www.youtube.com/iframe_api?v=" + jQuery.mbYTPlayer.version, - "id": "YTAPI" - } ); - jQuery( "head" ).prepend( tag ); - } else { - setTimeout( function() { - jQuery( document ).trigger( "YTAPIReady" ); - }, 100 ) - } - jQuery( document ).on( "YTAPIReady", function() { - if( ( YTPlayer.isBackground && ytp.backgroundIsInited ) || YTPlayer.isInit ) return; - if( YTPlayer.isBackground ) { - ytp.backgroundIsInited = true; - } - YTPlayer.opt.autoPlay = typeof YTPlayer.opt.autoPlay == "undefined" ? ( YTPlayer.isBackground ? true : false ) : YTPlayer.opt.autoPlay; - YTPlayer.opt.vol = YTPlayer.opt.vol ? YTPlayer.opt.vol : 100; - jQuery.mbYTPlayer.getDataFromAPI( YTPlayer ); - jQuery( YTPlayer ).on( "YTPChanged", function() { - if( YTPlayer.isInit ) return; - YTPlayer.isInit = true; - //if is mobile && isPlayer fallback to the default YT player - if( jQuery.browser.mobile && YTPlayer.canPlayOnMobile ) { - // Try to adjust the player dimention - if( YTPlayer.opt.containment.outerWidth() > jQuery( window ).width() ) { - YTPlayer.opt.containment.css( { - maxWidth: "100%" - } ); - var h = YTPlayer.opt.containment.outerWidth() * .6; - YTPlayer.opt.containment.css( { - maxHeight: h - } ); - } - new YT.Player( playerID, { - videoId: YTPlayer.videoID.toString(), - height: '100%', - width: '100%', - events: { - 'onReady': function( event ) { - YTPlayer.player = event.target; - playerBox.css( { - opacity: 1 - } ); - YTPlayer.wrapper.css( { - opacity: 1 - } ); - } - } - } ); - return; - } - new YT.Player( playerID, { - videoId: YTPlayer.videoID.toString(), - playerVars: playerVars, - events: { - 'onReady': function( event ) { - YTPlayer.player = event.target; - if( YTPlayer.isReady ) return; - YTPlayer.isReady = YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ? false : true; - YTPlayer.playerEl = YTPlayer.player.getIframe(); - $YTPlayer.optimizeDisplay(); - YTPlayer.videoID = videoID; - jQuery( window ).on( "resize.YTP", function() { - $YTPlayer.optimizeDisplay(); - } ); - jQuery.mbYTPlayer.checkForState( YTPlayer ); - // Trigger state events - var YTPEvent = jQuery.Event( "YTPUnstarted" ); - YTPEvent.time = YTPlayer.player.time; - if( YTPlayer.canTrigger ) jQuery( YTPlayer ).trigger( YTPEvent ); - }, - /** - * - * @param event - * - * -1 (unstarted) - * 0 (ended) - * 1 (playing) - * 2 (paused) - * 3 (buffering) - * 5 (video cued). - * - * - */ - 'onStateChange': function( event ) { - if( typeof event.target.getPlayerState != "function" ) return; - var state = event.target.getPlayerState(); - if( YTPlayer.state == state ) return; - YTPlayer.state = state; - var eventType; - switch( state ) { - case -1: //------------------------------------------------ unstarted - eventType = "YTPUnstarted"; - break; - case 0: //------------------------------------------------ ended - eventType = "YTPEnd"; - break; - case 1: //------------------------------------------------ play - eventType = "YTPStart"; - if( YTPlayer.controlBar ) YTPlayer.controlBar.find( ".mb_YTPPlaypause" ).html( jQuery.mbYTPlayer.controls.pause ); - if( typeof _gaq != "undefined" && eval( YTPlayer.opt.gaTrack ) ) _gaq.push( [ '_trackEvent', 'YTPlayer', 'Play', ( YTPlayer.hasData ? YTPlayer.videoData.title : YTPlayer.videoID.toString() ) ] ); - if( typeof ga != "undefined" && eval( YTPlayer.opt.gaTrack ) ) ga( 'send', 'event', 'YTPlayer', 'play', ( YTPlayer.hasData ? YTPlayer.videoData.title : YTPlayer.videoID.toString() ) ); - break; - case 2: //------------------------------------------------ pause - eventType = "YTPPause"; - if( YTPlayer.controlBar ) YTPlayer.controlBar.find( ".mb_YTPPlaypause" ).html( jQuery.mbYTPlayer.controls.play ); - break; - case 3: //------------------------------------------------ buffer - YTPlayer.player.setPlaybackQuality( YTPlayer.opt.quality ); - eventType = "YTPBuffering"; - if( YTPlayer.controlBar ) YTPlayer.controlBar.find( ".mb_YTPPlaypause" ).html( jQuery.mbYTPlayer.controls.play ); - break; - case 5: //------------------------------------------------ cued - eventType = "YTPCued"; - break; - default: - break; - } - // Trigger state events - var YTPEvent = jQuery.Event( eventType ); - YTPEvent.time = YTPlayer.player.time; - if( YTPlayer.canTrigger ) jQuery( YTPlayer ).trigger( YTPEvent ); - }, - /** - * - * @param e - */ - 'onPlaybackQualityChange': function( e ) { - var quality = e.target.getPlaybackQuality(); - var YTPQualityChange = jQuery.Event( "YTPQualityChange" ); - YTPQualityChange.quality = quality; - jQuery( YTPlayer ).trigger( YTPQualityChange ); - }, - /** - * - * @param err - */ - 'onError': function( err ) { - if( err.data == 150 ) { - console.log( "Embedding this video is restricted by Youtube." ); - if( YTPlayer.isPlayList ) jQuery( YTPlayer ).playNext(); - } - if( err.data == 2 && YTPlayer.isPlayList ) jQuery( YTPlayer ).playNext(); - if( typeof YTPlayer.opt.onError == "function" ) YTPlayer.opt.onError( $YTPlayer, err ); - } - } - } ); - } ); - } ) - } ); - }, - /** - * - * @param YTPlayer - */ - getDataFromAPI: function( YTPlayer ) { - YTPlayer.videoData = jQuery.mbStorage.get( "YYTPlayer_data_" + YTPlayer.videoID ); - jQuery( YTPlayer ).off( "YTPData.YTPlayer" ).on( "YTPData.YTPlayer", function() { - if( YTPlayer.hasData ) { - - if( YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ) { - var bgndURL = YTPlayer.videoData.thumb_max || YTPlayer.videoData.thumb_high || YTPlayer.videoData.thumb_medium; - YTPlayer.opt.containment.css( { - background: "rgba(0,0,0,0.5) url(" + bgndURL + ") center center", - backgroundSize: "cover" - } ); - YTPlayer.opt.backgroundUrl = bgndURL; - } - } - } ); - - if( YTPlayer.videoData ) { - - setTimeout( function() { - YTPlayer.opt.ratio = YTPlayer.opt.ratio == "auto" ? "16/9" : YTPlayer.opt.ratio; - YTPlayer.dataReceived = true; - jQuery( YTPlayer ).trigger( "YTPChanged" ); - var YTPData = jQuery.Event( "YTPData" ); - YTPData.prop = {}; - for( var x in YTPlayer.videoData ) YTPData.prop[ x ] = YTPlayer.videoData[ x ]; - jQuery( YTPlayer ).trigger( YTPData ); - }, 500 ); - - YTPlayer.hasData = true; - } else if( jQuery.mbYTPlayer.apiKey ) { - // Get video info from API3 (needs api key) - // snippet,player,contentDetails,statistics,status - jQuery.getJSON( jQuery.mbYTPlayer.locationProtocol + "//www.googleapis.com/youtube/v3/videos?id=" + YTPlayer.videoID + "&key=" + jQuery.mbYTPlayer.apiKey + "&part=snippet", function( data ) { - YTPlayer.dataReceived = true; - jQuery( YTPlayer ).trigger( "YTPChanged" ); - - function parseYTPlayer_data( data ) { - YTPlayer.videoData = {}; - YTPlayer.videoData.id = YTPlayer.videoID; - YTPlayer.videoData.channelTitle = data.channelTitle; - YTPlayer.videoData.title = data.title; - YTPlayer.videoData.description = data.description.length < 400 ? data.description : data.description.substring( 0, 400 ) + " ..."; - YTPlayer.videoData.aspectratio = YTPlayer.opt.ratio == "auto" ? "16/9" : YTPlayer.opt.ratio; - YTPlayer.opt.ratio = YTPlayer.videoData.aspectratio; - YTPlayer.videoData.thumb_max = data.thumbnails.maxres ? data.thumbnails.maxres.url : null; - YTPlayer.videoData.thumb_high = data.thumbnails.high ? data.thumbnails.high.url : null; - YTPlayer.videoData.thumb_medium = data.thumbnails.medium ? data.thumbnails.medium.url : null; - jQuery.mbStorage.set( "YYTPlayer_data_" + YTPlayer.videoID, YTPlayer.videoData ); - } - parseYTPlayer_data( data.items[ 0 ].snippet ); - YTPlayer.hasData = true; - var YTPData = jQuery.Event( "YTPData" ); - YTPData.prop = {}; - for( var x in YTPlayer.videoData ) YTPData.prop[ x ] = YTPlayer.videoData[ x ]; - jQuery( YTPlayer ).trigger( YTPData ); - } ); - } else { - setTimeout( function() { - jQuery( YTPlayer ).trigger( "YTPChanged" ); - }, 50 ); - if( YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ) { - var bgndURL = jQuery.mbYTPlayer.locationProtocol + "//i.ytimg.com/vi/" + YTPlayer.videoID + "/hqdefault.jpg"; - YTPlayer.opt.containment.css( { - background: "rgba(0,0,0,0.5) url(" + bgndURL + ") center center", - backgroundSize: "cover" - } ); - YTPlayer.opt.backgroundUrl = bgndURL; - } - YTPlayer.videoData = null; - YTPlayer.opt.ratio = YTPlayer.opt.ratio == "auto" ? "16/9" : YTPlayer.opt.ratio; - } - if( YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ) { - YTPlayer.loading = jQuery( "
        " ).addClass( "loading" ).html( "Loading" ).hide(); - jQuery( YTPlayer ).append( YTPlayer.loading ); - YTPlayer.loading.fadeIn(); - } - }, - /** - * - */ - removeStoredData: function() { - jQuery.mbStorage.remove(); - }, - /** - * - * @returns {*|YTPlayer.videoData} - */ - getVideoData: function() { - var YTPlayer = this.get( 0 ); - return YTPlayer.videoData; - }, - /** - * - * @returns {*|YTPlayer.videoID|boolean} - */ - getVideoID: function() { - var YTPlayer = this.get( 0 ); - return YTPlayer.videoID || false; - }, - /** - * - * @param quality - */ - setVideoQuality: function( quality ) { - var YTPlayer = this.get( 0 ); - if( !jQuery.browser.chrome ) YTPlayer.player.setPlaybackQuality( quality ); - }, - /** - * @param videos - * @param shuffle - * @param callback - * @returns {jQuery.mbYTPlayer} - */ - playlist: function( videos, shuffle, callback ) { - var $YTPlayer = this; - var YTPlayer = $YTPlayer.get( 0 ); - YTPlayer.isPlayList = true; - if( shuffle ) videos = jQuery.shuffle( videos ); - if( !YTPlayer.videoID ) { - YTPlayer.videos = videos; - YTPlayer.videoCounter = 0; - YTPlayer.videoLength = videos.length; - jQuery( YTPlayer ).data( "property", videos[ 0 ] ); - jQuery( YTPlayer ).mb_YTPlayer(); - } - if( typeof callback == "function" ) jQuery( YTPlayer ).on( "YTPChanged", function() { - callback( YTPlayer ); - } ); - jQuery( YTPlayer ).on( "YTPEnd", function() { - jQuery( YTPlayer ).playNext(); - } ); - return $YTPlayer; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - playNext: function() { - var YTPlayer = this.get( 0 ); - YTPlayer.videoCounter++; - if( YTPlayer.videoCounter >= YTPlayer.videoLength ) YTPlayer.videoCounter = 0; - jQuery( YTPlayer ).changeMovie( YTPlayer.videos[ YTPlayer.videoCounter ] ); - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - playPrev: function() { - var YTPlayer = this.get( 0 ); - YTPlayer.videoCounter--; - if( YTPlayer.videoCounter < 0 ) YTPlayer.videoCounter = YTPlayer.videoLength - 1; - jQuery( YTPlayer ).changeMovie( YTPlayer.videos[ YTPlayer.videoCounter ] ); - return this; - }, - /** - * - * @param opt - */ - changeMovie: function( opt ) { - var YTPlayer = this.get( 0 ); - YTPlayer.opt.startAt = 0; - YTPlayer.opt.stopAt = 0; - YTPlayer.opt.mute = true; - YTPlayer.hasData = false; - YTPlayer.hasChanged = true; - if( opt ) jQuery.extend( YTPlayer.opt, YTPlayer.defaultOpt, opt ); - YTPlayer.videoID = getYTPVideoID( YTPlayer.opt.videoURL ).videoID; - jQuery( YTPlayer.playerEl ).CSSAnimate( { - opacity: 0 - }, 200, function() { - jQuery( YTPlayer ).YTPGetPlayer().cueVideoByUrl( encodeURI( jQuery.mbYTPlayer.locationProtocol + "//www.youtube.com/v/" + YTPlayer.videoID ), 1, YTPlayer.opt.quality ); - jQuery.mbYTPlayer.checkForState( YTPlayer ); - jQuery( YTPlayer ).optimizeDisplay(); - jQuery.mbYTPlayer.getDataFromAPI( YTPlayer ); - return this; - } ); - }, - /** - * - * @returns {player} - */ - getPlayer: function() { - return jQuery( this ).get( 0 ).player; - }, - playerDestroy: function() { - var YTPlayer = this.get( 0 ); - ytp.YTAPIReady = false; - ytp.backgroundIsInited = false; - YTPlayer.isInit = false; - YTPlayer.videoID = null; - var playerBox = YTPlayer.wrapper; - playerBox.remove(); - jQuery( "#controlBar_" + YTPlayer.id ).remove(); - clearInterval( YTPlayer.checkForStartAt ); - clearInterval( YTPlayer.getState ); - return this; - }, - /** - * - * @param real - * @returns {jQuery.mbYTPlayer} - */ - fullscreen: function( real ) { - var YTPlayer = this.get( 0 ); - if( typeof real == "undefined" ) real = YTPlayer.opt.realfullscreen; - real = eval( real ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var fullScreenBtn = controls.find( ".mb_OnlyYT" ); - var videoWrapper = YTPlayer.isSelf ? YTPlayer.opt.containment : YTPlayer.wrapper; - //var videoWrapper = YTPlayer.wrapper; - if( real ) { - var fullscreenchange = jQuery.browser.mozilla ? "mozfullscreenchange" : jQuery.browser.webkit ? "webkitfullscreenchange" : "fullscreenchange"; - jQuery( document ).off( fullscreenchange ).on( fullscreenchange, function() { - var isFullScreen = RunPrefixMethod( document, "IsFullScreen" ) || RunPrefixMethod( document, "FullScreen" ); - if( !isFullScreen ) { - YTPlayer.isAlone = false; - fullScreenBtn.html( jQuery.mbYTPlayer.controls.onlyYT ); - jQuery( YTPlayer ).YTPSetVideoQuality( YTPlayer.opt.quality ); - videoWrapper.removeClass( "fullscreen" ); - videoWrapper.CSSAnimate( { - opacity: YTPlayer.opt.opacity - }, 500 ); - videoWrapper.css( { - zIndex: 0 - } ); - if( YTPlayer.isBackground ) { - jQuery( "body" ).after( controls ); - } else { - YTPlayer.wrapper.before( controls ); - } - jQuery( window ).resize(); - jQuery( YTPlayer ).trigger( "YTPFullScreenEnd" ); - } else { - jQuery( YTPlayer ).YTPSetVideoQuality( "default" ); - jQuery( YTPlayer ).trigger( "YTPFullScreenStart" ); - } - } ); - } - if( !YTPlayer.isAlone ) { - function hideMouse() { - YTPlayer.overlay.css( { - cursor: "none" - } ); - } - jQuery( document ).on( "mousemove.YTPlayer", function( e ) { - YTPlayer.overlay.css( { - cursor: "auto" - } ); - clearTimeout( YTPlayer.hideCursor ); - if( !jQuery( e.target ).parents().is( ".mb_YTPBar" ) ) YTPlayer.hideCursor = setTimeout( hideMouse, 3000 ); - } ); - hideMouse(); - if( real ) { - videoWrapper.css( { - opacity: 0 - } ); - videoWrapper.addClass( "fullscreen" ); - launchFullscreen( videoWrapper.get( 0 ) ); - setTimeout( function() { - videoWrapper.CSSAnimate( { - opacity: 1 - }, 1000 ); - YTPlayer.wrapper.append( controls ); - jQuery( YTPlayer ).optimizeDisplay(); - YTPlayer.player.seekTo( YTPlayer.player.getCurrentTime() + .1, true ); - }, 500 ) - } else videoWrapper.css( { - zIndex: 10000 - } ).CSSAnimate( { - opacity: 1 - }, 1000 ); - fullScreenBtn.html( jQuery.mbYTPlayer.controls.showSite ); - YTPlayer.isAlone = true; - } else { - jQuery( document ).off( "mousemove.YTPlayer" ); - YTPlayer.overlay.css( { - cursor: "auto" - } ); - if( real ) { - cancelFullscreen(); - } else { - videoWrapper.CSSAnimate( { - opacity: YTPlayer.opt.opacity - }, 500 ); - videoWrapper.css( { - zIndex: 0 - } ); - } - fullScreenBtn.html( jQuery.mbYTPlayer.controls.onlyYT ); - YTPlayer.isAlone = false; - } - - function RunPrefixMethod( obj, method ) { - var pfx = [ "webkit", "moz", "ms", "o", "" ]; - var p = 0, - m, t; - while( p < pfx.length && !obj[ m ] ) { - m = method; - if( pfx[ p ] == "" ) { - m = m.substr( 0, 1 ).toLowerCase() + m.substr( 1 ); - } - m = pfx[ p ] + m; - t = typeof obj[ m ]; - if( t != "undefined" ) { - pfx = [ pfx[ p ] ]; - return( t == "function" ? obj[ m ]() : obj[ m ] ); - } - p++; - } - } - - function launchFullscreen( element ) { - RunPrefixMethod( element, "RequestFullScreen" ); - } - - function cancelFullscreen() { - if( RunPrefixMethod( document, "FullScreen" ) || RunPrefixMethod( document, "IsFullScreen" ) ) { - RunPrefixMethod( document, "CancelFullScreen" ); - } - } - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - toggleLoops: function() { - var YTPlayer = this.get( 0 ); - var data = YTPlayer.opt; - if( data.loop == 1 ) { - data.loop = 0; - } else { - if( data.startAt ) { - YTPlayer.player.seekTo( data.startAt ); - } else { - YTPlayer.player.playVideo(); - } - data.loop = 1; - } - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - play: function() { - var YTPlayer = this.get( 0 ); - if( !YTPlayer.isReady ) return; - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var playBtn = controls.find( ".mb_YTPPlaypause" ); - playBtn.html( jQuery.mbYTPlayer.controls.pause ); - YTPlayer.player.playVideo(); - YTPlayer.wrapper.CSSAnimate( { - opacity: YTPlayer.isAlone ? 1 : YTPlayer.opt.opacity - }, 2000 ); - jQuery( YTPlayer.playerEl ).CSSAnimate( { - opacity: 1 - }, 1000 ); - jQuery( YTPlayer ).css( "background-image", "none" ); - return this; - }, - /** - * - * @param callback - * @returns {jQuery.mbYTPlayer} - */ - togglePlay: function( callback ) { - var YTPlayer = this.get( 0 ); - if( YTPlayer.state == 1 ) this.YTPPause(); - else this.YTPPlay(); - if( typeof callback == "function" ) { - callback( YTPlayer.state ); - } - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - stop: function() { - var YTPlayer = this.get( 0 ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var playBtn = controls.find( ".mb_YTPPlaypause" ); - playBtn.html( jQuery.mbYTPlayer.controls.play ); - YTPlayer.player.stopVideo(); - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - pause: function() { - var YTPlayer = this.get( 0 ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var playBtn = controls.find( ".mb_YTPPlaypause" ); - playBtn.html( jQuery.mbYTPlayer.controls.play ); - YTPlayer.player.pauseVideo(); - return this; - }, - /** - * - * @param val - * @returns {jQuery.mbYTPlayer} - */ - seekTo: function( val ) { - var YTPlayer = this.get( 0 ); - YTPlayer.player.seekTo( val, true ); - return this; - }, - /** - * - * @param val - * @returns {jQuery.mbYTPlayer} - */ - setVolume: function( val ) { - var YTPlayer = this.get( 0 ); - if( !val && !YTPlayer.opt.vol && YTPlayer.player.getVolume() == 0 ) jQuery( YTPlayer ).YTPUnmute(); - else if( ( !val && YTPlayer.player.getVolume() > 0 ) || ( val && YTPlayer.opt.vol == val ) ) { - if( !YTPlayer.isMute ) jQuery( YTPlayer ).YTPMute(); - else jQuery( YTPlayer ).YTPUnmute(); - } else { - YTPlayer.opt.vol = val; - YTPlayer.player.setVolume( YTPlayer.opt.vol ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length ) YTPlayer.volumeBar.updateSliderVal( val ) - } - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - mute: function() { - var YTPlayer = this.get( 0 ); - if( YTPlayer.isMute ) return; - YTPlayer.player.mute(); - YTPlayer.isMute = true; - YTPlayer.player.setVolume( 0 ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length && YTPlayer.volumeBar.width() > 10 ) { - YTPlayer.volumeBar.updateSliderVal( 0 ); - } - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var muteBtn = controls.find( ".mb_YTPMuteUnmute" ); - muteBtn.html( jQuery.mbYTPlayer.controls.unmute ); - jQuery( YTPlayer ).addClass( "isMuted" ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length ) YTPlayer.volumeBar.addClass( "muted" ); - var YTPEvent = jQuery.Event( "YTPMuted" ); - YTPEvent.time = YTPlayer.player.time; - if( YTPlayer.canTrigger ) jQuery( YTPlayer ).trigger( YTPEvent ); - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - unmute: function() { - var YTPlayer = this.get( 0 ); - if( !YTPlayer.isMute ) return; - YTPlayer.player.unMute(); - YTPlayer.isMute = false; - YTPlayer.player.setVolume( YTPlayer.opt.vol ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length ) YTPlayer.volumeBar.updateSliderVal( YTPlayer.opt.vol > 10 ? YTPlayer.opt.vol : 10 ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var muteBtn = controls.find( ".mb_YTPMuteUnmute" ); - muteBtn.html( jQuery.mbYTPlayer.controls.mute ); - jQuery( YTPlayer ).removeClass( "isMuted" ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length ) YTPlayer.volumeBar.removeClass( "muted" ); - var YTPEvent = jQuery.Event( "YTPUnmuted" ); - YTPEvent.time = YTPlayer.player.time; - if( YTPlayer.canTrigger ) jQuery( YTPlayer ).trigger( YTPEvent ); - return this; - }, - /** - * - * @param filter - * @param value - * @returns {jQuery.mbYTPlayer} - */ - applyFilter: function( filter, value ) { - var YTPlayer = this.get( 0 ); - YTPlayer.filters[ filter ].value = value; - if( YTPlayer.filtersEnabled ) this.YTPEnableFilters(); - return this; - }, - /** - * - * @param filters - * @returns {jQuery.mbYTPlayer} - */ - applyFilters: function( filters ) { - var YTPlayer = this.get( 0 ); - this.on( "YTPReady", function() { - for( var key in filters ) { - YTPlayer.filters[ key ].value = filters[ key ]; - jQuery( YTPlayer ).YTPApplyFilter( key, filters[ key ] ); - } - jQuery( YTPlayer ).trigger( "YTPFiltersApplied" ); - } ); - return this; - }, - /** - * - * @param filter - * @param value - * @returns {*} - */ - toggleFilter: function( filter, value ) { - return this.each( function() { - var YTPlayer = this; - if( !YTPlayer.filters[ filter ].value ) YTPlayer.filters[ filter ].value = value; - else YTPlayer.filters[ filter ].value = 0; - if( YTPlayer.filtersEnabled ) jQuery( this ).YTPEnableFilters(); - } ) - return this; - }, - /** - * - * @param callback - * @returns {*} - */ - toggleFilters: function( callback ) { - return this.each( function() { - var YTPlayer = this; - if( YTPlayer.filtersEnabled ) { - jQuery( YTPlayer ).trigger( "YTPDisableFilters" ); - jQuery( YTPlayer ).YTPDisableFilters(); - } else { - jQuery( YTPlayer ).YTPEnableFilters(); - jQuery( YTPlayer ).trigger( "YTPEnableFilters" ); - } - if( typeof callback == "function" ) callback( YTPlayer.filtersEnabled ); - } ) - }, - /** - * - * @returns {*} - */ - disableFilters: function() { - return this.each( function() { - var YTPlayer = this; - var iframe = jQuery( YTPlayer.playerEl ); - iframe.css( "-webkit-filter", "" ); - iframe.css( "filter", "" ); - YTPlayer.filtersEnabled = false; - } ) - }, - /** - * - * @returns {*} - */ - enableFilters: function() { - return this.each( function() { - var YTPlayer = this; - var iframe = jQuery( YTPlayer.playerEl ); - var filterStyle = ""; - for( var key in YTPlayer.filters ) { - if( YTPlayer.filters[ key ].value ) filterStyle += key.replace( "_", "-" ) + "(" + YTPlayer.filters[ key ].value + YTPlayer.filters[ key ].unit + ") "; - } - iframe.css( "-webkit-filter", filterStyle ); - iframe.css( "filter", filterStyle ); - YTPlayer.filtersEnabled = true; - } ) - return this; - }, - /** - * - * @param filter - * @param callback - * @returns {*} - */ - removeFilter: function( filter, callback ) { - return this.each( function() { - if( typeof filter == "function" ) { - callback = filter; - filter = null; - } - var YTPlayer = this; - if( !filter ) - for( var key in YTPlayer.filters ) { - jQuery( this ).YTPApplyFilter( key, 0 ); - if( typeof callback == "function" ) callback( key ); - } else { - jQuery( this ).YTPApplyFilter( filter, 0 ); - if( typeof callback == "function" ) callback( filter ); - } - } ); - return this; - }, - /** - * - * @returns {{totalTime: number, currentTime: number}} - */ - manageProgress: function() { - var YTPlayer = this.get( 0 ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var progressBar = controls.find( ".mb_YTPProgress" ); - var loadedBar = controls.find( ".mb_YTPLoaded" ); - var timeBar = controls.find( ".mb_YTPseekbar" ); - var totW = progressBar.outerWidth(); - var currentTime = Math.floor( YTPlayer.player.getCurrentTime() ); - var totalTime = Math.floor( YTPlayer.player.getDuration() ); - var timeW = ( currentTime * totW ) / totalTime; - var startLeft = 0; - var loadedW = YTPlayer.player.getVideoLoadedFraction() * 100; - loadedBar.css( { - left: startLeft, - width: loadedW + "%" - } ); - timeBar.css( { - left: 0, - width: timeW - } ); - return { - totalTime: totalTime, - currentTime: currentTime - }; - }, - /** - * - * @param YTPlayer - */ - buildControls: function( YTPlayer ) { - var data = YTPlayer.opt; - // @data.printUrl: is deprecated; use data.showYTLogo - data.showYTLogo = data.showYTLogo || data.printUrl; - if( jQuery( "#controlBar_" + YTPlayer.id ).length ) return; - YTPlayer.controlBar = jQuery( "" ).attr( "id", "controlBar_" + YTPlayer.id ).addClass( "mb_YTPBar" ).css( { - whiteSpace: "noWrap", - position: YTPlayer.isBackground ? "fixed" : "absolute", - zIndex: YTPlayer.isBackground ? 10000 : 1000 - } ).hide(); - var buttonBar = jQuery( "
        " ).addClass( "buttonBar" ); - /* play/pause button*/ - var playpause = jQuery( "" + jQuery.mbYTPlayer.controls.play + "" ).addClass( "mb_YTPPlaypause ytpicon" ).click( function() { - if( YTPlayer.player.getPlayerState() == 1 ) jQuery( YTPlayer ).YTPPause(); - else jQuery( YTPlayer ).YTPPlay(); - } ); - /* mute/unmute button*/ - var MuteUnmute = jQuery( "" + jQuery.mbYTPlayer.controls.mute + "" ).addClass( "mb_YTPMuteUnmute ytpicon" ).click( function() { - if( YTPlayer.player.getVolume() == 0 ) { - jQuery( YTPlayer ).YTPUnmute(); - } else { - jQuery( YTPlayer ).YTPMute(); - } - } ); - /* volume bar*/ - var volumeBar = jQuery( "
        " ).addClass( "mb_YTPVolumeBar" ).css( { - display: "inline-block" - } ); - YTPlayer.volumeBar = volumeBar; - /* time elapsed */ - var idx = jQuery( "" ).addClass( "mb_YTPTime" ); - var vURL = data.videoURL ? data.videoURL : ""; - if( vURL.indexOf( "http" ) < 0 ) vURL = jQuery.mbYTPlayer.locationProtocol + "//www.youtube.com/watch?v=" + data.videoURL; - var movieUrl = jQuery( "" ).html( jQuery.mbYTPlayer.controls.ytLogo ).addClass( "mb_YTPUrl ytpicon" ).attr( "title", "view on YouTube" ).on( "click", function() { - window.open( vURL, "viewOnYT" ) - } ); - var onlyVideo = jQuery( "" ).html( jQuery.mbYTPlayer.controls.onlyYT ).addClass( "mb_OnlyYT ytpicon" ).on( "click", function() { - jQuery( YTPlayer ).YTPFullscreen( data.realfullscreen ); - } ); - var progressBar = jQuery( "
        " ).addClass( "mb_YTPProgress" ).css( "position", "absolute" ).click( function( e ) { - timeBar.css( { - width: ( e.clientX - timeBar.offset().left ) - } ); - YTPlayer.timeW = e.clientX - timeBar.offset().left; - YTPlayer.controlBar.find( ".mb_YTPLoaded" ).css( { - width: 0 - } ); - var totalTime = Math.floor( YTPlayer.player.getDuration() ); - YTPlayer.goto = ( timeBar.outerWidth() * totalTime ) / progressBar.outerWidth(); - YTPlayer.player.seekTo( parseFloat( YTPlayer.goto ), true ); - YTPlayer.controlBar.find( ".mb_YTPLoaded" ).css( { - width: 0 - } ); - } ); - var loadedBar = jQuery( "
        " ).addClass( "mb_YTPLoaded" ).css( "position", "absolute" ); - var timeBar = jQuery( "
        " ).addClass( "mb_YTPseekbar" ).css( "position", "absolute" ); - progressBar.append( loadedBar ).append( timeBar ); - buttonBar.append( playpause ).append( MuteUnmute ).append( volumeBar ).append( idx ); - if( data.showYTLogo ) { - buttonBar.append( movieUrl ); - } - if( YTPlayer.isBackground || ( eval( YTPlayer.opt.realfullscreen ) && !YTPlayer.isBackground ) ) buttonBar.append( onlyVideo ); - YTPlayer.controlBar.append( buttonBar ).append( progressBar ); - if( !YTPlayer.isBackground ) { - YTPlayer.controlBar.addClass( "inlinePlayer" ); - YTPlayer.wrapper.before( YTPlayer.controlBar ); - } else { - jQuery( "body" ).after( YTPlayer.controlBar ); - } - volumeBar.simpleSlider( { - initialval: YTPlayer.opt.vol, - scale: 100, - orientation: "h", - callback: function( el ) { - if( el.value == 0 ) { - jQuery( YTPlayer ).YTPMute(); - } else { - jQuery( YTPlayer ).YTPUnmute(); - } - YTPlayer.player.setVolume( el.value ); - if( !YTPlayer.isMute ) YTPlayer.opt.vol = el.value; - } - } ); - }, - /** - * - * - * */ - checkForState: function( YTPlayer ) { - var interval = YTPlayer.opt.showControls ? 100 : 700; - clearInterval( YTPlayer.getState ); - //Checking if player has been removed from scene - if( !jQuery.contains( document, YTPlayer ) ) { - jQuery( YTPlayer ).YTPPlayerDestroy(); - clearInterval( YTPlayer.getState ); - clearInterval( YTPlayer.checkForStartAt ); - return; - } - jQuery.mbYTPlayer.checkForStart( YTPlayer ); - YTPlayer.getState = setInterval( function() { - var prog = jQuery( YTPlayer ).YTPManageProgress(); - var $YTPlayer = jQuery( YTPlayer ); - var data = YTPlayer.opt; - var startAt = YTPlayer.opt.startAt ? YTPlayer.opt.startAt : 0; - var stopAt = YTPlayer.opt.stopAt > YTPlayer.opt.startAt ? YTPlayer.opt.stopAt : 0; - stopAt = stopAt < YTPlayer.player.getDuration() ? stopAt : 0; - if( YTPlayer.player.time != prog.currentTime ) { - var YTPEvent = jQuery.Event( "YTPTime" ); - YTPEvent.time = YTPlayer.player.time; - jQuery( YTPlayer ).trigger( YTPEvent ); - } - YTPlayer.player.time = prog.currentTime; - if( YTPlayer.player.getVolume() == 0 ) $YTPlayer.addClass( "isMuted" ); - else $YTPlayer.removeClass( "isMuted" ); - if( YTPlayer.opt.showControls ) - if( prog.totalTime ) { - YTPlayer.controlBar.find( ".mb_YTPTime" ).html( jQuery.mbYTPlayer.formatTime( prog.currentTime ) + " / " + jQuery.mbYTPlayer.formatTime( prog.totalTime ) ); - } else { - YTPlayer.controlBar.find( ".mb_YTPTime" ).html( "-- : -- / -- : --" ); - } - if( eval( YTPlayer.opt.stopMovieOnBlur ) ) - if( !document.hasFocus() ) { - if( YTPlayer.state == 1 ) { - YTPlayer.hasFocus = false; - $YTPlayer.YTPPause(); - } - } else if( document.hasFocus() && !YTPlayer.hasFocus && !( YTPlayer.state == -1 || YTPlayer.state == 0 ) ) { - YTPlayer.hasFocus = true; - $YTPlayer.YTPPlay(); - } - if( YTPlayer.controlBar && YTPlayer.controlBar.outerWidth() <= 400 && !YTPlayer.isCompact ) { - YTPlayer.controlBar.addClass( "compact" ); - YTPlayer.isCompact = true; - if( !YTPlayer.isMute && YTPlayer.volumeBar ) YTPlayer.volumeBar.updateSliderVal( YTPlayer.opt.vol ); - } else if( YTPlayer.controlBar && YTPlayer.controlBar.outerWidth() > 400 && YTPlayer.isCompact ) { - YTPlayer.controlBar.removeClass( "compact" ); - YTPlayer.isCompact = false; - if( !YTPlayer.isMute && YTPlayer.volumeBar ) YTPlayer.volumeBar.updateSliderVal( YTPlayer.opt.vol ); - } - if( YTPlayer.player.getPlayerState() == 1 && ( parseFloat( YTPlayer.player.getDuration() - 1.5 ) < YTPlayer.player.getCurrentTime() || ( stopAt > 0 && parseFloat( YTPlayer.player.getCurrentTime() ) > stopAt ) ) ) { - if( YTPlayer.isEnded ) return; - YTPlayer.isEnded = true; - setTimeout( function() { - YTPlayer.isEnded = false - }, 1000 ); - if( YTPlayer.isPlayList ) { - clearInterval( YTPlayer.getState ); - var YTPEnd = jQuery.Event( "YTPEnd" ); - YTPEnd.time = YTPlayer.player.time; - jQuery( YTPlayer ).trigger( YTPEnd ); - return; - } else if( !data.loop ) { - YTPlayer.player.pauseVideo(); - YTPlayer.wrapper.CSSAnimate( { - opacity: 0 - }, 1000, function() { - var YTPEnd = jQuery.Event( "YTPEnd" ); - YTPEnd.time = YTPlayer.player.time; - jQuery( YTPlayer ).trigger( YTPEnd ); - YTPlayer.player.seekTo( startAt, true ); - if( !YTPlayer.isBackground ) { - YTPlayer.opt.containment.css( { - background: "rgba(0,0,0,0.5) url(" + YTPlayer.opt.backgroundUrl + ") center center", - backgroundSize: "cover" - } ); - } - } ); - } else { - - startAt = startAt || 1; - - YTPlayer.player.pauseVideo(); - YTPlayer.player.seekTo( startAt, true ); - $YTPlayer.YTPPlay(); - - } - } - }, interval ); - }, - /** - * - * */ - checkForStart: function( YTPlayer ) { - var $YTPlayer = jQuery( YTPlayer ); - //Checking if player has been removed from scene - if( !jQuery.contains( document, YTPlayer ) ) { - jQuery( YTPlayer ).YTPPlayerDestroy(); - return - } - if( jQuery.browser.chrome ) YTPlayer.opt.quality = "default"; - YTPlayer.player.pauseVideo(); - jQuery( YTPlayer ).muteYTPVolume(); - jQuery( "#controlBar_" + YTPlayer.id ).remove(); - if( YTPlayer.opt.showControls ) jQuery.mbYTPlayer.buildControls( YTPlayer ); - if( YTPlayer.opt.addRaster ) { - var classN = YTPlayer.opt.addRaster == "dot" ? "raster-dot" : "raster"; - YTPlayer.overlay.addClass( YTPlayer.isRetina ? classN + " retina" : classN ); - } else { - YTPlayer.overlay.removeClass( function( index, classNames ) { - // change the list into an array - var current_classes = classNames.split( " " ), - // array of classes which are to be removed - classes_to_remove = []; - jQuery.each( current_classes, function( index, class_name ) { - // if the classname begins with bg add it to the classes_to_remove array - if( /raster.*/.test( class_name ) ) { - classes_to_remove.push( class_name ); - } - } ); - classes_to_remove.push( "retina" ); - // turn the array back into a string - return classes_to_remove.join( " " ); - } ) - } - YTPlayer.checkForStartAt = setInterval( function() { - jQuery( YTPlayer ).YTPMute(); - var startAt = YTPlayer.opt.startAt ? YTPlayer.opt.startAt : 1; - var canPlayVideo = ( YTPlayer.player.getVideoLoadedFraction() > startAt / YTPlayer.player.getDuration() ); - if( YTPlayer.player.getDuration() > 0 && YTPlayer.player.getCurrentTime() >= startAt && canPlayVideo ) { - clearInterval( YTPlayer.checkForStartAt ); - YTPlayer.isReady = true; - if( typeof YTPlayer.opt.onReady == "function" ) YTPlayer.opt.onReady( YTPlayer ); - var YTPready = jQuery.Event( "YTPReady" ); - jQuery( YTPlayer ).trigger( YTPready ); - YTPlayer.player.pauseVideo(); - if( !YTPlayer.opt.mute ) jQuery( YTPlayer ).YTPUnmute(); - YTPlayer.canTrigger = true; - if( YTPlayer.opt.autoPlay ) { - $YTPlayer.YTPPlay(); - $YTPlayer.css( "background-image", "none" ); - jQuery( YTPlayer.playerEl ).CSSAnimate( { - opacity: 1 - }, 1000 ); - YTPlayer.wrapper.CSSAnimate( { - opacity: YTPlayer.isAlone ? 1 : YTPlayer.opt.opacity - }, 1000 ); - } else { - YTPlayer.player.pauseVideo(); - if( !YTPlayer.isPlayer ) { - jQuery( YTPlayer.playerEl ).CSSAnimate( { - opacity: 1 - }, 1000 ); - YTPlayer.wrapper.CSSAnimate( { - opacity: YTPlayer.isAlone ? 1 : YTPlayer.opt.opacity - }, 1000 ); - } - } - if( YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ) { - YTPlayer.loading.html( "Ready" ); - setTimeout( function() { - YTPlayer.loading.fadeOut(); - - - }, 100 ) - } - if( YTPlayer.controlBar ) YTPlayer.controlBar.slideDown( 1000 ); - } else { - //YTPlayer.player.playVideo(); - if( startAt >= 0 ) YTPlayer.player.seekTo( startAt, true ); - } - }, 1000 ); - }, - /** - * - * @param s - * @returns {string} - */ - formatTime: function( s ) { - var min = Math.floor( s / 60 ); - var sec = Math.floor( s - ( 60 * min ) ); - return( min <= 9 ? "0" + min : min ) + " : " + ( sec <= 9 ? "0" + sec : sec ); - } - }; - /** - * - * @returns {boolean} - */ - jQuery.fn.toggleVolume = function() { - var YTPlayer = this.get( 0 ); - if( !YTPlayer ) return; - if( YTPlayer.player.isMuted() ) { - jQuery( YTPlayer ).YTPUnmute(); - return true; - } else { - jQuery( YTPlayer ).YTPMute(); - return false; - } - }; - /** - * - */ - jQuery.fn.optimizeDisplay = function() { - var YTPlayer = this.get( 0 ); - var data = YTPlayer.opt; - var playerBox = jQuery( YTPlayer.playerEl ); - var win = {}; - var el = YTPlayer.wrapper; - win.width = el.outerWidth(); - win.height = el.outerHeight(); - var margin = 24; - var overprint = 100; - var vid = {}; - if( data.optimizeDisplay ) { - vid.width = win.width + ( ( win.width * margin ) / 100 ); - vid.height = data.ratio == "16/9" ? Math.ceil( ( 9 * win.width ) / 16 ) : Math.ceil( ( 3 * win.width ) / 4 ); - vid.marginTop = -( ( vid.height - win.height ) / 2 ); - vid.marginLeft = -( ( win.width * ( margin / 2 ) ) / 100 ); - if( vid.height < win.height ) { - vid.height = win.height + ( ( win.height * margin ) / 100 ); - vid.width = data.ratio == "16/9" ? Math.floor( ( 16 * win.height ) / 9 ) : Math.floor( ( 4 * win.height ) / 3 ); - vid.marginTop = -( ( win.height * ( margin / 2 ) ) / 100 ); - vid.marginLeft = -( ( vid.width - win.width ) / 2 ); - } - vid.width += overprint; - vid.height += overprint; - vid.marginTop -= overprint / 2; - vid.marginLeft -= overprint / 2; - } else { - vid.width = "100%"; - vid.height = "100%"; - vid.marginTop = 0; - vid.marginLeft = 0; - } - playerBox.css( { - width: vid.width, - height: vid.height, - marginTop: vid.marginTop, - marginLeft: vid.marginLeft - } ); - }; - /** - * - * @param arr - * @returns {Array|string|Blob|*} - * - */ - jQuery.shuffle = function( arr ) { - var newArray = arr.slice(); - var len = newArray.length; - var i = len; - while( i-- ) { - var p = parseInt( Math.random() * len ); - var t = newArray[ i ]; - newArray[ i ] = newArray[ p ]; - newArray[ p ] = t; - } - return newArray; - }; - - /* Exposed public method */ - jQuery.fn.YTPlayer = jQuery.mbYTPlayer.buildPlayer; - jQuery.fn.YTPGetPlayer = jQuery.mbYTPlayer.getPlayer; - jQuery.fn.YTPGetVideoID = jQuery.mbYTPlayer.getVideoID; - jQuery.fn.YTPChangeMovie = jQuery.mbYTPlayer.changeMovie; - jQuery.fn.YTPPlayerDestroy = jQuery.mbYTPlayer.playerDestroy; - - jQuery.fn.YTPPlay = jQuery.mbYTPlayer.play; - jQuery.fn.YTPTogglePlay = jQuery.mbYTPlayer.togglePlay; - jQuery.fn.YTPStop = jQuery.mbYTPlayer.stop; - jQuery.fn.YTPPause = jQuery.mbYTPlayer.pause; - jQuery.fn.YTPSeekTo = jQuery.mbYTPlayer.seekTo; - - jQuery.fn.YTPlaylist = jQuery.mbYTPlayer.playlist; - jQuery.fn.YTPPlayNext = jQuery.mbYTPlayer.playNext; - jQuery.fn.YTPPlayPrev = jQuery.mbYTPlayer.playPrev; - - jQuery.fn.YTPMute = jQuery.mbYTPlayer.mute; - jQuery.fn.YTPUnmute = jQuery.mbYTPlayer.unmute; - jQuery.fn.YTPToggleVolume = jQuery.mbYTPlayer.toggleVolume; - jQuery.fn.YTPSetVolume = jQuery.mbYTPlayer.setVolume; - - jQuery.fn.YTPGetVideoData = jQuery.mbYTPlayer.getVideoData; - jQuery.fn.YTPFullscreen = jQuery.mbYTPlayer.fullscreen; - jQuery.fn.YTPToggleLoops = jQuery.mbYTPlayer.toggleLoops; - jQuery.fn.YTPSetVideoQuality = jQuery.mbYTPlayer.setVideoQuality; - jQuery.fn.YTPManageProgress = jQuery.mbYTPlayer.manageProgress; - - jQuery.fn.YTPApplyFilter = jQuery.mbYTPlayer.applyFilter; - jQuery.fn.YTPApplyFilters = jQuery.mbYTPlayer.applyFilters; - jQuery.fn.YTPToggleFilter = jQuery.mbYTPlayer.toggleFilter; - jQuery.fn.YTPToggleFilters = jQuery.mbYTPlayer.toggleFilters; - jQuery.fn.YTPRemoveFilter = jQuery.mbYTPlayer.removeFilter; - jQuery.fn.YTPDisableFilters = jQuery.mbYTPlayer.disableFilters; - jQuery.fn.YTPEnableFilters = jQuery.mbYTPlayer.enableFilters; - - - /** - * - * @deprecated - * - **/ - jQuery.fn.mb_YTPlayer = jQuery.mbYTPlayer.buildPlayer; - jQuery.fn.playNext = jQuery.mbYTPlayer.playNext; - jQuery.fn.playPrev = jQuery.mbYTPlayer.playPrev; - jQuery.fn.changeMovie = jQuery.mbYTPlayer.changeMovie; - jQuery.fn.getVideoID = jQuery.mbYTPlayer.getVideoID; - jQuery.fn.getPlayer = jQuery.mbYTPlayer.getPlayer; - jQuery.fn.playerDestroy = jQuery.mbYTPlayer.playerDestroy; - jQuery.fn.fullscreen = jQuery.mbYTPlayer.fullscreen; - jQuery.fn.buildYTPControls = jQuery.mbYTPlayer.buildControls; - jQuery.fn.playYTP = jQuery.mbYTPlayer.play; - jQuery.fn.toggleLoops = jQuery.mbYTPlayer.toggleLoops; - jQuery.fn.stopYTP = jQuery.mbYTPlayer.stop; - jQuery.fn.pauseYTP = jQuery.mbYTPlayer.pause; - jQuery.fn.seekToYTP = jQuery.mbYTPlayer.seekTo; - jQuery.fn.muteYTPVolume = jQuery.mbYTPlayer.mute; - jQuery.fn.unmuteYTPVolume = jQuery.mbYTPlayer.unmute; - jQuery.fn.setYTPVolume = jQuery.mbYTPlayer.setVolume; - jQuery.fn.setVideoQuality = jQuery.mbYTPlayer.setVideoQuality; - jQuery.fn.manageYTPProgress = jQuery.mbYTPlayer.manageProgress; - jQuery.fn.YTPGetDataFromFeed = jQuery.mbYTPlayer.getVideoData; - - -} )( jQuery, ytp ); -; -/* - * ****************************************************************************** - * jquery.mb.components - * file: jquery.mb.CSSAnimate.min.js - * - * Copyright (c) 2001-2014. Matteo Bicocchi (Pupunzi); - * Open lab srl, Firenze - Italy - * email: matteo@open-lab.com - * site: http://pupunzi.com - * blog: http://pupunzi.open-lab.com - * http://open-lab.com - * - * Licences: MIT, GPL - * http://www.opensource.org/licenses/mit-license.php - * http://www.gnu.org/licenses/gpl.html - * - * last modified: 26/03/14 21.40 - * ***************************************************************************** - */ - -function uncamel(a){return a.replace(/([A-Z])/g,function(a){return"-"+a.toLowerCase()})}function setUnit(a,b){return"string"!=typeof a||a.match(/^[\-0-9\.]+jQuery/)?""+a+b:a}function setFilter(a,b,c){var d=uncamel(b),e=jQuery.browser.mozilla?"":jQuery.CSS.sfx;a[e+"filter"]=a[e+"filter"]||"",c=setUnit(c>jQuery.CSS.filters[b].max?jQuery.CSS.filters[b].max:c,jQuery.CSS.filters[b].unit),a[e+"filter"]+=d+"("+c+") ",delete a[b]}jQuery.support.CSStransition=function(){var a=document.body||document.documentElement,b=a.style;return void 0!==b.transition||void 0!==b.WebkitTransition||void 0!==b.MozTransition||void 0!==b.MsTransition||void 0!==b.OTransition}(),jQuery.CSS={name:"mb.CSSAnimate",author:"Matteo Bicocchi",version:"2.0.0",transitionEnd:"transitionEnd",sfx:"",filters:{blur:{min:0,max:100,unit:"px"},brightness:{min:0,max:400,unit:"%"},contrast:{min:0,max:400,unit:"%"},grayscale:{min:0,max:100,unit:"%"},hueRotate:{min:0,max:360,unit:"deg"},invert:{min:0,max:100,unit:"%"},saturate:{min:0,max:400,unit:"%"},sepia:{min:0,max:100,unit:"%"}},normalizeCss:function(a){var b=jQuery.extend(!0,{},a);jQuery.browser.webkit||jQuery.browser.opera?jQuery.CSS.sfx="-webkit-":jQuery.browser.mozilla?jQuery.CSS.sfx="-moz-":jQuery.browser.msie&&(jQuery.CSS.sfx="-ms-");for(var c in b){"transform"===c&&(b[jQuery.CSS.sfx+"transform"]=b[c],delete b[c]),"transform-origin"===c&&(b[jQuery.CSS.sfx+"transform-origin"]=a[c],delete b[c]),"filter"!==c||jQuery.browser.mozilla||(b[jQuery.CSS.sfx+"filter"]=a[c],delete b[c]),"blur"===c&&setFilter(b,"blur",a[c]),"brightness"===c&&setFilter(b,"brightness",a[c]),"contrast"===c&&setFilter(b,"contrast",a[c]),"grayscale"===c&&setFilter(b,"grayscale",a[c]),"hueRotate"===c&&setFilter(b,"hueRotate",a[c]),"invert"===c&&setFilter(b,"invert",a[c]),"saturate"===c&&setFilter(b,"saturate",a[c]),"sepia"===c&&setFilter(b,"sepia",a[c]);var d="";"x"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" translateX("+setUnit(a[c],"px")+")",delete b[c]),"y"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" translateY("+setUnit(a[c],"px")+")",delete b[c]),"z"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" translateZ("+setUnit(a[c],"px")+")",delete b[c]),"rotate"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" rotate("+setUnit(a[c],"deg")+")",delete b[c]),"rotateX"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" rotateX("+setUnit(a[c],"deg")+")",delete b[c]),"rotateY"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" rotateY("+setUnit(a[c],"deg")+")",delete b[c]),"rotateZ"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" rotateZ("+setUnit(a[c],"deg")+")",delete b[c]),"scale"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" scale("+setUnit(a[c],"")+")",delete b[c]),"scaleX"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" scaleX("+setUnit(a[c],"")+")",delete b[c]),"scaleY"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" scaleY("+setUnit(a[c],"")+")",delete b[c]),"scaleZ"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" scaleZ("+setUnit(a[c],"")+")",delete b[c]),"skew"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" skew("+setUnit(a[c],"deg")+")",delete b[c]),"skewX"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" skewX("+setUnit(a[c],"deg")+")",delete b[c]),"skewY"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" skewY("+setUnit(a[c],"deg")+")",delete b[c]),"perspective"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" perspective("+setUnit(a[c],"px")+")",delete b[c])}return b},getProp:function(a){var b=[];for(var c in a)b.indexOf(c)<0&&b.push(uncamel(c));return b.join(",")},animate:function(a,b,c,d,e){return this.each(function(){function o(){f.called=!0,f.CSSAIsRunning=!1,g.off(jQuery.CSS.transitionEnd+"."+f.id),clearTimeout(f.timeout),g.css(jQuery.CSS.sfx+"transition",""),"function"==typeof e&&e.apply(f),"function"==typeof f.CSSqueue&&(f.CSSqueue(),f.CSSqueue=null)}var f=this,g=jQuery(this);f.id=f.id||"CSSA_"+(new Date).getTime();var h=h||{type:"noEvent"};if(f.CSSAIsRunning&&f.eventType==h.type&&!jQuery.browser.msie&&jQuery.browser.version<=9)return f.CSSqueue=function(){g.CSSAnimate(a,b,c,d,e)},void 0;if(f.CSSqueue=null,f.eventType=h.type,0!==g.length&&a){if(a=jQuery.normalizeCss(a),f.CSSAIsRunning=!0,"function"==typeof b&&(e=b,b=jQuery.fx.speeds._default),"function"==typeof c&&(d=c,c=0),"string"==typeof c&&(e=c,c=0),"function"==typeof d&&(e=d,d="cubic-bezier(0.65,0.03,0.36,0.72)"),"string"==typeof b)for(var i in jQuery.fx.speeds){if(b==i){b=jQuery.fx.speeds[i];break}b=jQuery.fx.speeds._default}if(b||(b=jQuery.fx.speeds._default),"string"==typeof e&&(d=e,e=null),!jQuery.support.CSStransition){for(var j in a){if("transform"===j&&delete a[j],"filter"===j&&delete a[j],"transform-origin"===j&&delete a[j],"auto"===a[j]&&delete a[j],"x"===j){var k=a[j],l="left";a[l]=k,delete a[j]}if("y"===j){var k=a[j],l="top";a[l]=k,delete a[j]}("-ms-transform"===j||"-ms-filter"===j)&&delete a[j]}return g.delay(c).animate(a,b,e),void 0}var m={"default":"ease","in":"ease-in",out:"ease-out","in-out":"ease-in-out",snap:"cubic-bezier(0,1,.5,1)",easeOutCubic:"cubic-bezier(.215,.61,.355,1)",easeInOutCubic:"cubic-bezier(.645,.045,.355,1)",easeInCirc:"cubic-bezier(.6,.04,.98,.335)",easeOutCirc:"cubic-bezier(.075,.82,.165,1)",easeInOutCirc:"cubic-bezier(.785,.135,.15,.86)",easeInExpo:"cubic-bezier(.95,.05,.795,.035)",easeOutExpo:"cubic-bezier(.19,1,.22,1)",easeInOutExpo:"cubic-bezier(1,0,0,1)",easeInQuad:"cubic-bezier(.55,.085,.68,.53)",easeOutQuad:"cubic-bezier(.25,.46,.45,.94)",easeInOutQuad:"cubic-bezier(.455,.03,.515,.955)",easeInQuart:"cubic-bezier(.895,.03,.685,.22)",easeOutQuart:"cubic-bezier(.165,.84,.44,1)",easeInOutQuart:"cubic-bezier(.77,0,.175,1)",easeInQuint:"cubic-bezier(.755,.05,.855,.06)",easeOutQuint:"cubic-bezier(.23,1,.32,1)",easeInOutQuint:"cubic-bezier(.86,0,.07,1)",easeInSine:"cubic-bezier(.47,0,.745,.715)",easeOutSine:"cubic-bezier(.39,.575,.565,1)",easeInOutSine:"cubic-bezier(.445,.05,.55,.95)",easeInBack:"cubic-bezier(.6,-.28,.735,.045)",easeOutBack:"cubic-bezier(.175, .885,.32,1.275)",easeInOutBack:"cubic-bezier(.68,-.55,.265,1.55)"};m[d]&&(d=m[d]),g.off(jQuery.CSS.transitionEnd+"."+f.id);var n=jQuery.CSS.getProp(a),p={};jQuery.extend(p,a),p[jQuery.CSS.sfx+"transition-property"]=n,p[jQuery.CSS.sfx+"transition-duration"]=b+"ms",p[jQuery.CSS.sfx+"transition-delay"]=c+"ms",p[jQuery.CSS.sfx+"transition-timing-function"]=d,setTimeout(function(){g.one(jQuery.CSS.transitionEnd+"."+f.id,o),g.css(p)},1),f.timeout=setTimeout(function(){return f.called||!e?(f.called=!1,f.CSSAIsRunning=!1,void 0):(g.css(jQuery.CSS.sfx+"transition",""),e.apply(f),f.CSSAIsRunning=!1,"function"==typeof f.CSSqueue&&(f.CSSqueue(),f.CSSqueue=null),void 0)},b+c+10)}})}},jQuery.fn.CSSAnimate=jQuery.CSS.animate,jQuery.normalizeCss=jQuery.CSS.normalizeCss,jQuery.fn.css3=function(a){return this.each(function(){var b=jQuery(this),c=jQuery.normalizeCss(a);b.css(c)})}; -;/* - * ****************************************************************************** - * jquery.mb.components - * file: jquery.mb.browser.min.js - * - * Copyright (c) 2001-2014. Matteo Bicocchi (Pupunzi); - * Open lab srl, Firenze - Italy - * email: matteo@open-lab.com - * site: http://pupunzi.com - * blog: http://pupunzi.open-lab.com - * http://open-lab.com - * - * Licences: MIT, GPL - * http://www.opensource.org/licenses/mit-license.php - * http://www.gnu.org/licenses/gpl.html - * - * last modified: 26/03/14 21.43 - * ***************************************************************************** - */ - -var nAgt=navigator.userAgent;if(!jQuery.browser){jQuery.browser={},jQuery.browser.mozilla=!1,jQuery.browser.webkit=!1,jQuery.browser.opera=!1,jQuery.browser.safari=!1,jQuery.browser.chrome=!1,jQuery.browser.msie=!1,jQuery.browser.ua=nAgt,jQuery.browser.name=navigator.appName,jQuery.browser.fullVersion=""+parseFloat(navigator.appVersion),jQuery.browser.majorVersion=parseInt(navigator.appVersion,10);var nameOffset,verOffset,ix;if(-1!=(verOffset=nAgt.indexOf("Opera")))jQuery.browser.opera=!0,jQuery.browser.name="Opera",jQuery.browser.fullVersion=nAgt.substring(verOffset+6),-1!=(verOffset=nAgt.indexOf("Version"))&&(jQuery.browser.fullVersion=nAgt.substring(verOffset+8));else if(-1!=(verOffset=nAgt.indexOf("OPR")))jQuery.browser.opera=!0,jQuery.browser.name="Opera",jQuery.browser.fullVersion=nAgt.substring(verOffset+4);else if(-1!=(verOffset=nAgt.indexOf("MSIE")))jQuery.browser.msie=!0,jQuery.browser.name="Microsoft Internet Explorer",jQuery.browser.fullVersion=nAgt.substring(verOffset+5);else if(-1!=nAgt.indexOf("Trident")){jQuery.browser.msie=!0,jQuery.browser.name="Microsoft Internet Explorer";var start=nAgt.indexOf("rv:")+3,end=start+4;jQuery.browser.fullVersion=nAgt.substring(start,end)}else-1!=(verOffset=nAgt.indexOf("Chrome"))?(jQuery.browser.webkit=!0,jQuery.browser.chrome=!0,jQuery.browser.name="Chrome",jQuery.browser.fullVersion=nAgt.substring(verOffset+7)):-1!=(verOffset=nAgt.indexOf("Safari"))?(jQuery.browser.webkit=!0,jQuery.browser.safari=!0,jQuery.browser.name="Safari",jQuery.browser.fullVersion=nAgt.substring(verOffset+7),-1!=(verOffset=nAgt.indexOf("Version"))&&(jQuery.browser.fullVersion=nAgt.substring(verOffset+8))):-1!=(verOffset=nAgt.indexOf("AppleWebkit"))?(jQuery.browser.webkit=!0,jQuery.browser.name="Safari",jQuery.browser.fullVersion=nAgt.substring(verOffset+7),-1!=(verOffset=nAgt.indexOf("Version"))&&(jQuery.browser.fullVersion=nAgt.substring(verOffset+8))):-1!=(verOffset=nAgt.indexOf("Firefox"))?(jQuery.browser.mozilla=!0,jQuery.browser.name="Firefox",jQuery.browser.fullVersion=nAgt.substring(verOffset+8)):(nameOffset=nAgt.lastIndexOf(" ")+1)<(verOffset=nAgt.lastIndexOf("/"))&&(jQuery.browser.name=nAgt.substring(nameOffset,verOffset),jQuery.browser.fullVersion=nAgt.substring(verOffset+1),jQuery.browser.name.toLowerCase()==jQuery.browser.name.toUpperCase()&&(jQuery.browser.name=navigator.appName));-1!=(ix=jQuery.browser.fullVersion.indexOf(";"))&&(jQuery.browser.fullVersion=jQuery.browser.fullVersion.substring(0,ix)),-1!=(ix=jQuery.browser.fullVersion.indexOf(" "))&&(jQuery.browser.fullVersion=jQuery.browser.fullVersion.substring(0,ix)),jQuery.browser.majorVersion=parseInt(""+jQuery.browser.fullVersion,10),isNaN(jQuery.browser.majorVersion)&&(jQuery.browser.fullVersion=""+parseFloat(navigator.appVersion),jQuery.browser.majorVersion=parseInt(navigator.appVersion,10)),jQuery.browser.version=jQuery.browser.majorVersion}jQuery.browser.android=/Android/i.test(nAgt),jQuery.browser.blackberry=/BlackBerry|BB|PlayBook/i.test(nAgt),jQuery.browser.ios=/iPhone|iPad|iPod|webOS/i.test(nAgt),jQuery.browser.operaMobile=/Opera Mini/i.test(nAgt),jQuery.browser.windowsMobile=/IEMobile|Windows Phone/i.test(nAgt),jQuery.browser.kindle=/Kindle|Silk/i.test(nAgt),jQuery.browser.mobile=jQuery.browser.android||jQuery.browser.blackberry||jQuery.browser.ios||jQuery.browser.windowsMobile||jQuery.browser.operaMobile||jQuery.browser.kindle,jQuery.isMobile=jQuery.browser.mobile,jQuery.isTablet=jQuery.browser.mobile&&jQuery(window).width()>765,jQuery.isAndroidDefault=jQuery.browser.android&&!/chrome/i.test(nAgt); -;/*___________________________________________________________________________________________________________________________________________________ - _ jquery.mb.components _ - _ _ - _ file: jquery.mb.simpleSlider.min.js _ - _ last modified: 16/05/15 23.45 _ - _ _ - _ Open Lab s.r.l., Florence - Italy _ - _ _ - _ email: matteo@open-lab.com _ - _ site: http://pupunzi.com _ - _ http://open-lab.com _ - _ blog: http://pupunzi.open-lab.com _ - _ Q&A: http://jquery.pupunzi.com _ - _ _ - _ Licences: MIT, GPL _ - _ http://www.opensource.org/licenses/mit-license.php _ - _ http://www.gnu.org/licenses/gpl.html _ - _ _ - _ Copyright (c) 2001-2015. Matteo Bicocchi (Pupunzi); _ - ___________________________________________________________________________________________________________________________________________________*/ - -!function(a){/iphone|ipod|ipad|android|ie|blackberry|fennec/.test(navigator.userAgent.toLowerCase());var c="ontouchstart"in window||window.navigator&&window.navigator.msPointerEnabled&&window.MSGesture||window.DocumentTouch&&document instanceof DocumentTouch||!1;a.simpleSlider={defaults:{initialval:0,scale:100,orientation:"h",readonly:!1,callback:!1},events:{start:c?"touchstart":"mousedown",end:c?"touchend":"mouseup",move:c?"touchmove":"mousemove"},init:function(b){return this.each(function(){var d=this,e=a(d);e.addClass("simpleSlider"),d.opt={},a.extend(d.opt,a.simpleSlider.defaults,b),a.extend(d.opt,e.data());var f="h"==d.opt.orientation?"horizontal":"vertical",g=a("
        ").addClass("level").addClass(f);e.prepend(g),d.level=g,e.css({cursor:"default"}),"auto"==d.opt.scale&&(d.opt.scale=a(d).outerWidth()),e.updateSliderVal(),d.opt.readonly||(e.on(a.simpleSlider.events.start,function(a){c&&(a=a.changedTouches[0]),d.canSlide=!0,e.updateSliderVal(a),e.css({cursor:"col-resize"}),a.preventDefault(),a.stopPropagation()}),a(document).on(a.simpleSlider.events.move,function(b){c&&(b=b.changedTouches[0]),d.canSlide&&(a(document).css({cursor:"default"}),e.updateSliderVal(b),b.preventDefault(),b.stopPropagation())}).on(a.simpleSlider.events.end,function(){a(document).css({cursor:"auto"}),d.canSlide=!1,e.css({cursor:"auto"})}))})},updateSliderVal:function(b){function g(a,b){return Math.floor(100*a/b)}var c=this,d=c.get(0);d.opt.initialval="number"==typeof d.opt.initialval?d.opt.initialval:d.opt.initialval(d);var e=a(d).outerWidth(),f=a(d).outerHeight();d.x="object"==typeof b?b.clientX+document.body.scrollLeft-c.offset().left:"number"==typeof b?b*e/d.opt.scale:d.opt.initialval*e/d.opt.scale,d.y="object"==typeof b?b.clientY+document.body.scrollTop-c.offset().top:"number"==typeof b?(d.opt.scale-d.opt.initialval-b)*f/d.opt.scale:d.opt.initialval*f/d.opt.scale,d.y=c.outerHeight()-d.y,d.scaleX=d.x*d.opt.scale/e,d.scaleY=d.y*d.opt.scale/f,d.outOfRangeX=d.scaleX>d.opt.scale?d.scaleX-d.opt.scale:d.scaleX<0?d.scaleX:0,d.outOfRangeY=d.scaleY>d.opt.scale?d.scaleY-d.opt.scale:d.scaleY<0?d.scaleY:0,d.outOfRange="h"==d.opt.orientation?d.outOfRangeX:d.outOfRangeY,d.value="undefined"!=typeof b?"h"==d.opt.orientation?d.x>=c.outerWidth()?d.opt.scale:d.x<=0?0:d.scaleX:d.y>=c.outerHeight()?d.opt.scale:d.y<=0?0:d.scaleY:"h"==d.opt.orientation?d.scaleX:d.scaleY,"h"==d.opt.orientation?d.level.width(g(d.x,e)+"%"):d.level.height(g(d.y,f)),"function"==typeof d.opt.callback&&d.opt.callback(d)}},a.fn.simpleSlider=a.simpleSlider.init,a.fn.updateSliderVal=a.simpleSlider.updateSliderVal}(jQuery); -;/*___________________________________________________________________________________________________________________________________________________ - _ jquery.mb.components _ - _ _ - _ file: jquery.mb.storage.min.js _ - _ last modified: 24/05/15 16.08 _ - _ _ - _ Open Lab s.r.l., Florence - Italy _ - _ _ - _ email: matteo@open-lab.com _ - _ site: http://pupunzi.com _ - _ http://open-lab.com _ - _ blog: http://pupunzi.open-lab.com _ - _ Q&A: http://jquery.pupunzi.com _ - _ _ - _ Licences: MIT, GPL _ - _ http://www.opensource.org/licenses/mit-license.php _ - _ http://www.gnu.org/licenses/gpl.html _ - _ _ - _ Copyright (c) 2001-2015. Matteo Bicocchi (Pupunzi); _ - ___________________________________________________________________________________________________________________________________________________*/ - -!function(a){a.mbCookie={set:function(a,b,c,d){b=JSON.stringify(b),c||(c=7),d=d?"; domain="+d:"";var f,e=new Date;e.setTime(e.getTime()+1e3*60*60*24*c),f="; expires="+e.toGMTString(),document.cookie=a+"="+b+f+"; path=/"+d},get:function(a){for(var b=a+"=",c=document.cookie.split(";"),d=0;d 0) { - self.$overlay.data('$optionsSection').find(".createSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".btn-showSlide").removeClass("hide"); - } else { - self.$overlay.data('$optionsSection').find(".createSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".btn-showSlide").addClass("hide"); - } - }, 100); - }, - - add_btn_edit_slide: function () { - var self = this; - self.$overlay.data('$optionsSection').append(' Edit Slide '); - self.$overlay.data('$optionsSection').on('click', '.btn-showSlide', _.bind(this.toggle_slide, this)); - }, - - create_slide: function (previewMode, value, $li) { - var self = this, - slide = '

        Your new slide

        '; - self.$target.append(slide); - self.$overlay.data('$optionsSection').find(".btn-showSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".createSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").removeClass("hide"); - }, - - delete_slide: function (previewMode, value, $li) { - var self = this; - self.$target.find(".slide").remove(); - self.$overlay.data('$optionsSection').find(".btn-showSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".createSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").addClass("hide"); - }, - - toggle_slide: function () { - var a = this.$overlay.data('$optionsSection').find(".btn-showSlide"), - i = a.find("i"), - t = this.$target, - s = t.find(".slide"); - if (!t.hasClass("showSlide")) { - t.addClass("showSlide"); i.addClass("fa-toggle-on").removeClass("fa-toggle-off"); i.css("color", "#FFF"); - s.addClass("visible"); - } else { - t.removeClass("showSlide"); i.removeClass("fa-toggle-on").addClass("fa-toggle-off"); i.css("color", ""); - s.removeClass("visible"); - } - }, - onFocus: function () { - this._adapt_items_height(); - }, - onBlur: function () { - this._adapt_items_height(); - }, - cleanForSave: function() { - this.$target.removeClass("showSlide") - .find(".slide").removeClass("visible"); - - this._adapt_items_height(); - }, - _adapt_items_height: function () { - var $items = this.$target.closest(".s_animated_boxes").find(".item"); - var min_height = _.reduce($items.find(".v-align"), function (memo, item) { - return Math.max(memo, $(item).outerHeight(true) + 40); - }, 200); - $items.css("height", min_height); - }, - }); -}); diff --git a/theme_clean/theme_common/static/src/js/s_animated_boxes_frontend.js b/theme_clean/theme_common/static/src/js/s_animated_boxes_frontend.js deleted file mode 100644 index ec39eab..0000000 --- a/theme_clean/theme_common/static/src/js/s_animated_boxes_frontend.js +++ /dev/null @@ -1,15 +0,0 @@ -odoo.define('theme_common.s_animated_boxes_frontend', function (require) { - 'use strict'; - -var publicWidget = require('web.public.widget'); - -/** - * This is a fix for some apple devices. - * The slide of animated boxes widget is shown on hover or click on mobile - * devices, but iOS only activates :hover if the element targeted is - * clickable. - */ -publicWidget.registry._fixAnimatedBoxesAppleClick = publicWidget.registry._fixAppleCollapse.extend({ - selector: '.s_animated_boxes .item', -}); -}); diff --git a/theme_clean/theme_common/static/src/js/s_css_slider_editor.js b/theme_clean/theme_common/static/src/js/s_css_slider_editor.js deleted file mode 100644 index 78d7861..0000000 --- a/theme_clean/theme_common/static/src/js/s_css_slider_editor.js +++ /dev/null @@ -1,82 +0,0 @@ -odoo.define('theme_common.s_css_slider_editor', function (require) { - 'use strict'; - - var s_options = require('web_editor.snippets.options'); - - s_options.registry.s_css_slider_slide = s_options.Class.extend({ - newSlideUrl: "/web/image/theme_common.image_content_23", - - start: function () { - var self = this; - - self.reset(); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - - setTimeout(function () { - self.$overlay.data('$optionsSection').find(".js_s_css_slider_addSlide").on('click', function () { self.addSlide(); }); - self.$overlay.data('$optionsSection').find(".js_s_css_slider_removeSlide").on('click', function () { self.removeSlide(); }); - }, 100); - - $(document.body).on("media-saved", function () { - self.resizeImgsEditor(); - }); - }, - - resizeImgsEditor: function () { - var self = this; - setTimeout(function () { - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }); - }, - - reset: function () { - var self= this; - self.$target.find(".s_css_slider_pagination").remove().end() - .find("span").unbind("click.s_css"); - }, - - addSlide: function () { - var self = this; - var $currentSlide = self.$target.find(".slider .slide.selected"); - $currentSlide.clone().insertAfter($currentSlide).removeClass("selected"); - - _.defer(function () { - self.reset(); - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }); - }, - - removeSlide: function () { - var self = this; - var $currentSlide = self.$target.find(".slider .slide.selected"); - - $currentSlide.remove(); - _.defer(function () { - self.reset(); - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }); - }, - - cleanForSave: function () { - var self = this; - self.$target - .find(".s_css_slider_pagination").remove().end() - .find(".navigation .prev").addClass("inactive").end() - .find(".navigation .next").removeClass("inactive").end() - .find(".slider .slide").removeClass("selected move-left").end() - .find(".slider .slide").first().addClass("selected"); - }, - }); -}); diff --git a/theme_clean/theme_common/static/src/js/s_css_slider_frontend.js b/theme_clean/theme_common/static/src/js/s_css_slider_frontend.js deleted file mode 100644 index 99d225c..0000000 --- a/theme_clean/theme_common/static/src/js/s_css_slider_frontend.js +++ /dev/null @@ -1,122 +0,0 @@ -odoo.define('theme_common.s_css_slider_frontend', function (require) { - 'use strict'; - - var publicWidget = require('web.public.widget'); - - publicWidget.registry.s_css_slider = publicWidget.Widget.extend({ - selector: ".s_css_slider", - disabledInEditableMode: false, - - start: function () { - var self = this; - var $container = self.$target; - $container.find(".s_css_slider_pagination").remove(); - // create slider pagination - var sliderPagination = self.createSliderPagination($container); - self.bindEvents($container, sliderPagination); - $(window).on("resize", function () { - self.resizeImgs($container); - }).trigger("resize"); - return this._super.apply(this, arguments); - }, - - bindEvents: function ($container, sliderPagination) { - var self = this, - $next_btn = $container.find('.next'), - $prev_btn = $container.find('.prev'); - - $next_btn.on('click.s_css', function (e) { - self.nextSlide($container, sliderPagination); - }); - - $prev_btn.on('click.s_css', function (e) { - self.prevSlide($container, sliderPagination); - }); - - if ($container.hasClass("autoplay") && this.editableMode !== true) { - var interval; - var autoplay = function () { - interval = setInterval(function () { - if (!$next_btn.hasClass("inactive")) { - self.nextSlide($container, sliderPagination); - } else { - self.prevSlide($container, sliderPagination, 0); - } - }, 3000); - }; - autoplay(); - $container.hover(function () { clearInterval(interval); }); - $container.mouseleave(function () { autoplay(); }); - } - - sliderPagination.on('click.s_css', function () { - var selectedDot = $(this); - if (!selectedDot.hasClass('selected')) { - var selectedPosition = selectedDot.index(), - activePosition = $container.find('.slider .selected').index(); - if ( activePosition < selectedPosition) { - self.nextSlide($container, sliderPagination, selectedPosition); - } else { - self.prevSlide($container, sliderPagination, selectedPosition); - } - } - }); - }, - - resizeImgs: function ($container) { - var cont_h = $container.height(), - imgs = $container.find(".slide img"); - - imgs.each(function () { - var $img = $(this), - img_h = $img.height(); - if (img_h > cont_h) { - $img.css("width", "100%"); - $img.css("margin-top", (cont_h - img_h)/2); - } - }); - }, - - createSliderPagination: function ($container) { - var wrapper = $('
          ').insertAfter($container.find('.navigation')); - $container.find('.slider .slide').each(function (index) { - var dotWrapper = (index === 0) ? $('
        • ') : $('
        • '), - dot = $('').appendTo(dotWrapper); - dotWrapper.appendTo(wrapper); - dot.text(index+1); - }); - return wrapper.children('li'); - }, - - nextSlide: function ($container, $pagination, $n) { - var self = this, - visibleSlide = $container.find('.slider .selected'), - navigationDot = $container.find('.s_css_slider_pagination .selected'); - - if (typeof $n === 'undefined') $n = visibleSlide.index() + 1; - visibleSlide.removeClass('selected'); - $container.find('.slider .slide').eq($n).addClass('selected').prevAll().addClass('move-left'); - navigationDot.removeClass('selected'); - $pagination.eq($n).addClass('selected'); - self.updateNavigation($container, $container.find('.slider .slide').eq($n)); - }, - - prevSlide: function ($container, $pagination, $n) { - var self = this, - visibleSlide = $container.find('.slider .selected'), - navigationDot = $container.find('.s_css_slider_pagination .selected'); - - if (typeof $n === 'undefined') $n = visibleSlide.index() - 1; - visibleSlide.removeClass('selected'); - $container.find('.slider .slide').eq($n).addClass('selected').removeClass('move-left').nextAll().removeClass('move-left'); - navigationDot.removeClass('selected'); - $pagination.eq($n).addClass('selected'); - self.updateNavigation($container, $container.find('.slider .slide').eq($n)); - }, - - updateNavigation: function ($container, $active) { - $container.find('.prev').toggleClass('inactive', $active.is(':first-child')); - $container.find('.next').toggleClass('inactive', $active.is(':last-child')); - }, - }); -}); diff --git a/theme_clean/theme_common/static/src/js/s_google_map_editor.js b/theme_clean/theme_common/static/src/js/s_google_map_editor.js deleted file mode 100644 index 9a5b4d7..0000000 --- a/theme_clean/theme_common/static/src/js/s_google_map_editor.js +++ /dev/null @@ -1,149 +0,0 @@ -odoo.define('theme_common.s_google_map_editor', function (require) { -'use strict'; - -var Dialog = require('web_editor.widget').Dialog; -var core = require('web.core'); -var sOptions = require('web_editor.snippets.options'); -var googleScriptLoaded = require('theme_common.s_google_map_frontend').googleScriptLoaded; - -var _t = core._t; - -sOptions.registry.map = sOptions.Class.extend({ - xmlDependencies: ['/theme_common/static/src/xml/s_google_map_modal.xml'], - defaultLocation: '(50.854975,4.3753899)', - - /** - * @override - */ - onBuilt: function () { - this._super.apply(this, arguments); - this.map('click', null, null); - }, - - //-------------------------------------------------------------------------- - // Options - //-------------------------------------------------------------------------- - - /** - * Opens the customization dialog. - * - * @see this.selectClass for parameters - */ - map: function (previewMode, value, $opt) { - var self = this; - - this.dialog = new Dialog(this, { - size: 'medium', - title: _t("Customize your map"), - buttons: [ - {text: _t("Save"), classes: 'btn-primary', close: true, click: function () { - if (!this.$('#placeBk').val()) { - this.$('#placeBk').val(self.defaultLocation); - } - self.$target.attr({ - 'data-map-gps': this.$('#placeBk').val(), - 'data-pin-style': this.$('#pin_style').val(), - 'data-pin-address': this.$('#pin_address').val(), - }); - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }}, - {text: _t("Cancel"), close: true} - ], - $content: $(core.qweb.render('theme_common.s_google_map_modal')) - }); - - this.dialog.opened().then((function () { - this.$('#pin_address').val(self.$target.attr('data-pin-address')); - this.$('#pin_style').val(self.$target.attr('data-pin-style')); - this.$('#placeBk').val(self.$target.attr('data-map-gps')); - var autocomplete = new google.maps.places.Autocomplete(this.$('#pin_address').get(0), {types: ['geocode']}); - google.maps.event.addListener(autocomplete, 'place_changed', function () { - var place = autocomplete.getPlace(); - self.dialog.$('#placeBk').val(place.geometry ? place.geometry.location : self.defaultLocation); - }); - }).bind(this.dialog)); - - googleScriptLoaded.then(function () { - self.dialog.open(); - }); - }, - /** - * Adapts map's type. - * - * @see this.selectClass for parameters - */ - mapType: function (previewMode, value, $opt) { - this.$target.attr('data-map-type', value); - this.$target.attr('data-map-color', ''); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - /** - * Adapts map's color. - * - * @see this.selectClass for parameters - */ - mapColor: function (previewMode, value, $opt) { - this.$target.attr('data-map-color', value); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - /** - * Adapts map's zoom. - * - * @see this.selectClass for parameters - */ - mapZoom: function (previewMode, value, $opt) { - this.$target.attr('data-map-zoom', value); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - /** - * Adapts map's location. - * - * @see this.selectClass for parameters - */ - mapGps: function (previewMode, value, $opt) { - this.$target.attr('data-map-gps', value); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - - //-------------------------------------------------------------------------- - // Private - //-------------------------------------------------------------------------- - - /** - * @override - */ - _setActive: function () { - this.$el.find('[data-map-type]') - .removeClass('active') - .filter('[data-map-type="' + this.$target.attr('data-map-type') + '"]') - .addClass('active'); - this.$el.find('[data-map-color]') - .removeClass('active') - .filter('[data-map-color="' + this.$target.attr('data-map-color') + '"]') - .addClass('active'); - this.$el.find('[data-map-zoom]') - .removeClass('active') - .filter('[data-map-zoom="' + this.$target.attr('data-map-zoom') + '"]') - .addClass('active'); - this.$el.find('[data-map-gps]') - .removeClass('active') - .filter('[data-map-gps="' + this.$target.attr('data-map-gps') + '"]') - .addClass('active'); - }, -}); -}); diff --git a/theme_clean/theme_common/static/src/js/s_google_map_frontend.js b/theme_clean/theme_common/static/src/js/s_google_map_frontend.js deleted file mode 100644 index a22cb5b..0000000 --- a/theme_clean/theme_common/static/src/js/s_google_map_frontend.js +++ /dev/null @@ -1,144 +0,0 @@ -odoo.define('theme_common.s_google_map_frontend', function (require) { -'use strict'; - -var core = require('web.core'); -var publicWidget = require('web.public.widget'); -var googleScriptLoaded = $.Deferred(); - -var _t = core._t; - -publicWidget.registry.s_google_map = publicWidget.Widget.extend({ - selector: '.s_google_map', - disabledInEditableMode: false, - - /** - * @override - */ - start: function () { - var self = this; - var defs = [this._super.apply(this, arguments)]; - - if (typeof google !== 'object' || typeof google.maps !== 'object') { - if (!publicWidget.registry.s_google_map.isScriptLoading) { - publicWidget.registry.s_google_map.isScriptLoading = true; - window.odoo_s_google_map_redraw_all = function odoo_s_google_map_redraw_all() { - _.each($('section.s_google_map'), function (map) { - self.trigger_up('widgets_start_request', { - editableMode: self.editableMode, - $target: $(map), - }); - }); - publicWidget.registry.s_google_map.isScriptLoading = false; - googleScriptLoaded.resolve(); - }; - - defs.push(this._rpc({ - route: '/theme_common/google_maps_api_key', - }).then(function (data) { - var key_param = ''; - var data_json = JSON.parse(data); - if (data_json.google_maps_api_key !== '') { - key_param = '&key=' + data_json.google_maps_api_key; - } - $('head').append($('" ).attr( { - "src": jQuery.mbYTPlayer.locationProtocol + "//www.youtube.com/iframe_api?v=" + jQuery.mbYTPlayer.version, - "id": "YTAPI" - } ); - jQuery( "head" ).prepend( tag ); - } else { - setTimeout( function() { - jQuery( document ).trigger( "YTAPIReady" ); - }, 100 ) - } - jQuery( document ).on( "YTAPIReady", function() { - if( ( YTPlayer.isBackground && ytp.backgroundIsInited ) || YTPlayer.isInit ) return; - if( YTPlayer.isBackground ) { - ytp.backgroundIsInited = true; - } - YTPlayer.opt.autoPlay = typeof YTPlayer.opt.autoPlay == "undefined" ? ( YTPlayer.isBackground ? true : false ) : YTPlayer.opt.autoPlay; - YTPlayer.opt.vol = YTPlayer.opt.vol ? YTPlayer.opt.vol : 100; - jQuery.mbYTPlayer.getDataFromAPI( YTPlayer ); - jQuery( YTPlayer ).on( "YTPChanged", function() { - if( YTPlayer.isInit ) return; - YTPlayer.isInit = true; - //if is mobile && isPlayer fallback to the default YT player - if( jQuery.browser.mobile && YTPlayer.canPlayOnMobile ) { - // Try to adjust the player dimention - if( YTPlayer.opt.containment.outerWidth() > jQuery( window ).width() ) { - YTPlayer.opt.containment.css( { - maxWidth: "100%" - } ); - var h = YTPlayer.opt.containment.outerWidth() * .6; - YTPlayer.opt.containment.css( { - maxHeight: h - } ); - } - new YT.Player( playerID, { - videoId: YTPlayer.videoID.toString(), - height: '100%', - width: '100%', - events: { - 'onReady': function( event ) { - YTPlayer.player = event.target; - playerBox.css( { - opacity: 1 - } ); - YTPlayer.wrapper.css( { - opacity: 1 - } ); - } - } - } ); - return; - } - new YT.Player( playerID, { - videoId: YTPlayer.videoID.toString(), - playerVars: playerVars, - events: { - 'onReady': function( event ) { - YTPlayer.player = event.target; - if( YTPlayer.isReady ) return; - YTPlayer.isReady = YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ? false : true; - YTPlayer.playerEl = YTPlayer.player.getIframe(); - $YTPlayer.optimizeDisplay(); - YTPlayer.videoID = videoID; - jQuery( window ).on( "resize.YTP", function() { - $YTPlayer.optimizeDisplay(); - } ); - jQuery.mbYTPlayer.checkForState( YTPlayer ); - // Trigger state events - var YTPEvent = jQuery.Event( "YTPUnstarted" ); - YTPEvent.time = YTPlayer.player.time; - if( YTPlayer.canTrigger ) jQuery( YTPlayer ).trigger( YTPEvent ); - }, - /** - * - * @param event - * - * -1 (unstarted) - * 0 (ended) - * 1 (playing) - * 2 (paused) - * 3 (buffering) - * 5 (video cued). - * - * - */ - 'onStateChange': function( event ) { - if( typeof event.target.getPlayerState != "function" ) return; - var state = event.target.getPlayerState(); - if( YTPlayer.state == state ) return; - YTPlayer.state = state; - var eventType; - switch( state ) { - case -1: //------------------------------------------------ unstarted - eventType = "YTPUnstarted"; - break; - case 0: //------------------------------------------------ ended - eventType = "YTPEnd"; - break; - case 1: //------------------------------------------------ play - eventType = "YTPStart"; - if( YTPlayer.controlBar ) YTPlayer.controlBar.find( ".mb_YTPPlaypause" ).html( jQuery.mbYTPlayer.controls.pause ); - if( typeof _gaq != "undefined" && eval( YTPlayer.opt.gaTrack ) ) _gaq.push( [ '_trackEvent', 'YTPlayer', 'Play', ( YTPlayer.hasData ? YTPlayer.videoData.title : YTPlayer.videoID.toString() ) ] ); - if( typeof ga != "undefined" && eval( YTPlayer.opt.gaTrack ) ) ga( 'send', 'event', 'YTPlayer', 'play', ( YTPlayer.hasData ? YTPlayer.videoData.title : YTPlayer.videoID.toString() ) ); - break; - case 2: //------------------------------------------------ pause - eventType = "YTPPause"; - if( YTPlayer.controlBar ) YTPlayer.controlBar.find( ".mb_YTPPlaypause" ).html( jQuery.mbYTPlayer.controls.play ); - break; - case 3: //------------------------------------------------ buffer - YTPlayer.player.setPlaybackQuality( YTPlayer.opt.quality ); - eventType = "YTPBuffering"; - if( YTPlayer.controlBar ) YTPlayer.controlBar.find( ".mb_YTPPlaypause" ).html( jQuery.mbYTPlayer.controls.play ); - break; - case 5: //------------------------------------------------ cued - eventType = "YTPCued"; - break; - default: - break; - } - // Trigger state events - var YTPEvent = jQuery.Event( eventType ); - YTPEvent.time = YTPlayer.player.time; - if( YTPlayer.canTrigger ) jQuery( YTPlayer ).trigger( YTPEvent ); - }, - /** - * - * @param e - */ - 'onPlaybackQualityChange': function( e ) { - var quality = e.target.getPlaybackQuality(); - var YTPQualityChange = jQuery.Event( "YTPQualityChange" ); - YTPQualityChange.quality = quality; - jQuery( YTPlayer ).trigger( YTPQualityChange ); - }, - /** - * - * @param err - */ - 'onError': function( err ) { - if( err.data == 150 ) { - console.log( "Embedding this video is restricted by Youtube." ); - if( YTPlayer.isPlayList ) jQuery( YTPlayer ).playNext(); - } - if( err.data == 2 && YTPlayer.isPlayList ) jQuery( YTPlayer ).playNext(); - if( typeof YTPlayer.opt.onError == "function" ) YTPlayer.opt.onError( $YTPlayer, err ); - } - } - } ); - } ); - } ) - } ); - }, - /** - * - * @param YTPlayer - */ - getDataFromAPI: function( YTPlayer ) { - YTPlayer.videoData = jQuery.mbStorage.get( "YYTPlayer_data_" + YTPlayer.videoID ); - jQuery( YTPlayer ).off( "YTPData.YTPlayer" ).on( "YTPData.YTPlayer", function() { - if( YTPlayer.hasData ) { - - if( YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ) { - var bgndURL = YTPlayer.videoData.thumb_max || YTPlayer.videoData.thumb_high || YTPlayer.videoData.thumb_medium; - YTPlayer.opt.containment.css( { - background: "rgba(0,0,0,0.5) url(" + bgndURL + ") center center", - backgroundSize: "cover" - } ); - YTPlayer.opt.backgroundUrl = bgndURL; - } - } - } ); - - if( YTPlayer.videoData ) { - - setTimeout( function() { - YTPlayer.opt.ratio = YTPlayer.opt.ratio == "auto" ? "16/9" : YTPlayer.opt.ratio; - YTPlayer.dataReceived = true; - jQuery( YTPlayer ).trigger( "YTPChanged" ); - var YTPData = jQuery.Event( "YTPData" ); - YTPData.prop = {}; - for( var x in YTPlayer.videoData ) YTPData.prop[ x ] = YTPlayer.videoData[ x ]; - jQuery( YTPlayer ).trigger( YTPData ); - }, 500 ); - - YTPlayer.hasData = true; - } else if( jQuery.mbYTPlayer.apiKey ) { - // Get video info from API3 (needs api key) - // snippet,player,contentDetails,statistics,status - jQuery.getJSON( jQuery.mbYTPlayer.locationProtocol + "//www.googleapis.com/youtube/v3/videos?id=" + YTPlayer.videoID + "&key=" + jQuery.mbYTPlayer.apiKey + "&part=snippet", function( data ) { - YTPlayer.dataReceived = true; - jQuery( YTPlayer ).trigger( "YTPChanged" ); - - function parseYTPlayer_data( data ) { - YTPlayer.videoData = {}; - YTPlayer.videoData.id = YTPlayer.videoID; - YTPlayer.videoData.channelTitle = data.channelTitle; - YTPlayer.videoData.title = data.title; - YTPlayer.videoData.description = data.description.length < 400 ? data.description : data.description.substring( 0, 400 ) + " ..."; - YTPlayer.videoData.aspectratio = YTPlayer.opt.ratio == "auto" ? "16/9" : YTPlayer.opt.ratio; - YTPlayer.opt.ratio = YTPlayer.videoData.aspectratio; - YTPlayer.videoData.thumb_max = data.thumbnails.maxres ? data.thumbnails.maxres.url : null; - YTPlayer.videoData.thumb_high = data.thumbnails.high ? data.thumbnails.high.url : null; - YTPlayer.videoData.thumb_medium = data.thumbnails.medium ? data.thumbnails.medium.url : null; - jQuery.mbStorage.set( "YYTPlayer_data_" + YTPlayer.videoID, YTPlayer.videoData ); - } - parseYTPlayer_data( data.items[ 0 ].snippet ); - YTPlayer.hasData = true; - var YTPData = jQuery.Event( "YTPData" ); - YTPData.prop = {}; - for( var x in YTPlayer.videoData ) YTPData.prop[ x ] = YTPlayer.videoData[ x ]; - jQuery( YTPlayer ).trigger( YTPData ); - } ); - } else { - setTimeout( function() { - jQuery( YTPlayer ).trigger( "YTPChanged" ); - }, 50 ); - if( YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ) { - var bgndURL = jQuery.mbYTPlayer.locationProtocol + "//i.ytimg.com/vi/" + YTPlayer.videoID + "/hqdefault.jpg"; - YTPlayer.opt.containment.css( { - background: "rgba(0,0,0,0.5) url(" + bgndURL + ") center center", - backgroundSize: "cover" - } ); - YTPlayer.opt.backgroundUrl = bgndURL; - } - YTPlayer.videoData = null; - YTPlayer.opt.ratio = YTPlayer.opt.ratio == "auto" ? "16/9" : YTPlayer.opt.ratio; - } - if( YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ) { - YTPlayer.loading = jQuery( "
          " ).addClass( "loading" ).html( "Loading" ).hide(); - jQuery( YTPlayer ).append( YTPlayer.loading ); - YTPlayer.loading.fadeIn(); - } - }, - /** - * - */ - removeStoredData: function() { - jQuery.mbStorage.remove(); - }, - /** - * - * @returns {*|YTPlayer.videoData} - */ - getVideoData: function() { - var YTPlayer = this.get( 0 ); - return YTPlayer.videoData; - }, - /** - * - * @returns {*|YTPlayer.videoID|boolean} - */ - getVideoID: function() { - var YTPlayer = this.get( 0 ); - return YTPlayer.videoID || false; - }, - /** - * - * @param quality - */ - setVideoQuality: function( quality ) { - var YTPlayer = this.get( 0 ); - if( !jQuery.browser.chrome ) YTPlayer.player.setPlaybackQuality( quality ); - }, - /** - * @param videos - * @param shuffle - * @param callback - * @returns {jQuery.mbYTPlayer} - */ - playlist: function( videos, shuffle, callback ) { - var $YTPlayer = this; - var YTPlayer = $YTPlayer.get( 0 ); - YTPlayer.isPlayList = true; - if( shuffle ) videos = jQuery.shuffle( videos ); - if( !YTPlayer.videoID ) { - YTPlayer.videos = videos; - YTPlayer.videoCounter = 0; - YTPlayer.videoLength = videos.length; - jQuery( YTPlayer ).data( "property", videos[ 0 ] ); - jQuery( YTPlayer ).mb_YTPlayer(); - } - if( typeof callback == "function" ) jQuery( YTPlayer ).on( "YTPChanged", function() { - callback( YTPlayer ); - } ); - jQuery( YTPlayer ).on( "YTPEnd", function() { - jQuery( YTPlayer ).playNext(); - } ); - return $YTPlayer; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - playNext: function() { - var YTPlayer = this.get( 0 ); - YTPlayer.videoCounter++; - if( YTPlayer.videoCounter >= YTPlayer.videoLength ) YTPlayer.videoCounter = 0; - jQuery( YTPlayer ).changeMovie( YTPlayer.videos[ YTPlayer.videoCounter ] ); - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - playPrev: function() { - var YTPlayer = this.get( 0 ); - YTPlayer.videoCounter--; - if( YTPlayer.videoCounter < 0 ) YTPlayer.videoCounter = YTPlayer.videoLength - 1; - jQuery( YTPlayer ).changeMovie( YTPlayer.videos[ YTPlayer.videoCounter ] ); - return this; - }, - /** - * - * @param opt - */ - changeMovie: function( opt ) { - var YTPlayer = this.get( 0 ); - YTPlayer.opt.startAt = 0; - YTPlayer.opt.stopAt = 0; - YTPlayer.opt.mute = true; - YTPlayer.hasData = false; - YTPlayer.hasChanged = true; - if( opt ) jQuery.extend( YTPlayer.opt, YTPlayer.defaultOpt, opt ); - YTPlayer.videoID = getYTPVideoID( YTPlayer.opt.videoURL ).videoID; - jQuery( YTPlayer.playerEl ).CSSAnimate( { - opacity: 0 - }, 200, function() { - jQuery( YTPlayer ).YTPGetPlayer().cueVideoByUrl( encodeURI( jQuery.mbYTPlayer.locationProtocol + "//www.youtube.com/v/" + YTPlayer.videoID ), 1, YTPlayer.opt.quality ); - jQuery.mbYTPlayer.checkForState( YTPlayer ); - jQuery( YTPlayer ).optimizeDisplay(); - jQuery.mbYTPlayer.getDataFromAPI( YTPlayer ); - return this; - } ); - }, - /** - * - * @returns {player} - */ - getPlayer: function() { - return jQuery( this ).get( 0 ).player; - }, - playerDestroy: function() { - var YTPlayer = this.get( 0 ); - ytp.YTAPIReady = false; - ytp.backgroundIsInited = false; - YTPlayer.isInit = false; - YTPlayer.videoID = null; - var playerBox = YTPlayer.wrapper; - playerBox.remove(); - jQuery( "#controlBar_" + YTPlayer.id ).remove(); - clearInterval( YTPlayer.checkForStartAt ); - clearInterval( YTPlayer.getState ); - return this; - }, - /** - * - * @param real - * @returns {jQuery.mbYTPlayer} - */ - fullscreen: function( real ) { - var YTPlayer = this.get( 0 ); - if( typeof real == "undefined" ) real = YTPlayer.opt.realfullscreen; - real = eval( real ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var fullScreenBtn = controls.find( ".mb_OnlyYT" ); - var videoWrapper = YTPlayer.isSelf ? YTPlayer.opt.containment : YTPlayer.wrapper; - //var videoWrapper = YTPlayer.wrapper; - if( real ) { - var fullscreenchange = jQuery.browser.mozilla ? "mozfullscreenchange" : jQuery.browser.webkit ? "webkitfullscreenchange" : "fullscreenchange"; - jQuery( document ).off( fullscreenchange ).on( fullscreenchange, function() { - var isFullScreen = RunPrefixMethod( document, "IsFullScreen" ) || RunPrefixMethod( document, "FullScreen" ); - if( !isFullScreen ) { - YTPlayer.isAlone = false; - fullScreenBtn.html( jQuery.mbYTPlayer.controls.onlyYT ); - jQuery( YTPlayer ).YTPSetVideoQuality( YTPlayer.opt.quality ); - videoWrapper.removeClass( "fullscreen" ); - videoWrapper.CSSAnimate( { - opacity: YTPlayer.opt.opacity - }, 500 ); - videoWrapper.css( { - zIndex: 0 - } ); - if( YTPlayer.isBackground ) { - jQuery( "body" ).after( controls ); - } else { - YTPlayer.wrapper.before( controls ); - } - jQuery( window ).resize(); - jQuery( YTPlayer ).trigger( "YTPFullScreenEnd" ); - } else { - jQuery( YTPlayer ).YTPSetVideoQuality( "default" ); - jQuery( YTPlayer ).trigger( "YTPFullScreenStart" ); - } - } ); - } - if( !YTPlayer.isAlone ) { - function hideMouse() { - YTPlayer.overlay.css( { - cursor: "none" - } ); - } - jQuery( document ).on( "mousemove.YTPlayer", function( e ) { - YTPlayer.overlay.css( { - cursor: "auto" - } ); - clearTimeout( YTPlayer.hideCursor ); - if( !jQuery( e.target ).parents().is( ".mb_YTPBar" ) ) YTPlayer.hideCursor = setTimeout( hideMouse, 3000 ); - } ); - hideMouse(); - if( real ) { - videoWrapper.css( { - opacity: 0 - } ); - videoWrapper.addClass( "fullscreen" ); - launchFullscreen( videoWrapper.get( 0 ) ); - setTimeout( function() { - videoWrapper.CSSAnimate( { - opacity: 1 - }, 1000 ); - YTPlayer.wrapper.append( controls ); - jQuery( YTPlayer ).optimizeDisplay(); - YTPlayer.player.seekTo( YTPlayer.player.getCurrentTime() + .1, true ); - }, 500 ) - } else videoWrapper.css( { - zIndex: 10000 - } ).CSSAnimate( { - opacity: 1 - }, 1000 ); - fullScreenBtn.html( jQuery.mbYTPlayer.controls.showSite ); - YTPlayer.isAlone = true; - } else { - jQuery( document ).off( "mousemove.YTPlayer" ); - YTPlayer.overlay.css( { - cursor: "auto" - } ); - if( real ) { - cancelFullscreen(); - } else { - videoWrapper.CSSAnimate( { - opacity: YTPlayer.opt.opacity - }, 500 ); - videoWrapper.css( { - zIndex: 0 - } ); - } - fullScreenBtn.html( jQuery.mbYTPlayer.controls.onlyYT ); - YTPlayer.isAlone = false; - } - - function RunPrefixMethod( obj, method ) { - var pfx = [ "webkit", "moz", "ms", "o", "" ]; - var p = 0, - m, t; - while( p < pfx.length && !obj[ m ] ) { - m = method; - if( pfx[ p ] == "" ) { - m = m.substr( 0, 1 ).toLowerCase() + m.substr( 1 ); - } - m = pfx[ p ] + m; - t = typeof obj[ m ]; - if( t != "undefined" ) { - pfx = [ pfx[ p ] ]; - return( t == "function" ? obj[ m ]() : obj[ m ] ); - } - p++; - } - } - - function launchFullscreen( element ) { - RunPrefixMethod( element, "RequestFullScreen" ); - } - - function cancelFullscreen() { - if( RunPrefixMethod( document, "FullScreen" ) || RunPrefixMethod( document, "IsFullScreen" ) ) { - RunPrefixMethod( document, "CancelFullScreen" ); - } - } - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - toggleLoops: function() { - var YTPlayer = this.get( 0 ); - var data = YTPlayer.opt; - if( data.loop == 1 ) { - data.loop = 0; - } else { - if( data.startAt ) { - YTPlayer.player.seekTo( data.startAt ); - } else { - YTPlayer.player.playVideo(); - } - data.loop = 1; - } - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - play: function() { - var YTPlayer = this.get( 0 ); - if( !YTPlayer.isReady ) return; - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var playBtn = controls.find( ".mb_YTPPlaypause" ); - playBtn.html( jQuery.mbYTPlayer.controls.pause ); - YTPlayer.player.playVideo(); - YTPlayer.wrapper.CSSAnimate( { - opacity: YTPlayer.isAlone ? 1 : YTPlayer.opt.opacity - }, 2000 ); - jQuery( YTPlayer.playerEl ).CSSAnimate( { - opacity: 1 - }, 1000 ); - jQuery( YTPlayer ).css( "background-image", "none" ); - return this; - }, - /** - * - * @param callback - * @returns {jQuery.mbYTPlayer} - */ - togglePlay: function( callback ) { - var YTPlayer = this.get( 0 ); - if( YTPlayer.state == 1 ) this.YTPPause(); - else this.YTPPlay(); - if( typeof callback == "function" ) { - callback( YTPlayer.state ); - } - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - stop: function() { - var YTPlayer = this.get( 0 ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var playBtn = controls.find( ".mb_YTPPlaypause" ); - playBtn.html( jQuery.mbYTPlayer.controls.play ); - YTPlayer.player.stopVideo(); - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - pause: function() { - var YTPlayer = this.get( 0 ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var playBtn = controls.find( ".mb_YTPPlaypause" ); - playBtn.html( jQuery.mbYTPlayer.controls.play ); - YTPlayer.player.pauseVideo(); - return this; - }, - /** - * - * @param val - * @returns {jQuery.mbYTPlayer} - */ - seekTo: function( val ) { - var YTPlayer = this.get( 0 ); - YTPlayer.player.seekTo( val, true ); - return this; - }, - /** - * - * @param val - * @returns {jQuery.mbYTPlayer} - */ - setVolume: function( val ) { - var YTPlayer = this.get( 0 ); - if( !val && !YTPlayer.opt.vol && YTPlayer.player.getVolume() == 0 ) jQuery( YTPlayer ).YTPUnmute(); - else if( ( !val && YTPlayer.player.getVolume() > 0 ) || ( val && YTPlayer.opt.vol == val ) ) { - if( !YTPlayer.isMute ) jQuery( YTPlayer ).YTPMute(); - else jQuery( YTPlayer ).YTPUnmute(); - } else { - YTPlayer.opt.vol = val; - YTPlayer.player.setVolume( YTPlayer.opt.vol ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length ) YTPlayer.volumeBar.updateSliderVal( val ) - } - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - mute: function() { - var YTPlayer = this.get( 0 ); - if( YTPlayer.isMute ) return; - YTPlayer.player.mute(); - YTPlayer.isMute = true; - YTPlayer.player.setVolume( 0 ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length && YTPlayer.volumeBar.width() > 10 ) { - YTPlayer.volumeBar.updateSliderVal( 0 ); - } - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var muteBtn = controls.find( ".mb_YTPMuteUnmute" ); - muteBtn.html( jQuery.mbYTPlayer.controls.unmute ); - jQuery( YTPlayer ).addClass( "isMuted" ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length ) YTPlayer.volumeBar.addClass( "muted" ); - var YTPEvent = jQuery.Event( "YTPMuted" ); - YTPEvent.time = YTPlayer.player.time; - if( YTPlayer.canTrigger ) jQuery( YTPlayer ).trigger( YTPEvent ); - return this; - }, - /** - * - * @returns {jQuery.mbYTPlayer} - */ - unmute: function() { - var YTPlayer = this.get( 0 ); - if( !YTPlayer.isMute ) return; - YTPlayer.player.unMute(); - YTPlayer.isMute = false; - YTPlayer.player.setVolume( YTPlayer.opt.vol ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length ) YTPlayer.volumeBar.updateSliderVal( YTPlayer.opt.vol > 10 ? YTPlayer.opt.vol : 10 ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var muteBtn = controls.find( ".mb_YTPMuteUnmute" ); - muteBtn.html( jQuery.mbYTPlayer.controls.mute ); - jQuery( YTPlayer ).removeClass( "isMuted" ); - if( YTPlayer.volumeBar && YTPlayer.volumeBar.length ) YTPlayer.volumeBar.removeClass( "muted" ); - var YTPEvent = jQuery.Event( "YTPUnmuted" ); - YTPEvent.time = YTPlayer.player.time; - if( YTPlayer.canTrigger ) jQuery( YTPlayer ).trigger( YTPEvent ); - return this; - }, - /** - * - * @param filter - * @param value - * @returns {jQuery.mbYTPlayer} - */ - applyFilter: function( filter, value ) { - var YTPlayer = this.get( 0 ); - YTPlayer.filters[ filter ].value = value; - if( YTPlayer.filtersEnabled ) this.YTPEnableFilters(); - return this; - }, - /** - * - * @param filters - * @returns {jQuery.mbYTPlayer} - */ - applyFilters: function( filters ) { - var YTPlayer = this.get( 0 ); - this.on( "YTPReady", function() { - for( var key in filters ) { - YTPlayer.filters[ key ].value = filters[ key ]; - jQuery( YTPlayer ).YTPApplyFilter( key, filters[ key ] ); - } - jQuery( YTPlayer ).trigger( "YTPFiltersApplied" ); - } ); - return this; - }, - /** - * - * @param filter - * @param value - * @returns {*} - */ - toggleFilter: function( filter, value ) { - return this.each( function() { - var YTPlayer = this; - if( !YTPlayer.filters[ filter ].value ) YTPlayer.filters[ filter ].value = value; - else YTPlayer.filters[ filter ].value = 0; - if( YTPlayer.filtersEnabled ) jQuery( this ).YTPEnableFilters(); - } ) - return this; - }, - /** - * - * @param callback - * @returns {*} - */ - toggleFilters: function( callback ) { - return this.each( function() { - var YTPlayer = this; - if( YTPlayer.filtersEnabled ) { - jQuery( YTPlayer ).trigger( "YTPDisableFilters" ); - jQuery( YTPlayer ).YTPDisableFilters(); - } else { - jQuery( YTPlayer ).YTPEnableFilters(); - jQuery( YTPlayer ).trigger( "YTPEnableFilters" ); - } - if( typeof callback == "function" ) callback( YTPlayer.filtersEnabled ); - } ) - }, - /** - * - * @returns {*} - */ - disableFilters: function() { - return this.each( function() { - var YTPlayer = this; - var iframe = jQuery( YTPlayer.playerEl ); - iframe.css( "-webkit-filter", "" ); - iframe.css( "filter", "" ); - YTPlayer.filtersEnabled = false; - } ) - }, - /** - * - * @returns {*} - */ - enableFilters: function() { - return this.each( function() { - var YTPlayer = this; - var iframe = jQuery( YTPlayer.playerEl ); - var filterStyle = ""; - for( var key in YTPlayer.filters ) { - if( YTPlayer.filters[ key ].value ) filterStyle += key.replace( "_", "-" ) + "(" + YTPlayer.filters[ key ].value + YTPlayer.filters[ key ].unit + ") "; - } - iframe.css( "-webkit-filter", filterStyle ); - iframe.css( "filter", filterStyle ); - YTPlayer.filtersEnabled = true; - } ) - return this; - }, - /** - * - * @param filter - * @param callback - * @returns {*} - */ - removeFilter: function( filter, callback ) { - return this.each( function() { - if( typeof filter == "function" ) { - callback = filter; - filter = null; - } - var YTPlayer = this; - if( !filter ) - for( var key in YTPlayer.filters ) { - jQuery( this ).YTPApplyFilter( key, 0 ); - if( typeof callback == "function" ) callback( key ); - } else { - jQuery( this ).YTPApplyFilter( filter, 0 ); - if( typeof callback == "function" ) callback( filter ); - } - } ); - return this; - }, - /** - * - * @returns {{totalTime: number, currentTime: number}} - */ - manageProgress: function() { - var YTPlayer = this.get( 0 ); - var controls = jQuery( "#controlBar_" + YTPlayer.id ); - var progressBar = controls.find( ".mb_YTPProgress" ); - var loadedBar = controls.find( ".mb_YTPLoaded" ); - var timeBar = controls.find( ".mb_YTPseekbar" ); - var totW = progressBar.outerWidth(); - var currentTime = Math.floor( YTPlayer.player.getCurrentTime() ); - var totalTime = Math.floor( YTPlayer.player.getDuration() ); - var timeW = ( currentTime * totW ) / totalTime; - var startLeft = 0; - var loadedW = YTPlayer.player.getVideoLoadedFraction() * 100; - loadedBar.css( { - left: startLeft, - width: loadedW + "%" - } ); - timeBar.css( { - left: 0, - width: timeW - } ); - return { - totalTime: totalTime, - currentTime: currentTime - }; - }, - /** - * - * @param YTPlayer - */ - buildControls: function( YTPlayer ) { - var data = YTPlayer.opt; - // @data.printUrl: is deprecated; use data.showYTLogo - data.showYTLogo = data.showYTLogo || data.printUrl; - if( jQuery( "#controlBar_" + YTPlayer.id ).length ) return; - YTPlayer.controlBar = jQuery( "" ).attr( "id", "controlBar_" + YTPlayer.id ).addClass( "mb_YTPBar" ).css( { - whiteSpace: "noWrap", - position: YTPlayer.isBackground ? "fixed" : "absolute", - zIndex: YTPlayer.isBackground ? 10000 : 1000 - } ).hide(); - var buttonBar = jQuery( "
          " ).addClass( "buttonBar" ); - /* play/pause button*/ - var playpause = jQuery( "" + jQuery.mbYTPlayer.controls.play + "" ).addClass( "mb_YTPPlaypause ytpicon" ).click( function() { - if( YTPlayer.player.getPlayerState() == 1 ) jQuery( YTPlayer ).YTPPause(); - else jQuery( YTPlayer ).YTPPlay(); - } ); - /* mute/unmute button*/ - var MuteUnmute = jQuery( "" + jQuery.mbYTPlayer.controls.mute + "" ).addClass( "mb_YTPMuteUnmute ytpicon" ).click( function() { - if( YTPlayer.player.getVolume() == 0 ) { - jQuery( YTPlayer ).YTPUnmute(); - } else { - jQuery( YTPlayer ).YTPMute(); - } - } ); - /* volume bar*/ - var volumeBar = jQuery( "
          " ).addClass( "mb_YTPVolumeBar" ).css( { - display: "inline-block" - } ); - YTPlayer.volumeBar = volumeBar; - /* time elapsed */ - var idx = jQuery( "" ).addClass( "mb_YTPTime" ); - var vURL = data.videoURL ? data.videoURL : ""; - if( vURL.indexOf( "http" ) < 0 ) vURL = jQuery.mbYTPlayer.locationProtocol + "//www.youtube.com/watch?v=" + data.videoURL; - var movieUrl = jQuery( "" ).html( jQuery.mbYTPlayer.controls.ytLogo ).addClass( "mb_YTPUrl ytpicon" ).attr( "title", "view on YouTube" ).on( "click", function() { - window.open( vURL, "viewOnYT" ) - } ); - var onlyVideo = jQuery( "" ).html( jQuery.mbYTPlayer.controls.onlyYT ).addClass( "mb_OnlyYT ytpicon" ).on( "click", function() { - jQuery( YTPlayer ).YTPFullscreen( data.realfullscreen ); - } ); - var progressBar = jQuery( "
          " ).addClass( "mb_YTPProgress" ).css( "position", "absolute" ).click( function( e ) { - timeBar.css( { - width: ( e.clientX - timeBar.offset().left ) - } ); - YTPlayer.timeW = e.clientX - timeBar.offset().left; - YTPlayer.controlBar.find( ".mb_YTPLoaded" ).css( { - width: 0 - } ); - var totalTime = Math.floor( YTPlayer.player.getDuration() ); - YTPlayer.goto = ( timeBar.outerWidth() * totalTime ) / progressBar.outerWidth(); - YTPlayer.player.seekTo( parseFloat( YTPlayer.goto ), true ); - YTPlayer.controlBar.find( ".mb_YTPLoaded" ).css( { - width: 0 - } ); - } ); - var loadedBar = jQuery( "
          " ).addClass( "mb_YTPLoaded" ).css( "position", "absolute" ); - var timeBar = jQuery( "
          " ).addClass( "mb_YTPseekbar" ).css( "position", "absolute" ); - progressBar.append( loadedBar ).append( timeBar ); - buttonBar.append( playpause ).append( MuteUnmute ).append( volumeBar ).append( idx ); - if( data.showYTLogo ) { - buttonBar.append( movieUrl ); - } - if( YTPlayer.isBackground || ( eval( YTPlayer.opt.realfullscreen ) && !YTPlayer.isBackground ) ) buttonBar.append( onlyVideo ); - YTPlayer.controlBar.append( buttonBar ).append( progressBar ); - if( !YTPlayer.isBackground ) { - YTPlayer.controlBar.addClass( "inlinePlayer" ); - YTPlayer.wrapper.before( YTPlayer.controlBar ); - } else { - jQuery( "body" ).after( YTPlayer.controlBar ); - } - volumeBar.simpleSlider( { - initialval: YTPlayer.opt.vol, - scale: 100, - orientation: "h", - callback: function( el ) { - if( el.value == 0 ) { - jQuery( YTPlayer ).YTPMute(); - } else { - jQuery( YTPlayer ).YTPUnmute(); - } - YTPlayer.player.setVolume( el.value ); - if( !YTPlayer.isMute ) YTPlayer.opt.vol = el.value; - } - } ); - }, - /** - * - * - * */ - checkForState: function( YTPlayer ) { - var interval = YTPlayer.opt.showControls ? 100 : 700; - clearInterval( YTPlayer.getState ); - //Checking if player has been removed from scene - if( !jQuery.contains( document, YTPlayer ) ) { - jQuery( YTPlayer ).YTPPlayerDestroy(); - clearInterval( YTPlayer.getState ); - clearInterval( YTPlayer.checkForStartAt ); - return; - } - jQuery.mbYTPlayer.checkForStart( YTPlayer ); - YTPlayer.getState = setInterval( function() { - var prog = jQuery( YTPlayer ).YTPManageProgress(); - var $YTPlayer = jQuery( YTPlayer ); - var data = YTPlayer.opt; - var startAt = YTPlayer.opt.startAt ? YTPlayer.opt.startAt : 0; - var stopAt = YTPlayer.opt.stopAt > YTPlayer.opt.startAt ? YTPlayer.opt.stopAt : 0; - stopAt = stopAt < YTPlayer.player.getDuration() ? stopAt : 0; - if( YTPlayer.player.time != prog.currentTime ) { - var YTPEvent = jQuery.Event( "YTPTime" ); - YTPEvent.time = YTPlayer.player.time; - jQuery( YTPlayer ).trigger( YTPEvent ); - } - YTPlayer.player.time = prog.currentTime; - if( YTPlayer.player.getVolume() == 0 ) $YTPlayer.addClass( "isMuted" ); - else $YTPlayer.removeClass( "isMuted" ); - if( YTPlayer.opt.showControls ) - if( prog.totalTime ) { - YTPlayer.controlBar.find( ".mb_YTPTime" ).html( jQuery.mbYTPlayer.formatTime( prog.currentTime ) + " / " + jQuery.mbYTPlayer.formatTime( prog.totalTime ) ); - } else { - YTPlayer.controlBar.find( ".mb_YTPTime" ).html( "-- : -- / -- : --" ); - } - if( eval( YTPlayer.opt.stopMovieOnBlur ) ) - if( !document.hasFocus() ) { - if( YTPlayer.state == 1 ) { - YTPlayer.hasFocus = false; - $YTPlayer.YTPPause(); - } - } else if( document.hasFocus() && !YTPlayer.hasFocus && !( YTPlayer.state == -1 || YTPlayer.state == 0 ) ) { - YTPlayer.hasFocus = true; - $YTPlayer.YTPPlay(); - } - if( YTPlayer.controlBar && YTPlayer.controlBar.outerWidth() <= 400 && !YTPlayer.isCompact ) { - YTPlayer.controlBar.addClass( "compact" ); - YTPlayer.isCompact = true; - if( !YTPlayer.isMute && YTPlayer.volumeBar ) YTPlayer.volumeBar.updateSliderVal( YTPlayer.opt.vol ); - } else if( YTPlayer.controlBar && YTPlayer.controlBar.outerWidth() > 400 && YTPlayer.isCompact ) { - YTPlayer.controlBar.removeClass( "compact" ); - YTPlayer.isCompact = false; - if( !YTPlayer.isMute && YTPlayer.volumeBar ) YTPlayer.volumeBar.updateSliderVal( YTPlayer.opt.vol ); - } - if( YTPlayer.player.getPlayerState() == 1 && ( parseFloat( YTPlayer.player.getDuration() - 1.5 ) < YTPlayer.player.getCurrentTime() || ( stopAt > 0 && parseFloat( YTPlayer.player.getCurrentTime() ) > stopAt ) ) ) { - if( YTPlayer.isEnded ) return; - YTPlayer.isEnded = true; - setTimeout( function() { - YTPlayer.isEnded = false - }, 1000 ); - if( YTPlayer.isPlayList ) { - clearInterval( YTPlayer.getState ); - var YTPEnd = jQuery.Event( "YTPEnd" ); - YTPEnd.time = YTPlayer.player.time; - jQuery( YTPlayer ).trigger( YTPEnd ); - return; - } else if( !data.loop ) { - YTPlayer.player.pauseVideo(); - YTPlayer.wrapper.CSSAnimate( { - opacity: 0 - }, 1000, function() { - var YTPEnd = jQuery.Event( "YTPEnd" ); - YTPEnd.time = YTPlayer.player.time; - jQuery( YTPlayer ).trigger( YTPEnd ); - YTPlayer.player.seekTo( startAt, true ); - if( !YTPlayer.isBackground ) { - YTPlayer.opt.containment.css( { - background: "rgba(0,0,0,0.5) url(" + YTPlayer.opt.backgroundUrl + ") center center", - backgroundSize: "cover" - } ); - } - } ); - } else { - - startAt = startAt || 1; - - YTPlayer.player.pauseVideo(); - YTPlayer.player.seekTo( startAt, true ); - $YTPlayer.YTPPlay(); - - } - } - }, interval ); - }, - /** - * - * */ - checkForStart: function( YTPlayer ) { - var $YTPlayer = jQuery( YTPlayer ); - //Checking if player has been removed from scene - if( !jQuery.contains( document, YTPlayer ) ) { - jQuery( YTPlayer ).YTPPlayerDestroy(); - return - } - if( jQuery.browser.chrome ) YTPlayer.opt.quality = "default"; - YTPlayer.player.pauseVideo(); - jQuery( YTPlayer ).muteYTPVolume(); - jQuery( "#controlBar_" + YTPlayer.id ).remove(); - if( YTPlayer.opt.showControls ) jQuery.mbYTPlayer.buildControls( YTPlayer ); - if( YTPlayer.opt.addRaster ) { - var classN = YTPlayer.opt.addRaster == "dot" ? "raster-dot" : "raster"; - YTPlayer.overlay.addClass( YTPlayer.isRetina ? classN + " retina" : classN ); - } else { - YTPlayer.overlay.removeClass( function( index, classNames ) { - // change the list into an array - var current_classes = classNames.split( " " ), - // array of classes which are to be removed - classes_to_remove = []; - jQuery.each( current_classes, function( index, class_name ) { - // if the classname begins with bg add it to the classes_to_remove array - if( /raster.*/.test( class_name ) ) { - classes_to_remove.push( class_name ); - } - } ); - classes_to_remove.push( "retina" ); - // turn the array back into a string - return classes_to_remove.join( " " ); - } ) - } - YTPlayer.checkForStartAt = setInterval( function() { - jQuery( YTPlayer ).YTPMute(); - var startAt = YTPlayer.opt.startAt ? YTPlayer.opt.startAt : 1; - var canPlayVideo = ( YTPlayer.player.getVideoLoadedFraction() > startAt / YTPlayer.player.getDuration() ); - if( YTPlayer.player.getDuration() > 0 && YTPlayer.player.getCurrentTime() >= startAt && canPlayVideo ) { - clearInterval( YTPlayer.checkForStartAt ); - YTPlayer.isReady = true; - if( typeof YTPlayer.opt.onReady == "function" ) YTPlayer.opt.onReady( YTPlayer ); - var YTPready = jQuery.Event( "YTPReady" ); - jQuery( YTPlayer ).trigger( YTPready ); - YTPlayer.player.pauseVideo(); - if( !YTPlayer.opt.mute ) jQuery( YTPlayer ).YTPUnmute(); - YTPlayer.canTrigger = true; - if( YTPlayer.opt.autoPlay ) { - $YTPlayer.YTPPlay(); - $YTPlayer.css( "background-image", "none" ); - jQuery( YTPlayer.playerEl ).CSSAnimate( { - opacity: 1 - }, 1000 ); - YTPlayer.wrapper.CSSAnimate( { - opacity: YTPlayer.isAlone ? 1 : YTPlayer.opt.opacity - }, 1000 ); - } else { - YTPlayer.player.pauseVideo(); - if( !YTPlayer.isPlayer ) { - jQuery( YTPlayer.playerEl ).CSSAnimate( { - opacity: 1 - }, 1000 ); - YTPlayer.wrapper.CSSAnimate( { - opacity: YTPlayer.isAlone ? 1 : YTPlayer.opt.opacity - }, 1000 ); - } - } - if( YTPlayer.isPlayer && !YTPlayer.opt.autoPlay ) { - YTPlayer.loading.html( "Ready" ); - setTimeout( function() { - YTPlayer.loading.fadeOut(); - - - }, 100 ) - } - if( YTPlayer.controlBar ) YTPlayer.controlBar.slideDown( 1000 ); - } else { - //YTPlayer.player.playVideo(); - if( startAt >= 0 ) YTPlayer.player.seekTo( startAt, true ); - } - }, 1000 ); - }, - /** - * - * @param s - * @returns {string} - */ - formatTime: function( s ) { - var min = Math.floor( s / 60 ); - var sec = Math.floor( s - ( 60 * min ) ); - return( min <= 9 ? "0" + min : min ) + " : " + ( sec <= 9 ? "0" + sec : sec ); - } - }; - /** - * - * @returns {boolean} - */ - jQuery.fn.toggleVolume = function() { - var YTPlayer = this.get( 0 ); - if( !YTPlayer ) return; - if( YTPlayer.player.isMuted() ) { - jQuery( YTPlayer ).YTPUnmute(); - return true; - } else { - jQuery( YTPlayer ).YTPMute(); - return false; - } - }; - /** - * - */ - jQuery.fn.optimizeDisplay = function() { - var YTPlayer = this.get( 0 ); - var data = YTPlayer.opt; - var playerBox = jQuery( YTPlayer.playerEl ); - var win = {}; - var el = YTPlayer.wrapper; - win.width = el.outerWidth(); - win.height = el.outerHeight(); - var margin = 24; - var overprint = 100; - var vid = {}; - if( data.optimizeDisplay ) { - vid.width = win.width + ( ( win.width * margin ) / 100 ); - vid.height = data.ratio == "16/9" ? Math.ceil( ( 9 * win.width ) / 16 ) : Math.ceil( ( 3 * win.width ) / 4 ); - vid.marginTop = -( ( vid.height - win.height ) / 2 ); - vid.marginLeft = -( ( win.width * ( margin / 2 ) ) / 100 ); - if( vid.height < win.height ) { - vid.height = win.height + ( ( win.height * margin ) / 100 ); - vid.width = data.ratio == "16/9" ? Math.floor( ( 16 * win.height ) / 9 ) : Math.floor( ( 4 * win.height ) / 3 ); - vid.marginTop = -( ( win.height * ( margin / 2 ) ) / 100 ); - vid.marginLeft = -( ( vid.width - win.width ) / 2 ); - } - vid.width += overprint; - vid.height += overprint; - vid.marginTop -= overprint / 2; - vid.marginLeft -= overprint / 2; - } else { - vid.width = "100%"; - vid.height = "100%"; - vid.marginTop = 0; - vid.marginLeft = 0; - } - playerBox.css( { - width: vid.width, - height: vid.height, - marginTop: vid.marginTop, - marginLeft: vid.marginLeft - } ); - }; - /** - * - * @param arr - * @returns {Array|string|Blob|*} - * - */ - jQuery.shuffle = function( arr ) { - var newArray = arr.slice(); - var len = newArray.length; - var i = len; - while( i-- ) { - var p = parseInt( Math.random() * len ); - var t = newArray[ i ]; - newArray[ i ] = newArray[ p ]; - newArray[ p ] = t; - } - return newArray; - }; - - /* Exposed public method */ - jQuery.fn.YTPlayer = jQuery.mbYTPlayer.buildPlayer; - jQuery.fn.YTPGetPlayer = jQuery.mbYTPlayer.getPlayer; - jQuery.fn.YTPGetVideoID = jQuery.mbYTPlayer.getVideoID; - jQuery.fn.YTPChangeMovie = jQuery.mbYTPlayer.changeMovie; - jQuery.fn.YTPPlayerDestroy = jQuery.mbYTPlayer.playerDestroy; - - jQuery.fn.YTPPlay = jQuery.mbYTPlayer.play; - jQuery.fn.YTPTogglePlay = jQuery.mbYTPlayer.togglePlay; - jQuery.fn.YTPStop = jQuery.mbYTPlayer.stop; - jQuery.fn.YTPPause = jQuery.mbYTPlayer.pause; - jQuery.fn.YTPSeekTo = jQuery.mbYTPlayer.seekTo; - - jQuery.fn.YTPlaylist = jQuery.mbYTPlayer.playlist; - jQuery.fn.YTPPlayNext = jQuery.mbYTPlayer.playNext; - jQuery.fn.YTPPlayPrev = jQuery.mbYTPlayer.playPrev; - - jQuery.fn.YTPMute = jQuery.mbYTPlayer.mute; - jQuery.fn.YTPUnmute = jQuery.mbYTPlayer.unmute; - jQuery.fn.YTPToggleVolume = jQuery.mbYTPlayer.toggleVolume; - jQuery.fn.YTPSetVolume = jQuery.mbYTPlayer.setVolume; - - jQuery.fn.YTPGetVideoData = jQuery.mbYTPlayer.getVideoData; - jQuery.fn.YTPFullscreen = jQuery.mbYTPlayer.fullscreen; - jQuery.fn.YTPToggleLoops = jQuery.mbYTPlayer.toggleLoops; - jQuery.fn.YTPSetVideoQuality = jQuery.mbYTPlayer.setVideoQuality; - jQuery.fn.YTPManageProgress = jQuery.mbYTPlayer.manageProgress; - - jQuery.fn.YTPApplyFilter = jQuery.mbYTPlayer.applyFilter; - jQuery.fn.YTPApplyFilters = jQuery.mbYTPlayer.applyFilters; - jQuery.fn.YTPToggleFilter = jQuery.mbYTPlayer.toggleFilter; - jQuery.fn.YTPToggleFilters = jQuery.mbYTPlayer.toggleFilters; - jQuery.fn.YTPRemoveFilter = jQuery.mbYTPlayer.removeFilter; - jQuery.fn.YTPDisableFilters = jQuery.mbYTPlayer.disableFilters; - jQuery.fn.YTPEnableFilters = jQuery.mbYTPlayer.enableFilters; - - - /** - * - * @deprecated - * - **/ - jQuery.fn.mb_YTPlayer = jQuery.mbYTPlayer.buildPlayer; - jQuery.fn.playNext = jQuery.mbYTPlayer.playNext; - jQuery.fn.playPrev = jQuery.mbYTPlayer.playPrev; - jQuery.fn.changeMovie = jQuery.mbYTPlayer.changeMovie; - jQuery.fn.getVideoID = jQuery.mbYTPlayer.getVideoID; - jQuery.fn.getPlayer = jQuery.mbYTPlayer.getPlayer; - jQuery.fn.playerDestroy = jQuery.mbYTPlayer.playerDestroy; - jQuery.fn.fullscreen = jQuery.mbYTPlayer.fullscreen; - jQuery.fn.buildYTPControls = jQuery.mbYTPlayer.buildControls; - jQuery.fn.playYTP = jQuery.mbYTPlayer.play; - jQuery.fn.toggleLoops = jQuery.mbYTPlayer.toggleLoops; - jQuery.fn.stopYTP = jQuery.mbYTPlayer.stop; - jQuery.fn.pauseYTP = jQuery.mbYTPlayer.pause; - jQuery.fn.seekToYTP = jQuery.mbYTPlayer.seekTo; - jQuery.fn.muteYTPVolume = jQuery.mbYTPlayer.mute; - jQuery.fn.unmuteYTPVolume = jQuery.mbYTPlayer.unmute; - jQuery.fn.setYTPVolume = jQuery.mbYTPlayer.setVolume; - jQuery.fn.setVideoQuality = jQuery.mbYTPlayer.setVideoQuality; - jQuery.fn.manageYTPProgress = jQuery.mbYTPlayer.manageProgress; - jQuery.fn.YTPGetDataFromFeed = jQuery.mbYTPlayer.getVideoData; - - -} )( jQuery, ytp ); -; -/* - * ****************************************************************************** - * jquery.mb.components - * file: jquery.mb.CSSAnimate.min.js - * - * Copyright (c) 2001-2014. Matteo Bicocchi (Pupunzi); - * Open lab srl, Firenze - Italy - * email: matteo@open-lab.com - * site: http://pupunzi.com - * blog: http://pupunzi.open-lab.com - * http://open-lab.com - * - * Licences: MIT, GPL - * http://www.opensource.org/licenses/mit-license.php - * http://www.gnu.org/licenses/gpl.html - * - * last modified: 26/03/14 21.40 - * ***************************************************************************** - */ - -function uncamel(a){return a.replace(/([A-Z])/g,function(a){return"-"+a.toLowerCase()})}function setUnit(a,b){return"string"!=typeof a||a.match(/^[\-0-9\.]+jQuery/)?""+a+b:a}function setFilter(a,b,c){var d=uncamel(b),e=jQuery.browser.mozilla?"":jQuery.CSS.sfx;a[e+"filter"]=a[e+"filter"]||"",c=setUnit(c>jQuery.CSS.filters[b].max?jQuery.CSS.filters[b].max:c,jQuery.CSS.filters[b].unit),a[e+"filter"]+=d+"("+c+") ",delete a[b]}jQuery.support.CSStransition=function(){var a=document.body||document.documentElement,b=a.style;return void 0!==b.transition||void 0!==b.WebkitTransition||void 0!==b.MozTransition||void 0!==b.MsTransition||void 0!==b.OTransition}(),jQuery.CSS={name:"mb.CSSAnimate",author:"Matteo Bicocchi",version:"2.0.0",transitionEnd:"transitionEnd",sfx:"",filters:{blur:{min:0,max:100,unit:"px"},brightness:{min:0,max:400,unit:"%"},contrast:{min:0,max:400,unit:"%"},grayscale:{min:0,max:100,unit:"%"},hueRotate:{min:0,max:360,unit:"deg"},invert:{min:0,max:100,unit:"%"},saturate:{min:0,max:400,unit:"%"},sepia:{min:0,max:100,unit:"%"}},normalizeCss:function(a){var b=jQuery.extend(!0,{},a);jQuery.browser.webkit||jQuery.browser.opera?jQuery.CSS.sfx="-webkit-":jQuery.browser.mozilla?jQuery.CSS.sfx="-moz-":jQuery.browser.msie&&(jQuery.CSS.sfx="-ms-");for(var c in b){"transform"===c&&(b[jQuery.CSS.sfx+"transform"]=b[c],delete b[c]),"transform-origin"===c&&(b[jQuery.CSS.sfx+"transform-origin"]=a[c],delete b[c]),"filter"!==c||jQuery.browser.mozilla||(b[jQuery.CSS.sfx+"filter"]=a[c],delete b[c]),"blur"===c&&setFilter(b,"blur",a[c]),"brightness"===c&&setFilter(b,"brightness",a[c]),"contrast"===c&&setFilter(b,"contrast",a[c]),"grayscale"===c&&setFilter(b,"grayscale",a[c]),"hueRotate"===c&&setFilter(b,"hueRotate",a[c]),"invert"===c&&setFilter(b,"invert",a[c]),"saturate"===c&&setFilter(b,"saturate",a[c]),"sepia"===c&&setFilter(b,"sepia",a[c]);var d="";"x"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" translateX("+setUnit(a[c],"px")+")",delete b[c]),"y"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" translateY("+setUnit(a[c],"px")+")",delete b[c]),"z"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" translateZ("+setUnit(a[c],"px")+")",delete b[c]),"rotate"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" rotate("+setUnit(a[c],"deg")+")",delete b[c]),"rotateX"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" rotateX("+setUnit(a[c],"deg")+")",delete b[c]),"rotateY"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" rotateY("+setUnit(a[c],"deg")+")",delete b[c]),"rotateZ"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" rotateZ("+setUnit(a[c],"deg")+")",delete b[c]),"scale"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" scale("+setUnit(a[c],"")+")",delete b[c]),"scaleX"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" scaleX("+setUnit(a[c],"")+")",delete b[c]),"scaleY"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" scaleY("+setUnit(a[c],"")+")",delete b[c]),"scaleZ"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" scaleZ("+setUnit(a[c],"")+")",delete b[c]),"skew"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" skew("+setUnit(a[c],"deg")+")",delete b[c]),"skewX"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" skewX("+setUnit(a[c],"deg")+")",delete b[c]),"skewY"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" skewY("+setUnit(a[c],"deg")+")",delete b[c]),"perspective"===c&&(d=jQuery.CSS.sfx+"transform",b[d]=b[d]||"",b[d]+=" perspective("+setUnit(a[c],"px")+")",delete b[c])}return b},getProp:function(a){var b=[];for(var c in a)b.indexOf(c)<0&&b.push(uncamel(c));return b.join(",")},animate:function(a,b,c,d,e){return this.each(function(){function o(){f.called=!0,f.CSSAIsRunning=!1,g.off(jQuery.CSS.transitionEnd+"."+f.id),clearTimeout(f.timeout),g.css(jQuery.CSS.sfx+"transition",""),"function"==typeof e&&e.apply(f),"function"==typeof f.CSSqueue&&(f.CSSqueue(),f.CSSqueue=null)}var f=this,g=jQuery(this);f.id=f.id||"CSSA_"+(new Date).getTime();var h=h||{type:"noEvent"};if(f.CSSAIsRunning&&f.eventType==h.type&&!jQuery.browser.msie&&jQuery.browser.version<=9)return f.CSSqueue=function(){g.CSSAnimate(a,b,c,d,e)},void 0;if(f.CSSqueue=null,f.eventType=h.type,0!==g.length&&a){if(a=jQuery.normalizeCss(a),f.CSSAIsRunning=!0,"function"==typeof b&&(e=b,b=jQuery.fx.speeds._default),"function"==typeof c&&(d=c,c=0),"string"==typeof c&&(e=c,c=0),"function"==typeof d&&(e=d,d="cubic-bezier(0.65,0.03,0.36,0.72)"),"string"==typeof b)for(var i in jQuery.fx.speeds){if(b==i){b=jQuery.fx.speeds[i];break}b=jQuery.fx.speeds._default}if(b||(b=jQuery.fx.speeds._default),"string"==typeof e&&(d=e,e=null),!jQuery.support.CSStransition){for(var j in a){if("transform"===j&&delete a[j],"filter"===j&&delete a[j],"transform-origin"===j&&delete a[j],"auto"===a[j]&&delete a[j],"x"===j){var k=a[j],l="left";a[l]=k,delete a[j]}if("y"===j){var k=a[j],l="top";a[l]=k,delete a[j]}("-ms-transform"===j||"-ms-filter"===j)&&delete a[j]}return g.delay(c).animate(a,b,e),void 0}var m={"default":"ease","in":"ease-in",out:"ease-out","in-out":"ease-in-out",snap:"cubic-bezier(0,1,.5,1)",easeOutCubic:"cubic-bezier(.215,.61,.355,1)",easeInOutCubic:"cubic-bezier(.645,.045,.355,1)",easeInCirc:"cubic-bezier(.6,.04,.98,.335)",easeOutCirc:"cubic-bezier(.075,.82,.165,1)",easeInOutCirc:"cubic-bezier(.785,.135,.15,.86)",easeInExpo:"cubic-bezier(.95,.05,.795,.035)",easeOutExpo:"cubic-bezier(.19,1,.22,1)",easeInOutExpo:"cubic-bezier(1,0,0,1)",easeInQuad:"cubic-bezier(.55,.085,.68,.53)",easeOutQuad:"cubic-bezier(.25,.46,.45,.94)",easeInOutQuad:"cubic-bezier(.455,.03,.515,.955)",easeInQuart:"cubic-bezier(.895,.03,.685,.22)",easeOutQuart:"cubic-bezier(.165,.84,.44,1)",easeInOutQuart:"cubic-bezier(.77,0,.175,1)",easeInQuint:"cubic-bezier(.755,.05,.855,.06)",easeOutQuint:"cubic-bezier(.23,1,.32,1)",easeInOutQuint:"cubic-bezier(.86,0,.07,1)",easeInSine:"cubic-bezier(.47,0,.745,.715)",easeOutSine:"cubic-bezier(.39,.575,.565,1)",easeInOutSine:"cubic-bezier(.445,.05,.55,.95)",easeInBack:"cubic-bezier(.6,-.28,.735,.045)",easeOutBack:"cubic-bezier(.175, .885,.32,1.275)",easeInOutBack:"cubic-bezier(.68,-.55,.265,1.55)"};m[d]&&(d=m[d]),g.off(jQuery.CSS.transitionEnd+"."+f.id);var n=jQuery.CSS.getProp(a),p={};jQuery.extend(p,a),p[jQuery.CSS.sfx+"transition-property"]=n,p[jQuery.CSS.sfx+"transition-duration"]=b+"ms",p[jQuery.CSS.sfx+"transition-delay"]=c+"ms",p[jQuery.CSS.sfx+"transition-timing-function"]=d,setTimeout(function(){g.one(jQuery.CSS.transitionEnd+"."+f.id,o),g.css(p)},1),f.timeout=setTimeout(function(){return f.called||!e?(f.called=!1,f.CSSAIsRunning=!1,void 0):(g.css(jQuery.CSS.sfx+"transition",""),e.apply(f),f.CSSAIsRunning=!1,"function"==typeof f.CSSqueue&&(f.CSSqueue(),f.CSSqueue=null),void 0)},b+c+10)}})}},jQuery.fn.CSSAnimate=jQuery.CSS.animate,jQuery.normalizeCss=jQuery.CSS.normalizeCss,jQuery.fn.css3=function(a){return this.each(function(){var b=jQuery(this),c=jQuery.normalizeCss(a);b.css(c)})}; -;/* - * ****************************************************************************** - * jquery.mb.components - * file: jquery.mb.browser.min.js - * - * Copyright (c) 2001-2014. Matteo Bicocchi (Pupunzi); - * Open lab srl, Firenze - Italy - * email: matteo@open-lab.com - * site: http://pupunzi.com - * blog: http://pupunzi.open-lab.com - * http://open-lab.com - * - * Licences: MIT, GPL - * http://www.opensource.org/licenses/mit-license.php - * http://www.gnu.org/licenses/gpl.html - * - * last modified: 26/03/14 21.43 - * ***************************************************************************** - */ - -var nAgt=navigator.userAgent;if(!jQuery.browser){jQuery.browser={},jQuery.browser.mozilla=!1,jQuery.browser.webkit=!1,jQuery.browser.opera=!1,jQuery.browser.safari=!1,jQuery.browser.chrome=!1,jQuery.browser.msie=!1,jQuery.browser.ua=nAgt,jQuery.browser.name=navigator.appName,jQuery.browser.fullVersion=""+parseFloat(navigator.appVersion),jQuery.browser.majorVersion=parseInt(navigator.appVersion,10);var nameOffset,verOffset,ix;if(-1!=(verOffset=nAgt.indexOf("Opera")))jQuery.browser.opera=!0,jQuery.browser.name="Opera",jQuery.browser.fullVersion=nAgt.substring(verOffset+6),-1!=(verOffset=nAgt.indexOf("Version"))&&(jQuery.browser.fullVersion=nAgt.substring(verOffset+8));else if(-1!=(verOffset=nAgt.indexOf("OPR")))jQuery.browser.opera=!0,jQuery.browser.name="Opera",jQuery.browser.fullVersion=nAgt.substring(verOffset+4);else if(-1!=(verOffset=nAgt.indexOf("MSIE")))jQuery.browser.msie=!0,jQuery.browser.name="Microsoft Internet Explorer",jQuery.browser.fullVersion=nAgt.substring(verOffset+5);else if(-1!=nAgt.indexOf("Trident")){jQuery.browser.msie=!0,jQuery.browser.name="Microsoft Internet Explorer";var start=nAgt.indexOf("rv:")+3,end=start+4;jQuery.browser.fullVersion=nAgt.substring(start,end)}else-1!=(verOffset=nAgt.indexOf("Chrome"))?(jQuery.browser.webkit=!0,jQuery.browser.chrome=!0,jQuery.browser.name="Chrome",jQuery.browser.fullVersion=nAgt.substring(verOffset+7)):-1!=(verOffset=nAgt.indexOf("Safari"))?(jQuery.browser.webkit=!0,jQuery.browser.safari=!0,jQuery.browser.name="Safari",jQuery.browser.fullVersion=nAgt.substring(verOffset+7),-1!=(verOffset=nAgt.indexOf("Version"))&&(jQuery.browser.fullVersion=nAgt.substring(verOffset+8))):-1!=(verOffset=nAgt.indexOf("AppleWebkit"))?(jQuery.browser.webkit=!0,jQuery.browser.name="Safari",jQuery.browser.fullVersion=nAgt.substring(verOffset+7),-1!=(verOffset=nAgt.indexOf("Version"))&&(jQuery.browser.fullVersion=nAgt.substring(verOffset+8))):-1!=(verOffset=nAgt.indexOf("Firefox"))?(jQuery.browser.mozilla=!0,jQuery.browser.name="Firefox",jQuery.browser.fullVersion=nAgt.substring(verOffset+8)):(nameOffset=nAgt.lastIndexOf(" ")+1)<(verOffset=nAgt.lastIndexOf("/"))&&(jQuery.browser.name=nAgt.substring(nameOffset,verOffset),jQuery.browser.fullVersion=nAgt.substring(verOffset+1),jQuery.browser.name.toLowerCase()==jQuery.browser.name.toUpperCase()&&(jQuery.browser.name=navigator.appName));-1!=(ix=jQuery.browser.fullVersion.indexOf(";"))&&(jQuery.browser.fullVersion=jQuery.browser.fullVersion.substring(0,ix)),-1!=(ix=jQuery.browser.fullVersion.indexOf(" "))&&(jQuery.browser.fullVersion=jQuery.browser.fullVersion.substring(0,ix)),jQuery.browser.majorVersion=parseInt(""+jQuery.browser.fullVersion,10),isNaN(jQuery.browser.majorVersion)&&(jQuery.browser.fullVersion=""+parseFloat(navigator.appVersion),jQuery.browser.majorVersion=parseInt(navigator.appVersion,10)),jQuery.browser.version=jQuery.browser.majorVersion}jQuery.browser.android=/Android/i.test(nAgt),jQuery.browser.blackberry=/BlackBerry|BB|PlayBook/i.test(nAgt),jQuery.browser.ios=/iPhone|iPad|iPod|webOS/i.test(nAgt),jQuery.browser.operaMobile=/Opera Mini/i.test(nAgt),jQuery.browser.windowsMobile=/IEMobile|Windows Phone/i.test(nAgt),jQuery.browser.kindle=/Kindle|Silk/i.test(nAgt),jQuery.browser.mobile=jQuery.browser.android||jQuery.browser.blackberry||jQuery.browser.ios||jQuery.browser.windowsMobile||jQuery.browser.operaMobile||jQuery.browser.kindle,jQuery.isMobile=jQuery.browser.mobile,jQuery.isTablet=jQuery.browser.mobile&&jQuery(window).width()>765,jQuery.isAndroidDefault=jQuery.browser.android&&!/chrome/i.test(nAgt); -;/*___________________________________________________________________________________________________________________________________________________ - _ jquery.mb.components _ - _ _ - _ file: jquery.mb.simpleSlider.min.js _ - _ last modified: 16/05/15 23.45 _ - _ _ - _ Open Lab s.r.l., Florence - Italy _ - _ _ - _ email: matteo@open-lab.com _ - _ site: http://pupunzi.com _ - _ http://open-lab.com _ - _ blog: http://pupunzi.open-lab.com _ - _ Q&A: http://jquery.pupunzi.com _ - _ _ - _ Licences: MIT, GPL _ - _ http://www.opensource.org/licenses/mit-license.php _ - _ http://www.gnu.org/licenses/gpl.html _ - _ _ - _ Copyright (c) 2001-2015. Matteo Bicocchi (Pupunzi); _ - ___________________________________________________________________________________________________________________________________________________*/ - -!function(a){/iphone|ipod|ipad|android|ie|blackberry|fennec/.test(navigator.userAgent.toLowerCase());var c="ontouchstart"in window||window.navigator&&window.navigator.msPointerEnabled&&window.MSGesture||window.DocumentTouch&&document instanceof DocumentTouch||!1;a.simpleSlider={defaults:{initialval:0,scale:100,orientation:"h",readonly:!1,callback:!1},events:{start:c?"touchstart":"mousedown",end:c?"touchend":"mouseup",move:c?"touchmove":"mousemove"},init:function(b){return this.each(function(){var d=this,e=a(d);e.addClass("simpleSlider"),d.opt={},a.extend(d.opt,a.simpleSlider.defaults,b),a.extend(d.opt,e.data());var f="h"==d.opt.orientation?"horizontal":"vertical",g=a("
          ").addClass("level").addClass(f);e.prepend(g),d.level=g,e.css({cursor:"default"}),"auto"==d.opt.scale&&(d.opt.scale=a(d).outerWidth()),e.updateSliderVal(),d.opt.readonly||(e.on(a.simpleSlider.events.start,function(a){c&&(a=a.changedTouches[0]),d.canSlide=!0,e.updateSliderVal(a),e.css({cursor:"col-resize"}),a.preventDefault(),a.stopPropagation()}),a(document).on(a.simpleSlider.events.move,function(b){c&&(b=b.changedTouches[0]),d.canSlide&&(a(document).css({cursor:"default"}),e.updateSliderVal(b),b.preventDefault(),b.stopPropagation())}).on(a.simpleSlider.events.end,function(){a(document).css({cursor:"auto"}),d.canSlide=!1,e.css({cursor:"auto"})}))})},updateSliderVal:function(b){function g(a,b){return Math.floor(100*a/b)}var c=this,d=c.get(0);d.opt.initialval="number"==typeof d.opt.initialval?d.opt.initialval:d.opt.initialval(d);var e=a(d).outerWidth(),f=a(d).outerHeight();d.x="object"==typeof b?b.clientX+document.body.scrollLeft-c.offset().left:"number"==typeof b?b*e/d.opt.scale:d.opt.initialval*e/d.opt.scale,d.y="object"==typeof b?b.clientY+document.body.scrollTop-c.offset().top:"number"==typeof b?(d.opt.scale-d.opt.initialval-b)*f/d.opt.scale:d.opt.initialval*f/d.opt.scale,d.y=c.outerHeight()-d.y,d.scaleX=d.x*d.opt.scale/e,d.scaleY=d.y*d.opt.scale/f,d.outOfRangeX=d.scaleX>d.opt.scale?d.scaleX-d.opt.scale:d.scaleX<0?d.scaleX:0,d.outOfRangeY=d.scaleY>d.opt.scale?d.scaleY-d.opt.scale:d.scaleY<0?d.scaleY:0,d.outOfRange="h"==d.opt.orientation?d.outOfRangeX:d.outOfRangeY,d.value="undefined"!=typeof b?"h"==d.opt.orientation?d.x>=c.outerWidth()?d.opt.scale:d.x<=0?0:d.scaleX:d.y>=c.outerHeight()?d.opt.scale:d.y<=0?0:d.scaleY:"h"==d.opt.orientation?d.scaleX:d.scaleY,"h"==d.opt.orientation?d.level.width(g(d.x,e)+"%"):d.level.height(g(d.y,f)),"function"==typeof d.opt.callback&&d.opt.callback(d)}},a.fn.simpleSlider=a.simpleSlider.init,a.fn.updateSliderVal=a.simpleSlider.updateSliderVal}(jQuery); -;/*___________________________________________________________________________________________________________________________________________________ - _ jquery.mb.components _ - _ _ - _ file: jquery.mb.storage.min.js _ - _ last modified: 24/05/15 16.08 _ - _ _ - _ Open Lab s.r.l., Florence - Italy _ - _ _ - _ email: matteo@open-lab.com _ - _ site: http://pupunzi.com _ - _ http://open-lab.com _ - _ blog: http://pupunzi.open-lab.com _ - _ Q&A: http://jquery.pupunzi.com _ - _ _ - _ Licences: MIT, GPL _ - _ http://www.opensource.org/licenses/mit-license.php _ - _ http://www.gnu.org/licenses/gpl.html _ - _ _ - _ Copyright (c) 2001-2015. Matteo Bicocchi (Pupunzi); _ - ___________________________________________________________________________________________________________________________________________________*/ - -!function(a){a.mbCookie={set:function(a,b,c,d){b=JSON.stringify(b),c||(c=7),d=d?"; domain="+d:"";var f,e=new Date;e.setTime(e.getTime()+1e3*60*60*24*c),f="; expires="+e.toGMTString(),document.cookie=a+"="+b+f+"; path=/"+d},get:function(a){for(var b=a+"=",c=document.cookie.split(";"),d=0;d 0) { - self.$overlay.data('$optionsSection').find(".createSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".btn-showSlide").removeClass("hide"); - } else { - self.$overlay.data('$optionsSection').find(".createSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".btn-showSlide").addClass("hide"); - } - }, 100); - }, - - add_btn_edit_slide: function () { - var self = this; - self.$overlay.data('$optionsSection').append(' Edit Slide '); - self.$overlay.data('$optionsSection').on('click', '.btn-showSlide', _.bind(this.toggle_slide, this)); - }, - - create_slide: function (previewMode, value, $li) { - var self = this, - slide = '

          Your new slide

          '; - self.$target.append(slide); - self.$overlay.data('$optionsSection').find(".btn-showSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".createSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").removeClass("hide"); - }, - - delete_slide: function (previewMode, value, $li) { - var self = this; - self.$target.find(".slide").remove(); - self.$overlay.data('$optionsSection').find(".btn-showSlide").addClass("hide"); - self.$overlay.data('$optionsSection').find(".createSlide").removeClass("hide"); - self.$overlay.data('$optionsSection').find(".deleteSlide").addClass("hide"); - }, - - toggle_slide: function () { - var a = this.$overlay.data('$optionsSection').find(".btn-showSlide"), - i = a.find("i"), - t = this.$target, - s = t.find(".slide"); - if (!t.hasClass("showSlide")) { - t.addClass("showSlide"); i.addClass("fa-toggle-on").removeClass("fa-toggle-off"); i.css("color", "#FFF"); - s.addClass("visible"); - } else { - t.removeClass("showSlide"); i.removeClass("fa-toggle-on").addClass("fa-toggle-off"); i.css("color", ""); - s.removeClass("visible"); - } - }, - onFocus: function () { - this._adapt_items_height(); - }, - onBlur: function () { - this._adapt_items_height(); - }, - cleanForSave: function() { - this.$target.removeClass("showSlide") - .find(".slide").removeClass("visible"); - - this._adapt_items_height(); - }, - _adapt_items_height: function () { - var $items = this.$target.closest(".s_animated_boxes").find(".item"); - var min_height = _.reduce($items.find(".v-align"), function (memo, item) { - return Math.max(memo, $(item).outerHeight(true) + 40); - }, 200); - $items.css("height", min_height); - }, - }); -}); diff --git a/theme_enark/theme_common/static/src/js/s_animated_boxes_frontend.js b/theme_enark/theme_common/static/src/js/s_animated_boxes_frontend.js deleted file mode 100644 index ec39eab..0000000 --- a/theme_enark/theme_common/static/src/js/s_animated_boxes_frontend.js +++ /dev/null @@ -1,15 +0,0 @@ -odoo.define('theme_common.s_animated_boxes_frontend', function (require) { - 'use strict'; - -var publicWidget = require('web.public.widget'); - -/** - * This is a fix for some apple devices. - * The slide of animated boxes widget is shown on hover or click on mobile - * devices, but iOS only activates :hover if the element targeted is - * clickable. - */ -publicWidget.registry._fixAnimatedBoxesAppleClick = publicWidget.registry._fixAppleCollapse.extend({ - selector: '.s_animated_boxes .item', -}); -}); diff --git a/theme_enark/theme_common/static/src/js/s_css_slider_editor.js b/theme_enark/theme_common/static/src/js/s_css_slider_editor.js deleted file mode 100644 index 78d7861..0000000 --- a/theme_enark/theme_common/static/src/js/s_css_slider_editor.js +++ /dev/null @@ -1,82 +0,0 @@ -odoo.define('theme_common.s_css_slider_editor', function (require) { - 'use strict'; - - var s_options = require('web_editor.snippets.options'); - - s_options.registry.s_css_slider_slide = s_options.Class.extend({ - newSlideUrl: "/web/image/theme_common.image_content_23", - - start: function () { - var self = this; - - self.reset(); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - - setTimeout(function () { - self.$overlay.data('$optionsSection').find(".js_s_css_slider_addSlide").on('click', function () { self.addSlide(); }); - self.$overlay.data('$optionsSection').find(".js_s_css_slider_removeSlide").on('click', function () { self.removeSlide(); }); - }, 100); - - $(document.body).on("media-saved", function () { - self.resizeImgsEditor(); - }); - }, - - resizeImgsEditor: function () { - var self = this; - setTimeout(function () { - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }); - }, - - reset: function () { - var self= this; - self.$target.find(".s_css_slider_pagination").remove().end() - .find("span").unbind("click.s_css"); - }, - - addSlide: function () { - var self = this; - var $currentSlide = self.$target.find(".slider .slide.selected"); - $currentSlide.clone().insertAfter($currentSlide).removeClass("selected"); - - _.defer(function () { - self.reset(); - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }); - }, - - removeSlide: function () { - var self = this; - var $currentSlide = self.$target.find(".slider .slide.selected"); - - $currentSlide.remove(); - _.defer(function () { - self.reset(); - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }); - }, - - cleanForSave: function () { - var self = this; - self.$target - .find(".s_css_slider_pagination").remove().end() - .find(".navigation .prev").addClass("inactive").end() - .find(".navigation .next").removeClass("inactive").end() - .find(".slider .slide").removeClass("selected move-left").end() - .find(".slider .slide").first().addClass("selected"); - }, - }); -}); diff --git a/theme_enark/theme_common/static/src/js/s_css_slider_frontend.js b/theme_enark/theme_common/static/src/js/s_css_slider_frontend.js deleted file mode 100644 index 99d225c..0000000 --- a/theme_enark/theme_common/static/src/js/s_css_slider_frontend.js +++ /dev/null @@ -1,122 +0,0 @@ -odoo.define('theme_common.s_css_slider_frontend', function (require) { - 'use strict'; - - var publicWidget = require('web.public.widget'); - - publicWidget.registry.s_css_slider = publicWidget.Widget.extend({ - selector: ".s_css_slider", - disabledInEditableMode: false, - - start: function () { - var self = this; - var $container = self.$target; - $container.find(".s_css_slider_pagination").remove(); - // create slider pagination - var sliderPagination = self.createSliderPagination($container); - self.bindEvents($container, sliderPagination); - $(window).on("resize", function () { - self.resizeImgs($container); - }).trigger("resize"); - return this._super.apply(this, arguments); - }, - - bindEvents: function ($container, sliderPagination) { - var self = this, - $next_btn = $container.find('.next'), - $prev_btn = $container.find('.prev'); - - $next_btn.on('click.s_css', function (e) { - self.nextSlide($container, sliderPagination); - }); - - $prev_btn.on('click.s_css', function (e) { - self.prevSlide($container, sliderPagination); - }); - - if ($container.hasClass("autoplay") && this.editableMode !== true) { - var interval; - var autoplay = function () { - interval = setInterval(function () { - if (!$next_btn.hasClass("inactive")) { - self.nextSlide($container, sliderPagination); - } else { - self.prevSlide($container, sliderPagination, 0); - } - }, 3000); - }; - autoplay(); - $container.hover(function () { clearInterval(interval); }); - $container.mouseleave(function () { autoplay(); }); - } - - sliderPagination.on('click.s_css', function () { - var selectedDot = $(this); - if (!selectedDot.hasClass('selected')) { - var selectedPosition = selectedDot.index(), - activePosition = $container.find('.slider .selected').index(); - if ( activePosition < selectedPosition) { - self.nextSlide($container, sliderPagination, selectedPosition); - } else { - self.prevSlide($container, sliderPagination, selectedPosition); - } - } - }); - }, - - resizeImgs: function ($container) { - var cont_h = $container.height(), - imgs = $container.find(".slide img"); - - imgs.each(function () { - var $img = $(this), - img_h = $img.height(); - if (img_h > cont_h) { - $img.css("width", "100%"); - $img.css("margin-top", (cont_h - img_h)/2); - } - }); - }, - - createSliderPagination: function ($container) { - var wrapper = $('
            ').insertAfter($container.find('.navigation')); - $container.find('.slider .slide').each(function (index) { - var dotWrapper = (index === 0) ? $('
          • ') : $('
          • '), - dot = $('').appendTo(dotWrapper); - dotWrapper.appendTo(wrapper); - dot.text(index+1); - }); - return wrapper.children('li'); - }, - - nextSlide: function ($container, $pagination, $n) { - var self = this, - visibleSlide = $container.find('.slider .selected'), - navigationDot = $container.find('.s_css_slider_pagination .selected'); - - if (typeof $n === 'undefined') $n = visibleSlide.index() + 1; - visibleSlide.removeClass('selected'); - $container.find('.slider .slide').eq($n).addClass('selected').prevAll().addClass('move-left'); - navigationDot.removeClass('selected'); - $pagination.eq($n).addClass('selected'); - self.updateNavigation($container, $container.find('.slider .slide').eq($n)); - }, - - prevSlide: function ($container, $pagination, $n) { - var self = this, - visibleSlide = $container.find('.slider .selected'), - navigationDot = $container.find('.s_css_slider_pagination .selected'); - - if (typeof $n === 'undefined') $n = visibleSlide.index() - 1; - visibleSlide.removeClass('selected'); - $container.find('.slider .slide').eq($n).addClass('selected').removeClass('move-left').nextAll().removeClass('move-left'); - navigationDot.removeClass('selected'); - $pagination.eq($n).addClass('selected'); - self.updateNavigation($container, $container.find('.slider .slide').eq($n)); - }, - - updateNavigation: function ($container, $active) { - $container.find('.prev').toggleClass('inactive', $active.is(':first-child')); - $container.find('.next').toggleClass('inactive', $active.is(':last-child')); - }, - }); -}); diff --git a/theme_enark/theme_common/static/src/js/s_google_map_editor.js b/theme_enark/theme_common/static/src/js/s_google_map_editor.js deleted file mode 100644 index 9a5b4d7..0000000 --- a/theme_enark/theme_common/static/src/js/s_google_map_editor.js +++ /dev/null @@ -1,149 +0,0 @@ -odoo.define('theme_common.s_google_map_editor', function (require) { -'use strict'; - -var Dialog = require('web_editor.widget').Dialog; -var core = require('web.core'); -var sOptions = require('web_editor.snippets.options'); -var googleScriptLoaded = require('theme_common.s_google_map_frontend').googleScriptLoaded; - -var _t = core._t; - -sOptions.registry.map = sOptions.Class.extend({ - xmlDependencies: ['/theme_common/static/src/xml/s_google_map_modal.xml'], - defaultLocation: '(50.854975,4.3753899)', - - /** - * @override - */ - onBuilt: function () { - this._super.apply(this, arguments); - this.map('click', null, null); - }, - - //-------------------------------------------------------------------------- - // Options - //-------------------------------------------------------------------------- - - /** - * Opens the customization dialog. - * - * @see this.selectClass for parameters - */ - map: function (previewMode, value, $opt) { - var self = this; - - this.dialog = new Dialog(this, { - size: 'medium', - title: _t("Customize your map"), - buttons: [ - {text: _t("Save"), classes: 'btn-primary', close: true, click: function () { - if (!this.$('#placeBk').val()) { - this.$('#placeBk').val(self.defaultLocation); - } - self.$target.attr({ - 'data-map-gps': this.$('#placeBk').val(), - 'data-pin-style': this.$('#pin_style').val(), - 'data-pin-address': this.$('#pin_address').val(), - }); - self.trigger_up('widgets_start_request', { - editableMode: true, - $target: self.$target, - }); - }}, - {text: _t("Cancel"), close: true} - ], - $content: $(core.qweb.render('theme_common.s_google_map_modal')) - }); - - this.dialog.opened().then((function () { - this.$('#pin_address').val(self.$target.attr('data-pin-address')); - this.$('#pin_style').val(self.$target.attr('data-pin-style')); - this.$('#placeBk').val(self.$target.attr('data-map-gps')); - var autocomplete = new google.maps.places.Autocomplete(this.$('#pin_address').get(0), {types: ['geocode']}); - google.maps.event.addListener(autocomplete, 'place_changed', function () { - var place = autocomplete.getPlace(); - self.dialog.$('#placeBk').val(place.geometry ? place.geometry.location : self.defaultLocation); - }); - }).bind(this.dialog)); - - googleScriptLoaded.then(function () { - self.dialog.open(); - }); - }, - /** - * Adapts map's type. - * - * @see this.selectClass for parameters - */ - mapType: function (previewMode, value, $opt) { - this.$target.attr('data-map-type', value); - this.$target.attr('data-map-color', ''); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - /** - * Adapts map's color. - * - * @see this.selectClass for parameters - */ - mapColor: function (previewMode, value, $opt) { - this.$target.attr('data-map-color', value); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - /** - * Adapts map's zoom. - * - * @see this.selectClass for parameters - */ - mapZoom: function (previewMode, value, $opt) { - this.$target.attr('data-map-zoom', value); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - /** - * Adapts map's location. - * - * @see this.selectClass for parameters - */ - mapGps: function (previewMode, value, $opt) { - this.$target.attr('data-map-gps', value); - this.trigger_up('widgets_start_request', { - editableMode: true, - $target: this.$target, - }); - }, - - //-------------------------------------------------------------------------- - // Private - //-------------------------------------------------------------------------- - - /** - * @override - */ - _setActive: function () { - this.$el.find('[data-map-type]') - .removeClass('active') - .filter('[data-map-type="' + this.$target.attr('data-map-type') + '"]') - .addClass('active'); - this.$el.find('[data-map-color]') - .removeClass('active') - .filter('[data-map-color="' + this.$target.attr('data-map-color') + '"]') - .addClass('active'); - this.$el.find('[data-map-zoom]') - .removeClass('active') - .filter('[data-map-zoom="' + this.$target.attr('data-map-zoom') + '"]') - .addClass('active'); - this.$el.find('[data-map-gps]') - .removeClass('active') - .filter('[data-map-gps="' + this.$target.attr('data-map-gps') + '"]') - .addClass('active'); - }, -}); -}); diff --git a/theme_enark/theme_common/static/src/js/s_google_map_frontend.js b/theme_enark/theme_common/static/src/js/s_google_map_frontend.js deleted file mode 100644 index a22cb5b..0000000 --- a/theme_enark/theme_common/static/src/js/s_google_map_frontend.js +++ /dev/null @@ -1,144 +0,0 @@ -odoo.define('theme_common.s_google_map_frontend', function (require) { -'use strict'; - -var core = require('web.core'); -var publicWidget = require('web.public.widget'); -var googleScriptLoaded = $.Deferred(); - -var _t = core._t; - -publicWidget.registry.s_google_map = publicWidget.Widget.extend({ - selector: '.s_google_map', - disabledInEditableMode: false, - - /** - * @override - */ - start: function () { - var self = this; - var defs = [this._super.apply(this, arguments)]; - - if (typeof google !== 'object' || typeof google.maps !== 'object') { - if (!publicWidget.registry.s_google_map.isScriptLoading) { - publicWidget.registry.s_google_map.isScriptLoading = true; - window.odoo_s_google_map_redraw_all = function odoo_s_google_map_redraw_all() { - _.each($('section.s_google_map'), function (map) { - self.trigger_up('widgets_start_request', { - editableMode: self.editableMode, - $target: $(map), - }); - }); - publicWidget.registry.s_google_map.isScriptLoading = false; - googleScriptLoaded.resolve(); - }; - - defs.push(this._rpc({ - route: '/theme_common/google_maps_api_key', - }).then(function (data) { - var key_param = ''; - var data_json = JSON.parse(data); - if (data_json.google_maps_api_key !== '') { - key_param = '&key=' + data_json.google_maps_api_key; - } - $('head').append($(' - - - diff --git a/theme_enark/theme_enark/views/image_content.xml b/theme_enark/theme_enark/views/image_content.xml deleted file mode 100644 index c34d88a..0000000 --- a/theme_enark/theme_enark/views/image_content.xml +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - theme_common.image_content_logo_small - theme_common.image_content_logo_small - /theme_enark/static/src/img/content/content_logo_small.png - - - - - theme_common.image_content_01 - theme_common.image_content_01 - /theme_enark/static/src/img/content/content_img_01.png - - - theme_common.image_content_02 - theme_common.image_content_02 - /theme_enark/static/src/img/content/content_img_02.png - - - theme_common.image_content_03 - theme_common.image_content_03 - /theme_enark/static/src/img/content/content_img_03.png - - - theme_common.image_content_04 - theme_common.image_content_04 - /theme_enark/static/src/img/content/content_img_04.png - - - theme_common.image_content_05 - theme_common.image_content_05 - /theme_enark/static/src/img/content/content_img_05.png - - - theme_common.image_content_06 - theme_common.image_content_06 - /theme_enark/static/src/img/content/content_img_06.png - - - theme_common.image_content_07 - theme_common.image_content_07 - /theme_enark/static/src/img/content/content_img_07.png - - - theme_common.image_content_08 - theme_common.image_content_08 - /theme_enark/static/src/img/content/content_img_08.png - - - theme_common.image_content_09 - theme_common.image_content_09 - /theme_enark/static/src/img/content/content_img_09.jpg - - - theme_common.image_content_10 - theme_common.image_content_10 - /theme_enark/static/src/img/content/content_img_10.jpg - - - theme_common.image_content_11 - theme_common.image_content_11 - /theme_enark/static/src/img/content/content_img_11.jpg - - - - theme_common.image_content_13 - theme_common.image_content_13 - /theme_enark/static/src/img/content/content_img_13.jpg - - - theme_common.image_content_14 - theme_common.image_content_14 - /theme_enark/static/src/img/content/content_img_14.png - - - theme_common.image_content_15 - theme_common.image_content_15 - /theme_enark/static/src/img/content/content_img_15.png - - - theme_common.image_content_16 - theme_common.image_content_16 - /theme_enark/static/src/img/content/content_img_16.png - - - theme_common.image_content_17 - theme_common.image_content_17 - /theme_enark/static/src/img/content/content_img_17.png - - - theme_common.image_content_18 - theme_common.image_content_18 - /theme_enark/static/src/img/content/content_img_18.png - - diff --git a/theme_enark/theme_enark/views/image_library.xml b/theme_enark/theme_enark/views/image_library.xml deleted file mode 100644 index cac489b..0000000 --- a/theme_enark/theme_enark/views/image_library.xml +++ /dev/null @@ -1,60 +0,0 @@ - - - - theme_enark.img_library_01 - theme_enark.img_library_01 - /theme_enark/static/src/img/library/img_library_01.jpg - - - theme_enark.img_library_02 - theme_enark.img_library_02 - /theme_enark/static/src/img/library/img_library_02.jpg - - - theme_enark.img_library_03 - theme_enark.img_library_03 - /theme_enark/static/src/img/library/img_library_03.jpg - - - theme_enark.img_library_04 - theme_enark.img_library_04 - /theme_enark/static/src/img/library/img_library_04.jpg - - - theme_enark.img_library_05 - theme_enark.img_library_05 - /theme_enark/static/src/img/library/img_library_05.jpg - - - theme_enark.img_library_06 - theme_enark.img_library_06 - /theme_enark/static/src/img/library/img_library_06.jpg - - - theme_enark.img_library_07 - theme_enark.img_library_07 - /theme_enark/static/src/img/library/img_library_07.jpg - - - theme_enark.img_library_08 - theme_enark.img_library_08 - /theme_enark/static/src/img/library/img_library_08.jpg - - - theme_enark.img_library_09 - theme_enark.img_library_09 - /theme_enark/static/src/img/library/img_library_09.jpg - - - theme_enark.img_library_10 - theme_enark.img_library_10 - /theme_enark/static/src/img/library/img_library_10.jpg - - - - - website.s_cover_default_image - website.s_cover_default_image - /theme_enark/static/src/img/backgrounds/bg_img_02.jpg - - diff --git a/theme_enark/theme_enark/views/snippets.xml b/theme_enark/theme_enark/views/snippets.xml deleted file mode 100644 index 28c71cd..0000000 --- a/theme_enark/theme_enark/views/snippets.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - diff --git a/theme_enark/theme_enark/views/snippets_options.xml b/theme_enark/theme_enark/views/snippets_options.xml deleted file mode 100644 index 3858f86..0000000 --- a/theme_enark/theme_enark/views/snippets_options.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - diff --git a/theme_enark/views/assets.xml b/theme_enark/views/assets.xml new file mode 100644 index 0000000..d3a8e08 --- /dev/null +++ b/theme_enark/views/assets.xml @@ -0,0 +1,18 @@ + + + + + - - - diff --git a/theme_monglia/theme_monglia/views/customize_modal.xml b/theme_monglia/theme_monglia/views/customize_modal.xml deleted file mode 100644 index 3eb70ea..0000000 --- a/theme_monglia/theme_monglia/views/customize_modal.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - diff --git a/theme_monglia/theme_monglia/views/images_content.xml b/theme_monglia/theme_monglia/views/images_content.xml deleted file mode 100644 index a67281a..0000000 --- a/theme_monglia/theme_monglia/views/images_content.xml +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - theme_common.image_content_01 - theme_common.image_content_01 - /theme_monglia/static/src/img/content/content_img_01.png - - - theme_common.image_content_02 - theme_common.image_content_02 - /theme_monglia/static/src/img/content/content_img_02.jpg - - - theme_common.image_content_03 - theme_common.image_content_03 - /theme_monglia/static/src/img/content/content_img_03.jpg - - - theme_common.image_content_04 - theme_common.image_content_04 - /theme_monglia/static/src/img/content/content_img_04.jpg - - - theme_common.image_content_05 - theme_common.image_content_05 - /theme_monglia/static/src/img/content/content_img_05.jpg - - - theme_common.image_content_06 - theme_common.image_content_06 - /theme_monglia/static/src/img/content/content_img_06.jpg - - - theme_common.image_content_07 - theme_common.image_content_07 - /theme_monglia/static/src/img/content/content_img_07.jpg - - - theme_common.image_content_08 - theme_common.image_content_08 - /theme_monglia/static/src/img/content/content_img_08.png - - - theme_common.image_content_09 - theme_common.image_content_09 - /theme_monglia/static/src/img/content/content_img_09.jpg - - - theme_common.image_content_10 - theme_common.image_content_10 - /theme_monglia/static/src/img/content/content_img_10.jpg - - - theme_common.image_content_11 - theme_common.image_content_11 - /theme_monglia/static/src/img/content/content_img_11.jpg - - - theme_common.image_content_12 - theme_common.image_content_12 - /theme_monglia/static/src/img/content/content_img_12.jpg - - - theme_common.image_content_13 - theme_common.image_content_13 - /theme_monglia/static/src/img/content/content_img_13.jpg - - - theme_common.image_content_14 - theme_common.image_content_14 - /theme_monglia/static/src/img/content/content_img_14.jpg - - - - - theme_common.image_product_01 - theme_common.image_product_01 - /theme_monglia/static/src/img/content/product_img_01.jpg - - - theme_common.image_product_02 - theme_common.image_product_02 - /theme_monglia/static/src/img/content/product_img_02.jpg - - - theme_common.image_product_03 - theme_common.image_product_03 - /theme_monglia/static/src/img/content/product_img_03.jpg - - - theme_common.image_product_04 - theme_common.image_product_04 - /theme_monglia/static/src/img/content/product_img_04.jpg - - - theme_common.image_product_05 - theme_common.image_product_05 - /theme_monglia/static/src/img/content/product_img_05.jpg - - - theme_common.image_product_06 - theme_common.image_product_06 - /theme_monglia/static/src/img/content/product_img_06.jpg - - - theme_common.image_product_07 - theme_common.image_product_07 - /theme_monglia/static/src/img/content/product_img_07.jpg - - - theme_common.image_product_08 - theme_common.image_product_08 - /theme_monglia/static/src/img/content/product_img_08.jpg - - - theme_common.image_product_09 - theme_common.image_product_09 - /theme_monglia/static/src/img/content/product_img_09.jpg - - - theme_common.image_product_10 - theme_common.image_product_10 - /theme_monglia/static/src/img/content/product_img_10.jpg - - - theme_common.image_product_11 - theme_common.image_product_11 - /theme_monglia/static/src/img/content/product_img_11.jpg - - - diff --git a/theme_monglia/theme_monglia/views/images_library.xml b/theme_monglia/theme_monglia/views/images_library.xml deleted file mode 100644 index 3e00e67..0000000 --- a/theme_monglia/theme_monglia/views/images_library.xml +++ /dev/null @@ -1,107 +0,0 @@ - - - - - theme_monglia.bg_img_01 - theme_monglia.background_img_01 - /theme_monglia/static/src/img/library/bg1.jpg - - - theme_monglia.bg_img_02 - theme_monglia.background_img_02 - /theme_monglia/static/src/img/library/bg2.jpg - - - theme_monglia.bg_img_03 - theme_monglia.background_img_03 - /theme_monglia/static/src/img/library/bg3.jpg - - - theme_monglia.bg_img_04 - theme_monglia.background_img_04 - /theme_monglia/static/src/img/library/bg4.jpg - - - theme_monglia.bg_img_05 - theme_monglia.background_img_05 - /theme_monglia/static/src/img/library/bg5.jpg - - - theme_monglia.bg_img_06 - theme_monglia.background_img_06 - /theme_monglia/static/src/img/library/bg6.jpg - - - theme_monglia.bg_img_07 - theme_monglia.background_img_07 - /theme_monglia/static/src/img/library/bg7.jpg - - - theme_monglia.bg_img_08 - theme_monglia.background_img_08 - /theme_monglia/static/src/img/library/bg8.jpg - - - theme_monglia.bg_img_09 - theme_monglia.background_img_09 - /theme_monglia/static/src/img/library/bg9.jpg - - - theme_monglia.bg_img_10 - theme_monglia.background_img_10 - /theme_monglia/static/src/img/library/bg10.jpg - - - - - theme_monglia.bg_pattern_01 - theme_monglia.background_pattern_01 - /theme_monglia/static/src/img/pattern/pattern_01.png - - - theme_monglia.bg_pattern_02 - theme_monglia.background_pattern_02 - /theme_monglia/static/src/img/pattern/pattern_02.png - - - theme_monglia.bg_pattern_03 - theme_monglia.background_pattern_03 - /theme_monglia/static/src/img/pattern/pattern_03.png - - - theme_monglia.bg_pattern_04 - theme_monglia.background_pattern_04 - /theme_monglia/static/src/img/pattern/pattern_04.png - - - theme_monglia.bg_pattern_05 - theme_monglia.background_pattern_05 - /theme_monglia/static/src/img/pattern/pattern_05.png - - - theme_monglia.bg_pattern_06 - theme_monglia.background_pattern_06 - /theme_monglia/static/src/img/pattern/pattern_06.png - - - theme_monglia.bg_pattern_07 - theme_monglia.background_pattern_07 - /theme_monglia/static/src/img/pattern/pattern_07.png - - - theme_monglia.bg_pattern_08 - theme_monglia.background_pattern_08 - /theme_monglia/static/src/img/pattern/pattern_08.png - - - theme_monglia.bg_pattern_09 - theme_monglia.background_pattern_09 - /theme_monglia/static/src/img/pattern/pattern_09.png - - - theme_monglia.bg_pattern_10 - theme_monglia.background_pattern_10 - /theme_monglia/static/src/img/pattern/pattern_10.png - - - diff --git a/theme_monglia/theme_monglia/views/snippets.xml b/theme_monglia/theme_monglia/views/snippets.xml deleted file mode 100644 index 006de3c..0000000 --- a/theme_monglia/theme_monglia/views/snippets.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - diff --git a/theme_monglia/views/assets.xml b/theme_monglia/views/assets.xml new file mode 100644 index 0000000..0dc82d0 --- /dev/null +++ b/theme_monglia/views/assets.xml @@ -0,0 +1,26 @@ + + + + + + + + + - diff --git a/theme_nano/theme_nano/views/customize_modal.xml b/theme_nano/theme_nano/views/customize_modal.xml deleted file mode 100644 index e05825f..0000000 --- a/theme_nano/theme_nano/views/customize_modal.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - diff --git a/theme_nano/theme_nano/views/images_content.xml b/theme_nano/theme_nano/views/images_content.xml deleted file mode 100644 index 84ea703..0000000 --- a/theme_nano/theme_nano/views/images_content.xml +++ /dev/null @@ -1,123 +0,0 @@ - - - - theme_common.image_content_01 - theme_common.image_content_01 - /theme_nano/static/src/img/content/contact.gif - - - theme_common.image_content_02 - theme_common.image_content_02 - /theme_nano/static/src/img/content/brainstorming.gif - - - theme_common.image_content_03 - theme_common.image_content_03 - /theme_nano/static/src/img/content/support.gif - - - theme_common.image_content_04 - theme_common.image_content_04 - /theme_nano/static/src/img/content/text_image.jpg - - - theme_common.image_content_05 - theme_common.image_content_05 - /theme_nano/static/src/img/content/big_picture.gif - - - theme_common.image_content_06 - theme_common.image_content_06 - /theme_nano/static/src/img/content/image_text.jpg - - - theme_common.image_content_09 - theme_common.image_content_09 - /theme_nano/static/src/img/content/profiles_boxes_2.gif - - - theme_common.image_content_10 - theme_common.image_content_10 - /theme_nano/static/src/img/content/author.gif - - - theme_common.image_content_11 - theme_common.image_content_11 - /theme_nano/static/src/img/content/profiles_boxes_3.gif - - - theme_common.image_content_12 - theme_common.image_content_12 - /theme_nano/static/src/img/content/logo_bear.png - - - theme_common.image_content_13 - theme_common.image_content_13 - /theme_nano/static/src/img/content/logo_barber.png - - - theme_common.image_content_14 - theme_common.image_content_14 - /theme_nano/static/src/img/content/logo_coffee.png - - - theme_common.image_content_15 - theme_common.image_content_15 - /theme_nano/static/src/img/content/logo_ocean.png - - - theme_common.image_content_16 - theme_common.image_content_16 - /theme_nano/static/src/img/content/logo_dear.png - - - theme_common.image_content_17 - theme_common.image_content_17 - /theme_nano/static/src/img/content/logo_mountain.png - - - theme_common.image_content_18 - theme_common.image_content_18 - /theme_nano/static/src/img/content/profiles_boxes_1.gif - - - theme_common.image_content_19 - theme_common.image_content_19 - /theme_nano/static/src/img/content/rocket.gif - - - theme_common.image_content_20 - theme_common.image_content_20 - /theme_nano/static/src/img/content/flask.gif - - - theme_common.image_content_21 - theme_common.image_content_21 - /theme_nano/static/src/img/content/location.gif - - - theme_common.image_content_22 - theme_common.image_content_22 - /theme_nano/static/src/img/content/planning.gif - - - theme_common.image_content_23 - theme_common.image_content_23 - /theme_nano/static/src/img/content/suitcase.gif - - - theme_common.image_content_24 - theme_common.image_content_24 - /theme_nano/static/src/img/content/strategy.gif - - - theme_common.image_content_25 - theme_common.image_content_25 - /theme_nano/static/src/img/content/event.gif - - - theme_common.image_content_26 - theme_common.image_content_26 - /theme_nano/static/src/img/content/tools.gif - - diff --git a/theme_nano/theme_nano/views/images_library.xml b/theme_nano/theme_nano/views/images_library.xml deleted file mode 100644 index 62ded73..0000000 --- a/theme_nano/theme_nano/views/images_library.xml +++ /dev/null @@ -1,148 +0,0 @@ - - - - - theme_nano.bg_img_01 - theme_nano.background_img_01 - /theme_nano/static/src/img/backgrounds/01.gif - - - theme_nano.bg_img_02 - theme_nano.background_img_02 - /theme_nano/static/src/img/backgrounds/02.gif - - - theme_nano.bg_img_03 - theme_nano.background_img_03 - /theme_nano/static/src/img/backgrounds/03.gif - - - theme_nano.bg_img_04 - theme_nano.background_img_04 - /theme_nano/static/src/img/backgrounds/04.gif - - - theme_nano.bg_img_05 - theme_nano.background_img_05 - /theme_nano/static/src/img/backgrounds/05.gif - - - theme_nano.bg_img_06 - theme_nano.background_img_06 - /theme_nano/static/src/img/backgrounds/06.gif - - - theme_nano.bg_img_07 - theme_nano.background_img_07 - /theme_nano/static/src/img/backgrounds/07.gif - - - theme_nano.bg_img_08 - theme_nano.background_img_08 - /theme_nano/static/src/img/backgrounds/08.gif - - - theme_nano.bg_img_09 - theme_nano.background_img_09 - /theme_nano/static/src/img/backgrounds/09.gif - - - theme_nano.bg_img_10 - theme_nano.background_img_10 - /theme_nano/static/src/img/backgrounds/10.gif - - - theme_nano.bg_img_11 - theme_nano.background_img_11 - /theme_nano/static/src/img/backgrounds/11.gif - - - theme_nano.bg_img_12 - theme_nano.background_img_12 - /theme_nano/static/src/img/backgrounds/12.gif - - - theme_nano.bg_img_13 - theme_nano.background_img_13 - /theme_nano/static/src/img/backgrounds/13.gif - - - theme_nano.bg_img_14 - theme_nano.background_img_14 - /theme_nano/static/src/img/backgrounds/14.gif - - - theme_nano.bg_img_15 - theme_nano.background_img_15 - /theme_nano/static/src/img/backgrounds/15.gif - - - theme_nano.bg_img_16 - theme_nano.background_img_16 - /theme_nano/static/src/img/backgrounds/16.gif - - - - - theme_nano.bg_pattern_01 - theme_nano.background_pattern_01 - /theme_nano/static/src/img/patterns/01.png - - - theme_nano.bg_pattern_02 - theme_nano.background_pattern_02 - /theme_nano/static/src/img/patterns/02.png - - - theme_nano.bg_pattern_03 - theme_nano.background_pattern_03 - /theme_nano/static/src/img/patterns/03.png - - - theme_nano.bg_pattern_04 - theme_nano.background_pattern_04 - /theme_nano/static/src/img/patterns/04.png - - - theme_nano.bg_pattern_05 - theme_nano.background_pattern_05 - /theme_nano/static/src/img/patterns/05.png - - - theme_nano.bg_pattern_06 - theme_nano.background_pattern_06 - /theme_nano/static/src/img/patterns/06.png - - - theme_nano.bg_pattern_07 - theme_nano.background_pattern_07 - /theme_nano/static/src/img/patterns/07.png - - - theme_nano.bg_pattern_08 - theme_nano.background_pattern_08 - /theme_nano/static/src/img/patterns/08.png - - - theme_nano.bg_pattern_09 - theme_nano.background_pattern_09 - /theme_nano/static/src/img/patterns/09.png - - - - - website.s_cover_default_image - website.s_cover_default_image - /web/image/theme_nano.bg_img_08 - - - website.s_text_image_default_image - website.s_text_image_default_image - /web/image/theme_common.image_content_04 - - - website.s_image_text_default_image - website.s_image_text_default_image - /web/image/theme_common.image_content_06 - - diff --git a/theme_nano/theme_nano/views/layout.xml b/theme_nano/theme_nano/views/layout.xml deleted file mode 100644 index 0149c34..0000000 --- a/theme_nano/theme_nano/views/layout.xml +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - diff --git a/theme_nano/theme_nano/views/snippets.xml b/theme_nano/theme_nano/views/snippets.xml deleted file mode 100644 index b2af7b5..0000000 --- a/theme_nano/theme_nano/views/snippets.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - diff --git a/theme_nano/theme_nano/views/snippets_options.xml b/theme_nano/theme_nano/views/snippets_options.xml deleted file mode 100644 index 2db57ff..0000000 --- a/theme_nano/theme_nano/views/snippets_options.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - diff --git a/theme_nano/views/assets.xml b/theme_nano/views/assets.xml new file mode 100644 index 0000000..84c59fd --- /dev/null +++ b/theme_nano/views/assets.xml @@ -0,0 +1,18 @@ + + + + + - - - diff --git a/theme_real_estate/theme_monglia/views/customize_modal.xml b/theme_real_estate/theme_monglia/views/customize_modal.xml deleted file mode 100644 index 3eb70ea..0000000 --- a/theme_real_estate/theme_monglia/views/customize_modal.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - diff --git a/theme_real_estate/theme_monglia/views/images_content.xml b/theme_real_estate/theme_monglia/views/images_content.xml deleted file mode 100644 index a67281a..0000000 --- a/theme_real_estate/theme_monglia/views/images_content.xml +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - theme_common.image_content_01 - theme_common.image_content_01 - /theme_monglia/static/src/img/content/content_img_01.png - - - theme_common.image_content_02 - theme_common.image_content_02 - /theme_monglia/static/src/img/content/content_img_02.jpg - - - theme_common.image_content_03 - theme_common.image_content_03 - /theme_monglia/static/src/img/content/content_img_03.jpg - - - theme_common.image_content_04 - theme_common.image_content_04 - /theme_monglia/static/src/img/content/content_img_04.jpg - - - theme_common.image_content_05 - theme_common.image_content_05 - /theme_monglia/static/src/img/content/content_img_05.jpg - - - theme_common.image_content_06 - theme_common.image_content_06 - /theme_monglia/static/src/img/content/content_img_06.jpg - - - theme_common.image_content_07 - theme_common.image_content_07 - /theme_monglia/static/src/img/content/content_img_07.jpg - - - theme_common.image_content_08 - theme_common.image_content_08 - /theme_monglia/static/src/img/content/content_img_08.png - - - theme_common.image_content_09 - theme_common.image_content_09 - /theme_monglia/static/src/img/content/content_img_09.jpg - - - theme_common.image_content_10 - theme_common.image_content_10 - /theme_monglia/static/src/img/content/content_img_10.jpg - - - theme_common.image_content_11 - theme_common.image_content_11 - /theme_monglia/static/src/img/content/content_img_11.jpg - - - theme_common.image_content_12 - theme_common.image_content_12 - /theme_monglia/static/src/img/content/content_img_12.jpg - - - theme_common.image_content_13 - theme_common.image_content_13 - /theme_monglia/static/src/img/content/content_img_13.jpg - - - theme_common.image_content_14 - theme_common.image_content_14 - /theme_monglia/static/src/img/content/content_img_14.jpg - - - - - theme_common.image_product_01 - theme_common.image_product_01 - /theme_monglia/static/src/img/content/product_img_01.jpg - - - theme_common.image_product_02 - theme_common.image_product_02 - /theme_monglia/static/src/img/content/product_img_02.jpg - - - theme_common.image_product_03 - theme_common.image_product_03 - /theme_monglia/static/src/img/content/product_img_03.jpg - - - theme_common.image_product_04 - theme_common.image_product_04 - /theme_monglia/static/src/img/content/product_img_04.jpg - - - theme_common.image_product_05 - theme_common.image_product_05 - /theme_monglia/static/src/img/content/product_img_05.jpg - - - theme_common.image_product_06 - theme_common.image_product_06 - /theme_monglia/static/src/img/content/product_img_06.jpg - - - theme_common.image_product_07 - theme_common.image_product_07 - /theme_monglia/static/src/img/content/product_img_07.jpg - - - theme_common.image_product_08 - theme_common.image_product_08 - /theme_monglia/static/src/img/content/product_img_08.jpg - - - theme_common.image_product_09 - theme_common.image_product_09 - /theme_monglia/static/src/img/content/product_img_09.jpg - - - theme_common.image_product_10 - theme_common.image_product_10 - /theme_monglia/static/src/img/content/product_img_10.jpg - - - theme_common.image_product_11 - theme_common.image_product_11 - /theme_monglia/static/src/img/content/product_img_11.jpg - - - diff --git a/theme_real_estate/theme_monglia/views/images_library.xml b/theme_real_estate/theme_monglia/views/images_library.xml deleted file mode 100644 index 3e00e67..0000000 --- a/theme_real_estate/theme_monglia/views/images_library.xml +++ /dev/null @@ -1,107 +0,0 @@ - - - - - theme_monglia.bg_img_01 - theme_monglia.background_img_01 - /theme_monglia/static/src/img/library/bg1.jpg - - - theme_monglia.bg_img_02 - theme_monglia.background_img_02 - /theme_monglia/static/src/img/library/bg2.jpg - - - theme_monglia.bg_img_03 - theme_monglia.background_img_03 - /theme_monglia/static/src/img/library/bg3.jpg - - - theme_monglia.bg_img_04 - theme_monglia.background_img_04 - /theme_monglia/static/src/img/library/bg4.jpg - - - theme_monglia.bg_img_05 - theme_monglia.background_img_05 - /theme_monglia/static/src/img/library/bg5.jpg - - - theme_monglia.bg_img_06 - theme_monglia.background_img_06 - /theme_monglia/static/src/img/library/bg6.jpg - - - theme_monglia.bg_img_07 - theme_monglia.background_img_07 - /theme_monglia/static/src/img/library/bg7.jpg - - - theme_monglia.bg_img_08 - theme_monglia.background_img_08 - /theme_monglia/static/src/img/library/bg8.jpg - - - theme_monglia.bg_img_09 - theme_monglia.background_img_09 - /theme_monglia/static/src/img/library/bg9.jpg - - - theme_monglia.bg_img_10 - theme_monglia.background_img_10 - /theme_monglia/static/src/img/library/bg10.jpg - - - - - theme_monglia.bg_pattern_01 - theme_monglia.background_pattern_01 - /theme_monglia/static/src/img/pattern/pattern_01.png - - - theme_monglia.bg_pattern_02 - theme_monglia.background_pattern_02 - /theme_monglia/static/src/img/pattern/pattern_02.png - - - theme_monglia.bg_pattern_03 - theme_monglia.background_pattern_03 - /theme_monglia/static/src/img/pattern/pattern_03.png - - - theme_monglia.bg_pattern_04 - theme_monglia.background_pattern_04 - /theme_monglia/static/src/img/pattern/pattern_04.png - - - theme_monglia.bg_pattern_05 - theme_monglia.background_pattern_05 - /theme_monglia/static/src/img/pattern/pattern_05.png - - - theme_monglia.bg_pattern_06 - theme_monglia.background_pattern_06 - /theme_monglia/static/src/img/pattern/pattern_06.png - - - theme_monglia.bg_pattern_07 - theme_monglia.background_pattern_07 - /theme_monglia/static/src/img/pattern/pattern_07.png - - - theme_monglia.bg_pattern_08 - theme_monglia.background_pattern_08 - /theme_monglia/static/src/img/pattern/pattern_08.png - - - theme_monglia.bg_pattern_09 - theme_monglia.background_pattern_09 - /theme_monglia/static/src/img/pattern/pattern_09.png - - - theme_monglia.bg_pattern_10 - theme_monglia.background_pattern_10 - /theme_monglia/static/src/img/pattern/pattern_10.png - - - diff --git a/theme_real_estate/theme_monglia/views/snippets.xml b/theme_real_estate/theme_monglia/views/snippets.xml deleted file mode 100644 index 006de3c..0000000 --- a/theme_real_estate/theme_monglia/views/snippets.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - diff --git a/theme_real_estate/theme_real_estate/LICENSE b/theme_real_estate/theme_real_estate/LICENSE deleted file mode 100644 index b01eaf1..0000000 --- a/theme_real_estate/theme_real_estate/LICENSE +++ /dev/null @@ -1,27 +0,0 @@ -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_real_estate/theme_real_estate/__manifest__.py b/theme_real_estate/theme_real_estate/__manifest__.py deleted file mode 100644 index 8be2e08..0000000 --- a/theme_real_estate/theme_real_estate/__manifest__.py +++ /dev/null @@ -1,20 +0,0 @@ -{ - 'name': 'Real Estate Theme', - 'description': 'Real Estate Theme - Houses, Appartments, Real Estate Agencies', - 'category': 'Theme/Services', - 'summary': 'Real Estate, Agencies, Construction, Services, Accomodations, Lodging, Hosting, Houses, Appartments, Vacations, Holidays, Travels', - 'sequence': 320, - 'version': '1.0', - 'depends': ['theme_monglia'], - 'data': [ - 'views/assets.xml', - 'views/images.xml', - 'views/snippets.xml', - ], - 'images': [ - 'static/description/real_estate_description.png', - 'static/description/real_estate_screenshot.jpeg', - ], - 'license': 'LGPL-3', - 'live_test_url': 'https://theme-real-estate.odoo.com', -} diff --git a/theme_real_estate/theme_real_estate/models/theme_real_estate.py b/theme_real_estate/theme_real_estate/models/theme_real_estate.py deleted file mode 100644 index 334f3bf..0000000 --- a/theme_real_estate/theme_real_estate/models/theme_real_estate.py +++ /dev/null @@ -1,9 +0,0 @@ -from odoo import models - - -class ThemeRealEstate(models.AbstractModel): - _inherit = 'theme.utils' - - def _theme_real_estate_post_copy(self, mod): - # Color preset - self.enable_view('theme_common.option_colors_05_variables') diff --git a/theme_real_estate/theme_real_estate/static/description/contributors/applicatour.jpg b/theme_real_estate/theme_real_estate/static/description/contributors/applicatour.jpg deleted file mode 100644 index ccca288..0000000 Binary files a/theme_real_estate/theme_real_estate/static/description/contributors/applicatour.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/description/contributors/aselcis.jpg b/theme_real_estate/theme_real_estate/static/description/contributors/aselcis.jpg deleted file mode 100644 index 04a2b01..0000000 Binary files a/theme_real_estate/theme_real_estate/static/description/contributors/aselcis.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/description/contributors/bas-solutions.png b/theme_real_estate/theme_real_estate/static/description/contributors/bas-solutions.png deleted file mode 100644 index 238d047..0000000 Binary files a/theme_real_estate/theme_real_estate/static/description/contributors/bas-solutions.png and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/description/contributors/bloopark.png b/theme_real_estate/theme_real_estate/static/description/contributors/bloopark.png deleted file mode 100644 index aa384d7..0000000 Binary files a/theme_real_estate/theme_real_estate/static/description/contributors/bloopark.png and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/description/contributors/brouwland.jpg b/theme_real_estate/theme_real_estate/static/description/contributors/brouwland.jpg deleted file mode 100644 index 17df0f0..0000000 Binary files a/theme_real_estate/theme_real_estate/static/description/contributors/brouwland.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/description/contributors/catsdogs.png b/theme_real_estate/theme_real_estate/static/description/contributors/catsdogs.png deleted file mode 100644 index 298fe88..0000000 Binary files a/theme_real_estate/theme_real_estate/static/description/contributors/catsdogs.png and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/description/contributors/dialognet.png b/theme_real_estate/theme_real_estate/static/description/contributors/dialognet.png deleted file mode 100644 index d36a2a1..0000000 Binary files a/theme_real_estate/theme_real_estate/static/description/contributors/dialognet.png and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/description/contributors/dynapps.jpg b/theme_real_estate/theme_real_estate/static/description/contributors/dynapps.jpg deleted file mode 100644 index 1ef0988..0000000 Binary files a/theme_real_estate/theme_real_estate/static/description/contributors/dynapps.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/description/contributors/huckemedia.png b/theme_real_estate/theme_real_estate/static/description/contributors/huckemedia.png deleted file mode 100644 index 86c9f59..0000000 Binary files a/theme_real_estate/theme_real_estate/static/description/contributors/huckemedia.png and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/description/contributors/opusvl.png b/theme_real_estate/theme_real_estate/static/description/contributors/opusvl.png deleted file mode 100644 index a2fa2dc..0000000 Binary files a/theme_real_estate/theme_real_estate/static/description/contributors/opusvl.png and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/description/contributors/oxen.jpg b/theme_real_estate/theme_real_estate/static/description/contributors/oxen.jpg deleted file mode 100644 index 6ea2584..0000000 Binary files a/theme_real_estate/theme_real_estate/static/description/contributors/oxen.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/description/contributors/simplitco.jpg b/theme_real_estate/theme_real_estate/static/description/contributors/simplitco.jpg deleted file mode 100644 index 8df7a28..0000000 Binary files a/theme_real_estate/theme_real_estate/static/description/contributors/simplitco.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/description/contributors/sodexis.jpg b/theme_real_estate/theme_real_estate/static/description/contributors/sodexis.jpg deleted file mode 100644 index 6e34947..0000000 Binary files a/theme_real_estate/theme_real_estate/static/description/contributors/sodexis.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/description/contributors/tech-receptives.png b/theme_real_estate/theme_real_estate/static/description/contributors/tech-receptives.png deleted file mode 100644 index 3e96c41..0000000 Binary files a/theme_real_estate/theme_real_estate/static/description/contributors/tech-receptives.png and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/description/contributors/vauxoo.png b/theme_real_estate/theme_real_estate/static/description/contributors/vauxoo.png deleted file mode 100644 index 5736407..0000000 Binary files a/theme_real_estate/theme_real_estate/static/description/contributors/vauxoo.png and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/description/customtool2.jpg b/theme_real_estate/theme_real_estate/static/description/customtool2.jpg deleted file mode 100644 index fb3a1f7..0000000 Binary files a/theme_real_estate/theme_real_estate/static/description/customtool2.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/description/index.html b/theme_real_estate/theme_real_estate/static/description/index.html deleted file mode 100644 index ce56204..0000000 --- a/theme_real_estate/theme_real_estate/static/description/index.html +++ /dev/null @@ -1,248 +0,0 @@ -
            -

            Html5 Responsive Bootstrap Theme for Odoo CMS

            -
            - -

            This theme is a professional responsive HTML5 theme, built using Bootstrap3, - the most popular front-end framework for developing responsive, mobile - first projects on the web. Just drag & drop the new building blocks - you need to easily build your layout. All layouts are made of sections, - that you can easily combine to fit your specific project.

            - -
            - -

            CUSTOMIZATION TOOLS

            - -

            The theme comes with customization tools. You can easily change the background, the colors and the font combination of your website or you a preset.

            - -
            -
            - -
            -
            -
            -

            The theme comes with a lot of options

            -
              -
            • WIDE OR BOXED LAYOUT
            • -
            • 6 COLOR SCHEMES
            • -
            • 8 BACKGROUND SHADES OR USE YOUR OWN
            • -
            • 6 FONT COMBINATIONS
            • -
            • 10 BACKGROUND PATTERNS
            • -
            -

            All the background, color and font combinations were made to work together.  - You can not go wrong with the settings. -

            -
            -

            Minimalistic Flat Design

            -

            It was made with easy customization and branding in mind. Based on - simple, modern and typographical elements, it allows you to easily customize - your website. -

            -
            -

            6 Prebuild Presets

            -

            You don't have the time to play with options? Don't worry, this theme gives - you six full presets wich combine colors, fonts and background.

            - -

            This theme has an additional eCommerce plugin.

            -
            -
            -
            - -

            BUILDING BLOCKS

            - -

            You get a new complete range of building blocks.

            - -

            CONTENT BLOCKS

            -
            -
            - Title Snippet -
            Title
            -
            -
            - -
            -
            -

            FEATURES BLOCKS

            -
            -
            - Title Snippet -
            Slide Banner
            -
            -
            - Title Snippet -
            Slideshow With Products
            -
            -
            -
            -
            - -

            STRUCTURE BLOCKS

            -
            -
            - Title Snippet -
            Cubes
            -
            -
            - Title Snippet -
            Features Slideshow
            -
            -
            - Title Snippet -
            Header + Text + Picture
            -
            -
            - Title Snippet -
            Product List
            -
            -
            - Title Snippet -
            Text + Image + Text
            -
            -
            - Title Snippet -
            Parallax Banner
            -
            -
            - Title Snippet -
            2 Color Blocks
            -
            -
            - Title Snippet -
            4 Color Blocks
            -
            -
            - Title Snippet -
            Numbers
            -
            -
            - Title Snippet -
            Timeline
            -
            -
            - Title Snippet -
            Event List
            -
            -
            - Title Snippet -
            Logos Bar
            -
            -
            - Title Snippet -
            Testimonial Slider
            -
            -
            - Title Snippet -
            Progress
            -
            -
            - Title Snippet -
            Big Circle Icons
            -
            -
            - Title Snippet -
            Events with Internal Slider
            -
            -
            - -
            -

            Some fonts might not work with extended charsets.

            -

            The images in the theme are copyrighted and can't be used outside of the odoo.com domain.

            -
            -
            - -

            CONTRIBUTORS LIST

            -

            This theme was created with the help of our user community.

            - -

            Thanks to our backers the Indiegogo campaign was a success!

            -

            https://www.indiegogo.com/projects/bootstrap-themes-for-odoo-cms/

            - -

            Main Sponsor

            -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            - -

            Ross Whiting, Oxenworkwear - Hans Balis - Stephan Keller, Sodexis, Inc. - Michael Hucke, Hucke Media GmbH & Co. KG - Joachim Grubelnik, DaDi EDV GmbH​ datadialog.net - DynApps - Cats&Dogs bvba - Bloopark systems GmbH & Co. KG - Parthiv Patel, Tech Receptives Solutions Pvt. Ltd. - Stuart Mackintosh, OpusVL - Erwin van der Ploeg, BAS Solutions - ali Zuaby, simplit co - Aselcis Consulting - Nhomar Hernandez, Vauxoo

            - -

            Sponsor

            -

            Robert Baumgartner, datenpol gmbh - openBIG - Russell Phillippe, Protogenos Ltd - Julien Allo, Julius - EasyPME - Jonathan Wilson, WillowIT Pty Ltd - Xavier Mallein, MAallein - Pedro M. Baeza, Serv. Tecnol. Avanzados - Daniel Dico, OERP Canada - Jantz Business Group b.v. - LogicaSoft Consulting - Eric Caudal, Elico Corp - Ermin Trevisan, Twanda - Jean-François Mattler, OpenFid SAS - Alex Ferrer, Lannex IT Solutions - Tony Gu, Shine IT Co. Ltd. 先安科技 - TaPo-IT OG - Jos De Graeve, Apertoso - Nicolas Rigo, eezee-it - Luis Miguel Varón E, Colorisa S.A - OpenBias - Stanislas Drouin Applicatour

            - -

            Power Designer

            -

            Rohit Thakral - François Dhommeaux, Ubic Informatique - Judson Alves, Market Home Delivery - Eric Flaux, ABF Osiell - Gilles Dupont - Arnis Putniņš - Johnson Martt, GetOpenERP (Part of OpenStow Technologies) - Gianluca Milano - Daniel Stolovich, ATEL S.A. - Equitania Software GmbH - Senthilnathan G - Houssine Bakkali - Arend Trip - Kevin Woolf, Baba Kevin's American Barbecue Co., Ltd. - toodoo sàrl - Zoltan Gabor 'Apersis' - Tom De Decker, WEB2GO LTD - Nicolás Cavalier Montenegro, STOREGUD CORPORATION SAC - Keirse Jerome - REAL Solutions S.A. - Davide Corio - Brice Muangkhot - Melvin Miguel Martinez, Mendoza Hernandez - Auditores - Chua Wen Ching - Tran Minh Tri working, ungdungtinhoc.com - Badisheng Morena - Sogexis - Josh Wardini - The Tee Shirt Bakery - Bruce Letterle, Red Lab Media - Benoit Vankoningsloo - Francisco Manuel Garcia Claramonte. - Paulina Mikolajczak-Blasco - Collectiv - Tony Fernando - Herbert Riener, rigaConcepts - Kalmen Chia, E-Global SCM Solution Sdn Bhd - Rob North, Pair A Dice Games - David E. Vargas, CloudShop - François Le Gal - Calin Chete (24h Solutions) - Maria Gabriela Fong, MAGA Systems & Consulting - Pascal Behr, Cytosurge AG - Marc Antwertinger - Opencloud Unipessoal, Lda - Ruchir Shukla, BizzAppDev - Michael Hucke, Hucke Media GmbH & Co. KG - Mathias Neef, copadoMEDIA UG - Pablo Arias - Same Motion - livingprocess.de - Habib Ayob - Igor Jovanovic - Liangming Wang, Weixuan Inc. - Jason Au Yeung, Binary System Limited - Fredrik Arvas, Arvas International AB - Martin Temmink, Zigaret - Mathieu Vanneste, Flockdesign - Filip Fruru, Instant Media - Marianne Wilmsmeier, Fabrik Fünf GmbH - Vertex Group Enterprises - Bingen Eguzkitza - Herczeg Péter, InnOpen Group Kft - Giles Hohnen - Luis Felipe Miléo, KMEE - Maria Gabriela Fong, MAGA Systems & Consulting - Aaron Magon, Web Industries - Andrew Trueman, B.M. Trueman & Partners - Sven Petersen, Conexus - Nous Cambas - Oliver Yuan, OpenStone - Henri Ibowili, A-YANT.COM - Nicolas JEUDY - Helmut Drewes - Maik Steinfeld, Streward - Hans Henrik Gabelgaard - AJ Rosman - Eduard - Patrick Darribet, SUDOKEYS - Camptocamp - Cyril Morisse - Alejandro Santana - Eva Pinter, YBO - Mathias Neef, copadoMEDIA UG - Jean-Christophe Perrot, LOGICASOFT - Zarshed Ali, HiTechnologia - Stefan Reisich - Maxime Chambreuil, Savoir-faire Linux - Mario Gielissen, Openworx - Nicholas Burdic, Aptoworks LLC - Olivier Lenoir

            -
            diff --git a/theme_real_estate/theme_real_estate/static/description/real_estate_screenshot.jpeg b/theme_real_estate/theme_real_estate/static/description/real_estate_screenshot.jpeg deleted file mode 100644 index a4a4a0c..0000000 Binary files a/theme_real_estate/theme_real_estate/static/description/real_estate_screenshot.jpeg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/backgrounds/01.jpg b/theme_real_estate/theme_real_estate/static/src/img/backgrounds/01.jpg deleted file mode 100755 index 651abe3..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/backgrounds/01.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/backgrounds/02.jpg b/theme_real_estate/theme_real_estate/static/src/img/backgrounds/02.jpg deleted file mode 100755 index c20f90a..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/backgrounds/02.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/backgrounds/03.jpg b/theme_real_estate/theme_real_estate/static/src/img/backgrounds/03.jpg deleted file mode 100755 index 0912e21..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/backgrounds/03.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/backgrounds/04.jpg b/theme_real_estate/theme_real_estate/static/src/img/backgrounds/04.jpg deleted file mode 100755 index 453234b..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/backgrounds/04.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/backgrounds/05.jpg b/theme_real_estate/theme_real_estate/static/src/img/backgrounds/05.jpg deleted file mode 100755 index 9afb2c9..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/backgrounds/05.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/backgrounds/06.jpg b/theme_real_estate/theme_real_estate/static/src/img/backgrounds/06.jpg deleted file mode 100755 index 13c6efa..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/backgrounds/06.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/backgrounds/07.jpg b/theme_real_estate/theme_real_estate/static/src/img/backgrounds/07.jpg deleted file mode 100755 index a413dd8..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/backgrounds/07.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/backgrounds/08.jpg b/theme_real_estate/theme_real_estate/static/src/img/backgrounds/08.jpg deleted file mode 100755 index 678192d..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/backgrounds/08.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/backgrounds/09.jpg b/theme_real_estate/theme_real_estate/static/src/img/backgrounds/09.jpg deleted file mode 100755 index dfb592e..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/backgrounds/09.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/backgrounds/10.jpg b/theme_real_estate/theme_real_estate/static/src/img/backgrounds/10.jpg deleted file mode 100755 index a629e31..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/backgrounds/10.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/content_img_01.jpg b/theme_real_estate/theme_real_estate/static/src/img/content/content_img_01.jpg deleted file mode 100755 index 34502a8..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/content_img_01.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/content_img_01.png b/theme_real_estate/theme_real_estate/static/src/img/content/content_img_01.png deleted file mode 100755 index eb83477..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/content_img_01.png and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/content_img_04.jpg b/theme_real_estate/theme_real_estate/static/src/img/content/content_img_04.jpg deleted file mode 100755 index 5503c9a..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/content_img_04.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/content_img_05.jpg b/theme_real_estate/theme_real_estate/static/src/img/content/content_img_05.jpg deleted file mode 100755 index 345b0fe..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/content_img_05.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/content_img_06.jpg b/theme_real_estate/theme_real_estate/static/src/img/content/content_img_06.jpg deleted file mode 100755 index 72f6f7a..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/content_img_06.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/content_img_08.jpg b/theme_real_estate/theme_real_estate/static/src/img/content/content_img_08.jpg deleted file mode 100755 index 732a62a..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/content_img_08.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/content_logo.png b/theme_real_estate/theme_real_estate/static/src/img/content/content_logo.png deleted file mode 100755 index 508d8f9..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/content_logo.png and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_01.jpg b/theme_real_estate/theme_real_estate/static/src/img/content/product_img_01.jpg deleted file mode 100755 index 47879c8..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_01.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_02.jpg b/theme_real_estate/theme_real_estate/static/src/img/content/product_img_02.jpg deleted file mode 100755 index 238ada7..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_02.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_03.jpg b/theme_real_estate/theme_real_estate/static/src/img/content/product_img_03.jpg deleted file mode 100755 index dbdd38e..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_03.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_04.jpg b/theme_real_estate/theme_real_estate/static/src/img/content/product_img_04.jpg deleted file mode 100755 index 71d4b05..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_04.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_05.jpg b/theme_real_estate/theme_real_estate/static/src/img/content/product_img_05.jpg deleted file mode 100755 index f9350ed..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_05.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_06.jpg b/theme_real_estate/theme_real_estate/static/src/img/content/product_img_06.jpg deleted file mode 100755 index b816221..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_06.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_07.jpg b/theme_real_estate/theme_real_estate/static/src/img/content/product_img_07.jpg deleted file mode 100755 index 4d2c887..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_07.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_08.jpg b/theme_real_estate/theme_real_estate/static/src/img/content/product_img_08.jpg deleted file mode 100755 index 9d02025..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_08.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_09.jpg b/theme_real_estate/theme_real_estate/static/src/img/content/product_img_09.jpg deleted file mode 100755 index 700ea80..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_09.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_10.jpg b/theme_real_estate/theme_real_estate/static/src/img/content/product_img_10.jpg deleted file mode 100755 index 265fc19..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_10.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_11.jpg b/theme_real_estate/theme_real_estate/static/src/img/content/product_img_11.jpg deleted file mode 100755 index 09fbbe7..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_11.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_12.jpg b/theme_real_estate/theme_real_estate/static/src/img/content/product_img_12.jpg deleted file mode 100755 index ef03065..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_12.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_13.jpg b/theme_real_estate/theme_real_estate/static/src/img/content/product_img_13.jpg deleted file mode 100755 index 8af7a4f..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_13.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_14.jpg b/theme_real_estate/theme_real_estate/static/src/img/content/product_img_14.jpg deleted file mode 100755 index 32d24b2..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_14.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_15.jpg b/theme_real_estate/theme_real_estate/static/src/img/content/product_img_15.jpg deleted file mode 100755 index 7d08cce..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_15.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_16.jpg b/theme_real_estate/theme_real_estate/static/src/img/content/product_img_16.jpg deleted file mode 100755 index 45e3330..0000000 Binary files a/theme_real_estate/theme_real_estate/static/src/img/content/product_img_16.jpg and /dev/null differ diff --git a/theme_real_estate/theme_real_estate/static/src/scss/bootstrap_overridden.scss b/theme_real_estate/theme_real_estate/static/src/scss/bootstrap_overridden.scss deleted file mode 100644 index e69de29..0000000 diff --git a/theme_real_estate/theme_real_estate/static/src/scss/layout.scss b/theme_real_estate/theme_real_estate/static/src/scss/layout.scss deleted file mode 100644 index 391a252..0000000 --- a/theme_real_estate/theme_real_estate/static/src/scss/layout.scss +++ /dev/null @@ -1,24 +0,0 @@ - -@if $o-theme-hamburger-layout { - #wrapwrap > header > .navbar { - #top_menu .nav-item { - border-bottom: none; - .nav-link { - text-transform: uppercase; - } - } - } -} - -@if $o-theme-layout == 'boxed' { - #wrap { - border: none; - } -} @else { - #wrapwrap { - border: 10px solid white; - @media screen and (max-width: 640px) { - border: none; - } - } -} diff --git a/theme_real_estate/theme_real_estate/static/src/scss/primary_variables.scss b/theme_real_estate/theme_real_estate/static/src/scss/primary_variables.scss deleted file mode 100644 index 4a744a7..0000000 --- a/theme_real_estate/theme_real_estate/static/src/scss/primary_variables.scss +++ /dev/null @@ -1,12 +0,0 @@ -//------------------------------------------------------------------------------ -// Website customizations -//------------------------------------------------------------------------------ - -$o-website-values-palettes: ( - ( - 'font-number': 3, - 'headings-font-number': 3, - 'navbar-font-number': 1, - 'buttons-font-number': 3, - ), -); diff --git a/theme_real_estate/theme_real_estate/views/assets.xml b/theme_real_estate/theme_real_estate/views/assets.xml deleted file mode 100644 index 0e5b883..0000000 --- a/theme_real_estate/theme_real_estate/views/assets.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - diff --git a/theme_real_estate/theme_real_estate/views/images.xml b/theme_real_estate/theme_real_estate/views/images.xml deleted file mode 100644 index cafa69a..0000000 --- a/theme_real_estate/theme_real_estate/views/images.xml +++ /dev/null @@ -1,178 +0,0 @@ - - - - - theme_monglia.bg_img_01 - theme_monglia.background_img_01 - /theme_real_estate/static/src/img/backgrounds/01.jpg - - - theme_monglia.bg_img_02 - theme_monglia.background_img_02 - /theme_real_estate/static/src/img/backgrounds/02.jpg - - - theme_monglia.bg_img_03 - theme_monglia.background_img_03 - /theme_real_estate/static/src/img/backgrounds/03.jpg - - - theme_monglia.bg_img_04 - theme_monglia.background_img_04 - /theme_real_estate/static/src/img/backgrounds/04.jpg - - - theme_monglia.bg_img_05 - theme_monglia.background_img_05 - /theme_real_estate/static/src/img/backgrounds/05.jpg - - - theme_monglia.bg_img_06 - theme_monglia.background_img_06 - /theme_real_estate/static/src/img/backgrounds/06.jpg - - - theme_monglia.bg_img_07 - theme_monglia.background_img_07 - /theme_real_estate/static/src/img/backgrounds/07.jpg - - - theme_monglia.bg_img_08 - theme_monglia.background_img_08 - /theme_real_estate/static/src/img/backgrounds/08.jpg - - - theme_monglia.bg_img_09 - theme_monglia.background_img_09 - /theme_real_estate/static/src/img/backgrounds/09.jpg - - - theme_monglia.bg_img_10 - theme_monglia.background_img_10 - /theme_real_estate/static/src/img/backgrounds/10.jpg - - - - - - theme_common.image_content_01 - theme_common.image_content_01 - /theme_real_estate/static/src/img/content/content_img_01.png - - - theme_common.image_content_02 - theme_common.image_content_02 - /theme_real_estate/static/src/img/content/content_img_02.jpg - - - theme_common.image_content_03 - theme_common.image_content_03 - /theme_real_estate/static/src/img/content/content_img_03.jpg - - - theme_common.image_content_04 - theme_common.image_content_04 - /theme_real_estate/static/src/img/content/content_img_04.jpg - - - theme_common.image_content_05 - theme_common.image_content_05 - /theme_real_estate/static/src/img/content/content_img_05.jpg - - - theme_common.image_content_06 - theme_common.image_content_06 - /theme_real_estate/static/src/img/content/content_img_06.jpg - - - theme_common.image_content_07 - theme_common.image_content_07 - /theme_real_estate/static/src/img/content/content_img_07.jpg - - - theme_common.image_content_08 - theme_common.image_content_08 - /theme_real_estate/static/src/img/content/content_img_08.jpg - - - theme_common.image_content_09 - theme_common.image_content_09 - /theme_real_estate/static/src/img/content/content_img_09.jpg - - - theme_common.image_content_10 - theme_common.image_content_10 - /theme_real_estate/static/src/img/content/content_img_10.jpg - - - theme_common.image_content_11 - theme_common.image_content_11 - /theme_real_estate/static/src/img/content/content_img_11.jpg - - - theme_common.image_content_12 - theme_common.image_content_12 - /theme_real_estate/static/src/img/content/content_img_12.jpg - - - - - theme_common.image_product_01 - theme_common.image_product_01 - /theme_real_estate/static/src/img/content/product_img_01.jpg - - - theme_common.image_product_02 - theme_common.image_product_02 - /theme_real_estate/static/src/img/content/product_img_02.jpg - - - theme_common.image_product_03 - theme_common.image_product_03 - /theme_real_estate/static/src/img/content/product_img_03.jpg - - - theme_common.image_product_04 - theme_common.image_product_04 - /theme_real_estate/static/src/img/content/product_img_04.jpg - - - theme_common.image_product_05 - theme_common.image_product_05 - /theme_real_estate/static/src/img/content/product_img_05.jpg - - - theme_common.image_product_06 - theme_common.image_product_06 - /theme_real_estate/static/src/img/content/product_img_06.jpg - - - theme_common.image_product_07 - theme_common.image_product_07 - /theme_real_estate/static/src/img/content/product_img_07.jpg - - - theme_common.image_product_08 - theme_common.image_product_08 - /theme_real_estate/static/src/img/content/product_img_08.jpg - - - theme_common.image_product_09 - theme_common.image_product_09 - /theme_real_estate/static/src/img/content/product_img_09.jpg - - - theme_common.image_product_10 - theme_common.image_product_10 - /theme_real_estate/static/src/img/content/product_img_10.jpg - - - theme_common.image_product_11 - theme_common.image_product_11 - /theme_real_estate/static/src/img/content/product_img_11.jpg - - diff --git a/theme_real_estate/theme_real_estate/views/snippets.xml b/theme_real_estate/theme_real_estate/views/snippets.xml deleted file mode 100644 index 1a46171..0000000 --- a/theme_real_estate/theme_real_estate/views/snippets.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - diff --git a/theme_real_estate/views/assets.xml b/theme_real_estate/views/assets.xml new file mode 100644 index 0000000..a9c076d --- /dev/null +++ b/theme_real_estate/views/assets.xml @@ -0,0 +1,18 @@ + + + + + - - - diff --git a/theme_treehouse/theme_treehouse/views/customize_modal.xml b/theme_treehouse/theme_treehouse/views/customize_modal.xml deleted file mode 100644 index 0915674..0000000 --- a/theme_treehouse/theme_treehouse/views/customize_modal.xml +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/theme_treehouse/theme_treehouse/views/images_content.xml b/theme_treehouse/theme_treehouse/views/images_content.xml deleted file mode 100644 index c6c92f4..0000000 --- a/theme_treehouse/theme_treehouse/views/images_content.xml +++ /dev/null @@ -1,128 +0,0 @@ - - - - theme_common.image_content_04 - theme_common.image_content_04 - /theme_treehouse/static/src/img/content/text_image.jpg - - - theme_common.image_content_05 - theme_common.image_content_05 - /theme_treehouse/static/src/img/content/big_picture.gif - - - theme_common.image_content_06 - theme_common.image_content_06 - /theme_treehouse/static/src/img/content/image_text.jpg - - - theme_common.image_content_09 - theme_common.image_content_09 - /theme_treehouse/static/src/img/content/profiles_boxes_2.jpg - - - theme_common.image_content_10 - theme_common.image_content_10 - /theme_treehouse/static/src/img/content/author.gif - - - theme_common.image_content_11 - theme_common.image_content_11 - /theme_treehouse/static/src/img/content/profiles_boxes_3.jpg - - - theme_common.image_content_12 - theme_common.image_content_12 - /theme_treehouse/static/src/img/content/logo_bakery.png - - - theme_common.image_content_13 - theme_common.image_content_13 - /theme_treehouse/static/src/img/content/logo_barber.png - - - theme_common.image_content_14 - theme_common.image_content_14 - /theme_treehouse/static/src/img/content/logo_coffee.png - - - theme_common.image_content_15 - theme_common.image_content_15 - /theme_treehouse/static/src/img/content/logo_coffee_ribbon.png - - - theme_common.image_content_16 - theme_common.image_content_16 - /theme_treehouse/static/src/img/content/logo_fish.png - - - theme_common.image_content_17 - theme_common.image_content_17 - /theme_treehouse/static/src/img/content/logo_plane.png - - - theme_common.image_content_18 - theme_common.image_content_18 - /theme_treehouse/static/src/img/content/profiles_boxes_1.jpg - - - theme_common.image_content_19 - theme_common.image_content_19 - /theme_treehouse/static/src/img/content/three_columns_1.jpg - - - theme_common.image_content_20 - theme_common.image_content_20 - /theme_treehouse/static/src/img/content/three_columns_2a.jpg - - - theme_common.image_content_21 - theme_common.image_content_21 - /theme_treehouse/static/src/img/content/three_columns_2b.jpg - - - theme_common.image_content_22 - theme_common.image_content_22 - /theme_treehouse/static/src/img/content/three_columns_2c.jpg - - - theme_common.image_content_23 - theme_common.image_content_23 - /theme_treehouse/static/src/img/content/three_columns_3.jpg - - - theme_common.image_content_24 - theme_common.image_content_24 - /theme_treehouse/static/src/img/backgrounds/01.jpg - - - theme_common.image_content_25 - theme_common.image_content_25 - /theme_treehouse/static/src/img/backgrounds/04.jpg - - - theme_common.image_content_26 - theme_common.image_content_26 - /theme_treehouse/static/src/img/backgrounds/11.jpg - - - theme_common.image_content_27 - theme_common.image_content_27 - /theme_treehouse/static/src/img/backgrounds/13.jpg - - - theme_common.image_content_28 - theme_common.image_content_28 - /theme_treehouse/static/src/img/backgrounds/12.jpg - - - theme_common.image_content_29 - theme_common.image_content_29 - /theme_treehouse/static/src/img/backgrounds/10.jpg - - - theme_common.image_content_30 - theme_common.image_content_30 - /theme_treehouse/static/src/img/backgrounds/16.jpg - - diff --git a/theme_treehouse/theme_treehouse/views/images_library.xml b/theme_treehouse/theme_treehouse/views/images_library.xml deleted file mode 100644 index cd7b3ad..0000000 --- a/theme_treehouse/theme_treehouse/views/images_library.xml +++ /dev/null @@ -1,146 +0,0 @@ - - - - theme_treehouse.bg_img_01 - background_img_01.jpg - /theme_treehouse/static/src/img/backgrounds/01.jpg - - - theme_treehouse.bg_img_02 - background_img_02.jpg - /theme_treehouse/static/src/img/backgrounds/02.jpg - - - theme_treehouse.bg_img_03 - background_img_03.jpg - /theme_treehouse/static/src/img/backgrounds/03.jpg - - - theme_treehouse.bg_img_04 - background_img_04.jpg - /theme_treehouse/static/src/img/backgrounds/04.jpg - - - theme_treehouse.bg_img_05 - background_img_05.jpg - /theme_treehouse/static/src/img/backgrounds/05.jpg - - - theme_treehouse.bg_img_06 - background_img_06.jpg - /theme_treehouse/static/src/img/backgrounds/06.jpg - - - theme_treehouse.bg_img_07 - background_img_07.jpg - /theme_treehouse/static/src/img/backgrounds/07.jpg - - - theme_treehouse.bg_img_08 - background_img_08.jpg - /theme_treehouse/static/src/img/backgrounds/08.jpg - - - theme_treehouse.bg_img_09 - background_img_09.jpg - /theme_treehouse/static/src/img/backgrounds/09.jpg - - - theme_treehouse.bg_img_10 - background_img_10.jpg - /theme_treehouse/static/src/img/backgrounds/10.jpg - - - theme_treehouse.bg_img_11 - background_img_11.jpg - /theme_treehouse/static/src/img/backgrounds/11.jpg - - - theme_treehouse.bg_img_12 - background_img_12.jpg - /theme_treehouse/static/src/img/backgrounds/12.jpg - - - theme_treehouse.bg_img_13 - background_img_13.jpg - /theme_treehouse/static/src/img/backgrounds/13.jpg - - - theme_treehouse.bg_img_14 - background_img_14.jpg - /theme_treehouse/static/src/img/backgrounds/14.jpg - - - theme_treehouse.bg_img_15 - background_img_15.jpg - /theme_treehouse/static/src/img/backgrounds/15.jpg - - - theme_treehouse.bg_img_16 - background_img_16.jpg - /theme_treehouse/static/src/img/backgrounds/16.jpg - - - - theme_treehouse.bg_pattern_01 - background_pattern_01.png - /theme_treehouse/static/src/img/patterns/01.png - - - theme_treehouse.bg_pattern_02 - background_pattern_02.png - /theme_treehouse/static/src/img/patterns/02.png - - - theme_treehouse.bg_pattern_03 - background_pattern_03.png - /theme_treehouse/static/src/img/patterns/03.png - - - theme_treehouse.bg_pattern_04 - background_pattern_04.png - /theme_treehouse/static/src/img/patterns/04.png - - - theme_treehouse.bg_pattern_05 - background_pattern_05.png - /theme_treehouse/static/src/img/patterns/05.png - - - theme_treehouse.bg_pattern_06 - background_pattern_06.png - /theme_treehouse/static/src/img/patterns/06.png - - - theme_treehouse.bg_pattern_07 - background_pattern_07.png - /theme_treehouse/static/src/img/patterns/07.png - - - theme_treehouse.bg_pattern_08 - background_pattern_08.png - /theme_treehouse/static/src/img/patterns/08.png - - - theme_treehouse.bg_pattern_09 - background_pattern_09.png - /theme_treehouse/static/src/img/patterns/09.png - - - - - website.s_cover_default_image - website.s_cover_default_image - /web/image/theme_treehouse.bg_img_15 - - - website.s_text_image_default_image - website.s_text_image_default_image - /web/image/theme_common.image_content_04 - - - website.s_image_text_default_image - website.s_image_text_default_image - /web/image/theme_common.image_content_04 - - diff --git a/theme_treehouse/theme_treehouse/views/layout.xml b/theme_treehouse/theme_treehouse/views/layout.xml deleted file mode 100644 index b21dcde..0000000 --- a/theme_treehouse/theme_treehouse/views/layout.xml +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - diff --git a/theme_treehouse/theme_treehouse/views/snippets.xml b/theme_treehouse/theme_treehouse/views/snippets.xml deleted file mode 100644 index cf3caf5..0000000 --- a/theme_treehouse/theme_treehouse/views/snippets.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - diff --git a/theme_treehouse/theme_treehouse/views/snippets/s_panel_extended.xml b/theme_treehouse/theme_treehouse/views/snippets/s_panel_extended.xml deleted file mode 100644 index 77ab620..0000000 --- a/theme_treehouse/theme_treehouse/views/snippets/s_panel_extended.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - diff --git a/theme_treehouse/theme_treehouse/views/snippets/s_share_extended.xml b/theme_treehouse/theme_treehouse/views/snippets/s_share_extended.xml deleted file mode 100644 index c550865..0000000 --- a/theme_treehouse/theme_treehouse/views/snippets/s_share_extended.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - diff --git a/theme_treehouse/theme_treehouse/views/snippets/s_well_extended.xml b/theme_treehouse/theme_treehouse/views/snippets/s_well_extended.xml deleted file mode 100644 index ed3d874..0000000 --- a/theme_treehouse/theme_treehouse/views/snippets/s_well_extended.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - diff --git a/theme_treehouse/theme_treehouse/views/snippets_options.xml b/theme_treehouse/theme_treehouse/views/snippets_options.xml deleted file mode 100644 index 0cb54dd..0000000 --- a/theme_treehouse/theme_treehouse/views/snippets_options.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - diff --git a/theme_treehouse/views/assets.xml b/theme_treehouse/views/assets.xml new file mode 100644 index 0000000..530d75b --- /dev/null +++ b/theme_treehouse/views/assets.xml @@ -0,0 +1,18 @@ + + + + + - - - diff --git a/theme_vehicle/theme_monglia/views/customize_modal.xml b/theme_vehicle/theme_monglia/views/customize_modal.xml deleted file mode 100644 index 3eb70ea..0000000 --- a/theme_vehicle/theme_monglia/views/customize_modal.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - diff --git a/theme_vehicle/theme_monglia/views/images_content.xml b/theme_vehicle/theme_monglia/views/images_content.xml deleted file mode 100644 index a67281a..0000000 --- a/theme_vehicle/theme_monglia/views/images_content.xml +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - theme_common.image_content_01 - theme_common.image_content_01 - /theme_monglia/static/src/img/content/content_img_01.png - - - theme_common.image_content_02 - theme_common.image_content_02 - /theme_monglia/static/src/img/content/content_img_02.jpg - - - theme_common.image_content_03 - theme_common.image_content_03 - /theme_monglia/static/src/img/content/content_img_03.jpg - - - theme_common.image_content_04 - theme_common.image_content_04 - /theme_monglia/static/src/img/content/content_img_04.jpg - - - theme_common.image_content_05 - theme_common.image_content_05 - /theme_monglia/static/src/img/content/content_img_05.jpg - - - theme_common.image_content_06 - theme_common.image_content_06 - /theme_monglia/static/src/img/content/content_img_06.jpg - - - theme_common.image_content_07 - theme_common.image_content_07 - /theme_monglia/static/src/img/content/content_img_07.jpg - - - theme_common.image_content_08 - theme_common.image_content_08 - /theme_monglia/static/src/img/content/content_img_08.png - - - theme_common.image_content_09 - theme_common.image_content_09 - /theme_monglia/static/src/img/content/content_img_09.jpg - - - theme_common.image_content_10 - theme_common.image_content_10 - /theme_monglia/static/src/img/content/content_img_10.jpg - - - theme_common.image_content_11 - theme_common.image_content_11 - /theme_monglia/static/src/img/content/content_img_11.jpg - - - theme_common.image_content_12 - theme_common.image_content_12 - /theme_monglia/static/src/img/content/content_img_12.jpg - - - theme_common.image_content_13 - theme_common.image_content_13 - /theme_monglia/static/src/img/content/content_img_13.jpg - - - theme_common.image_content_14 - theme_common.image_content_14 - /theme_monglia/static/src/img/content/content_img_14.jpg - - - - - theme_common.image_product_01 - theme_common.image_product_01 - /theme_monglia/static/src/img/content/product_img_01.jpg - - - theme_common.image_product_02 - theme_common.image_product_02 - /theme_monglia/static/src/img/content/product_img_02.jpg - - - theme_common.image_product_03 - theme_common.image_product_03 - /theme_monglia/static/src/img/content/product_img_03.jpg - - - theme_common.image_product_04 - theme_common.image_product_04 - /theme_monglia/static/src/img/content/product_img_04.jpg - - - theme_common.image_product_05 - theme_common.image_product_05 - /theme_monglia/static/src/img/content/product_img_05.jpg - - - theme_common.image_product_06 - theme_common.image_product_06 - /theme_monglia/static/src/img/content/product_img_06.jpg - - - theme_common.image_product_07 - theme_common.image_product_07 - /theme_monglia/static/src/img/content/product_img_07.jpg - - - theme_common.image_product_08 - theme_common.image_product_08 - /theme_monglia/static/src/img/content/product_img_08.jpg - - - theme_common.image_product_09 - theme_common.image_product_09 - /theme_monglia/static/src/img/content/product_img_09.jpg - - - theme_common.image_product_10 - theme_common.image_product_10 - /theme_monglia/static/src/img/content/product_img_10.jpg - - - theme_common.image_product_11 - theme_common.image_product_11 - /theme_monglia/static/src/img/content/product_img_11.jpg - - - diff --git a/theme_vehicle/theme_monglia/views/images_library.xml b/theme_vehicle/theme_monglia/views/images_library.xml deleted file mode 100644 index 3e00e67..0000000 --- a/theme_vehicle/theme_monglia/views/images_library.xml +++ /dev/null @@ -1,107 +0,0 @@ - - - - - theme_monglia.bg_img_01 - theme_monglia.background_img_01 - /theme_monglia/static/src/img/library/bg1.jpg - - - theme_monglia.bg_img_02 - theme_monglia.background_img_02 - /theme_monglia/static/src/img/library/bg2.jpg - - - theme_monglia.bg_img_03 - theme_monglia.background_img_03 - /theme_monglia/static/src/img/library/bg3.jpg - - - theme_monglia.bg_img_04 - theme_monglia.background_img_04 - /theme_monglia/static/src/img/library/bg4.jpg - - - theme_monglia.bg_img_05 - theme_monglia.background_img_05 - /theme_monglia/static/src/img/library/bg5.jpg - - - theme_monglia.bg_img_06 - theme_monglia.background_img_06 - /theme_monglia/static/src/img/library/bg6.jpg - - - theme_monglia.bg_img_07 - theme_monglia.background_img_07 - /theme_monglia/static/src/img/library/bg7.jpg - - - theme_monglia.bg_img_08 - theme_monglia.background_img_08 - /theme_monglia/static/src/img/library/bg8.jpg - - - theme_monglia.bg_img_09 - theme_monglia.background_img_09 - /theme_monglia/static/src/img/library/bg9.jpg - - - theme_monglia.bg_img_10 - theme_monglia.background_img_10 - /theme_monglia/static/src/img/library/bg10.jpg - - - - - theme_monglia.bg_pattern_01 - theme_monglia.background_pattern_01 - /theme_monglia/static/src/img/pattern/pattern_01.png - - - theme_monglia.bg_pattern_02 - theme_monglia.background_pattern_02 - /theme_monglia/static/src/img/pattern/pattern_02.png - - - theme_monglia.bg_pattern_03 - theme_monglia.background_pattern_03 - /theme_monglia/static/src/img/pattern/pattern_03.png - - - theme_monglia.bg_pattern_04 - theme_monglia.background_pattern_04 - /theme_monglia/static/src/img/pattern/pattern_04.png - - - theme_monglia.bg_pattern_05 - theme_monglia.background_pattern_05 - /theme_monglia/static/src/img/pattern/pattern_05.png - - - theme_monglia.bg_pattern_06 - theme_monglia.background_pattern_06 - /theme_monglia/static/src/img/pattern/pattern_06.png - - - theme_monglia.bg_pattern_07 - theme_monglia.background_pattern_07 - /theme_monglia/static/src/img/pattern/pattern_07.png - - - theme_monglia.bg_pattern_08 - theme_monglia.background_pattern_08 - /theme_monglia/static/src/img/pattern/pattern_08.png - - - theme_monglia.bg_pattern_09 - theme_monglia.background_pattern_09 - /theme_monglia/static/src/img/pattern/pattern_09.png - - - theme_monglia.bg_pattern_10 - theme_monglia.background_pattern_10 - /theme_monglia/static/src/img/pattern/pattern_10.png - - - diff --git a/theme_vehicle/theme_monglia/views/snippets.xml b/theme_vehicle/theme_monglia/views/snippets.xml deleted file mode 100644 index 006de3c..0000000 --- a/theme_vehicle/theme_monglia/views/snippets.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - diff --git a/theme_vehicle/theme_vehicle/LICENSE b/theme_vehicle/theme_vehicle/LICENSE deleted file mode 100644 index b01eaf1..0000000 --- a/theme_vehicle/theme_vehicle/LICENSE +++ /dev/null @@ -1,27 +0,0 @@ -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_vehicle/theme_vehicle/__manifest__.py b/theme_vehicle/theme_vehicle/__manifest__.py deleted file mode 100644 index c999f98..0000000 --- a/theme_vehicle/theme_vehicle/__manifest__.py +++ /dev/null @@ -1,19 +0,0 @@ -{ - 'name': 'Vehicle Theme', - 'description': 'Vehicle Theme - Cars, Motorbikes, Bikes, Tires', - 'category': 'Theme/Services', - 'summary': 'Cars, Motorbikes, Bikes, Tires, Transports, Repair, Mechanics, Garages, Sports, Services', - 'sequence': 300, - 'version': '1.0', - 'depends': ['theme_monglia'], - 'data': [ - 'views/assets.xml', - 'views/images.xml', - ], - 'images': [ - 'static/description/vehicle_description.png', - 'static/description/vehicle_screenshot.jpeg', - ], - 'license': 'LGPL-3', - 'live_test_url': 'https://theme-vehicle.odoo.com', -} diff --git a/theme_vehicle/theme_vehicle/models/theme_vehicle.py b/theme_vehicle/theme_vehicle/models/theme_vehicle.py deleted file mode 100644 index 1ddd513..0000000 --- a/theme_vehicle/theme_vehicle/models/theme_vehicle.py +++ /dev/null @@ -1,9 +0,0 @@ -from odoo import models - - -class ThemeVehicle(models.AbstractModel): - _inherit = 'theme.utils' - - def _theme_vehicle_post_copy(self, mod): - # Color preset - self.enable_view('theme_common.option_colors_06_variables') diff --git a/theme_vehicle/theme_vehicle/static/description/contributors/applicatour.jpg b/theme_vehicle/theme_vehicle/static/description/contributors/applicatour.jpg deleted file mode 100644 index ccca288..0000000 Binary files a/theme_vehicle/theme_vehicle/static/description/contributors/applicatour.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/description/contributors/aselcis.jpg b/theme_vehicle/theme_vehicle/static/description/contributors/aselcis.jpg deleted file mode 100644 index 04a2b01..0000000 Binary files a/theme_vehicle/theme_vehicle/static/description/contributors/aselcis.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/description/contributors/bas-solutions.png b/theme_vehicle/theme_vehicle/static/description/contributors/bas-solutions.png deleted file mode 100644 index 238d047..0000000 Binary files a/theme_vehicle/theme_vehicle/static/description/contributors/bas-solutions.png and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/description/contributors/bloopark.png b/theme_vehicle/theme_vehicle/static/description/contributors/bloopark.png deleted file mode 100644 index aa384d7..0000000 Binary files a/theme_vehicle/theme_vehicle/static/description/contributors/bloopark.png and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/description/contributors/brouwland.jpg b/theme_vehicle/theme_vehicle/static/description/contributors/brouwland.jpg deleted file mode 100644 index 17df0f0..0000000 Binary files a/theme_vehicle/theme_vehicle/static/description/contributors/brouwland.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/description/contributors/catsdogs.png b/theme_vehicle/theme_vehicle/static/description/contributors/catsdogs.png deleted file mode 100644 index 298fe88..0000000 Binary files a/theme_vehicle/theme_vehicle/static/description/contributors/catsdogs.png and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/description/contributors/dialognet.png b/theme_vehicle/theme_vehicle/static/description/contributors/dialognet.png deleted file mode 100644 index d36a2a1..0000000 Binary files a/theme_vehicle/theme_vehicle/static/description/contributors/dialognet.png and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/description/contributors/dynapps.jpg b/theme_vehicle/theme_vehicle/static/description/contributors/dynapps.jpg deleted file mode 100644 index 1ef0988..0000000 Binary files a/theme_vehicle/theme_vehicle/static/description/contributors/dynapps.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/description/contributors/huckemedia.png b/theme_vehicle/theme_vehicle/static/description/contributors/huckemedia.png deleted file mode 100644 index 86c9f59..0000000 Binary files a/theme_vehicle/theme_vehicle/static/description/contributors/huckemedia.png and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/description/contributors/opusvl.png b/theme_vehicle/theme_vehicle/static/description/contributors/opusvl.png deleted file mode 100644 index a2fa2dc..0000000 Binary files a/theme_vehicle/theme_vehicle/static/description/contributors/opusvl.png and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/description/contributors/oxen.jpg b/theme_vehicle/theme_vehicle/static/description/contributors/oxen.jpg deleted file mode 100644 index 6ea2584..0000000 Binary files a/theme_vehicle/theme_vehicle/static/description/contributors/oxen.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/description/contributors/simplitco.jpg b/theme_vehicle/theme_vehicle/static/description/contributors/simplitco.jpg deleted file mode 100644 index 8df7a28..0000000 Binary files a/theme_vehicle/theme_vehicle/static/description/contributors/simplitco.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/description/contributors/sodexis.jpg b/theme_vehicle/theme_vehicle/static/description/contributors/sodexis.jpg deleted file mode 100644 index 6e34947..0000000 Binary files a/theme_vehicle/theme_vehicle/static/description/contributors/sodexis.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/description/contributors/tech-receptives.png b/theme_vehicle/theme_vehicle/static/description/contributors/tech-receptives.png deleted file mode 100644 index 3e96c41..0000000 Binary files a/theme_vehicle/theme_vehicle/static/description/contributors/tech-receptives.png and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/description/contributors/vauxoo.png b/theme_vehicle/theme_vehicle/static/description/contributors/vauxoo.png deleted file mode 100644 index 5736407..0000000 Binary files a/theme_vehicle/theme_vehicle/static/description/contributors/vauxoo.png and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/description/customtool2.jpg b/theme_vehicle/theme_vehicle/static/description/customtool2.jpg deleted file mode 100644 index fb3a1f7..0000000 Binary files a/theme_vehicle/theme_vehicle/static/description/customtool2.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/description/index.html b/theme_vehicle/theme_vehicle/static/description/index.html deleted file mode 100644 index bd29393..0000000 --- a/theme_vehicle/theme_vehicle/static/description/index.html +++ /dev/null @@ -1,208 +0,0 @@ -
            -

            Html5 Responsive Bootstrap Theme for Odoo CMS

            -
            - -

            Vehicle is a professional responsive HTML5 theme, built using Bootstrap3, - the most popular front-end framework for developing responsive, mobile - first projects on the web. Just drag & drop the new building blocks - you need to easily build your layout. All layouts are made of sections, - that you can easily combine to fit your specific project.

            - -
            - -

            Vehicle Customization Tool

            - -

            Theme Vehicle comes with customization tools. You can easily change - the background, the colors and the font combination of your website or - you a preset.

            - -
            -
            - -
            -
            -

            Theme Vehicle comes with a lot of options

            -
              -
            • WIDE OR BOXED LAYOUT
            • -
            • 6 COLOR SCHEMES
            • -
            • 8 BACKGROUND SHADES OR USE YOUR OWN
            • -
            • 6 FONT COMBINATIONS
            • -
            • 10 BACKGROUND PATTERNS
            • -
            -

            All the background, color and font combinations were made to work together.  - You can not go wrong with the settings.

            - -

            Minimalistic Flat Design

            -

            Vehicle was made with easy customization and branding in mind. Based on - simple, modern and typographical elements, it allows you to easily customize - your website.

            - -

            6 Prebuild Presets

            -

            You don't have the time to play with options? Don't worry, Vehicle gives - you six full presets wich combine colors, fonts and background.

            - -

            This theme has an additional eCommerce plugin.

            -
            -
            - -

            Vehicle Building Blocks

            - -

            You get a new complete range of building blocks.

            - -
            -
            -

            STRUCTURE BLOCKS

            -
              -
            • Custom Banner
            • -
            • Big Picture + Text
            • -
            • Text + Big Picture
            • -
            • Cubes
            • -
            • Features Slideshow
            • -
            • Header + Text + Picture
            • -
            • Product List
            • -
            • Text + Image + Text
            • -
            • Parallax Banner
            • -
            • 2 Color Blocks
            • -
            • 4 Color Blocks
            • -
            • Numbers
            • -
            • Timeline
            • -
            • Event List
            • -
            • Logos Bar
            • -
            • Testimonial Slider
            • -
            • Progress
            • -
            • Big Circle Icons
            • -
            -

            EFFECT BLOCKS

            -
              -
            • Big Image Parallax
            • -
            -
            -
            -

            Customize Your Blocks

            -

            Each building blocks comes with its own options. 

            -
            -

            CONTENT BLOCKS

            -
              -
            • Title
            • -
            • 1 Column Text
            • -
            • 2 Column Text
            • -
            • 3 Column Text
            • -
            • 4 Column Text
            • -
            • Custom Button
            • -
            • Separator Block
            • -
            -

            FEATURES BLOCKS

            -
              -
            • Slide Banner
            • -
            • Slideshow with products
            • -
            -
            -
            - -

            Some fonts might not work with extended charsets.

            -

            The images in the theme are copyrighted and can't be used outside of the odoo.com domain.

            -
            - -

            CONTRIBUTORS LIST

            -
            -

            This theme was created with the help of our user community.

            -

            Thanks to our backers the Indiegogo campaign was a success!

            -

            https://www.indiegogo.com/projects/bootstrap-themes-for-odoo-cms/

            -
            -

            Main Sponsor

            -
            - -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            - -

            Ross Whiting, Oxenworkwear - Hans Balis - Stephan Keller, Sodexis, Inc. - Michael Hucke, Hucke Media GmbH & Co. KG - Joachim Grubelnik, DaDi EDV GmbH​ datadialog.net - DynApps - Cats&Dogs bvba - Bloopark systems GmbH & Co. KG - Parthiv Patel, Tech Receptives Solutions Pvt. Ltd. - Stuart Mackintosh, OpusVL - Erwin van der Ploeg, BAS Solutions - ali Zuaby, simplit co - Aselcis Consulting - Nhomar Hernandez, Vauxoo

            - -

            Sponsor

            -
            - -

            Robert Baumgartner, datenpol gmbh - openBIG - Russell Phillippe, Protogenos Ltd - Julien Allo, Julius - EasyPME - Jonathan Wilson, WillowIT Pty Ltd - Xavier Mallein, MAallein - Pedro M. Baeza, Serv. Tecnol. Avanzados - Daniel Dico, OERP Canada - Jantz Business Group b.v. - LogicaSoft Consulting - Eric Caudal, Elico Corp - Ermin Trevisan, Twanda - Jean-François Mattler, OpenFid SAS - Alex Ferrer, Lannex IT Solutions - Tony Gu, Shine IT Co. Ltd. 先安科技 - TaPo-IT OG - Jos De Graeve, Apertoso - Nicolas Rigo, eezee-it - Luis Miguel Varón E, Colorisa S.A - OpenBias - Stanislas Drouin Applicatour

            - -

            Power Designer

            -
            - -

            Rohit Thakral - François Dhommeaux, Ubic Informatique - Judson Alves, Market Home Delivery - Eric Flaux, ABF Osiell - Gilles Dupont - Arnis Putniņš - Johnson Martt, GetOpenERP (Part of OpenStow Technologies) - Gianluca Milano - Daniel Stolovich, ATEL S.A. - Equitania Software GmbH - Senthilnathan G - Houssine Bakkali - Arend Trip - Kevin Woolf, Baba Kevin's American Barbecue Co., Ltd. - toodoo sàrl - Zoltan Gabor 'Apersis' - Tom De Decker, WEB2GO LTD - Nicolás Cavalier Montenegro, STOREGUD CORPORATION SAC - Keirse Jerome - REAL Solutions S.A. - Davide Corio - Brice Muangkhot - Melvin Miguel Martinez, Mendoza Hernandez - Auditores - Chua Wen Ching - Tran Minh Tri working, ungdungtinhoc.com - Badisheng Morena - Sogexis - Josh Wardini - The Tee Shirt Bakery - Bruce Letterle, Red Lab Media - Benoit Vankoningsloo - Francisco Manuel Garcia Claramonte. - Paulina Mikolajczak-Blasco - Collectiv - Tony Fernando - Herbert Riener, rigaConcepts - Kalmen Chia, E-Global SCM Solution Sdn Bhd - Rob North, Pair A Dice Games - David E. Vargas, CloudShop - François Le Gal - Calin Chete (24h Solutions) - Maria Gabriela Fong, MAGA Systems & Consulting - Pascal Behr, Cytosurge AG - Marc Antwertinger - Opencloud Unipessoal, Lda - Ruchir Shukla, BizzAppDev - Michael Hucke, Hucke Media GmbH & Co. KG - Mathias Neef, copadoMEDIA UG - Pablo Arias - Same Motion - livingprocess.de - Habib Ayob - Igor Jovanovic - Liangming Wang, Weixuan Inc. - Jason Au Yeung, Binary System Limited - Fredrik Arvas, Arvas International AB - Martin Temmink, Zigaret - Mathieu Vanneste, Flockdesign - Filip Fruru, Instant Media - Marianne Wilmsmeier, Fabrik Fünf GmbH - Vertex Group Enterprises - Bingen Eguzkitza - Herczeg Péter, InnOpen Group Kft - Giles Hohnen - Luis Felipe Miléo, KMEE - Maria Gabriela Fong, MAGA Systems & Consulting - Aaron Magon, Web Industries - Andrew Trueman, B.M. Trueman & Partners - Sven Petersen, Conexus - Nous Cambas - Oliver Yuan, OpenStone - Henri Ibowili, A-YANT.COM - Nicolas JEUDY - Helmut Drewes - Maik Steinfeld, Streward - Hans Henrik Gabelgaard - AJ Rosman - Eduard - Patrick Darribet, SUDOKEYS - Camptocamp - Cyril Morisse - Alejandro Santana - Eva Pinter, YBO - Mathias Neef, copadoMEDIA UG - Jean-Christophe Perrot, LOGICASOFT - Zarshed Ali, HiTechnologia - Stefan Reisich - Maxime Chambreuil, Savoir-faire Linux - Mario Gielissen, Openworx - Nicholas Burdic, Aptoworks LLC - Olivier Lenoir

            -
            diff --git a/theme_vehicle/theme_vehicle/static/description/vehicle_screenshot.jpeg b/theme_vehicle/theme_vehicle/static/description/vehicle_screenshot.jpeg deleted file mode 100644 index 52188ca..0000000 Binary files a/theme_vehicle/theme_vehicle/static/description/vehicle_screenshot.jpeg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/backgrounds/01.jpg b/theme_vehicle/theme_vehicle/static/src/img/backgrounds/01.jpg deleted file mode 100755 index 73e99ba..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/backgrounds/01.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/backgrounds/02.jpg b/theme_vehicle/theme_vehicle/static/src/img/backgrounds/02.jpg deleted file mode 100755 index ee87ae8..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/backgrounds/02.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/backgrounds/03.jpg b/theme_vehicle/theme_vehicle/static/src/img/backgrounds/03.jpg deleted file mode 100755 index 7cd7744..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/backgrounds/03.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/backgrounds/04.jpg b/theme_vehicle/theme_vehicle/static/src/img/backgrounds/04.jpg deleted file mode 100755 index 73203db..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/backgrounds/04.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/backgrounds/05.jpg b/theme_vehicle/theme_vehicle/static/src/img/backgrounds/05.jpg deleted file mode 100755 index e8254d1..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/backgrounds/05.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/backgrounds/06.jpg b/theme_vehicle/theme_vehicle/static/src/img/backgrounds/06.jpg deleted file mode 100755 index dbb8b61..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/backgrounds/06.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/backgrounds/07.jpg b/theme_vehicle/theme_vehicle/static/src/img/backgrounds/07.jpg deleted file mode 100755 index 8212c75..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/backgrounds/07.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/backgrounds/08.jpg b/theme_vehicle/theme_vehicle/static/src/img/backgrounds/08.jpg deleted file mode 100755 index 726fba2..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/backgrounds/08.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/backgrounds/09.jpg b/theme_vehicle/theme_vehicle/static/src/img/backgrounds/09.jpg deleted file mode 100755 index cbb38e1..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/backgrounds/09.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/backgrounds/10.jpg b/theme_vehicle/theme_vehicle/static/src/img/backgrounds/10.jpg deleted file mode 100755 index 1b0f46a..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/backgrounds/10.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/content_img_01.jpg b/theme_vehicle/theme_vehicle/static/src/img/content/content_img_01.jpg deleted file mode 100755 index c293ddf..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/content_img_01.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/content_img_01.png b/theme_vehicle/theme_vehicle/static/src/img/content/content_img_01.png deleted file mode 100755 index 6648e65..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/content_img_01.png and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/content_img_04.jpg b/theme_vehicle/theme_vehicle/static/src/img/content/content_img_04.jpg deleted file mode 100755 index 6b0015f..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/content_img_04.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/content_img_05.jpg b/theme_vehicle/theme_vehicle/static/src/img/content/content_img_05.jpg deleted file mode 100755 index 916926c..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/content_img_05.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/content_img_06.jpg b/theme_vehicle/theme_vehicle/static/src/img/content/content_img_06.jpg deleted file mode 100755 index 920790c..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/content_img_06.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/content_img_08.jpg b/theme_vehicle/theme_vehicle/static/src/img/content/content_img_08.jpg deleted file mode 100755 index 1a0f5dd..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/content_img_08.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/content_logo.png b/theme_vehicle/theme_vehicle/static/src/img/content/content_logo.png deleted file mode 100755 index 508d8f9..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/content_logo.png and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_01.jpg b/theme_vehicle/theme_vehicle/static/src/img/content/product_img_01.jpg deleted file mode 100755 index 5f03ba4..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_01.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_02.jpg b/theme_vehicle/theme_vehicle/static/src/img/content/product_img_02.jpg deleted file mode 100755 index eb1bee6..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_02.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_03.jpg b/theme_vehicle/theme_vehicle/static/src/img/content/product_img_03.jpg deleted file mode 100755 index 0627c9d..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_03.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_04.jpg b/theme_vehicle/theme_vehicle/static/src/img/content/product_img_04.jpg deleted file mode 100755 index b42910d..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_04.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_05.jpg b/theme_vehicle/theme_vehicle/static/src/img/content/product_img_05.jpg deleted file mode 100755 index d6150b1..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_05.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_06.jpg b/theme_vehicle/theme_vehicle/static/src/img/content/product_img_06.jpg deleted file mode 100755 index c694c84..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_06.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_07.jpg b/theme_vehicle/theme_vehicle/static/src/img/content/product_img_07.jpg deleted file mode 100755 index c315b35..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_07.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_08.jpg b/theme_vehicle/theme_vehicle/static/src/img/content/product_img_08.jpg deleted file mode 100755 index b22a96e..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_08.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_09.jpg b/theme_vehicle/theme_vehicle/static/src/img/content/product_img_09.jpg deleted file mode 100755 index cd76c8f..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_09.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_10.jpg b/theme_vehicle/theme_vehicle/static/src/img/content/product_img_10.jpg deleted file mode 100755 index e3ab060..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_10.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_11.jpg b/theme_vehicle/theme_vehicle/static/src/img/content/product_img_11.jpg deleted file mode 100755 index 371bb74..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_11.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_12.jpg b/theme_vehicle/theme_vehicle/static/src/img/content/product_img_12.jpg deleted file mode 100755 index 43386a5..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_12.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_13.jpg b/theme_vehicle/theme_vehicle/static/src/img/content/product_img_13.jpg deleted file mode 100755 index c5684a7..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_13.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_14.jpg b/theme_vehicle/theme_vehicle/static/src/img/content/product_img_14.jpg deleted file mode 100755 index 2bce959..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_14.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_15.jpg b/theme_vehicle/theme_vehicle/static/src/img/content/product_img_15.jpg deleted file mode 100755 index 0811018..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_15.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_16.jpg b/theme_vehicle/theme_vehicle/static/src/img/content/product_img_16.jpg deleted file mode 100755 index 6b3ba68..0000000 Binary files a/theme_vehicle/theme_vehicle/static/src/img/content/product_img_16.jpg and /dev/null differ diff --git a/theme_vehicle/theme_vehicle/static/src/scss/bootstrap_overridden.scss b/theme_vehicle/theme_vehicle/static/src/scss/bootstrap_overridden.scss deleted file mode 100644 index e69de29..0000000 diff --git a/theme_vehicle/theme_vehicle/static/src/scss/layout.scss b/theme_vehicle/theme_vehicle/static/src/scss/layout.scss deleted file mode 100644 index 9e0c978..0000000 --- a/theme_vehicle/theme_vehicle/static/src/scss/layout.scss +++ /dev/null @@ -1,18 +0,0 @@ -#top_menu li { - border-bottom-width: 0px; - a { - text-transform: uppercase; - } -} -#wrapwrap > footer { - background: rgba(0, 0, 0, 0); -} - -@if $o-theme-hamburger-layout { - #wrapwrap > header > .navbar-static-top { - z-index: 100; - > .container { - background-color: rgba(0, 0, 0, 0.9); - } - } -} diff --git a/theme_vehicle/theme_vehicle/static/src/scss/primary_variables.scss b/theme_vehicle/theme_vehicle/static/src/scss/primary_variables.scss deleted file mode 100644 index e69de29..0000000 diff --git a/theme_vehicle/theme_vehicle/views/assets.xml b/theme_vehicle/theme_vehicle/views/assets.xml deleted file mode 100644 index b5b7944..0000000 --- a/theme_vehicle/theme_vehicle/views/assets.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - diff --git a/theme_vehicle/theme_vehicle/views/images.xml b/theme_vehicle/theme_vehicle/views/images.xml deleted file mode 100644 index 3156465..0000000 --- a/theme_vehicle/theme_vehicle/views/images.xml +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - theme_monglia.bg_img_01 - theme_monglia.background_img_01 - /theme_vehicle/static/src/img/backgrounds/01.jpg - - - theme_monglia.bg_img_02 - theme_monglia.background_img_02 - /theme_vehicle/static/src/img/backgrounds/02.jpg - - - theme_monglia.bg_img_03 - theme_monglia.background_img_03 - /theme_vehicle/static/src/img/backgrounds/03.jpg - - - theme_monglia.bg_img_04 - theme_monglia.background_img_04 - /theme_vehicle/static/src/img/backgrounds/04.jpg - - - theme_monglia.bg_img_05 - theme_monglia.background_img_05 - /theme_vehicle/static/src/img/backgrounds/05.jpg - - - theme_monglia.bg_img_06 - theme_monglia.background_img_06 - /theme_vehicle/static/src/img/backgrounds/06.jpg - - - theme_monglia.bg_img_07 - theme_monglia.background_img_07 - /theme_vehicle/static/src/img/backgrounds/07.jpg - - - theme_monglia.bg_img_08 - theme_monglia.background_img_08 - /theme_vehicle/static/src/img/backgrounds/08.jpg - - - theme_monglia.bg_img_09 - theme_monglia.background_img_09 - /theme_vehicle/static/src/img/backgrounds/09.jpg - - - theme_monglia.bg_img_10 - theme_monglia.background_img_10 - /theme_vehicle/static/src/img/backgrounds/10.jpg - - - - - - theme_common.image_content_01 - theme_common.image_content_01 - /theme_vehicle/static/src/img/content/content_img_01.png - - - theme_common.image_content_02 - theme_common.image_content_02 - /theme_vehicle/static/src/img/content/content_img_02.jpg - - - theme_common.image_content_03 - theme_common.image_content_03 - /theme_vehicle/static/src/img/content/content_img_03.jpg - - - theme_common.image_content_04 - theme_common.image_content_04 - /theme_vehicle/static/src/img/content/content_img_04.jpg - - - theme_common.image_content_05 - theme_common.image_content_05 - /theme_vehicle/static/src/img/content/content_img_05.jpg - - - theme_common.image_content_06 - theme_common.image_content_06 - /theme_vehicle/static/src/img/content/content_img_06.jpg - - - theme_common.image_content_07 - theme_common.image_content_07 - /theme_vehicle/static/src/img/content/content_img_07.jpg - - - theme_common.image_content_08 - theme_common.image_content_08 - /theme_vehicle/static/src/img/content/content_img_08.jpg - - - theme_common.image_content_09 - theme_common.image_content_09 - /theme_vehicle/static/src/img/content/content_img_09.jpg - - - theme_common.image_content_10 - theme_common.image_content_10 - /theme_vehicle/static/src/img/content/content_img_10.jpg - - - theme_common.image_content_11 - theme_common.image_content_11 - /theme_vehicle/static/src/img/content/content_img_11.jpg - - - theme_common.image_content_12 - theme_common.image_content_12 - /theme_vehicle/static/src/img/content/content_img_12.jpg - - - - - theme_common.image_product_01 - theme_common.image_product_01 - /theme_vehicle/static/src/img/content/product_img_01.jpg - - - theme_common.image_product_02 - theme_common.image_product_02 - /theme_vehicle/static/src/img/content/product_img_02.jpg - - - theme_common.image_product_03 - theme_common.image_product_03 - /theme_vehicle/static/src/img/content/product_img_03.jpg - - - theme_common.image_product_04 - theme_common.image_product_04 - /theme_vehicle/static/src/img/content/product_img_04.jpg - - - theme_common.image_product_05 - theme_common.image_product_05 - /theme_vehicle/static/src/img/content/product_img_05.jpg - - - theme_common.image_product_06 - theme_common.image_product_06 - /theme_vehicle/static/src/img/content/product_img_06.jpg - - - theme_common.image_product_07 - theme_common.image_product_07 - /theme_vehicle/static/src/img/content/product_img_07.jpg - - - theme_common.image_product_08 - theme_common.image_product_08 - /theme_vehicle/static/src/img/content/product_img_08.jpg - - - theme_common.image_product_09 - theme_common.image_product_09 - /theme_vehicle/static/src/img/content/product_img_09.jpg - - - theme_common.image_product_10 - theme_common.image_product_10 - /theme_vehicle/static/src/img/content/product_img_10.jpg - - - theme_common.image_product_11 - theme_common.image_product_11 - /theme_vehicle/static/src/img/content/product_img_11.jpg - - - diff --git a/theme_vehicle/views/assets.xml b/theme_vehicle/views/assets.xml new file mode 100644 index 0000000..198d797 --- /dev/null +++ b/theme_vehicle/views/assets.xml @@ -0,0 +1,21 @@ + + + + + + + + - - - diff --git a/theme_zap/theme_treehouse/views/customize_modal.xml b/theme_zap/theme_treehouse/views/customize_modal.xml deleted file mode 100644 index 0915674..0000000 --- a/theme_zap/theme_treehouse/views/customize_modal.xml +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/theme_zap/theme_treehouse/views/images_content.xml b/theme_zap/theme_treehouse/views/images_content.xml deleted file mode 100644 index c6c92f4..0000000 --- a/theme_zap/theme_treehouse/views/images_content.xml +++ /dev/null @@ -1,128 +0,0 @@ - - - - theme_common.image_content_04 - theme_common.image_content_04 - /theme_treehouse/static/src/img/content/text_image.jpg - - - theme_common.image_content_05 - theme_common.image_content_05 - /theme_treehouse/static/src/img/content/big_picture.gif - - - theme_common.image_content_06 - theme_common.image_content_06 - /theme_treehouse/static/src/img/content/image_text.jpg - - - theme_common.image_content_09 - theme_common.image_content_09 - /theme_treehouse/static/src/img/content/profiles_boxes_2.jpg - - - theme_common.image_content_10 - theme_common.image_content_10 - /theme_treehouse/static/src/img/content/author.gif - - - theme_common.image_content_11 - theme_common.image_content_11 - /theme_treehouse/static/src/img/content/profiles_boxes_3.jpg - - - theme_common.image_content_12 - theme_common.image_content_12 - /theme_treehouse/static/src/img/content/logo_bakery.png - - - theme_common.image_content_13 - theme_common.image_content_13 - /theme_treehouse/static/src/img/content/logo_barber.png - - - theme_common.image_content_14 - theme_common.image_content_14 - /theme_treehouse/static/src/img/content/logo_coffee.png - - - theme_common.image_content_15 - theme_common.image_content_15 - /theme_treehouse/static/src/img/content/logo_coffee_ribbon.png - - - theme_common.image_content_16 - theme_common.image_content_16 - /theme_treehouse/static/src/img/content/logo_fish.png - - - theme_common.image_content_17 - theme_common.image_content_17 - /theme_treehouse/static/src/img/content/logo_plane.png - - - theme_common.image_content_18 - theme_common.image_content_18 - /theme_treehouse/static/src/img/content/profiles_boxes_1.jpg - - - theme_common.image_content_19 - theme_common.image_content_19 - /theme_treehouse/static/src/img/content/three_columns_1.jpg - - - theme_common.image_content_20 - theme_common.image_content_20 - /theme_treehouse/static/src/img/content/three_columns_2a.jpg - - - theme_common.image_content_21 - theme_common.image_content_21 - /theme_treehouse/static/src/img/content/three_columns_2b.jpg - - - theme_common.image_content_22 - theme_common.image_content_22 - /theme_treehouse/static/src/img/content/three_columns_2c.jpg - - - theme_common.image_content_23 - theme_common.image_content_23 - /theme_treehouse/static/src/img/content/three_columns_3.jpg - - - theme_common.image_content_24 - theme_common.image_content_24 - /theme_treehouse/static/src/img/backgrounds/01.jpg - - - theme_common.image_content_25 - theme_common.image_content_25 - /theme_treehouse/static/src/img/backgrounds/04.jpg - - - theme_common.image_content_26 - theme_common.image_content_26 - /theme_treehouse/static/src/img/backgrounds/11.jpg - - - theme_common.image_content_27 - theme_common.image_content_27 - /theme_treehouse/static/src/img/backgrounds/13.jpg - - - theme_common.image_content_28 - theme_common.image_content_28 - /theme_treehouse/static/src/img/backgrounds/12.jpg - - - theme_common.image_content_29 - theme_common.image_content_29 - /theme_treehouse/static/src/img/backgrounds/10.jpg - - - theme_common.image_content_30 - theme_common.image_content_30 - /theme_treehouse/static/src/img/backgrounds/16.jpg - - diff --git a/theme_zap/theme_treehouse/views/images_library.xml b/theme_zap/theme_treehouse/views/images_library.xml deleted file mode 100644 index cd7b3ad..0000000 --- a/theme_zap/theme_treehouse/views/images_library.xml +++ /dev/null @@ -1,146 +0,0 @@ - - - - theme_treehouse.bg_img_01 - background_img_01.jpg - /theme_treehouse/static/src/img/backgrounds/01.jpg - - - theme_treehouse.bg_img_02 - background_img_02.jpg - /theme_treehouse/static/src/img/backgrounds/02.jpg - - - theme_treehouse.bg_img_03 - background_img_03.jpg - /theme_treehouse/static/src/img/backgrounds/03.jpg - - - theme_treehouse.bg_img_04 - background_img_04.jpg - /theme_treehouse/static/src/img/backgrounds/04.jpg - - - theme_treehouse.bg_img_05 - background_img_05.jpg - /theme_treehouse/static/src/img/backgrounds/05.jpg - - - theme_treehouse.bg_img_06 - background_img_06.jpg - /theme_treehouse/static/src/img/backgrounds/06.jpg - - - theme_treehouse.bg_img_07 - background_img_07.jpg - /theme_treehouse/static/src/img/backgrounds/07.jpg - - - theme_treehouse.bg_img_08 - background_img_08.jpg - /theme_treehouse/static/src/img/backgrounds/08.jpg - - - theme_treehouse.bg_img_09 - background_img_09.jpg - /theme_treehouse/static/src/img/backgrounds/09.jpg - - - theme_treehouse.bg_img_10 - background_img_10.jpg - /theme_treehouse/static/src/img/backgrounds/10.jpg - - - theme_treehouse.bg_img_11 - background_img_11.jpg - /theme_treehouse/static/src/img/backgrounds/11.jpg - - - theme_treehouse.bg_img_12 - background_img_12.jpg - /theme_treehouse/static/src/img/backgrounds/12.jpg - - - theme_treehouse.bg_img_13 - background_img_13.jpg - /theme_treehouse/static/src/img/backgrounds/13.jpg - - - theme_treehouse.bg_img_14 - background_img_14.jpg - /theme_treehouse/static/src/img/backgrounds/14.jpg - - - theme_treehouse.bg_img_15 - background_img_15.jpg - /theme_treehouse/static/src/img/backgrounds/15.jpg - - - theme_treehouse.bg_img_16 - background_img_16.jpg - /theme_treehouse/static/src/img/backgrounds/16.jpg - - - - theme_treehouse.bg_pattern_01 - background_pattern_01.png - /theme_treehouse/static/src/img/patterns/01.png - - - theme_treehouse.bg_pattern_02 - background_pattern_02.png - /theme_treehouse/static/src/img/patterns/02.png - - - theme_treehouse.bg_pattern_03 - background_pattern_03.png - /theme_treehouse/static/src/img/patterns/03.png - - - theme_treehouse.bg_pattern_04 - background_pattern_04.png - /theme_treehouse/static/src/img/patterns/04.png - - - theme_treehouse.bg_pattern_05 - background_pattern_05.png - /theme_treehouse/static/src/img/patterns/05.png - - - theme_treehouse.bg_pattern_06 - background_pattern_06.png - /theme_treehouse/static/src/img/patterns/06.png - - - theme_treehouse.bg_pattern_07 - background_pattern_07.png - /theme_treehouse/static/src/img/patterns/07.png - - - theme_treehouse.bg_pattern_08 - background_pattern_08.png - /theme_treehouse/static/src/img/patterns/08.png - - - theme_treehouse.bg_pattern_09 - background_pattern_09.png - /theme_treehouse/static/src/img/patterns/09.png - - - - - website.s_cover_default_image - website.s_cover_default_image - /web/image/theme_treehouse.bg_img_15 - - - website.s_text_image_default_image - website.s_text_image_default_image - /web/image/theme_common.image_content_04 - - - website.s_image_text_default_image - website.s_image_text_default_image - /web/image/theme_common.image_content_04 - - diff --git a/theme_zap/theme_treehouse/views/layout.xml b/theme_zap/theme_treehouse/views/layout.xml deleted file mode 100644 index b21dcde..0000000 --- a/theme_zap/theme_treehouse/views/layout.xml +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - diff --git a/theme_zap/theme_treehouse/views/snippets.xml b/theme_zap/theme_treehouse/views/snippets.xml deleted file mode 100644 index cf3caf5..0000000 --- a/theme_zap/theme_treehouse/views/snippets.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - diff --git a/theme_zap/theme_treehouse/views/snippets/s_panel_extended.xml b/theme_zap/theme_treehouse/views/snippets/s_panel_extended.xml deleted file mode 100644 index 77ab620..0000000 --- a/theme_zap/theme_treehouse/views/snippets/s_panel_extended.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - diff --git a/theme_zap/theme_treehouse/views/snippets/s_share_extended.xml b/theme_zap/theme_treehouse/views/snippets/s_share_extended.xml deleted file mode 100644 index c550865..0000000 --- a/theme_zap/theme_treehouse/views/snippets/s_share_extended.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - diff --git a/theme_zap/theme_treehouse/views/snippets/s_well_extended.xml b/theme_zap/theme_treehouse/views/snippets/s_well_extended.xml deleted file mode 100644 index ed3d874..0000000 --- a/theme_zap/theme_treehouse/views/snippets/s_well_extended.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - diff --git a/theme_zap/theme_treehouse/views/snippets_options.xml b/theme_zap/theme_treehouse/views/snippets_options.xml deleted file mode 100644 index 0cb54dd..0000000 --- a/theme_zap/theme_treehouse/views/snippets_options.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - diff --git a/theme_zap/theme_zap/LICENSE b/theme_zap/theme_zap/LICENSE deleted file mode 100644 index b01eaf1..0000000 --- a/theme_zap/theme_zap/LICENSE +++ /dev/null @@ -1,27 +0,0 @@ -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_zap/theme_zap/__manifest__.py b/theme_zap/theme_zap/__manifest__.py deleted file mode 100644 index ac8e85a..0000000 --- a/theme_zap/theme_zap/__manifest__.py +++ /dev/null @@ -1,19 +0,0 @@ -{ - 'name': 'Zap Theme', - 'description': 'Zap Theme - Corporate, Business, Marketing, Copywriting', - 'category': 'Theme/Corporate', - 'summary': 'Marketing, Copywriting, Media, Events, Non Profit, NGO, Corporate, Business, Services', - 'sequence': 160, - 'version': '1.0', - 'depends': ['theme_treehouse'], - 'data': [ - 'views/assets.xml', - 'views/images_content.xml', - ], - 'images': [ - 'static/description/zap_cover.gif', - 'static/description/zap_screenshot.jpg', - ], - 'license': 'LGPL-3', - 'live_test_url': 'https://theme-zap.odoo.com' -} diff --git a/theme_zap/theme_zap/models/theme_zap.py b/theme_zap/theme_zap/models/theme_zap.py deleted file mode 100644 index 9a750c1..0000000 --- a/theme_zap/theme_zap/models/theme_zap.py +++ /dev/null @@ -1,11 +0,0 @@ -from odoo import models - - -class ThemeZap(models.AbstractModel): - _inherit = 'theme.utils' - - def _theme_zap_post_copy(self, mod): - # Disable treehouse color extensions as zap does not use the - # same colors - self.disable_view('theme_treehouse.option_colors_05_variables') - self.disable_view('theme_treehouse.option_colors_06_variables') diff --git a/theme_zap/theme_zap/static/description/contributors/applicatour.jpg b/theme_zap/theme_zap/static/description/contributors/applicatour.jpg deleted file mode 100644 index ccca288..0000000 Binary files a/theme_zap/theme_zap/static/description/contributors/applicatour.jpg and /dev/null differ diff --git a/theme_zap/theme_zap/static/description/contributors/aselcis.jpg b/theme_zap/theme_zap/static/description/contributors/aselcis.jpg deleted file mode 100644 index 04a2b01..0000000 Binary files a/theme_zap/theme_zap/static/description/contributors/aselcis.jpg and /dev/null differ diff --git a/theme_zap/theme_zap/static/description/contributors/bas-solutions.png b/theme_zap/theme_zap/static/description/contributors/bas-solutions.png deleted file mode 100644 index 238d047..0000000 Binary files a/theme_zap/theme_zap/static/description/contributors/bas-solutions.png and /dev/null differ diff --git a/theme_zap/theme_zap/static/description/contributors/bloopark.png b/theme_zap/theme_zap/static/description/contributors/bloopark.png deleted file mode 100644 index aa384d7..0000000 Binary files a/theme_zap/theme_zap/static/description/contributors/bloopark.png and /dev/null differ diff --git a/theme_zap/theme_zap/static/description/contributors/brouwland.jpg b/theme_zap/theme_zap/static/description/contributors/brouwland.jpg deleted file mode 100644 index 17df0f0..0000000 Binary files a/theme_zap/theme_zap/static/description/contributors/brouwland.jpg and /dev/null differ diff --git a/theme_zap/theme_zap/static/description/contributors/catsdogs.png b/theme_zap/theme_zap/static/description/contributors/catsdogs.png deleted file mode 100644 index 298fe88..0000000 Binary files a/theme_zap/theme_zap/static/description/contributors/catsdogs.png and /dev/null differ diff --git a/theme_zap/theme_zap/static/description/contributors/dialognet.png b/theme_zap/theme_zap/static/description/contributors/dialognet.png deleted file mode 100644 index d36a2a1..0000000 Binary files a/theme_zap/theme_zap/static/description/contributors/dialognet.png and /dev/null differ diff --git a/theme_zap/theme_zap/static/description/contributors/dynapps.jpg b/theme_zap/theme_zap/static/description/contributors/dynapps.jpg deleted file mode 100644 index 1ef0988..0000000 Binary files a/theme_zap/theme_zap/static/description/contributors/dynapps.jpg and /dev/null differ diff --git a/theme_zap/theme_zap/static/description/contributors/huckemedia.png b/theme_zap/theme_zap/static/description/contributors/huckemedia.png deleted file mode 100644 index 86c9f59..0000000 Binary files a/theme_zap/theme_zap/static/description/contributors/huckemedia.png and /dev/null differ diff --git a/theme_zap/theme_zap/static/description/contributors/opusvl.png b/theme_zap/theme_zap/static/description/contributors/opusvl.png deleted file mode 100644 index a2fa2dc..0000000 Binary files a/theme_zap/theme_zap/static/description/contributors/opusvl.png and /dev/null differ diff --git a/theme_zap/theme_zap/static/description/contributors/oxen.jpg b/theme_zap/theme_zap/static/description/contributors/oxen.jpg deleted file mode 100644 index 6ea2584..0000000 Binary files a/theme_zap/theme_zap/static/description/contributors/oxen.jpg and /dev/null differ diff --git a/theme_zap/theme_zap/static/description/contributors/simplitco.jpg b/theme_zap/theme_zap/static/description/contributors/simplitco.jpg deleted file mode 100644 index 8df7a28..0000000 Binary files a/theme_zap/theme_zap/static/description/contributors/simplitco.jpg and /dev/null differ diff --git a/theme_zap/theme_zap/static/description/contributors/sodexis.jpg b/theme_zap/theme_zap/static/description/contributors/sodexis.jpg deleted file mode 100644 index 6e34947..0000000 Binary files a/theme_zap/theme_zap/static/description/contributors/sodexis.jpg and /dev/null differ diff --git a/theme_zap/theme_zap/static/description/contributors/tech-receptives.png b/theme_zap/theme_zap/static/description/contributors/tech-receptives.png deleted file mode 100644 index 3e96c41..0000000 Binary files a/theme_zap/theme_zap/static/description/contributors/tech-receptives.png and /dev/null differ diff --git a/theme_zap/theme_zap/static/description/contributors/vauxoo.png b/theme_zap/theme_zap/static/description/contributors/vauxoo.png deleted file mode 100644 index 5736407..0000000 Binary files a/theme_zap/theme_zap/static/description/contributors/vauxoo.png and /dev/null differ diff --git a/theme_zap/theme_zap/static/description/index.html b/theme_zap/theme_zap/static/description/index.html deleted file mode 100644 index 046f159..0000000 --- a/theme_zap/theme_zap/static/description/index.html +++ /dev/null @@ -1,211 +0,0 @@ -
            -
            -
            -
            -

            Zap is a professional responsive HTML5 theme, built using Bootstrap, a popular front-end framework for developing responsive, mobile first projects on the web.
            Just drag & drop the building blocks you need to easily build your layout. All layouts are made of sections, that you can easily combine to fit your specific project.

            - -
            -
            -

            Customization Tools

            -
            Zap was made with easy customization and branding in mind. Based on simple, modern and typographical elements, it allows you to easily build your website. All the options were made to work together. You can not go wrong with the settings. -
            -

            - You will find these options in: Customize (top-right of the screen) > Customize Theme

            -
            -
            -
            -
            - -
            -
            - -
            -
            - -
            -
            - -

            Some fonts might not work with extended charsets.

            - -

            Building Blocks

            -
            You get a new complete range of building blocks.
            -

            - You will find these blocks in: Edit (top-left of the screen) > Insert Blocks

            - -

            Structure

            -
            -
            -
            - Page Header -
            -
            -
            - Numbers -
            -
            -
            - Boxed Carousel -
            -
            -
            - FW. Images + Captions -
            -
            - -

            Content

            -
            -
            -
            - Well + Icons -
            -
            -
            - Blockquote + Author -
            -
            -
            - Separator + Styles -
            -
            -
            - Panel + Icons -
            -
            -
            - Social + Styles -
            -
            -
            - Label -
            -
            - -

            Features

            -
            -
            -
            - Medias List -
            -
            -
            - Naws Carousel -
            -
            -
            - Steps -
            -
            -
            - Team Profiles -
            -
            - -

            Customize Your Blocks

            -
            Each building blocks comes with its own options of layout, backgrounds, colors, and styles
            - -

            The images in this theme are copyrighted and can't be used outside of the odoo.com domain.

            - -

            - This theme was created with the help of our user community.
            - Thanks to our backers the Indiegogo campaign was a success!
            - https://www.indiegogo.com/projects/bootstrap-themes-for-odoo-cms/ -

            - -

            MAIN SPONSOR

            -
            -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            - - - -
            -
            -
            -
            - - - -
            -
            - - - -
            -
            - - - - -
            -
            -

            - Ross Whiting, Oxenworkwear - Hans Balis - Stephan Keller, Sodexis, Inc. - Michael Hucke, Hucke Media GmbH & Co. KG - Joachim Grubelnik, DaDi EDV GmbH​ datadialog.net - DynApps - Cats&Dogs bvba - Bloopark systems GmbH & Co. KG - Parthiv Patel, Tech Receptives Solutions Pvt. Ltd. - Stuart Mackintosh, OpusVL - Erwin van der Ploeg, BAS Solutions - ali Zuaby, simplit co - Aselcis Consulting - Nhomar Hernandez, Vauxoo -

            -

            SPONSOR

            -
            -

            - Robert Baumgartner, datenpol gmbh - openBIG - Russell Phillippe, Protogenos Ltd - Julien Allo, Julius - EasyPME - Jonathan Wilson, WillowIT Pty Ltd - Xavier Mallein, MAallein - Pedro M. Baeza, Serv. Tecnol. Avanzados - Daniel Dico, OERP Canada - Jantz Business Group b.v. - LogicaSoft Consulting - Eric Caudal, Elico Corp - Ermin Trevisan, Twanda - Jean-François Mattler, OpenFid SAS - Alex Ferrer, Lannex IT Solutions - Tony Gu, Shine IT Co. Ltd. 先安科技 - TaPo-IT OG - Jos De Graeve, Apertoso - Nicolas Rigo, eezee-it - Luis Miguel Varón E, Colorisa S.A - OpenBias - Stanislas Drouin Applicatour -

            -

            POWER DESIGNER

            -
            -

            - Rohit Thakral - François Dhommeaux, Ubic Informatique - Judson Alves, Market Home Delivery - Eric Flaux, ABF Osiell - Gilles Dupont - Arnis Putniņš - Johnson Martt, GetOpenERP (Part of OpenStow Technologies) - Gianluca Milano - Daniel Stolovich, ATEL S.A. - Equitania Software GmbH - Senthilnathan G - Houssine Bakkali - Arend Trip - Kevin Woolf, Baba Kevin's American Barbecue Co., Ltd. - toodoo sàrl - Zoltan Gabor 'Apersis' - Tom De Decker, WEB2GO LTD - Nicolás Cavalier Montenegro, STOREGUD CORPORATION SAC - Keirse Jerome - REAL Solutions S.A. - Davide Corio - Brice Muangkhot - Melvin Miguel Martinez, Mendoza Hernandez - Auditores - Chua Wen Ching - Tran Minh Tri working, ungdungtinhoc.com - Badisheng Morena - Sogexis - Josh Wardini - The Tee Shirt Bakery - Bruce Letterle, Red Lab Media - Benoit Vankoningsloo - Francisco Manuel Garcia Claramonte. - Paulina Mikolajczak-Blasco - Collectiv - Tony Fernando - Herbert Riener, rigaConcepts - Kalmen Chia, E-Global SCM Solution Sdn Bhd - Rob North, Pair A Dice Games - David E. Vargas, CloudShop - François Le Gal - Calin Chete (24h Solutions) - Maria Gabriela Fong, MAGA Systems & Consulting - Pascal Behr, Cytosurge AG - Marc Antwertinger - Opencloud Unipessoal, Lda - Ruchir Shukla, BizzAppDev - Michael Hucke, Hucke Media GmbH & Co. KG - Mathias Neef, copadoMEDIA UG - Pablo Arias - Same Motion - livingprocess.de - Habib Ayob - Igor Jovanovic - Liangming Wang, Weixuan Inc. - Jason Au Yeung, Binary System Limited - Fredrik Arvas, Arvas International AB - Martin Temmink, Zigaret - Mathieu Vanneste, Flockdesign - Filip Fruru, Instant Media - Marianne Wilmsmeier, Fabrik Fünf GmbH - Vertex Group Enterprises - Bingen Eguzkitza - Herczeg Péter, InnOpen Group Kft - Giles Hohnen - Luis Felipe Miléo, KMEE - Maria Gabriela Fong, MAGA Systems & Consulting - Aaron Magon, Web Industries - Andrew Trueman, B.M. Trueman & Partners - Sven Petersen, Conexus - Nous Cambas - Oliver Yuan, OpenStone - Henri Ibowili, A-YANT.COM - Nicolas JEUDY - Helmut Drewes - Maik Steinfeld, Streward - Hans Henrik Gabelgaard - AJ Rosman - Eduard - Patrick Darribet, SUDOKEYS - Camptocamp - Cyril Morisse - Alejandro Santana - Eva Pinter, YBO - Mathias Neef, copadoMEDIA UG - Jean-Christophe Perrot, LOGICASOFT - Zarshed Ali, HiTechnologia - Stefan Reisich - Maxime Chambreuil, Savoir-faire Linux - Mario Gielissen, Openworx - Nicholas Burdic, Aptoworks LLC - Olivier Lenoir -

            -
            -
            -
            diff --git a/theme_zap/theme_zap/static/description/zap_screenshot.jpg b/theme_zap/theme_zap/static/description/zap_screenshot.jpg deleted file mode 100644 index bdd0f03..0000000 Binary files a/theme_zap/theme_zap/static/description/zap_screenshot.jpg and /dev/null differ diff --git a/theme_zap/theme_zap/static/src/img/content/author.gif b/theme_zap/theme_zap/static/src/img/content/author.gif deleted file mode 100644 index 4e27f29..0000000 Binary files a/theme_zap/theme_zap/static/src/img/content/author.gif and /dev/null differ diff --git a/theme_zap/theme_zap/static/src/img/content/big_picture.gif b/theme_zap/theme_zap/static/src/img/content/big_picture.gif deleted file mode 100644 index ae94947..0000000 Binary files a/theme_zap/theme_zap/static/src/img/content/big_picture.gif and /dev/null differ diff --git a/theme_zap/theme_zap/static/src/img/content/image_text.jpg b/theme_zap/theme_zap/static/src/img/content/image_text.jpg deleted file mode 100644 index ef56b43..0000000 Binary files a/theme_zap/theme_zap/static/src/img/content/image_text.jpg and /dev/null differ diff --git a/theme_zap/theme_zap/static/src/img/content/logo_01.png b/theme_zap/theme_zap/static/src/img/content/logo_01.png deleted file mode 100644 index b44b898..0000000 Binary files a/theme_zap/theme_zap/static/src/img/content/logo_01.png and /dev/null differ diff --git a/theme_zap/theme_zap/static/src/img/content/logo_02.png b/theme_zap/theme_zap/static/src/img/content/logo_02.png deleted file mode 100644 index 986d809..0000000 Binary files a/theme_zap/theme_zap/static/src/img/content/logo_02.png and /dev/null differ diff --git a/theme_zap/theme_zap/static/src/img/content/logo_03.png b/theme_zap/theme_zap/static/src/img/content/logo_03.png deleted file mode 100644 index 5bdb8a9..0000000 Binary files a/theme_zap/theme_zap/static/src/img/content/logo_03.png and /dev/null differ diff --git a/theme_zap/theme_zap/static/src/img/content/logo_04.png b/theme_zap/theme_zap/static/src/img/content/logo_04.png deleted file mode 100644 index 12ec997..0000000 Binary files a/theme_zap/theme_zap/static/src/img/content/logo_04.png and /dev/null differ diff --git a/theme_zap/theme_zap/static/src/img/content/logo_05.png b/theme_zap/theme_zap/static/src/img/content/logo_05.png deleted file mode 100644 index 5b1fe3c..0000000 Binary files a/theme_zap/theme_zap/static/src/img/content/logo_05.png and /dev/null differ diff --git a/theme_zap/theme_zap/static/src/img/content/logo_06.png b/theme_zap/theme_zap/static/src/img/content/logo_06.png deleted file mode 100644 index a923eea..0000000 Binary files a/theme_zap/theme_zap/static/src/img/content/logo_06.png and /dev/null differ diff --git a/theme_zap/theme_zap/static/src/img/content/profiles_boxes_1.jpg b/theme_zap/theme_zap/static/src/img/content/profiles_boxes_1.jpg deleted file mode 100644 index 1588766..0000000 Binary files a/theme_zap/theme_zap/static/src/img/content/profiles_boxes_1.jpg and /dev/null differ diff --git a/theme_zap/theme_zap/static/src/img/content/profiles_boxes_2.jpg b/theme_zap/theme_zap/static/src/img/content/profiles_boxes_2.jpg deleted file mode 100644 index c7da65a..0000000 Binary files a/theme_zap/theme_zap/static/src/img/content/profiles_boxes_2.jpg and /dev/null differ diff --git a/theme_zap/theme_zap/static/src/img/content/profiles_boxes_3.jpg b/theme_zap/theme_zap/static/src/img/content/profiles_boxes_3.jpg deleted file mode 100644 index bd7ad59..0000000 Binary files a/theme_zap/theme_zap/static/src/img/content/profiles_boxes_3.jpg and /dev/null differ diff --git a/theme_zap/theme_zap/static/src/img/content/three_columns_1.jpg b/theme_zap/theme_zap/static/src/img/content/three_columns_1.jpg deleted file mode 100644 index 9d1b5ec..0000000 Binary files a/theme_zap/theme_zap/static/src/img/content/three_columns_1.jpg and /dev/null differ diff --git a/theme_zap/theme_zap/static/src/img/content/three_columns_2.jpg b/theme_zap/theme_zap/static/src/img/content/three_columns_2.jpg deleted file mode 100644 index 66b466f..0000000 Binary files a/theme_zap/theme_zap/static/src/img/content/three_columns_2.jpg and /dev/null differ diff --git a/theme_zap/theme_zap/static/src/img/content/three_columns_2a.jpg b/theme_zap/theme_zap/static/src/img/content/three_columns_2a.jpg deleted file mode 100644 index c342bb6..0000000 Binary files a/theme_zap/theme_zap/static/src/img/content/three_columns_2a.jpg and /dev/null differ diff --git a/theme_zap/theme_zap/static/src/img/content/three_columns_2b.jpg b/theme_zap/theme_zap/static/src/img/content/three_columns_2b.jpg deleted file mode 100644 index 444c33e..0000000 Binary files a/theme_zap/theme_zap/static/src/img/content/three_columns_2b.jpg and /dev/null differ diff --git a/theme_zap/theme_zap/static/src/img/content/three_columns_2c.jpg b/theme_zap/theme_zap/static/src/img/content/three_columns_2c.jpg deleted file mode 100644 index 4070c85..0000000 Binary files a/theme_zap/theme_zap/static/src/img/content/three_columns_2c.jpg and /dev/null differ diff --git a/theme_zap/theme_zap/static/src/img/content/three_columns_3.jpg b/theme_zap/theme_zap/static/src/img/content/three_columns_3.jpg deleted file mode 100644 index 5e1a52c..0000000 Binary files a/theme_zap/theme_zap/static/src/img/content/three_columns_3.jpg and /dev/null differ diff --git a/theme_zap/theme_zap/static/src/img/patterns/bg_pattern_demo.png b/theme_zap/theme_zap/static/src/img/patterns/bg_pattern_demo.png deleted file mode 100644 index f4afbf2..0000000 Binary files a/theme_zap/theme_zap/static/src/img/patterns/bg_pattern_demo.png and /dev/null differ diff --git a/theme_zap/theme_zap/static/src/scss/bootstrap_overridden.scss b/theme_zap/theme_zap/static/src/scss/bootstrap_overridden.scss deleted file mode 100644 index c2696f9..0000000 --- a/theme_zap/theme_zap/static/src/scss/bootstrap_overridden.scss +++ /dev/null @@ -1,127 +0,0 @@ -// TODO ideally this should be done in primary variables if it was possible. -// To be replaced when all font sizes / boldness can be controlled thanks to the -// themes dialog (one day ?) - -@if o-website-value('headings-font-number') == 2 { - $o-h3-font-size-factor: 2; - $o-h4-font-size-factor: 1.5; - $o-h5-font-size-factor: 1.25; - $o-h6-font-size-factor: 1.125; - - $o-headings-line-height: 1.25; -} @else if o-website-value('headings-font-number') == 3 { - $o-h3-font-size-factor: 2; - $o-h4-font-size-factor: 1.5; - $o-h5-font-size-factor: 1.25; - $o-h6-font-size-factor: 1.125; - - $o-headings-font-weight: 500; - - $o-btn-font-weight: 600; -} @else if o-website-value('headings-font-number') == 4 { - $o-h1-font-size-factor: 4.5; - $o-h2-font-size-factor: 3.75; - $o-h3-font-size-factor: 3; - - $o-headings-line-height: 1.25; - $o-headings-font-weight: 300; -} @else if o-website-value('headings-font-number') == 5 { - $o-h1-font-size-factor: 4.5; - $o-h2-font-size-factor: 3.75; - $o-h3-font-size-factor: 3; - - $o-headings-font-weight: 600; -} @else if o-website-value('headings-font-number') == 6 { - $o-h1-font-size-factor: 4.5; - $o-h2-font-size-factor: 3.75; - $o-h3-font-size-factor: 3; -} @else if o-website-value('headings-font-number') == 10 { - $o-h3-font-size-factor: 2; - $o-h4-font-size-factor: 1.5; - $o-h5-font-size-factor: 1.25; - $o-h6-font-size-factor: 1.125; -} - -@if o-website-value('font-number') == 1 { - $o-theme-font-size-large: 1.5 * $o-theme-font-size-base; - $o-theme-navbar-font-size: $o-theme-font-size-extra-small; - $o-theme-layout-font-size: $o-theme-font-size-extra-small; - - $o-font-weight-bold: 500; - - $o-btn-font-weight: 500; -} @else if o-website-value('font-number') == 4 { - $o-theme-font-size-extra-small: 0.75 * $o-theme-font-size-base; - $o-theme-font-size-large: 1.5 * $o-theme-font-size-base; - $o-theme-navbar-font-size: $o-theme-font-size-extra-small; - $o-theme-layout-font-size: $o-theme-font-size-small; - - $o-font-weight-normal: 400; - $o-font-weight-bold: 600; -} @else if o-website-value('font-number') == 7 { - $o-theme-font-size-large: 1.5 * $o-theme-font-size-base; - $o-theme-navbar-font-size: $o-theme-font-size-extra-small; - $o-theme-layout-font-size: $o-theme-font-size-extra-small; -} @else if o-website-value('font-number') == 8 { - $o-theme-font-size-large: 1.5 * $o-theme-font-size-base; - $o-theme-navbar-font-size: $o-theme-font-size-extra-small; - $o-theme-layout-font-size: $o-theme-font-size-extra-small; - - $o-font-weight-bold: 600; -} @else if o-website-value('font-number') == 9 { - $o-theme-font-size-large: 1.25 * $o-theme-font-size-base; - $o-theme-layout-font-size: $o-theme-font-size-extra-small; -} @else if o-website-value('font-number') == 11 { - $o-theme-font-size-large: 1.5 * $o-theme-font-size-base; - $o-theme-font-size-small: 0.8125 * $o-theme-font-size-base; - $o-theme-font-size-extra-small: 0.75 * $o-theme-font-size-base; - - $o-line-height-base: 1.4; -} - -@if o-website-value('buttons-font-number') == 4 { - $o-btn-font-weight: 400; -} - - -//============================================================================== - -// Components -// -// Define common padding and border radius sizes and more. - -$border-radius: 0 !default; -$border-radius-lg: 0 !default; -$border-radius-sm: 0 !default; - - -// Buttons -// -// For each of Bootstrap's buttons, define text, background, and border color. - -$btn-padding-y: .625rem !default; -$btn-padding-x: 1.375rem !default; -$btn-border-radius: 0 !default; - -$btn-padding-y-sm: .5rem !default; -$btn-padding-x-sm: 1rem !default; -$btn-border-radius-sm: 0 !default; - -$btn-padding-y-lg: .75rem !default; -$btn-padding-x-lg: 1.75rem !default; -$btn-border-radius-lg: 0 !default; - -// Dropdowns -// -// Dropdown menu container and contents. - -$dropdown-border-color: palette-theme-color('primary') !default; -$dropdown-border-width: .0625rem !default; - -// Badges - -$badge-border-radius: 0 !default; - -// Progress bar - -$progress-border-radius: 0 !default; diff --git a/theme_zap/theme_zap/static/src/scss/primary_variables.scss b/theme_zap/theme_zap/static/src/scss/primary_variables.scss deleted file mode 100644 index 645979d..0000000 --- a/theme_zap/theme_zap/static/src/scss/primary_variables.scss +++ /dev/null @@ -1,173 +0,0 @@ -$o-font-weight-normal: 300; -$o-theme-font-size-small: 0.875 * $o-theme-font-size-base; -$o-theme-font-size-extra-small: 0.8125 * $o-theme-font-size-base; -$o-line-height-base: 1.5; -$o-headings-line-height: 1.2; - -//------------------------------------------------------------------------------ -// Colors -//------------------------------------------------------------------------------ - -// Theme colors -$o-theme-color-palettes: ( - ( - 'alpha': darken(#428bca, 6.5%), - 'beta': #5cb85c, - 'gamma': #5bc0de, - 'delta': #f0ad4e, - 'epsilon': #d9534f, - ), - ( - 'alpha': #ED8C2B, - 'beta': #CF4A30, - 'gamma': #911146, - 'delta': #35203B, - 'epsilon': #88A825, - ), - ( - 'alpha': #79BD8F, - 'beta': #00A388, - 'gamma': #046380, - 'delta': #4BB5C1, - 'epsilon': #BEEB9F, - ), - ( - 'alpha': #16c6cc, - 'beta': #D72D3C, - 'gamma': #ff6d3b, - 'delta': #ffb733, - 'epsilon': #ffd55c, - ), - ( - 'alpha': #14212B, - 'beta': #E6E2AF, - 'gamma': #C9DE55, - 'delta': #962D3E, - 'epsilon': #413659, - ), - ( - 'alpha': #ee592f, - 'beta': #59c1b0, - 'gamma': #1fa58d, - 'delta': #f8c63b, - 'epsilon': #dcb038, - ), -); - - -// Grays -$o-gray-color-palettes: ( - ( - 'white': #FFFFFF, - '200': #eceef1, - '600': #c0c6d0, - '700': #949faf, - '800': #535f70, - '900': #1d2127, - 'black': #000000, - ), - ( - 'white': #FFFFFF, - '200': #EFECCA, - '700': #A7A37E, - '900': #1d2127, - 'black': #000000, - ), - ( - 'white': #FFFFFF, - '200': #eeeeee, - '700': #555555, - '900': #222222, - 'black': #000000, - ), - ( - 'white': #FFFFFF, - '200': #eceef1, - '600': #c0c6d0, - '700': #949faf, - '800': #535f70, - '900': #1d2127, - 'black': #000000, - ), - ( - 'white': #FFFFFF, - '200': #BDD4DE, - '700': #348899, - '900': #3F5765, - 'black': #000000, - ), - ( - 'white': #FFFFFF, - '200': #d5deeb, - '700': #a8b3c0, - '900': #323a49, - 'black': #000000, - ), -); - -// Colors -$o-color-palettes: (); -@each $-palette in $o-gray-color-palettes { - $o-color-palettes: append($o-color-palettes, ( - 'menu': map-get($-palette, '200'), - 'footer': map-get($-palette, '200'), - 'text': map-get($-palette, '900'), - )); -} - -//------------------------------------------------------------------------------ -// Website customizations -//------------------------------------------------------------------------------ - -$o-website-values-palettes: ( - ( - 'font-number': 1, - 'headings-font-number': 2, - 'buttons-font-number': 1, - 'navbar-font-number': 1, - ), -); - -//------------------------------------------------------------------------------ -// Fonts -//------------------------------------------------------------------------------ - -$o-theme-fonts: ( - ('Roboto', sans-serif), - ('Roboto Slab', serif), - ('Dosis', sans-serif), - ('Lato', sans-serif), - ('Advent Pro', sans-serif), - ('Oswald', sans-serif), - ('Oxygen', sans-serif), - ('Open Sans', sans-serif), - ('Merriweather', serif), - ('Montserrat Alternates', sans-serif), - ('Nunito', sans-serif), -); -$o-theme-font-urls: ( - 'Roboto:400,400i,700,700i', - 'Roboto+Slab:400,700', - 'Dosis:400,700', - 'Lato:400,400i,700,700i', - 'Advent+Pro:400,700', - 'Oswald:400,700', - 'Oxygen:400,700', - 'Open+Sans:400,400i,700,700i', - 'Merriweather:400,400i,700,700i', - 'Montserrat+Alternates:400,400i,700,700i', - 'Nunito:400,400i,700,700i', -); -$o-theme-font-names: ( - 'Roboto', - 'Roboto Slab', - 'Dosis', - 'Lato', - 'Advent Pro', - 'Oswald', - 'Oxygen', - 'Open Sans', - 'Merriweather', - 'Montserrat Alternates', - 'Nunito', -); diff --git a/theme_zap/theme_zap/static/src/scss/theme.scss b/theme_zap/theme_zap/static/src/scss/theme.scss deleted file mode 100644 index 3dff417..0000000 --- a/theme_zap/theme_zap/static/src/scss/theme.scss +++ /dev/null @@ -1,26 +0,0 @@ - -.btn { - padding: 10px 22px; - - &.btn-sm { - padding: 6px 10px; - } - &.btn-lg { - padding: 12px 28px; - } -} - -#wrapwrap header .navbar .navbar-nav .nav-item > .dropdown-menu .dropdown-item { - padding: 8px 14px; - - &:before { - content: ''; - margin: 0; - } -} - -.o_footer_copyright .js_language_selector { - .dropdown-toggle { - padding: 3px 16px; - } -} diff --git a/theme_zap/theme_zap/views/assets.xml b/theme_zap/theme_zap/views/assets.xml deleted file mode 100644 index beaa8bf..0000000 --- a/theme_zap/theme_zap/views/assets.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - diff --git a/theme_zap/theme_zap/views/images_content.xml b/theme_zap/theme_zap/views/images_content.xml deleted file mode 100644 index 85f1461..0000000 --- a/theme_zap/theme_zap/views/images_content.xml +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - theme_treehouse.bg_img_01 - theme_treehouse.background_img_01 - /theme_zap/static/src/img/backgrounds/01.jpg - - - theme_treehouse.bg_img_02 - theme_treehouse.background_img_02 - /theme_zap/static/src/img/backgrounds/02.jpg - - - theme_treehouse.bg_img_03 - theme_treehouse.background_img_03 - /theme_zap/static/src/img/backgrounds/03.jpg - - - theme_treehouse.bg_img_04 - theme_treehouse.background_img_04 - /theme_zap/static/src/img/backgrounds/04.jpg - - - theme_treehouse.bg_img_05 - theme_treehouse.background_img_05 - /theme_zap/static/src/img/backgrounds/05.jpg - - - theme_treehouse.bg_img_06 - theme_treehouse.background_img_06 - /theme_zap/static/src/img/backgrounds/06.jpg - - - theme_treehouse.bg_img_07 - theme_treehouse.background_img_07 - /theme_zap/static/src/img/backgrounds/07.jpg - - - theme_treehouse.bg_img_08 - theme_treehouse.background_img_08 - /theme_zap/static/src/img/backgrounds/08.jpg - - - theme_treehouse.bg_img_09 - theme_treehouse.background_img_09 - /theme_zap/static/src/img/backgrounds/09.jpg - - - theme_treehouse.bg_img_10 - theme_treehouse.background_img_10 - /theme_zap/static/src/img/backgrounds/10.jpg - - - theme_treehouse.bg_img_11 - theme_treehouse.background_img_11 - /theme_zap/static/src/img/backgrounds/11.jpg - - - theme_treehouse.bg_img_12 - theme_treehouse.background_img_12 - /theme_zap/static/src/img/backgrounds/12.jpg - - - theme_treehouse.bg_img_13 - theme_treehouse.background_img_13 - /theme_zap/static/src/img/backgrounds/13.jpg - - - theme_treehouse.bg_img_14 - theme_treehouse.background_img_14 - /theme_zap/static/src/img/backgrounds/14.jpg - - - theme_treehouse.bg_img_15 - theme_treehouse.background_img_15 - /theme_zap/static/src/img/backgrounds/15.jpg - - - theme_treehouse.bg_img_16 - theme_treehouse.background_img_16 - /theme_zap/static/src/img/backgrounds/16.jpg - - - - - theme_treehouse.bg_pattern_01 - theme_treehouse.background_pattern_01 - /theme_zap/static/src/img/patterns/01.png - - - theme_treehouse.bg_pattern_02 - theme_treehouse.background_pattern_02 - /theme_zap/static/src/img/patterns/02.png - - - theme_treehouse.bg_pattern_03 - theme_treehouse.background_pattern_03 - /theme_zap/static/src/img/patterns/03.png - - - theme_treehouse.bg_pattern_04 - theme_treehouse.background_pattern_04 - /theme_zap/static/src/img/patterns/04.png - - - theme_treehouse.bg_pattern_05 - theme_treehouse.background_pattern_05 - /theme_zap/static/src/img/patterns/05.png - - - theme_treehouse.bg_pattern_06 - theme_treehouse.background_pattern_06 - /theme_zap/static/src/img/patterns/06.png - - - theme_treehouse.bg_pattern_07 - theme_treehouse.background_pattern_07 - /theme_zap/static/src/img/patterns/07.png - - - theme_treehouse.bg_pattern_06 - theme_treehouse.background_pattern_06 - /theme_zap/static/src/img/patterns/08.png - - - theme_treehouse.bg_pattern_07 - theme_treehouse.background_pattern_07 - /theme_zap/static/src/img/patterns/09.png - - - - - theme_common.image_content_04 - theme_common.image_content_04 - /theme_zap/static/src/img/content/text_image.jpg - - - theme_common.image_content_05 - theme_common.image_content_05 - /theme_zap/static/src/img/content/big_picture.gif - - - theme_common.image_content_06 - theme_common.image_content_06 - /theme_zap/static/src/img/content/image_text.jpg - - - theme_common.image_content_09 - theme_common.image_content_09 - /theme_zap/static/src/img/content/profiles_boxes_2.jpg - - - theme_common.image_content_11 - theme_common.image_content_11 - /theme_zap/static/src/img/content/profiles_boxes_3.jpg - - - theme_common.image_content_12 - theme_common.image_content_12 - /theme_zap/static/src/img/content/logo_01.png - - - theme_common.image_content_13 - theme_common.image_content_13 - /theme_zap/static/src/img/content/logo_02.png - - - theme_common.image_content_14 - theme_common.image_content_14 - /theme_zap/static/src/img/content/logo_03.png - - - theme_common.image_content_15 - theme_common.image_content_15 - /theme_zap/static/src/img/content/logo_04.png - - - theme_common.image_content_16 - theme_common.image_content_16 - /theme_zap/static/src/img/content/logo_05.png - - - theme_common.image_content_17 - theme_common.image_content_17 - /theme_zap/static/src/img/content/logo_06.png - - - theme_common.image_content_18 - theme_common.image_content_18 - /theme_zap/static/src/img/content/profiles_boxes_1.jpg - - - theme_common.image_content_19 - theme_common.image_content_19 - /theme_zap/static/src/img/content/three_columns_1.jpg - - - theme_common.image_content_20 - theme_common.image_content_20 - /theme_zap/static/src/img/content/three_columns_2a.jpg - - - theme_common.image_content_21 - theme_common.image_content_21 - /theme_zap/static/src/img/content/three_columns_2b.jpg - - - theme_common.image_content_22 - theme_common.image_content_22 - /theme_zap/static/src/img/content/three_columns_2c.jpg - - - theme_common.image_content_23 - theme_common.image_content_23 - /theme_zap/static/src/img/content/three_columns_3.jpg - - - theme_common.image_content_24 - theme_common.image_content_24 - /theme_zap/static/src/img/backgrounds/01.jpg - - - theme_common.image_content_25 - theme_common.image_content_25 - /theme_zap/static/src/img/backgrounds/04.jpg - - - theme_common.image_content_26 - theme_common.image_content_26 - /theme_zap/static/src/img/backgrounds/11.jpg - - - diff --git a/theme_zap/views/assets.xml b/theme_zap/views/assets.xml new file mode 100644 index 0000000..123b4c0 --- /dev/null +++ b/theme_zap/views/assets.xml @@ -0,0 +1,18 @@ + + + + +