From ab4a016fd788fd0184ccfa1112898163e7d942e6 Mon Sep 17 00:00:00 2001 From: Benoit Socias Date: Tue, 9 Apr 2024 15:10:40 +0200 Subject: [PATCH 1/7] [REF] theme_*: dispatch theme_common mixins into specific themes theme_*: theme_bewise, theme_enark, theme_graphene, theme_treehouse This commit copies the `theme_common` mixins in the few places where they are used, to prepare for the future deletion of `theme_common`. task-3696867 --- .../src/old_snippets/s_big_icons/000.scss | 14 ++++ .../src/old_snippets/s_big_icons/000.scss | 14 ++++ .../static/src/scss/secondary_variables.scss | 16 ++++ .../src/scss/compatibility-saas-11.4.scss | 73 +++++++++++++++++++ 4 files changed, 117 insertions(+) diff --git a/theme_bewise/static/src/old_snippets/s_big_icons/000.scss b/theme_bewise/static/src/old_snippets/s_big_icons/000.scss index db0fc38bde..0bdb15abd0 100644 --- a/theme_bewise/static/src/old_snippets/s_big_icons/000.scss +++ b/theme_bewise/static/src/old_snippets/s_big_icons/000.scss @@ -1,3 +1,17 @@ +// From old theme common. +@mixin o-theme-chd-big-icons-styles($bg-color: o-color('alpha'), $border-color: o-color('alpha'), + $transform: scale(1.1, 1.1), $fa-color: white, $h5-color: white) { + + background-color: $bg-color !important; + border-color: $border-color; + transform: $transform; + .fa { + color: $fa-color !important; + } + h5.o_default_snippet_text { + color: $h5-color !important; + } +} /* Big Icon Circle */ @include o-theme-chd-big-icons-classes(4px solid o-color('alpha'), o-color('alpha')); diff --git a/theme_enark/static/src/old_snippets/s_big_icons/000.scss b/theme_enark/static/src/old_snippets/s_big_icons/000.scss index 3ca7bfbe2c..5db6339784 100644 --- a/theme_enark/static/src/old_snippets/s_big_icons/000.scss +++ b/theme_enark/static/src/old_snippets/s_big_icons/000.scss @@ -1,3 +1,17 @@ +// From old theme common. +@mixin o-theme-chd-big-icons-styles($bg-color: o-color('alpha'), $border-color: o-color('alpha'), + $transform: scale(1.1, 1.1), $fa-color: white, $h5-color: white) { + + background-color: $bg-color !important; + border-color: $border-color; + transform: $transform; + .fa { + color: $fa-color !important; + } + h5.o_default_snippet_text { + color: $h5-color !important; + } +} /* Big Icon Circle */ @include o-theme-chd-big-icons-classes(0, none); diff --git a/theme_graphene/static/src/scss/secondary_variables.scss b/theme_graphene/static/src/scss/secondary_variables.scss index 047cfac99d..462c62c683 100644 --- a/theme_graphene/static/src/scss/secondary_variables.scss +++ b/theme_graphene/static/src/scss/secondary_variables.scss @@ -1,3 +1,19 @@ +// From old theme common. +@function o-theme-common-add-color-variations($from, $to, $variations: ('light': 10%, 'dark': -10%)) { + $color-variations: (); + @each $color-name in ('alpha', 'beta', 'gamma', 'delta', 'epsilon') { + $color: map-get($from, $color-name); + @if $color != null { + @each $variation-name, $amount in $variations { + $color-variations: map-merge($color-variations, ( + '#{$color-name}-#{$variation-name}': adjust-color($color, $lightness: $amount), + )); + } + } + } + @return map-merge($color-variations, $to); +} + // TODO Maybe we should handle light/dark variation in standard in such a way no // extra classes are created (border-alpha-light, btn-epsilon-dark, ...) $-palettes: $o-theme-color-palettes; diff --git a/theme_treehouse/static/src/scss/compatibility-saas-11.4.scss b/theme_treehouse/static/src/scss/compatibility-saas-11.4.scss index d20e635f2e..c6453c43a7 100644 --- a/theme_treehouse/static/src/scss/compatibility-saas-11.4.scss +++ b/theme_treehouse/static/src/scss/compatibility-saas-11.4.scss @@ -1,3 +1,76 @@ +// From old theme common. +@mixin fa-size-generator($base-size) { + .fa { + text-align: center; + display: inline-block; + vertical-align: middle; + } + .fa, + .fa.fa-1x { + width: ($base-size + 20px); + height: ($base-size + 20px); + line-height: ($base-size + 20px); + } + .fa.fa-2x { + width: ($base-size + 40px); + height: ($base-size + 40px); + line-height: ($base-size + 40px); + } + .fa.fa-3x { + width: ($base-size + 60px); + height: ($base-size + 60px); + line-height: ($base-size + 60px); + } + .fa.fa-4x { + width: ($base-size + 80px); + height: ($base-size + 80px); + line-height: ($base-size + 80px); + } + .fa.fa-5x { + width: ($base-size + 100px); + height: ($base-size + 100px); + line-height: ($base-size + 100px); + } +} + +@mixin carousel-control($position, $fa-position, $fa-padding) { + opacity: 1; + text-shadow: none; + color: map-get($grays, '900'); + font-size: inherit; + width: 5%; + .fa { + top: 50%; + background-color: #fff; + &:hover { + color: map-get($theme-colors, 'primary'); + } + @include media-breakpoint-down(md) { + top: auto; + bottom: 0; + } + } + @include fa-size-generator(20px); + &.left { + background-image: none; + left: $position; + .fa { + left: $fa-position; + right: auto; + padding-right: $fa-padding; + } + } + &.right { + background-image: none; + right: $position; + .fa { + right: $fa-position; + left: auto; + padding-left: $fa-padding; + } + } +} + #wrapwrap { // Carousel From 67c2c351d29b134b7c0b99e3ba42868baf072f5e Mon Sep 17 00:00:00 2001 From: Benoit Socias Date: Tue, 9 Apr 2024 15:13:45 +0200 Subject: [PATCH 2/7] [REM] theme_*: remove old snippets This commit removes the old snippets across all themes. task-3696867 --- theme_anelusia/data/ir_asset.xml | 40 -- .../old_snippets/s_banner_parallax/000.scss | 4 - .../s_banner_parallax/000_variables.scss | 20 - .../s_features_carousel/000_variables.scss | 9 - .../old_snippets/s_products_carousel/000.scss | 3 - .../s_products_carousel/000_variables.scss | 1 - theme_artists/data/ir_asset.xml | 16 - .../s_banner_parallax/000_variables.scss | 18 - .../s_products_carousel/000_variables.scss | 8 - theme_avantgarde/data/ir_asset.xml | 16 - .../s_css_slider/000_variables.scss | 22 -- .../s_showcase_slider/000_variables.scss | 23 -- theme_beauty/data/ir_asset.xml | 8 - .../s_banner_parallax/000_variables.scss | 22 -- theme_bewise/data/ir_asset.xml | 32 -- .../src/old_snippets/s_big_icons/000.scss | 95 ----- .../src/old_snippets/s_big_image/000.scss | 6 - .../s_big_image_parallax/000.scss | 5 - .../src/old_snippets/s_icon_box/000.scss | 161 -------- theme_common/__manifest__.py | 3 - theme_common/data/ir_asset.xml | 360 ------------------ .../old_snippets/s_animated_boxes/000.scss | 77 ---- .../old_snippets/s_banner_parallax/000.scss | 55 --- .../s_banner_parallax/000_variables.scss | 11 - .../src/old_snippets/s_big_icons/000.scss | 42 -- .../s_big_icons/000_variables.scss | 23 -- .../src/old_snippets/s_big_image/000.scss | 13 - .../s_big_image_parallax/000.scss | 12 - .../old_snippets/s_clonable_boxes/000.scss | 34 -- .../old_snippets/s_color_blocks_4/000.scss | 25 -- .../old_snippets/s_color_blocks_img/000.scss | 13 - .../src/old_snippets/s_compact_menu/000.scss | 37 -- .../src/old_snippets/s_css_slider/000.js | 120 ------ .../src/old_snippets/s_css_slider/000.scss | 153 -------- .../s_css_slider/000_variables.scss | 10 - .../src/old_snippets/s_discount/000.scss | 99 ----- .../s_discount/000_variables.scss | 8 - .../src/old_snippets/s_event_list/000.scss | 188 --------- .../s_event_list/000_variables.scss | 4 - .../src/old_snippets/s_event_slide/000.scss | 51 --- .../old_snippets/s_features_carousel/000.scss | 69 ---- .../s_features_carousel/000_variables.scss | 7 - .../src/old_snippets/s_full_menu/000.scss | 46 --- .../s_header_text_big_picture/000.scss | 11 - .../src/old_snippets/s_icon_box/000.scss | 12 - .../old_snippets/s_images_carousel/000.scss | 26 -- .../src/old_snippets/s_images_row/000.scss | 15 - .../s_menu_three_columns/000.scss | 39 -- .../src/old_snippets/s_mini_nav_bar/000.js | 29 -- .../src/old_snippets/s_mini_nav_bar/000.scss | 27 -- .../src/old_snippets/s_news_carousel/000.scss | 27 -- .../src/old_snippets/s_pricing/000.scss | 31 -- .../old_snippets/s_products_carousel/000.scss | 91 ----- .../s_products_carousel/000_variables.scss | 6 - .../src/old_snippets/s_profile/000.scss | 34 -- .../src/old_snippets/s_progress/000.scss | 73 ---- .../src/old_snippets/s_separator_nav/000.scss | 24 -- .../old_snippets/s_showcase_image/000.scss | 106 ------ .../s_showcase_image/000_variables.scss | 6 - .../src/old_snippets/s_showcase_slider/000.js | 130 ------- .../old_snippets/s_showcase_slider/000.scss | 241 ------------ .../s_showcase_slider/000_variables.scss | 10 - .../src/old_snippets/s_team_profiles/000.scss | 5 - .../old_snippets/s_text_picture_text/000.scss | 10 - .../src/old_snippets/s_two_columns/000.scss | 5 - theme_common/views/old_snippets/s_column.xml | 6 - .../views/old_snippets/s_page_header.xml | 6 - .../old_snippets/s_three_columns_circle.xml | 6 - theme_enark/data/ir_asset.xml | 32 -- .../src/old_snippets/s_big_icons/000.scss | 75 ---- .../src/old_snippets/s_big_image/000.scss | 6 - .../s_big_image_parallax/000.scss | 5 - .../src/old_snippets/s_icon_box/000.scss | 126 ------ theme_graphene/data/ir_asset.xml | 8 - .../s_showcase_slider/000_variables.scss | 21 - theme_kea/data/ir_asset.xml | 16 - .../s_banner_parallax/000_variables.scss | 8 - .../s_features_carousel/000_variables.scss | 8 - theme_kiddo/data/ir_asset.xml | 8 - .../s_discount/000_variables.scss | 20 - theme_loftspace/data/ir_asset.xml | 24 -- .../s_banner_parallax/000_variables.scss | 53 --- .../s_features_carousel/000_variables.scss | 13 - .../s_products_carousel/000_variables.scss | 4 - theme_monglia/data/ir_asset.xml | 32 -- .../s_banner_parallax/000_variables.scss | 21 - .../s_big_icons/000_variables.scss | 24 -- .../s_features_carousel/000_variables.scss | 13 - .../s_products_carousel/000_variables.scss | 3 - theme_notes/data/ir_asset.xml | 16 - .../s_banner_parallax/000_variables.scss | 9 - .../s_features_carousel/000_variables.scss | 8 - theme_odoo_experts/data/ir_asset.xml | 8 - .../s_banner_parallax/000_variables.scss | 16 - theme_treehouse/data/ir_asset.xml | 16 - .../old_snippets/s_images_carousel/000.scss | 8 - .../src/old_snippets/s_images_row/000.scss | 3 - theme_yes/data/ir_asset.xml | 16 - .../s_banner_parallax/000_variables.scss | 18 - .../s_products_carousel/000_variables.scss | 8 - 100 files changed, 3591 deletions(-) delete mode 100644 theme_anelusia/static/src/old_snippets/s_banner_parallax/000.scss delete mode 100644 theme_anelusia/static/src/old_snippets/s_banner_parallax/000_variables.scss delete mode 100644 theme_anelusia/static/src/old_snippets/s_features_carousel/000_variables.scss delete mode 100644 theme_anelusia/static/src/old_snippets/s_products_carousel/000.scss delete mode 100644 theme_anelusia/static/src/old_snippets/s_products_carousel/000_variables.scss delete mode 100644 theme_artists/static/src/old_snippets/s_banner_parallax/000_variables.scss delete mode 100644 theme_artists/static/src/old_snippets/s_products_carousel/000_variables.scss delete mode 100644 theme_avantgarde/static/src/old_snippets/s_css_slider/000_variables.scss delete mode 100644 theme_avantgarde/static/src/old_snippets/s_showcase_slider/000_variables.scss delete mode 100644 theme_beauty/static/src/old_snippets/s_banner_parallax/000_variables.scss delete mode 100644 theme_bewise/static/src/old_snippets/s_big_icons/000.scss delete mode 100644 theme_bewise/static/src/old_snippets/s_big_image/000.scss delete mode 100644 theme_bewise/static/src/old_snippets/s_big_image_parallax/000.scss delete mode 100644 theme_bewise/static/src/old_snippets/s_icon_box/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_animated_boxes/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_banner_parallax/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_banner_parallax/000_variables.scss delete mode 100644 theme_common/static/src/old_snippets/s_big_icons/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_big_icons/000_variables.scss delete mode 100644 theme_common/static/src/old_snippets/s_big_image/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_big_image_parallax/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_clonable_boxes/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_color_blocks_4/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_color_blocks_img/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_compact_menu/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_css_slider/000.js delete mode 100644 theme_common/static/src/old_snippets/s_css_slider/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_css_slider/000_variables.scss delete mode 100644 theme_common/static/src/old_snippets/s_discount/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_discount/000_variables.scss delete mode 100644 theme_common/static/src/old_snippets/s_event_list/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_event_list/000_variables.scss delete mode 100644 theme_common/static/src/old_snippets/s_event_slide/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_features_carousel/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_features_carousel/000_variables.scss delete mode 100644 theme_common/static/src/old_snippets/s_full_menu/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_header_text_big_picture/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_icon_box/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_images_carousel/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_images_row/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_menu_three_columns/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_mini_nav_bar/000.js delete mode 100644 theme_common/static/src/old_snippets/s_mini_nav_bar/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_news_carousel/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_pricing/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_products_carousel/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_products_carousel/000_variables.scss delete mode 100644 theme_common/static/src/old_snippets/s_profile/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_progress/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_separator_nav/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_showcase_image/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_showcase_image/000_variables.scss delete mode 100644 theme_common/static/src/old_snippets/s_showcase_slider/000.js delete mode 100644 theme_common/static/src/old_snippets/s_showcase_slider/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_showcase_slider/000_variables.scss delete mode 100644 theme_common/static/src/old_snippets/s_team_profiles/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_text_picture_text/000.scss delete mode 100644 theme_common/static/src/old_snippets/s_two_columns/000.scss delete mode 100644 theme_common/views/old_snippets/s_column.xml delete mode 100644 theme_common/views/old_snippets/s_page_header.xml delete mode 100644 theme_common/views/old_snippets/s_three_columns_circle.xml delete mode 100644 theme_enark/static/src/old_snippets/s_big_icons/000.scss delete mode 100644 theme_enark/static/src/old_snippets/s_big_image/000.scss delete mode 100644 theme_enark/static/src/old_snippets/s_big_image_parallax/000.scss delete mode 100644 theme_enark/static/src/old_snippets/s_icon_box/000.scss delete mode 100644 theme_graphene/static/src/old_snippets/s_showcase_slider/000_variables.scss delete mode 100644 theme_kea/static/src/old_snippets/s_banner_parallax/000_variables.scss delete mode 100644 theme_kea/static/src/old_snippets/s_features_carousel/000_variables.scss delete mode 100644 theme_kiddo/static/src/old_snippets/s_discount/000_variables.scss delete mode 100644 theme_loftspace/static/src/old_snippets/s_banner_parallax/000_variables.scss delete mode 100644 theme_loftspace/static/src/old_snippets/s_features_carousel/000_variables.scss delete mode 100644 theme_loftspace/static/src/old_snippets/s_products_carousel/000_variables.scss delete mode 100644 theme_monglia/static/src/old_snippets/s_banner_parallax/000_variables.scss delete mode 100644 theme_monglia/static/src/old_snippets/s_big_icons/000_variables.scss delete mode 100644 theme_monglia/static/src/old_snippets/s_features_carousel/000_variables.scss delete mode 100644 theme_monglia/static/src/old_snippets/s_products_carousel/000_variables.scss delete mode 100644 theme_notes/static/src/old_snippets/s_banner_parallax/000_variables.scss delete mode 100644 theme_notes/static/src/old_snippets/s_features_carousel/000_variables.scss delete mode 100644 theme_odoo_experts/static/src/old_snippets/s_banner_parallax/000_variables.scss delete mode 100644 theme_treehouse/static/src/old_snippets/s_images_carousel/000.scss delete mode 100644 theme_treehouse/static/src/old_snippets/s_images_row/000.scss delete mode 100644 theme_yes/static/src/old_snippets/s_banner_parallax/000_variables.scss delete mode 100644 theme_yes/static/src/old_snippets/s_products_carousel/000_variables.scss diff --git a/theme_anelusia/data/ir_asset.xml b/theme_anelusia/data/ir_asset.xml index 49621ec3ab..20d7e37922 100644 --- a/theme_anelusia/data/ir_asset.xml +++ b/theme_anelusia/data/ir_asset.xml @@ -1,46 +1,6 @@ - - theme_anelusia.s_banner_parallax_000_variables_scss - Banner parallax 000 variables SCSS - web._assets_primary_variables - theme_anelusia/static/src/old_snippets/s_banner_parallax/000_variables.scss - - - - - theme_anelusia.s_banner_parallax_000_scss - Banner parallax 000 SCSS - web.assets_frontend - theme_anelusia/static/src/old_snippets/s_banner_parallax/000.scss - - - - - theme_anelusia.s_features_carousel_000_variables_scss - Features carousel 000 variables SCSS - web._assets_primary_variables - theme_anelusia/static/src/old_snippets/s_features_carousel/000_variables.scss - - - - - theme_anelusia.s_products_carousel_000_variables_scss - Products carousel 000 variables SCSS - web._assets_primary_variables - theme_anelusia/static/src/old_snippets/s_products_carousel/000_variables.scss - - - - - theme_anelusia.s_products_carousel_000_scss - Products carousel 000 SCSS - web.assets_frontend - theme_anelusia/static/src/old_snippets/s_products_carousel/000.scss - - - theme_anelusia.primary_variables_scss Primary variables SCSS 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 deleted file mode 100644 index fb39e4264b..0000000000 --- a/theme_anelusia/static/src/old_snippets/s_banner_parallax/000.scss +++ /dev/null @@ -1,4 +0,0 @@ - -#wrapwrap:not(.o_header_overlay) main #wrap > .s_banner_parallax:first-child::before { - content: none; -} diff --git a/theme_anelusia/static/src/old_snippets/s_banner_parallax/000_variables.scss b/theme_anelusia/static/src/old_snippets/s_banner_parallax/000_variables.scss deleted file mode 100644 index 842c6fe07a..0000000000 --- a/theme_anelusia/static/src/old_snippets/s_banner_parallax/000_variables.scss +++ /dev/null @@ -1,20 +0,0 @@ -$s-banner-parallax-height: 100vh; -$s-banner-parallax-padding: 0px; -$s-banner-parallax-img-height: 350px; -$s-banner-parallax-text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); -@mixin s-banner-parallax-hero-bg-hook { - width: 100%; - text-align: center; - bottom: -30px; - @include media-breakpoint-down(md) { - top: 100px; - } -} -@mixin s-banner-parallax-row-hook { - vertical-align: bottom; -} -@mixin s-banner-parallax-height-hook { - @include media-breakpoint-down(md) { - height: 100vh !important; - } -} diff --git a/theme_anelusia/static/src/old_snippets/s_features_carousel/000_variables.scss b/theme_anelusia/static/src/old_snippets/s_features_carousel/000_variables.scss deleted file mode 100644 index ae15dac520..0000000000 --- a/theme_anelusia/static/src/old_snippets/s_features_carousel/000_variables.scss +++ /dev/null @@ -1,9 +0,0 @@ -$s-features-carousel-border-width: 0; -@mixin s-features-carousel-inner-hook { - .carousel-inner .row { - margin: 0 70px; - @include media-breakpoint-down(md) { - margin: 0; - } - } -} 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 deleted file mode 100644 index 1e8c2b12ba..0000000000 --- a/theme_anelusia/static/src/old_snippets/s_products_carousel/000.scss +++ /dev/null @@ -1,3 +0,0 @@ -#wrapwrap:not(.o_header_overlay) main #wrap > .s_products_carousel:first-child::before { - content: none; -} diff --git a/theme_anelusia/static/src/old_snippets/s_products_carousel/000_variables.scss b/theme_anelusia/static/src/old_snippets/s_products_carousel/000_variables.scss deleted file mode 100644 index 511163fd16..0000000000 --- a/theme_anelusia/static/src/old_snippets/s_products_carousel/000_variables.scss +++ /dev/null @@ -1 +0,0 @@ -$s-products-carousel-carousel-height: 100vh; diff --git a/theme_artists/data/ir_asset.xml b/theme_artists/data/ir_asset.xml index d6839de59e..b27180cacb 100644 --- a/theme_artists/data/ir_asset.xml +++ b/theme_artists/data/ir_asset.xml @@ -1,22 +1,6 @@ - - theme_artists.s_banner_parallax_000_variables_scss - Banner parallax 000 variables SCSS - web._assets_primary_variables - theme_artists/static/src/old_snippets/s_banner_parallax/000_variables.scss - - - - - theme_artists.s_products_carousel_000_variables_scss - Products carousel 000 variables SCSS - web._assets_primary_variables - theme_artists/static/src/old_snippets/s_products_carousel/000_variables.scss - - - theme_artists.primary_variables_scss Primary variables SCSS diff --git a/theme_artists/static/src/old_snippets/s_banner_parallax/000_variables.scss b/theme_artists/static/src/old_snippets/s_banner_parallax/000_variables.scss deleted file mode 100644 index 85b260ab27..0000000000 --- a/theme_artists/static/src/old_snippets/s_banner_parallax/000_variables.scss +++ /dev/null @@ -1,18 +0,0 @@ -$s-banner-parallax-text-color: white; -$s-banner-parallax-height: 600px; - -@mixin s-banner-parallax-row-hook { - .hero-bg:before { - border-top: 0px solid rgba(0, 0, 0, 0); - } - .hero-bg:after { - border-top: 0px solid rgba(0, 0, 0, 0); - } -} - -@mixin s-banner-parallax-hero-bg-hook { - margin-bottom: 100px; - @media screen and (max-width: 640px) { - margin-top: 50px; - } -} diff --git a/theme_artists/static/src/old_snippets/s_products_carousel/000_variables.scss b/theme_artists/static/src/old_snippets/s_products_carousel/000_variables.scss deleted file mode 100644 index 3b58bd8947..0000000000 --- a/theme_artists/static/src/old_snippets/s_products_carousel/000_variables.scss +++ /dev/null @@ -1,8 +0,0 @@ -$s-products-carousel-carousel-control-color: rgba(0, 0, 0, 0); -$s-products-carousel-carousel-height: 100vh; -$s-products-carousel-indicators-position: 120px; -$s-products-carousel-indicators-visible: visible; - -@mixin s-products-carousel-hook { - display: none; -} diff --git a/theme_avantgarde/data/ir_asset.xml b/theme_avantgarde/data/ir_asset.xml index d02adfda6e..bdeb4f45fd 100644 --- a/theme_avantgarde/data/ir_asset.xml +++ b/theme_avantgarde/data/ir_asset.xml @@ -1,22 +1,6 @@ - - theme_avantgarde.s_showcase_slider_000_variables_scss - Showcase slider 000 variables SCSS - web._assets_primary_variables - theme_avantgarde/static/src/old_snippets/s_showcase_slider/000_variables.scss - - - - - theme_avantgarde.s_css_slider_000_variables_scss - Css slider 000 variables SCSS - web._assets_primary_variables - theme_avantgarde/static/src/old_snippets/s_css_slider/000_variables.scss - - - theme_avantgarde.primary_variables_scss Primary variables SCSS diff --git a/theme_avantgarde/static/src/old_snippets/s_css_slider/000_variables.scss b/theme_avantgarde/static/src/old_snippets/s_css_slider/000_variables.scss deleted file mode 100644 index 7197eb239f..0000000000 --- a/theme_avantgarde/static/src/old_snippets/s_css_slider/000_variables.scss +++ /dev/null @@ -1,22 +0,0 @@ -$s-css-slider-info-bg-color: "var(--body)"; -$s-css-slider-info-text-color: "var(--text)"; - -@mixin s-css-slider-navigation-hook { - span { - text-indent: 100%; - background: url("../img/ui/s_showcase_slider-arrow.svg") no-repeat center center; - &:before { - content: none; - } - } - &:first-of-type { - span { - transform: rotate(180deg); - } - } -} - -@mixin s-css-slider-close-hook { - background: url("../img/ui/s_showcase_slider-close.svg") no-repeat center center; - text-indent: 100%; -} diff --git a/theme_avantgarde/static/src/old_snippets/s_showcase_slider/000_variables.scss b/theme_avantgarde/static/src/old_snippets/s_showcase_slider/000_variables.scss deleted file mode 100644 index e9d03680e4..0000000000 --- a/theme_avantgarde/static/src/old_snippets/s_showcase_slider/000_variables.scss +++ /dev/null @@ -1,23 +0,0 @@ -@mixin s-showcase-slider-navigation-hook { - span { - text-indent:100%; - background:url("../img/ui/s_showcase_slider-arrow.svg") no-repeat center center; - &:before{ content: none;} - } - &:first-of-type { - span { - transform: rotate(180deg); - } - } -} - -@mixin s-showcase-slider-close-hook { - background: url("../img/ui/s_showcase_slider-close.svg") no-repeat center center; - text-indent: 100%; -} - -@mixin s-showcase-slider-slider-hover-hook { - &:after{ - background: rgba(0, 0, 0, 0.4) url("../img/ui/s_showcase_slider-zoom.svg") no-repeat center center; - } -} diff --git a/theme_beauty/data/ir_asset.xml b/theme_beauty/data/ir_asset.xml index eb8e55863a..2398839af2 100644 --- a/theme_beauty/data/ir_asset.xml +++ b/theme_beauty/data/ir_asset.xml @@ -1,14 +1,6 @@ - - theme_beauty.s_banner_parallax_000_variables_scss - Banner parallax 000 variables SCSS - web._assets_primary_variables - theme_beauty/static/src/old_snippets/s_banner_parallax/000_variables.scss - - - theme_beauty.primary_variables_scss Primary variables SCSS diff --git a/theme_beauty/static/src/old_snippets/s_banner_parallax/000_variables.scss b/theme_beauty/static/src/old_snippets/s_banner_parallax/000_variables.scss deleted file mode 100644 index a180f2769e..0000000000 --- a/theme_beauty/static/src/old_snippets/s_banner_parallax/000_variables.scss +++ /dev/null @@ -1,22 +0,0 @@ -$s-banner-parallax-text-color: white; -@mixin s-banner-parallax-row-hook { - .hero-bg:before { - border-top: 0px solid rgba(0, 0, 0, 0); - } - .hero-bg:after { - border-top: 0px solid rgba(0, 0, 0, 0); - } -} -@mixin s-banner-parallax-hero-bg-hook { - margin-top: 200px; - width: auto; - float: right; - margin-right: 50px; - text-align: right; - @media screen and (max-width: 640px) { // FIXME - margin-top: 50px; - text-align: center; - width: 100%; - float: none; - } -} diff --git a/theme_bewise/data/ir_asset.xml b/theme_bewise/data/ir_asset.xml index 8136fb0323..3d4194bb29 100644 --- a/theme_bewise/data/ir_asset.xml +++ b/theme_bewise/data/ir_asset.xml @@ -1,38 +1,6 @@ - - theme_bewise.s_big_image_parallax_000_scss - Big image parallax 000 SCSS - web.assets_frontend - theme_bewise/static/src/old_snippets/s_big_image_parallax/000.scss - - - - - theme_bewise.s_big_image_000_scss - Big image 000 SCSS - web.assets_frontend - theme_bewise/static/src/old_snippets/s_big_image/000.scss - - - - - theme_bewise.s_icon_box_000_scss - Icon box 000 SCSS - web.assets_frontend - theme_bewise/static/src/old_snippets/s_icon_box/000.scss - - - - - theme_bewise.s_big_icons_000_scss - Big icons 000 SCSS - web.assets_frontend - theme_bewise/static/src/old_snippets/s_big_icons/000.scss - - - theme_bewise.primary_variables_scss Primary variables SCSS diff --git a/theme_bewise/static/src/old_snippets/s_big_icons/000.scss b/theme_bewise/static/src/old_snippets/s_big_icons/000.scss deleted file mode 100644 index 0bdb15abd0..0000000000 --- a/theme_bewise/static/src/old_snippets/s_big_icons/000.scss +++ /dev/null @@ -1,95 +0,0 @@ -// From old theme common. -@mixin o-theme-chd-big-icons-styles($bg-color: o-color('alpha'), $border-color: o-color('alpha'), - $transform: scale(1.1, 1.1), $fa-color: white, $h5-color: white) { - - background-color: $bg-color !important; - border-color: $border-color; - transform: $transform; - .fa { - color: $fa-color !important; - } - h5.o_default_snippet_text { - color: $h5-color !important; - } -} - -/* Big Icon Circle */ -@include o-theme-chd-big-icons-classes(4px solid o-color('alpha'), o-color('alpha')); - -/* Big Icon Square */ - -.s_big_icon_square_box { - .fa { - color: o-color('alpha') !important; - } -} - -.s_big_icon_square_icon { - text-align:center!important; - color:#fff; - transition: all 0.3s ease-in-out; - h5 { - margin-top: 48px; - } -} - -.s_big_icon_square_box:hover .s_big_icon_square_icon { - transition: all 0.3s ease-in-out; - -} - -.bg-epsilon .s_big_icons_icon, .bg-gamma .s_big_icons_icon { - border: 6px solid; - @include o-theme-chd-big-icons-styles(rgba(0, 0, 0, 0), white); -} - -.bg-epsilon .s_big_icons_box:hover .s_big_icons_icon, .bg-gamma .s_big_icons_box:hover .s_big_icons_icon { - @include o-theme-chd-big-icons-styles($bg-color: white, $fa-color: o-color('alpha')); -} - -/* s_big_icon_square */ - -.bg-epsilon .s_big_icon_square_icon, .bg-gamma .s_big_icon_square_icon { - background-color: rgba(0, 0, 0, 0) !important; - border: 6px solid white !important; - h5 { - color: white !important; - } - .fa { - color: white !important; - } -} - -.bg-epsilon .s_big_icon_square_box:hover .s_big_icon_square_icon, .bg-gamma .s_big_icon_square_box:hover .s_big_icon_square_icon { - background-color: white !important; - border-color: o-color('alpha'); - transform: scale(1.1,1.1); - .fa { - color: o-color('alpha') !important; - } - h5 { - color: white !important; - } -} - -/* s_big_icon_square */ - -.s_big_icon_square_icon { - background-color: rgba(0, 0, 0, 0) !important; - border: 6px solid o-color('alpha'); - h5 { - color: o-color('alpha'); - } -} - -.s_big_icon_square_box:hover .s_big_icon_square_icon { - background-color: o-color('alpha') !important; - border-color: o-color('alpha'); - transform: scale(1.1,1.1); - .fa { - color: white !important; - } - h5 { - color: o-color('alpha'); - } -} diff --git a/theme_bewise/static/src/old_snippets/s_big_image/000.scss b/theme_bewise/static/src/old_snippets/s_big_image/000.scss deleted file mode 100644 index cbd8b41c4f..0000000000 --- a/theme_bewise/static/src/old_snippets/s_big_image/000.scss +++ /dev/null @@ -1,6 +0,0 @@ -.s_big_image .s_text_highlight { - padding: 12px 8px 18px; - border-radius: 0px; - border: 3px solid o-color('alpha'); - background: rgba(black, 0.35) -} diff --git a/theme_bewise/static/src/old_snippets/s_big_image_parallax/000.scss b/theme_bewise/static/src/old_snippets/s_big_image_parallax/000.scss deleted file mode 100644 index 0771305f10..0000000000 --- a/theme_bewise/static/src/old_snippets/s_big_image_parallax/000.scss +++ /dev/null @@ -1,5 +0,0 @@ -.s_big_image_parallax { - min-height: 600px; - padding-top: 20px; - background-size: cover; -} diff --git a/theme_bewise/static/src/old_snippets/s_icon_box/000.scss b/theme_bewise/static/src/old_snippets/s_icon_box/000.scss deleted file mode 100644 index 2c927ac3d1..0000000000 --- a/theme_bewise/static/src/old_snippets/s_icon_box/000.scss +++ /dev/null @@ -1,161 +0,0 @@ - -/* Icon Box Circle */ - -.s_icon_box_circle_box { - float: left; - - .fa { - color: o-color('alpha') !important; - font-size: 28px; - } -} - -.s_icon_box_circle_icon { - width:60px; - height:60px; - margin-right: 15px; - text-align:center!important; - color:#fff; - padding: 20px 0; - transition: all 0.3s ease-in-out; - background-color: rgba(0, 0, 0, 0) !important; - border: 2px solid o-color('alpha'); - border-radius: 50px; -} - -.s_icon_box_circle_box:hover .s_icon_box_circle_icon { - transform: scale(1.1,1.1); - transition: all 0.3s ease-in-out; - border-color: o-color('gamma'); - .fa { - color: o-color('gamma') !important; - } -} - -/* Icon Box Square */ - -.s_icon_box_square_box { - float: left; - - .fa { - color: o-color('alpha') !important; - } -} - -.s_icon_box_square_icon { - width:60px; - height:55px; - margin-right: 15px; - text-align:center!important; - color:#fff; - padding: 18px 0; - transition: all 0.3s ease-in-out; - background-color: rgba(0, 0, 0, 0) !important; - border: 2px solid o-color('alpha'); -} - -.s_icon_box_square_box:hover .s_icon_box_square_icon { - transform: scale(1.1,1.1); - transition: all 0.3s ease-in-out; - border-color: o-color('gamma'); - .fa { - color: o-color('gamma') !important; - } -} - -/* s_icon_box */ - -.s_icon_box_box:hover .s_icon_box_icon .fa, .s_icon_box_box:hover .s_icon_box_content h4 { - transition: all 0.3s ease-in-out; - color: o-color('alpha'); -} - -/* s_icon_box_square */ - -.s_icon_box_square_box:hover .s_icon_box_square_icon { - border-color: o-color('alpha'); - background-color: o-color('alpha') !important; - .fa { - color: white !important; - } -} - -.s_icon_box_square_box:hover h4 { - color: o-color('alpha') !important; -} - -/* s_icon_box_circle */ - -.s_icon_box_circle_box:hover .s_icon_box_circle_icon { - border-color: o-color('alpha'); - background-color: o-color('alpha') !important; - .fa { - color: white !important; - } -} - -.s_icon_box_circle_box:hover h4 { - color: o-color('alpha') !important; -} - -/* s_icon_box */ - -.bg-epsilon .s_icon_box_box:hover .s_icon_box_icon .fa, .bg-gamma .s_icon_box_box:hover .s_icon_box_icon .fa { - transition: all 0.3s ease-in-out; - color: o-color('delta') !important; -} - -.bg-epsilon .s_icon_box_box:hover .s_icon_box_content h4, .bg-gamma .s_icon_box_box:hover .s_icon_box_content h4 { - transition: all 0.3s ease-in-out; - color: o-color('delta') !important; -} - -/* s_icon_box_square */ - -.bg-epsilon .s_icon_box_square_icon, .bg-gamma .s_icon_box_square_icon { - border-color: white !important; - background-color: o-color('alpha') !important; - .fa { - color: white !important; - } - h4 { - color: white !important; - } -} - -.bg-epsilon .s_icon_box_square_box:hover .s_icon_box_square_icon, .bg-gamma .s_icon_box_square_box:hover .s_icon_box_square_icon { - border-color: white !important; - background-color: white !important; - .fa { - color: o-color('alpha') !important; - } -} - -.bg-epsilon .s_icon_box_square_box:hover h4, .bg-gamma .s_icon_box_square_box:hover h4 { - color: white !important; -} - -/* s_icon_box_circle */ - -.bg-epsilon .s_icon_box_circle_icon { - border-color: white !important; - background-color: o-color('alpha') !important; - .fa { - color: white !important; - } - h4 { - color: white !important; - } -} - -.bg-epsilon .s_icon_box_circle_box:hover .s_icon_box_circle_icon, .bg-gamma .s_icon_box_circle_box:hover .s_icon_box_circle_icon { - border-color: white !important; - background-color: white !important; - .fa { - color: o-color('alpha') !important; - } -} - -.bg-epsilon .s_icon_box_circle_box:hover h4, .bg-gamma .s_icon_box_circle_box:hover h4 { - color: white !important; -} diff --git a/theme_common/__manifest__.py b/theme_common/__manifest__.py index 119c46a4fb..b2d57cc18f 100644 --- a/theme_common/__manifest__.py +++ b/theme_common/__manifest__.py @@ -7,9 +7,6 @@ 'depends': ['website'], 'data': [ 'data/data.xml', - 'views/old_snippets/s_column.xml', - 'views/old_snippets/s_page_header.xml', - 'views/old_snippets/s_three_columns_circle.xml', ], 'license': 'LGPL-3', } diff --git a/theme_common/data/ir_asset.xml b/theme_common/data/ir_asset.xml index db78cd7d7e..369618eee7 100644 --- a/theme_common/data/ir_asset.xml +++ b/theme_common/data/ir_asset.xml @@ -1,366 +1,6 @@ - - theme_common.s_clonable_boxes_000_scss - Clonable boxes 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_clonable_boxes/000.scss - - - - - theme_common.s_banner_parallax_000_variables_scss - Banner parallax 000 variables SCSS - web._assets_primary_variables - theme_common/static/src/old_snippets/s_banner_parallax/000_variables.scss - - - - - theme_common.s_banner_parallax_000_scss - Banner parallax 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_banner_parallax/000.scss - - - - - theme_common.s_features_carousel_000_variables_scss - Features carousel 000 variables SCSS - web._assets_primary_variables - theme_common/static/src/old_snippets/s_features_carousel/000_variables.scss - - - - - theme_common.s_features_carousel_000_scss - Features carousel 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_features_carousel/000.scss - - - - - theme_common.s_text_picture_text_000_scss - Text picture text 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_text_picture_text/000.scss - - - - - theme_common.s_color_blocks_4_000_scss - Color blocks 4 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_color_blocks_4/000.scss - - - - - theme_common.s_products_carousel_000_variables_scss - Products carousel 000 variables SCSS - web._assets_primary_variables - theme_common/static/src/old_snippets/s_products_carousel/000_variables.scss - - - - - theme_common.s_products_carousel_000_scss - Products carousel 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_products_carousel/000.scss - - - - - theme_common.s_two_columns_000_scss - Two columns 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_two_columns/000.scss - - - - - theme_common.s_big_image_parallax_000_scss - Big image parallax 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_big_image_parallax/000.scss - - - - - theme_common.s_news_carousel_000_scss - News carousel 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_news_carousel/000.scss - - - - - theme_common.s_event_list_000_variables_scss - Event list 000 variables SCSS - web._assets_primary_variables - theme_common/static/src/old_snippets/s_event_list/000_variables.scss - - - - - theme_common.s_event_list_000_scss - Event list 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_event_list/000.scss - - - - - theme_common.s_images_row_000_scss - Images row 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_images_row/000.scss - - - - - theme_common.s_profile_000_scss - Profile 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_profile/000.scss - - - - - theme_common.s_showcase_slider_000_variables_scss - Showcase slider 000 variables SCSS - web._assets_primary_variables - theme_common/static/src/old_snippets/s_showcase_slider/000_variables.scss - - - - - theme_common.s_showcase_slider_000_scss - Showcase slider 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_showcase_slider/000.scss - - - - - theme_common.s_showcase_slider_000_js - Showcase slider 000 JS - web.assets_frontend - theme_common/static/src/old_snippets/s_showcase_slider/000.js - - - - - theme_common.s_full_menu_000_scss - Full menu 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_full_menu/000.scss - - - - - theme_common.s_team_profiles_000_scss - Team profiles 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_team_profiles/000.scss - - - - - theme_common.s_separator_nav_000_scss - Separator nav 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_separator_nav/000.scss - - - - - theme_common.s_compact_menu_000_scss - Compact menu 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_compact_menu/000.scss - - - - - theme_common.s_big_image_000_scss - Big image 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_big_image/000.scss - - - - - theme_common.s_menu_three_columns_000_scss - Menu three columns 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_menu_three_columns/000.scss - - - - - theme_common.s_event_slide_000_scss - Event slide 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_event_slide/000.scss - - - - - theme_common.s_animated_boxes_000_scss - Animated boxes 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_animated_boxes/000.scss - - - - - theme_common.s_animated_boxes_000_js - Animated boxes 000 JS - web.assets_frontend - theme_common/static/src/old_snippets/s_animated_boxes/000.js - - - - - theme_common.s_css_slider_000_variables_scss - Css slider 000 variables SCSS - web._assets_primary_variables - theme_common/static/src/old_snippets/s_css_slider/000_variables.scss - - - - - theme_common.s_css_slider_000_scss - Css slider 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_css_slider/000.scss - - - - - theme_common.s_css_slider_000_js - Css slider 000 JS - web.assets_frontend - theme_common/static/src/old_snippets/s_css_slider/000.js - - - - - theme_common.s_color_blocks_img_000_scss - Color blocks img 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_color_blocks_img/000.scss - - - - - theme_common.s_showcase_image_000_variables_scss - Showcase image 000 variables SCSS - web._assets_primary_variables - theme_common/static/src/old_snippets/s_showcase_image/000_variables.scss - - - - - theme_common.s_showcase_image_000_scss - Showcase image 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_showcase_image/000.scss - - - - - theme_common.s_pricing_000_scss - Pricing 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_pricing/000.scss - - - - - theme_common.s_header_text_big_picture_000_scss - Header text big picture 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_header_text_big_picture/000.scss - - - - - theme_common.s_progress_000_scss - Progress 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_progress/000.scss - - - - - theme_common.s_icon_box_000_scss - Icon box 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_icon_box/000.scss - - - - - theme_common.s_big_icons_000_variables_scss - Big icons 000 variables SCSS - web._assets_primary_variables - theme_common/static/src/old_snippets/s_big_icons/000_variables.scss - - - - - theme_common.s_big_icons_000_scss - Big icons 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_big_icons/000.scss - - - - - theme_common.s_mini_nav_bar_000_scss - Mini nav bar 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_mini_nav_bar/000.scss - - - - - theme_common.s_mini_nav_bar_000_js - Mini nav bar 000 JS - web.assets_frontend - theme_common/static/src/old_snippets/s_mini_nav_bar/000.js - - - - - theme_common.s_discount_000_variables_scss - Discount 000 variables SCSS - web._assets_primary_variables - theme_common/static/src/old_snippets/s_discount/000_variables.scss - - - - - theme_common.s_discount_000_scss - Discount 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_discount/000.scss - - - - - theme_common.s_images_carousel_000_scss - Images carousel 000 SCSS - web.assets_frontend - theme_common/static/src/old_snippets/s_images_carousel/000.scss - - - theme_common.option_colors_02_variables_scss Option colors 02 variables SCSS diff --git a/theme_common/static/src/old_snippets/s_animated_boxes/000.scss b/theme_common/static/src/old_snippets/s_animated_boxes/000.scss deleted file mode 100644 index e2a151edd3..0000000000 --- a/theme_common/static/src/old_snippets/s_animated_boxes/000.scss +++ /dev/null @@ -1,77 +0,0 @@ - -#wrapwrap .s_animated_boxes{ - margin: 0; - width: 100%; - overflow: hidden; - - .item { - height: 200px; - background-size: cover; - overflow: hidden; - text-align: center; - - > * { - z-index: 0; - position: relative; - padding-top: $grid-gutter-width/2; - padding-bottom: $grid-gutter-width/2; - } - .slide { - z-index: 1; - position: absolute; - width: 100%; - height: 100%; - background-size: cover; - left: 0; - top: 0; - opacity: 0; - padding: $grid-gutter-width/2; - transition: opacity 400ms; - - &.visible{ - opacity: 1; - } - } - &:hover .slide{ - opacity: 1; - transition: opacity 100ms; - } - - @include media-breakpoint-down(md) { - height: auto; - min-height: 200px; - - &::before { - content: ""; - display: inline-block; - height: 100%; - min-height: 200px; - vertical-align: middle; - } - - .v-align { - display: inline-block; - width: 98%; - vertical-align: middle; - - top: auto; - transform: translate(0, 0); - } - } - } -} - -// Used in editing mode -body.editor_enable .s_animated_boxes { - .item:hover .slide { - display: none; - opacity: 0; - } - - .item.showSlide .slide, .item.showSlide:hover .slide { - display: block; - opacity: 1; - transform: translateY(0%)!important; - transform: translateX(0%)!important; - } -} diff --git a/theme_common/static/src/old_snippets/s_banner_parallax/000.scss b/theme_common/static/src/old_snippets/s_banner_parallax/000.scss deleted file mode 100644 index 34399e3931..0000000000 --- a/theme_common/static/src/old_snippets/s_banner_parallax/000.scss +++ /dev/null @@ -1,55 +0,0 @@ -$s-banner-parallax-text-color: o-color('alpha') !default; - -#wrapwrap .s_banner_parallax { - margin-bottom: 0px !important; - - @include media-breakpoint-down(md) { - background-position: $s-banner-parallax-bg-position; - } - @include s-banner-parallax-height-hook; - - .container-fluid { - - .row { - height: $s-banner-parallax-height; - @include s-banner-parallax-row-hook; - - .hero-bg { - padding-left: $s-banner-parallax-padding; - color: $s-banner-parallax-text-color; - @include s-banner-parallax-hero-bg-hook; - - @include media-breakpoint-down(md) { - text-align: center; - padding-left: 15px; - } - - h1 { - font-size: $s-banner-parallax-h1-size; - text-shadow: $s-banner-parallax-text-shadow; - - @media screen and (max-width: 360px) { // FIXME - font-size: 50px; - } - } - - h2 { - font-size: 40px; - text-shadow: $s-banner-parallax-text-shadow; - - @media screen and (max-width: 360px) { // FIXME - font-size: 30px; - } - } - - img { - max-height: $s-banner-parallax-img-height; - - @media screen and (max-width: 360px) { // FIXME - max-height: 200px; - } - } - } - } - } -} diff --git a/theme_common/static/src/old_snippets/s_banner_parallax/000_variables.scss b/theme_common/static/src/old_snippets/s_banner_parallax/000_variables.scss deleted file mode 100644 index 15159898f7..0000000000 --- a/theme_common/static/src/old_snippets/s_banner_parallax/000_variables.scss +++ /dev/null @@ -1,11 +0,0 @@ -$s-banner-parallax-height: 500px; -$s-banner-parallax-padding: 130px; -$s-banner-parallax-img-height: 200px; -$s-banner-parallax-text-shadow: 1px 1px 11px rgba(0, 0, 0, 0.86); -$s-banner-parallax-text-color: null; -$s-banner-parallax-bg-position: center !important; -$s-banner-parallax-h1-size: 80px; - -@mixin s-banner-parallax-row-hook {} -@mixin s-banner-parallax-height-hook {} -@mixin s-banner-parallax-hero-bg-hook {} diff --git a/theme_common/static/src/old_snippets/s_big_icons/000.scss b/theme_common/static/src/old_snippets/s_big_icons/000.scss deleted file mode 100644 index b1e5fc4f22..0000000000 --- a/theme_common/static/src/old_snippets/s_big_icons/000.scss +++ /dev/null @@ -1,42 +0,0 @@ -.s_big_icons { - text-align: center; - @include s-big-icon-circle-height-hook; - //fix -- without this in mobile view the circles go to the top and so they hide the h2 and h3 above it. - .col-lg-12 { - float: none; - } -} - -.s_big_icons_box { - text-align: center; - width: 150px; - margin: 0 auto; - .fa { - color: #fff; - font-size: 40px; - @include s-big-icon-circle-fa-hook; - } -} - -.s_big_icons_icon { - width: $s-big-icon-circle-icon-size; - height: $s-big-icon-circle-icon-size; - text-align: center; - padding: 40px 0; - transition: all 0.3s ease-in-out; - border-radius: 80px; - margin: 0px auto; - h5 { - margin-top: 48px; - } -} - -.s_big_icons_box:hover .s_big_icons_icon { - transition: all 0.3s ease-in-out; - background-color: o-color('gamma'); -} - -.s_big_icons_box:hover .s_big_icons_content h4 { - transition: all 0.3s ease-in-out; - color: o-color('gamma'); -} diff --git a/theme_common/static/src/old_snippets/s_big_icons/000_variables.scss b/theme_common/static/src/old_snippets/s_big_icons/000_variables.scss deleted file mode 100644 index 828f6a476f..0000000000 --- a/theme_common/static/src/old_snippets/s_big_icons/000_variables.scss +++ /dev/null @@ -1,23 +0,0 @@ -$s-big-icon-circle-icon-size: 120px; - -@mixin s-big-icon-circle-height-hook {} -@mixin s-big-icon-circle-fa-hook {} - -@mixin o-theme-chd-big-icons-classes($border, $font-color) { - .s_big_icons_box { - .s_big_icons_icon { - border: $border; - color: #fff; - .fa { - color: o-color('alpha') !important; - } - h5.o_default_snippet_text { - color: $font-color; - margin-top: 20px; - } - } - &:hover .s_big_icons_icon { - @include o-theme-chd-big-icons-styles($h5-color: o-color('alpha')); - } - } -} diff --git a/theme_common/static/src/old_snippets/s_big_image/000.scss b/theme_common/static/src/old_snippets/s_big_image/000.scss deleted file mode 100644 index 01244e8118..0000000000 --- a/theme_common/static/src/old_snippets/s_big_image/000.scss +++ /dev/null @@ -1,13 +0,0 @@ -#wrapwrap .s_big_image { - height: 760px; - background-size: cover; -} - -#wrapwrap .s_big_image_content { - z-index: 999; - h1 { - color: white; - font-size: 60px; - - } -} diff --git a/theme_common/static/src/old_snippets/s_big_image_parallax/000.scss b/theme_common/static/src/old_snippets/s_big_image_parallax/000.scss deleted file mode 100644 index f97c5c344c..0000000000 --- a/theme_common/static/src/old_snippets/s_big_image_parallax/000.scss +++ /dev/null @@ -1,12 +0,0 @@ -#wrapwrap .s_big_image_parallax { - min-height: 780px; - padding-top: 80px; -} - -#wrapwrap .s_big_image_parallax_content { - z-index: 999; - h1 { - color: white; - font-size: 60px; - } -} diff --git a/theme_common/static/src/old_snippets/s_clonable_boxes/000.scss b/theme_common/static/src/old_snippets/s_clonable_boxes/000.scss deleted file mode 100644 index fa9005f1ec..0000000000 --- a/theme_common/static/src/old_snippets/s_clonable_boxes/000.scss +++ /dev/null @@ -1,34 +0,0 @@ - -#wrapwrap .s_clonable_boxes { - width: 100%; - height: auto!important; // Force height to avoid overlaps - - .row { - display: flex; - flex-flow: row wrap; - - > div { - display: flex; - flex-flow: column wrap; - justify-content: center; - text-align: center; - padding-top: $grid-gutter-width/2; - padding-bottom: $grid-gutter-width/2; - - @include media-breakpoint-down(lg) { - width: 100%; - } - } - } -} - -html[data-no-flex] .s_clonable_boxes { - width: 100%; - overflow: hidden; - - .item { - height: 200px; - overflow: hidden; - text-align: center; - } -} diff --git a/theme_common/static/src/old_snippets/s_color_blocks_4/000.scss b/theme_common/static/src/old_snippets/s_color_blocks_4/000.scss deleted file mode 100644 index b5dec02c5e..0000000000 --- a/theme_common/static/src/old_snippets/s_color_blocks_4/000.scss +++ /dev/null @@ -1,25 +0,0 @@ -#wrapwrap .s_color_blocks_4 { - .row { - display: flex; - flex-flow: row wrap; - - // Fix for safari browser as it 'supports' flex but not with the right - // behavior - &::before, &::after { - width: 0; - } - } - [class*="col-lg-"] { - padding: 64px 20px; - } - @include media-breakpoint-down(lg) { - [class*="col-lg-"] { - flex: 1 1 100%; - } - } - - img { - max-width: 100%; - height: auto; - } -} diff --git a/theme_common/static/src/old_snippets/s_color_blocks_img/000.scss b/theme_common/static/src/old_snippets/s_color_blocks_img/000.scss deleted file mode 100644 index 011f7e4553..0000000000 --- a/theme_common/static/src/old_snippets/s_color_blocks_img/000.scss +++ /dev/null @@ -1,13 +0,0 @@ - -#wrapwrap .s_color_blocks_img_title { - margin-bottom: 0px; - h5 { - padding-top: 32px; - } -} - -#wrapwrap .s_color_blocks_img_img img { - max-width: 100%; - height: auto; - -} diff --git a/theme_common/static/src/old_snippets/s_compact_menu/000.scss b/theme_common/static/src/old_snippets/s_compact_menu/000.scss deleted file mode 100644 index 1e8a23ccee..0000000000 --- a/theme_common/static/src/old_snippets/s_compact_menu/000.scss +++ /dev/null @@ -1,37 +0,0 @@ -#wrapwrap .s_compact_menu { - overflow: hidden; - - .container-fluid .menu-container { - overflow: hidden; - - > div { - &.s_compact_menu_row_title { - h4 { - font-size: 20px; - } - .fa { - margin: 20px 0px; - } - } - - > .row { - min-height: 150px; - height: auto; - border-left: 3px solid map-get($grays, '200'); - - > .menublock { - margin: 0 0 0 20px; - padding: 0 20px 0 0; - border-bottom: 1px solid map-get($grays, '200'); - float: left; - h4 { - font-weight: bold; - } - span { - list-style: none; - } - } - } - } - } -} diff --git a/theme_common/static/src/old_snippets/s_css_slider/000.js b/theme_common/static/src/old_snippets/s_css_slider/000.js deleted file mode 100644 index 7821567dc5..0000000000 --- a/theme_common/static/src/old_snippets/s_css_slider/000.js +++ /dev/null @@ -1,120 +0,0 @@ -/** @odoo-module **/ - -import publicWidget from "@web/legacy/js/public/public_widget"; - -publicWidget.registry.s_css_slider = publicWidget.Widget.extend({ - selector: ".s_css_slider", - disabledInEditableMode: false, - - start: function () { - var self = this; - var $container = self.$el; - $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_common/static/src/old_snippets/s_css_slider/000.scss b/theme_common/static/src/old_snippets/s_css_slider/000.scss deleted file mode 100644 index 3fdc00fcbc..0000000000 --- a/theme_common/static/src/old_snippets/s_css_slider/000.scss +++ /dev/null @@ -1,153 +0,0 @@ - -#wrapwrap .s_css_slider { - position: relative; - min-height: 150px; - - .wrapper { - height: 100%; - position: relative; - z-index: 10; - transition: width 400ms; - /* Force Hardware Acceleration */ - transform: translateZ(0); - backface-visibility: hidden; - - @include s-css-slider-wrapper-hook; - } - - .slider{ - padding: 0; - height: 100%; - position: relative; - z-index: 10; - overflow: hidden; - @include s-css-slider-slider-hook; - } - - .slider .slide { - position: absolute; - list-style: none; - overflow: hidden; - top:0; - left:0; - margin: 0; - z-index: 10; - height: 100%; - width: 100%; - transform: translate(100%, 0); - transition: transform 300ms linear; - .info { - position: relative; - margin: 0; - - &:not([class*=bg-]) { - color : $s-css-slider-info-text-color; - background-color : $s-css-slider-info-bg-color; - } - - @include media-breakpoint-up(md) { - padding: $grid-gutter-width; - padding-top: $grid-gutter-width*0.5; - @include o-position-absolute(30%, $left: 60px); - max-width: 60%; - } - } - img { - display:block; - width:100%; - - // Fix the image size on some devices (e.g. iPhone X) - @media screen and (max-width: 400px) { - // The image height was greater than the container height - height: 100%; - - // Necessary if we don't want images of different sizes - // see resizeImgs() in s_css_slider_frontend.js - margin-top: 0 !important; - } - } - &.selected { - position:relative; - z-index:12; - transform: translate(0, 0); - } - &.move-left { - transform: translate(-100%, 0); - } - } - .navigation li { - position:absolute; - z-index:12; - top:50%; - list-style:none; - bottom:auto; - transform: translate(0, -50%); - - span { - display: block; - width: 48px; - height: 48px; - overflow: hidden; - font-size: 1.6em; - color: $s-css-slider-navigation-color; - text-shadow: $s-css-slider-navigation-text-shadow; - white-space: nowrap; - transition: e("opacity 200ms, visibility 0s"); - - @include s-css-slider-navigation-buttons-hook; - - &.inactive { - opacity:0; - visibility:hidden; - transition: e("opacity 200ms 0s, visibility 0s 200ms"); - } - &:hover { - opacity:.7; - } - } - &:first-of-type { - left:10px; - } - &:last-of-type { - right:10px; - } - - @include s-css-slider-navigation-hook; - } - - .s_css_slider_pagination { - position:absolute; - padding: 0; - z-index: 12; - bottom: 30px; - left: 50%; - right:auto; - transform: translate(-50%, 0); - - li { - display:inline-block; - float:left; - margin:0 5px; - } - li.selected a { - background:#f5f4f3; - } - a { - display:block; - height:12px; - width:12px; - border-radius:50%; - box-shadow: 0 1px 0 #333; - border:1px solid #f5f4f3; - background-color:rgba(255,255,255,0); - overflow:hidden; - text-indent:100%; - white-space:nowrap; - } - &:after { - content:""; - display:table; - clear:both; - } - } -} diff --git a/theme_common/static/src/old_snippets/s_css_slider/000_variables.scss b/theme_common/static/src/old_snippets/s_css_slider/000_variables.scss deleted file mode 100644 index aa8ae799bc..0000000000 --- a/theme_common/static/src/old_snippets/s_css_slider/000_variables.scss +++ /dev/null @@ -1,10 +0,0 @@ -$s-css-slider-navigation-color: white; -$s-css-slider-navigation-text-shadow: 0 1px 0 #333; -$s-css-slider-info-bg-color: #fff; -$s-css-slider-info-text-color: #333; - -@mixin s-css-slider-wrapper-hook {} -@mixin s-css-slider-slider-hook {} -@mixin s-css-slider-slider-hover-hook {} -@mixin s-css-slider-navigation-hook {} -@mixin s-css-slider-navigation-buttons-hook {} diff --git a/theme_common/static/src/old_snippets/s_discount/000.scss b/theme_common/static/src/old_snippets/s_discount/000.scss deleted file mode 100644 index 760903154d..0000000000 --- a/theme_common/static/src/old_snippets/s_discount/000.scss +++ /dev/null @@ -1,99 +0,0 @@ - -#wrapwrap .s_discount_box { - background: white; - padding: 30px 0; - border-radius: $s-discount-box-border-radius; - position: relative; - box-shadow: 0px 0px 5px 0px rgba(map-get($grays, '700'), 0.5); - word-wrap: break-word; - - &:before { - content: " "; - height: 20px; - width: 20px; - background: white; - border-radius: 20px; - position: absolute; - left: 50%; - top: 20px; - margin-left: -10px; - } - - @include s-discount-box-hook; -} - -#wrapwrap .s_discount_brand { - text-transform: uppercase; - letter-spacing: $s-discount-brand-letter-spacing; - padding: 10px 15px; - margin-top: 10px; - text-align: center; - min-height: 100px; - @include s-discount-brand-hook; -} - -#wrapwrap .s_discount_amount { - min-height: 100px; - position: relative; - font-size: $s-discount-amount-size; - text-align: center; - font-weight: bold; - padding: 20px 15px; - text-shadow: 1px 1px 2px 0px white; - color: white; - - &:after { - content: " "; - border-right: 20px solid rgba(0, 0, 0, 0); - border-left: 20px solid rgba(0, 0, 0, 0); - position: absolute; - bottom: -20px; - left: 20%; - } - -} - -#wrapwrap .s_discount_type { - font-size: 20px; - - letter-spacing: 1px; - text-transform: uppercase; -} - -#wrapwrap .s_discount_descr { - text-align: center; - font-size: 13px; - color: map-get($grays, '800'); - margin-top: 10px; - padding: 20px 25px; - @include s-discount-descr-hook; -} - -#wrapwrap .s_discount_ends { - padding: 0 25px; - margin-bottom: 10px; -} - -#wrapwrap .s_discount_coupon { - min-height: 50px; - text-align: center; - text-transform: uppercase; - font-weight: bold; - font-size: 18px; - padding: 20px 15px; - - a { - color: $s-discount-coupon-color; - } -} - -#wrapwrap .s_discount_code { - letter-spacing: 1px; - border-radius: 4px; - margin-top: 10px; - background: #f0f0f0; - color: map-get($grays, '800'); - .code { - padding: 10px 15px; - } -} diff --git a/theme_common/static/src/old_snippets/s_discount/000_variables.scss b/theme_common/static/src/old_snippets/s_discount/000_variables.scss deleted file mode 100644 index 02c65f20d8..0000000000 --- a/theme_common/static/src/old_snippets/s_discount/000_variables.scss +++ /dev/null @@ -1,8 +0,0 @@ -$s-discount-box-border-radius: 20px; -$s-discount-brand-letter-spacing: 3px; -$s-discount-coupon-color: white; -$s-discount-amount-size: 80px; - -@mixin s-discount-brand-hook {} -@mixin s-discount-descr-hook {} -@mixin s-discount-box-hook {} diff --git a/theme_common/static/src/old_snippets/s_event_list/000.scss b/theme_common/static/src/old_snippets/s_event_list/000.scss deleted file mode 100644 index 546ddf93fa..0000000000 --- a/theme_common/static/src/old_snippets/s_event_list/000.scss +++ /dev/null @@ -1,188 +0,0 @@ - -#wrapwrap .s_event_list_item { - @include clearfix; - box-shadow: 0px 0px 5px rgba(black, 0.25); - margin: 0px 0px 20px; - - > time { - display: block; - padding: 5px; - text-align: center; - text-transform: uppercase; - div { - display: none; - } - .s_event_list_day, .s_event_list_month, .s_event_list_time { - display: block; - line-height: 1; - } - .s_event_list_day { - font-size: 50px; - padding-top: 10px; - } - .s_event_list_month { - font-size: 30px; - } - .s_event_list_time { - font-size: 16px; - font-weight: 200; - padding-bottom: 10px; - } - } - > .s_event_list_icon { - text-align: center; - } - - > .s_event_list_info, - > .s_event_list_social { - > ul { - list-style: none; - margin: 0; - padding: 0; - text-align: center; - > li { - float: left; - color: map-get($grays, '800'); - font-size: 11px; - font-weight: 300; - - &:hover { - color: map-get($grays, '800'); - background-color: map-get($grays, '200'); - } - - > a { - display: block; - width: 100%; - height: 100%; - } - } - } - } - > .s_event_list_info { - padding-top: 5px; - text-align: center; - > .s_event_list_title { - margin: 5px 0 0; - @include o-text-overflow; - } - > .s_event_list_desc { - font-size: 14px; - font-weight: 300; - margin: 8px 0 0; - word-wrap: break-word; - overflow: hidden; - text-overflow: ellipsis; - max-height: 2.2em; - line-height: 1.1em; - .fa { - color: white; - } - } - - > ul { - margin-top: 10px; - > li { - width: 50%; - > a { - display: block; - width: 100%; - color: map-get($grays, '800'); - text-decoration: none; - } - } - } - } - > .s_event_list_social > ul { - > li { - width: 33.3333%; - padding: 0px; - > a { - padding: 9px 0px 3px; - } - - &:hover > a { - color: white!important; - } - } - } - - .s_event_list_facebook a { - color: $color-facebook!important; - } - .s_event_list_twitter a { - color: $color-twitter!important; - } - .s_event_list_google_plus a { - color: $color-google!important; - } - .s_event_list_facebook:hover a { - background-color: $color-facebook !important; - } - .s_event_list_twitter:hover a { - background-color: $color-twitter !important; - } - .s_event_list_google_plus:hover a { - background-color: $color-google !important; - } -} - -@include media-breakpoint-up(md) { - #wrapwrap .s_event_list_item { - display: flex; - position: relative; - > .s_event_list_icon { - width: $s-event-list-main-size; - height: $s-event-list-main-size; - float: left; - text-align: center; - .fa { - line-height: $s-event-list-main-size; - } - } - > img { - height: $s-event-list-main-size; - } - > time { - max-width: $s-event-list-main-size; - } - > time, > img { - flex: 1 1 auto; - min-height: $s-event-list-main-size; - min-width: $s-event-list-main-size; - margin: 0px; - padding: 0px; - float: left; - } - > .s_event_list_info { - flex: 1 1 auto; - position: relative; - overflow: hidden; - min-height: $s-event-list-main-size; - padding-right: 40px; - text-align: left; - > .s_event_list_title, .s_event_list_desc { - padding: 0px 10px; - } - > ul { - @include o-position-absolute($left: 0, $bottom: 0, $right: 40px); - } - } - > .s_event_list_social { - flex: 1 1 auto; - @include o-position-absolute($top: 0, $right: 0, $bottom: 0); - width: 40px; - > ul { - height: 100%; - border-left: 1px solid lighten(map-get($grays, '200'), 10%); - > li { - width: 100%; - height: 33.333%; - > a { - padding: 9px 0px; - } - } - } - } - } -} diff --git a/theme_common/static/src/old_snippets/s_event_list/000_variables.scss b/theme_common/static/src/old_snippets/s_event_list/000_variables.scss deleted file mode 100644 index b60bbd1b75..0000000000 --- a/theme_common/static/src/old_snippets/s_event_list/000_variables.scss +++ /dev/null @@ -1,4 +0,0 @@ -$color-facebook: #4b6ea8; -$color-twitter: #4fd5f8; -$color-google: #dd4b39; -$s-event-list-main-size: 120px; diff --git a/theme_common/static/src/old_snippets/s_event_slide/000.scss b/theme_common/static/src/old_snippets/s_event_slide/000.scss deleted file mode 100644 index 7643b94078..0000000000 --- a/theme_common/static/src/old_snippets/s_event_slide/000.scss +++ /dev/null @@ -1,51 +0,0 @@ -#wrapwrap .s_event_slide { - overflow: hidden; - .row { - text-align: center; - overflow: hidden; - box-shadow: inset 0px -7px 9px -6px rgba(0,0,0,0.45); - .s_event_slide_title{ - float: left; - @media screen and (max-width: 640px) { // FIXME - padding-bottom: 0; - margin-bottom: 0; - } - } - .s_event_slide_list { - float: right; - border-left: 4px solid o-color('epsilon'); - .header-border { - width: 20%; - height: 5px; - margin-bottom: 15px; - border-radius: 10px; - background-color: o-color('epsilon'); - } - > .row > div { - border-right: 1px solid map-get($grays, '200'); - border-bottom: 1px solid map-get($grays, '200'); - text-align: left; - h4 { - text-align: center; - } - } - .event { - height: 400px; - overflow: hidden; - overflow-y: scroll; - padding-top: 40px; - @include media-breakpoint-down(md) { - overflow: visible; - height: auto; - } - img { - width: 100%; - } - } - } - } - .fa { - display: inline-block; - margin-top: 50px; - } -} diff --git a/theme_common/static/src/old_snippets/s_features_carousel/000.scss b/theme_common/static/src/old_snippets/s_features_carousel/000.scss deleted file mode 100644 index 47ef934f10..0000000000 --- a/theme_common/static/src/old_snippets/s_features_carousel/000.scss +++ /dev/null @@ -1,69 +0,0 @@ - -#wrapwrap .s_features_carousel { - //height: 650px; - @include s-features-carousel-inner-hook; - [class*="col-lg-"] img { - max-height: 400px; - } - - .circle { - position: relative; - height: 250px; - width: 250px; - @media only screen and (max-width : 360px) { // FIXME - width: 165px; - height: 165px; - } - } - .mask { - display: inline-flex; - flex-direction: column; - justify-content: center; - width: 250px; - height: 250px; - padding: 40px; - border-radius: 50%; - font-size: 20px; - line-height: 20px; - text-align: center; - text-transform: uppercase; - @include s-features-carousel-mask-hook; - @media only screen and (max-width : 360px) { // FIXME - font-size: 15px; - line-height: 15px; - padding: 15px; - height: auto; - } - } - - h2 { - border-bottom: { - width: $s-features-carousel-border-width; - style: $s-features-carousel-border-style; - color: if(s-features-carousel-border-color != null, $s-features-carousel-border-color, map-get($grays, '600')); - } - text-align: center; - padding-bottom: 30px; - } - .carousel-indicators { - border-top: 1px dotted map-get($grays, '600'); - padding-top: 32px; - visibility: $s-features-carousel-indicators-visible; - li { - border: 1px solid map-get($grays, '200'); - } - } - .carousel-indicators .active { - border: 1px solid o-color('gamma') !important; - } - .carousel-control-prev, - .carousel-control-next { - opacity: 1; - cursor: pointer; - } - @include media-breakpoint-down(md) { - [class*="col-lg-"] > p { - padding: 0 30px; - } - } -} diff --git a/theme_common/static/src/old_snippets/s_features_carousel/000_variables.scss b/theme_common/static/src/old_snippets/s_features_carousel/000_variables.scss deleted file mode 100644 index 44c3246060..0000000000 --- a/theme_common/static/src/old_snippets/s_features_carousel/000_variables.scss +++ /dev/null @@ -1,7 +0,0 @@ -$s-features-carousel-border-width: 1px; -$s-features-carousel-border-style: dotted; -$s-features-carousel-border-color: null; // (default to a BS color) -$s-features-carousel-indicators-visible: hidden; - -@mixin s-features-carousel-inner-hook {} -@mixin s-features-carousel-mask-hook {} diff --git a/theme_common/static/src/old_snippets/s_full_menu/000.scss b/theme_common/static/src/old_snippets/s_full_menu/000.scss deleted file mode 100644 index c5ff40136d..0000000000 --- a/theme_common/static/src/old_snippets/s_full_menu/000.scss +++ /dev/null @@ -1,46 +0,0 @@ -#wrapwrap .s_full_menu { - overflow: hidden; - .container-fluid { - h2 { - text-align: center; - } - h4 { - font-size: 20px; - } - .menu-container > .s_full_menu_content { - border-left: 3px solid map-get($grays, '200'); - .row { - .s_full_menu_content_description { - border-bottom: 1px solid map-get($grays, '200'); - padding-bottom: 15px; - line-height: 1; - span { - text-transform: uppercase; - list-style: none; - } - @media screen and (max-width: 1024px) { // FIXME - font-size: 12px; - } - @media screen and (max-width: 360px) { // FIXME - top: 0px; - } - } - img { - max-width: 200px; - } - } - } - } - .price { - font-size: 2vw; - @media screen and (max-width: 360px) { // FIXME - font-size: 6.5vw; - } - } - .slash { - font-size: 2vw; - @media screen and (max-width: 360px) { // FIXME - font-size: 6.5vw; - } - } -} diff --git a/theme_common/static/src/old_snippets/s_header_text_big_picture/000.scss b/theme_common/static/src/old_snippets/s_header_text_big_picture/000.scss deleted file mode 100644 index bdd5b35611..0000000000 --- a/theme_common/static/src/old_snippets/s_header_text_big_picture/000.scss +++ /dev/null @@ -1,11 +0,0 @@ -#wrapwrap .s_header_text_big_picture { - .s_header_text_big_picture_picturecol { - padding: 0; - img { - width: 100%; - } - } - [class*="col-lg-"] p { - padding: 0 25px; - } -} diff --git a/theme_common/static/src/old_snippets/s_icon_box/000.scss b/theme_common/static/src/old_snippets/s_icon_box/000.scss deleted file mode 100644 index 2ddec1f781..0000000000 --- a/theme_common/static/src/old_snippets/s_icon_box/000.scss +++ /dev/null @@ -1,12 +0,0 @@ -#wrapwrap .s_icon_box { - .fa { - margin: 10px 20px; - &:hover { - transition: all 0.3s ease-in-out; - color: o-color('gamma'); - } - } - .icon_box_content { - overflow: hidden; - } -} diff --git a/theme_common/static/src/old_snippets/s_images_carousel/000.scss b/theme_common/static/src/old_snippets/s_images_carousel/000.scss deleted file mode 100644 index 860bca874e..0000000000 --- a/theme_common/static/src/old_snippets/s_images_carousel/000.scss +++ /dev/null @@ -1,26 +0,0 @@ -.s_images_carousel { - height: 400px; - &.carousel { - @include media-breakpoint-down(lg) { - height: auto !important; - } - .carousel-inner, - .carousel-item { - height: 100%; - } - } - @include media-breakpoint-up(lg) { - img { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%,-50%); - } - } - .carousel-caption { - background-color: #fff; - color: $body-color; - padding: 5px 0; - bottom: 55px; - } -} diff --git a/theme_common/static/src/old_snippets/s_images_row/000.scss b/theme_common/static/src/old_snippets/s_images_row/000.scss deleted file mode 100644 index a059e1db47..0000000000 --- a/theme_common/static/src/old_snippets/s_images_row/000.scss +++ /dev/null @@ -1,15 +0,0 @@ -.s_images_row { - .s_images_row_overlay { - min-height: 250px; - &:after { - content: ''; - display: block; - } - } - .s_images_row_body { - // @include o-position-absolute($spacer,$spacer,$spacer,$spacer); - background-color: #fff; - padding: $spacer/2 $spacer; - display: inline-block; - } -} diff --git a/theme_common/static/src/old_snippets/s_menu_three_columns/000.scss b/theme_common/static/src/old_snippets/s_menu_three_columns/000.scss deleted file mode 100644 index 68ea7fbe0c..0000000000 --- a/theme_common/static/src/old_snippets/s_menu_three_columns/000.scss +++ /dev/null @@ -1,39 +0,0 @@ -#wrapwrap .s_menu_three_columns { - .three-column { - width: 100%; - position: relative; - z-index: 800; - .big-menu { - height: 150px; - position: relative; - padding: 0; - @include media-breakpoint-down(md) { - height: 100px; - } - @media only screen and (max-width : 360px) { // FIXME - height: 80px; - } - a { - text-decoration: none; - display: block; - &:hover, &:focus { - text-decoration: none; - background-color: $white; - transition: all 200ms ease; - } - } - h2 { - line-height: 150px; - margin-top: 0; - @include media-breakpoint-down(md) { - line-height: 100px; - line-height: 100px; - } - @media only screen and (max-width : 360px) { // FIXME - height: 80px; - line-height: 80px; - } - } - } - } -} diff --git a/theme_common/static/src/old_snippets/s_mini_nav_bar/000.js b/theme_common/static/src/old_snippets/s_mini_nav_bar/000.js deleted file mode 100644 index dac248fe08..0000000000 --- a/theme_common/static/src/old_snippets/s_mini_nav_bar/000.js +++ /dev/null @@ -1,29 +0,0 @@ -/** @odoo-module **/ - -import dom from "@web/legacy/js/core/dom"; -import publicWidget from "@web/legacy/js/public/public_widget"; - -publicWidget.registry.miniNavbarScroll = publicWidget.Widget.extend({ - selector: '.s_mini_nav_bar a[href*="#"]:not([href="#"])', - events: { - 'click': '_onClick', - }, - - //---------------------------------------------------------------------- - // Handlers - //---------------------------------------------------------------------- - - /** - * Called on click on the mini navbar link -> scroll to the section. - * - * @private - */ - _onClick: function (ev) { - var index = $(this).parent().index(); - var target = $('.o_scroll_nav').get(index); - if (target) { - ev.preventDefault(); - dom.scrollTo(target); - } - }, -}); diff --git a/theme_common/static/src/old_snippets/s_mini_nav_bar/000.scss b/theme_common/static/src/old_snippets/s_mini_nav_bar/000.scss deleted file mode 100644 index 06893ccc41..0000000000 --- a/theme_common/static/src/old_snippets/s_mini_nav_bar/000.scss +++ /dev/null @@ -1,27 +0,0 @@ - -#wrapwrap .s_mini_nav_bar_nav { - position: relative; - top: -50px; - height: 82px; - padding: 0px; - .btn { - font-family: $font-family-sans-serif; - text-align: center; - width: 82px; - height: 82px; - line-height: 1.33; - border-radius: 48px; - border: 0px; - box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15); - } -} - -#wrapwrap .s_mini_nav_bar_content h1 { - color: white; - font-size: 60px; -} - -#wrapwrap .s_mini_nav_bar_item { - margin: 0 20px; - min-height: 100px; -} diff --git a/theme_common/static/src/old_snippets/s_news_carousel/000.scss b/theme_common/static/src/old_snippets/s_news_carousel/000.scss deleted file mode 100644 index a06afae1bc..0000000000 --- a/theme_common/static/src/old_snippets/s_news_carousel/000.scss +++ /dev/null @@ -1,27 +0,0 @@ -.s_news_carousel { - .carousel-inner { - width: 80%; - margin: 0 auto; - } - - .s_news_carousel_date { - display: flex; - flex-direction: column; - justify-content: center; - padding: $grid-gutter-width; - } - - .s_news_carousel_day { - line-height: 1; - font-weight: 300; - } - - .s_news_carousel_month { - margin-bottom: 10px; - text-transform: uppercase; - } - .s_news_carousel_content { - padding: $grid-gutter-width; - background-color: #fff; - } -} diff --git a/theme_common/static/src/old_snippets/s_pricing/000.scss b/theme_common/static/src/old_snippets/s_pricing/000.scss deleted file mode 100644 index 73ff7a35f4..0000000000 --- a/theme_common/static/src/old_snippets/s_pricing/000.scss +++ /dev/null @@ -1,31 +0,0 @@ -#wrapwrap .s_pricing strong { - font-weight: 700; - color: map-get($grays, '800'); -} - -#wrapwrap .s_pricing_footer { - height: 32px; -} -#wrapwrap .s_pricing_box { - box-shadow: 0px 2px 5px 0px rgba(black, 0.1); - border: 1px solid lighten(map-get($grays, '200'), 10%); -} - -#wrapwrap .s_pricing_header { - padding: 24px 12px; - min-height: 180px; - - h2 { - font-weight: 700; - } - h3 { - font-weight: 500; - } -} - -#wrapwrap .s_pricing_features { - padding: 15px 10px 15px 10px; - text-align: center; - line-height: 20px; - font-size: 14px; -} diff --git a/theme_common/static/src/old_snippets/s_products_carousel/000.scss b/theme_common/static/src/old_snippets/s_products_carousel/000.scss deleted file mode 100644 index ce857b6cb2..0000000000 --- a/theme_common/static/src/old_snippets/s_products_carousel/000.scss +++ /dev/null @@ -1,91 +0,0 @@ - -#wrapwrap .s_products_carousel { - - .carousel-inner { - height: $s-products-carousel-carousel-height; - .carousel-item { - height: 100% - } - } - - .carousel-indicators { - visibility: $s-products-carousel-indicators-visible; - bottom: $s-products-carousel-indicators-position; - } - - .carousel-control-prev, - .carousel-control-next { - cursor: pointer; - opacity: 1; - width: 70px; - } - - .carousel-control-prev-icon, - .carousel-control-next-icon { - width: 30px; - height: 30px; - } - - .row { - margin: 0; - } - - .container-fluid { - padding: 0; - overflow: hidden; - - .product-widget { - position: absolute; - bottom: 0; - text-align: center; - - @media screen and (max-width: 360px) { - height: auto; - } - } - - .widget{ - display: inline-block; - overflow: hidden; - - @media screen and (max-width: 360px) { - transform: none; - padding-bottom: 10px; - } - - img { - max-height: 120px; - &:hover { - opacity: 0.7; - } - } - } - - .hero-bg { - padding: $s-products-carousel-hero-bg-padding; - color: o-color('alpha'); - text-align: center; - - @include media-breakpoint-down(md) { - padding-top: 20px; - text-align: center; - } - - @media screen and (max-width: 360px) { - padding: 0; - } - - h2 { - font-size: 85px; - text-shadow: 1px 1px 11px rgba(0, 0, 0, 0.86); - - @include media-breakpoint-down(md) { - font-size: 65px; - } - @media screen and (max-width: 360px) { - font-size: 35px; - } - } - } - } -} diff --git a/theme_common/static/src/old_snippets/s_products_carousel/000_variables.scss b/theme_common/static/src/old_snippets/s_products_carousel/000_variables.scss deleted file mode 100644 index 7d0238fb31..0000000000 --- a/theme_common/static/src/old_snippets/s_products_carousel/000_variables.scss +++ /dev/null @@ -1,6 +0,0 @@ -$s-products-carousel-carousel-height: 500px; -$s-products-carousel-indicators-position: 0; -$s-products-carousel-indicators-visible: hidden; -$s-products-carousel-hero-bg-padding: 60px 90px 0 90px; - -@mixin s-products-carousel-hook {} diff --git a/theme_common/static/src/old_snippets/s_profile/000.scss b/theme_common/static/src/old_snippets/s_profile/000.scss deleted file mode 100644 index 107cb0f7a5..0000000000 --- a/theme_common/static/src/old_snippets/s_profile/000.scss +++ /dev/null @@ -1,34 +0,0 @@ -#wrapwrap .s_profile_box { - min-height: 450px; - color: map-get($grays, '800'); - - @include media-breakpoint-down(lg) { - text-align: center; - } - - h2 { - color: map-get($grays, '800'); - } - - span.tags - { - background: map-get($grays, '700'); - border-radius: 2px; - color: white; - padding: 2px 4px; - } - -} - -#wrapwrap .s_profile_box_divider { - border-top: 1px solid lighten(map-get($grays, '600'), 15%); -} - -#wrapwrap .s_profile_box_emphasis:hover { - transition: all 0.3s ease-in-out; - background-color: lighten(map-get($grays, '200'), 10%); -} - -#wrapwrap .s_profile .card p, #wrapwrap .s_profile .card h2 { - color: map-get($grays, '800'); -} diff --git a/theme_common/static/src/old_snippets/s_progress/000.scss b/theme_common/static/src/old_snippets/s_progress/000.scss deleted file mode 100644 index 488f5b337b..0000000000 --- a/theme_common/static/src/old_snippets/s_progress/000.scss +++ /dev/null @@ -1,73 +0,0 @@ -#wrapwrap .s_progress { - > div > .row > div { - border-left-width: 1px; - border-left-style: solid; - @include media-breakpoint-down(md) { - border-bottom-width: 1px; - border-bottom-style: solid; - border-left-width: 0; - } - - &:first-child { - border-left-width: 0; - } - - &:last-child .process { - color: rgba(0, 0, 0, 0); - } - } - - .fa { - font-size: 60px; - } - .icon-container { - max-width: 250px; - } - .progress-iconset { - padding: 10px; - text-align: center; - min-height: 230px; - @include media-breakpoint-down(md) { - min-height: 50px; - } - - &:after, &:before { - content: " "; - display: block; - width: 50%; - height: 50px; - border-right: 1px solid silver; - margin: 10px 0; - } - &:before { - display: none; - } - } - .progress-content ~ .progress-iconset { - &:after { - display: none; - } - &:before { - display: block; - } - } - .process { - font-size: 25px; - height: 25px; - text-align: right; - width: 100%; - @include media-breakpoint-down(md) { - display: none; - } - } - .progress-content { - padding: 10px 25px; - min-height: 230px; - @include media-breakpoint-down(md) { - min-height: 50px; - } - h1 { - margin-top: 0; - } - } -} diff --git a/theme_common/static/src/old_snippets/s_separator_nav/000.scss b/theme_common/static/src/old_snippets/s_separator_nav/000.scss deleted file mode 100644 index 66e8559015..0000000000 --- a/theme_common/static/src/old_snippets/s_separator_nav/000.scss +++ /dev/null @@ -1,24 +0,0 @@ - -#wrapwrap .s_separator_nav { - position: relative; - top: -50px; - height: 82px; - padding: 0px; - .btn { - font-family: $font-family-sans-serif; - text-align: center; - width: 82px; - height: 82px; - padding-top: 24px; - font-size: 26px; - line-height: 1.33; - border-radius: 48px; - border: 0px; - box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15); - } -} - -#wrapwrap .s_separator_nav_item { - margin: 0 20px; - min-height: 100px; -} diff --git a/theme_common/static/src/old_snippets/s_showcase_image/000.scss b/theme_common/static/src/old_snippets/s_showcase_image/000.scss deleted file mode 100644 index 0cf49ddfc1..0000000000 --- a/theme_common/static/src/old_snippets/s_showcase_image/000.scss +++ /dev/null @@ -1,106 +0,0 @@ - -#wrapwrap .s_showcase_image { - height: auto; - text-align: left; - .info { - margin-bottom: 1.5em; - } - > .row { - height: 100%; - } - figure { - background-size : cover; - position : relative; - height : 200px; - - // Layout Options - // ======================= - &.tl figcaption { - top : 0; - left : 0; - bottom : auto; - right : auto; - margin-left : 14px; - text-align: right; - } - &.tr figcaption { - top : 0; - left : auto; - bottom : auto; - right : 0; - } - &.bl figcaption { - top : auto; - left : 0; - bottom : 0; - margin-left : 14px; - right : auto; - text-align: right; - } - } - figcaption { - position : absolute; - bottom : 0; - width : 100%; - text-shadow : $s-showcase-image-caption-text-shadow; - font-size : $s-showcase-image-caption-font-size-mobile; - padding : $s-showcase-image-caption-padding; - - &:not([class*=bg-]) { - color : $s-showcase-image-caption-color; - background : $s-showcase-image-caption-bg; - } - - h6 { - margin-top: 0; - } - } - - @include media-breakpoint-up(lg) { - height: 350px; - .info { - height: 100%; - margin-bottom: 0; - display: flex; - flex-flow: column nowrap; - justify-content: center; - } - figure { - height: 100%; - } - figcaption { - position : absolute; - bottom : 0; - right : 0; - width : 50%; - font-size : $s-showcase-image-caption-font-size-desktop; - padding : $s-showcase-image-caption-padding; - } - } - - &.s_right { - text-align: right; - figure { - float: right; - - // Layout Options - // ======================= - &.tl figcaption { - margin-left: 0; - } - &.tr figcaption { - margin-right : 14px; - } - &.bl figcaption { - margin-left: 0; - } - } - - @include media-breakpoint-up(lg) { - figcaption { - margin-right : 14px; - text-align : left; - } - } - } -} diff --git a/theme_common/static/src/old_snippets/s_showcase_image/000_variables.scss b/theme_common/static/src/old_snippets/s_showcase_image/000_variables.scss deleted file mode 100644 index 46eb94412e..0000000000 --- a/theme_common/static/src/old_snippets/s_showcase_image/000_variables.scss +++ /dev/null @@ -1,6 +0,0 @@ -$s-showcase-image-caption-bg : white; -$s-showcase-image-caption-color : #333; -$s-showcase-image-caption-padding : 1em; -$s-showcase-image-caption-font-size-mobile : 1em; -$s-showcase-image-caption-font-size-desktop : .8em; -$s-showcase-image-caption-text-shadow : none; diff --git a/theme_common/static/src/old_snippets/s_showcase_slider/000.js b/theme_common/static/src/old_snippets/s_showcase_slider/000.js deleted file mode 100644 index f0b81058c6..0000000000 --- a/theme_common/static/src/old_snippets/s_showcase_slider/000.js +++ /dev/null @@ -1,130 +0,0 @@ -/** @odoo-module **/ - -import dom from "@web/legacy/js/core/dom"; -import publicWidget from "@web/legacy/js/public/public_widget"; - -publicWidget.registry.s_showcase_slider = publicWidget.Widget.extend({ - selector: ".s_showcase_slider", - - start: function () { - setTimeout(this.bindEvents.bind(this), 0); // FIXME delayed to counter a web_editor bug which off all click event - this.createPagination(); - return this._super.apply(this, arguments); - }, - - destroy: function () { - this._super.apply(this, arguments); - setTimeout(this.unbindEvents.bind(this), 0); // FIXME delayed to counter a web_editor bug which off all click event - this.destroyPagination(); - this.$el.removeClass("active"); - }, - - bindEvents: function () { - // Enlarge image on click if not already enlarged - this.$el.on("click.s_showcase_slider", ".s_ss_slider", (function (e) { - if (this.$el.hasClass("active")) return; - - this.$el - .addClass("active") - .one("webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend", (function () { - dom.scrollTo(this.el, { - duration: 200, - extraOffset: 70, - }); - this.$el.trigger("transitionIsFinished"); - }).bind(this)); - }).bind(this)); - - // Close the enlarged image on close icon click - this.$el.on("click.s_showcase_slider", ".s_ss_close", (function (e) { - this.$el.removeClass("active"); - }).bind(this)); - - // Handle click navigation - this.$el.on("click.s_showcase_slider", ".s_ss_prev", this.prevSlide.bind(this)); - this.$el.on("click.s_showcase_slider", ".s_ss_next", this.nextSlide.bind(this)); - this.$el.on("click.s_showcase_slider", ".s_ss_slider_pagination > li > a", (function (e) { - e.preventDefault(); - var $selectedDot = $(e.currentTarget).parent(); - if ($selectedDot.hasClass("selected")) return; - this.changeSlide($selectedDot.index()); - }).bind(this)); - - // Keyboard slider navigation - $(document).on("keyup.s_showcase_slider", (function (e) { - if (!this.$el.hasClass("active")) return; - - switch (e.which) { - case $.ui.keyCode.LEFT: - this.prevSlide(); - break; - case $.ui.keyCode.RIGHT: - this.nextSlide(); - break; - case $.ui.keyCode.ESCAPE: - this.$el.removeClass("active"); - break; - } - }).bind(this)); - }, - - unbindEvents: function () { - this.$el.off(".s_showcase_slider"); - $(document).off(".s_showcase_slider"); - }, - - createPagination: function () { // FIXME pagination should be saved with editor but keep this for compatibility - this.$el.find(".s_ss_slider_pagination").remove(); // Remove saved-with-editor pagination - - this.$pagination = $("
      ", {class: "s_ss_slider_pagination"}); - this.$pagination.insertAfter(this.$el.find(".s_ss_slider_navigation")); - - var nbSlides = this.$el.find(".s_ss_slider").children().length; - for (var i = 0 ; i < nbSlides ; i++) { - this.$pagination.append("
    • "); - } - - this.$pagination.children().eq(this.getCurrentIndex()).addClass("selected"); - }, - - destroyPagination: function () { - if (this.$pagination) { - this.$pagination.remove(); - this.$pagination = null; - } - }, - - prevSlide: function () { - var nbSlides = this.$el.find(".s_ss_slider").children().length; - var currentIndex = this.getCurrentIndex(); - this.changeSlide(currentIndex > 0 ? (currentIndex - 1) : (nbSlides - 1)); - }, - - nextSlide: function () { - var nbSlides = this.$el.find(".s_ss_slider").children().length; - var currentIndex = this.getCurrentIndex(); - this.changeSlide((currentIndex + 1) % nbSlides); - }, - - getCurrentIndex: function () { - return this.$el.find(".s_ss_slider > .selected").index(); - }, - - changeSlide: function (n) { - var $slides = this.$el.find(".s_ss_slider > li").removeClass("selected"); - this.$el.find(".s_ss_slider_pagination > li").removeClass("selected"); - - var $slide = $slides.eq(n).addClass("selected"); - $slides.removeClass("move-left"); - $slide.prevAll().addClass("move-left"); - - this.$pagination.children().eq(n).addClass("selected"); - this.updateNavigation(); - }, - - updateNavigation: function () { - var $active = this.$el.find(".s_ss_slider > .selected"); - this.$el.find(".s_ss_prev").toggleClass("inactive", $active.is(":first-child")); - this.$el.find(".s_ss_next").toggleClass("inactive", $active.is(":last-child")); - }, -}); diff --git a/theme_common/static/src/old_snippets/s_showcase_slider/000.scss b/theme_common/static/src/old_snippets/s_showcase_slider/000.scss deleted file mode 100644 index 62a0cdb636..0000000000 --- a/theme_common/static/src/old_snippets/s_showcase_slider/000.scss +++ /dev/null @@ -1,241 +0,0 @@ - -#wrapwrap .s_showcase_slider { - position: relative; - - .s_ss_slider_wrapper { - position: relative; - z-index: 10; - transition: width 400ms; - /* Force Hardware Acceleration */ - transform: translateZ(0); - backface-visibility: hidden; - - @include s-showcase-slider-wrapper-hook; - - .s_ss_close { - display: none; - @include o-position-absolute(30px, 30px); - z-index: 12; - width: 48px; - height: 48px; - overflow: hidden; - white-space: nowrap; - visibility: hidden; - opacity: 0; - font-size: 1.6em; - text-align: right; - color: $s-ss-slider-navigation-color; - text-shadow: $s-ss-slider-navigation-text-shadow; - transition: transform 0.3s 0s, visibility 0s 0.4s; - - &:hover { - transform: scale(1.2); - } - - @include s-showcase-slider-close-hook; - } - - ul { - margin: 0; - } - } - - .s_ss_slider { - padding: 0; - position: relative; - z-index: 10; - overflow: hidden; - &:before { /* never visible - this is used by javascript to check the current window size */ - content: 'mobile'; - display: none; - } - @include s-showcase-slider-slider-hook; - - li { - @include o-position-absolute($top: 0, $left: 0); - list-style: none; - z-index: 10; - width: 100%; - height: 100%; - transform: translate(100%, 0); - transition: transform 300ms linear; - img { - display:block; - width:100%; - } - &.selected { - position:relative; - z-index:12; - transform: translate(0, 0); - } - &.move-left { - transform: translate(-100%, 0); - } - } - } - - .s_ss_slider_navigation li { - @include o-position-absolute($top: 50%); - z-index:12; - list-style:none; - transform: translate(0, -50%); - - span { - display: block; - width: 48px; - height: 48px; - overflow: hidden; - font-size: 1.6em; - color: $s-ss-slider-navigation-color; - text-shadow: $s-ss-slider-navigation-text-shadow; - white-space: nowrap; - transition: e("opacity 200ms, visibility 0s"); - - @include s-showcase-slider-navigation-buttons-hook; - - &.inactive { - opacity: 0; - visibility: hidden; - transition: e("opacity 200ms 0s, visibility 0s 200ms"); - } - &:hover { - opacity: 0.7; - } - } - &:first-of-type { - left: 10px; - } - &:last-of-type { - right: 10px; - } - - @include s-showcase-slider-navigation-hook; - } - - .s_ss_slider_pagination { - @include o-position-absolute($left: 50%, $bottom: 30px); - z-index: 12; - transform: translate(-50%, 0); - visibility: hidden; - li { - display: inline-block; - float: left; - margin: 0 5px; - } - li.selected a { - background: #f5f4f3; - } - a { - display: block; - height: 12px; - width: 12px; - border-radius: 50%; - box-shadow: 0 1px 0 #333; - border: 1px solid #f5f4f3; - background-color: rgba(255,255,255,0); - overflow: hidden; - text-indent: 100%; - white-space: nowrap; - } - &:after { - content: ""; - display: table; - clear: both; - } - } - - .s_ss_item_info { - padding: 50px 5%; - - @include s-showcase-slider-info-hook; - } - - // ================ READABLE - &.readable { - font-size: 100%; - .s_ss_item_info { - padding: 0 20px; - } - } - - // ================ SLIDER ACTIVE - &.active .s_ss_slider_wrapper .s_ss_close { - visibility: visible; - opacity: 1; - transition: transform 0.3s 0s, visibility 0s 0s, opacity .4s .4s; - } -} - -@include media-breakpoint-up(lg) { - #wrapwrap .s_showcase_slider { - .s_ss_slider { - cursor: pointer; - &:before { content: 'desktop'; } - &:after { - content: ''; - display: block; - @include o-position-absolute($top: 0, $left: 0); - width: 100%; - height: 100%; - pointer-events: none; - background: rgba(255, 255, 255, 0.4); - background-size: 48px; - opacity: 0; - z-index: 14; - transition: opacity 200ms; - } - &:hover::after { - opacity: 1; - } - @include s-showcase-slider-slider-hover-hook; - } - - .s_ss_item_info { - @include o-position-absolute(0, 0); - width: 50%; - padding: 60px 60px 0; - margin: 0; - } - - .s_ss_slider_wrapper { - width: 50%; - .s_ss_close { - display: block; - } - } - .s_ss_slider_navigation li, - .s_ss_slider_pagination { - opacity: 0; - visibility: hidden; - transition: opacity 0.4s 0s, visibility 0s .4s; - } - - .s_ss_slider_navigation li { - &:first-child { - left: 30px; - } - li:last-child { - right: 30px; - } - } - // ================ SLIDER ACTIVE - &.active { - .s_ss_slider { - cursor: auto; - &:after { - display: none; - } - } - .s_ss_slider_wrapper { - width: 100%; - z-index: 10; - } - .s_ss_slider_navigation li, - .s_ss_slider_pagination { - opacity: 1; - visibility: visible; - transition: opacity 0.4s .4s, visibility 0s .4s; - } - } - } -} diff --git a/theme_common/static/src/old_snippets/s_showcase_slider/000_variables.scss b/theme_common/static/src/old_snippets/s_showcase_slider/000_variables.scss deleted file mode 100644 index a70b265d0f..0000000000 --- a/theme_common/static/src/old_snippets/s_showcase_slider/000_variables.scss +++ /dev/null @@ -1,10 +0,0 @@ -$s-ss-slider-navigation-color : white; -$s-ss-slider-navigation-text-shadow : 0 1px 0 #333; - -@mixin s-showcase-slider-wrapper-hook {} -@mixin s-showcase-slider-slider-hook {} -@mixin s-showcase-slider-slider-hover-hook {} -@mixin s-showcase-slider-navigation-hook {} -@mixin s-showcase-slider-navigation-buttons-hook {} -@mixin s-showcase-slider-close-hook {} -@mixin s-showcase-slider-info-hook {} diff --git a/theme_common/static/src/old_snippets/s_team_profiles/000.scss b/theme_common/static/src/old_snippets/s_team_profiles/000.scss deleted file mode 100644 index 7e78c166bd..0000000000 --- a/theme_common/static/src/old_snippets/s_team_profiles/000.scss +++ /dev/null @@ -1,5 +0,0 @@ -.s_team_profiles { - [class*="col-"] { - color: initial; - } -} diff --git a/theme_common/static/src/old_snippets/s_text_picture_text/000.scss b/theme_common/static/src/old_snippets/s_text_picture_text/000.scss deleted file mode 100644 index 7eb09a5861..0000000000 --- a/theme_common/static/src/old_snippets/s_text_picture_text/000.scss +++ /dev/null @@ -1,10 +0,0 @@ -#wrapwrap .s_text_picture_text { - h3 { - padding-bottom: 30px; - } - - .row div:nth-child(2) img { - margin-bottom: 20px; - width: 100%; - } -} diff --git a/theme_common/static/src/old_snippets/s_two_columns/000.scss b/theme_common/static/src/old_snippets/s_two_columns/000.scss deleted file mode 100644 index 169e2ff90c..0000000000 --- a/theme_common/static/src/old_snippets/s_two_columns/000.scss +++ /dev/null @@ -1,5 +0,0 @@ -#wrapwrap .s_two_columns { - [class*="col-lg-"] > img { - margin: 0 auto; - } -} diff --git a/theme_common/views/old_snippets/s_column.xml b/theme_common/views/old_snippets/s_column.xml deleted file mode 100644 index 12c5700c12..0000000000 --- a/theme_common/views/old_snippets/s_column.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/theme_common/views/old_snippets/s_page_header.xml b/theme_common/views/old_snippets/s_page_header.xml deleted file mode 100644 index 12c5700c12..0000000000 --- a/theme_common/views/old_snippets/s_page_header.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/theme_common/views/old_snippets/s_three_columns_circle.xml b/theme_common/views/old_snippets/s_three_columns_circle.xml deleted file mode 100644 index 12c5700c12..0000000000 --- a/theme_common/views/old_snippets/s_three_columns_circle.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/theme_enark/data/ir_asset.xml b/theme_enark/data/ir_asset.xml index d893932e3b..98452e24e1 100644 --- a/theme_enark/data/ir_asset.xml +++ b/theme_enark/data/ir_asset.xml @@ -1,38 +1,6 @@ - - theme_enark.s_big_image_parallax_000_scss - Big image parallax 000 SCSS - web.assets_frontend - theme_enark/static/src/old_snippets/s_big_image_parallax/000.scss - - - - - theme_enark.s_big_image_000_scss - Big image 000 SCSS - web.assets_frontend - theme_enark/static/src/old_snippets/s_big_image/000.scss - - - - - theme_enark.s_icon_box_000_scss - Icon box 000 SCSS - web.assets_frontend - theme_enark/static/src/old_snippets/s_icon_box/000.scss - - - - - theme_enark.s_big_icons_000_scss - Big icons 000 SCSS - web.assets_frontend - theme_enark/static/src/old_snippets/s_big_icons/000.scss - - - theme_enark.primary_variables_scss Primary variables SCSS diff --git a/theme_enark/static/src/old_snippets/s_big_icons/000.scss b/theme_enark/static/src/old_snippets/s_big_icons/000.scss deleted file mode 100644 index 5db6339784..0000000000 --- a/theme_enark/static/src/old_snippets/s_big_icons/000.scss +++ /dev/null @@ -1,75 +0,0 @@ -// From old theme common. -@mixin o-theme-chd-big-icons-styles($bg-color: o-color('alpha'), $border-color: o-color('alpha'), - $transform: scale(1.1, 1.1), $fa-color: white, $h5-color: white) { - - background-color: $bg-color !important; - border-color: $border-color; - transform: $transform; - .fa { - color: $fa-color !important; - } - h5.o_default_snippet_text { - color: $h5-color !important; - } -} - -/* Big Icon Circle */ -@include o-theme-chd-big-icons-classes(0, none); - -/* Big Icon Square */ - -.s_big_icon_square_box { - .fa { - color: o-color('alpha') !important; - } -} - -.s_big_icon_square_icon { - text-align:center!important; - color:#fff; - transition: all 0.3s ease-in-out; - h5 { - margin-top: 48px; - } -} - -.s_big_icon_square_box:hover .s_big_icon_square_icon { - transition: all 0.3s ease-in-out; - -} - -/* s_big_icons */ - -.bg-beta .s_big_icons_icon { - border: 6px solid; - @include o-theme-chd-big-icons-styles(rgba(0, 0, 0, 0), white); -} - -.bg-beta .s_big_icons_box:hover .s_big_icons_icon { - @include o-theme-chd-big-icons-styles($bg-color: white, $fa-color: o-color('alpha')); -} - -/* s_big_icon_square */ - -.bg-beta .s_big_icon_square_icon { - background-color: rgba(0, 0, 0, 0) !important; - border: 6px solid white !important; - h5 { - color: white !important; - } - .fa { - color: white !important; - } -} - -.bg-beta .s_big_icon_square_box:hover .s_big_icon_square_icon { - background-color: white !important; - border-color: o-color('alpha'); - transform: scale(1.1,1.1); - .fa { - color: o-color('alpha') !important; - } - h5 { - color: white !important; - } -} diff --git a/theme_enark/static/src/old_snippets/s_big_image/000.scss b/theme_enark/static/src/old_snippets/s_big_image/000.scss deleted file mode 100644 index cbd8b41c4f..0000000000 --- a/theme_enark/static/src/old_snippets/s_big_image/000.scss +++ /dev/null @@ -1,6 +0,0 @@ -.s_big_image .s_text_highlight { - padding: 12px 8px 18px; - border-radius: 0px; - border: 3px solid o-color('alpha'); - background: rgba(black, 0.35) -} diff --git a/theme_enark/static/src/old_snippets/s_big_image_parallax/000.scss b/theme_enark/static/src/old_snippets/s_big_image_parallax/000.scss deleted file mode 100644 index 0771305f10..0000000000 --- a/theme_enark/static/src/old_snippets/s_big_image_parallax/000.scss +++ /dev/null @@ -1,5 +0,0 @@ -.s_big_image_parallax { - min-height: 600px; - padding-top: 20px; - background-size: cover; -} diff --git a/theme_enark/static/src/old_snippets/s_icon_box/000.scss b/theme_enark/static/src/old_snippets/s_icon_box/000.scss deleted file mode 100644 index c0184f3ef8..0000000000 --- a/theme_enark/static/src/old_snippets/s_icon_box/000.scss +++ /dev/null @@ -1,126 +0,0 @@ - -/* Icon Box Circle */ - -.s_icon_box_circle_box { - float: left; - - .fa { - color: o-color('alpha') !important; - font-size: 28px; - } -} - -.s_icon_box_circle_icon { - width:60px; - height:60px; - margin-right: 15px; - text-align:center!important; - color:#fff; - padding: 20px 0; - transition: all 0.3s ease-in-out; - background-color: rgba(0, 0, 0, 0) !important; - border: 2px solid o-color('alpha'); - border-radius: 50px; -} - -.s_icon_box_circle_box:hover .s_icon_box_circle_icon { - transform: scale(1.1,1.1); - transition: all 0.3s ease-in-out; - border-color: o-color('gamma'); - .fa { - color: o-color('gamma') !important; - } -} - -/* Icon Box Square */ - -.s_icon_box_square_box { - float: left; - - .fa { - color: o-color('alpha') !important; - } -} - -.s_icon_box_square_icon { - width:60px; - height:55px; - margin-right: 15px; - text-align:center!important; - color:#fff; - padding: 18px 0; - transition: all 0.3s ease-in-out; - background-color: rgba(0, 0, 0, 0) !important; - border: 2px solid o-color('alpha'); -} - -.s_icon_box_square_box:hover .s_icon_box_square_icon { - transform: scale(1.1,1.1); - transition: all 0.3s ease-in-out; - border-color: o-color('gamma'); - .fa { - color: o-color('gamma') !important; - } -} - -/* s_icon_box */ - -.bg-beta .s_icon_box_box:hover .s_icon_box_icon .fa { - transition: all 0.3s ease-in-out; - color: o-color('delta') !important; -} - -.bg-beta .s_icon_box_box:hover .s_icon_box_content h4 { - transition: all 0.3s ease-in-out; - color: o-color('delta') !important; -} - -/* s_icon_box_square */ - -.bg-beta .s_icon_box_square_icon { - border-color: white !important; - background-color: o-color('alpha') !important; - .fa { - color: white !important; - } - h4 { - color: white !important; -} -} - -.bg-beta .s_icon_box_square_box:hover .s_icon_box_square_icon { - border-color: white !important; - background-color: white !important; - .fa { - color: o-color('alpha') !important; - } -} - -.bg-beta .s_icon_box_square_box:hover h4 { - color: white !important; -} - -/* s_icon_box_circle */ - -.bg-beta .s_icon_box_circle_icon { - border-color: white !important; - background-color: o-color('alpha') !important; - .fa { - color: white !important; - } - h4 { - color: white !important; -} -} - -.bg-beta .s_icon_box_circle_box:hover .s_icon_box_circle_icon { - border-color: white !important; - background-color: white !important; - .fa { - color: o-color('alpha') !important; - } -} - -.bg-beta .s_icon_box_circle_box:hover h4 { - color: white !important; -} diff --git a/theme_graphene/data/ir_asset.xml b/theme_graphene/data/ir_asset.xml index 1597d9169c..cc37a1c1f3 100644 --- a/theme_graphene/data/ir_asset.xml +++ b/theme_graphene/data/ir_asset.xml @@ -1,14 +1,6 @@ - - theme_graphene.s_showcase_slider_000_variables_scss - Showcase slider 000 variables SCSS - web._assets_primary_variables - theme_graphene/static/src/old_snippets/s_showcase_slider/000_variables.scss - - - theme_graphene.primary_variables_scss Primary variables SCSS diff --git a/theme_graphene/static/src/old_snippets/s_showcase_slider/000_variables.scss b/theme_graphene/static/src/old_snippets/s_showcase_slider/000_variables.scss deleted file mode 100644 index ff89d1809f..0000000000 --- a/theme_graphene/static/src/old_snippets/s_showcase_slider/000_variables.scss +++ /dev/null @@ -1,21 +0,0 @@ -@mixin s-showcase-slider-navigation-hook { - span { - text-indent: 100%; - background: url("../img/ui/s_showcase_slider-arrow.svg") no-repeat center center; - &:before { content: none; } - } - &:first-of-type { - span { transform: rotate(180deg); } - } -} - -@mixin s-showcase-slider-close-hook { - background: url("../img/ui/s_showcase_slider-close.svg") no-repeat center center; - text-indent: 100%; -} - -@mixin s-showcase-slider-slider-hover-hook { - &::after { - background: rgba(0, 0, 0, 0.4) url("../img/ui/s_showcase_slider-zoom.svg") no-repeat center center; - } -} diff --git a/theme_kea/data/ir_asset.xml b/theme_kea/data/ir_asset.xml index b42467690b..da5dadb896 100644 --- a/theme_kea/data/ir_asset.xml +++ b/theme_kea/data/ir_asset.xml @@ -1,22 +1,6 @@ - - theme_kea.s_banner_parallax_000_variables_scss - Banner parallax 000 variables SCSS - web._assets_primary_variables - theme_kea/static/src/old_snippets/s_banner_parallax/000_variables.scss - - - - - theme_kea.s_features_carousel_000_variables_scss - Features carousel 000 variables SCSS - web._assets_primary_variables - theme_kea/static/src/old_snippets/s_features_carousel/000_variables.scss - - - theme_kea.primary_variables_scss Primary variables SCSS diff --git a/theme_kea/static/src/old_snippets/s_banner_parallax/000_variables.scss b/theme_kea/static/src/old_snippets/s_banner_parallax/000_variables.scss deleted file mode 100644 index d29de4f26c..0000000000 --- a/theme_kea/static/src/old_snippets/s_banner_parallax/000_variables.scss +++ /dev/null @@ -1,8 +0,0 @@ -$s-banner-parallax-padding: 0px; -@mixin s-banner-parallax-hero-bg-hook { - width: 100%; - text-align: center; -} -@mixin s-banner-parallax-row-hook { - vertical-align: bottom; -} diff --git a/theme_kea/static/src/old_snippets/s_features_carousel/000_variables.scss b/theme_kea/static/src/old_snippets/s_features_carousel/000_variables.scss deleted file mode 100644 index 4aa7f828ce..0000000000 --- a/theme_kea/static/src/old_snippets/s_features_carousel/000_variables.scss +++ /dev/null @@ -1,8 +0,0 @@ -@mixin s-features-carousel-inner-hook { - .carousel-inner .row { - margin: 0 70px; - @include media-breakpoint-down(md) { - margin: 0; - } - } -} diff --git a/theme_kiddo/data/ir_asset.xml b/theme_kiddo/data/ir_asset.xml index 4696dc6c25..e5bd6c7359 100644 --- a/theme_kiddo/data/ir_asset.xml +++ b/theme_kiddo/data/ir_asset.xml @@ -1,14 +1,6 @@ - - theme_kiddo.s_discount_000_variables_scss - Discount 000 variables SCSS - web._assets_primary_variables - theme_kiddo/static/src/old_snippets/s_discount/000_variables.scss - - - theme_kiddo.primary_variables_scss Primary variables SCSS diff --git a/theme_kiddo/static/src/old_snippets/s_discount/000_variables.scss b/theme_kiddo/static/src/old_snippets/s_discount/000_variables.scss deleted file mode 100644 index de9c11b6ee..0000000000 --- a/theme_kiddo/static/src/old_snippets/s_discount/000_variables.scss +++ /dev/null @@ -1,20 +0,0 @@ -$s-discount-box-border-radius: 0px; -$s-discount-coupon-color: blue; // gamma FIXME -$s-discount-amount-size: 70px; - -@mixin s-discount-descr-hook { - background-color: o-color('beta'); - color: o-color('alpha'); -} -@mixin s-discount-box-hook { - color: map-get($grays, '700'); - - .s_discount_open-code { - color: o-color('gamma'); - } -} -@mixin s-discount-brand-hook { - h3 { - color: o-color('gamma'); - } -} diff --git a/theme_loftspace/data/ir_asset.xml b/theme_loftspace/data/ir_asset.xml index 86e6c5b110..4291bf7b9c 100644 --- a/theme_loftspace/data/ir_asset.xml +++ b/theme_loftspace/data/ir_asset.xml @@ -1,30 +1,6 @@ - - theme_loftspace.s_banner_parallax_000_variables_scss - Banner parallax 000 variables SCSS - web._assets_primary_variables - theme_loftspace/static/src/old_snippets/s_banner_parallax/000_variables.scss - - - - - theme_loftspace.s_features_carousel_000_variables_scss - Features carousel 000 variables SCSS - web._assets_primary_variables - theme_loftspace/static/src/old_snippets/s_features_carousel/000_variables.scss - - - - - theme_loftspace.s_products_carousel_000_variables_scss - Products carousel 000 variables SCSS - web._assets_primary_variables - theme_loftspace/static/src/old_snippets/s_products_carousel/000_variables.scss - - - theme_loftspace.primary_variables_scss Primary variables SCSS diff --git a/theme_loftspace/static/src/old_snippets/s_banner_parallax/000_variables.scss b/theme_loftspace/static/src/old_snippets/s_banner_parallax/000_variables.scss deleted file mode 100644 index fa1a140fa5..0000000000 --- a/theme_loftspace/static/src/old_snippets/s_banner_parallax/000_variables.scss +++ /dev/null @@ -1,53 +0,0 @@ -$s-banner-parallax-height: 100vh; -$s-banner-parallax-padding: 0px; -$s-banner-parallax-img-height: 350px; -$s-banner-parallax-text-shadow: none; -$s-banner-parallax-text-color: auto; -$s-banner-parallax-bg-position: none !important; -$s-banner-parallax-h1-size: 50px; - -@mixin s-banner-parallax-hero-bg-hook { - width: 100%; - text-align: center; - position: relative; - z-index: 10; -}; -@mixin s-banner-parallax-row-hook { - vertical-align: top; - padding: 0; - .hero-bg:before { - content: ""; - width: 0px; - height: 0px; - border-top: 80vh solid rgba(0, 0, 0, 0); - border-bottom: 0px solid rgba(0, 0, 0, 0); - border-left: 50vw solid o-color('gamma'); - position: absolute; - bottom: -85vh; - left: -2px; - opacity: 0.8; - @include media-breakpoint-down(md) { - display: none; - } - } - .hero-bg:after { - content: ""; - width: 0px; - height: 0px; - border-top: 80vh solid rgba(0, 0, 0, 0); - border-bottom: 0px solid rgba(0, 0, 0, 0); - border-right: 50vw solid o-color('gamma'); - position: absolute; - bottom: -85vh; - right: -2px; - opacity: 0.8; - @include media-breakpoint-down(md) { - display: none; - } - } -}; -@mixin s-banner-parallax-height-hook { - @include media-breakpoint-down(lg) { - height: 100vh !important; - } -}; diff --git a/theme_loftspace/static/src/old_snippets/s_features_carousel/000_variables.scss b/theme_loftspace/static/src/old_snippets/s_features_carousel/000_variables.scss deleted file mode 100644 index eee038e2f5..0000000000 --- a/theme_loftspace/static/src/old_snippets/s_features_carousel/000_variables.scss +++ /dev/null @@ -1,13 +0,0 @@ -$s-features-carousel-border-width: 0; -$s-features-carousel-indicators-visible: visible; -@mixin s-features-carousel-inner-hook { - .carousel-inner .row { - margin: 40px 70px; - @include media-breakpoint-down(md) { - margin: 0; - } - } -} -@mixin s-features-carousel-mask-hook { - border: 1px solid map-get($grays, '200'); -} diff --git a/theme_loftspace/static/src/old_snippets/s_products_carousel/000_variables.scss b/theme_loftspace/static/src/old_snippets/s_products_carousel/000_variables.scss deleted file mode 100644 index 2f8a912629..0000000000 --- a/theme_loftspace/static/src/old_snippets/s_products_carousel/000_variables.scss +++ /dev/null @@ -1,4 +0,0 @@ -$s-products-carousel-carousel-height: 100vh; -$s-products-carousel-indicators-position: 120px; -$s-products-carousel-indicators-visible: visible; -$s-products-carousel-hero-bg-padding: 0; diff --git a/theme_monglia/data/ir_asset.xml b/theme_monglia/data/ir_asset.xml index 8dd5152108..67f883a0c7 100644 --- a/theme_monglia/data/ir_asset.xml +++ b/theme_monglia/data/ir_asset.xml @@ -1,38 +1,6 @@ - - theme_monglia.s_banner_parallax_000_variables_scss - Banner parallax 000 variables SCSS - web._assets_primary_variables - theme_monglia/static/src/old_snippets/s_banner_parallax/000_variables.scss - - - - - theme_monglia.s_features_carousel_000_variables_scss - Features carousel 000 variables SCSS - web._assets_primary_variables - theme_monglia/static/src/old_snippets/s_features_carousel/000_variables.scss - - - - - theme_monglia.s_products_carousel_000_variables_scss - Products carousel 000 variables SCSS - web._assets_primary_variables - theme_monglia/static/src/old_snippets/s_products_carousel/000_variables.scss - - - - - theme_monglia.s_big_icons_000_variables_scss - Big icons 000 variables SCSS - web._assets_primary_variables - theme_monglia/static/src/old_snippets/s_big_icons/000_variables.scss - - - theme_monglia.primary_variables_scss Primary variables SCSS diff --git a/theme_monglia/static/src/old_snippets/s_banner_parallax/000_variables.scss b/theme_monglia/static/src/old_snippets/s_banner_parallax/000_variables.scss deleted file mode 100644 index 2ffa0fe885..0000000000 --- a/theme_monglia/static/src/old_snippets/s_banner_parallax/000_variables.scss +++ /dev/null @@ -1,21 +0,0 @@ -$s-banner-parallax-height: 100vh; -$s-banner-parallax-padding: 15px; -$s-banner-parallax-header-shadow: none; -$s-banner-parallax-bg-position: none !important; -$s-banner-parallax-h1-size: 50px; - -@mixin s-banner-parallax-hero-bg-hook { - width: 100%; - text-align: center; - position: relative; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0)); -} -@mixin s-banner-parallax-row-hook { - vertical-align: top; - padding: 0; -} -@mixin s-banner-parallax-height-hook { - @include media-breakpoint-down(md) { - height: 100vh !important; - } -} diff --git a/theme_monglia/static/src/old_snippets/s_big_icons/000_variables.scss b/theme_monglia/static/src/old_snippets/s_big_icons/000_variables.scss deleted file mode 100644 index f6682f303c..0000000000 --- a/theme_monglia/static/src/old_snippets/s_big_icons/000_variables.scss +++ /dev/null @@ -1,24 +0,0 @@ -$s-big-icon-circle-color: blue; // FIXME epsilon -$s-big-icon-circle-icon-size: 150px; -$s-big-icon-circle-text-color: $-gray-700; -@mixin s-big-icon-circle-height-hook { - padding-top: 0; - @include media-breakpoint-down(md) { - height: 100%; - } - .row { - @include media-breakpoint-down(md) { - height: 100%; - } - } - .col-lg-12 { - height: 35%; - } -} -@mixin s-big-icon-circle-fa-hook { - height: 150px; - line-height: 70px; - @include media-breakpoint-down(md) { - height: 80px; - } -} diff --git a/theme_monglia/static/src/old_snippets/s_features_carousel/000_variables.scss b/theme_monglia/static/src/old_snippets/s_features_carousel/000_variables.scss deleted file mode 100644 index eee038e2f5..0000000000 --- a/theme_monglia/static/src/old_snippets/s_features_carousel/000_variables.scss +++ /dev/null @@ -1,13 +0,0 @@ -$s-features-carousel-border-width: 0; -$s-features-carousel-indicators-visible: visible; -@mixin s-features-carousel-inner-hook { - .carousel-inner .row { - margin: 40px 70px; - @include media-breakpoint-down(md) { - margin: 0; - } - } -} -@mixin s-features-carousel-mask-hook { - border: 1px solid map-get($grays, '200'); -} diff --git a/theme_monglia/static/src/old_snippets/s_products_carousel/000_variables.scss b/theme_monglia/static/src/old_snippets/s_products_carousel/000_variables.scss deleted file mode 100644 index 7cae78ca93..0000000000 --- a/theme_monglia/static/src/old_snippets/s_products_carousel/000_variables.scss +++ /dev/null @@ -1,3 +0,0 @@ -$s-products-carousel-carousel-height: 100vh; -$s-products-carousel-indicators-position: 120px; -$s-products-carousel-indicators-visible: visible; diff --git a/theme_notes/data/ir_asset.xml b/theme_notes/data/ir_asset.xml index dca6c3c1b0..f9733a0290 100644 --- a/theme_notes/data/ir_asset.xml +++ b/theme_notes/data/ir_asset.xml @@ -1,22 +1,6 @@ - - theme_notes.s_banner_parallax_000_variables_scss - Banner parallax 000 variables SCSS - web._assets_primary_variables - theme_notes/static/src/old_snippets/s_banner_parallax/000_variables.scss - - - - - theme_notes.s_features_carousel_000_variables_scss - Features carousel 000 variables SCSS - web._assets_primary_variables - theme_notes/static/src/old_snippets/s_features_carousel/000_variables.scss - - - theme_notes.primary_variables_scss Primary variables SCSS diff --git a/theme_notes/static/src/old_snippets/s_banner_parallax/000_variables.scss b/theme_notes/static/src/old_snippets/s_banner_parallax/000_variables.scss deleted file mode 100644 index 7b96f2b8e9..0000000000 --- a/theme_notes/static/src/old_snippets/s_banner_parallax/000_variables.scss +++ /dev/null @@ -1,9 +0,0 @@ -$s-banner-parallax-height: 100vh; -$s-banner-parallax-padding: 0px; -@mixin s-banner-parallax-hero-bg-hook { - width: 100%; - text-align: center; -}; -@mixin s-banner-parallax-row-hook { - vertical-align: bottom; -}; diff --git a/theme_notes/static/src/old_snippets/s_features_carousel/000_variables.scss b/theme_notes/static/src/old_snippets/s_features_carousel/000_variables.scss deleted file mode 100644 index 4aa7f828ce..0000000000 --- a/theme_notes/static/src/old_snippets/s_features_carousel/000_variables.scss +++ /dev/null @@ -1,8 +0,0 @@ -@mixin s-features-carousel-inner-hook { - .carousel-inner .row { - margin: 0 70px; - @include media-breakpoint-down(md) { - margin: 0; - } - } -} diff --git a/theme_odoo_experts/data/ir_asset.xml b/theme_odoo_experts/data/ir_asset.xml index 3ea66fa9c0..0895193c25 100644 --- a/theme_odoo_experts/data/ir_asset.xml +++ b/theme_odoo_experts/data/ir_asset.xml @@ -1,14 +1,6 @@ - - theme_odoo_experts.s_banner_parallax_000_variables_scss - Banner parallax 000 variables SCSS - web._assets_primary_variables - theme_odoo_experts/static/src/old_snippets/s_banner_parallax/000_variables.scss - - - theme_odoo_experts.primary_variables_scss Primary variables SCSS diff --git a/theme_odoo_experts/static/src/old_snippets/s_banner_parallax/000_variables.scss b/theme_odoo_experts/static/src/old_snippets/s_banner_parallax/000_variables.scss deleted file mode 100644 index 0918a3686e..0000000000 --- a/theme_odoo_experts/static/src/old_snippets/s_banner_parallax/000_variables.scss +++ /dev/null @@ -1,16 +0,0 @@ -$s-banner-parallax-text-color: white; -@mixin s-banner-parallax-row-hook { - - .hero-bg:before { - border-top: 0px solid rgba(0, 0, 0, 0); - } - .hero-bg:after { - border-top: 0px solid rgba(0, 0, 0, 0); - } -} -@mixin s-banner-parallax-hero-bg-hook { - margin-top: 200px; - @media screen and (max-width: 640px) { - margin-top: 50px; - } -} diff --git a/theme_treehouse/data/ir_asset.xml b/theme_treehouse/data/ir_asset.xml index 95eca1a1b9..9606a41fc6 100644 --- a/theme_treehouse/data/ir_asset.xml +++ b/theme_treehouse/data/ir_asset.xml @@ -1,22 +1,6 @@ - - theme_treehouse.s_images_row_000_scss - Images row 000 SCSS - web.assets_frontend - theme_treehouse/static/src/old_snippets/s_images_row/000.scss - - - - - theme_treehouse.s_images_carousel_000_scss - Images carousel 000 SCSS - web.assets_frontend - theme_treehouse/static/src/old_snippets/s_images_carousel/000.scss - - - theme_treehouse.primary_variables_scss Primary variables SCSS diff --git a/theme_treehouse/static/src/old_snippets/s_images_carousel/000.scss b/theme_treehouse/static/src/old_snippets/s_images_carousel/000.scss deleted file mode 100644 index 1052a9972a..0000000000 --- a/theme_treehouse/static/src/old_snippets/s_images_carousel/000.scss +++ /dev/null @@ -1,8 +0,0 @@ -.s_images_carousel { - .carousel-inner { - border-radius: $border-radius; - } - .carousel-caption { - border-radius: 10rem; - } -} diff --git a/theme_treehouse/static/src/old_snippets/s_images_row/000.scss b/theme_treehouse/static/src/old_snippets/s_images_row/000.scss deleted file mode 100644 index 33ed259d5f..0000000000 --- a/theme_treehouse/static/src/old_snippets/s_images_row/000.scss +++ /dev/null @@ -1,3 +0,0 @@ -.s_images_row .s_images_row_body { - border-bottom-right-radius: $border-radius; -} diff --git a/theme_yes/data/ir_asset.xml b/theme_yes/data/ir_asset.xml index fbf92852fb..44d11d9a70 100644 --- a/theme_yes/data/ir_asset.xml +++ b/theme_yes/data/ir_asset.xml @@ -1,22 +1,6 @@ - - theme_yes.s_banner_parallax_000_variables_scss - Banner parallax 000 variables SCSS - web._assets_primary_variables - theme_yes/static/src/old_snippets/s_banner_parallax/000_variables.scss - - - - - theme_yes.s_products_carousel_000_variables_scss - Products carousel 000 variables SCSS - web._assets_primary_variables - theme_yes/static/src/old_snippets/s_products_carousel/000_variables.scss - - - theme_yes.primary_variables_scss Primary variables SCSS diff --git a/theme_yes/static/src/old_snippets/s_banner_parallax/000_variables.scss b/theme_yes/static/src/old_snippets/s_banner_parallax/000_variables.scss deleted file mode 100644 index f140d28e6d..0000000000 --- a/theme_yes/static/src/old_snippets/s_banner_parallax/000_variables.scss +++ /dev/null @@ -1,18 +0,0 @@ -$s-banner-parallax-text-color: white; -$s-banner-parallax-height: 100vh; - -@mixin s-banner-parallax-row-hook { - .hero-bg:before { - border-top: 0px solid rgba(0, 0, 0, 0); - } - .hero-bg:after { - border-top: 0px solid rgba(0, 0, 0, 0); - } -} - -@mixin s-banner-parallax-hero-bg-hook { - margin-bottom: 100px; - @media screen and (max-width: 640px) { - margin-top: 50px; - } -} diff --git a/theme_yes/static/src/old_snippets/s_products_carousel/000_variables.scss b/theme_yes/static/src/old_snippets/s_products_carousel/000_variables.scss deleted file mode 100644 index 3b58bd8947..0000000000 --- a/theme_yes/static/src/old_snippets/s_products_carousel/000_variables.scss +++ /dev/null @@ -1,8 +0,0 @@ -$s-products-carousel-carousel-control-color: rgba(0, 0, 0, 0); -$s-products-carousel-carousel-height: 100vh; -$s-products-carousel-indicators-position: 120px; -$s-products-carousel-indicators-visible: visible; - -@mixin s-products-carousel-hook { - display: none; -} From 5f5fffac7d39c5b07cdaeaf2a91498c0af5915ed Mon Sep 17 00:00:00 2001 From: Benoit Socias Date: Tue, 9 Apr 2024 15:34:42 +0200 Subject: [PATCH 3/7] [REM] theme_*: remove old compatibility This commit removes old compatibility assets from all themes. task-3696867 --- theme_anelusia/data/ir_asset.xml | 8 - .../compatibility-saas-11.4-variables.scss | 19 - theme_artists/data/ir_asset.xml | 8 - .../compatibility-saas-11.4-variables.scss | 36 - theme_beauty/data/ir_asset.xml | 8 - .../compatibility-saas-11.4-variables.scss | 37 - theme_bookstore/data/ir_asset.xml | 8 - .../compatibility-saas-11.4-variables.scss | 7 - theme_common/data/ir_asset.xml | 32 - .../src/scss/compatibility-saas-10-1.scss | 17 - .../src/scss/compatibility-saas-10-2.scss | 28 - .../compatibility-saas-11.4-variables.scss | 62 - .../src/scss/compatibility-saas-11.4.scss | 1276 ----------------- theme_kea/data/ir_asset.xml | 8 - .../compatibility-saas-11.4-variables.scss | 13 - theme_loftspace/data/ir_asset.xml | 8 - .../compatibility-saas-11.4-variables.scss | 61 - theme_monglia/data/ir_asset.xml | 8 - .../compatibility-saas-11.4-variables.scss | 50 - theme_notes/data/ir_asset.xml | 8 - .../compatibility-saas-11.4-variables.scss | 15 - theme_odoo_experts/data/ir_asset.xml | 8 - .../compatibility-saas-11.4-variables.scss | 33 - theme_orchid/data/ir_asset.xml | 8 - .../compatibility-saas-11.4-variables.scss | 40 - theme_real_estate/data/ir_asset.xml | 8 - .../compatibility-saas-11.4-variables.scss | 20 - .../src/scss/compatibility-saas-11.4.scss | 212 --- theme_vehicle/data/ir_asset.xml | 8 - .../compatibility-saas-11.4-variables.scss | 7 - theme_yes/data/ir_asset.xml | 8 - .../compatibility-saas-11.4-variables.scss | 35 - 32 files changed, 2104 deletions(-) delete mode 100644 theme_anelusia/static/src/scss/compatibility-saas-11.4-variables.scss delete mode 100644 theme_artists/static/src/scss/compatibility-saas-11.4-variables.scss delete mode 100644 theme_beauty/static/src/scss/compatibility-saas-11.4-variables.scss delete mode 100644 theme_bookstore/static/src/scss/compatibility-saas-11.4-variables.scss delete mode 100644 theme_common/static/src/scss/compatibility-saas-10-1.scss delete mode 100644 theme_common/static/src/scss/compatibility-saas-10-2.scss delete mode 100644 theme_common/static/src/scss/compatibility-saas-11.4-variables.scss delete mode 100644 theme_common/static/src/scss/compatibility-saas-11.4.scss delete mode 100644 theme_kea/static/src/scss/compatibility-saas-11.4-variables.scss delete mode 100644 theme_loftspace/static/src/scss/compatibility-saas-11.4-variables.scss delete mode 100644 theme_monglia/static/src/scss/compatibility-saas-11.4-variables.scss delete mode 100644 theme_notes/static/src/scss/compatibility-saas-11.4-variables.scss delete mode 100644 theme_odoo_experts/static/src/scss/compatibility-saas-11.4-variables.scss delete mode 100644 theme_orchid/static/src/scss/compatibility-saas-11.4-variables.scss delete mode 100644 theme_real_estate/static/src/scss/compatibility-saas-11.4-variables.scss delete mode 100644 theme_treehouse/static/src/scss/compatibility-saas-11.4.scss delete mode 100644 theme_vehicle/static/src/scss/compatibility-saas-11.4-variables.scss delete mode 100644 theme_yes/static/src/scss/compatibility-saas-11.4-variables.scss diff --git a/theme_anelusia/data/ir_asset.xml b/theme_anelusia/data/ir_asset.xml index 20d7e37922..5984918cda 100644 --- a/theme_anelusia/data/ir_asset.xml +++ b/theme_anelusia/data/ir_asset.xml @@ -16,12 +16,4 @@ theme_anelusia/static/src/scss/bootstrap_overridden.scss - - theme_anelusia.compatibility_saas_11_4_variables_scss - Compatibility saas 11 4 variables SCSS - web._assets_primary_variables - /theme_anelusia/static/src/scss/compatibility-saas-11.4-variables.scss - - - 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 deleted file mode 100644 index c510a14593..0000000000 --- a/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-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(md) { - 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_artists/data/ir_asset.xml b/theme_artists/data/ir_asset.xml index b27180cacb..e49e7df231 100644 --- a/theme_artists/data/ir_asset.xml +++ b/theme_artists/data/ir_asset.xml @@ -8,12 +8,4 @@ theme_artists/static/src/scss/primary_variables.scss - - theme_artists.compatibility_saas_11_4_variables_scss - Compatibility saas 11 4 variables SCSS - web._assets_primary_variables - /theme_artists/static/src/scss/compatibility-saas-11.4-variables.scss - - - diff --git a/theme_artists/static/src/scss/compatibility-saas-11.4-variables.scss b/theme_artists/static/src/scss/compatibility-saas-11.4-variables.scss deleted file mode 100644 index 61865bc130..0000000000 --- a/theme_artists/static/src/scss/compatibility-saas-11.4-variables.scss +++ /dev/null @@ -1,36 +0,0 @@ -$s-banner-3-carousel-height: 600px; -$s-banner-3-indicators-visible: visible; -$s-banner-3-padding: 30px; -$s-banner-3-h1-size: 50px; -$s-banner-3-h2-size: 30px; - -@mixin s-banner-3-row-hook { - background-color: rgba(0, 0, 0, 0); - height: auto; - border: none; - width: 100%; - img { - display: none; - } -} - -@mixin s-banner-3-col-center-hook { - text-align: center; - height: auto; - padding-bottom: 20px; - h1, h2 { - color: white; - } - .fa { - transform: none; - font-size: 18px; - } - @include media-breakpoint-down(md) { - width: 100%; - margin-top: 0; - } -} - -@mixin s-banner-3-carousel-control-hook { - display: none; -} diff --git a/theme_beauty/data/ir_asset.xml b/theme_beauty/data/ir_asset.xml index 2398839af2..879ab1aaec 100644 --- a/theme_beauty/data/ir_asset.xml +++ b/theme_beauty/data/ir_asset.xml @@ -16,12 +16,4 @@ theme_beauty/static/src/scss/bootstrap_overridden.scss - - theme_beauty.compatibility_saas_11_4_variables_scss - Compatibility saas 11 4 variables SCSS - web._assets_primary_variables - /theme_beauty/static/src/scss/compatibility-saas-11.4-variables.scss - - - diff --git a/theme_beauty/static/src/scss/compatibility-saas-11.4-variables.scss b/theme_beauty/static/src/scss/compatibility-saas-11.4-variables.scss deleted file mode 100644 index 9ab597c28d..0000000000 --- a/theme_beauty/static/src/scss/compatibility-saas-11.4-variables.scss +++ /dev/null @@ -1,37 +0,0 @@ -$s-banner-3-carousel-height: 500px; -$s-banner-3-padding: 30px; -$s-banner-3-h1-size: 50px; -$s-banner-3-h2-size: 30px; - -@mixin s-banner-3-row-hook { - background-color: rgba(0, 0, 0, 0); - height: auto; - - img { - display: none; - } -} -@mixin s-banner-3-col-center-hook { - text-align: left; - width: 400px; - height: auto; - padding-bottom: 10px; - margin-top: 100px; - background-color: rgba(255, 255, 255, 1); - float: right; - @media screen and (max-width: 640px) { // FIXME - background-color: rgba(255, 255, 255, .5); - text-align: center !important; - width: auto; - margin-top: 0; - } - h1 { - @include media-breakpoint-down(md) { - font-size: 40px !important; - margin-top: 0; - } - } - h2 { - font-size: 30px; - } -} diff --git a/theme_bookstore/data/ir_asset.xml b/theme_bookstore/data/ir_asset.xml index 5a3fbc4f24..b555b9a15d 100644 --- a/theme_bookstore/data/ir_asset.xml +++ b/theme_bookstore/data/ir_asset.xml @@ -16,12 +16,4 @@ theme_bookstore/static/src/scss/bootstrap_overridden.scss - - theme_bookstore.compatibility_saas_11_4_variables_scss - Compatibility saas 11 4 variables SCSS - web._assets_primary_variables - /theme_bookstore/static/src/scss/compatibility-saas-11.4-variables.scss - - - diff --git a/theme_bookstore/static/src/scss/compatibility-saas-11.4-variables.scss b/theme_bookstore/static/src/scss/compatibility-saas-11.4-variables.scss deleted file mode 100644 index ddf5892b7f..0000000000 --- a/theme_bookstore/static/src/scss/compatibility-saas-11.4-variables.scss +++ /dev/null @@ -1,7 +0,0 @@ -@mixin s-banner-3-row-hook { - img { - display: none; - } -} - -$s-big-icon-circle-text-color: $-gray-700; diff --git a/theme_common/data/ir_asset.xml b/theme_common/data/ir_asset.xml index 369618eee7..acbcfbfce8 100644 --- a/theme_common/data/ir_asset.xml +++ b/theme_common/data/ir_asset.xml @@ -79,36 +79,4 @@ theme_common/static/src/scss/fonts.scss - - theme_common.compatibility_saas_10_1_scss - Compatibility saas 10 1 SCSS - web.assets_frontend - /theme_common/static/src/scss/compatibility-saas-10-1.scss - - - - - theme_common.compatibility_saas_10_2_scss - Compatibility saas 10 2 SCSS - web.assets_frontend - /theme_common/static/src/scss/compatibility-saas-10-2.scss - - - - - theme_common.compatibility_saas_11_4_variables_scss - Compatibility saas 11 4 variables SCSS - web._assets_primary_variables - /theme_common/static/src/scss/compatibility-saas-11.4-variables.scss - - - - - theme_common.compatibility_saas_11_4_scss - Compatibility saas 11 4 SCSS - web.assets_frontend - /theme_common/static/src/scss/compatibility-saas-11.4.scss - - - diff --git a/theme_common/static/src/scss/compatibility-saas-10-1.scss b/theme_common/static/src/scss/compatibility-saas-10-1.scss deleted file mode 100644 index 66f2993cae..0000000000 --- a/theme_common/static/src/scss/compatibility-saas-10-1.scss +++ /dev/null @@ -1,17 +0,0 @@ -// This file is for compatibility since saas-10 web_editor refactoring. -// As a fix to work properly in the editor, some classes have been renamed. -// To allow a smooth transition, old classes alias are created here. - -@mixin bg-compatibility-mixin($bg, $color) { - background-color: $bg; - color: $color; - .text-muted { - color: rgba($color, 0.4); - } -} - -.black { @include bg-compatibility-mixin($black, map-get($grays, '600')); } -.darkgray { @include bg-compatibility-mixin(map-get($grays, '800'), $white); } -.gray { @include bg-compatibility-mixin(map-get($grays, '700'), $white); } -.lightgray { @include bg-compatibility-mixin(map-get($grays, '200'), map-get($grays, '700')); } -.white { @include bg-compatibility-mixin($white, map-get($grays, '700')); } diff --git a/theme_common/static/src/scss/compatibility-saas-10-2.scss b/theme_common/static/src/scss/compatibility-saas-10-2.scss deleted file mode 100644 index d202f8ae44..0000000000 --- a/theme_common/static/src/scss/compatibility-saas-10-2.scss +++ /dev/null @@ -1,28 +0,0 @@ -// This file is for compatibility since saas-10 web_editor refactoring. -// As a fix to work properly in the editor, some classes have been renamed. -// To allow a smooth transition, old classes alias are created here. - -// Define new theme variables in case the user changes its theme -$gray-light-light: map-get($grays, '200'); -$gray-light-dark: map-get($grays, '600'); -$gray-dark-light: map-get($grays, '700'); -$gray-dark-dark: map-get($grays, '900'); -$gray-darkest: map-get($grays, '900'); - -body .color-black { color: $black; } -body .color-white { color: $white; } -body .color-gray-lighter { color: map-get($grays, '200'); } -body .color-gray-light-light { color: $gray-light-light; } -body .color-gray-light { color: map-get($grays, '600'); } -body .color-gray-light-dark { color: $gray-light-dark; } -body .color-gray { color: map-get($grays, '700'); } -body .color-gray-dark-light { color: $gray-dark-light; } -body .color-gray-dark { color: map-get($grays, '900'); } -body .color-gray-dark-dark { color: $gray-dark-dark; } -body .color-gray-darker { color: map-get($grays, '900'); } -body .color-gray-darkest { color: $gray-darkest; } -body .color-alpha { color: o-color('alpha'); } -body .color-beta { color: o-color('beta'); } -body .color-gamma { color: o-color('gamma'); } -body .color-delta { color: o-color('delta'); } -body .color-epsilon { color: o-color('epsilon'); } diff --git a/theme_common/static/src/scss/compatibility-saas-11.4-variables.scss b/theme_common/static/src/scss/compatibility-saas-11.4-variables.scss deleted file mode 100644 index 8f484e86bf..0000000000 --- a/theme_common/static/src/scss/compatibility-saas-11.4-variables.scss +++ /dev/null @@ -1,62 +0,0 @@ - -@mixin carousel-indicators($bottom, $bottom-sm) { - bottom: $bottom; - li { - width: 12px; - height: 12px; - border-color: map-get($grays, '900'); - margin: 0; - &:hover { - border-color: o-color('alpha'); - } - &.active { - background-color: o-color('alpha'); - border-color: o-color('alpha'); - margin: 0; - } - } - @include media-breakpoint-down(lg) { - bottom: $bottom-sm; - } -} - -$s-banner-2-background-position: 50% 50%; -$s-banner-2-content-margin: 0; - -$s-banner-3-carosel-control-color: rgba(0, 0, 0, 0); -$s-banner-3-carosel-control-height: 100%; -$s-banner-3-padding: 130px; -$s-banner-3-fa-color: o-color('gamma'); -$s-banner-3-carousel-height: 500px; -$s-banner-3-text-shadow: 1px 1px 11px rgba(0, 0, 0, 0.86); -$s-banner-3-hero-bg-color: o-color('alpha'); -$s-banner-3-indicators-visible: hidden; -$s-banner-3-h1-size: 80px; -$s-banner-3-h2-size: 40px; -$s-banner-3-h1-mobile-font-size: 50px; - -@mixin s-banner-3-col-center-hook {}; -@mixin s-banner-3-row-hook {}; -@mixin s-banner-3-carousel-control-hook {}; -@mixin s-banner-3-carousel-control-right-hook {}; -@mixin s-banner-3-carousel-control-left-hook {}; - -$s-text-big-picture-padding: 50px 0; -$s-text-big-picture-text-align: left; - -@mixin s-text-big-picture-hero-hook {}; -@mixin s-big-picture-text-hero-hook {}; - -$s-big-picture-text-padding: 50px 0; -$s-big-picture-text-align: left; - -@mixin s-big-picture-text-hero-hook {}; -@mixin s-big-picture-row-hook {}; - -$s-cubes-big-cube-min-height: 600px; - -$s-products-carousel-carousel-control-color: rgba(0, 0, 0, 0); -$s-products-carousel-carousel-icon-color: o-color('gamma') !default; - -$s-timeline-company-color: null; -$s-timeline-color: if(variable-exists(color-wind), $color-wind, #F7F7F7); diff --git a/theme_common/static/src/scss/compatibility-saas-11.4.scss b/theme_common/static/src/scss/compatibility-saas-11.4.scss deleted file mode 100644 index 9517997394..0000000000 --- a/theme_common/static/src/scss/compatibility-saas-11.4.scss +++ /dev/null @@ -1,1276 +0,0 @@ - -// This file is for compatibility before 12.0 website snippets refactoring. -// As a fix to work properly in the editor, some classes have been renamed. -// To allow a smoother transition, old classes alias are created here. - -.s_1_column_text, -.s_2_column_text, -.s_3_column_text, -.s_4_column_text { - padding: 30px 0px; -} - -.s_logo_bar { - min-height: 192px; - color: white; - padding: 48px 0; - img { - max-height: 80px; - } - @include media-breakpoint-down(md) { - [class*="col-lg-"] { - padding-bottom: 15px; - } - } -} - -#wrapwrap .s_banner_2.carousel { - margin-top: 0; - margin-bottom: 0; - .row.content { - margin: $s-banner-2-content-margin; - outline: 0; - } - .carousel-box-content { - padding: 15px 30px; - } - .carousel-box-image { - padding: 0; - } - .carousel-inner .item { - background-position: $s-banner-2-background-position; - } - .carousel-control { - @include carousel-control(15px, 0, 2px); - } - .carousel-indicators { - @include carousel-indicators(10px, 10px); - } -} - -.s_banner_3 { - .fa { - color: $s-banner-3-fa-color; - font-size: 35px; - transition: all 0.3s ease 0s; - position: relative; - top: 50%; - transform: translateY(-50%); - &:hover { - color: o-color('beta'); - } - } - .carousel-inner { - height: $s-banner-3-carousel-height; - } - .carousel-control { - opacity: 1; - top: 205px; - width: 70px; - height: 70px; - text-shadow: none; - &.left, &.right { - @include s-banner-3-carousel-control-hook; - background-color: $s-banner-3-carosel-control-color; - background-image: none; - height: $s-banner-3-carosel-control-height; - top: 0px; - } - &.left { - left: 0px; - @include s-banner-3-carousel-control-left-hook; - .fa-chevron-left { - right: 39%; - top: 50%; - } - } - &.right { - right: 0px; - @include s-banner-3-carousel-control-right-hook; - .fa-chevron-right { - left: 39%; - top: 50%; - } - } - } - .carousel-indicators { - bottom: 0px; - visibility: $s-banner-3-indicators-visible; - } - .carousel .carousel-control.left *, .carousel .carousel-control.right * { - position: relative; - top: 19px; - z-index: 5; - } - .container-fluid { - padding: 0; - overflow: hidden; - @include s-banner-3-row-hook; - .row .hero-bg { - @include s-banner-3-col-center-hook; - padding-left: $s-banner-3-padding; - color: $s-banner-3-hero-bg-color; - @include media-breakpoint-down(md) { - top: 0px; - text-align: center; - padding-left: 0px; - } - @media screen and (max-width: 360px) { // FIXME - padding-left: 15px; - } - h1 { - font-size: $s-banner-3-h1-size; - text-shadow: $s-banner-3-text-shadow; - @media screen and (max-width: 360px) { // FIXME - font-size: 50px; - } - } - h2 { - font-size: $s-banner-3-h2-size; - text-shadow: $s-banner-3-text-shadow; - @media screen and (max-width: 360px) { // FIXME - font-size: 30px; - } - } - img { - max-height: 200px; - @media screen and (max-width: 360px) { // FIXME - max-width: 250px; - } - } - } - } -} - -.s_slide_banner { - min-height: 480px; - &.carousel { - overflow: hidden; - .carousel-content { - background: none; - margin-top: 75px; - color: $body-color; - } - .carousel-inner { - height: 100%; - .item { - height: 100%; - background-size: cover; - } - } - .carousel-control { - width: 10%; - cursor: pointer; - span { - @include o-position-absolute($top: 50%); - margin-top: -8px; - } - &.left { - left: -10px; - * { - @include o-position-absolute(50%, 50%); - } - } - &.right { - right: -10px; - * { - @include o-position-absolute($top: 50%); - } - } - } - } -} - -#wrapwrap .s_carousel_boxed .carousel { - .carousel-inner { - border-radius: $border-radius; - } - .carousel-control { - width: 10%; - @include carousel-control(15px, 20px, 3px); - @include fa-size-generator(15px); - .fa { - top: auto; - bottom: 30px; - } - } - .carousel-indicators { - display: none; - } - .carousel-caption { - bottom: 15px; - border-radius: ($border-radius-lg * 3); - min-height: 35px; - padding: 5px 0; - p { - margin: 0; - } - } -} - -.s_text_big_picture { - padding: $s-text-big-picture-padding; - .row { - @include s-big-picture-row-hook; - } - .hero-paragraph { - padding: 0px 40px; - text-align: $s-text-big-picture-text-align; - h1 { - font-weight: 900; - @include s-text-big-picture-hero-hook; - @media only screen and (max-width : 1024px) { - font-size: 25px; - font-weight: 900; - } - } - h2 { - @media only screen and (max-width : 1024px) { - font-size: 20px; - } - } - p { - font-size: 16px; - @media only screen and (max-width : 1024px) { - font-size: 14px; - } - } - } - .hero-image { - padding-left: 0px; - padding-right: 0px; - float: right; - img { - width: 100%; - } - } -} - -.s_big_picture_text { - padding: $s-big-picture-text-padding; - .row { - @include s-big-picture-row-hook; - } - .hero-paragraph { - padding: 0px 40px; - text-align: $s-big-picture-text-align; - h1 { - font-weight: 900; - @include s-big-picture-text-hero-hook; - @media only screen and (max-width : 1024px) { // FIXME - font-size: 25px; - font-weight: 900; - } - } - h2 { - @media only screen and (max-width : 1024px) { // FIXME - font-size: 20px; - } - } - p { - font-size: 16px; - @media only screen and (max-width : 1024px) { // FIXME - font-size: 14px; - } - } - } - .hero-image { - padding-left: 0px; - padding-right: 0px; - img { - width: 100%; - } - } -} - -.s_separator_color hr { - height: 12px; - background-color: $secondary !important; - border-radius: 0px; -} - -#wrapwrap .s_separator_block { - min-height: 1px; -} - -#wrapwrap .s_separator_color hr { - height: 2px; - border-top: 0; - background-color: o-color('beta'); - border-radius: 5px; -} - -#wrapwrap .s_separator_multicolor_fw div { - padding: 0px; - margin: 0; - height: 14px; - - hr { - height: 14px; - border-top: 0; - padding: 0px; - margin: 0; - background: linear-gradient(to right, o-color('beta') 0%, o-color('beta') 30%, o-color('delta') 30%, o-color('delta') 80%, o-color('gamma') 80%); - } -} - -#wrapwrap .s_separator_shade hr { - height: 2px; - border-top: 0; - background: map-get($grays, '700'); - border-radius: 5px; -} - -#wrapwrap .s_separator_multicolor hr { - height: 12px; - border-top: 0; - background: linear-gradient(to right, o-color('beta') 0%, o-color('beta') 30%, o-color('delta') 30%, o-color('delta') 80%, o-color('gamma') 80%); -} - -.s_separator { - border-color: inherit; - border-top: 0; - padding: 8px 0; - margin: 0 0 16px 0; - height: 1px; - display: inline-block; - width: 100%; - border-style: solid; - border-bottom-width: 1px; - &.hr-small { - width: 20%; - } - &.hr-half { - width: 50%; - } - &.hr-full { - width: 100%; - } - &.hr-dashed { - border-style: dashed; - } - &.hr-dotted { - border-style: dotted; - } - &.hr-double { - border-style: double; - } - &.hr-solid { - border-style: solid; - } - @mixin hr-thickness($n) { - @for $i from 1 through $n { - &.hr-#{$i}{ - border-bottom-width: ($i * 1); - } - } - } - @include hr-thickness(5); -} - -.s_testimonial_slider { - &.carousel { - .carousel-inner { - .item { - opacity: 0; - -webkit-transition-property: opacity; - -ms-transition-property: opacity; - transition-property: opacity; - } - .active { - opacity: 1; - -webkit-transition-property: opacity; - -ms-transition-property: opacity; - transition-property: opacity; - } - } - .carousel-indicators { - bottom: 10px; - > li { - background-color: $primary; - border: none; - } - } - } - blockquote { - text-align: center; - border: none; - font-size: 28px; - font-weight: 300; - } - .row > div > img { - @include media-breakpoint-down(md) { - max-height: 100px; - } - } -} - -.s_lead_bar { - min-height: 192px; - overflow: hidden; - color: white; - padding-top: 32px; - p { - color: map-get($grays, '800'); - font-size: 16px; - } -} - -#wrapwrap .s_features_circle { - @include fa-size-generator(20px); -} - -#wrapwrap .s_features_grid_circle { - @include fa-size-generator(20px); - .feature-text { - overflow: hidden; - margin: 0 0 12px 0; - padding: 0 0 0 10px; - } -} - -#wrapwrap .s_quotes_slider_2 { - blockquote{ - padding: 0 20px; - } - &.quotecarousel { - padding: 0; - } - @include blockquote-layout(#fff, map-get($grays, '900')); - .carousel-indicators { - @include carousel-indicators(5px, -5px); - } -} - -#wrapwrap .s_three_columns { - [class*="bg-"] { - border: 10px solid rgba(0, 0, 0, 0); - padding: 20px; - background-clip: padding-box; - > .carousel [class*="bg-"]{ - border: 0; - } - } - .bg-none { - padding: 0; - } - .carousel-control { - @include carousel-control(0, 0, 2px); - } -} - -#wrapwrap .s_icon_box_square { - .fa { - margin: 0 20px; - &:hover { - transition: all 0.3s ease-in-out; - background-color: o-color('gamma'); - } - } - @include fa-size-generator(25px); - .icon_box_content { - overflow: hidden; - } -} - -#wrapwrap .s_icon_box_circle { - .fa { - margin: 0 20px; - &:hover { - transition: all 0.3s ease-in-out; - background-color: o-color('gamma'); - } - } - @include fa-size-generator(25px); - .icon_box_content { - overflow: hidden; - } -} - -#wrapwrap .s_big_icon_square { - text-align: center!important; -} - -#wrapwrap .s_big_icon_square_box { - text-align: center!important; - min-height: 180px; - width: 150px; - margin: 0 auto; - - .fa { - color:white; - font-size: 40px; - } -} - -#wrapwrap .s_big_icon_square_icon { - width:120px; - height:110px; - text-align:center!important; - color:#fff; - padding: 36px 0; - transition: all 0.3s ease-in-out; - background-color: o-color('alpha'); - h5 { - margin-top: 48px; - color: o-color('alpha'); - } -} - -#wrapwrap .s_big_icon_square_box:hover .s_big_icon_square_icon { - transition: all 0.3s ease-in-out; - background-color: o-color('gamma'); -} - -#wrapwrap .s_big_icon_square_box:hover .s_big_icon_square_content h4 { - transition: all 0.3s ease-in-out; - color: o-color('gamma'); -} - -#wrapwrap .s_big_icons { - text-align: center!important; - @include s-big-icon-circle-height-hook; - //fix -- without this in mobile view the circles go to the top and so they hide the h2 and h3 above it. - .col-lg-12 { - float: none; - } -} - -#wrapwrap .s_big_icons_box { - text-align: center!important; - width: 150px; - margin: 0 auto; - - .fa { - color:white; - font-size: 40px; - @include s-big-icon-circle-fa-hook; - } -} - -#wrapwrap .s_big_icons_icon { - width: $s-big-icon-circle-icon-size; - height: $s-big-icon-circle-icon-size; - text-align:center!important; - padding: 40px 0; - transition: all 0.3s ease-in-out; - border-radius: 80px; - margin: 0px auto; - h5 { - margin-top: 48px; - } -} - -#wrapwrap .s_big_icons_box:hover .s_big_icons_icon { - transition: all 0.3s ease-in-out; - background-color: o-color('gamma'); -} - -#wrapwrap .s_big_icons_box:hover .s_big_icons_content h4 { - transition: all 0.3s ease-in-out; - color: o-color('gamma'); -} - -#wrapwrap .s_color_blocks_slider { - width: 100%; - - .s_color_blocks_slider_img { - padding: 0; - } - - .s_color_blocks_slider_content { - padding: 8% 5%; - height: auto; - .fa { - color: white; - } - img { - max-width: 100%; - height: auto; - } - } -} - -#wrapwrap .s_timeline_ul { - list-style: none; - padding: 20px 0 20px; - position: relative; - - &:before { - top: 0; - bottom: 0; - position: absolute; - content: " "; - width: 3px; - background-color: map-get($grays, '200'); - left: 50%; - margin-left: -1.5px; - } - - > li { - margin-bottom: 20px; - position: relative; - - &:before, - &:after { - content: " "; - display: table; - } - - &:after { - clear: both; - } - - &:before, - &:after { - content: " "; - display: table; - } - - &:after { - clear: both; - } - - > .s_timeline_panel { - width: 50%; - position: relative; - float: left; - padding: 0 44px 0 0; - - @include media-breakpoint-down(md) { - width: 100%; - padding: 0; - } - - > div { - background-color: $s-timeline-color; - width: 100%; - float: left; - border: 1px solid #d4d4d4; - border-radius: 2px; - padding: 20px; - position: relative; - -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175); - box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175); - - &:before { - position: absolute; - top: 26px; - right: -15px; - display: inline-block; - border-top: 15px solid rgba(0, 0, 0, 0); - border-left: 15px solid #ccc; - border-right: 0 solid #ccc; - border-bottom: 15px solid rgba(0, 0, 0, 0); - content: " "; - @include media-breakpoint-down(md) { - display: none; - } - } - - &:after { - position: absolute; - top: 27px; - right: -14px; - display: inline-block; - border-top: 14px solid rgba(0, 0, 0, 0); - border-left: 14px solid $s-timeline-color; - border-right: 0 solid $s-timeline-color; - border-bottom: 14px solid rgba(0, 0, 0, 0); - content: " "; - @include media-breakpoint-down(md) { - display: none; - } - } - } - } - - > .s_timeline_badge { - color: #fff; - width: 50px; - height: 50px; - line-height: 50px; - font-size: 1.4em; - text-align: center; - position: absolute; - top: 16px; - left: 50%; - margin-left: -25px; - background-color: #999999; - z-index: 100; - border-top-right-radius: 50%; - border-top-left-radius: 50%; - border-bottom-right-radius: 50%; - border-bottom-left-radius: 50%; - - @include media-breakpoint-down(md) { - display: none; - } - } - - &:not(.s_timeline_inverted) > .s_timeline_panel:nth-child(2n+1) { - float: right; - padding: 0 0 0 44px; - - @include media-breakpoint-down(md) { - padding: 0; - margin-top: 20px; - } - - > div { - float: right; - - &:before { - border-left-width: 0; - border-right-width: 15px; - left: -15px; - right: auto; - } - - &:after { - border-left-width: 0; - border-right-width: 14px; - left: -14px; - right: auto; - } - } - } - - &.s_timeline_inverted > .s_timeline_panel:nth-child(2n) { - float: right; - padding: 0 0 0 44px; - - @include media-breakpoint-down(md) { - padding: 0; - } - - > div { - float: right; - - &:before { - border-left-width: 0; - border-right-width: 15px; - left: -15px; - right: auto; - } - - &:after { - border-left-width: 0; - border-right-width: 14px; - left: -14px; - right: auto; - } - } - } - } -} - -#wrapwrap .s_timeline_badge.primary { - background-color: o-color('alpha') !important; -} - -#wrapwrap .s_timeline_badge.success { - background-color: o-color('beta') !important; -} - -#wrapwrap .s_timeline_badge.warning { - background-color: o-color('delta') !important; -} - -#wrapwrap .s_timeline_badge.danger { - background-color: o-color('epsilon') !important; -} - -#wrapwrap .s_timeline_badge.info { - background-color: o-color('gamma') !important; -} - -#wrapwrap .s_timeline_title { - margin-top: 0; - color: map-get($grays, '800'); -} - -#wrapwrap .s_timeline_info { - margin-top: 0; - color: map-get($grays, '700'); -} - -#wrapwrap .s_timeline_date { - margin-top: 0; - color: map-get($grays, '800'); -} - -$s-timeline-company-color: o-color('alpha') !default; - -#wrapwrap .s_timeline_company { - margin-top: 0; - color: $s-timeline-company-color; -} - -#wrapwrap .s_timeline_heading { - color: map-get($grays, '800'); -} - -#wrapwrap .s_timeline_body > p, -#wrapwrap .s_timeline_body > ul { - margin-bottom: 0; - color: map-get($grays, '800'); -} - -#wrapwrap .s_timeline_body > p + p { - margin-top: 5px; -} - -@include media-breakpoint-down(md) { - #wrapwrap ul.timeline:before { - display: none; - } - - #wrapwrap ul.timeline > li { - margin-bottom: 0; - > .s_timeline_panel { - float: right; - width: 100%; - padding: 0 !important; - margin-bottom: 20px; - > .s_timeline_panel_content { - &:before, &:after { - display: none; - } - } - } - > .s_timeline_badge { - display: none; - } - } -} - -#wrapwrap .s_timeline_icons ul.timeline { - list-style: none; - padding: 0; - &:before { - content: ''; - position: absolute; - width: 1px; - top: 10px; - bottom: 10px; - left: 50%; - background-color: map-get($grays, '700'); - } - - li { - position: relative; - margin-bottom: 15px; - &:before, - &:after { - content: ''; - display: table; - } - &:after { - clear: both; - } - - /* Left & Right */ - .timeline-content, - .timeline-content-double { - position: relative; - width: 50%; - color: map-get($grays, '900'); - &:after { - content: ''; - position: absolute; - top: 10px; - right: 30px; - display: inline-block; - border-top: 5px solid rgba(0, 0, 0, 0); - border-left: 5px solid map-get($grays, '900'); - border-right: 0 solid map-get($grays, '900'); - border-bottom: 5px solid rgba(0, 0, 0, 0); - } - - /* Text */ - .timeline-text { - overflow: hidden; - min-height: 50px; - padding: 3px 10px; - p, ul{ - margin: 0; - + p{ - margin-top: 5px; - } - } - } - - /* Badge */ - .fa { - margin: -5px 0 0 0; - color: #fff; - text-align: center; - } - - /* Icons size */ - @include fa-size-generator(20px); - - } - - /* Date */ - .timeline-date { - position: absolute; - left: 50%; - width: 60px; - height: 30px; - line-height: 30px; - margin-left: -40px; - background-color: #fff; - color: map-get($grays, '900'); - font-weight: 700; - text-align: center; - z-index: $zindex-navbar; - } - - /* Left */ - &:not(.timeline-inverted) .timeline-content, - &.timeline-inverted .timeline-content-double { - float: left; - padding: 0 45px 0 0; - text-align: right; - .fa { - float: right; - margin-left: 10px; - } - } - - /* Right */ - &.timeline-inverted .timeline-content, - &:not(.timeline-inverted) .timeline-content-double { - float: right; - padding: 0 0 0 45px; - &:after { - border-left-width: 0; - border-right-width: 5px; - left: 30px; - right: auto; - } - .fa { - float: left; - margin-right: 10px; - } - } - } -} - -@include media-breakpoint-down(md) { - #wrapwrap .s_timeline_icons ul.timeline { - text-align: center; - &:before{ - display: none; - } - - li { - border-bottom: 1px solid map-get($grays, '200'); - &:last-child{ - border-bottom: 0; - } - &.timeline-inverted .timeline-content, - &.timeline-inverted .timeline-content-double, - &:not(.timeline-inverted) .timeline-content, - &:not(.timeline-inverted) .timeline-content-double { - width: 100%; - padding: 0; - text-align: center; - &:after{ - display: none; - } - - .fa { - float: none; - margin: 10px 0 0 0; - } - - .timeline-text{ - padding: 10px 0 20px 0; - min-height: 0; - } - } - - .timeline-date{ - position: relative; - left: auto; - margin: 0; - background-color: rgba(0, 0, 0, 0); - } - } - } -} - -#wrapwrap .s_images_captions_fw [class*="col-"] { - padding: 0; - p { - display: inline-block; - margin: 0; - padding: 5px 15px; - } -} - -#wrapwrap .s_team_profile_box { - margin: 0.32em; - padding: 32px 24px; - box-shadow: 0px 1px 8px rgba(black, 0.15); - background-color: rgba(white, 0.05); - border: 1px solid rgba(white, 0.05); - img { - border: 4px solid white; - width: 160px; - box-shadow: 1px 1px 8px rgba(black, 0.1); - } - -} - -#wrapwrap .s_team_profile_share { - margin: 24px 0; - .fa { - color: o-color('alpha'); - padding: 0 2px; - } -} - -#wrapwrap .s_team_profiles_2 { - .profile-body { - padding: 30px; - img { - display: inline-block; - margin: 30px 0 0 0; - max-width: 50%; - } - } - .profile-options { - font-size: $font-size-sm; - margin: 0; - div { - border-bottom: 1px solid #fff; - border-right: 1px solid #fff; - padding: 0; - - &:last-child { - border-right: none; - } - } - a { - display: block; - padding: 8px 0; - } - p { - display: block; - padding: 8px 0; - margin-bottom: 0; - - } - .fa { - padding: 16px 0 0 0; - display: block; - } - } -} - -#wrapwrap .s_cubes { - .cube { - min-height: 200px; - - h3 { - text-align: center; - } - h4 { - padding-bottom: 20px; - } - - .cube-heading { - position: relative; - top: 25%; - } - > .row { - height: 50%; - } - } - - .cube-big { - height: 600px; - @media screen and (max-width: 640px) { // FIXME - height: auto; - } - - .cube-heading { - position: relative; - top: 25%; - } - &:first-child { - min-height: $s-cubes-big-cube-min-height; - } - } - - .cube-small, .cube-text { - height: 300px; - } -} - -#wrapwrap .s_news_carousel { - .container { - height: 100%; - .row { - height: 100%; - > div { - height: 100%; - @include media-breakpoint-down(lg) { - height: auto !important; - } - } - } - } - .carousel-inner { - width: 80%; - margin: 0 10%; - @include media-breakpoint-down(lg) { - width: 100%; - margin: 0; - } - .item { - padding: 0 15px; - } - } - .news-carousel-time { - padding: 32px 0; - .day { - display: block; - margin-left: auto; - margin-right: auto; - width: ($h2-font-size * 2); - height: ($h2-font-size * 2); - line-height: ($h2-font-size * 2); - font-size: $h2-font-size; - } - .month { - display: block; - margin-left: auto; - margin-right: auto; - font-size: $h6-font-size; - margin-top: 6px; - } - .year { - display: block; - margin-left: auto; - margin-right: auto; - font-size: $h6-font-size; - } - } - .news-carousel-content { - padding: 32px; - } - .carousel-control { - @include carousel-control(15px, 0, 2px); - .fa { - margin-top: -21px; - @include media-breakpoint-down(lg) { - top: 65px; - margin-top: 0; - } - } - } -} - -#wrapwrap .s_references_2 { - @include blockquote-layout(map-get($grays, '200'), map-get($grays, '900')); - .carousel-indicators { - @include carousel-indicators(-15px, -10px); - } -} - -#wrapwrap .s_medias_list { - background-color: if($s-medias-list-bg-color-main != null, $s-medias-list-bg-color-main, map-get($grays, '200')); - .d-flex { - @include media-breakpoint-down(lg) { - height: auto !important; - } - > .row { - margin: 16px 0; - background-color: #fff; - > [class*="col-"] { - padding: 0; - &.media-content{ - padding: 30px; - } - } - .media-options { - height: 100%; - background-color: map-get($grays, '200'); - > .row { - margin: 0; - [class*="col-"]{ - padding: 0; - margin-bottom: 1px; - p { - margin: 0; - font-size: $font-size-sm; - display: inline-block; - } - @include fa-size-generator(10px); - .fa { - margin-right: 10px; - } - } - } - } - } - } -} - -#wrapwrap .s_products_carousel { - .fa { - color: $s-products-carousel-carousel-icon-color; - font-size: 35px; - transition: all 0.3s ease 0s; - position: relative; - top: 50%; - transform: translateY(-50%); - &:hover { - color: o-color('beta'); - } - } - - .carousel-control { - opacity: 1; - top: 205px; - width: 70px; - height: 70px; - text-shadow: none; - } - - .carousel-control.left, .carousel-control.right { - @include s-products-carousel-hook; - background-color: $s-products-carousel-carousel-control-color; - background-image: none; - height: 100%; - top: 0; - } - - .carousel-control.left { - left: 0; - .fa-chevron-left { - right: 39%; - top: 50%; - } - } - - .carousel-control.right { - right: 0; - .fa-chevron-right { - left: 39%; - top: 50%; - } - } - - .carousel .carousel-control.left *, - .carousel .carousel-control.right * { - position: relative; - top: 19px; - z-index: 5; - } -} diff --git a/theme_kea/data/ir_asset.xml b/theme_kea/data/ir_asset.xml index da5dadb896..138e84d015 100644 --- a/theme_kea/data/ir_asset.xml +++ b/theme_kea/data/ir_asset.xml @@ -23,12 +23,4 @@ theme_kea/static/src/scss/bootstrap_overridden.scss - - theme_kea.compatibility_saas_11_4_variables_scss - Compatibility saas 11 4 variables SCSS - web._assets_primary_variables - /theme_kea/static/src/scss/compatibility-saas-11.4-variables.scss - - - diff --git a/theme_kea/static/src/scss/compatibility-saas-11.4-variables.scss b/theme_kea/static/src/scss/compatibility-saas-11.4-variables.scss deleted file mode 100644 index 2fe1bac102..0000000000 --- a/theme_kea/static/src/scss/compatibility-saas-11.4-variables.scss +++ /dev/null @@ -1,13 +0,0 @@ -$s-banner-3-carosel-control-color: rgba(0, 0, 0, 0); -$s-banner-3-padding: 15px; -$s-banner-3-fa-color: o-color('alpha'); -@mixin s-banner-3-col-center-hook { - text-align: center; - width: 100%; -} - -$s-big-picture-text-padding: 0; - -$s-text-big-picture-padding: 0; - -$s-timeline-company-color: $-gray-700; diff --git a/theme_loftspace/data/ir_asset.xml b/theme_loftspace/data/ir_asset.xml index 4291bf7b9c..8d1edbe2b5 100644 --- a/theme_loftspace/data/ir_asset.xml +++ b/theme_loftspace/data/ir_asset.xml @@ -23,12 +23,4 @@ theme_loftspace/static/src/scss/bootstrap_overridden.scss - - theme_loftspace.compatibility_saas_11_4_variables_scss - Compatibility saas 11 4 variables SCSS - web._assets_primary_variables - /theme_loftspace/static/src/scss/compatibility-saas-11.4-variables.scss - - - diff --git a/theme_loftspace/static/src/scss/compatibility-saas-11.4-variables.scss b/theme_loftspace/static/src/scss/compatibility-saas-11.4-variables.scss deleted file mode 100644 index a3e9d23328..0000000000 --- a/theme_loftspace/static/src/scss/compatibility-saas-11.4-variables.scss +++ /dev/null @@ -1,61 +0,0 @@ -$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; -$s-banner-3-text-shadow: none; -$s-banner-3-hero-bg-color: #000; -$s-banner-3-indicators-visible: visible; - @mixin s-banner-3-row-hook { - background-color: o-color('alpha'); - width: 100%; - position: absolute; -} -@mixin s-banner-3-col-center-hook { - text-align: center; - width: 100%; -} -@mixin s-banner-3-carousel-control-hook { - display: none; -} - -$s-big-icon-circle-color: o-color('epsilon'); -$s-big-icon-circle-icon-size: 150px; -@mixin s-big-icon-circle-height-hook { - height: 100vh; - padding-top: 0; - @include media-breakpoint-down(xl) { - height: 100%; - } - .row { - height: 100vh; - @include media-breakpoint-down(xl) { - height: 100%; - } - } - .col-lg-12 { - height: 35%; - padding-top: 10%; - } -} -@mixin s-big-icon-circle-fa-hook { - height: 100px; - line-height: 70px; - @include media-breakpoint-down(xl) { - height: 80px; - } -} - -$s-big-picture-text-padding: 0; -$s-big-picture-text-align: center; -@mixin s-big-picture-text-hero-hook { - border-bottom: 1px solid o-color('epsilon'); -} - -$s-text-big-picture-padding: 0; -$s-text-big-picture-text-align: center; -@mixin s-text-big-picture-hero-hook { - border-bottom: 1px solid o-color('epsilon'); - margin: 0 20%; -} - -$s-timeline-company-color: $-gray-700; diff --git a/theme_monglia/data/ir_asset.xml b/theme_monglia/data/ir_asset.xml index 67f883a0c7..318b731d4c 100644 --- a/theme_monglia/data/ir_asset.xml +++ b/theme_monglia/data/ir_asset.xml @@ -15,12 +15,4 @@ theme_monglia/static/src/scss/secondary_variables.scss - - theme_monglia.compatibility_saas_11_4_variables_scss - Compatibility saas 11 4 variables SCSS - web._assets_primary_variables - /theme_monglia/static/src/scss/compatibility-saas-11.4-variables.scss - - - diff --git a/theme_monglia/static/src/scss/compatibility-saas-11.4-variables.scss b/theme_monglia/static/src/scss/compatibility-saas-11.4-variables.scss deleted file mode 100644 index 29f6fc6b6f..0000000000 --- a/theme_monglia/static/src/scss/compatibility-saas-11.4-variables.scss +++ /dev/null @@ -1,50 +0,0 @@ -$s-banner-3-carosel-control-color: rgba(0, 0, 0, 0); -$s-banner-3-padding: 15px; -$s-banner-3-fa-color: white; // FIXME alpha -$s-banner-3-carousel-height: 100vh; -$s-banner-3-text-shadow: none; -$s-banner-3-hero-bg-color: #000; -$s-banner-3-indicators-visible: visible; -$s-banner-3-h1-size: 45px; -$s-banner-3-h2-size: 25px; - -@mixin s-banner-3-row-hook { - background-color: rgba(255, 255, 255, 0.5); - border: 1px solid o-color('alpha'); - height: 200px; - width: 400px; - position: relative; - top: 50%; - transform: translateY(-50%); - float: left; - img { - display: none; - } - @include media-breakpoint-down(md) { - top: 100px; - width: 100%; - } -} -@mixin s-banner-3-col-center-hook { - text-align: center; - width: 100%; -} -@mixin s-banner-3-carousel-control-hook { - display: none; -} - -$s-big-picture-text-padding: 0; -$s-big-picture-text-align: center; -@mixin s-big-picture-text-hero-hook { - border-bottom: 1px solid o-color('epsilon'); - margin: 0 20%; -} - -$s-text-big-picture-padding: 0; -$s-text-big-picture-text-align: center; -@mixin s-text-big-picture-hero-hook { - border-bottom: 1px solid o-color('epsilon'); - margin: 0 20%; -} - -$s-timeline-company-color: $-gray-700; diff --git a/theme_notes/data/ir_asset.xml b/theme_notes/data/ir_asset.xml index f9733a0290..a92d810427 100644 --- a/theme_notes/data/ir_asset.xml +++ b/theme_notes/data/ir_asset.xml @@ -23,12 +23,4 @@ theme_notes/static/src/scss/bootstrap_overridden.scss - - theme_notes.compatibility_saas_11_4_variables_scss - Compatibility saas 11 4 variables SCSS - web._assets_primary_variables - /theme_notes/static/src/scss/compatibility-saas-11.4-variables.scss - - - diff --git a/theme_notes/static/src/scss/compatibility-saas-11.4-variables.scss b/theme_notes/static/src/scss/compatibility-saas-11.4-variables.scss deleted file mode 100644 index e81a356086..0000000000 --- a/theme_notes/static/src/scss/compatibility-saas-11.4-variables.scss +++ /dev/null @@ -1,15 +0,0 @@ -$s-banner-3-carosel-control-color: rgba(0, 0, 0, 0); -$s-banner-3-padding: 0px; -@mixin s-banner-3-col-center-hook { - margin-left: 16.6667%; - text-align: center; - @include media-breakpoint-down(md) { - margin-left: 0px; - } -} - -$s-big-picture-text-padding: 0; - -$s-text-big-picture-padding: 0; - -$s-timeline-company-color: $-gray-700; diff --git a/theme_odoo_experts/data/ir_asset.xml b/theme_odoo_experts/data/ir_asset.xml index 0895193c25..8664bd8c0f 100644 --- a/theme_odoo_experts/data/ir_asset.xml +++ b/theme_odoo_experts/data/ir_asset.xml @@ -16,12 +16,4 @@ theme_odoo_experts/static/src/scss/bootstrap_overridden.scss - - theme_odoo_experts.compatibility_saas_11_4_variables_scss - Compatibility saas 11 4 variables SCSS - web._assets_primary_variables - /theme_odoo_experts/static/src/scss/compatibility-saas-11.4-variables.scss - - - diff --git a/theme_odoo_experts/static/src/scss/compatibility-saas-11.4-variables.scss b/theme_odoo_experts/static/src/scss/compatibility-saas-11.4-variables.scss deleted file mode 100644 index 3bc48df266..0000000000 --- a/theme_odoo_experts/static/src/scss/compatibility-saas-11.4-variables.scss +++ /dev/null @@ -1,33 +0,0 @@ -$s-banner-3-carousel-height: 500px; -$s-banner-3-padding: 30px; -$s-banner-3-h1-size: 50px; -$s-banner-3-h2-size: 30px; - -@mixin s-banner-3-row-hook { - background-color: rgba(0, 0, 0, 0); - height: auto; - img { - display: none; - } -} -@mixin s-banner-3-col-center-hook { - text-align: center; - width: 400px; - height: auto; - margin-top: 100px; - background-color: rgba(0, 0, 0, .3); - padding-bottom: 20px; - h1, h2 { - color: white; - } - .fa { - transform: none; - font-size: 18px; - } - @include media-breakpoint-down(md) { - width: 100%; - margin-top: 0; - } -} - -$s-big-icon-circle-text-color: $-gray-700; diff --git a/theme_orchid/data/ir_asset.xml b/theme_orchid/data/ir_asset.xml index 6426ad95ad..bc4f86c746 100644 --- a/theme_orchid/data/ir_asset.xml +++ b/theme_orchid/data/ir_asset.xml @@ -16,12 +16,4 @@ theme_orchid/static/src/scss/bootstrap_overridden.scss - - theme_orchid.compatibility_saas_11_4_variables_scss - Compatibility saas 11 4 variables SCSS - web._assets_primary_variables - /theme_orchid/static/src/scss/compatibility-saas-11.4-variables.scss - - - diff --git a/theme_orchid/static/src/scss/compatibility-saas-11.4-variables.scss b/theme_orchid/static/src/scss/compatibility-saas-11.4-variables.scss deleted file mode 100644 index d4e167b433..0000000000 --- a/theme_orchid/static/src/scss/compatibility-saas-11.4-variables.scss +++ /dev/null @@ -1,40 +0,0 @@ -$s-banner-3-carousel-height: 500px; -$s-banner-3-padding: 30px; -$s-banner-3-h1-size: 50px; -$s-banner-3-h2-size: 30px; - -@mixin s-banner-3-row-hook { - background-color: rgba(0, 0, 0, 0); - height: auto; - img { - display: none; - } -} -@mixin s-banner-3-col-center-hook { - text-align: left; - width: 400px; - height: auto; - padding-bottom: 10px; - margin-top: 100px; - background-color: white; - border: 15px solid rgba(255, 255, 255, .5); - @include media-breakpoint-down(xl) { - text-align: left !important; - width: auto; - margin-top: 0; - } - h1 { - font-size: 40px; - } - h2 { - font-size: 30px; - } -} -@mixin s-banner-3-hook { - border: 15px solid white; - border-left-width: 50px; - border-right-width: 50px; - @include media-breakpoint-down(md) { - border-width: 10px; - } -} diff --git a/theme_real_estate/data/ir_asset.xml b/theme_real_estate/data/ir_asset.xml index eaa1ec7cf0..1c0025969d 100644 --- a/theme_real_estate/data/ir_asset.xml +++ b/theme_real_estate/data/ir_asset.xml @@ -8,12 +8,4 @@ theme_real_estate/static/src/scss/primary_variables.scss - - theme_real_estate.compatibility_saas_11_4_variables_scss - Compatibility saas 11 4 variables SCSS - web._assets_primary_variables - /theme_real_estate/static/src/scss/compatibility-saas-11.4-variables.scss - - - diff --git a/theme_real_estate/static/src/scss/compatibility-saas-11.4-variables.scss b/theme_real_estate/static/src/scss/compatibility-saas-11.4-variables.scss deleted file mode 100644 index 756f295e84..0000000000 --- a/theme_real_estate/static/src/scss/compatibility-saas-11.4-variables.scss +++ /dev/null @@ -1,20 +0,0 @@ -$s-banner-3-carousel-row-height: auto; - -@mixin s-banner-3-row-hook { - background-color: white; - float: right; - height: auto; - margin-right: 150px; - @media screen and (max-width: 640px) { - float: none; - } - img { - display: none; - } -} - -@mixin s-banner-3-carousel-control-hook { - display: inherit; -} - -$s-big-icon-circle-text-color: $-gray-700; diff --git a/theme_treehouse/static/src/scss/compatibility-saas-11.4.scss b/theme_treehouse/static/src/scss/compatibility-saas-11.4.scss deleted file mode 100644 index c6453c43a7..0000000000 --- a/theme_treehouse/static/src/scss/compatibility-saas-11.4.scss +++ /dev/null @@ -1,212 +0,0 @@ -// From old theme common. -@mixin fa-size-generator($base-size) { - .fa { - text-align: center; - display: inline-block; - vertical-align: middle; - } - .fa, - .fa.fa-1x { - width: ($base-size + 20px); - height: ($base-size + 20px); - line-height: ($base-size + 20px); - } - .fa.fa-2x { - width: ($base-size + 40px); - height: ($base-size + 40px); - line-height: ($base-size + 40px); - } - .fa.fa-3x { - width: ($base-size + 60px); - height: ($base-size + 60px); - line-height: ($base-size + 60px); - } - .fa.fa-4x { - width: ($base-size + 80px); - height: ($base-size + 80px); - line-height: ($base-size + 80px); - } - .fa.fa-5x { - width: ($base-size + 100px); - height: ($base-size + 100px); - line-height: ($base-size + 100px); - } -} - -@mixin carousel-control($position, $fa-position, $fa-padding) { - opacity: 1; - text-shadow: none; - color: map-get($grays, '900'); - font-size: inherit; - width: 5%; - .fa { - top: 50%; - background-color: #fff; - &:hover { - color: map-get($theme-colors, 'primary'); - } - @include media-breakpoint-down(md) { - top: auto; - bottom: 0; - } - } - @include fa-size-generator(20px); - &.left { - background-image: none; - left: $position; - .fa { - left: $fa-position; - right: auto; - padding-right: $fa-padding; - } - } - &.right { - background-image: none; - right: $position; - .fa { - right: $fa-position; - left: auto; - padding-left: $fa-padding; - } - } -} - -#wrapwrap { - - // Carousel - .carousel-control .fa { - border-radius: 50%; - padding-top: 2px; - &:hover { - color: o-color('alpha') !important; - } - } - - // Banner Carousel - .s_banner_2.carousel { - .carousel-box-content { - border-radius: $border-radius; - } - .carousel-control { - width: 10%; - @include carousel-control(0, 20px, 3px); - @include fa-size-generator(15px); - .fa { - top: auto; - bottom: 30px; - } - } - .carousel-indicators { - background-color: #fff; - height: 35px; - line-height: 38px; - width: auto; - left: 50%; - right: auto; - bottom: 20px; - margin-right: -50%; - margin-left: 0; - transform: translate(-50%, 0); - padding: 0 40px; - border-radius: $border-radius-lg; - } - } - - // 3-Columns Carousel - .s_three_columns .carousel-control { - width: auto; - min-width: 35px; - @include carousel-control(15px, 0, 2px); - @include fa-size-generator(15px); - .fa { - top: auto; - bottom: 15px; - } - } - - // Border-radius - .panel-group .panel, - .s_medias_list .row, - .s_text_block_image_fw [class*="col-lg-"], - .s_well { - border-radius: $border-radius; - } - - // Team Profile - .profile-body { - @include border-top-radius($border-radius); - } - - // Label - .label { - padding: 6px 10px; - i { - opacity: 0.5; - } - } - - // Images + Captions - .s_images_captions_fw p { - border-bottom-right-radius: $border-radius; - } - - // Panel - .s_panel { - &.panel { - background-color: inherit; - } - .panel-heading { - border: 0; - .fa { - margin-right: 12px; - } - } - } - .panel { - box-shadow: none; - } - - // Well - .s_well { - box-shadow: none; - .card-text { - overflow: hidden; - } - ol, p, ul { - width: 100%; - &:last-child { - margin-bottom: 0; - } - } - } - - // Big Message - .s_big_message { - margin: 0; - padding: 20px 0 40px; - } - - // Comparisons - .s_comparisons { - .list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover { - background-color: map-get($theme-colors, 'primary'); - border-color: map-get($theme-colors, 'primary'); - } - .panel-body h2 small { - color: map-get($grays, '900'); - } - } - - // Jumbotron - .jumbotron { - margin: 0; - p { - font-weight: $font-weight-base; - } - } - - // Features - .s_features { - @include fa-size-generator(20); - } -} diff --git a/theme_vehicle/data/ir_asset.xml b/theme_vehicle/data/ir_asset.xml index f5008dd3c2..648acbcc34 100644 --- a/theme_vehicle/data/ir_asset.xml +++ b/theme_vehicle/data/ir_asset.xml @@ -8,14 +8,6 @@ theme_vehicle/static/src/scss/primary_variables.scss - - theme_vehicle.compatibility_saas_11_4_variables_scss - Compatibility saas 11 4 variables SCSS - web._assets_primary_variables - /theme_vehicle/static/src/scss/compatibility-saas-11.4-variables.scss - - - theme_vehicle.bootstrap_overridden_scss Bootstrap overridden SCSS diff --git a/theme_vehicle/static/src/scss/compatibility-saas-11.4-variables.scss b/theme_vehicle/static/src/scss/compatibility-saas-11.4-variables.scss deleted file mode 100644 index ddf5892b7f..0000000000 --- a/theme_vehicle/static/src/scss/compatibility-saas-11.4-variables.scss +++ /dev/null @@ -1,7 +0,0 @@ -@mixin s-banner-3-row-hook { - img { - display: none; - } -} - -$s-big-icon-circle-text-color: $-gray-700; diff --git a/theme_yes/data/ir_asset.xml b/theme_yes/data/ir_asset.xml index 44d11d9a70..d2c7fbadde 100644 --- a/theme_yes/data/ir_asset.xml +++ b/theme_yes/data/ir_asset.xml @@ -8,12 +8,4 @@ theme_yes/static/src/scss/primary_variables.scss - - theme_yes.compatibility_saas_11_4_variables_scss - Compatibility saas 11 4 variables SCSS - web._assets_primary_variables - /theme_yes/static/src/scss/compatibility-saas-11.4-variables.scss - - - diff --git a/theme_yes/static/src/scss/compatibility-saas-11.4-variables.scss b/theme_yes/static/src/scss/compatibility-saas-11.4-variables.scss deleted file mode 100644 index d2889f0fc3..0000000000 --- a/theme_yes/static/src/scss/compatibility-saas-11.4-variables.scss +++ /dev/null @@ -1,35 +0,0 @@ -$s-banner-3-carousel-height: 100vh; -$s-banner-3-indicators-visible: visible; -$s-banner-3-padding: 30px; -$s-banner-3-h1-size: 50px; -$s-banner-3-h2-size: 30px; - -@mixin s-banner-3-row-hook { - background-color: rgba(0, 0, 0, 0); - height: auto; - - img { - display: none; - } -} - -@mixin s-banner-3-col-center-hook { - text-align: center; - height: auto; - padding-bottom: 20px; - h1, h2 { - color: white; - } - .fa { - transform: none; - font-size: 18px; - } - @include media-breakpoint-down(md) { - width: 100%; - margin-top: 0; - } -} - -@mixin s-banner-3-carousel-control-hook { - display: none; -} From e753dac13c811e5f6752d6f90595423dbd9754c7 Mon Sep 17 00:00:00 2001 From: Benoit Socias Date: Tue, 9 Apr 2024 16:04:06 +0200 Subject: [PATCH 4/7] [REM] theme_common: remove mixins Since no mixin is used anymore, the file can be deleted. task-3696867 --- theme_common/static/src/scss/mixins.scss | 1205 ---------------------- 1 file changed, 1205 deletions(-) delete mode 100644 theme_common/static/src/scss/mixins.scss diff --git a/theme_common/static/src/scss/mixins.scss b/theme_common/static/src/scss/mixins.scss deleted file mode 100644 index ee9eceb41c..0000000000 --- a/theme_common/static/src/scss/mixins.scss +++ /dev/null @@ -1,1205 +0,0 @@ -@function o-theme-common-add-color-variations($from, $to, $variations: ('light': 10%, 'dark': -10%)) { - $color-variations: (); - @each $color-name in ('alpha', 'beta', 'gamma', 'delta', 'epsilon') { - $color: map-get($from, $color-name); - @if $color != null { - @each $variation-name, $amount in $variations { - $color-variations: map-merge($color-variations, ( - '#{$color-name}-#{$variation-name}': adjust-color($color, $lightness: $amount), - )); - } - } - } - @return map-merge($color-variations, $to); -} - -@mixin fa-size-generator($base-size) { - .fa { - text-align: center; - display: inline-block; - vertical-align: middle; - } - .fa, - .fa.fa-1x { - width: ($base-size + 20px); - height: ($base-size + 20px); - line-height: ($base-size + 20px); - } - .fa.fa-2x { - width: ($base-size + 40px); - height: ($base-size + 40px); - line-height: ($base-size + 40px); - } - .fa.fa-3x { - width: ($base-size + 60px); - height: ($base-size + 60px); - line-height: ($base-size + 60px); - } - .fa.fa-4x { - width: ($base-size + 80px); - height: ($base-size + 80px); - line-height: ($base-size + 80px); - } - .fa.fa-5x { - width: ($base-size + 100px); - height: ($base-size + 100px); - line-height: ($base-size + 100px); - } -} - -@mixin blockquote-layout($bg-color, $color) { - blockquote { - font-style: italic; - margin: 0 0 12px 0; - padding: 0; - border: 0; - > .fa, - > span .fa { - float: left; - } - @include fa-size-generator(20px); - img { - display: inline-block; - max-width: 40px; - max-height: 40px; - } - small { - display: inline-block; - } - .blockquote-text { - overflow: hidden; - font-size: $font-size-base; - text-align: left; - &:focus{ - outline: none; - } - } - p { - padding: 24px; - } - } -} - -@mixin carousel-control($position, $fa-position, $fa-padding) { - opacity: 1; - text-shadow: none; - color: map-get($grays, '900'); - font-size: inherit; - width: 5%; - .fa { - top: 50%; - background-color: #fff; - &:hover { - color: map-get($theme-colors, 'primary'); - } - @include media-breakpoint-down(md) { - top: auto; - bottom: 0; - } - } - @include fa-size-generator(20px); - &.left { - background-image: none; - left: $position; - .fa { - left: $fa-position; - right: auto; - padding-right: $fa-padding; - } - } - &.right { - background-image: none; - right: $position; - .fa { - right: $fa-position; - left: auto; - padding-left: $fa-padding; - } - } -} - -@mixin PlaceholderStyle($color) { - ::-webkit-input-placeholder { /* WebKit browsers */ - color: $color; - } - :-moz-placeholder { /* Mozilla Firefox 4 to 18 */ - color: $color; - opacity: 1; - } - ::-moz-placeholder { /* Mozilla Firefox 19+ */ - color: $color; - opacity: 1; - } - :-ms-input-placeholder { /* Internet Explorer 10+ */ - color: $color; - } -} - -//------------------------------------------------------------------------------ -// Themes specific style. -// -// This was introduced as a post-stable-12.0 review. The goal is to regroup -// similar block of scss code (accross different theme) in theme_common -// mixins which are then simply called in the related themes. This will ease -// stable fixes and master refactorings. -//------------------------------------------------------------------------------ - -@mixin o-theme-responsive-spacing-classes($lg, $md, $sm, $xs) { - @include media-breakpoint-down(xl) { - @include o-spacing-all($lg); - } - @include media-breakpoint-down(lg) { - @include o-spacing-all($md); - } - @include media-breakpoint-down(md) { - @include o-spacing-all($sm); - } - @include media-breakpoint-down(sm) { - @include o-spacing-all($xs); - } -} - -@mixin o-theme-cfa-bg-img-classes( - $bg1: $o-theme-bg-img-01, $bg2: $o-theme-bg-img-02, $bg3: $o-theme-bg-img-03, - $bg4: $o-theme-bg-img-04, $bg5: $o-theme-bg-img-05, $bg6: $o-theme-bg-img-06, - $bg7: $o-theme-bg-img-07) { - %cfa-bg-img { - background-size: cover; - background-position: center center; - } - .bg-img-01 { - @extend %cfa-bg-img; - background-image: $bg1; - } - .bg-img-02 { - @extend %cfa-bg-img; - background-image: $bg2; - } - .bg-img-03 { - @extend %cfa-bg-img; - background-image: $bg3; - } - .bg-img-04 { - @extend %cfa-bg-img; - background-image: $bg4; - } - .bg-img-05 { - @extend %cfa-bg-img; - background-image: $bg5; - } - .bg-img-06 { - @extend %cfa-bg-img; - background-image: $bg6; - } - .bg-img-07 { - @extend %cfa-bg-img; - background-image: $bg7; - } -} - -// This is probably to deprecate -@mixin o-theme-cfa-px-classes() { - .px14 { - font-size: 14px !important; - line-height: 25px; - } - .px16 { - font-size: 16px !important; - line-height: 28px; - } - .px18 { - font-size: 18px !important; - line-height: 30px; - } - .px22 { - font-size: 22px !important; - line-height: 32px; - } - .px30 { - font-size: 30px !important; - line-height: 30px; - } - .px36 { - font-size: 36px !important; - line-height: 36px; - } - .px42 { - font-size: 42px !important; - line-height: 42px; - } - .px50 { - font-size: 50px !important; - line-height: 50px; - } - .px60 { - font-size: 60px !important; - line-height: 60px; - } -} - -@mixin o-theme-cfa-btn-main-style() { - .btn { - transition: all 0.3s ease-out; - } -} - -@mixin o-theme-cfa-btn-style() { - @include o-theme-cfa-btn-main-style(); - - @if ($o-support-13-0-color-system) { - .btn { - // TODO this is not very consistent but this was how the theme was - // designed... should we keep this ? - @each $color, $alias in ('success': 'epsilon', 'info': 'gamma', 'warning': 'delta') { - &.btn-#{$color} { - @include button-variant(map-get($theme-colors, $alias), map-get($theme-colors, $alias)); - } - &.btn-outline-#{$color} { - @include button-outline-variant(map-get($theme-colors, $alias)); - } - } - &.btn-danger { - @include button-variant(map-get($grays, 'black'), map-get($grays, 'black')); - } - &.btn-outline-danger { - @include button-outline-variant(map-get($grays, 'black'), map-get($grays, 'black')); - } - } - } -} - -@mixin o-theme-cfa-header-responsive-sizes() { - @include media-breakpoint-down(md) { - h1 { - font-size: 30px; - } - h2 { - font-size: 26px; - } - h3 { - font-size: 22px; - } - } -} - -@mixin o-theme-cfa-custom-form-control($with-color: true, $with-focus-border-width: true) { - border-top-width: 0px; - border-left-width: 0px; - border-right-width: 0px; - border-radius: 0px; - @if $with-color { - color: map-get($grays, '700'); - } - - &:focus { - border-bottom-color: o-color('primary'); - @if $with-focus-border-width { - border-bottom-width: 2px; - } - } - - + .input-group-append { - margin-left: 1em; - } -} - -@mixin o-theme-cfa-full-width-styles() { - #wrapwrap { - #wrap { - width: 100%; - max-width: 100%; - margin: auto; - } - .navbar > .container { - max-width: 100%; - } - } - #footer { - width: 100%; - } -} - -@mixin o-theme-cfa-card-classes($font-size: $h4-font-size) { - .card-header { - background-color: inherit; - border: none; - font-size: $font-size; - } - .card-footer { - background: inherit; - } - .card { - text-align: center; - box-shadow: none; - border-radius: 0px; - } -} - -@mixin o-theme-cfa-top-menu-style($padding: 0, $display: flex, $margin: 0, $media-padding: 0, - $bg-color: white, $top: auto, $font-size: inherit, $dropdown-item-color: o-color('delta'), - $dropdown-item-hover-bg-color: rgba(0, 0, 0, 0), $dropdown-item-hover-color: o-color('epsilon'), - $nav-link-color: rgba(0, 0, 0, 0.5), $font-weight: normal, $text-transform: none, - $transition: all 0s ease 0s) { - - padding: $padding; - margin: $margin; - @include media-breakpoint-up(md) { - display: $display; - } - @include media-breakpoint-down(md) { - padding: $media-padding; - } - .divider { - display: none; - } - .nav-link { - font-weight: $font-weight; - text-transform: $text-transform; - transition: $transition; - - &.active { - font-weight: bolder; - } - } - .dropdown-menu, .navbar-collapse { // FIXME navbar should be removed ? (https://github.com/odoo/design-themes/commit/d20298fe41fdee5324c7e32f78e89d26edc71896#diff-042ad6434fc37ef55af3ca7db63906b8L259) - border-radius: 0px; - box-shadow: none; - top: $top; - .dropdown-item, .nav-link { - font-size: $font-size; - } - .dropdown-divider, .divider { - margin: 0; - } - } -} - -@mixin o-theme-cfa-footer-style($font-size: 14px, $container-padding: 8px 65px 32px, $padding: 0, $border-top: 0, $margin-right: 50px, $h4-padding: 0 0 0 20px, $text-transform: uppercase) { - - .container { - .js_language_selector .dropdown-toggle { - padding: 6px 20px; - } - p, .list-unstyled { - font-size: $font-size; - } - h4 { - margin-right: $margin-right; - padding: $h4-padding; - text-transform: $text-transform; - } - } - .o_footer_copyright { - border-top: $border-top; - padding: $padding; - } -} - -@mixin o-theme-cfa-ecommerce-classes( - $nav-link-color: o-color('epsilon'), $nav-link-hover-color: o-color('beta'), $nav-link-hover-bg-color: map-get($grays, '800'), - $nav-link-active-bg-color: rgba(0, 0, 0, 0), $nav-link-active-color: o-color('epsilon'), - $js-attributes-padding: 0px 15px 15px 15px, $js-attributes-strong-color: o-color('gamma'), $js-attributes-label-color: map-get($grays, '700'), - $h6-padding-y: 10px, $h6-font-size: 13px, $h6-text-align: left, $h6-border-top: 0, $h6-border-bottom: 0, $h6-color: o-color('delta'), - $price-font-size: 12px, $product-price-padding: 0, $product-price-align: left, $btn-secondary-padding: 5px 10px, - $right-column-border-bottom: 1px solid map-get($grays, '700'), $right-column-color: map-get($grays, '700'), $right-column-font-weight: bold, - $add-cart-bg-color: map-get($grays, '700'), $add-cart-color: white, $add-cart-width: auto, $price-h4: 25px) { - - .breadcrumb { - padding-top: 20px; - font-size: 15px; - } - .form-inline .input-group { - .form-control { - width: 100%; - box-shadow: none; - &:focus { - box-shadow: none; - } - } - .input-group-btn { - width: 50px; - .btn { - line-height: 2.5; - } - .btn-secondary { - border-radius: 0px; - height: 50px; - width: 50px; - } - } - } - .js_add_cart_variants { - li strong { - font-size: 20px; - } - } - .oe_product { - .btn.btn-danger { - @include button-variant(map-get($theme-colors, 'danger'), map-get($theme-colors, 'danger')); - } - .text-danger { - color: map-get($theme-colors, 'danger') !important; - } - .o_wsale_product_information { - padding: 0px 15px; - h6 { - border-top: $h6-border-top; - border-bottom: $h6-border-bottom; - font-size: $h6-font-size; - margin: 0px; - padding: $h6-padding-y 0px; - text-align: $h6-text-align; - } - .oe_subdescription { - text-align: left; - } - .product_price { - font-size: $price-font-size; - padding: $product-price-padding; - position: relative; - text-align: $product-price-align; - } - } - - .o_wsale_product_btn { - @include o-position-absolute(auto, map-get($spacers, 2), map-get($spacers, 2), auto); - padding: 0; - - .btn { - padding: $btn-padding-y-sm $btn-padding-x-sm; - transform: scale(1); - } - } - } - .oe_product_cart { - &:not(:hover) { - border-color: transparent; - } - } - - #products_grid { - &.o_wsale_layout_list { - .oe_product_cart { - border-bottom: $card-border-width solid $card-border-color; - - .o_wsale_product_information { - padding-right: 0px !important; - - h6 { - text-align: left !important; - font-size: 24px !important; - border-bottom: none !important; - } - .product_price { - display: inline-block; - font-size: 18px !important; - } - .oe_subdescription { - max-width: 70%; - } - } - .o_wsale_product_btn { - position: static; - display: inline-block; - width: auto; - padding: 0; - background: transparent; - - > .btn { - padding: $btn-padding-y $btn-padding-x; - } - } - } - } - } - - /* =================== Categories =================== */ - #products_grid_before { - - .card, .card-body { - border: none !important; - padding: 0 !important; - background-color: transparent !important; - box-shadow: none !important; - text-align: left !important - } - - .js_attributes { - padding: $js-attributes-padding; - - .css_attribute_color.active { - border: 5px ridge o-color('primary'); - } - li > ul { - display: block; - padding-left: 15px; - } - strong { - display: block; - padding-left: 10px; - margin-bottom: 10px; - margin-top: 10px; - text-transform: uppercase; - } - } - } - .list-unstyled .css_attribute_color.active { - border: 3px solid; - } - #website_sale_recommended_products { - padding: 30px; - h3 { - text-align: center; - border-bottom: 5px solid; - padding-bottom: 20px; - } - .row { - padding: 0 15px; - } - .col-lg-2 { - margin-top: 10px; - min-height: 160px; - } - } - .oe_cart { - .btn { - @include media-breakpoint-down(md) { - padding: 10px; - } - } - .card { - background-color: rgba(0, 0, 0, 0); - } - strong { - color: map-get($grays, '700'); - } - #cart_products img { - max-width: 100px; - } - .a-submit { - padding: 20px 0px; - min-width: 150px; - } - } - #modal_optional_products { - .modal-title { - background: rgba(0, 0, 0, 0); - } - .input-group { - border-collapse: inherit; - } - } - .product-description { - text-align: center; - font-size: 18px; - } - #right_column { - color: map-get($grays, '700'); - a { - color: red; - } - .btn { - border-radius: 0px; - border: none; - } - .input-group-btn { - padding-left: 5px; - } - h4 { - border-bottom: $right-column-border-bottom; - color: $right-column-color; - font-size: 22px; - font-weight: $right-column-font-weight; - } - .fa { - padding-right: 5px; - } - } - .wizard { - box-shadow: none; - @include media-breakpoint-down(md) { - padding-right: 0px; - li { - padding-left: 7px; - } - } - } - .oe_sale_acquirer_button .btn { - min-width: 150px !important; - text-transform: uppercase; - font-size: 20px; - margin-bottom: 20px; - } -} - -@mixin o-theme-chd-bg-img-classes( - $bg1: $o-theme-bg-img-01, $bg2: $o-theme-bg-img-02, $bg3: $o-theme-bg-img-03, - $bg4: $o-theme-bg-img-04, $bg5: $o-theme-bg-img-05, $bg6: $o-theme-bg-img-06, - $bg7: $o-theme-bg-img-07, $bg8: $o-theme-bg-img-08, $bg9: $o-theme-bg-img-09, - $bg10: $o-theme-bg-img-10, $bg11: $o-theme-bg-img-11, $bg12: $o-theme-bg-img-12, - $font-color: white) { - %chd-bg-img { - background-size: cover; - } - .bg-img-01 { - @extend %chd-bg-img; - background-image: $bg1; - } - .bg-img-02 { - @extend %chd-bg-img; - background-image: $bg2; - } - .bg-img-03 { - @extend %chd-bg-img; - background-image: $bg3; - } - .bg-img-04 { - @extend %chd-bg-img; - background-image: $bg4; - } - .bg-img-05 { - @extend %chd-bg-img; - background-image: $bg5; - } - .bg-img-06 { - @extend %chd-bg-img; - background-image: $bg6; - } - .bg-img-07 { - @extend %chd-bg-img; - background-image: $bg7; - } - .bg-img-08 { - @extend %chd-bg-img; - background-image: $bg8; - } - .bg-img-09 { - @extend %chd-bg-img; - background-image: $bg9; - } - .bg-img-10 { - @extend %chd-bg-img; - background-image: $bg10; - } - .bg-img-11 { - @extend %chd-bg-img; - background-image: $bg11; - } - .bg-img-12 { - @extend %chd-bg-img; - background-image: $bg12; - } -} - -@mixin o-theme-chd-bg-pattern-classes($o-theme-bg-patterns) { - @for $i from 1 through length($o-theme-bg-patterns) { - .bg-pattern-0#{$i} { - background-image: nth($o-theme-bg-patterns, $i); - } - } -} - -@mixin o-theme-chd-bg-gradient-classes() { - .bg_gradient_primary_down { - background-image: linear-gradient( rgba(map-get($theme-colors, 'primary'), 0), rgba(map-get($theme-colors, 'primary'), 1) ),; - } - .bg_gradient_primary_up { - background-image: linear-gradient( rgba(map-get($theme-colors, 'primary'), 1), rgba(map-get($theme-colors, 'primary'), 0) ),; - } - .bg_gradient_white_down_thumb { - background-image: linear-gradient( rgba(#ccc, 1), rgba(white, 0.5) ),; - } - .bg_gradient_white_down { - background-image: linear-gradient( rgba(white, 0), rgba(white, 0.5) ),; - } - .bg_gradient_white_up_thumb { - background-image: linear-gradient( rgba(white, 0.5), rgba(#ccc, 1) ),; - } - .bg_gradient_white_up { - background-image: linear-gradient( rgba(white, 0.5), rgba(white, 0) ),; - } - .bg_gradient_black_up { - background-image: linear-gradient( rgba(black, 0.5), rgba(black, 0) ),; - } - .bg_gradient_black_down { - background-image: linear-gradient( rgba(black, 0), rgba(black, 0.5) ),; - } -} - -@mixin o-theme-chd-bg-option-menu-styles() { - .bg_option_menu_img, .bg_option_menu_gradient { - height: 25px; - width: 120px; - border: 1px solid #ccc; - } -} - -@mixin o-theme-chd-padding-l-r-classes() { - // Note: To be removed. - // Kept for back-compatibility only. - .padding-l-r-8 { - @extend .px-2; - } - .padding-l-r-16 { - @extend .px-3; - } - .padding-l-r-32 { - @extend .px-4; - } -} - -@mixin o-theme-chd-footer-styles() { - p { - text-align: justify; - } -} - -@mixin o-theme-chd-ecommerce-classes() { - #products_grid .oe_product section { - padding: 4px 15px 24px 10px; - border-top: 1px dotted; - background-color: rgba(o-color('primary'), 0.2); - h5 a { - font-weight: 300; - } - &:hover { - background-color: rgba(o-color('primary'), 0.4); - transition: all 0.3s ease-in-out; - } - } - #products_grid_before .nav-pills { - font-size: 15px; - .nav-link { - font-size: 16px; - margin: 1px 0px; - - &.active, &:focus, &:hover { - transition: all 0.3s ease-in-out; - padding: 6px 6px; - } - } - } -} - -@mixin o-theme-chd-big-icons-styles($bg-color: o-color('alpha'), $border-color: o-color('alpha'), - $transform: scale(1.1, 1.1), $fa-color: white, $h5-color: white) { - - background-color: $bg-color !important; - border-color: $border-color; - transform: $transform; - .fa { - color: $fa-color !important; - } - h5.o_default_snippet_text { - color: $h5-color !important; - } -} - -@mixin o-theme-sri-bg-effects-styles( - $opacity: 1, $border-top: 2px solid #fff, $border-bottom: 2px solid #848484, - $background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(241, 241, 241, 0.5) 50%, rgba(225, 225, 225, 0.5) 51%, rgba(246, 246, 246, 0.5) 100%)) { - - position: relative; - opacity: 0.999; // Force stacking context creation - &:before { - content: ""; - z-index: -1; - top: 0; - left: 0; - width: 100%; - height: 100%; - position: absolute; - display: block; - opacity: $opacity; - background: $background; - border-top: $border-top; - border-bottom: $border-bottom; - } -} - -@mixin o-theme-sri-bg-effects-classes() { - // TODO: remove these classes in a future version (kept for compatibility) - .glossy { - @include o-theme-sri-bg-effects-styles($border-top: 2px solid rgba(255, 255, 255, 0.73), $border-bottom: 1px solid rgba(155, 155, 155, 0.73)); - } - .glossy-medium { - @include o-theme-sri-bg-effects-styles($opacity: 0.7); - } - .glossy-soft { - @include o-theme-sri-bg-effects-styles($opacity: 0.3); - } - .insetShadow { - @include o-theme-sri-bg-effects-styles( - $background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.2) 100%), - $border-top: 0, $border-bottom: 0); - } - .insetShadowBig { - @include o-theme-sri-bg-effects-styles( - $background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%,rgba(0, 0, 0, 0.4) 100%), - $border-top: 0, $border-bottom: 0); - } -} - -@mixin o-theme-sri-bg-styles($std-url, $x, $y, $body-color, $url-2x) { - background-image: $std-url!important; - background-position: $x $y; - background-repeat: no-repeat; - background-size: cover; - color: $body-color; - - @media - only screen and (-webkit-min-device-pixel-ratio: 2), - only screen and ( min--moz-device-pixel-ratio: 2), - only screen and ( -o-min-device-pixel-ratio: 2/1), - only screen and ( min-device-pixel-ratio: 2), - only screen and ( min-resolution: 192dpi), - only screen and ( min-resolution: 2dppx) { - background-image: $url-2x!important; - } -} - -@mixin o-theme-sri-bg-image-styles($img, $body-color: white, $shadow-color : rgba(255, 0, 0, 0), $x: 50%, $y: 50%) { - @include o-theme-sri-bg-styles(url("/#{$o-theme-img-base-url}#{$img}"), $x, $y, $body-color, url("/#{$o-theme-img-base-url}#{$o-theme-pattern-2x-prefix}#{$img}")); - text-shadow: 0 1px 1px transparentize($shadow-color, 0.4); -} - -@mixin o-theme-sri-bg-pattern-styles($img, $body-color: white, $x: 50%, $y: 50%) { - @include o-theme-sri-bg-styles(url("/#{$o-theme-pattern-base-url}#{$img}"), $x, $y, $body-color, url("/#{$o-theme-pattern-base-url}#{$o-theme-img-2x-prefix}#{$img}")); -} - -@mixin o-theme-sri-bg-img-thumb-classes($backgrounds) { - @each $name, $image in $backgrounds { - .#{$name}-thumb { - background-image: url("/#{$o-theme-thumb-base-url}#{$image}") !important; - background-position: center center; - background-size: cover; - } - } -} - -@mixin o-theme-sri-ecommerce-classes() { - // GENERAL - .oe_website_sale .wizard { - font-weight: bold; - } - // PRODUCTS' LIST - #products_grid { - div.oe_product { - padding-bottom: 15px; - padding-top: 10px; - - &:nth-child(odd) { - background: rgba(black, 0.015); - } - &:first-child { - border-top: 1px solid rgba(black, 0.1); - } - } - td.oe_product, div.oe_product .oe_product_image { - padding: 5px; - } - } - // PPRODUCTS CATEGORIES - #products_grid_before > ul > li { - &:first-child { - margin-bottom: 10px; - } - > a { - font-weight: bold; - margin-top: 5px; - } - } - // PPRODUCT PAGE - #product_detail { - > .row:first-of-type{ - margin-bottom: 36px; - } - form .form-control, form .input-group .btn { - height: 36px; - } - #product_details { - position: relative; - - &:before { - content: ""; - width: 1px; - background-color: map-get($grays, '200'); - height: 100%; - @include o-position-absolute(0, auto, 0, -10%); - } - > h1 { - margin: 0 0 20px; - } - hr:first-of-type{ - display: none; - } - // LIST VIEW OF VARIANTS - .js_product > label > input{ - position: relative; - margin: 0 10px 0 0; - } - // PRODUCTS'S VARIANTS - ul.js_add_cart_variants { - margin-bottom: 20px; - display: table; - width: 100%; - - > li { - display: block; - > strong { - font-size: 0.9em; - display: block; - opacity: 0.7; - padding: 0; - margin-top: 20px; - } - > ul { - display: block; - padding-left: 0; - margin-left: 0; - - &.list-unstyled > label { - margin: 0!important; - } - &.list-inline { - li { - padding-left: 0; - } - label.css_attribute_color { - opacity: 0.8; - cursor: pointer; - border: 1px solid map-get($grays, '600'); - box-shadow: inset 0 0 0 2px #fff; - border-radius: 2px; - - input { - cursor: pointer; - margin: 1px; - width: 18px; - } - &.active { - opacity: 1; - border: 2px solid #55e58e; - } - &:hover { - opacity: 1; - } - } - } - } - } - } - @include media-breakpoint-up(md) { - .css_quantity { - float: left; - } - #add_to_cart { - margin-top: 0!important; - margin-left: 10px; - } - ul.js_add_cart_variants > li { - display: table-row; - > strong, > ul { - display: table-cell; - } - } - } - .product_price h4 { - border-top: 1px solid #eee; - font-size: 35px; - margin-top: 25px; - padding-top: 10px; - } - } - } -} - -@mixin o-theme-sri-header-styles($name, $text-transform, $font-weight) { - ##{$name}_header { - font-family: $headings-font-family; - .navbar { - padding: 20px 0 20px; - - .navbar-nav { - > li > a { - text-transform: $text-transform; - font-weight: $font-weight; - } - .navbar-toggle { - margin: 0; - } - } - } - } - #wrapwrap { - .o_header_affixed:not(.o_header_fixed) { - .navbar { - padding: 2px 20px; - } - } - &.o_header_overlay { - > main, > footer { - opacity: 0.999; // hack to create a stacking context allowing to place top_content on top of background but behind everything else - } - .move_to_top { - z-index: -1; - width: 100%; - @include o-position-absolute($top: 0, $left: 0); - } - } - } -} - -@mixin o-theme-sri-ripple-animation-styles($name) { - .preserve3d, %preserve3d { - -webkit-transform-style: preserve-3d; - -moz-transform-style: preserve-3d; - transform-style: preserve-3d; - } - - .btn { - z-index: 2; - @extend %preserve3d; - } - - @keyframes ripple { - 100% { opacity: 0; transform: scale(2.5); } - } - - .#{$name}-ripple { - display: block; - position: absolute; - border-radius: 100%; - opacity: 0.3; - z-index: -1; - background: currentColor; - pointer-events: none; - transform: scale(0); - - &.#{$name}-ripple-animated { - animation: ripple 0.35s ease-in; - } - } -} - -@mixin o-theme-sri-v-align-class() { - .v-align { - position: relative; - top: 50%; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); - - @media only screen and (max-width : 480px) { - top: auto; - transform: translate(0, 0); - } - > *:first-child { - margin-top: 0; - } - } -} - -@mixin o-theme-nmi-website-forum-classes($border-radius, $navbar-brand-color, $padding, - $hover-bg-color, $hover-color, $active-bg-color) { - .o_wforum_navbar_container { - .navbar { - padding-top: 0; - padding-bottom: 0; - border-radius: $border-radius; - .navbar-brand { - padding: 18px; - font-weight: $font-weight-bold; - color: $navbar-brand-color; - } - .navbar-nav .nav-link { - &:hover { - background-color: $hover-bg-color; - color: $hover-color; - } - &.active, &:focus { - background-color: $active-bg-color; - color: $hover-bg-color; - } - } - } - .input-group .form-control { - height: auto; - padding: $padding; - color: map-get($grays, '900'); - @include border-start-radius(20px); - - + .input-group-append button { - padding: 6px 20px; - } - } - } - .website_forum #wrap { - // Ask a question - Button - .btn-group .btn { - padding: 6px 12px; - @include border-end-radius(0); - &.dropdown-toggle { - @include border-start-radius(0); - @include border-end-radius(20px); - } - } - // Ask a question - Editor icons - .btn-toolbar .btn { - background-color: rgba(0, 0, 0, 0); - color: #000; - border-radius: 0; - &.dropdown-toggle { - border-radius: 0; - } - } - } -} - -@mixin o-theme-nmi-bg-pattern-classes($o-theme-bg-patterns) { - @for $i from 1 through length($o-theme-bg-patterns) { - .bg-pattern-0#{$i}{ - background-image: nth($o-theme-bg-patterns, $i); - background-repeat: repeat !important; - background-size: inherit !important; - } - } -} - -@mixin o-theme-nmi-bg-image-classes($o-theme-bg-imgs, $bg-size) { - @for $i from 1 through length($o-theme-bg-imgs) { - $j: $i; - @if $i < 10 { $j: 0#{$i}; } - .bg-img-#{$j}{ - background: nth($o-theme-bg-imgs, $i); - background-repeat: no-repeat !important; - background-size: $bg-size !important; - } - } -} - -@mixin o-theme-nmi-wrapwrap-styles($shadow-class, $border-radius) { - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - - background-color: rgba(0, 0, 0, 0); - - p:not(.s_share) a:not(.btn) { - text-decoration: underline; - } - .readable { - padding: 0 30px; - .container { - width: auto; - } - } - .text-underline { - text-decoration: underline; - } - .text-boxed { - border: 1px solid; - border-color: inherit; - padding: 20px; - border-radius: $border-radius; - } -} From 7d58d2056998e8cd32beb1e0e79a642969c3a53d Mon Sep 17 00:00:00 2001 From: Benoit Socias Date: Tue, 9 Apr 2024 16:12:08 +0200 Subject: [PATCH 5/7] [REM] theme_common: remove empty files and unreferenced files This commit removes static files that are not referenced from an asset, static files which are empty or only contain comments and `primary_variables.scss` which only a never referenced variable. task-3696867 --- theme_common/__manifest__.py | 3 - theme_common/data/data.xml | 3 - theme_common/data/ir_asset.xml | 14 - .../static/lib/YTPlayer/jquery.mb.YTPlayer.js | 1543 ----------------- .../static/src/js/compatibility_editor.js | 17 - theme_common/static/src/js/preheader.js | 112 -- theme_common/static/src/scss/fonts.scss | 9 - .../static/src/scss/primary_variables.scss | 5 - 8 files changed, 1706 deletions(-) delete mode 100644 theme_common/data/data.xml delete mode 100644 theme_common/static/lib/YTPlayer/jquery.mb.YTPlayer.js delete mode 100644 theme_common/static/src/js/compatibility_editor.js delete mode 100644 theme_common/static/src/js/preheader.js delete mode 100644 theme_common/static/src/scss/fonts.scss delete mode 100644 theme_common/static/src/scss/primary_variables.scss diff --git a/theme_common/__manifest__.py b/theme_common/__manifest__.py index b2d57cc18f..f153d863cb 100644 --- a/theme_common/__manifest__.py +++ b/theme_common/__manifest__.py @@ -5,8 +5,5 @@ 'category': 'Hidden', 'version': '1.1', 'depends': ['website'], - 'data': [ - 'data/data.xml', - ], 'license': 'LGPL-3', } diff --git a/theme_common/data/data.xml b/theme_common/data/data.xml deleted file mode 100644 index 6fa84137e4..0000000000 --- a/theme_common/data/data.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/theme_common/data/ir_asset.xml b/theme_common/data/ir_asset.xml index acbcfbfce8..7b0e1e4c80 100644 --- a/theme_common/data/ir_asset.xml +++ b/theme_common/data/ir_asset.xml @@ -65,18 +65,4 @@ - - theme_common.primary_variables_scss - Primary variables SCSS - web._assets_primary_variables - theme_common/static/src/scss/primary_variables.scss - - - - theme_common.fonts_scss - Fonts SCSS - web.assets_frontend - theme_common/static/src/scss/fonts.scss - - diff --git a/theme_common/static/lib/YTPlayer/jquery.mb.YTPlayer.js b/theme_common/static/lib/YTPlayer/jquery.mb.YTPlayer.js deleted file mode 100644 index 6952c9a9f6..0000000000 --- a/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 Date: Tue, 9 Apr 2024 16:34:33 +0200 Subject: [PATCH 6/7] [REM] theme_common: remove o-color-palette-number assets This commit removes the whole mechanism about specifying the `o-color-palette-number` through assets. It can still be done in the custom SCSS. task-3696867 --- theme_common/__init__.py | 3 - theme_common/data/ir_asset.xml | 68 ------------------- theme_common/models/__init__.py | 3 - theme_common/models/theme_common.py | 15 ---- .../colors/option_colors_02_variables.scss | 1 - .../colors/option_colors_03_variables.scss | 1 - .../colors/option_colors_04_variables.scss | 1 - .../colors/option_colors_05_variables.scss | 1 - .../colors/option_colors_06_variables.scss | 1 - .../colors/option_colors_07_variables.scss | 1 - .../colors/option_colors_08_variables.scss | 1 - .../colors/option_colors_09_variables.scss | 1 - 12 files changed, 97 deletions(-) delete mode 100644 theme_common/__init__.py delete mode 100644 theme_common/data/ir_asset.xml delete mode 100644 theme_common/models/__init__.py delete mode 100644 theme_common/models/theme_common.py delete mode 100644 theme_common/static/src/scss/options/colors/option_colors_02_variables.scss delete mode 100644 theme_common/static/src/scss/options/colors/option_colors_03_variables.scss delete mode 100644 theme_common/static/src/scss/options/colors/option_colors_04_variables.scss delete mode 100644 theme_common/static/src/scss/options/colors/option_colors_05_variables.scss delete mode 100644 theme_common/static/src/scss/options/colors/option_colors_06_variables.scss delete mode 100644 theme_common/static/src/scss/options/colors/option_colors_07_variables.scss delete mode 100644 theme_common/static/src/scss/options/colors/option_colors_08_variables.scss delete mode 100644 theme_common/static/src/scss/options/colors/option_colors_09_variables.scss diff --git a/theme_common/__init__.py b/theme_common/__init__.py deleted file mode 100644 index be9f4fab00..0000000000 --- a/theme_common/__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 models diff --git a/theme_common/data/ir_asset.xml b/theme_common/data/ir_asset.xml deleted file mode 100644 index 7b0e1e4c80..0000000000 --- a/theme_common/data/ir_asset.xml +++ /dev/null @@ -1,68 +0,0 @@ - - - - - theme_common.option_colors_02_variables_scss - Option colors 02 variables SCSS - web._assets_primary_variables - theme_common/static/src/scss/options/colors/option_colors_02_variables.scss - - - - - theme_common.option_colors_03_variables_scss - Option colors 03 variables SCSS - web._assets_primary_variables - theme_common/static/src/scss/options/colors/option_colors_03_variables.scss - - - - - theme_common.option_colors_04_variables_scss - Option colors 04 variables SCSS - web._assets_primary_variables - theme_common/static/src/scss/options/colors/option_colors_04_variables.scss - - - - - theme_common.option_colors_05_variables_scss - Option colors 05 variables SCSS - web._assets_primary_variables - theme_common/static/src/scss/options/colors/option_colors_05_variables.scss - - - - - theme_common.option_colors_06_variables_scss - Option colors 06 variables SCSS - web._assets_primary_variables - theme_common/static/src/scss/options/colors/option_colors_06_variables.scss - - - - - theme_common.option_colors_07_variables_scss - Option colors 07 variables SCSS - web._assets_primary_variables - theme_common/static/src/scss/options/colors/option_colors_07_variables.scss - - - - - theme_common.option_colors_08_variables_scss - Option colors 08 variables SCSS - web._assets_primary_variables - theme_common/static/src/scss/options/colors/option_colors_08_variables.scss - - - - - theme_common.option_colors_09_variables_scss - Option colors 09 variables SCSS - web._assets_primary_variables - theme_common/static/src/scss/options/colors/option_colors_09_variables.scss - - - - diff --git a/theme_common/models/__init__.py b/theme_common/models/__init__.py deleted file mode 100644 index ef70e5a61c..0000000000 --- a/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_common/models/theme_common.py b/theme_common/models/theme_common.py deleted file mode 100644 index 0b8ce33132..0000000000 --- a/theme_common/models/theme_common.py +++ /dev/null @@ -1,15 +0,0 @@ -from odoo import models - - -class ThemeCommon(models.AbstractModel): - _inherit = 'theme.utils' - - def _theme_common_post_copy(self, mod): - # Reset all default color when switching themes - self.disable_asset('theme_common.option_colors_02_variables') - self.disable_asset('theme_common.option_colors_03_variables') - self.disable_asset('theme_common.option_colors_04_variables') - self.disable_asset('theme_common.option_colors_05_variables') - self.disable_asset('theme_common.option_colors_06_variables') - self.disable_asset('theme_common.option_colors_07_variables') - self.disable_asset('theme_common.option_colors_08_variables') diff --git a/theme_common/static/src/scss/options/colors/option_colors_02_variables.scss b/theme_common/static/src/scss/options/colors/option_colors_02_variables.scss deleted file mode 100644 index 4898dc524d..0000000000 --- a/theme_common/static/src/scss/options/colors/option_colors_02_variables.scss +++ /dev/null @@ -1 +0,0 @@ -$o-color-palette-number: 2; diff --git a/theme_common/static/src/scss/options/colors/option_colors_03_variables.scss b/theme_common/static/src/scss/options/colors/option_colors_03_variables.scss deleted file mode 100644 index 81d8c1a4a7..0000000000 --- a/theme_common/static/src/scss/options/colors/option_colors_03_variables.scss +++ /dev/null @@ -1 +0,0 @@ -$o-color-palette-number: 3; diff --git a/theme_common/static/src/scss/options/colors/option_colors_04_variables.scss b/theme_common/static/src/scss/options/colors/option_colors_04_variables.scss deleted file mode 100644 index e99d9111d3..0000000000 --- a/theme_common/static/src/scss/options/colors/option_colors_04_variables.scss +++ /dev/null @@ -1 +0,0 @@ -$o-color-palette-number: 4; diff --git a/theme_common/static/src/scss/options/colors/option_colors_05_variables.scss b/theme_common/static/src/scss/options/colors/option_colors_05_variables.scss deleted file mode 100644 index 1494c8c8bd..0000000000 --- a/theme_common/static/src/scss/options/colors/option_colors_05_variables.scss +++ /dev/null @@ -1 +0,0 @@ -$o-color-palette-number: 5; diff --git a/theme_common/static/src/scss/options/colors/option_colors_06_variables.scss b/theme_common/static/src/scss/options/colors/option_colors_06_variables.scss deleted file mode 100644 index 630e9f8cf0..0000000000 --- a/theme_common/static/src/scss/options/colors/option_colors_06_variables.scss +++ /dev/null @@ -1 +0,0 @@ -$o-color-palette-number: 6; diff --git a/theme_common/static/src/scss/options/colors/option_colors_07_variables.scss b/theme_common/static/src/scss/options/colors/option_colors_07_variables.scss deleted file mode 100644 index e0edcd4231..0000000000 --- a/theme_common/static/src/scss/options/colors/option_colors_07_variables.scss +++ /dev/null @@ -1 +0,0 @@ -$o-color-palette-number: 7; diff --git a/theme_common/static/src/scss/options/colors/option_colors_08_variables.scss b/theme_common/static/src/scss/options/colors/option_colors_08_variables.scss deleted file mode 100644 index 2472017ba4..0000000000 --- a/theme_common/static/src/scss/options/colors/option_colors_08_variables.scss +++ /dev/null @@ -1 +0,0 @@ -$o-color-palette-number: 8; diff --git a/theme_common/static/src/scss/options/colors/option_colors_09_variables.scss b/theme_common/static/src/scss/options/colors/option_colors_09_variables.scss deleted file mode 100644 index 742c71f1b6..0000000000 --- a/theme_common/static/src/scss/options/colors/option_colors_09_variables.scss +++ /dev/null @@ -1 +0,0 @@ -$o-color-palette-number: 9; From db495eb3ffa26053d62c73345bfbeb918c94de9f Mon Sep 17 00:00:00 2001 From: Benoit Socias Date: Tue, 9 Apr 2024 11:39:19 +0200 Subject: [PATCH 7/7] [REM] theme_common, theme_*: remove theme_common Theme common used to contain tools that were reused by most of the themes. It has now become an empty module which pollutes the module dependency tree. This commit removes `theme_common` and adapts themes that used to depend on it. task-3696867 --- theme_anelusia/__manifest__.py | 2 +- theme_artists/__manifest__.py | 2 +- theme_avantgarde/__manifest__.py | 2 +- theme_aviato/__manifest__.py | 2 +- theme_beauty/__manifest__.py | 2 +- theme_bewise/__manifest__.py | 2 +- theme_bistro/__manifest__.py | 2 +- theme_bookstore/__manifest__.py | 2 +- theme_clean/__manifest__.py | 2 +- theme_common/LICENSE | 27 - theme_common/__manifest__.py | 9 - theme_common/i18n/de.po | 2123 -------------------------- theme_common/i18n/es.po | 2112 ------------------------- theme_common/i18n/fr.po | 2109 ------------------------- theme_common/i18n/nl.po | 2290 ---------------------------- theme_common/i18n/theme_common.pot | 21 - theme_common/i18n/zh_CN.po | 2108 ------------------------- theme_enark/__manifest__.py | 2 +- theme_graphene/__manifest__.py | 2 +- theme_kea/__manifest__.py | 2 +- theme_kiddo/__manifest__.py | 2 +- theme_loftspace/__manifest__.py | 2 +- theme_monglia/__manifest__.py | 2 +- theme_nano/__manifest__.py | 2 +- theme_notes/__manifest__.py | 2 +- theme_odoo_experts/__manifest__.py | 2 +- theme_orchid/__manifest__.py | 2 +- theme_real_estate/__manifest__.py | 2 +- theme_treehouse/__manifest__.py | 2 +- theme_vehicle/__manifest__.py | 2 +- theme_yes/__manifest__.py | 2 +- theme_zap/__manifest__.py | 2 +- 32 files changed, 24 insertions(+), 10823 deletions(-) delete mode 100644 theme_common/LICENSE delete mode 100644 theme_common/__manifest__.py delete mode 100644 theme_common/i18n/de.po delete mode 100644 theme_common/i18n/es.po delete mode 100644 theme_common/i18n/fr.po delete mode 100644 theme_common/i18n/nl.po delete mode 100644 theme_common/i18n/theme_common.pot delete mode 100644 theme_common/i18n/zh_CN.po diff --git a/theme_anelusia/__manifest__.py b/theme_anelusia/__manifest__.py index 58c58b8bea..59f353667a 100644 --- a/theme_anelusia/__manifest__.py +++ b/theme_anelusia/__manifest__.py @@ -5,7 +5,7 @@ 'summary': 'Diversity, Fashions, Trends, Clothes, Shoes, Sports, Fitness, Stores', 'sequence': 180, 'version': '2.1.0', - 'depends': ['theme_common'], + 'depends': ['website'], 'data': [ 'data/generate_primary_template.xml', 'data/ir_asset.xml', diff --git a/theme_artists/__manifest__.py b/theme_artists/__manifest__.py index 2d112ab291..7a9b973f43 100644 --- a/theme_artists/__manifest__.py +++ b/theme_artists/__manifest__.py @@ -5,7 +5,7 @@ 'summary': 'Artist, Arts, Galleries, Creative, Paintings, Photography, Shows, Stores', 'sequence': 310, 'version': '2.1.0', - 'depends': ['theme_common'], + 'depends': ['website'], 'data': [ 'data/generate_primary_template.xml', 'data/ir_asset.xml', diff --git a/theme_avantgarde/__manifest__.py b/theme_avantgarde/__manifest__.py index 580e7b3b90..4e49dc0c93 100644 --- a/theme_avantgarde/__manifest__.py +++ b/theme_avantgarde/__manifest__.py @@ -27,7 +27,7 @@ 'configurator_snippets': { 'homepage': ['s_cover', 's_picture', 's_three_columns', 's_text_image', 's_call_to_action'], }, - 'depends': ['theme_common'], + 'depends': ['website'], 'license': 'LGPL-3', 'live_test_url': 'https://theme-avantgarde.odoo.com', 'assets': { diff --git a/theme_aviato/__manifest__.py b/theme_aviato/__manifest__.py index 17aafda6b4..86f0d7b3bb 100644 --- a/theme_aviato/__manifest__.py +++ b/theme_aviato/__manifest__.py @@ -5,7 +5,7 @@ 'summary': 'Travel, Excursion, Plane, Tour, Agency ', 'sequence': 130, 'version': '1.0.0', - 'depends': ['theme_common'], + 'depends': ['website'], 'data': [ 'data/generate_primary_template.xml', 'data/ir_asset.xml', diff --git a/theme_beauty/__manifest__.py b/theme_beauty/__manifest__.py index 05d3572fdc..a1b7663c9d 100644 --- a/theme_beauty/__manifest__.py +++ b/theme_beauty/__manifest__.py @@ -5,7 +5,7 @@ 'summary': 'Beauty, Health, Care, Make Up, Cosmetics, Hair Dressers, Stores', 'sequence': 170, 'version': '2.1.0', - 'depends': ['theme_common'], + 'depends': ['website'], 'data': [ 'data/generate_primary_template.xml', 'data/ir_asset.xml', diff --git a/theme_bewise/__manifest__.py b/theme_bewise/__manifest__.py index 1b78ad4525..d25cc70f93 100644 --- a/theme_bewise/__manifest__.py +++ b/theme_bewise/__manifest__.py @@ -5,7 +5,7 @@ 'summary': 'University, Education, Schools, Young, Play, Kids', 'sequence': 240, 'version': '2.1.0', - 'depends': ['theme_common'], + 'depends': ['website'], 'data': [ 'data/generate_primary_template.xml', 'data/ir_asset.xml', diff --git a/theme_bistro/__manifest__.py b/theme_bistro/__manifest__.py index 161b323e3b..9eceb9c7c2 100644 --- a/theme_bistro/__manifest__.py +++ b/theme_bistro/__manifest__.py @@ -5,7 +5,7 @@ 'summary': 'Bistro, Restaurant, Bar, Pub, Cafe, Food, Catering', 'sequence': 220, 'version': '2.0.0', - 'depends': ['theme_common'], + 'depends': ['website'], 'data': [ 'data/generate_primary_template.xml', 'data/ir_asset.xml', diff --git a/theme_bookstore/__manifest__.py b/theme_bookstore/__manifest__.py index 50af7fcdc4..0adeb23c20 100644 --- a/theme_bookstore/__manifest__.py +++ b/theme_bookstore/__manifest__.py @@ -5,7 +5,7 @@ 'summary': 'Library, Books, Magazines, Literature, Musics, Media, Store', 'sequence': 250, 'version': '2.1.0', - 'depends': ['theme_common'], + 'depends': ['website'], 'data': [ 'data/generate_primary_template.xml', 'data/ir_asset.xml', diff --git a/theme_clean/__manifest__.py b/theme_clean/__manifest__.py index 95a0d590e2..2ec26bca08 100644 --- a/theme_clean/__manifest__.py +++ b/theme_clean/__manifest__.py @@ -5,7 +5,7 @@ 'summary': 'Legal, Corporate, Business, Tech, Services', 'sequence': 120, 'version': '2.1.0', - 'depends': ['theme_common'], + 'depends': ['website'], 'data': [ 'data/generate_primary_template.xml', 'data/ir_asset.xml', diff --git a/theme_common/LICENSE b/theme_common/LICENSE deleted file mode 100644 index b01eaf1b7b..0000000000 --- a/theme_common/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_common/__manifest__.py b/theme_common/__manifest__.py deleted file mode 100644 index f153d863cb..0000000000 --- a/theme_common/__manifest__.py +++ /dev/null @@ -1,9 +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'], - 'license': 'LGPL-3', -} diff --git a/theme_common/i18n/de.po b/theme_common/i18n/de.po deleted file mode 100644 index 8065999bcc..0000000000 --- a/theme_common/i18n/de.po +++ /dev/null @@ -1,2123 +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 -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 -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 -msgid "Apply" -msgstr "Anwenden" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:81 -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 -msgid "Cancel" -msgstr "Abbrechen" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_frontend.js:51 -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 -msgid "Click the" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:8 -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 -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 -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 -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 -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 -msgid "Fill container with video" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:23 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -msgid "iframe" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -msgid "link under the video." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -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 -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_common/i18n/es.po b/theme_common/i18n/es.po deleted file mode 100644 index ce49269485..0000000000 --- a/theme_common/i18n/es.po +++ /dev/null @@ -1,2112 +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 -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 -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 -msgid "Apply" -msgstr "Aplicar" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:81 -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 -msgid "Cancel" -msgstr "Cancelar" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_frontend.js:51 -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 -msgid "Click the" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:8 -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 -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 -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 -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 -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 -msgid "Fill container with video" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:23 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -msgid "iframe" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -msgid "link under the video." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -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 -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_common/i18n/fr.po b/theme_common/i18n/fr.po deleted file mode 100644 index 40de6cad7c..0000000000 --- a/theme_common/i18n/fr.po +++ /dev/null @@ -1,2109 +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 -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 -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 -msgid "Apply" -msgstr "Appliquer" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:81 -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 -msgid "Cancel" -msgstr "Annuler" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_frontend.js:51 -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 -msgid "Click the" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:8 -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 -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 -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 -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 -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 -msgid "Fill container with video" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:23 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -msgid "iframe" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -msgid "link under the video." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -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 -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_common/i18n/nl.po b/theme_common/i18n/nl.po deleted file mode 100644 index d76448c6d9..0000000000 --- a/theme_common/i18n/nl.po +++ /dev/null @@ -1,2290 +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 -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 -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 -msgid "Apply" -msgstr "Toepassen" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:81 -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 -msgid "Cancel" -msgstr "Annuleren" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_frontend.js:51 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -msgid "iframe" -msgstr "iframe" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -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 -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 -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_common/i18n/theme_common.pot b/theme_common/i18n/theme_common.pot deleted file mode 100644 index 39cc09df60..0000000000 --- a/theme_common/i18n/theme_common.pot +++ /dev/null @@ -1,21 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * theme_common -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 17.0+e\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-28 12:25+0000\n" -"PO-Revision-Date: 2023-09-28 12:25+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:ir.model,name:theme_common.model_theme_utils -msgid "Theme Utils" -msgstr "" diff --git a/theme_common/i18n/zh_CN.po b/theme_common/i18n/zh_CN.po deleted file mode 100644 index 35c2273277..0000000000 --- a/theme_common/i18n/zh_CN.po +++ /dev/null @@ -1,2108 +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 -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 -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 -msgid "Apply" -msgstr "应用" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:81 -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 -msgid "Cancel" -msgstr "取消日期" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/js/s_google_map_frontend.js:51 -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 -msgid "Click the" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:8 -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 -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 -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 -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 -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 -msgid "Fill container with video" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_google_map_modal.xml:23 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -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 -msgid "iframe" -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:34 -msgid "link under the video." -msgstr "" - -#. module: theme_common -#. openerp-web -#: code:addons/theme_common/static/src/xml/s_media_block_modal.xml:35 -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 -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_enark/__manifest__.py b/theme_enark/__manifest__.py index 3c78ee3123..83114dc1db 100644 --- a/theme_enark/__manifest__.py +++ b/theme_enark/__manifest__.py @@ -5,7 +5,7 @@ 'summary': 'Architect, Corporate, Business, Finance, Services', 'sequence': 190, 'version': '2.0.0', - 'depends': ['theme_common'], + 'depends': ['website'], 'data': [ 'data/generate_primary_template.xml', 'data/ir_asset.xml', diff --git a/theme_graphene/__manifest__.py b/theme_graphene/__manifest__.py index 05373af0e7..78cec7ae10 100644 --- a/theme_graphene/__manifest__.py +++ b/theme_graphene/__manifest__.py @@ -30,7 +30,7 @@ 'personal': ['s_text_cover', 's_image_text', 's_text_block_h2', 's_numbers', 's_features', 's_call_to_action'], }, }, - 'depends': ['theme_common'], + 'depends': ['website'], 'license': 'LGPL-3', 'live_test_url': 'https://theme-graphene.odoo.com', 'assets': { diff --git a/theme_kea/__manifest__.py b/theme_kea/__manifest__.py index 55c170bc18..f798b5dc3c 100644 --- a/theme_kea/__manifest__.py +++ b/theme_kea/__manifest__.py @@ -5,7 +5,7 @@ 'summary': 'Technology, Tech, IT, Computers, Stores, Virtual Reality', 'sequence': 200, 'version': '2.0.0', - 'depends': ['theme_common'], + 'depends': ['website'], 'data': [ 'data/generate_primary_template.xml', 'data/ir_asset.xml', diff --git a/theme_kiddo/__manifest__.py b/theme_kiddo/__manifest__.py index 047150623f..2af59967a0 100644 --- a/theme_kiddo/__manifest__.py +++ b/theme_kiddo/__manifest__.py @@ -5,7 +5,7 @@ 'summary': 'Nursery, Toys, Games, Kids, Boys, Girls, Stores', 'sequence': 290, 'version': '2.1.0', - 'depends': ['theme_common'], + 'depends': ['website'], 'data': [ 'data/generate_primary_template.xml', 'data/ir_asset.xml', diff --git a/theme_loftspace/__manifest__.py b/theme_loftspace/__manifest__.py index aeecd6afeb..3c297d1724 100644 --- a/theme_loftspace/__manifest__.py +++ b/theme_loftspace/__manifest__.py @@ -5,7 +5,7 @@ 'summary': 'Furniture, Toys, Games, Kids, Boys, Girls, Stores', 'sequence': 130, 'version': '2.1.0', - 'depends': ['theme_common'], + 'depends': ['website'], 'data': [ 'data/generate_primary_template.xml', 'data/ir_asset.xml', diff --git a/theme_monglia/__manifest__.py b/theme_monglia/__manifest__.py index 2447f5e6b0..6b4299147c 100644 --- a/theme_monglia/__manifest__.py +++ b/theme_monglia/__manifest__.py @@ -5,7 +5,7 @@ 'summary': 'Event, Restaurants, Bars, Pubs, Cafes, Catering, Food, Drinks, Concerts, Shows, Musics, Dance, Party', 'sequence': 260, 'version': '2.0.0', - 'depends': ['theme_common'], + 'depends': ['website'], 'data': [ 'data/generate_primary_template.xml', 'data/ir_asset.xml', diff --git a/theme_nano/__manifest__.py b/theme_nano/__manifest__.py index e6c3f8afdf..f951c5096e 100644 --- a/theme_nano/__manifest__.py +++ b/theme_nano/__manifest__.py @@ -5,7 +5,7 @@ 'summary': 'Maker, Agencies, Creative, Design, IT, Services, Fancy', 'sequence': 270, 'version': '2.0.0', - 'depends': ['theme_common'], + 'depends': ['website'], 'data': [ 'data/generate_primary_template.xml', 'data/ir_asset.xml', diff --git a/theme_notes/__manifest__.py b/theme_notes/__manifest__.py index 506ebd3eda..c632f471f4 100644 --- a/theme_notes/__manifest__.py +++ b/theme_notes/__manifest__.py @@ -5,7 +5,7 @@ 'summary': 'Band, Musics, Sound, Concerts, Artists, Records, Event, Food, Stores', 'sequence': 280, 'version': '2.1.0', - 'depends': ['theme_common'], + 'depends': ['website'], 'data': [ 'data/generate_primary_template.xml', 'data/ir_asset.xml', diff --git a/theme_odoo_experts/__manifest__.py b/theme_odoo_experts/__manifest__.py index 76e0ed8d88..458c8160ea 100644 --- a/theme_odoo_experts/__manifest__.py +++ b/theme_odoo_experts/__manifest__.py @@ -5,7 +5,7 @@ 'summary': 'Advisor, Corporate, Service, Business, Finance, IT', 'sequence': 210, 'version': '2.1.0', - 'depends': ['theme_common'], + 'depends': ['website'], 'data': [ 'data/generate_primary_template.xml', 'data/ir_asset.xml', diff --git a/theme_orchid/__manifest__.py b/theme_orchid/__manifest__.py index 654f01457c..08ff1f614d 100644 --- a/theme_orchid/__manifest__.py +++ b/theme_orchid/__manifest__.py @@ -5,7 +5,7 @@ 'summary': 'Florist, Gardens, Flowers, Nature, Green, Beauty, Stores', 'sequence': 230, 'version': '2.0.0', - 'depends': ['theme_common'], + 'depends': ['website'], 'data': [ 'data/generate_primary_template.xml', 'data/ir_asset.xml', diff --git a/theme_real_estate/__manifest__.py b/theme_real_estate/__manifest__.py index ea3dacb03e..6209d19151 100644 --- a/theme_real_estate/__manifest__.py +++ b/theme_real_estate/__manifest__.py @@ -5,7 +5,7 @@ 'summary': 'Real Estate, Agencies, Construction, Services, Accomodations, Lodging, Hosting, Houses, Appartments, Vacations, Holidays, Travels', 'sequence': 320, 'version': '2.0.0', - 'depends': ['theme_common'], + 'depends': ['website'], 'data': [ 'data/generate_primary_template.xml', 'data/ir_asset.xml', diff --git a/theme_treehouse/__manifest__.py b/theme_treehouse/__manifest__.py index 7cb08f4e67..ec3861911e 100644 --- a/theme_treehouse/__manifest__.py +++ b/theme_treehouse/__manifest__.py @@ -5,7 +5,7 @@ 'summary': 'Environment, Nature, Ecology, Sustainable Development, Non Profit, NGO, Travels', 'sequence': 140, 'version': '2.0.0', - 'depends': ['theme_common'], + 'depends': ['website'], 'data': [ 'data/generate_primary_template.xml', 'data/ir_asset.xml', diff --git a/theme_vehicle/__manifest__.py b/theme_vehicle/__manifest__.py index 15e860d28e..741773fea2 100644 --- a/theme_vehicle/__manifest__.py +++ b/theme_vehicle/__manifest__.py @@ -5,7 +5,7 @@ 'summary': 'Vehicle, Cars, Motorbikes, Bikes, Tires, Transports, Repair, Mechanics, Garages, Sports, Services', 'sequence': 300, 'version': '2.0.0', - 'depends': ['theme_common'], + 'depends': ['website'], 'data': [ 'data/generate_primary_template.xml', 'data/ir_asset.xml', diff --git a/theme_yes/__manifest__.py b/theme_yes/__manifest__.py index d913e4c7a2..3cf46a4aa4 100644 --- a/theme_yes/__manifest__.py +++ b/theme_yes/__manifest__.py @@ -5,7 +5,7 @@ 'summary': 'Wedding, Love, Photography, Services', 'sequence': 330, 'version': '2.0.0', - 'depends': ['theme_common'], + 'depends': ['website'], 'data': [ 'data/generate_primary_template.xml', 'data/ir_asset.xml', diff --git a/theme_zap/__manifest__.py b/theme_zap/__manifest__.py index 5fe8766cf9..1cf982d25b 100644 --- a/theme_zap/__manifest__.py +++ b/theme_zap/__manifest__.py @@ -5,7 +5,7 @@ 'summary': 'Digital, Marketing, Copywriting, Media, Events, Non Profit, NGO, Corporate, Business, Services', 'sequence': 160, 'version': '2.0.0', - 'depends': ['theme_common'], + 'depends': ['website'], 'data': [ 'data/generate_primary_template.xml', 'data/ir_asset.xml',