OoohBoi Steroids for Elementor - Version 2.0.3

Version Description

  • Fix: POSTMAN - Quotations background color is being displayed atop the text
  • Fix: TABBR - '_ob_use_tabbr' critical error for Elementor 3.7 +
  • New: POSTMAN - Padding option added to Quotations
Download this release

Release Info

Developer ooohboi
Plugin Icon 128x128 OoohBoi Steroids for Elementor
Version 2.0.3
Comparing to
See all releases

Code changes from version 2.0.2 to 2.0.3

assets/css/main.css CHANGED
@@ -499,9 +499,11 @@ body:not(.elementor-editor-active) [data-element_type="widget"].fade-in.effect-f
499
  /* POSTMAN */
500
  .ob-postman .elementor-widget-container blockquote {
501
  position: relative;
 
502
  }
503
  .ob-postman .elementor-widget-container blockquote::before {
504
  content: '';
505
  position: absolute;
506
  inset: 0;
 
507
  }
499
  /* POSTMAN */
500
  .ob-postman .elementor-widget-container blockquote {
501
  position: relative;
502
+ isolation: isolate;
503
  }
504
  .ob-postman .elementor-widget-container blockquote::before {
505
  content: '';
506
  position: absolute;
507
  inset: 0;
508
+ z-index: -1;
509
  }
controls/ooohboi-postman.php CHANGED
@@ -525,7 +525,7 @@ class OoohBoi_Postman {
525
  'label' => __( 'Quotation Color', 'ooohboi-steroids' ),
526
  'type' => Controls_Manager::COLOR,
527
  'selectors' => [
528
- '{{WRAPPER}}.ob-postman .elementor-widget-container blockquote > p' => 'color: {{VALUE}};',
529
  ],
530
  'condition' => [
531
  '_ob_postman_use' => 'yes',
@@ -551,12 +551,31 @@ class OoohBoi_Postman {
551
  ],
552
  ]
553
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
554
  $element->add_group_control(
555
  Group_Control_Typography::get_type(),
556
  [
557
  'name' => '_ob_postman_quotes_typography',
558
  'label' => __( 'Quotation Typography', 'ooohboi-steroids' ),
559
- 'selector' => '{{WRAPPER}}.ob-postman .elementor-widget-container blockquote > p',
560
  'condition' => [
561
  '_ob_postman_use' => 'yes',
562
  ],
525
  'label' => __( 'Quotation Color', 'ooohboi-steroids' ),
526
  'type' => Controls_Manager::COLOR,
527
  'selectors' => [
528
+ '{{WRAPPER}}.ob-postman .elementor-widget-container blockquote' => 'color: {{VALUE}};',
529
  ],
530
  'condition' => [
531
  '_ob_postman_use' => 'yes',
551
  ],
552
  ]
553
  );
554
+ $element->add_responsive_control(
555
+ '_ob_postman_quotes_padding',
556
+ [
557
+ 'label' => __( 'Quotation padding', 'ooohboi-steroids' ),
558
+ 'type' => Controls_Manager::DIMENSIONS,
559
+ 'size_units' => [ 'px', 'em', 'rem', '%' ],
560
+ 'default' => [
561
+ 'unit' => 'px',
562
+ 'size' => 0,
563
+ ],
564
+ 'selectors' => [
565
+ '{{WRAPPER}}.ob-postman .elementor-widget-container blockquote' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
566
+ '{{WRAPPER}}.ob-postman .elementor-widget-container blockquote p' => 'padding: 0;',
567
+ ],
568
+ 'condition' => [
569
+ '_ob_postman_use' => 'yes',
570
+ ],
571
+ ]
572
+ );
573
  $element->add_group_control(
574
  Group_Control_Typography::get_type(),
575
  [
576
  'name' => '_ob_postman_quotes_typography',
577
  'label' => __( 'Quotation Typography', 'ooohboi-steroids' ),
578
+ 'selector' => '{{WRAPPER}}.ob-postman .elementor-widget-container blockquote',
579
  'condition' => [
580
  '_ob_postman_use' => 'yes',
581
  ],
controls/ooohboi-tabbr.php CHANGED
@@ -65,7 +65,7 @@ class OoohBoi_Tabbr {
65
 
66
  public static function add_attributes( $element ) {
67
 
68
- if( ! in_array( $element->get_name(), [ 'counter' ] ) ) return;
69
  $settings = $element->get_settings();
70
  $is_tabbr = isset( $settings[ '_ob_use_tabbr' ] ) ? $settings[ '_ob_use_tabbr' ] : '';
71
 
@@ -135,7 +135,7 @@ class OoohBoi_Tabbr {
135
  'device_args' => [
136
  Breakpoints_Manager::BREAKPOINT_KEY_TABLET => [
137
  'selectors' => [
138
- '{{WRAPPER}}.ob-use-tabbr.elementor-element .elementor-tabs' => 'flex-direction: {{_ob_tabbr_tabs_position_tablet.VALUE}}{{_ob_tabbr_tabs_order_tablet.VALUE}};',
139
  ],
140
  'condition' => [
141
  '_ob_use_tabbr' => 'yes',
@@ -143,7 +143,7 @@ class OoohBoi_Tabbr {
143
  ],
144
  Breakpoints_Manager::BREAKPOINT_KEY_MOBILE => [
145
  'selectors' => [
146
- '{{WRAPPER}}.ob-use-tabbr.elementor-element .elementor-tabs' => 'flex-direction: {{_ob_tabbr_tabs_position_mobile.VALUE}}{{_ob_tabbr_tabs_order_mobile.VALUE}};',
147
  ],
148
  'condition' => [
149
  '_ob_use_tabbr' => 'yes',
@@ -160,7 +160,7 @@ class OoohBoi_Tabbr {
160
  [
161
  'label' => __( 'Tabs order', 'ooohboi-steroids' ),
162
  'type' => Controls_Manager::SELECT,
163
- 'default' => '',
164
  'options' => [
165
  ' ' => __( 'TABS -- CONTENT', 'ooohboi-steroids' ),
166
  '-reverse' => __( 'CONTENT -- TABS', 'ooohboi-steroids' ),
@@ -214,8 +214,8 @@ class OoohBoi_Tabbr {
214
  'device_args' => [
215
  Breakpoints_Manager::BREAKPOINT_KEY_TABLET => [
216
  'selectors' => [
217
- '{{WRAPPER}}.ob-use-tabbr.elementor-element .elementor-tabs-wrapper, {{WRAPPER}}.ob-use-tabbr.elementor-element .elementor-tabs-wrapper .elementor-tab-title' => 'justify-content: {{_ob_tabbr_tabs_alignment_tablet.VALUE}};',
218
- '{{WRAPPER}}.ob-use-tabbr.elementor-element .elementor-tabs-wrapper' => 'align-self: {{_ob_tabbr_tabs_alignment_tablet.VALUE}};',
219
  ],
220
  'condition' => [
221
  '_ob_use_tabbr' => 'yes',
@@ -223,8 +223,8 @@ class OoohBoi_Tabbr {
223
  ],
224
  Breakpoints_Manager::BREAKPOINT_KEY_MOBILE => [
225
  'selectors' => [
226
- '{{WRAPPER}}.ob-use-tabbr.elementor-element .elementor-tabs-wrapper, {{WRAPPER}}.ob-use-tabbr.elementor-element .elementor-tabs-wrapper .elementor-tab-title' => 'justify-content: {{_ob_tabbr_tabs_alignment_mobile.VALUE}};',
227
- '{{WRAPPER}}.ob-use-tabbr.elementor-element .elementor-tabs-wrapper' => 'align-self: {{_ob_tabbr_tabs_alignment_mobile.VALUE}};',
228
  ],
229
  'condition' => [
230
  '_ob_use_tabbr' => 'yes',
@@ -241,7 +241,7 @@ class OoohBoi_Tabbr {
241
  'label' => __( 'Tabs width', 'ooohboi-steroids' ),
242
  'description' => __( 'Enter any acceptable CSS value; 125px, 5vw, calc(30% - 10px), clamp(50px, 5vw + 10px, 155px), 12% ...', 'ooohboi-steroids' ),
243
  'type' => Controls_Manager::TEXT,
244
- 'default' => '100%',
245
  'selectors' => [
246
  '{{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-vertical .elementor-tabs-wrapper, {{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-horizontal .elementor-tabs-wrapper' => 'min-width: {{VALUE}}; width: {{VALUE}};',
247
  '{{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-vertical .elementor-tabs-content-wrapper, {{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-horizontal .elementor-tabs-content-wrapper' => 'width: 100%;',
@@ -252,7 +252,7 @@ class OoohBoi_Tabbr {
252
  'device_args' => [
253
  Breakpoints_Manager::BREAKPOINT_KEY_TABLET => [
254
  'selectors' => [
255
- '{{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-vertical .elementor-tabs-wrapper, {{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-horizontal .elementor-tabs-wrapper' => 'min-width: {{_ob_tab_width_tablet.VALUE}}; width: {{_ob_tab_width_tablet.VALUE}};',
256
  '{{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-vertical .elementor-tabs-content-wrapper, {{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-horizontal .elementor-tabs-content-wrapper' => 'width: 100%;',
257
  ],
258
  'condition' => [
@@ -261,7 +261,7 @@ class OoohBoi_Tabbr {
261
  ],
262
  Breakpoints_Manager::BREAKPOINT_KEY_MOBILE => [
263
  'selectors' => [
264
- '{{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-vertical .elementor-tabs-wrapper, {{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-horizontal .elementor-tabs-wrapper' => 'min-width: {{_ob_tab_width_mobile.VALUE}}; width: {{_ob_tab_width_mobile.VALUE}};',
265
  '{{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-vertical .elementor-tabs-content-wrapper, {{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-horizontal .elementor-tabs-content-wrapper' => 'width: 100%;',
266
  ],
267
  'condition' => [
65
 
66
  public static function add_attributes( $element ) {
67
 
68
+ if( ! in_array( $element->get_name(), [ 'tabs' ] ) ) return;
69
  $settings = $element->get_settings();
70
  $is_tabbr = isset( $settings[ '_ob_use_tabbr' ] ) ? $settings[ '_ob_use_tabbr' ] : '';
71
 
135
  'device_args' => [
136
  Breakpoints_Manager::BREAKPOINT_KEY_TABLET => [
137
  'selectors' => [
138
+ '{{WRAPPER}}.ob-use-tabbr.elementor-element .elementor-tabs' => 'flex-direction: {{_ob_tabbr_tabs_position.VALUE}}{{_ob_tabbr_tabs_order.VALUE}};',
139
  ],
140
  'condition' => [
141
  '_ob_use_tabbr' => 'yes',
143
  ],
144
  Breakpoints_Manager::BREAKPOINT_KEY_MOBILE => [
145
  'selectors' => [
146
+ '{{WRAPPER}}.ob-use-tabbr.elementor-element .elementor-tabs' => 'flex-direction: {{_ob_tabbr_tabs_position.VALUE}}{{_ob_tabbr_tabs_order.VALUE}};',
147
  ],
148
  'condition' => [
149
  '_ob_use_tabbr' => 'yes',
160
  [
161
  'label' => __( 'Tabs order', 'ooohboi-steroids' ),
162
  'type' => Controls_Manager::SELECT,
163
+ 'default' => ' ',
164
  'options' => [
165
  ' ' => __( 'TABS -- CONTENT', 'ooohboi-steroids' ),
166
  '-reverse' => __( 'CONTENT -- TABS', 'ooohboi-steroids' ),
214
  'device_args' => [
215
  Breakpoints_Manager::BREAKPOINT_KEY_TABLET => [
216
  'selectors' => [
217
+ '{{WRAPPER}}.ob-use-tabbr.elementor-element .elementor-tabs-wrapper, {{WRAPPER}}.ob-use-tabbr.elementor-element .elementor-tabs-wrapper .elementor-tab-title' => 'justify-content: {{_ob_tabbr_tabs_alignment.VALUE}};',
218
+ '{{WRAPPER}}.ob-use-tabbr.elementor-element .elementor-tabs-wrapper' => 'align-self: {{_ob_tabbr_tabs_alignment.VALUE}};',
219
  ],
220
  'condition' => [
221
  '_ob_use_tabbr' => 'yes',
223
  ],
224
  Breakpoints_Manager::BREAKPOINT_KEY_MOBILE => [
225
  'selectors' => [
226
+ '{{WRAPPER}}.ob-use-tabbr.elementor-element .elementor-tabs-wrapper, {{WRAPPER}}.ob-use-tabbr.elementor-element .elementor-tabs-wrapper .elementor-tab-title' => 'justify-content: {{_ob_tabbr_tabs_alignment.VALUE}};',
227
+ '{{WRAPPER}}.ob-use-tabbr.elementor-element .elementor-tabs-wrapper' => 'align-self: {{_ob_tabbr_tabs_alignment.VALUE}};',
228
  ],
229
  'condition' => [
230
  '_ob_use_tabbr' => 'yes',
241
  'label' => __( 'Tabs width', 'ooohboi-steroids' ),
242
  'description' => __( 'Enter any acceptable CSS value; 125px, 5vw, calc(30% - 10px), clamp(50px, 5vw + 10px, 155px), 12% ...', 'ooohboi-steroids' ),
243
  'type' => Controls_Manager::TEXT,
244
+ 'default' => '30%',
245
  'selectors' => [
246
  '{{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-vertical .elementor-tabs-wrapper, {{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-horizontal .elementor-tabs-wrapper' => 'min-width: {{VALUE}}; width: {{VALUE}};',
247
  '{{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-vertical .elementor-tabs-content-wrapper, {{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-horizontal .elementor-tabs-content-wrapper' => 'width: 100%;',
252
  'device_args' => [
253
  Breakpoints_Manager::BREAKPOINT_KEY_TABLET => [
254
  'selectors' => [
255
+ '{{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-vertical .elementor-tabs-wrapper, {{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-horizontal .elementor-tabs-wrapper' => 'min-width: {{_ob_tab_width.VALUE}}; width: {{_ob_tab_width.VALUE}};',
256
  '{{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-vertical .elementor-tabs-content-wrapper, {{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-horizontal .elementor-tabs-content-wrapper' => 'width: 100%;',
257
  ],
258
  'condition' => [
261
  ],
262
  Breakpoints_Manager::BREAKPOINT_KEY_MOBILE => [
263
  'selectors' => [
264
+ '{{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-vertical .elementor-tabs-wrapper, {{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-horizontal .elementor-tabs-wrapper' => 'min-width: {{_ob_tab_width.VALUE}}; width: {{_ob_tab_width.VALUE}};',
265
  '{{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-vertical .elementor-tabs-content-wrapper, {{WRAPPER}}.ob-use-tabbr.elementor-tabs-view-horizontal .elementor-tabs-content-wrapper' => 'width: 100%;',
266
  ],
267
  'condition' => [
inc/info/ob-landing.php CHANGED
@@ -10,15 +10,15 @@
10
 
11
  <div class="col-8">
12
 
13
- <h3>What's new v2.0.1?</h3>
14
  <p>
15
  <strong>Fixes and updates mostly</strong>
16
  </p>
17
  <p>
18
- Elementor 3.7 brought many changes that also affected Steroids for Elementor, so this release fixes many bugs caused by the deprecated functions.
19
  </p>
20
  <p>
21
- BREAKING BAD extension got a new option that allows you to set the Column's "Min-height".
22
  </p>
23
  <p>
24
  All of the GreenSock's animation libraries (and plugins) are now up to date! GSAP, ScrollTrigger, ScrollTo, and MotionPath have been "updated" to the latest 3.11
@@ -29,24 +29,6 @@
29
  </p>
30
  <p>&nbsp;</p>
31
 
32
- <h3>What's new since v1.9.9?</h3>
33
- <p>
34
- <strong>3 brand new extensions: TABBR, COUNTERZ and POSTMAN</strong>
35
- </p>
36
- <p>
37
- TABBR extension allows you to style up default Tabs widget to the max! This was the most outdated and neglected widget of Elementor and many people rather installed a replacement widget.
38
- From now on you no longer need anything else but the TABBR extension.
39
- </p>
40
- <p>
41
- <img src="<?php echo SFE_DIR_URL . 'img/tabbr2.png'; ?>" alt="Tabbr" />
42
- </p>
43
- <p>
44
- Frustrated by the lack of options to the Counter widget? Sure you are. COUNTERZ extension will make it shine again.
45
- </p>
46
- <p>
47
- Style up Text Editor or Posts widget content (headings, paragraph, lists, blockquotes). Basic styling, I know, but better than nothing, right?
48
- </p>
49
-
50
  </div>
51
 
52
  <div class="col-4">
10
 
11
  <div class="col-8">
12
 
13
+ <h3>What's new to 2.0.3?</h3>
14
  <p>
15
  <strong>Fixes and updates mostly</strong>
16
  </p>
17
  <p>
18
+ '_ob_use_tabbr' critical error for Elementor 3.7 + has finally been fixed
19
  </p>
20
  <p>
21
+ POSTMAN extension got a new option that allows you to add padding to the Blockquote element.
22
  </p>
23
  <p>
24
  All of the GreenSock's animation libraries (and plugins) are now up to date! GSAP, ScrollTrigger, ScrollTo, and MotionPath have been "updated" to the latest 3.11
29
  </p>
30
  <p>&nbsp;</p>
31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  </div>
33
 
34
  <div class="col-4">
lang/ooohboi-steroids.pot CHANGED
@@ -2,8 +2,8 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: OoohBoi Steroids for Elementor\n"
5
- "POT-Creation-Date: 2022-07-04 14:42+0200\n"
6
- "PO-Revision-Date: 2022-07-04 14:42+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -32,75 +32,75 @@ msgid ""
32
  msgstr ""
33
 
34
  #: controls/ooohboi-breaking-bad.php:93 controls/ooohboi-breaking-bad.php:175
35
- #: controls/ooohboi-breaking-bad.php:482 controls/ooohboi-breaking-bad.php:557
36
- #: controls/ooohboi-bullet.php:51 controls/ooohboi-butter-button.php:102
37
- #: controls/ooohboi-commentz.php:101 controls/ooohboi-commentz.php:1138
38
- #: controls/ooohboi-container-extras.php:98 controls/ooohboi-counterz.php:94
39
- #: controls/ooohboi-glider.php:121 controls/ooohboi-glider.php:135
40
- #: controls/ooohboi-glider.php:188 controls/ooohboi-glider.php:421
41
- #: controls/ooohboi-glider.php:581 controls/ooohboi-glider.php:662
42
- #: controls/ooohboi-glider.php:683 controls/ooohboi-glider.php:705
43
- #: controls/ooohboi-glider.php:745 controls/ooohboi-glider.php:780
44
- #: controls/ooohboi-glider.php:798 controls/ooohboi-glider.php:817
45
- #: controls/ooohboi-glider.php:836 controls/ooohboi-harakiri.php:95
46
  #: controls/ooohboi-harakiri.php:149 controls/ooohboi-harakiri.php:397
47
- #: controls/ooohboi-hover-animator.php:112
48
- #: controls/ooohboi-hover-animator.php:186
49
- #: controls/ooohboi-hover-animator.php:201 controls/ooohboi-icobox.php:96
50
  #: controls/ooohboi-icobox.php:112 controls/ooohboi-icobox.php:247
51
  #: controls/ooohboi-imbox.php:97 controls/ooohboi-imbox.php:135
52
- #: controls/ooohboi-imbox.php:431 controls/ooohboi-interactor.php:103
53
- #: controls/ooohboi-oh-animator.php:95 controls/ooohboi-oh-animator.php:126
54
- #: controls/ooohboi-oh-animator.php:158 controls/ooohboi-oh-animator.php:175
55
- #: controls/ooohboi-oh-animator.php:210 controls/ooohboi-oh-animator.php:230
56
- #: controls/ooohboi-oh-animator.php:247 controls/ooohboi-oh-animator.php:263
57
- #: controls/ooohboi-oh-animator.php:280 controls/ooohboi-overlaiz.php:64
58
  #: controls/ooohboi-overlay-underlay.php:105
59
  #: controls/ooohboi-overlay-underlay.php:1398
60
  #: controls/ooohboi-overlay-underlay.php:1417 controls/ooohboi-paginini.php:220
61
- #: controls/ooohboi-perspektive.php:105 controls/ooohboi-photomorph.php:97
62
  #: controls/ooohboi-photomorph.php:173 controls/ooohboi-postman.php:101
63
  #: controls/ooohboi-pseudo.php:114 controls/ooohboi-searchcop.php:79
64
- #: controls/ooohboi-shadough.php:50 controls/ooohboi-spacerat.php:101
65
  #: controls/ooohboi-spacerat.php:378 controls/ooohboi-tabbr.php:95
66
- #: controls/ooohboi-tabbr.php:328 controls/ooohboi-widget-stalker.php:114
67
  #: inc/exopite-simple-options/fields/upload.php:131
68
  msgid "Yes"
69
  msgstr ""
70
 
71
  #: controls/ooohboi-breaking-bad.php:94 controls/ooohboi-breaking-bad.php:176
72
- #: controls/ooohboi-breaking-bad.php:483 controls/ooohboi-breaking-bad.php:558
73
- #: controls/ooohboi-bullet.php:52 controls/ooohboi-butter-button.php:103
74
- #: controls/ooohboi-commentz.php:102 controls/ooohboi-commentz.php:1139
75
- #: controls/ooohboi-container-extras.php:99 controls/ooohboi-counterz.php:95
76
- #: controls/ooohboi-glider.php:122 controls/ooohboi-glider.php:136
77
- #: controls/ooohboi-glider.php:189 controls/ooohboi-glider.php:422
78
- #: controls/ooohboi-glider.php:582 controls/ooohboi-glider.php:663
79
- #: controls/ooohboi-glider.php:684 controls/ooohboi-glider.php:706
80
- #: controls/ooohboi-glider.php:746 controls/ooohboi-glider.php:781
81
- #: controls/ooohboi-glider.php:799 controls/ooohboi-glider.php:818
82
- #: controls/ooohboi-glider.php:837 controls/ooohboi-harakiri.php:96
83
  #: controls/ooohboi-harakiri.php:150 controls/ooohboi-harakiri.php:398
84
- #: controls/ooohboi-hover-animator.php:113
85
- #: controls/ooohboi-hover-animator.php:187
86
- #: controls/ooohboi-hover-animator.php:202 controls/ooohboi-icobox.php:97
87
  #: controls/ooohboi-icobox.php:113 controls/ooohboi-icobox.php:248
88
  #: controls/ooohboi-imbox.php:98 controls/ooohboi-imbox.php:136
89
- #: controls/ooohboi-imbox.php:432 controls/ooohboi-interactor.php:104
90
- #: controls/ooohboi-oh-animator.php:96 controls/ooohboi-oh-animator.php:127
91
- #: controls/ooohboi-oh-animator.php:159 controls/ooohboi-oh-animator.php:176
92
- #: controls/ooohboi-oh-animator.php:211 controls/ooohboi-oh-animator.php:231
93
- #: controls/ooohboi-oh-animator.php:248 controls/ooohboi-oh-animator.php:264
94
- #: controls/ooohboi-oh-animator.php:281 controls/ooohboi-overlaiz.php:65
95
  #: controls/ooohboi-overlay-underlay.php:106
96
  #: controls/ooohboi-overlay-underlay.php:1399
97
  #: controls/ooohboi-overlay-underlay.php:1418 controls/ooohboi-paginini.php:221
98
- #: controls/ooohboi-perspektive.php:106 controls/ooohboi-photomorph.php:98
99
  #: controls/ooohboi-photomorph.php:174 controls/ooohboi-postman.php:102
100
  #: controls/ooohboi-pseudo.php:115 controls/ooohboi-searchcop.php:80
101
- #: controls/ooohboi-shadough.php:51 controls/ooohboi-spacerat.php:102
102
  #: controls/ooohboi-spacerat.php:379 controls/ooohboi-tabbr.php:96
103
- #: controls/ooohboi-tabbr.php:329 controls/ooohboi-widget-stalker.php:115
104
  #: inc/exopite-simple-options/fields/upload.php:129
105
  msgid "No"
106
  msgstr ""
@@ -110,8 +110,8 @@ msgid "Align Columns"
110
  msgstr ""
111
 
112
  #: controls/ooohboi-breaking-bad.php:108 controls/ooohboi-breaking-bad.php:154
113
- #: controls/ooohboi-breaking-bad.php:337 controls/ooohboi-breaking-bad.php:466
114
- #: controls/ooohboi-breaking-bad.php:591 controls/ooohboi-breaking-bad.php:615
115
  #: controls/ooohboi-counterz.php:123 controls/ooohboi-imbox.php:114
116
  #: controls/ooohboi-tabbr.php:203
117
  msgid "Start"
@@ -119,36 +119,36 @@ msgstr ""
119
 
120
  #: controls/ooohboi-breaking-bad.php:109 controls/ooohboi-breaking-bad.php:155
121
  #: controls/ooohboi-breaking-bad.php:315 controls/ooohboi-breaking-bad.php:338
122
- #: controls/ooohboi-breaking-bad.php:467 controls/ooohboi-breaking-bad.php:592
123
- #: controls/ooohboi-breaking-bad.php:616 controls/ooohboi-commentz.php:166
124
- #: controls/ooohboi-commentz.php:707 controls/ooohboi-counterz.php:124
125
  #: controls/ooohboi-counterz.php:227 controls/ooohboi-imbox.php:115
126
- #: controls/ooohboi-oh-animator.php:353 controls/ooohboi-oh-animator.php:403
127
- #: controls/ooohboi-oh-animator.php:465 controls/ooohboi-oh-animator.php:514
128
  #: controls/ooohboi-tabbr.php:204 controls/ooohboi-widget-stalker.php:265
129
  msgid "Center"
130
  msgstr ""
131
 
132
  #: controls/ooohboi-breaking-bad.php:110 controls/ooohboi-breaking-bad.php:156
133
  #: controls/ooohboi-breaking-bad.php:316 controls/ooohboi-breaking-bad.php:339
134
- #: controls/ooohboi-breaking-bad.php:468 controls/ooohboi-breaking-bad.php:593
135
- #: controls/ooohboi-breaking-bad.php:617 controls/ooohboi-counterz.php:125
136
  #: controls/ooohboi-imbox.php:116 controls/ooohboi-tabbr.php:205
137
  #: controls/ooohboi-widget-stalker.php:266
138
  msgid "End"
139
  msgstr ""
140
 
141
- #: controls/ooohboi-breaking-bad.php:111 controls/ooohboi-breaking-bad.php:594
142
  #: controls/ooohboi-counterz.php:126
143
  msgid "Space Between"
144
  msgstr ""
145
 
146
- #: controls/ooohboi-breaking-bad.php:112 controls/ooohboi-breaking-bad.php:595
147
  #: controls/ooohboi-counterz.php:127
148
  msgid "Space Around"
149
  msgstr ""
150
 
151
- #: controls/ooohboi-breaking-bad.php:113 controls/ooohboi-breaking-bad.php:596
152
  #: controls/ooohboi-counterz.php:128
153
  msgid "Space Evenly"
154
  msgstr ""
@@ -157,11 +157,11 @@ msgstr ""
157
  msgid "Columns Direction"
158
  msgstr ""
159
 
160
- #: controls/ooohboi-breaking-bad.php:132 controls/ooohboi-breaking-bad.php:572
161
  msgid "Row"
162
  msgstr ""
163
 
164
- #: controls/ooohboi-breaking-bad.php:133 controls/ooohboi-breaking-bad.php:573
165
  msgid "Column"
166
  msgstr ""
167
 
@@ -201,10 +201,10 @@ msgid "Units"
201
  msgstr ""
202
 
203
  #: controls/ooohboi-breaking-bad.php:249
204
- #: controls/ooohboi-container-extras.php:110
205
- #: controls/ooohboi-container-extras.php:128
206
- #: controls/ooohboi-interactor.php:205 controls/ooohboi-overlaiz.php:78
207
- #: controls/ooohboi-overlaiz.php:588 controls/ooohboi-overlay-underlay.php:218
208
  #: controls/ooohboi-overlay-underlay.php:632
209
  #: controls/ooohboi-overlay-underlay.php:858
210
  #: controls/ooohboi-overlay-underlay.php:1262 controls/ooohboi-pseudo.php:228
@@ -215,9 +215,9 @@ msgid "Width"
215
  msgstr ""
216
 
217
  #: controls/ooohboi-breaking-bad.php:255 controls/ooohboi-breaking-bad.php:294
218
- #: controls/ooohboi-breaking-bad.php:406 controls/ooohboi-teleporter.php:137
219
- #: controls/ooohboi-teleporter.php:155 controls/ooohboi-teleporter.php:186
220
- #: controls/ooohboi-teleporter.php:203 controls/ooohboi-widget-stalker.php:187
221
  #: controls/ooohboi-widget-stalker.php:227
222
  msgid ""
223
  "You can enter any acceptable CSS value, for example: 50em, 300px, 100%, "
@@ -239,11 +239,11 @@ msgid ""
239
  "direction is Row or Inherit)."
240
  msgstr ""
241
 
242
- #: controls/ooohboi-breaking-bad.php:313 controls/ooohboi-overlaiz.php:568
243
  #: controls/ooohboi-overlay-underlay.php:612
244
  #: controls/ooohboi-overlay-underlay.php:1243 controls/ooohboi-pseudo.php:640
245
  #: controls/ooohboi-pseudo.php:1286 controls/ooohboi-spacerat.php:254
246
- #: controls/ooohboi-tabbr.php:620 controls/ooohboi-videomasq.php:105
247
  #: controls/ooohboi-widget-stalker.php:263
248
  msgid "Auto"
249
  msgstr ""
@@ -263,7 +263,7 @@ msgid ""
263
  "direction is Column)."
264
  msgstr ""
265
 
266
- #: controls/ooohboi-breaking-bad.php:336 controls/ooohboi-breaking-bad.php:465
267
  msgid "Inherit"
268
  msgstr ""
269
 
@@ -271,7 +271,7 @@ msgstr ""
271
  msgid "Stacking Order"
272
  msgstr ""
273
 
274
- #: controls/ooohboi-breaking-bad.php:355 controls/ooohboi-breaking-bad.php:444
275
  #: controls/ooohboi-widget-stalker.php:282
276
  #, php-format
277
  msgid "More info at %sMozilla%s."
@@ -293,85 +293,89 @@ msgid "Custom Height"
293
  msgstr ""
294
 
295
  #: controls/ooohboi-breaking-bad.php:442
 
 
 
 
296
  msgid "Column Order"
297
  msgstr ""
298
 
299
- #: controls/ooohboi-breaking-bad.php:460 controls/ooohboi-breaking-bad.php:611
300
  msgid "Align vertically"
301
  msgstr ""
302
 
303
- #: controls/ooohboi-breaking-bad.php:461
304
  msgid "Defines the vertical alignmnet of this column only!"
305
  msgstr ""
306
 
307
- #: controls/ooohboi-breaking-bad.php:479
308
  msgid "Scrollable Column?"
309
  msgstr ""
310
 
311
- #: controls/ooohboi-breaking-bad.php:499
312
  msgid "Column Link"
313
  msgstr ""
314
 
315
- #: controls/ooohboi-breaking-bad.php:504 controls/ooohboi-interactor.php:204
316
- #: controls/ooohboi-interactor.php:634 controls/ooohboi-oh-animator.php:351
317
- #: controls/ooohboi-oh-animator.php:401 controls/ooohboi-oh-animator.php:463
318
- #: controls/ooohboi-oh-animator.php:512 controls/ooohboi-oh-animator.php:608
319
- #: controls/ooohboi-oh-animator.php:633 controls/ooohboi-oh-animator.php:658
320
- #: controls/ooohboi-oh-animator.php:683 controls/ooohboi-oh-animator.php:770
321
- #: controls/ooohboi-oh-animator.php:1056 controls/ooohboi-oh-animator.php:1173
322
- #: controls/ooohboi-spacerat.php:126 controls/ooohboi-teleporter.php:78
323
  msgid "None"
324
  msgstr ""
325
 
326
- #: controls/ooohboi-breaking-bad.php:505 controls/ooohboi-spacerat.php:127
327
- #: controls/ooohboi-teleporter.php:79
328
  msgid "Custom URL"
329
  msgstr ""
330
 
331
- #: controls/ooohboi-breaking-bad.php:516 controls/ooohboi-spacerat.php:122
332
- #: controls/ooohboi-spacerat.php:139 controls/ooohboi-teleporter.php:73
333
- #: controls/ooohboi-teleporter.php:90
334
  msgid "Link"
335
  msgstr ""
336
 
337
- #: controls/ooohboi-breaking-bad.php:523 controls/ooohboi-spacerat.php:145
338
- #: controls/ooohboi-teleporter.php:97
339
  msgid "https://your-link.com"
340
  msgstr ""
341
 
342
- #: controls/ooohboi-breaking-bad.php:543
343
  msgid "Widget Stalker"
344
  msgstr ""
345
 
346
- #: controls/ooohboi-breaking-bad.php:553
347
  #: controls/ooohboi-widget-stalker.php:110
348
  msgid "Enable Widget Stalker?"
349
  msgstr ""
350
 
351
- #: controls/ooohboi-breaking-bad.php:554
352
  msgid ""
353
  "NOTE: It changes the default alignment of widgets inside this column - "
354
  "including the Inner Section widget."
355
  msgstr ""
356
 
357
- #: controls/ooohboi-breaking-bad.php:568
358
  msgid "Widgets Direction"
359
  msgstr ""
360
 
361
- #: controls/ooohboi-breaking-bad.php:587
362
  msgid "Align Widgets"
363
  msgstr ""
364
 
365
- #: controls/ooohboi-bullet.php:47
366
  #, php-format
367
  msgid "Move bullet to top%sNEW!%s"
368
  msgstr ""
369
 
370
- #: controls/ooohboi-bullet.php:48
371
  msgid "NOTE: Takes effect with more than just one line of text!"
372
  msgstr ""
373
 
374
- #: controls/ooohboi-bullet.php:63
375
  msgid "Margin Top"
376
  msgstr ""
377
 
@@ -391,12 +395,12 @@ msgstr ""
391
  msgid "Transition Duration"
392
  msgstr ""
393
 
394
- #: controls/ooohboi-butter-button.php:175 controls/ooohboi-commentz.php:183
395
- #: controls/ooohboi-commentz.php:792 controls/ooohboi-commentz.php:1031
396
  #: controls/ooohboi-counterz.php:163 controls/ooohboi-counterz.php:262
397
- #: controls/ooohboi-glider.php:335 controls/ooohboi-kontrolz.php:107
398
  #: controls/ooohboi-paginini.php:59 controls/ooohboi-postman.php:345
399
- #: controls/ooohboi-tabbr.php:348 controls/ooohboi-tabbr.php:498
400
  msgid "Padding"
401
  msgstr ""
402
 
@@ -404,8 +408,8 @@ msgstr ""
404
  #: controls/ooohboi-harakiri.php:378 controls/ooohboi-overlay-underlay.php:177
405
  #: controls/ooohboi-overlay-underlay.php:817
406
  #: controls/ooohboi-photomorph.php:112 controls/ooohboi-pseudo.php:186
407
- #: controls/ooohboi-pseudo.php:845 controls/ooohboi-tabbr.php:310
408
- #: controls/ooohboi-tabbr.php:407 controls/ooohboi-teleporter.php:129
409
  msgid "Normal"
410
  msgstr ""
411
 
@@ -433,47 +437,47 @@ msgid ""
433
  msgstr ""
434
 
435
  #: controls/ooohboi-butter-button.php:267
436
- #: controls/ooohboi-butter-button.php:398 controls/ooohboi-commentz.php:285
437
- #: controls/ooohboi-commentz.php:466 controls/ooohboi-commentz.php:988
438
  #: controls/ooohboi-counterz.php:194 controls/ooohboi-counterz.php:293
439
  #: controls/ooohboi-imbox.php:230 controls/ooohboi-imbox.php:244
440
  #: controls/ooohboi-imbox.php:376 controls/ooohboi-imbox.php:390
441
- #: controls/ooohboi-overlaiz.php:371 controls/ooohboi-overlaiz.php:390
442
  #: controls/ooohboi-overlay-underlay.php:491
443
  #: controls/ooohboi-overlay-underlay.php:509
444
  #: controls/ooohboi-overlay-underlay.php:1123
445
  #: controls/ooohboi-overlay-underlay.php:1141 controls/ooohboi-paginini.php:146
446
  #: controls/ooohboi-paginini.php:195 controls/ooohboi-pseudo.php:518
447
  #: controls/ooohboi-pseudo.php:536 controls/ooohboi-pseudo.php:1165
448
- #: controls/ooohboi-pseudo.php:1183 controls/ooohboi-tabbr.php:429
449
- #: controls/ooohboi-tabbr.php:467 controls/ooohboi-tabbr.php:551
450
- #: controls/ooohboi-tabbr.php:565
451
  msgid "Border"
452
  msgstr ""
453
 
454
  #: controls/ooohboi-butter-button.php:280
455
- #: controls/ooohboi-butter-button.php:411 controls/ooohboi-commentz.php:296
456
- #: controls/ooohboi-commentz.php:478 controls/ooohboi-commentz.php:869
457
- #: controls/ooohboi-commentz.php:999 controls/ooohboi-glider.php:291
458
- #: controls/ooohboi-glider.php:538 controls/ooohboi-imbox.php:252
459
  #: controls/ooohboi-imbox.php:398 controls/ooohboi-kontrolz.php:95
460
- #: controls/ooohboi-kontrolz.php:207 controls/ooohboi-overlaiz.php:402
461
  #: controls/ooohboi-overlay-underlay.php:520
462
  #: controls/ooohboi-overlay-underlay.php:1153 controls/ooohboi-paginini.php:154
463
  #: controls/ooohboi-paginini.php:203 controls/ooohboi-pseudo.php:548
464
- #: controls/ooohboi-pseudo.php:1195 controls/ooohboi-tabbr.php:388
465
  msgid "Border Radius"
466
  msgstr ""
467
 
468
  #: controls/ooohboi-butter-button.php:298
469
  #: controls/ooohboi-butter-button.php:429 controls/ooohboi-icobox.php:55
470
  #: controls/ooohboi-imbox.php:56 controls/ooohboi-imbox.php:354
471
- #: controls/ooohboi-overlaiz.php:427
472
  msgid "Box Shadow"
473
  msgstr ""
474
 
475
  #: controls/ooohboi-butter-button.php:324 controls/ooohboi-photomorph.php:142
476
- #: controls/ooohboi-teleporter.php:174
477
  msgid "Hover"
478
  msgstr ""
479
 
@@ -483,219 +487,219 @@ msgid ""
483
  "background color to transparent!"
484
  msgstr ""
485
 
486
- #: controls/ooohboi-commentz.php:98
487
  msgid "Enable Commentz"
488
  msgstr ""
489
 
490
- #: controls/ooohboi-commentz.php:99
491
  msgid "That will allow you to style up the post comments."
492
  msgstr ""
493
 
494
- #: controls/ooohboi-commentz.php:115
495
  msgid "Heading"
496
  msgstr ""
497
 
498
- #: controls/ooohboi-commentz.php:128
499
  msgid "Heading style"
500
  msgstr ""
501
 
502
- #: controls/ooohboi-commentz.php:144 controls/ooohboi-commentz.php:550
503
- #: controls/ooohboi-commentz.php:626 controls/ooohboi-commentz.php:932
504
- #: controls/ooohboi-harakiri.php:309 controls/ooohboi-interactor.php:210
505
- #: controls/ooohboi-oh-animator.php:774
506
  msgid "Color"
507
  msgstr ""
508
 
509
- #: controls/ooohboi-commentz.php:161
510
  msgid "Text alignment"
511
  msgstr ""
512
 
513
- #: controls/ooohboi-commentz.php:165 controls/ooohboi-commentz.php:706
514
  #: controls/ooohboi-counterz.php:226
515
  msgid "Left"
516
  msgstr ""
517
 
518
- #: controls/ooohboi-commentz.php:167 controls/ooohboi-commentz.php:708
519
  #: controls/ooohboi-counterz.php:228
520
  msgid "Right"
521
  msgstr ""
522
 
523
- #: controls/ooohboi-commentz.php:203 controls/ooohboi-commentz.php:642
524
- #: controls/ooohboi-commentz.php:809 controls/ooohboi-commentz.php:948
525
- #: controls/ooohboi-commentz.php:1051 controls/ooohboi-commentz.php:1115
526
  #: controls/ooohboi-counterz.php:143 controls/ooohboi-counterz.php:242
527
- #: controls/ooohboi-oh-animator.php:302 controls/ooohboi-paginini.php:75
528
- #: controls/ooohboi-tabbr.php:368 controls/ooohboi-tabbr.php:518
529
  #: controls/ooohboi-widget-stalker.php:240
530
  msgid "Margin"
531
  msgstr ""
532
 
533
- #: controls/ooohboi-commentz.php:237
534
  msgid "Comment list style"
535
  msgstr ""
536
 
537
- #: controls/ooohboi-commentz.php:253
538
  msgid "Comment body padding"
539
  msgstr ""
540
 
541
- #: controls/ooohboi-commentz.php:269
542
  msgid "Comment body margin"
543
  msgstr ""
544
 
545
- #: controls/ooohboi-commentz.php:312 controls/ooohboi-commentz.php:1015
546
- #: controls/ooohboi-interactor.php:211 controls/ooohboi-oh-animator.php:775
547
  msgid "Background color"
548
  msgstr ""
549
 
550
- #: controls/ooohboi-commentz.php:328
551
  msgid "Background color replies"
552
  msgstr ""
553
 
554
- #: controls/ooohboi-commentz.php:345
555
  msgid "Child comments indent"
556
  msgstr ""
557
 
558
- #: controls/ooohboi-commentz.php:378
559
  msgid "Gravatar"
560
  msgstr ""
561
 
562
- #: controls/ooohboi-commentz.php:382
563
  msgid "Hide"
564
  msgstr ""
565
 
566
- #: controls/ooohboi-commentz.php:383
567
  msgid "Show"
568
  msgstr ""
569
 
570
- #: controls/ooohboi-commentz.php:399
571
  msgid "Gravatar style"
572
  msgstr ""
573
 
574
- #: controls/ooohboi-commentz.php:416 controls/ooohboi-glider.php:511
575
  msgid "Size"
576
  msgstr ""
577
 
578
- #: controls/ooohboi-commentz.php:448
579
  msgid "Position"
580
  msgstr ""
581
 
582
- #: controls/ooohboi-commentz.php:510
583
  msgid "Meta-data User"
584
  msgstr ""
585
 
586
- #: controls/ooohboi-commentz.php:522
587
  msgid "Meta-data Time"
588
  msgstr ""
589
 
590
- #: controls/ooohboi-commentz.php:535
591
  msgid "Meta-data style"
592
  msgstr ""
593
 
594
- #: controls/ooohboi-commentz.php:566
595
  msgid "Outer Margin"
596
  msgstr ""
597
 
598
- #: controls/ooohboi-commentz.php:597
599
  msgid "Comment text"
600
  msgstr ""
601
 
602
- #: controls/ooohboi-commentz.php:610
603
  msgid "Comment text style"
604
  msgstr ""
605
 
606
- #: controls/ooohboi-commentz.php:673
607
  msgid "Reply button"
608
  msgstr ""
609
 
610
- #: controls/ooohboi-commentz.php:686
611
  msgid "Reply button style"
612
  msgstr ""
613
 
614
- #: controls/ooohboi-commentz.php:702
615
  msgid "Align button"
616
  msgstr ""
617
 
618
- #: controls/ooohboi-commentz.php:724
619
  msgid "Text color normal"
620
  msgstr ""
621
 
622
- #: controls/ooohboi-commentz.php:740
623
  msgid "Text color hover"
624
  msgstr ""
625
 
626
- #: controls/ooohboi-commentz.php:757
627
  msgid "Background color normal"
628
  msgstr ""
629
 
630
- #: controls/ooohboi-commentz.php:775
631
  msgid "Background color hover"
632
  msgstr ""
633
 
634
- #: controls/ooohboi-commentz.php:826
635
  msgid "Border color normal"
636
  msgstr ""
637
 
638
- #: controls/ooohboi-commentz.php:840
639
  msgid "Border color hover"
640
  msgstr ""
641
 
642
- #: controls/ooohboi-commentz.php:854
643
  msgid "Border Width"
644
  msgstr ""
645
 
646
- #: controls/ooohboi-commentz.php:902
647
  msgid "Comment form heading"
648
  msgstr ""
649
 
650
- #: controls/ooohboi-commentz.php:916
651
  msgid "Comment form heading style"
652
  msgstr ""
653
 
654
- #: controls/ooohboi-commentz.php:972
655
  msgid "Comment form style"
656
  msgstr ""
657
 
658
- #: controls/ooohboi-commentz.php:1086
659
  msgid "Comments Nav"
660
  msgstr ""
661
 
662
- #: controls/ooohboi-commentz.php:1099
663
  msgid "Comments Nav style"
664
  msgstr ""
665
 
666
- #: controls/ooohboi-commentz.php:1134
667
  msgid "Hide the Website input field?"
668
  msgstr ""
669
 
670
- #: controls/ooohboi-commentz.php:1135
671
  msgid ""
672
  "If you make it hidden, be sure it's not mandatory otherwise the comment can "
673
  "not be posted!"
674
  msgstr ""
675
 
676
- #: controls/ooohboi-container-extras.php:94
677
  msgid "Enable Container Extras?"
678
  msgstr ""
679
 
680
- #: controls/ooohboi-container-extras.php:95
681
  msgid "Get some more flexibility on Containers width"
682
  msgstr ""
683
 
684
- #: controls/ooohboi-container-extras.php:115
685
- #: controls/ooohboi-container-extras.php:133
686
- #: controls/ooohboi-container-extras.php:151
687
- #: controls/ooohboi-container-extras.php:171
688
  msgid ""
689
  "You can enter any acceptable CSS value ( 50em, 25vw, 42.1% ) or the "
690
  "expression ( 100% - 300px, 55vw - 150px, 15rem - 20px ). NO calc() needed, "
691
  "it will be added automatically!"
692
  msgstr ""
693
 
694
- #: controls/ooohboi-container-extras.php:146
695
  msgid "Max-width"
696
  msgstr ""
697
 
698
- #: controls/ooohboi-container-extras.php:166
699
  msgid "Calc Min Height"
700
  msgstr ""
701
 
@@ -727,223 +731,223 @@ msgstr ""
727
  msgid "Align title"
728
  msgstr ""
729
 
730
- #: controls/ooohboi-glider.php:117
731
  msgid "Create Slider?"
732
  msgstr ""
733
 
734
- #: controls/ooohboi-glider.php:118
735
  msgid ""
736
  "This container containers will become slidable. TIP: Use this Switch to "
737
  "refresh your Glider."
738
  msgstr ""
739
 
740
- #: controls/ooohboi-glider.php:132
741
  msgid "Adaptable height?"
742
  msgstr ""
743
 
744
- #: controls/ooohboi-glider.php:150
745
  msgid "Slider height"
746
  msgstr ""
747
 
748
- #: controls/ooohboi-glider.php:185
749
  msgid "Hide Navigation"
750
  msgstr ""
751
 
752
- #: controls/ooohboi-glider.php:206 controls/ooohboi-kontrolz.php:46
753
  msgid "Navigation styles"
754
  msgstr ""
755
 
756
- #: controls/ooohboi-glider.php:223
757
  msgid "Arrows Color"
758
  msgstr ""
759
 
760
- #: controls/ooohboi-glider.php:240 controls/ooohboi-kontrolz.php:58
761
  msgid "Arrows Color - Hover"
762
  msgstr ""
763
 
764
- #: controls/ooohboi-glider.php:257 controls/ooohboi-kontrolz.php:71
765
  #: controls/ooohboi-paginini.php:47 controls/ooohboi-paginini.php:121
766
  #: controls/ooohboi-paginini.php:182
767
  msgid "Background Color"
768
  msgstr ""
769
 
770
- #: controls/ooohboi-glider.php:274 controls/ooohboi-kontrolz.php:83
771
  msgid "Background Color - Hover"
772
  msgstr ""
773
 
774
- #: controls/ooohboi-glider.php:308
775
  msgid "Icon size"
776
  msgstr ""
777
 
778
- #: controls/ooohboi-glider.php:361 controls/ooohboi-kontrolz.php:128
779
  msgid "Calc - Y"
780
  msgstr ""
781
 
782
- #: controls/ooohboi-glider.php:362 controls/ooohboi-glider.php:381
783
- #: controls/ooohboi-glider.php:399 controls/ooohboi-kontrolz.php:129
784
  #: controls/ooohboi-kontrolz.php:143 controls/ooohboi-kontrolz.php:156
785
  msgid "Valid CSS only! Like: 25px or 15em or 100% - 50px or 50% + 3rem"
786
  msgstr ""
787
 
788
- #: controls/ooohboi-glider.php:379 controls/ooohboi-kontrolz.php:141
789
  msgid "Calc Prev - X"
790
  msgstr ""
791
 
792
- #: controls/ooohboi-glider.php:397 controls/ooohboi-kontrolz.php:154
793
  msgid "Calc Next - X"
794
  msgstr ""
795
 
796
- #: controls/ooohboi-glider.php:418
797
  msgid "Hide Pagination"
798
  msgstr ""
799
 
800
- #: controls/ooohboi-glider.php:440 controls/ooohboi-kontrolz.php:170
801
  msgid "Pagination styles"
802
  msgstr ""
803
 
804
- #: controls/ooohboi-glider.php:456
805
  msgid "Pagination type"
806
  msgstr ""
807
 
808
- #: controls/ooohboi-glider.php:460
809
  msgid "Bullets"
810
  msgstr ""
811
 
812
- #: controls/ooohboi-glider.php:461
813
  msgid "Fraction"
814
  msgstr ""
815
 
816
- #: controls/ooohboi-glider.php:462
817
  msgid "Progress Bar"
818
  msgstr ""
819
 
820
- #: controls/ooohboi-glider.php:476 controls/ooohboi-kontrolz.php:182
821
  msgid "Pagination Color"
822
  msgstr ""
823
 
824
- #: controls/ooohboi-glider.php:493 controls/ooohboi-kontrolz.php:195
825
  msgid "Pagination Color - Active"
826
  msgstr ""
827
 
828
- #: controls/ooohboi-glider.php:558
829
  msgid "Transition type"
830
  msgstr ""
831
 
832
- #: controls/ooohboi-glider.php:563
833
  msgid "Slide"
834
  msgstr ""
835
 
836
- #: controls/ooohboi-glider.php:564 controls/ooohboi-teleporter.php:317
837
  msgid "Fade"
838
  msgstr ""
839
 
840
- #: controls/ooohboi-glider.php:578
841
  msgid "Show Multiple Slides"
842
  msgstr ""
843
 
844
- #: controls/ooohboi-glider.php:599
845
  msgid "Slides Per View"
846
  msgstr ""
847
 
848
- #: controls/ooohboi-glider.php:620
849
  msgid "Slides to Scroll"
850
  msgstr ""
851
 
852
- #: controls/ooohboi-glider.php:621
853
  msgid "Scrolling multiple slides can break infinite loop."
854
  msgstr ""
855
 
856
- #: controls/ooohboi-glider.php:640
857
  msgid "Space Between Slides (px)"
858
  msgstr ""
859
 
860
- #: controls/ooohboi-glider.php:658
861
  msgid "Centered Slides"
862
  msgstr ""
863
 
864
- #: controls/ooohboi-glider.php:659
865
  msgid "Active slide will be centered."
866
  msgstr ""
867
 
868
- #: controls/ooohboi-glider.php:679
869
  msgid "Centered Slide Bounds"
870
  msgstr ""
871
 
872
- #: controls/ooohboi-glider.php:680
873
  msgid ""
874
  "Active slide will be centered without adding gaps at the beginning and end "
875
  "of slider."
876
  msgstr ""
877
 
878
- #: controls/ooohboi-glider.php:702
879
  msgid "Infinite Loop"
880
  msgstr ""
881
 
882
- #: controls/ooohboi-glider.php:721
883
  msgid "Direction"
884
  msgstr ""
885
 
886
- #: controls/ooohboi-glider.php:726 controls/ooohboi-tabbr.php:182
887
  msgid "Horizontal"
888
  msgstr ""
889
 
890
- #: controls/ooohboi-glider.php:727 controls/ooohboi-tabbr.php:183
891
  msgid "Vertical"
892
  msgstr ""
893
 
894
- #: controls/ooohboi-glider.php:741
895
  msgid "Parallax"
896
  msgstr ""
897
 
898
- #: controls/ooohboi-glider.php:742
899
  msgid "It will work with Elementor PRO Attributes only."
900
  msgstr ""
901
 
902
- #: controls/ooohboi-glider.php:761
903
  msgid "Transition speed"
904
  msgstr ""
905
 
906
- #: controls/ooohboi-glider.php:777
907
  msgid "Enable Touch Move"
908
  msgstr ""
909
 
910
- #: controls/ooohboi-glider.php:795
911
  msgid "Enable Mousewheel"
912
  msgstr ""
913
 
914
- #: controls/ooohboi-glider.php:813
915
  msgid "Deblur Slides"
916
  msgstr ""
917
 
918
- #: controls/ooohboi-glider.php:814
919
  msgid "Round values of slides width and height to prevent blurry texts?"
920
  msgstr ""
921
 
922
- #: controls/ooohboi-glider.php:833
923
  msgid "Autoplay"
924
  msgstr ""
925
 
926
- #: controls/ooohboi-glider.php:851
927
  msgid "Autoplay delay"
928
  msgstr ""
929
 
930
- #: controls/ooohboi-glider.php:852
931
  msgid "In miliseconds! 1000 is one second."
932
  msgstr ""
933
 
934
- #: controls/ooohboi-glider.php:870
935
  msgid "Control Glider externally!"
936
  msgstr ""
937
 
938
- #: controls/ooohboi-glider.php:872
939
  msgid ""
940
  "You can control this Glider instance from any link on this page by adding "
941
  "the custom class name to the link. \n"
942
- "\t\t\t\t\tCopy the text entirely and append the slide number to go to at the "
943
  "end. For instance: glider-NNNNNNN-gotoslide-3"
944
  msgstr ""
945
 
946
- #: controls/ooohboi-glider.php:884
947
  msgid "This Glider control class"
948
  msgstr ""
949
 
@@ -955,42 +959,42 @@ msgstr ""
955
  msgid "Color - HOVER"
956
  msgstr ""
957
 
958
- #: controls/ooohboi-harakiri.php:121 controls/ooohboi-tabbr.php:304
959
  msgid "Writing Mode"
960
  msgstr ""
961
 
962
- #: controls/ooohboi-harakiri.php:127 controls/ooohboi-tabbr.php:308
963
  msgid "Vertical LR"
964
  msgstr ""
965
 
966
- #: controls/ooohboi-harakiri.php:128 controls/ooohboi-tabbr.php:309
967
  msgid "Vertical RL"
968
  msgstr ""
969
 
970
- #: controls/ooohboi-harakiri.php:145 controls/ooohboi-tabbr.php:324
971
  msgid "Flip"
972
  msgstr ""
973
 
974
- #: controls/ooohboi-harakiri.php:170 controls/ooohboi-interactor.php:206
975
- #: controls/ooohboi-overlaiz.php:145 controls/ooohboi-overlay-underlay.php:279
976
  #: controls/ooohboi-overlay-underlay.php:917 controls/ooohboi-pseudo.php:293
977
  #: controls/ooohboi-pseudo.php:947
978
  msgid "Height"
979
  msgstr ""
980
 
981
  #: controls/ooohboi-harakiri.php:174 controls/ooohboi-harakiri.php:295
982
- #: controls/ooohboi-hover-animator.php:342
983
- #: controls/ooohboi-hover-animator.php:539
984
- #: controls/ooohboi-hover-animator.php:736
985
- #: controls/ooohboi-hover-animator.php:986
986
- #: controls/ooohboi-hover-animator.php:1152 controls/ooohboi-interactor.php:138
987
- #: controls/ooohboi-interactor.php:253 controls/ooohboi-overlaiz.php:537
988
- #: controls/ooohboi-overlaiz.php:567 controls/ooohboi-overlay-underlay.php:581
989
  #: controls/ooohboi-overlay-underlay.php:611
990
  #: controls/ooohboi-overlay-underlay.php:1213
991
  #: controls/ooohboi-overlay-underlay.php:1242
992
- #: controls/ooohboi-photomorph.php:220 controls/ooohboi-postman.php:429
993
- #: controls/ooohboi-postman.php:469 controls/ooohboi-pseudo.php:609
994
  #: controls/ooohboi-pseudo.php:639 controls/ooohboi-pseudo.php:1256
995
  #: controls/ooohboi-pseudo.php:1285 controls/ooohboi-spacerat.php:224
996
  #: controls/ooohboi-spacerat.php:253 controls/ooohboi-videomasq.php:76
@@ -1002,10 +1006,10 @@ msgstr ""
1002
  msgid "Inline"
1003
  msgstr ""
1004
 
1005
- #: controls/ooohboi-harakiri.php:176 controls/ooohboi-overlaiz.php:571
1006
  #: controls/ooohboi-overlay-underlay.php:615
1007
- #: controls/ooohboi-overlay-underlay.php:1246 controls/ooohboi-postman.php:433
1008
- #: controls/ooohboi-postman.php:473 controls/ooohboi-pseudo.php:643
1009
  #: controls/ooohboi-pseudo.php:1289 controls/ooohboi-spacerat.php:257
1010
  #: controls/ooohboi-videomasq.php:108
1011
  msgid "Custom"
@@ -1114,110 +1118,119 @@ msgstr ""
1114
  msgid "NOTE: Only the last child P(aragraph) shall be cut off!"
1115
  msgstr ""
1116
 
1117
- #: controls/ooohboi-hover-animator.php:109
1118
  msgid "Enable HOVERANIMATOR?"
1119
  msgstr ""
1120
 
1121
- #: controls/ooohboi-hover-animator.php:124
1122
  msgid ""
1123
  "With Hoveranimator you can animate any widget in this container on mouse-"
1124
  "over event. Animation panel is available under the Advanced tab, per widget!"
1125
  msgstr ""
1126
 
1127
- #: controls/ooohboi-hover-animator.php:133 controls/ooohboi-icobox.php:75
1128
- #: controls/ooohboi-imbox.php:76 controls/ooohboi-perspektive.php:256
1129
- #: controls/ooohboi-teleporter.php:361
1130
  msgid "Content Overflow"
1131
  msgstr ""
1132
 
1133
- #: controls/ooohboi-hover-animator.php:134
1134
  msgid ""
1135
  "VISIBLE - makes visible all the elements outside this Column boundaries, "
1136
  "HIDDEN - hides everything outside this Column boundaries."
1137
  msgstr ""
1138
 
1139
- #: controls/ooohboi-hover-animator.php:139 controls/ooohboi-icobox.php:80
1140
- #: controls/ooohboi-imbox.php:81 controls/ooohboi-perspektive.php:262
1141
- #: controls/ooohboi-teleporter.php:367
1142
  msgid "Visible"
1143
  msgstr ""
1144
 
1145
- #: controls/ooohboi-hover-animator.php:140 controls/ooohboi-icobox.php:81
1146
- #: controls/ooohboi-imbox.php:82 controls/ooohboi-perspektive.php:263
1147
- #: controls/ooohboi-tabbr.php:619 controls/ooohboi-teleporter.php:368
1148
  msgid "Hidden"
1149
  msgstr ""
1150
 
1151
- #: controls/ooohboi-hover-animator.php:183
1152
  msgid "Enable Hoveranimator"
1153
  msgstr ""
1154
 
1155
- #: controls/ooohboi-hover-animator.php:184
1156
  msgid ""
1157
  "That will allow you to animate this widget on mouse-over event of the parent "
1158
  "column."
1159
  msgstr ""
1160
 
1161
- #: controls/ooohboi-hover-animator.php:197
1162
  #, php-format
1163
  msgid "Disable on touch devices?%sNEW!%s"
1164
  msgstr ""
1165
 
1166
- #: controls/ooohboi-hover-animator.php:199
1167
  msgid ""
1168
  "The effect is visible on touch based devices only. Developer tools can "
1169
  "simulate touch devices!"
1170
  msgstr ""
1171
 
1172
- #: controls/ooohboi-hover-animator.php:215 controls/ooohboi-interactor.php:209
1173
- #: controls/ooohboi-oh-animator.php:773
1174
  #: controls/ooohboi-overlay-underlay.php:138
1175
  #: controls/ooohboi-overlay-underlay.php:778 controls/ooohboi-pseudo.php:147
1176
  #: controls/ooohboi-pseudo.php:806
1177
  msgid "Opacity"
1178
  msgstr ""
1179
 
1180
- #: controls/ooohboi-hover-animator.php:231
1181
  msgid "Opacity Normal"
1182
  msgstr ""
1183
 
1184
- #: controls/ooohboi-hover-animator.php:256
1185
  msgid "Opacity Hover"
1186
  msgstr ""
1187
 
1188
- #: controls/ooohboi-hover-animator.php:278
1189
- #: controls/ooohboi-hover-animator.php:475
1190
- #: controls/ooohboi-hover-animator.php:672
1191
- #: controls/ooohboi-hover-animator.php:922
1192
- #: controls/ooohboi-hover-animator.php:1088 controls/ooohboi-interactor.php:223
1193
- #: controls/ooohboi-oh-animator.php:1208
1194
  msgid "Duration"
1195
  msgstr ""
1196
 
1197
- #: controls/ooohboi-hover-animator.php:307
1198
- #: controls/ooohboi-hover-animator.php:504
1199
- #: controls/ooohboi-hover-animator.php:701
1200
- #: controls/ooohboi-hover-animator.php:951
1201
- #: controls/ooohboi-hover-animator.php:1117 controls/ooohboi-interactor.php:235
1202
- #: controls/ooohboi-oh-animator.php:1224
1203
  msgid "Delay"
1204
  msgstr ""
1205
 
1206
- #: controls/ooohboi-hover-animator.php:336
1207
- #: controls/ooohboi-hover-animator.php:533
1208
- #: controls/ooohboi-hover-animator.php:730
1209
- #: controls/ooohboi-hover-animator.php:980
1210
- #: controls/ooohboi-hover-animator.php:1146 controls/ooohboi-interactor.php:247
1211
  msgid "Easing"
1212
  msgstr ""
1213
 
 
 
 
 
 
 
 
 
 
1214
  #: controls/ooohboi-hover-animator.php:343
1215
  #: controls/ooohboi-hover-animator.php:540
1216
  #: controls/ooohboi-hover-animator.php:737
1217
  #: controls/ooohboi-hover-animator.php:987
1218
  #: controls/ooohboi-hover-animator.php:1153 controls/ooohboi-interactor.php:254
1219
- #: controls/ooohboi-photomorph.php:221
1220
- msgid "Ease-in"
1221
  msgstr ""
1222
 
1223
  #: controls/ooohboi-hover-animator.php:344
@@ -1225,40 +1238,31 @@ msgstr ""
1225
  #: controls/ooohboi-hover-animator.php:738
1226
  #: controls/ooohboi-hover-animator.php:988
1227
  #: controls/ooohboi-hover-animator.php:1154 controls/ooohboi-interactor.php:255
1228
- #: controls/ooohboi-photomorph.php:222
1229
- msgid "Ease-out"
1230
- msgstr ""
1231
-
1232
- #: controls/ooohboi-hover-animator.php:345
1233
- #: controls/ooohboi-hover-animator.php:542
1234
- #: controls/ooohboi-hover-animator.php:739
1235
- #: controls/ooohboi-hover-animator.php:989
1236
- #: controls/ooohboi-hover-animator.php:1155 controls/ooohboi-interactor.php:256
1237
  #: controls/ooohboi-photomorph.php:223
1238
  msgid "Ease-in-out"
1239
  msgstr ""
1240
 
1241
- #: controls/ooohboi-hover-animator.php:365
1242
  #: controls/ooohboi-overlay-underlay.php:340
1243
  #: controls/ooohboi-overlay-underlay.php:976 controls/ooohboi-pseudo.php:358
1244
  #: controls/ooohboi-pseudo.php:1010
1245
  msgid "Offset Top"
1246
  msgstr ""
1247
 
1248
- #: controls/ooohboi-hover-animator.php:381
1249
  msgid "Offset Top Normal"
1250
  msgstr ""
1251
 
1252
- #: controls/ooohboi-hover-animator.php:413
1253
  msgid "Calc Offset Top Normal"
1254
  msgstr ""
1255
 
1256
- #: controls/ooohboi-hover-animator.php:414
1257
- #: controls/ooohboi-hover-animator.php:461
1258
- #: controls/ooohboi-hover-animator.php:611
1259
- #: controls/ooohboi-hover-animator.php:658 controls/ooohboi-overlaiz.php:130
1260
- #: controls/ooohboi-overlaiz.php:197 controls/ooohboi-overlaiz.php:264
1261
- #: controls/ooohboi-overlaiz.php:331 controls/ooohboi-overlay-underlay.php:263
1262
  #: controls/ooohboi-overlay-underlay.php:385
1263
  #: controls/ooohboi-overlay-underlay.php:902
1264
  #: controls/ooohboi-overlay-underlay.php:1020
@@ -1268,75 +1272,75 @@ msgstr ""
1268
  msgid "Enter CSS calc value only! Like: 100% - 50px or 100% + 2em"
1269
  msgstr ""
1270
 
1271
- #: controls/ooohboi-hover-animator.php:431
1272
  msgid "Offset Top Hover"
1273
  msgstr ""
1274
 
1275
- #: controls/ooohboi-hover-animator.php:460
1276
  msgid "Calc Offset Top Hover"
1277
  msgstr ""
1278
 
1279
- #: controls/ooohboi-hover-animator.php:562
1280
  #: controls/ooohboi-overlay-underlay.php:401
1281
  #: controls/ooohboi-overlay-underlay.php:1035 controls/ooohboi-pseudo.php:423
1282
  #: controls/ooohboi-pseudo.php:1073
1283
  msgid "Offset Left"
1284
  msgstr ""
1285
 
1286
- #: controls/ooohboi-hover-animator.php:578
1287
  msgid "Offset Left Normal"
1288
  msgstr ""
1289
 
1290
- #: controls/ooohboi-hover-animator.php:610
1291
  msgid "Calc Offset Left Normal"
1292
  msgstr ""
1293
 
1294
- #: controls/ooohboi-hover-animator.php:628
1295
  msgid "Offset Left Hover"
1296
  msgstr ""
1297
 
1298
- #: controls/ooohboi-hover-animator.php:657
1299
  msgid "Calc Offset Left Hover"
1300
  msgstr ""
1301
 
1302
- #: controls/ooohboi-hover-animator.php:759
1303
  msgid "Transforms"
1304
  msgstr ""
1305
 
1306
- #: controls/ooohboi-hover-animator.php:774
1307
  msgid "ScaleX Normal"
1308
  msgstr ""
1309
 
1310
- #: controls/ooohboi-hover-animator.php:800
1311
  msgid "ScaleX Hover"
1312
  msgstr ""
1313
 
1314
- #: controls/ooohboi-hover-animator.php:823
1315
  msgid "ScaleY Normal"
1316
  msgstr ""
1317
 
1318
- #: controls/ooohboi-hover-animator.php:849
1319
  msgid "ScaleY Hover"
1320
  msgstr ""
1321
 
1322
- #: controls/ooohboi-hover-animator.php:872
1323
  msgid "Rotation Normal"
1324
  msgstr ""
1325
 
1326
- #: controls/ooohboi-hover-animator.php:898
1327
  msgid "Rotation Hover"
1328
  msgstr ""
1329
 
1330
- #: controls/ooohboi-hover-animator.php:1009 controls/ooohboi-shadough.php:123
1331
  #: controls/ooohboi-spacerat.php:474
1332
  msgid "Blur"
1333
  msgstr ""
1334
 
1335
- #: controls/ooohboi-hover-animator.php:1025
1336
  msgid "Blur Normal"
1337
  msgstr ""
1338
 
1339
- #: controls/ooohboi-hover-animator.php:1058
1340
  msgid "Blur Hover"
1341
  msgstr ""
1342
 
@@ -1433,8 +1437,8 @@ msgstr ""
1433
  msgid "Image clip path"
1434
  msgstr ""
1435
 
1436
- #: controls/ooohboi-imbox.php:269 controls/ooohboi-oh-animator.php:933
1437
- #: controls/ooohboi-overlaiz.php:470 controls/ooohboi-overlay-underlay.php:716
1438
  #: controls/ooohboi-overlay-underlay.php:1344
1439
  #: controls/ooohboi-photomorph.php:120 controls/ooohboi-photomorph.php:150
1440
  #: controls/ooohboi-pseudo.php:744 controls/ooohboi-pseudo.php:1387
@@ -1452,181 +1456,181 @@ msgstr ""
1452
  msgid "Box z-index"
1453
  msgstr ""
1454
 
1455
- #: controls/ooohboi-interactor.php:100
1456
  msgid "Enable Interactor?"
1457
  msgstr ""
1458
 
1459
- #: controls/ooohboi-interactor.php:114
1460
  msgid "Interaction Type"
1461
  msgstr ""
1462
 
1463
- #: controls/ooohboi-interactor.php:115
1464
  msgid "It is either the onClick or onHover the selected element/widget"
1465
  msgstr ""
1466
 
1467
- #: controls/ooohboi-interactor.php:119
1468
  msgid "Mouse Click"
1469
  msgstr ""
1470
 
1471
- #: controls/ooohboi-interactor.php:120
1472
  msgid "Mouse Over"
1473
  msgstr ""
1474
 
1475
- #: controls/ooohboi-interactor.php:132
1476
  msgid "Pointer Type"
1477
  msgstr ""
1478
 
1479
- #: controls/ooohboi-interactor.php:133
1480
  msgid "Force pointer type on the trigger if needed"
1481
  msgstr ""
1482
 
1483
- #: controls/ooohboi-interactor.php:139
1484
  msgid "Pointer"
1485
  msgstr ""
1486
 
1487
- #: controls/ooohboi-interactor.php:154
1488
  msgid "Interactive Properties"
1489
  msgstr ""
1490
 
1491
- #: controls/ooohboi-interactor.php:156 controls/ooohboi-oh-animator.php:750
1492
  msgid "Add as many as you like but avoid redundancy!"
1493
  msgstr ""
1494
 
1495
- #: controls/ooohboi-interactor.php:171
1496
  msgid "Interaction Target"
1497
  msgstr ""
1498
 
1499
- #: controls/ooohboi-interactor.php:172
1500
  msgid "Self or any other element on page"
1501
  msgstr ""
1502
 
1503
- #: controls/ooohboi-interactor.php:176
1504
  msgid "Self"
1505
  msgstr ""
1506
 
1507
- #: controls/ooohboi-interactor.php:177
1508
  msgid "Other element"
1509
  msgstr ""
1510
 
1511
- #: controls/ooohboi-interactor.php:186
1512
  msgid "Element class or ID"
1513
  msgstr ""
1514
 
1515
- #: controls/ooohboi-interactor.php:187
1516
  msgid ""
1517
  "Enter the target element class or ID. IT MUST INCLUDE THE PREFIX! For "
1518
  "instance; \".some-class-name\" (for the custom class name) or \"#some-id"
1519
  "\" (for the element ID)"
1520
  msgstr ""
1521
 
1522
- #: controls/ooohboi-interactor.php:199 controls/ooohboi-oh-animator.php:765
1523
  msgid "Animate"
1524
  msgstr ""
1525
 
1526
- #: controls/ooohboi-interactor.php:207
1527
  msgid "Translate X"
1528
  msgstr ""
1529
 
1530
- #: controls/ooohboi-interactor.php:208
1531
  msgid "Translate Y"
1532
  msgstr ""
1533
 
1534
- #: controls/ooohboi-interactor.php:212 controls/ooohboi-oh-animator.php:776
1535
  msgid "Scale"
1536
  msgstr ""
1537
 
1538
- #: controls/ooohboi-interactor.php:213 controls/ooohboi-oh-animator.php:777
1539
  #: controls/ooohboi-overlay-underlay.php:463
1540
  #: controls/ooohboi-overlay-underlay.php:1095 controls/ooohboi-pseudo.php:489
1541
  #: controls/ooohboi-pseudo.php:1137
1542
  msgid "Rotate"
1543
  msgstr ""
1544
 
1545
- #: controls/ooohboi-interactor.php:214 controls/ooohboi-oh-animator.php:778
1546
  msgid "SkewX"
1547
  msgstr ""
1548
 
1549
- #: controls/ooohboi-interactor.php:215 controls/ooohboi-oh-animator.php:779
1550
  msgid "SkewY"
1551
  msgstr ""
1552
 
1553
- #: controls/ooohboi-interactor.php:224 controls/ooohboi-oh-animator.php:1209
1554
  msgid "Animation duration in seconds. 0.4 is deafult."
1555
  msgstr ""
1556
 
1557
- #: controls/ooohboi-interactor.php:236 controls/ooohboi-oh-animator.php:1225
1558
  msgid "Seconds to pause before the animation starts."
1559
  msgstr ""
1560
 
1561
- #: controls/ooohboi-interactor.php:264 controls/ooohboi-interactor.php:294
1562
- #: controls/ooohboi-interactor.php:324 controls/ooohboi-interactor.php:350
1563
- #: controls/ooohboi-interactor.php:376 controls/ooohboi-interactor.php:390
1564
- #: controls/ooohboi-interactor.php:401 controls/ooohboi-interactor.php:412
1565
- #: controls/ooohboi-interactor.php:425 controls/ooohboi-interactor.php:439
1566
- #: controls/ooohboi-interactor.php:453 controls/ooohboi-oh-animator.php:788
1567
- #: controls/ooohboi-oh-animator.php:814 controls/ooohboi-oh-animator.php:840
1568
- #: controls/ooohboi-oh-animator.php:854 controls/ooohboi-oh-animator.php:865
1569
- #: controls/ooohboi-oh-animator.php:876 controls/ooohboi-oh-animator.php:889
1570
- #: controls/ooohboi-oh-animator.php:903 controls/ooohboi-oh-animator.php:917
1571
- #: controls/ooohboi-oh-animator.php:931
1572
  msgid "From"
1573
  msgstr ""
1574
 
1575
- #: controls/ooohboi-interactor.php:468 controls/ooohboi-interactor.php:498
1576
- #: controls/ooohboi-interactor.php:528 controls/ooohboi-interactor.php:554
1577
- #: controls/ooohboi-interactor.php:580 controls/ooohboi-interactor.php:594
1578
- #: controls/ooohboi-interactor.php:605 controls/ooohboi-interactor.php:616
1579
- #: controls/ooohboi-interactor.php:653 controls/ooohboi-interactor.php:667
1580
- #: controls/ooohboi-interactor.php:681 controls/ooohboi-oh-animator.php:950
1581
- #: controls/ooohboi-oh-animator.php:976 controls/ooohboi-oh-animator.php:1002
1582
- #: controls/ooohboi-oh-animator.php:1016 controls/ooohboi-oh-animator.php:1027
1583
- #: controls/ooohboi-oh-animator.php:1038 controls/ooohboi-oh-animator.php:1075
1584
- #: controls/ooohboi-oh-animator.php:1089 controls/ooohboi-oh-animator.php:1103
1585
- #: controls/ooohboi-oh-animator.php:1117
1586
  msgid "To"
1587
  msgstr ""
1588
 
1589
- #: controls/ooohboi-interactor.php:629 controls/ooohboi-oh-animator.php:1051
1590
  msgid "Transform Origin"
1591
  msgstr ""
1592
 
1593
- #: controls/ooohboi-interactor.php:635 controls/ooohboi-oh-animator.php:1057
1594
  msgid "Left Top"
1595
  msgstr ""
1596
 
1597
- #: controls/ooohboi-interactor.php:636 controls/ooohboi-oh-animator.php:1058
1598
  msgid "Left Center"
1599
  msgstr ""
1600
 
1601
- #: controls/ooohboi-interactor.php:637 controls/ooohboi-oh-animator.php:1059
1602
  msgid "Left Bottom"
1603
  msgstr ""
1604
 
1605
- #: controls/ooohboi-interactor.php:638 controls/ooohboi-oh-animator.php:1060
1606
  msgid "Center Top"
1607
  msgstr ""
1608
 
1609
- #: controls/ooohboi-interactor.php:639 controls/ooohboi-oh-animator.php:1061
1610
- #: controls/ooohboi-overlaiz.php:538 controls/ooohboi-overlay-underlay.php:582
1611
  #: controls/ooohboi-overlay-underlay.php:1214 controls/ooohboi-pseudo.php:610
1612
  #: controls/ooohboi-pseudo.php:1257 controls/ooohboi-spacerat.php:225
1613
  #: controls/ooohboi-videomasq.php:77
1614
  msgid "Center Center"
1615
  msgstr ""
1616
 
1617
- #: controls/ooohboi-interactor.php:640 controls/ooohboi-oh-animator.php:1062
1618
  msgid "Center Bottom"
1619
  msgstr ""
1620
 
1621
- #: controls/ooohboi-interactor.php:641 controls/ooohboi-oh-animator.php:1063
1622
  msgid "Right Top"
1623
  msgstr ""
1624
 
1625
- #: controls/ooohboi-interactor.php:642 controls/ooohboi-oh-animator.php:1064
1626
  msgid "Right Center"
1627
  msgstr ""
1628
 
1629
- #: controls/ooohboi-interactor.php:643 controls/ooohboi-oh-animator.php:1065
1630
  msgid "Right Bottom"
1631
  msgstr ""
1632
 
@@ -1634,15 +1638,15 @@ msgstr ""
1634
  msgid "NOTE: It works only with the pagination style set to Dots!"
1635
  msgstr ""
1636
 
1637
- #: controls/ooohboi-locomotion.php:42
1638
  msgid "Custom Attributes"
1639
  msgstr ""
1640
 
1641
- #: controls/ooohboi-locomotion.php:50
1642
  msgid "key|value"
1643
  msgstr ""
1644
 
1645
- #: controls/ooohboi-locomotion.php:51
1646
  #, php-format
1647
  msgid ""
1648
  "Set custom attributes for the current element/widget. Each attribute must be "
@@ -1650,194 +1654,194 @@ msgid ""
1650
  "pipe character, i.e. data-scroll-offset%s100,50em"
1651
  msgstr ""
1652
 
1653
- #: controls/ooohboi-oh-animator.php:92
1654
  msgid "Enable ANIMATOR?"
1655
  msgstr ""
1656
 
1657
- #: controls/ooohboi-oh-animator.php:109
1658
  #, php-format
1659
  msgid ""
1660
  "If you are not familiar with the %s, %s and scroll triggered animations, "
1661
  "it's good idea to learn some basics."
1662
  msgstr ""
1663
 
1664
- #: controls/ooohboi-oh-animator.php:123
1665
  msgid "Animate first child?"
1666
  msgstr ""
1667
 
1668
- #: controls/ooohboi-oh-animator.php:124
1669
  msgid ""
1670
  "By default \".elementor-widget-container\" will be animated. You can animate "
1671
  "its first child element instead."
1672
  msgstr ""
1673
 
1674
- #: controls/ooohboi-oh-animator.php:142
1675
  msgid "ScrollTrigger Settings"
1676
  msgstr ""
1677
 
1678
- #: controls/ooohboi-oh-animator.php:144
1679
  msgid "This is where you set you scroll triggered animation."
1680
  msgstr ""
1681
 
1682
- #: controls/ooohboi-oh-animator.php:155
1683
  msgid "Show Markers?"
1684
  msgstr ""
1685
 
1686
- #: controls/ooohboi-oh-animator.php:156
1687
  msgid "See where the target element/widget start/end/trigger points are"
1688
  msgstr ""
1689
 
1690
- #: controls/ooohboi-oh-animator.php:172
1691
  msgid "Scrub?"
1692
  msgstr ""
1693
 
1694
- #: controls/ooohboi-oh-animator.php:173
1695
  msgid ""
1696
  "Controll the animation progress with the scrollbar so it acts like a scrubber"
1697
  msgstr ""
1698
 
1699
- #: controls/ooohboi-oh-animator.php:189
1700
  msgid "Scrub smooth"
1701
  msgstr ""
1702
 
1703
- #: controls/ooohboi-oh-animator.php:190
1704
  msgid "Adds smoothing to scrub. Best between 1 and 5 (extreme already!)"
1705
  msgstr ""
1706
 
1707
- #: controls/ooohboi-oh-animator.php:207
1708
  msgid "Invalidate on refresh?"
1709
  msgstr ""
1710
 
1711
- #: controls/ooohboi-oh-animator.php:208
1712
  msgid "This flushes out any internally-recorded starting values."
1713
  msgstr ""
1714
 
1715
- #: controls/ooohboi-oh-animator.php:224
1716
  msgid "Immediate render"
1717
  msgstr ""
1718
 
1719
- #: controls/ooohboi-oh-animator.php:226
1720
  #, php-format
1721
  msgid "Please take a quick guide %s"
1722
  msgstr ""
1723
 
1724
- #: controls/ooohboi-oh-animator.php:244
1725
  msgid "Pin?"
1726
  msgstr ""
1727
 
1728
- #: controls/ooohboi-oh-animator.php:245
1729
  msgid ""
1730
  "Warning: don't animate the pinned element itself due to the unpredicted "
1731
  "results! Rather animate elements inside the pinned element."
1732
  msgstr ""
1733
 
1734
- #: controls/ooohboi-oh-animator.php:261
1735
  msgid "Anticipate Pin"
1736
  msgstr ""
1737
 
1738
- #: controls/ooohboi-oh-animator.php:278
1739
  msgid "Prevent overlaps"
1740
  msgstr ""
1741
 
1742
- #: controls/ooohboi-oh-animator.php:295
1743
  msgid "Pin spacing"
1744
  msgstr ""
1745
 
1746
- #: controls/ooohboi-oh-animator.php:300
1747
  msgid "Yes (true)"
1748
  msgstr ""
1749
 
1750
- #: controls/ooohboi-oh-animator.php:301
1751
  msgid "No (false)"
1752
  msgstr ""
1753
 
1754
- #: controls/ooohboi-oh-animator.php:315
1755
  msgid "ScrollTrigger Start and End"
1756
  msgstr ""
1757
 
1758
- #: controls/ooohboi-oh-animator.php:331
1759
  msgid "ScrollTrigger Start"
1760
  msgstr ""
1761
 
1762
- #: controls/ooohboi-oh-animator.php:333
1763
  msgid ""
1764
  "Describes a place on the trigger and a place on the scroller that must meet "
1765
  "in order to start the ScrollTrigger"
1766
  msgstr ""
1767
 
1768
- #: controls/ooohboi-oh-animator.php:346
1769
  msgid "Start - Trigger Element"
1770
  msgstr ""
1771
 
1772
- #: controls/ooohboi-oh-animator.php:352 controls/ooohboi-oh-animator.php:402
1773
- #: controls/ooohboi-oh-animator.php:464 controls/ooohboi-oh-animator.php:513
1774
  msgid "Top"
1775
  msgstr ""
1776
 
1777
- #: controls/ooohboi-oh-animator.php:354 controls/ooohboi-oh-animator.php:404
1778
- #: controls/ooohboi-oh-animator.php:466 controls/ooohboi-oh-animator.php:515
1779
  msgid "Bottom"
1780
  msgstr ""
1781
 
1782
- #: controls/ooohboi-oh-animator.php:355
1783
  msgid "Top + Self height"
1784
  msgstr ""
1785
 
1786
- #: controls/ooohboi-oh-animator.php:367
1787
  msgid "Start - Trigger Element Offset"
1788
  msgstr ""
1789
 
1790
- #: controls/ooohboi-oh-animator.php:396
1791
  msgid "Start - Viewport"
1792
  msgstr ""
1793
 
1794
- #: controls/ooohboi-oh-animator.php:416
1795
  msgid "Start - Viewport Offset"
1796
  msgstr ""
1797
 
1798
- #: controls/ooohboi-oh-animator.php:445
1799
  msgid "ScrollTrigger End"
1800
  msgstr ""
1801
 
1802
- #: controls/ooohboi-oh-animator.php:447
1803
  msgid ""
1804
  "Describes a place on the endTrigger (or trigger if one isn't defined) and a "
1805
  "place on the scroller that must meet in order to end the scroll triggered "
1806
  "animation"
1807
  msgstr ""
1808
 
1809
- #: controls/ooohboi-oh-animator.php:458
1810
  msgid "End - Trigger Element"
1811
  msgstr ""
1812
 
1813
- #: controls/ooohboi-oh-animator.php:478
1814
  msgid "End - Trigger Element Offset"
1815
  msgstr ""
1816
 
1817
- #: controls/ooohboi-oh-animator.php:507
1818
  msgid "End - Viewport"
1819
  msgstr ""
1820
 
1821
- #: controls/ooohboi-oh-animator.php:527
1822
  msgid "End - Viewport Offset"
1823
  msgstr ""
1824
 
1825
- #: controls/ooohboi-oh-animator.php:556
1826
  msgid "End trigger selector"
1827
  msgstr ""
1828
 
1829
- #: controls/ooohboi-oh-animator.php:557
1830
  msgid ""
1831
  "Selector (element) whose position in the normal document flow is used for "
1832
  "calculating where the ScrollTrigger ends. For instance: \".element-class-name"
1833
  "\" or \"#element-unique-id\""
1834
  msgstr ""
1835
 
1836
- #: controls/ooohboi-oh-animator.php:573
1837
  msgid "Toggle Actions"
1838
  msgstr ""
1839
 
1840
- #: controls/ooohboi-oh-animator.php:590
1841
  msgid ""
1842
  "Determines how the linked animation is controlled at the 4 distinct toggle "
1843
  "places - onEnter, onLeave, onEnterBack, and onLeaveBack, in that order. <br/"
@@ -1849,62 +1853,62 @@ msgid ""
1849
  "the beginning) when scrolling all the way back past the beginning."
1850
  msgstr ""
1851
 
1852
- #: controls/ooohboi-oh-animator.php:602
1853
  msgid "Action onEnter"
1854
  msgstr ""
1855
 
 
 
 
 
 
1856
  #: controls/ooohboi-oh-animator.php:609 controls/ooohboi-oh-animator.php:634
1857
  #: controls/ooohboi-oh-animator.php:659 controls/ooohboi-oh-animator.php:684
1858
- msgid "Play"
1859
  msgstr ""
1860
 
1861
  #: controls/ooohboi-oh-animator.php:610 controls/ooohboi-oh-animator.php:635
1862
  #: controls/ooohboi-oh-animator.php:660 controls/ooohboi-oh-animator.php:685
1863
- msgid "Pause"
1864
  msgstr ""
1865
 
1866
  #: controls/ooohboi-oh-animator.php:611 controls/ooohboi-oh-animator.php:636
1867
  #: controls/ooohboi-oh-animator.php:661 controls/ooohboi-oh-animator.php:686
1868
- msgid "Resume"
1869
  msgstr ""
1870
 
1871
  #: controls/ooohboi-oh-animator.php:612 controls/ooohboi-oh-animator.php:637
1872
  #: controls/ooohboi-oh-animator.php:662 controls/ooohboi-oh-animator.php:687
1873
- msgid "Reset"
1874
  msgstr ""
1875
 
1876
  #: controls/ooohboi-oh-animator.php:613 controls/ooohboi-oh-animator.php:638
1877
  #: controls/ooohboi-oh-animator.php:663 controls/ooohboi-oh-animator.php:688
1878
- msgid "Restart"
1879
  msgstr ""
1880
 
1881
  #: controls/ooohboi-oh-animator.php:614 controls/ooohboi-oh-animator.php:639
1882
  #: controls/ooohboi-oh-animator.php:664 controls/ooohboi-oh-animator.php:689
1883
- msgid "Complete"
1884
- msgstr ""
1885
-
1886
- #: controls/ooohboi-oh-animator.php:615 controls/ooohboi-oh-animator.php:640
1887
- #: controls/ooohboi-oh-animator.php:665 controls/ooohboi-oh-animator.php:690
1888
  msgid "Reverse"
1889
  msgstr ""
1890
 
1891
- #: controls/ooohboi-oh-animator.php:627
1892
  msgid "Action onLeave"
1893
  msgstr ""
1894
 
1895
- #: controls/ooohboi-oh-animator.php:652
1896
  msgid "Action onEnterBack"
1897
  msgstr ""
1898
 
1899
- #: controls/ooohboi-oh-animator.php:677
1900
  msgid "Action onLeaveBack"
1901
  msgstr ""
1902
 
1903
- #: controls/ooohboi-oh-animator.php:705
1904
  msgid "Toggle Class"
1905
  msgstr ""
1906
 
1907
- #: controls/ooohboi-oh-animator.php:722
1908
  msgid ""
1909
  "Adds/removes a class to an element (or multiple elements) when the "
1910
  "ScrollTrigger toggles active/inactive. <br/>\n"
@@ -1912,195 +1916,195 @@ msgid ""
1912
  "trigger element - the String! The Object is currently not supported!"
1913
  msgstr ""
1914
 
1915
- #: controls/ooohboi-oh-animator.php:731
1916
  msgid "Toggle class name"
1917
  msgstr ""
1918
 
1919
- #: controls/ooohboi-oh-animator.php:748
1920
  msgid "Animatable Properties"
1921
  msgstr ""
1922
 
1923
- #: controls/ooohboi-oh-animator.php:771
1924
  msgid "X"
1925
  msgstr ""
1926
 
1927
- #: controls/ooohboi-oh-animator.php:772
1928
  msgid "Y"
1929
  msgstr ""
1930
 
1931
- #: controls/ooohboi-oh-animator.php:780 controls/ooohboi-overlaiz.php:453
1932
  #: controls/ooohboi-overlay-underlay.php:714
1933
  #: controls/ooohboi-overlay-underlay.php:1342 controls/ooohboi-pseudo.php:742
1934
  #: controls/ooohboi-pseudo.php:1385 controls/ooohboi-spacerat.php:537
1935
  msgid "Clip path"
1936
  msgstr ""
1937
 
1938
- #: controls/ooohboi-oh-animator.php:1153
1939
  msgid "Easing and Timing"
1940
  msgstr ""
1941
 
1942
- #: controls/ooohboi-oh-animator.php:1155
1943
  msgid "These will make any animation look more natural"
1944
  msgstr ""
1945
 
1946
- #: controls/ooohboi-oh-animator.php:1167
1947
  msgid "Ease"
1948
  msgstr ""
1949
 
1950
- #: controls/ooohboi-oh-animator.php:1168
1951
  msgid "It will automatically become NONE with the Scrub option enabled!"
1952
  msgstr ""
1953
 
1954
- #: controls/ooohboi-oh-animator.php:1174
1955
  msgid "Power1.in"
1956
  msgstr ""
1957
 
1958
- #: controls/ooohboi-oh-animator.php:1175
1959
  msgid "Power1.out"
1960
  msgstr ""
1961
 
1962
- #: controls/ooohboi-oh-animator.php:1176
1963
  msgid "Power1.inOut"
1964
  msgstr ""
1965
 
1966
- #: controls/ooohboi-oh-animator.php:1177
1967
  msgid "Power2.in"
1968
  msgstr ""
1969
 
1970
- #: controls/ooohboi-oh-animator.php:1178
1971
  msgid "Power2.out"
1972
  msgstr ""
1973
 
1974
- #: controls/ooohboi-oh-animator.php:1179
1975
  msgid "Power2.inOut"
1976
  msgstr ""
1977
 
1978
- #: controls/ooohboi-oh-animator.php:1180
1979
  msgid "Power3.in"
1980
  msgstr ""
1981
 
1982
- #: controls/ooohboi-oh-animator.php:1181
1983
  msgid "Power3.out"
1984
  msgstr ""
1985
 
1986
- #: controls/ooohboi-oh-animator.php:1182
1987
  msgid "Power3.inOut"
1988
  msgstr ""
1989
 
1990
- #: controls/ooohboi-oh-animator.php:1183
1991
  msgid "Power4.in"
1992
  msgstr ""
1993
 
1994
- #: controls/ooohboi-oh-animator.php:1184
1995
  msgid "Power4.out"
1996
  msgstr ""
1997
 
1998
- #: controls/ooohboi-oh-animator.php:1185
1999
  msgid "Power4.inOut"
2000
  msgstr ""
2001
 
2002
- #: controls/ooohboi-oh-animator.php:1186
2003
  msgid "Circ.in"
2004
  msgstr ""
2005
 
2006
- #: controls/ooohboi-oh-animator.php:1187
2007
  msgid "Circ.out"
2008
  msgstr ""
2009
 
2010
- #: controls/ooohboi-oh-animator.php:1188
2011
  msgid "Circ.inOut"
2012
  msgstr ""
2013
 
2014
- #: controls/ooohboi-oh-animator.php:1189
2015
  msgid "Expo.in"
2016
  msgstr ""
2017
 
2018
- #: controls/ooohboi-oh-animator.php:1190
2019
  msgid "Expo.out"
2020
  msgstr ""
2021
 
2022
- #: controls/ooohboi-oh-animator.php:1191
2023
  msgid "Expo.inOut"
2024
  msgstr ""
2025
 
2026
- #: controls/ooohboi-oh-animator.php:1192
2027
  msgid "Sine.in"
2028
  msgstr ""
2029
 
2030
- #: controls/ooohboi-oh-animator.php:1193
2031
  msgid "Sine.out"
2032
  msgstr ""
2033
 
2034
- #: controls/ooohboi-oh-animator.php:1194
2035
  msgid "Sine.inOut"
2036
  msgstr ""
2037
 
2038
- #: controls/ooohboi-oh-animator.php:1195
2039
  msgid "Elastic"
2040
  msgstr ""
2041
 
2042
- #: controls/ooohboi-oh-animator.php:1196
2043
  msgid "Back"
2044
  msgstr ""
2045
 
2046
- #: controls/ooohboi-oh-animator.php:1197
2047
  msgid "Bounce"
2048
  msgstr ""
2049
 
2050
- #: controls/ooohboi-overlaiz.php:61
2051
  msgid "Enable Overlaiz?"
2052
  msgstr ""
2053
 
2054
- #: controls/ooohboi-overlaiz.php:129 controls/ooohboi-overlay-underlay.php:262
2055
  #: controls/ooohboi-overlay-underlay.php:901 controls/ooohboi-pseudo.php:276
2056
  #: controls/ooohboi-pseudo.php:931
2057
  msgid "Calc Width"
2058
  msgstr ""
2059
 
2060
- #: controls/ooohboi-overlaiz.php:196 controls/ooohboi-overlay-underlay.php:323
2061
  #: controls/ooohboi-overlay-underlay.php:960 controls/ooohboi-pseudo.php:341
2062
  #: controls/ooohboi-pseudo.php:994
2063
  msgid "Calc Height"
2064
  msgstr ""
2065
 
2066
- #: controls/ooohboi-overlaiz.php:212
2067
  msgid "Position - X"
2068
  msgstr ""
2069
 
2070
- #: controls/ooohboi-overlaiz.php:263
2071
  msgid "Calc Position - X"
2072
  msgstr ""
2073
 
2074
- #: controls/ooohboi-overlaiz.php:279
2075
  msgid "Position - Y"
2076
  msgstr ""
2077
 
2078
- #: controls/ooohboi-overlaiz.php:330
2079
  msgid "Calc Position - Y"
2080
  msgstr ""
2081
 
2082
- #: controls/ooohboi-overlaiz.php:346
2083
  msgid "Rotation"
2084
  msgstr ""
2085
 
2086
- #: controls/ooohboi-overlaiz.php:494
2087
  msgid "Mask"
2088
  msgstr ""
2089
 
2090
- #: controls/ooohboi-overlaiz.php:495 controls/ooohboi-spacerat.php:185
2091
  #: controls/ooohboi-spacerat.php:354
2092
  msgid ""
2093
  "NOTE: In order to see the effect you should add the Background to the Spacer "
2094
  "widget first!"
2095
  msgstr ""
2096
 
2097
- #: controls/ooohboi-overlaiz.php:513 controls/ooohboi-overlay-underlay.php:557
2098
  #: controls/ooohboi-overlay-underlay.php:1189 controls/ooohboi-pseudo.php:585
2099
  #: controls/ooohboi-pseudo.php:1232 controls/ooohboi-spacerat.php:201
2100
  msgid "Choose Image Mask"
2101
  msgstr ""
2102
 
2103
- #: controls/ooohboi-overlaiz.php:514 controls/ooohboi-overlay-underlay.php:558
2104
  #: controls/ooohboi-overlay-underlay.php:1190 controls/ooohboi-pseudo.php:586
2105
  #: controls/ooohboi-pseudo.php:1233 controls/ooohboi-spacerat.php:202
2106
  #, php-format
@@ -2110,126 +2114,126 @@ msgid ""
2110
  "transparent will be completely hidden."
2111
  msgstr ""
2112
 
2113
- #: controls/ooohboi-overlaiz.php:533 controls/ooohboi-overlay-underlay.php:577
2114
  #: controls/ooohboi-overlay-underlay.php:1209 controls/ooohboi-pseudo.php:605
2115
  #: controls/ooohboi-pseudo.php:1252 controls/ooohboi-spacerat.php:220
2116
  #: controls/ooohboi-videomasq.php:72
2117
  msgid "Mask position"
2118
  msgstr ""
2119
 
2120
- #: controls/ooohboi-overlaiz.php:539 controls/ooohboi-overlay-underlay.php:583
2121
  #: controls/ooohboi-overlay-underlay.php:1215 controls/ooohboi-pseudo.php:611
2122
  #: controls/ooohboi-pseudo.php:1258 controls/ooohboi-spacerat.php:226
2123
  #: controls/ooohboi-videomasq.php:78
2124
  msgid "Center Left"
2125
  msgstr ""
2126
 
2127
- #: controls/ooohboi-overlaiz.php:540 controls/ooohboi-overlay-underlay.php:584
2128
  #: controls/ooohboi-overlay-underlay.php:1216 controls/ooohboi-pseudo.php:612
2129
  #: controls/ooohboi-pseudo.php:1259 controls/ooohboi-spacerat.php:227
2130
  #: controls/ooohboi-videomasq.php:79
2131
  msgid "Center Right"
2132
  msgstr ""
2133
 
2134
- #: controls/ooohboi-overlaiz.php:541 controls/ooohboi-overlay-underlay.php:585
2135
  #: controls/ooohboi-overlay-underlay.php:1217 controls/ooohboi-pseudo.php:613
2136
  #: controls/ooohboi-pseudo.php:1260 controls/ooohboi-spacerat.php:228
2137
  #: controls/ooohboi-videomasq.php:80
2138
  msgid "Top Center"
2139
  msgstr ""
2140
 
2141
- #: controls/ooohboi-overlaiz.php:542 controls/ooohboi-overlay-underlay.php:586
2142
  #: controls/ooohboi-overlay-underlay.php:1218 controls/ooohboi-pseudo.php:614
2143
  #: controls/ooohboi-pseudo.php:1261 controls/ooohboi-spacerat.php:229
2144
  #: controls/ooohboi-videomasq.php:81
2145
  msgid "Top Left"
2146
  msgstr ""
2147
 
2148
- #: controls/ooohboi-overlaiz.php:543 controls/ooohboi-overlay-underlay.php:587
2149
  #: controls/ooohboi-overlay-underlay.php:1219 controls/ooohboi-pseudo.php:615
2150
  #: controls/ooohboi-pseudo.php:1262 controls/ooohboi-spacerat.php:230
2151
  #: controls/ooohboi-videomasq.php:82
2152
  msgid "Top Right"
2153
  msgstr ""
2154
 
2155
- #: controls/ooohboi-overlaiz.php:544 controls/ooohboi-overlay-underlay.php:588
2156
  #: controls/ooohboi-overlay-underlay.php:1220 controls/ooohboi-pseudo.php:616
2157
  #: controls/ooohboi-pseudo.php:1263 controls/ooohboi-spacerat.php:231
2158
  #: controls/ooohboi-videomasq.php:83
2159
  msgid "Bottom Center"
2160
  msgstr ""
2161
 
2162
- #: controls/ooohboi-overlaiz.php:545 controls/ooohboi-overlay-underlay.php:589
2163
  #: controls/ooohboi-overlay-underlay.php:1221 controls/ooohboi-pseudo.php:617
2164
  #: controls/ooohboi-pseudo.php:1264 controls/ooohboi-spacerat.php:232
2165
  #: controls/ooohboi-videomasq.php:84
2166
  msgid "Bottom Left"
2167
  msgstr ""
2168
 
2169
- #: controls/ooohboi-overlaiz.php:546 controls/ooohboi-overlay-underlay.php:590
2170
  #: controls/ooohboi-overlay-underlay.php:1222 controls/ooohboi-pseudo.php:618
2171
  #: controls/ooohboi-pseudo.php:1265 controls/ooohboi-spacerat.php:233
2172
  #: controls/ooohboi-videomasq.php:85
2173
  msgid "Bottom Right"
2174
  msgstr ""
2175
 
2176
- #: controls/ooohboi-overlaiz.php:563 controls/ooohboi-overlay-underlay.php:607
2177
  #: controls/ooohboi-overlay-underlay.php:1238 controls/ooohboi-pseudo.php:635
2178
  #: controls/ooohboi-pseudo.php:1281 controls/ooohboi-spacerat.php:249
2179
  #: controls/ooohboi-videomasq.php:100
2180
  msgid "Mask size"
2181
  msgstr ""
2182
 
2183
- #: controls/ooohboi-overlaiz.php:569 controls/ooohboi-overlay-underlay.php:613
2184
  #: controls/ooohboi-overlay-underlay.php:1244 controls/ooohboi-pseudo.php:641
2185
  #: controls/ooohboi-pseudo.php:1287 controls/ooohboi-spacerat.php:255
2186
  #: controls/ooohboi-videomasq.php:106
2187
  msgid "Cover"
2188
  msgstr ""
2189
 
2190
- #: controls/ooohboi-overlaiz.php:570 controls/ooohboi-overlay-underlay.php:614
2191
  #: controls/ooohboi-overlay-underlay.php:1245 controls/ooohboi-pseudo.php:642
2192
  #: controls/ooohboi-pseudo.php:1288 controls/ooohboi-spacerat.php:256
2193
  #: controls/ooohboi-videomasq.php:107
2194
  msgid "Contain"
2195
  msgstr ""
2196
 
2197
- #: controls/ooohboi-overlaiz.php:645 controls/ooohboi-overlay-underlay.php:687
2198
  #: controls/ooohboi-overlay-underlay.php:1316 controls/ooohboi-pseudo.php:715
2199
  #: controls/ooohboi-pseudo.php:1359 controls/ooohboi-spacerat.php:327
2200
  #: controls/ooohboi-videomasq.php:172
2201
  msgid "Mask repeat"
2202
  msgstr ""
2203
 
2204
- #: controls/ooohboi-overlaiz.php:649 controls/ooohboi-overlay-underlay.php:691
2205
  #: controls/ooohboi-overlay-underlay.php:1320 controls/ooohboi-pseudo.php:719
2206
  #: controls/ooohboi-pseudo.php:1363 controls/ooohboi-spacerat.php:331
2207
  #: controls/ooohboi-videomasq.php:176
2208
  msgid "No-repeat"
2209
  msgstr ""
2210
 
2211
- #: controls/ooohboi-overlaiz.php:650 controls/ooohboi-overlay-underlay.php:692
2212
  #: controls/ooohboi-overlay-underlay.php:1321 controls/ooohboi-pseudo.php:720
2213
  #: controls/ooohboi-pseudo.php:1364 controls/ooohboi-spacerat.php:332
2214
  #: controls/ooohboi-videomasq.php:177
2215
  msgid "Repeat"
2216
  msgstr ""
2217
 
2218
- #: controls/ooohboi-overlaiz.php:651 controls/ooohboi-overlay-underlay.php:693
2219
  #: controls/ooohboi-overlay-underlay.php:1322 controls/ooohboi-pseudo.php:721
2220
  #: controls/ooohboi-pseudo.php:1365 controls/ooohboi-spacerat.php:333
2221
  #: controls/ooohboi-videomasq.php:178
2222
  msgid "Repeat-x"
2223
  msgstr ""
2224
 
2225
- #: controls/ooohboi-overlaiz.php:652 controls/ooohboi-overlay-underlay.php:694
2226
  #: controls/ooohboi-overlay-underlay.php:1323 controls/ooohboi-pseudo.php:722
2227
  #: controls/ooohboi-pseudo.php:1366 controls/ooohboi-spacerat.php:334
2228
  #: controls/ooohboi-videomasq.php:179
2229
  msgid "Repeat-y"
2230
  msgstr ""
2231
 
2232
- #: controls/ooohboi-overlaiz.php:672 controls/ooohboi-overlay-underlay.php:737
2233
  #: controls/ooohboi-overlay-underlay.php:1365 controls/ooohboi-pseudo.php:765
2234
  #: controls/ooohboi-pseudo.php:1408
2235
  msgid "Z-Index"
@@ -2352,37 +2356,37 @@ msgstr ""
2352
  msgid "Unstyle Prev and Next?"
2353
  msgstr ""
2354
 
2355
- #: controls/ooohboi-perspektive.php:101
2356
  msgid "Enable Perspektive?"
2357
  msgstr ""
2358
 
2359
- #: controls/ooohboi-perspektive.php:102
2360
  msgid ""
2361
  "NOTE: Perspektive interferes with z-index! The background of the element "
2362
  "with the Perspektive will not be affected by the Perspektive."
2363
  msgstr ""
2364
 
2365
- #: controls/ooohboi-perspektive.php:117
2366
  msgid "Perspective"
2367
  msgstr ""
2368
 
2369
- #: controls/ooohboi-perspektive.php:150
2370
  msgid "Perspective Origin"
2371
  msgstr ""
2372
 
2373
- #: controls/ooohboi-perspektive.php:175
2374
  msgid "Translate Z"
2375
  msgstr ""
2376
 
2377
- #: controls/ooohboi-perspektive.php:208
2378
  msgid "Rotate X"
2379
  msgstr ""
2380
 
2381
- #: controls/ooohboi-perspektive.php:232
2382
  msgid "Rotate Y"
2383
  msgstr ""
2384
 
2385
- #: controls/ooohboi-perspektive.php:257
2386
  msgid "Just in case the wrapper is \"overflow: hidden\""
2387
  msgstr ""
2388
 
@@ -2440,7 +2444,11 @@ msgstr ""
2440
  msgid "Paragraph styles"
2441
  msgstr ""
2442
 
2443
- #: controls/ooohboi-postman.php:129 controls/ooohboi-postman.php:148
 
 
 
 
2444
  msgid "Paragraph margins"
2445
  msgstr ""
2446
 
@@ -2480,95 +2488,99 @@ msgstr ""
2480
  msgid "Lists styles: UL and OL"
2481
  msgstr ""
2482
 
2483
- #: controls/ooohboi-postman.php:365
2484
  msgid "Margins"
2485
  msgstr ""
2486
 
2487
- #: controls/ooohboi-postman.php:384
2488
  msgid "Margins - nested lists"
2489
  msgstr ""
2490
 
2491
- #: controls/ooohboi-postman.php:406
2492
  msgid "Items spacing"
2493
  msgstr ""
2494
 
2495
- #: controls/ooohboi-postman.php:425
2496
  msgid "List type UL"
2497
  msgstr ""
2498
 
2499
- #: controls/ooohboi-postman.php:430
2500
  msgid "Circle"
2501
  msgstr ""
2502
 
2503
- #: controls/ooohboi-postman.php:431
2504
  msgid "Square"
2505
  msgstr ""
2506
 
2507
- #: controls/ooohboi-postman.php:432
2508
  msgid "Disc"
2509
  msgstr ""
2510
 
2511
- #: controls/ooohboi-postman.php:447
2512
  msgid "List type UL - custom"
2513
  msgstr ""
2514
 
2515
- #: controls/ooohboi-postman.php:448 controls/ooohboi-postman.php:488
2516
  msgid "It has to be Unicode HEX escape, like \\2192, or \\00A9"
2517
  msgstr ""
2518
 
2519
- #: controls/ooohboi-postman.php:465
2520
  msgid "List type OL"
2521
  msgstr ""
2522
 
2523
- #: controls/ooohboi-postman.php:470
2524
  msgid "Decimal"
2525
  msgstr ""
2526
 
2527
- #: controls/ooohboi-postman.php:471
2528
  msgid "Georgian"
2529
  msgstr ""
2530
 
2531
- #: controls/ooohboi-postman.php:472
2532
  msgid "Upper alpha"
2533
  msgstr ""
2534
 
2535
- #: controls/ooohboi-postman.php:487
2536
  msgid "List type OL - custom"
2537
  msgstr ""
2538
 
2539
- #: controls/ooohboi-postman.php:510
2540
  msgid "Quotations"
2541
  msgstr ""
2542
 
2543
- #: controls/ooohboi-postman.php:511
2544
  msgid "Style up the Post Content Quotations"
2545
  msgstr ""
2546
 
2547
- #: controls/ooohboi-postman.php:522
2548
  msgid "Quotation Color"
2549
  msgstr ""
2550
 
2551
- #: controls/ooohboi-postman.php:535
2552
  msgid "Quotation margin"
2553
  msgstr ""
2554
 
2555
- #: controls/ooohboi-postman.php:555
 
 
 
 
2556
  msgid "Quotation Typography"
2557
  msgstr ""
2558
 
2559
- #: controls/ooohboi-postman.php:566
2560
  msgid "Cite color"
2561
  msgstr ""
2562
 
2563
- #: controls/ooohboi-postman.php:579
2564
  msgid "Cite margin"
2565
  msgstr ""
2566
 
2567
- #: controls/ooohboi-postman.php:598
2568
  msgid "Cite typography"
2569
  msgstr ""
2570
 
2571
- #: controls/ooohboi-postman.php:619
2572
  msgid "Background opacity"
2573
  msgstr ""
2574
 
@@ -2618,23 +2630,23 @@ msgstr ""
2618
  msgid "Search All"
2619
  msgstr ""
2620
 
2621
- #: controls/ooohboi-shadough.php:46
2622
  msgid "Enable Shadough?"
2623
  msgstr ""
2624
 
2625
- #: controls/ooohboi-shadough.php:47
2626
  msgid "Creates a shadow that conforms to the shape."
2627
  msgstr ""
2628
 
2629
- #: controls/ooohboi-shadough.php:61 controls/ooohboi-spacerat.php:408
2630
  msgid "Offset X"
2631
  msgstr ""
2632
 
2633
- #: controls/ooohboi-shadough.php:92 controls/ooohboi-spacerat.php:441
2634
  msgid "Offset Y"
2635
  msgstr ""
2636
 
2637
- #: controls/ooohboi-shadough.php:153 controls/ooohboi-spacerat.php:506
2638
  msgid "Shadow Color"
2639
  msgstr ""
2640
 
@@ -2646,11 +2658,11 @@ msgstr ""
2646
  msgid "Awesome gear for the pretty-much dull Spacer widget."
2647
  msgstr ""
2648
 
2649
- #: controls/ooohboi-spacerat.php:157 controls/ooohboi-teleporter.php:109
2650
  msgid "Cursor Pointer"
2651
  msgstr ""
2652
 
2653
- #: controls/ooohboi-spacerat.php:158 controls/ooohboi-teleporter.php:110
2654
  msgid "Keep the default cursor or show pointer on Hover?"
2655
  msgstr ""
2656
 
@@ -2714,113 +2726,117 @@ msgstr ""
2714
  msgid "BEWARE! This will override the default (non-responsive) tabs alignment!"
2715
  msgstr ""
2716
 
2717
- #: controls/ooohboi-tabbr.php:238
2718
  msgid "Tabs width"
2719
  msgstr ""
2720
 
2721
- #: controls/ooohboi-tabbr.php:239 controls/ooohboi-tabbr.php:600
2722
  msgid ""
2723
  "Enter any acceptable CSS value; 125px, 5vw, calc(30% - 10px), clamp(50px, "
2724
  "5vw + 10px, 155px), 12% ..."
2725
  msgstr ""
2726
 
2727
- #: controls/ooohboi-tabbr.php:277
2728
- msgid "Tabs Wrapper Border"
 
 
 
 
2729
  msgstr ""
2730
 
2731
- #: controls/ooohboi-tabbr.php:291
2732
  msgid "Tab title"
2733
  msgstr ""
2734
 
2735
- #: controls/ooohboi-tabbr.php:292
2736
  msgid "Style up tab title"
2737
  msgstr ""
2738
 
2739
- #: controls/ooohboi-tabbr.php:445
2740
  msgid "Active"
2741
  msgstr ""
2742
 
2743
- #: controls/ooohboi-tabbr.php:485
2744
  msgid "Tab container"
2745
  msgstr ""
2746
 
2747
- #: controls/ooohboi-tabbr.php:486
2748
  msgid "Style up the tab container"
2749
  msgstr ""
2750
 
2751
- #: controls/ooohboi-tabbr.php:578
2752
  msgid "Inset border"
2753
  msgstr ""
2754
 
2755
- #: controls/ooohboi-tabbr.php:599
2756
  msgid "Max-height"
2757
  msgstr ""
2758
 
2759
- #: controls/ooohboi-tabbr.php:615
2760
  msgid "Scroll behaviour"
2761
  msgstr ""
2762
 
2763
- #: controls/ooohboi-teleporter.php:61
2764
  msgid "Enable Teleporter"
2765
  msgstr ""
2766
 
2767
- #: controls/ooohboi-teleporter.php:136 controls/ooohboi-teleporter.php:181
2768
  msgid "Content Position - X"
2769
  msgstr ""
2770
 
2771
- #: controls/ooohboi-teleporter.php:154 controls/ooohboi-teleporter.php:199
2772
  msgid "Content Position - Y"
2773
  msgstr ""
2774
 
2775
- #: controls/ooohboi-teleporter.php:216
2776
  msgid "Teleport to parent"
2777
  msgstr ""
2778
 
2779
- #: controls/ooohboi-teleporter.php:217
2780
  msgid "Column Hover event is teleported to the parent element instead!"
2781
  msgstr ""
2782
 
2783
- #: controls/ooohboi-teleporter.php:232
2784
  msgid "Which parent?"
2785
  msgstr ""
2786
 
2787
- #: controls/ooohboi-teleporter.php:238
2788
  msgid "Section"
2789
  msgstr ""
2790
 
2791
- #: controls/ooohboi-teleporter.php:239
2792
  msgid "Container"
2793
  msgstr ""
2794
 
2795
- #: controls/ooohboi-teleporter.php:251
2796
  msgid "Disable on Tablet"
2797
  msgstr ""
2798
 
2799
- #: controls/ooohboi-teleporter.php:266
2800
  msgid "Disable on Mobile"
2801
  msgstr ""
2802
 
2803
- #: controls/ooohboi-teleporter.php:294
2804
  msgid "Overlay Color"
2805
  msgstr ""
2806
 
2807
- #: controls/ooohboi-teleporter.php:311
2808
  msgid "Hover effect"
2809
  msgstr ""
2810
 
2811
- #: controls/ooohboi-teleporter.php:318
2812
  msgid "Zoom"
2813
  msgstr ""
2814
 
2815
- #: controls/ooohboi-teleporter.php:319
2816
  msgid "Stutter"
2817
  msgstr ""
2818
 
2819
- #: controls/ooohboi-teleporter.php:331
2820
  msgid "Effect Duration"
2821
  msgstr ""
2822
 
2823
- #: controls/ooohboi-teleporter.php:362
2824
  msgid "Strongly advised: HIDDEN."
2825
  msgstr ""
2826
 
@@ -3316,9 +3332,9 @@ msgstr ""
3316
 
3317
  #. Description of the plugin/theme
3318
  msgid ""
3319
- "An awesome set of tools, options and settings that expand Elementor "
3320
- "defaults. Instead of creating new Elementor Widgets, these act like an "
3321
- "upgrade of existing options or the self-standing panels."
3322
  msgstr ""
3323
 
3324
  #. Author of the plugin/theme
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: OoohBoi Steroids for Elementor\n"
5
+ "POT-Creation-Date: 2022-10-08 13:26+0200\n"
6
+ "PO-Revision-Date: 2022-10-08 13:25+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
32
  msgstr ""
33
 
34
  #: controls/ooohboi-breaking-bad.php:93 controls/ooohboi-breaking-bad.php:175
35
+ #: controls/ooohboi-breaking-bad.php:508 controls/ooohboi-breaking-bad.php:583
36
+ #: controls/ooohboi-bullet.php:50 controls/ooohboi-butter-button.php:102
37
+ #: controls/ooohboi-commentz.php:100 controls/ooohboi-commentz.php:1137
38
+ #: controls/ooohboi-container-extras.php:97 controls/ooohboi-counterz.php:94
39
+ #: controls/ooohboi-glider.php:120 controls/ooohboi-glider.php:134
40
+ #: controls/ooohboi-glider.php:187 controls/ooohboi-glider.php:420
41
+ #: controls/ooohboi-glider.php:580 controls/ooohboi-glider.php:661
42
+ #: controls/ooohboi-glider.php:682 controls/ooohboi-glider.php:704
43
+ #: controls/ooohboi-glider.php:744 controls/ooohboi-glider.php:779
44
+ #: controls/ooohboi-glider.php:797 controls/ooohboi-glider.php:816
45
+ #: controls/ooohboi-glider.php:835 controls/ooohboi-harakiri.php:95
46
  #: controls/ooohboi-harakiri.php:149 controls/ooohboi-harakiri.php:397
47
+ #: controls/ooohboi-hover-animator.php:111
48
+ #: controls/ooohboi-hover-animator.php:185
49
+ #: controls/ooohboi-hover-animator.php:200 controls/ooohboi-icobox.php:96
50
  #: controls/ooohboi-icobox.php:112 controls/ooohboi-icobox.php:247
51
  #: controls/ooohboi-imbox.php:97 controls/ooohboi-imbox.php:135
52
+ #: controls/ooohboi-imbox.php:431 controls/ooohboi-interactor.php:102
53
+ #: controls/ooohboi-oh-animator.php:94 controls/ooohboi-oh-animator.php:125
54
+ #: controls/ooohboi-oh-animator.php:157 controls/ooohboi-oh-animator.php:174
55
+ #: controls/ooohboi-oh-animator.php:209 controls/ooohboi-oh-animator.php:229
56
+ #: controls/ooohboi-oh-animator.php:246 controls/ooohboi-oh-animator.php:262
57
+ #: controls/ooohboi-oh-animator.php:279 controls/ooohboi-overlaiz.php:62
58
  #: controls/ooohboi-overlay-underlay.php:105
59
  #: controls/ooohboi-overlay-underlay.php:1398
60
  #: controls/ooohboi-overlay-underlay.php:1417 controls/ooohboi-paginini.php:220
61
+ #: controls/ooohboi-perspektive.php:104 controls/ooohboi-photomorph.php:97
62
  #: controls/ooohboi-photomorph.php:173 controls/ooohboi-postman.php:101
63
  #: controls/ooohboi-pseudo.php:114 controls/ooohboi-searchcop.php:79
64
+ #: controls/ooohboi-shadough.php:49 controls/ooohboi-spacerat.php:101
65
  #: controls/ooohboi-spacerat.php:378 controls/ooohboi-tabbr.php:95
66
+ #: controls/ooohboi-tabbr.php:359 controls/ooohboi-widget-stalker.php:114
67
  #: inc/exopite-simple-options/fields/upload.php:131
68
  msgid "Yes"
69
  msgstr ""
70
 
71
  #: controls/ooohboi-breaking-bad.php:94 controls/ooohboi-breaking-bad.php:176
72
+ #: controls/ooohboi-breaking-bad.php:509 controls/ooohboi-breaking-bad.php:584
73
+ #: controls/ooohboi-bullet.php:51 controls/ooohboi-butter-button.php:103
74
+ #: controls/ooohboi-commentz.php:101 controls/ooohboi-commentz.php:1138
75
+ #: controls/ooohboi-container-extras.php:98 controls/ooohboi-counterz.php:95
76
+ #: controls/ooohboi-glider.php:121 controls/ooohboi-glider.php:135
77
+ #: controls/ooohboi-glider.php:188 controls/ooohboi-glider.php:421
78
+ #: controls/ooohboi-glider.php:581 controls/ooohboi-glider.php:662
79
+ #: controls/ooohboi-glider.php:683 controls/ooohboi-glider.php:705
80
+ #: controls/ooohboi-glider.php:745 controls/ooohboi-glider.php:780
81
+ #: controls/ooohboi-glider.php:798 controls/ooohboi-glider.php:817
82
+ #: controls/ooohboi-glider.php:836 controls/ooohboi-harakiri.php:96
83
  #: controls/ooohboi-harakiri.php:150 controls/ooohboi-harakiri.php:398
84
+ #: controls/ooohboi-hover-animator.php:112
85
+ #: controls/ooohboi-hover-animator.php:186
86
+ #: controls/ooohboi-hover-animator.php:201 controls/ooohboi-icobox.php:97
87
  #: controls/ooohboi-icobox.php:113 controls/ooohboi-icobox.php:248
88
  #: controls/ooohboi-imbox.php:98 controls/ooohboi-imbox.php:136
89
+ #: controls/ooohboi-imbox.php:432 controls/ooohboi-interactor.php:103
90
+ #: controls/ooohboi-oh-animator.php:95 controls/ooohboi-oh-animator.php:126
91
+ #: controls/ooohboi-oh-animator.php:158 controls/ooohboi-oh-animator.php:175
92
+ #: controls/ooohboi-oh-animator.php:210 controls/ooohboi-oh-animator.php:230
93
+ #: controls/ooohboi-oh-animator.php:247 controls/ooohboi-oh-animator.php:263
94
+ #: controls/ooohboi-oh-animator.php:280 controls/ooohboi-overlaiz.php:63
95
  #: controls/ooohboi-overlay-underlay.php:106
96
  #: controls/ooohboi-overlay-underlay.php:1399
97
  #: controls/ooohboi-overlay-underlay.php:1418 controls/ooohboi-paginini.php:221
98
+ #: controls/ooohboi-perspektive.php:105 controls/ooohboi-photomorph.php:98
99
  #: controls/ooohboi-photomorph.php:174 controls/ooohboi-postman.php:102
100
  #: controls/ooohboi-pseudo.php:115 controls/ooohboi-searchcop.php:80
101
+ #: controls/ooohboi-shadough.php:50 controls/ooohboi-spacerat.php:102
102
  #: controls/ooohboi-spacerat.php:379 controls/ooohboi-tabbr.php:96
103
+ #: controls/ooohboi-tabbr.php:360 controls/ooohboi-widget-stalker.php:115
104
  #: inc/exopite-simple-options/fields/upload.php:129
105
  msgid "No"
106
  msgstr ""
110
  msgstr ""
111
 
112
  #: controls/ooohboi-breaking-bad.php:108 controls/ooohboi-breaking-bad.php:154
113
+ #: controls/ooohboi-breaking-bad.php:337 controls/ooohboi-breaking-bad.php:492
114
+ #: controls/ooohboi-breaking-bad.php:617 controls/ooohboi-breaking-bad.php:641
115
  #: controls/ooohboi-counterz.php:123 controls/ooohboi-imbox.php:114
116
  #: controls/ooohboi-tabbr.php:203
117
  msgid "Start"
119
 
120
  #: controls/ooohboi-breaking-bad.php:109 controls/ooohboi-breaking-bad.php:155
121
  #: controls/ooohboi-breaking-bad.php:315 controls/ooohboi-breaking-bad.php:338
122
+ #: controls/ooohboi-breaking-bad.php:493 controls/ooohboi-breaking-bad.php:618
123
+ #: controls/ooohboi-breaking-bad.php:642 controls/ooohboi-commentz.php:165
124
+ #: controls/ooohboi-commentz.php:706 controls/ooohboi-counterz.php:124
125
  #: controls/ooohboi-counterz.php:227 controls/ooohboi-imbox.php:115
126
+ #: controls/ooohboi-oh-animator.php:352 controls/ooohboi-oh-animator.php:402
127
+ #: controls/ooohboi-oh-animator.php:464 controls/ooohboi-oh-animator.php:513
128
  #: controls/ooohboi-tabbr.php:204 controls/ooohboi-widget-stalker.php:265
129
  msgid "Center"
130
  msgstr ""
131
 
132
  #: controls/ooohboi-breaking-bad.php:110 controls/ooohboi-breaking-bad.php:156
133
  #: controls/ooohboi-breaking-bad.php:316 controls/ooohboi-breaking-bad.php:339
134
+ #: controls/ooohboi-breaking-bad.php:494 controls/ooohboi-breaking-bad.php:619
135
+ #: controls/ooohboi-breaking-bad.php:643 controls/ooohboi-counterz.php:125
136
  #: controls/ooohboi-imbox.php:116 controls/ooohboi-tabbr.php:205
137
  #: controls/ooohboi-widget-stalker.php:266
138
  msgid "End"
139
  msgstr ""
140
 
141
+ #: controls/ooohboi-breaking-bad.php:111 controls/ooohboi-breaking-bad.php:620
142
  #: controls/ooohboi-counterz.php:126
143
  msgid "Space Between"
144
  msgstr ""
145
 
146
+ #: controls/ooohboi-breaking-bad.php:112 controls/ooohboi-breaking-bad.php:621
147
  #: controls/ooohboi-counterz.php:127
148
  msgid "Space Around"
149
  msgstr ""
150
 
151
+ #: controls/ooohboi-breaking-bad.php:113 controls/ooohboi-breaking-bad.php:622
152
  #: controls/ooohboi-counterz.php:128
153
  msgid "Space Evenly"
154
  msgstr ""
157
  msgid "Columns Direction"
158
  msgstr ""
159
 
160
+ #: controls/ooohboi-breaking-bad.php:132 controls/ooohboi-breaking-bad.php:598
161
  msgid "Row"
162
  msgstr ""
163
 
164
+ #: controls/ooohboi-breaking-bad.php:133 controls/ooohboi-breaking-bad.php:599
165
  msgid "Column"
166
  msgstr ""
167
 
201
  msgstr ""
202
 
203
  #: controls/ooohboi-breaking-bad.php:249
204
+ #: controls/ooohboi-container-extras.php:109
205
+ #: controls/ooohboi-container-extras.php:127
206
+ #: controls/ooohboi-interactor.php:204 controls/ooohboi-overlaiz.php:76
207
+ #: controls/ooohboi-overlaiz.php:586 controls/ooohboi-overlay-underlay.php:218
208
  #: controls/ooohboi-overlay-underlay.php:632
209
  #: controls/ooohboi-overlay-underlay.php:858
210
  #: controls/ooohboi-overlay-underlay.php:1262 controls/ooohboi-pseudo.php:228
215
  msgstr ""
216
 
217
  #: controls/ooohboi-breaking-bad.php:255 controls/ooohboi-breaking-bad.php:294
218
+ #: controls/ooohboi-breaking-bad.php:406 controls/ooohboi-teleporter.php:136
219
+ #: controls/ooohboi-teleporter.php:154 controls/ooohboi-teleporter.php:185
220
+ #: controls/ooohboi-teleporter.php:202 controls/ooohboi-widget-stalker.php:187
221
  #: controls/ooohboi-widget-stalker.php:227
222
  msgid ""
223
  "You can enter any acceptable CSS value, for example: 50em, 300px, 100%, "
239
  "direction is Row or Inherit)."
240
  msgstr ""
241
 
242
+ #: controls/ooohboi-breaking-bad.php:313 controls/ooohboi-overlaiz.php:566
243
  #: controls/ooohboi-overlay-underlay.php:612
244
  #: controls/ooohboi-overlay-underlay.php:1243 controls/ooohboi-pseudo.php:640
245
  #: controls/ooohboi-pseudo.php:1286 controls/ooohboi-spacerat.php:254
246
+ #: controls/ooohboi-tabbr.php:651 controls/ooohboi-videomasq.php:105
247
  #: controls/ooohboi-widget-stalker.php:263
248
  msgid "Auto"
249
  msgstr ""
263
  "direction is Column)."
264
  msgstr ""
265
 
266
+ #: controls/ooohboi-breaking-bad.php:336 controls/ooohboi-breaking-bad.php:491
267
  msgid "Inherit"
268
  msgstr ""
269
 
271
  msgid "Stacking Order"
272
  msgstr ""
273
 
274
+ #: controls/ooohboi-breaking-bad.php:355 controls/ooohboi-breaking-bad.php:470
275
  #: controls/ooohboi-widget-stalker.php:282
276
  #, php-format
277
  msgid "More info at %sMozilla%s."
293
  msgstr ""
294
 
295
  #: controls/ooohboi-breaking-bad.php:442
296
+ msgid "Min Height"
297
+ msgstr ""
298
+
299
+ #: controls/ooohboi-breaking-bad.php:468
300
  msgid "Column Order"
301
  msgstr ""
302
 
303
+ #: controls/ooohboi-breaking-bad.php:486 controls/ooohboi-breaking-bad.php:637
304
  msgid "Align vertically"
305
  msgstr ""
306
 
307
+ #: controls/ooohboi-breaking-bad.php:487
308
  msgid "Defines the vertical alignmnet of this column only!"
309
  msgstr ""
310
 
311
+ #: controls/ooohboi-breaking-bad.php:505
312
  msgid "Scrollable Column?"
313
  msgstr ""
314
 
315
+ #: controls/ooohboi-breaking-bad.php:525
316
  msgid "Column Link"
317
  msgstr ""
318
 
319
+ #: controls/ooohboi-breaking-bad.php:530 controls/ooohboi-interactor.php:203
320
+ #: controls/ooohboi-interactor.php:633 controls/ooohboi-oh-animator.php:350
321
+ #: controls/ooohboi-oh-animator.php:400 controls/ooohboi-oh-animator.php:462
322
+ #: controls/ooohboi-oh-animator.php:511 controls/ooohboi-oh-animator.php:607
323
+ #: controls/ooohboi-oh-animator.php:632 controls/ooohboi-oh-animator.php:657
324
+ #: controls/ooohboi-oh-animator.php:682 controls/ooohboi-oh-animator.php:769
325
+ #: controls/ooohboi-oh-animator.php:1055 controls/ooohboi-oh-animator.php:1172
326
+ #: controls/ooohboi-spacerat.php:126 controls/ooohboi-teleporter.php:77
327
  msgid "None"
328
  msgstr ""
329
 
330
+ #: controls/ooohboi-breaking-bad.php:531 controls/ooohboi-spacerat.php:127
331
+ #: controls/ooohboi-teleporter.php:78
332
  msgid "Custom URL"
333
  msgstr ""
334
 
335
+ #: controls/ooohboi-breaking-bad.php:542 controls/ooohboi-spacerat.php:122
336
+ #: controls/ooohboi-spacerat.php:139 controls/ooohboi-teleporter.php:72
337
+ #: controls/ooohboi-teleporter.php:89
338
  msgid "Link"
339
  msgstr ""
340
 
341
+ #: controls/ooohboi-breaking-bad.php:549 controls/ooohboi-spacerat.php:145
342
+ #: controls/ooohboi-teleporter.php:96
343
  msgid "https://your-link.com"
344
  msgstr ""
345
 
346
+ #: controls/ooohboi-breaking-bad.php:569
347
  msgid "Widget Stalker"
348
  msgstr ""
349
 
350
+ #: controls/ooohboi-breaking-bad.php:579
351
  #: controls/ooohboi-widget-stalker.php:110
352
  msgid "Enable Widget Stalker?"
353
  msgstr ""
354
 
355
+ #: controls/ooohboi-breaking-bad.php:580
356
  msgid ""
357
  "NOTE: It changes the default alignment of widgets inside this column - "
358
  "including the Inner Section widget."
359
  msgstr ""
360
 
361
+ #: controls/ooohboi-breaking-bad.php:594
362
  msgid "Widgets Direction"
363
  msgstr ""
364
 
365
+ #: controls/ooohboi-breaking-bad.php:613
366
  msgid "Align Widgets"
367
  msgstr ""
368
 
369
+ #: controls/ooohboi-bullet.php:46
370
  #, php-format
371
  msgid "Move bullet to top%sNEW!%s"
372
  msgstr ""
373
 
374
+ #: controls/ooohboi-bullet.php:47
375
  msgid "NOTE: Takes effect with more than just one line of text!"
376
  msgstr ""
377
 
378
+ #: controls/ooohboi-bullet.php:62
379
  msgid "Margin Top"
380
  msgstr ""
381
 
395
  msgid "Transition Duration"
396
  msgstr ""
397
 
398
+ #: controls/ooohboi-butter-button.php:175 controls/ooohboi-commentz.php:182
399
+ #: controls/ooohboi-commentz.php:791 controls/ooohboi-commentz.php:1030
400
  #: controls/ooohboi-counterz.php:163 controls/ooohboi-counterz.php:262
401
+ #: controls/ooohboi-glider.php:334 controls/ooohboi-kontrolz.php:107
402
  #: controls/ooohboi-paginini.php:59 controls/ooohboi-postman.php:345
403
+ #: controls/ooohboi-tabbr.php:379 controls/ooohboi-tabbr.php:529
404
  msgid "Padding"
405
  msgstr ""
406
 
408
  #: controls/ooohboi-harakiri.php:378 controls/ooohboi-overlay-underlay.php:177
409
  #: controls/ooohboi-overlay-underlay.php:817
410
  #: controls/ooohboi-photomorph.php:112 controls/ooohboi-pseudo.php:186
411
+ #: controls/ooohboi-pseudo.php:845 controls/ooohboi-tabbr.php:341
412
+ #: controls/ooohboi-tabbr.php:438 controls/ooohboi-teleporter.php:128
413
  msgid "Normal"
414
  msgstr ""
415
 
437
  msgstr ""
438
 
439
  #: controls/ooohboi-butter-button.php:267
440
+ #: controls/ooohboi-butter-button.php:398 controls/ooohboi-commentz.php:284
441
+ #: controls/ooohboi-commentz.php:465 controls/ooohboi-commentz.php:987
442
  #: controls/ooohboi-counterz.php:194 controls/ooohboi-counterz.php:293
443
  #: controls/ooohboi-imbox.php:230 controls/ooohboi-imbox.php:244
444
  #: controls/ooohboi-imbox.php:376 controls/ooohboi-imbox.php:390
445
+ #: controls/ooohboi-overlaiz.php:369 controls/ooohboi-overlaiz.php:388
446
  #: controls/ooohboi-overlay-underlay.php:491
447
  #: controls/ooohboi-overlay-underlay.php:509
448
  #: controls/ooohboi-overlay-underlay.php:1123
449
  #: controls/ooohboi-overlay-underlay.php:1141 controls/ooohboi-paginini.php:146
450
  #: controls/ooohboi-paginini.php:195 controls/ooohboi-pseudo.php:518
451
  #: controls/ooohboi-pseudo.php:536 controls/ooohboi-pseudo.php:1165
452
+ #: controls/ooohboi-pseudo.php:1183 controls/ooohboi-tabbr.php:460
453
+ #: controls/ooohboi-tabbr.php:498 controls/ooohboi-tabbr.php:582
454
+ #: controls/ooohboi-tabbr.php:596
455
  msgid "Border"
456
  msgstr ""
457
 
458
  #: controls/ooohboi-butter-button.php:280
459
+ #: controls/ooohboi-butter-button.php:411 controls/ooohboi-commentz.php:295
460
+ #: controls/ooohboi-commentz.php:477 controls/ooohboi-commentz.php:868
461
+ #: controls/ooohboi-commentz.php:998 controls/ooohboi-glider.php:290
462
+ #: controls/ooohboi-glider.php:537 controls/ooohboi-imbox.php:252
463
  #: controls/ooohboi-imbox.php:398 controls/ooohboi-kontrolz.php:95
464
+ #: controls/ooohboi-kontrolz.php:207 controls/ooohboi-overlaiz.php:400
465
  #: controls/ooohboi-overlay-underlay.php:520
466
  #: controls/ooohboi-overlay-underlay.php:1153 controls/ooohboi-paginini.php:154
467
  #: controls/ooohboi-paginini.php:203 controls/ooohboi-pseudo.php:548
468
+ #: controls/ooohboi-pseudo.php:1195 controls/ooohboi-tabbr.php:419
469
  msgid "Border Radius"
470
  msgstr ""
471
 
472
  #: controls/ooohboi-butter-button.php:298
473
  #: controls/ooohboi-butter-button.php:429 controls/ooohboi-icobox.php:55
474
  #: controls/ooohboi-imbox.php:56 controls/ooohboi-imbox.php:354
475
+ #: controls/ooohboi-overlaiz.php:425
476
  msgid "Box Shadow"
477
  msgstr ""
478
 
479
  #: controls/ooohboi-butter-button.php:324 controls/ooohboi-photomorph.php:142
480
+ #: controls/ooohboi-teleporter.php:173
481
  msgid "Hover"
482
  msgstr ""
483
 
487
  "background color to transparent!"
488
  msgstr ""
489
 
490
+ #: controls/ooohboi-commentz.php:97
491
  msgid "Enable Commentz"
492
  msgstr ""
493
 
494
+ #: controls/ooohboi-commentz.php:98
495
  msgid "That will allow you to style up the post comments."
496
  msgstr ""
497
 
498
+ #: controls/ooohboi-commentz.php:114
499
  msgid "Heading"
500
  msgstr ""
501
 
502
+ #: controls/ooohboi-commentz.php:127
503
  msgid "Heading style"
504
  msgstr ""
505
 
506
+ #: controls/ooohboi-commentz.php:143 controls/ooohboi-commentz.php:549
507
+ #: controls/ooohboi-commentz.php:625 controls/ooohboi-commentz.php:931
508
+ #: controls/ooohboi-harakiri.php:309 controls/ooohboi-interactor.php:209
509
+ #: controls/ooohboi-oh-animator.php:773
510
  msgid "Color"
511
  msgstr ""
512
 
513
+ #: controls/ooohboi-commentz.php:160
514
  msgid "Text alignment"
515
  msgstr ""
516
 
517
+ #: controls/ooohboi-commentz.php:164 controls/ooohboi-commentz.php:705
518
  #: controls/ooohboi-counterz.php:226
519
  msgid "Left"
520
  msgstr ""
521
 
522
+ #: controls/ooohboi-commentz.php:166 controls/ooohboi-commentz.php:707
523
  #: controls/ooohboi-counterz.php:228
524
  msgid "Right"
525
  msgstr ""
526
 
527
+ #: controls/ooohboi-commentz.php:202 controls/ooohboi-commentz.php:641
528
+ #: controls/ooohboi-commentz.php:808 controls/ooohboi-commentz.php:947
529
+ #: controls/ooohboi-commentz.php:1050 controls/ooohboi-commentz.php:1114
530
  #: controls/ooohboi-counterz.php:143 controls/ooohboi-counterz.php:242
531
+ #: controls/ooohboi-oh-animator.php:301 controls/ooohboi-paginini.php:75
532
+ #: controls/ooohboi-tabbr.php:399 controls/ooohboi-tabbr.php:549
533
  #: controls/ooohboi-widget-stalker.php:240
534
  msgid "Margin"
535
  msgstr ""
536
 
537
+ #: controls/ooohboi-commentz.php:236
538
  msgid "Comment list style"
539
  msgstr ""
540
 
541
+ #: controls/ooohboi-commentz.php:252
542
  msgid "Comment body padding"
543
  msgstr ""
544
 
545
+ #: controls/ooohboi-commentz.php:268
546
  msgid "Comment body margin"
547
  msgstr ""
548
 
549
+ #: controls/ooohboi-commentz.php:311 controls/ooohboi-commentz.php:1014
550
+ #: controls/ooohboi-interactor.php:210 controls/ooohboi-oh-animator.php:774
551
  msgid "Background color"
552
  msgstr ""
553
 
554
+ #: controls/ooohboi-commentz.php:327
555
  msgid "Background color replies"
556
  msgstr ""
557
 
558
+ #: controls/ooohboi-commentz.php:344
559
  msgid "Child comments indent"
560
  msgstr ""
561
 
562
+ #: controls/ooohboi-commentz.php:377
563
  msgid "Gravatar"
564
  msgstr ""
565
 
566
+ #: controls/ooohboi-commentz.php:381
567
  msgid "Hide"
568
  msgstr ""
569
 
570
+ #: controls/ooohboi-commentz.php:382
571
  msgid "Show"
572
  msgstr ""
573
 
574
+ #: controls/ooohboi-commentz.php:398
575
  msgid "Gravatar style"
576
  msgstr ""
577
 
578
+ #: controls/ooohboi-commentz.php:415 controls/ooohboi-glider.php:510
579
  msgid "Size"
580
  msgstr ""
581
 
582
+ #: controls/ooohboi-commentz.php:447
583
  msgid "Position"
584
  msgstr ""
585
 
586
+ #: controls/ooohboi-commentz.php:509
587
  msgid "Meta-data User"
588
  msgstr ""
589
 
590
+ #: controls/ooohboi-commentz.php:521
591
  msgid "Meta-data Time"
592
  msgstr ""
593
 
594
+ #: controls/ooohboi-commentz.php:534
595
  msgid "Meta-data style"
596
  msgstr ""
597
 
598
+ #: controls/ooohboi-commentz.php:565
599
  msgid "Outer Margin"
600
  msgstr ""
601
 
602
+ #: controls/ooohboi-commentz.php:596
603
  msgid "Comment text"
604
  msgstr ""
605
 
606
+ #: controls/ooohboi-commentz.php:609
607
  msgid "Comment text style"
608
  msgstr ""
609
 
610
+ #: controls/ooohboi-commentz.php:672
611
  msgid "Reply button"
612
  msgstr ""
613
 
614
+ #: controls/ooohboi-commentz.php:685
615
  msgid "Reply button style"
616
  msgstr ""
617
 
618
+ #: controls/ooohboi-commentz.php:701
619
  msgid "Align button"
620
  msgstr ""
621
 
622
+ #: controls/ooohboi-commentz.php:723
623
  msgid "Text color normal"
624
  msgstr ""
625
 
626
+ #: controls/ooohboi-commentz.php:739
627
  msgid "Text color hover"
628
  msgstr ""
629
 
630
+ #: controls/ooohboi-commentz.php:756
631
  msgid "Background color normal"
632
  msgstr ""
633
 
634
+ #: controls/ooohboi-commentz.php:774
635
  msgid "Background color hover"
636
  msgstr ""
637
 
638
+ #: controls/ooohboi-commentz.php:825
639
  msgid "Border color normal"
640
  msgstr ""
641
 
642
+ #: controls/ooohboi-commentz.php:839
643
  msgid "Border color hover"
644
  msgstr ""
645
 
646
+ #: controls/ooohboi-commentz.php:853
647
  msgid "Border Width"
648
  msgstr ""
649
 
650
+ #: controls/ooohboi-commentz.php:901
651
  msgid "Comment form heading"
652
  msgstr ""
653
 
654
+ #: controls/ooohboi-commentz.php:915
655
  msgid "Comment form heading style"
656
  msgstr ""
657
 
658
+ #: controls/ooohboi-commentz.php:971
659
  msgid "Comment form style"
660
  msgstr ""
661
 
662
+ #: controls/ooohboi-commentz.php:1085
663
  msgid "Comments Nav"
664
  msgstr ""
665
 
666
+ #: controls/ooohboi-commentz.php:1098
667
  msgid "Comments Nav style"
668
  msgstr ""
669
 
670
+ #: controls/ooohboi-commentz.php:1133
671
  msgid "Hide the Website input field?"
672
  msgstr ""
673
 
674
+ #: controls/ooohboi-commentz.php:1134
675
  msgid ""
676
  "If you make it hidden, be sure it's not mandatory otherwise the comment can "
677
  "not be posted!"
678
  msgstr ""
679
 
680
+ #: controls/ooohboi-container-extras.php:93
681
  msgid "Enable Container Extras?"
682
  msgstr ""
683
 
684
+ #: controls/ooohboi-container-extras.php:94
685
  msgid "Get some more flexibility on Containers width"
686
  msgstr ""
687
 
688
+ #: controls/ooohboi-container-extras.php:114
689
+ #: controls/ooohboi-container-extras.php:132
690
+ #: controls/ooohboi-container-extras.php:150
691
+ #: controls/ooohboi-container-extras.php:170
692
  msgid ""
693
  "You can enter any acceptable CSS value ( 50em, 25vw, 42.1% ) or the "
694
  "expression ( 100% - 300px, 55vw - 150px, 15rem - 20px ). NO calc() needed, "
695
  "it will be added automatically!"
696
  msgstr ""
697
 
698
+ #: controls/ooohboi-container-extras.php:145
699
  msgid "Max-width"
700
  msgstr ""
701
 
702
+ #: controls/ooohboi-container-extras.php:165
703
  msgid "Calc Min Height"
704
  msgstr ""
705
 
731
  msgid "Align title"
732
  msgstr ""
733
 
734
+ #: controls/ooohboi-glider.php:116
735
  msgid "Create Slider?"
736
  msgstr ""
737
 
738
+ #: controls/ooohboi-glider.php:117
739
  msgid ""
740
  "This container containers will become slidable. TIP: Use this Switch to "
741
  "refresh your Glider."
742
  msgstr ""
743
 
744
+ #: controls/ooohboi-glider.php:131
745
  msgid "Adaptable height?"
746
  msgstr ""
747
 
748
+ #: controls/ooohboi-glider.php:149
749
  msgid "Slider height"
750
  msgstr ""
751
 
752
+ #: controls/ooohboi-glider.php:184
753
  msgid "Hide Navigation"
754
  msgstr ""
755
 
756
+ #: controls/ooohboi-glider.php:205 controls/ooohboi-kontrolz.php:46
757
  msgid "Navigation styles"
758
  msgstr ""
759
 
760
+ #: controls/ooohboi-glider.php:222
761
  msgid "Arrows Color"
762
  msgstr ""
763
 
764
+ #: controls/ooohboi-glider.php:239 controls/ooohboi-kontrolz.php:58
765
  msgid "Arrows Color - Hover"
766
  msgstr ""
767
 
768
+ #: controls/ooohboi-glider.php:256 controls/ooohboi-kontrolz.php:71
769
  #: controls/ooohboi-paginini.php:47 controls/ooohboi-paginini.php:121
770
  #: controls/ooohboi-paginini.php:182
771
  msgid "Background Color"
772
  msgstr ""
773
 
774
+ #: controls/ooohboi-glider.php:273 controls/ooohboi-kontrolz.php:83
775
  msgid "Background Color - Hover"
776
  msgstr ""
777
 
778
+ #: controls/ooohboi-glider.php:307
779
  msgid "Icon size"
780
  msgstr ""
781
 
782
+ #: controls/ooohboi-glider.php:360 controls/ooohboi-kontrolz.php:128
783
  msgid "Calc - Y"
784
  msgstr ""
785
 
786
+ #: controls/ooohboi-glider.php:361 controls/ooohboi-glider.php:380
787
+ #: controls/ooohboi-glider.php:398 controls/ooohboi-kontrolz.php:129
788
  #: controls/ooohboi-kontrolz.php:143 controls/ooohboi-kontrolz.php:156
789
  msgid "Valid CSS only! Like: 25px or 15em or 100% - 50px or 50% + 3rem"
790
  msgstr ""
791
 
792
+ #: controls/ooohboi-glider.php:378 controls/ooohboi-kontrolz.php:141
793
  msgid "Calc Prev - X"
794
  msgstr ""
795
 
796
+ #: controls/ooohboi-glider.php:396 controls/ooohboi-kontrolz.php:154
797
  msgid "Calc Next - X"
798
  msgstr ""
799
 
800
+ #: controls/ooohboi-glider.php:417
801
  msgid "Hide Pagination"
802
  msgstr ""
803
 
804
+ #: controls/ooohboi-glider.php:439 controls/ooohboi-kontrolz.php:170
805
  msgid "Pagination styles"
806
  msgstr ""
807
 
808
+ #: controls/ooohboi-glider.php:455
809
  msgid "Pagination type"
810
  msgstr ""
811
 
812
+ #: controls/ooohboi-glider.php:459
813
  msgid "Bullets"
814
  msgstr ""
815
 
816
+ #: controls/ooohboi-glider.php:460
817
  msgid "Fraction"
818
  msgstr ""
819
 
820
+ #: controls/ooohboi-glider.php:461
821
  msgid "Progress Bar"
822
  msgstr ""
823
 
824
+ #: controls/ooohboi-glider.php:475 controls/ooohboi-kontrolz.php:182
825
  msgid "Pagination Color"
826
  msgstr ""
827
 
828
+ #: controls/ooohboi-glider.php:492 controls/ooohboi-kontrolz.php:195
829
  msgid "Pagination Color - Active"
830
  msgstr ""
831
 
832
+ #: controls/ooohboi-glider.php:557
833
  msgid "Transition type"
834
  msgstr ""
835
 
836
+ #: controls/ooohboi-glider.php:562
837
  msgid "Slide"
838
  msgstr ""
839
 
840
+ #: controls/ooohboi-glider.php:563 controls/ooohboi-teleporter.php:316
841
  msgid "Fade"
842
  msgstr ""
843
 
844
+ #: controls/ooohboi-glider.php:577
845
  msgid "Show Multiple Slides"
846
  msgstr ""
847
 
848
+ #: controls/ooohboi-glider.php:598
849
  msgid "Slides Per View"
850
  msgstr ""
851
 
852
+ #: controls/ooohboi-glider.php:619
853
  msgid "Slides to Scroll"
854
  msgstr ""
855
 
856
+ #: controls/ooohboi-glider.php:620
857
  msgid "Scrolling multiple slides can break infinite loop."
858
  msgstr ""
859
 
860
+ #: controls/ooohboi-glider.php:639
861
  msgid "Space Between Slides (px)"
862
  msgstr ""
863
 
864
+ #: controls/ooohboi-glider.php:657
865
  msgid "Centered Slides"
866
  msgstr ""
867
 
868
+ #: controls/ooohboi-glider.php:658
869
  msgid "Active slide will be centered."
870
  msgstr ""
871
 
872
+ #: controls/ooohboi-glider.php:678
873
  msgid "Centered Slide Bounds"
874
  msgstr ""
875
 
876
+ #: controls/ooohboi-glider.php:679
877
  msgid ""
878
  "Active slide will be centered without adding gaps at the beginning and end "
879
  "of slider."
880
  msgstr ""
881
 
882
+ #: controls/ooohboi-glider.php:701
883
  msgid "Infinite Loop"
884
  msgstr ""
885
 
886
+ #: controls/ooohboi-glider.php:720
887
  msgid "Direction"
888
  msgstr ""
889
 
890
+ #: controls/ooohboi-glider.php:725 controls/ooohboi-tabbr.php:182
891
  msgid "Horizontal"
892
  msgstr ""
893
 
894
+ #: controls/ooohboi-glider.php:726 controls/ooohboi-tabbr.php:183
895
  msgid "Vertical"
896
  msgstr ""
897
 
898
+ #: controls/ooohboi-glider.php:740
899
  msgid "Parallax"
900
  msgstr ""
901
 
902
+ #: controls/ooohboi-glider.php:741
903
  msgid "It will work with Elementor PRO Attributes only."
904
  msgstr ""
905
 
906
+ #: controls/ooohboi-glider.php:760
907
  msgid "Transition speed"
908
  msgstr ""
909
 
910
+ #: controls/ooohboi-glider.php:776
911
  msgid "Enable Touch Move"
912
  msgstr ""
913
 
914
+ #: controls/ooohboi-glider.php:794
915
  msgid "Enable Mousewheel"
916
  msgstr ""
917
 
918
+ #: controls/ooohboi-glider.php:812
919
  msgid "Deblur Slides"
920
  msgstr ""
921
 
922
+ #: controls/ooohboi-glider.php:813
923
  msgid "Round values of slides width and height to prevent blurry texts?"
924
  msgstr ""
925
 
926
+ #: controls/ooohboi-glider.php:832
927
  msgid "Autoplay"
928
  msgstr ""
929
 
930
+ #: controls/ooohboi-glider.php:850
931
  msgid "Autoplay delay"
932
  msgstr ""
933
 
934
+ #: controls/ooohboi-glider.php:851
935
  msgid "In miliseconds! 1000 is one second."
936
  msgstr ""
937
 
938
+ #: controls/ooohboi-glider.php:868
939
  msgid "Control Glider externally!"
940
  msgstr ""
941
 
942
+ #: controls/ooohboi-glider.php:870
943
  msgid ""
944
  "You can control this Glider instance from any link on this page by adding "
945
  "the custom class name to the link. \n"
946
+ "\t\t\t\tCopy the text entirely and append the slide number to go to at the "
947
  "end. For instance: glider-NNNNNNN-gotoslide-3"
948
  msgstr ""
949
 
950
+ #: controls/ooohboi-glider.php:882
951
  msgid "This Glider control class"
952
  msgstr ""
953
 
959
  msgid "Color - HOVER"
960
  msgstr ""
961
 
962
+ #: controls/ooohboi-harakiri.php:121 controls/ooohboi-tabbr.php:335
963
  msgid "Writing Mode"
964
  msgstr ""
965
 
966
+ #: controls/ooohboi-harakiri.php:127 controls/ooohboi-tabbr.php:339
967
  msgid "Vertical LR"
968
  msgstr ""
969
 
970
+ #: controls/ooohboi-harakiri.php:128 controls/ooohboi-tabbr.php:340
971
  msgid "Vertical RL"
972
  msgstr ""
973
 
974
+ #: controls/ooohboi-harakiri.php:145 controls/ooohboi-tabbr.php:355
975
  msgid "Flip"
976
  msgstr ""
977
 
978
+ #: controls/ooohboi-harakiri.php:170 controls/ooohboi-interactor.php:205
979
+ #: controls/ooohboi-overlaiz.php:143 controls/ooohboi-overlay-underlay.php:279
980
  #: controls/ooohboi-overlay-underlay.php:917 controls/ooohboi-pseudo.php:293
981
  #: controls/ooohboi-pseudo.php:947
982
  msgid "Height"
983
  msgstr ""
984
 
985
  #: controls/ooohboi-harakiri.php:174 controls/ooohboi-harakiri.php:295
986
+ #: controls/ooohboi-hover-animator.php:341
987
+ #: controls/ooohboi-hover-animator.php:538
988
+ #: controls/ooohboi-hover-animator.php:735
989
+ #: controls/ooohboi-hover-animator.php:985
990
+ #: controls/ooohboi-hover-animator.php:1151 controls/ooohboi-interactor.php:137
991
+ #: controls/ooohboi-interactor.php:252 controls/ooohboi-overlaiz.php:535
992
+ #: controls/ooohboi-overlaiz.php:565 controls/ooohboi-overlay-underlay.php:581
993
  #: controls/ooohboi-overlay-underlay.php:611
994
  #: controls/ooohboi-overlay-underlay.php:1213
995
  #: controls/ooohboi-overlay-underlay.php:1242
996
+ #: controls/ooohboi-photomorph.php:220 controls/ooohboi-postman.php:432
997
+ #: controls/ooohboi-postman.php:472 controls/ooohboi-pseudo.php:609
998
  #: controls/ooohboi-pseudo.php:639 controls/ooohboi-pseudo.php:1256
999
  #: controls/ooohboi-pseudo.php:1285 controls/ooohboi-spacerat.php:224
1000
  #: controls/ooohboi-spacerat.php:253 controls/ooohboi-videomasq.php:76
1006
  msgid "Inline"
1007
  msgstr ""
1008
 
1009
+ #: controls/ooohboi-harakiri.php:176 controls/ooohboi-overlaiz.php:569
1010
  #: controls/ooohboi-overlay-underlay.php:615
1011
+ #: controls/ooohboi-overlay-underlay.php:1246 controls/ooohboi-postman.php:436
1012
+ #: controls/ooohboi-postman.php:476 controls/ooohboi-pseudo.php:643
1013
  #: controls/ooohboi-pseudo.php:1289 controls/ooohboi-spacerat.php:257
1014
  #: controls/ooohboi-videomasq.php:108
1015
  msgid "Custom"
1118
  msgid "NOTE: Only the last child P(aragraph) shall be cut off!"
1119
  msgstr ""
1120
 
1121
+ #: controls/ooohboi-hover-animator.php:108
1122
  msgid "Enable HOVERANIMATOR?"
1123
  msgstr ""
1124
 
1125
+ #: controls/ooohboi-hover-animator.php:123
1126
  msgid ""
1127
  "With Hoveranimator you can animate any widget in this container on mouse-"
1128
  "over event. Animation panel is available under the Advanced tab, per widget!"
1129
  msgstr ""
1130
 
1131
+ #: controls/ooohboi-hover-animator.php:132 controls/ooohboi-icobox.php:75
1132
+ #: controls/ooohboi-imbox.php:76 controls/ooohboi-perspektive.php:255
1133
+ #: controls/ooohboi-teleporter.php:360
1134
  msgid "Content Overflow"
1135
  msgstr ""
1136
 
1137
+ #: controls/ooohboi-hover-animator.php:133
1138
  msgid ""
1139
  "VISIBLE - makes visible all the elements outside this Column boundaries, "
1140
  "HIDDEN - hides everything outside this Column boundaries."
1141
  msgstr ""
1142
 
1143
+ #: controls/ooohboi-hover-animator.php:138 controls/ooohboi-icobox.php:80
1144
+ #: controls/ooohboi-imbox.php:81 controls/ooohboi-perspektive.php:261
1145
+ #: controls/ooohboi-teleporter.php:366
1146
  msgid "Visible"
1147
  msgstr ""
1148
 
1149
+ #: controls/ooohboi-hover-animator.php:139 controls/ooohboi-icobox.php:81
1150
+ #: controls/ooohboi-imbox.php:82 controls/ooohboi-perspektive.php:262
1151
+ #: controls/ooohboi-tabbr.php:650 controls/ooohboi-teleporter.php:367
1152
  msgid "Hidden"
1153
  msgstr ""
1154
 
1155
+ #: controls/ooohboi-hover-animator.php:182
1156
  msgid "Enable Hoveranimator"
1157
  msgstr ""
1158
 
1159
+ #: controls/ooohboi-hover-animator.php:183
1160
  msgid ""
1161
  "That will allow you to animate this widget on mouse-over event of the parent "
1162
  "column."
1163
  msgstr ""
1164
 
1165
+ #: controls/ooohboi-hover-animator.php:196
1166
  #, php-format
1167
  msgid "Disable on touch devices?%sNEW!%s"
1168
  msgstr ""
1169
 
1170
+ #: controls/ooohboi-hover-animator.php:198
1171
  msgid ""
1172
  "The effect is visible on touch based devices only. Developer tools can "
1173
  "simulate touch devices!"
1174
  msgstr ""
1175
 
1176
+ #: controls/ooohboi-hover-animator.php:214 controls/ooohboi-interactor.php:208
1177
+ #: controls/ooohboi-oh-animator.php:772
1178
  #: controls/ooohboi-overlay-underlay.php:138
1179
  #: controls/ooohboi-overlay-underlay.php:778 controls/ooohboi-pseudo.php:147
1180
  #: controls/ooohboi-pseudo.php:806
1181
  msgid "Opacity"
1182
  msgstr ""
1183
 
1184
+ #: controls/ooohboi-hover-animator.php:230
1185
  msgid "Opacity Normal"
1186
  msgstr ""
1187
 
1188
+ #: controls/ooohboi-hover-animator.php:255
1189
  msgid "Opacity Hover"
1190
  msgstr ""
1191
 
1192
+ #: controls/ooohboi-hover-animator.php:277
1193
+ #: controls/ooohboi-hover-animator.php:474
1194
+ #: controls/ooohboi-hover-animator.php:671
1195
+ #: controls/ooohboi-hover-animator.php:921
1196
+ #: controls/ooohboi-hover-animator.php:1087 controls/ooohboi-interactor.php:222
1197
+ #: controls/ooohboi-oh-animator.php:1207
1198
  msgid "Duration"
1199
  msgstr ""
1200
 
1201
+ #: controls/ooohboi-hover-animator.php:306
1202
+ #: controls/ooohboi-hover-animator.php:503
1203
+ #: controls/ooohboi-hover-animator.php:700
1204
+ #: controls/ooohboi-hover-animator.php:950
1205
+ #: controls/ooohboi-hover-animator.php:1116 controls/ooohboi-interactor.php:234
1206
+ #: controls/ooohboi-oh-animator.php:1223
1207
  msgid "Delay"
1208
  msgstr ""
1209
 
1210
+ #: controls/ooohboi-hover-animator.php:335
1211
+ #: controls/ooohboi-hover-animator.php:532
1212
+ #: controls/ooohboi-hover-animator.php:729
1213
+ #: controls/ooohboi-hover-animator.php:979
1214
+ #: controls/ooohboi-hover-animator.php:1145 controls/ooohboi-interactor.php:246
1215
  msgid "Easing"
1216
  msgstr ""
1217
 
1218
+ #: controls/ooohboi-hover-animator.php:342
1219
+ #: controls/ooohboi-hover-animator.php:539
1220
+ #: controls/ooohboi-hover-animator.php:736
1221
+ #: controls/ooohboi-hover-animator.php:986
1222
+ #: controls/ooohboi-hover-animator.php:1152 controls/ooohboi-interactor.php:253
1223
+ #: controls/ooohboi-photomorph.php:221
1224
+ msgid "Ease-in"
1225
+ msgstr ""
1226
+
1227
  #: controls/ooohboi-hover-animator.php:343
1228
  #: controls/ooohboi-hover-animator.php:540
1229
  #: controls/ooohboi-hover-animator.php:737
1230
  #: controls/ooohboi-hover-animator.php:987
1231
  #: controls/ooohboi-hover-animator.php:1153 controls/ooohboi-interactor.php:254
1232
+ #: controls/ooohboi-photomorph.php:222
1233
+ msgid "Ease-out"
1234
  msgstr ""
1235
 
1236
  #: controls/ooohboi-hover-animator.php:344
1238
  #: controls/ooohboi-hover-animator.php:738
1239
  #: controls/ooohboi-hover-animator.php:988
1240
  #: controls/ooohboi-hover-animator.php:1154 controls/ooohboi-interactor.php:255
 
 
 
 
 
 
 
 
 
1241
  #: controls/ooohboi-photomorph.php:223
1242
  msgid "Ease-in-out"
1243
  msgstr ""
1244
 
1245
+ #: controls/ooohboi-hover-animator.php:364
1246
  #: controls/ooohboi-overlay-underlay.php:340
1247
  #: controls/ooohboi-overlay-underlay.php:976 controls/ooohboi-pseudo.php:358
1248
  #: controls/ooohboi-pseudo.php:1010
1249
  msgid "Offset Top"
1250
  msgstr ""
1251
 
1252
+ #: controls/ooohboi-hover-animator.php:380
1253
  msgid "Offset Top Normal"
1254
  msgstr ""
1255
 
1256
+ #: controls/ooohboi-hover-animator.php:412
1257
  msgid "Calc Offset Top Normal"
1258
  msgstr ""
1259
 
1260
+ #: controls/ooohboi-hover-animator.php:413
1261
+ #: controls/ooohboi-hover-animator.php:460
1262
+ #: controls/ooohboi-hover-animator.php:610
1263
+ #: controls/ooohboi-hover-animator.php:657 controls/ooohboi-overlaiz.php:128
1264
+ #: controls/ooohboi-overlaiz.php:195 controls/ooohboi-overlaiz.php:262
1265
+ #: controls/ooohboi-overlaiz.php:329 controls/ooohboi-overlay-underlay.php:263
1266
  #: controls/ooohboi-overlay-underlay.php:385
1267
  #: controls/ooohboi-overlay-underlay.php:902
1268
  #: controls/ooohboi-overlay-underlay.php:1020
1272
  msgid "Enter CSS calc value only! Like: 100% - 50px or 100% + 2em"
1273
  msgstr ""
1274
 
1275
+ #: controls/ooohboi-hover-animator.php:430
1276
  msgid "Offset Top Hover"
1277
  msgstr ""
1278
 
1279
+ #: controls/ooohboi-hover-animator.php:459
1280
  msgid "Calc Offset Top Hover"
1281
  msgstr ""
1282
 
1283
+ #: controls/ooohboi-hover-animator.php:561
1284
  #: controls/ooohboi-overlay-underlay.php:401
1285
  #: controls/ooohboi-overlay-underlay.php:1035 controls/ooohboi-pseudo.php:423
1286
  #: controls/ooohboi-pseudo.php:1073
1287
  msgid "Offset Left"
1288
  msgstr ""
1289
 
1290
+ #: controls/ooohboi-hover-animator.php:577
1291
  msgid "Offset Left Normal"
1292
  msgstr ""
1293
 
1294
+ #: controls/ooohboi-hover-animator.php:609
1295
  msgid "Calc Offset Left Normal"
1296
  msgstr ""
1297
 
1298
+ #: controls/ooohboi-hover-animator.php:627
1299
  msgid "Offset Left Hover"
1300
  msgstr ""
1301
 
1302
+ #: controls/ooohboi-hover-animator.php:656
1303
  msgid "Calc Offset Left Hover"
1304
  msgstr ""
1305
 
1306
+ #: controls/ooohboi-hover-animator.php:758
1307
  msgid "Transforms"
1308
  msgstr ""
1309
 
1310
+ #: controls/ooohboi-hover-animator.php:773
1311
  msgid "ScaleX Normal"
1312
  msgstr ""
1313
 
1314
+ #: controls/ooohboi-hover-animator.php:799
1315
  msgid "ScaleX Hover"
1316
  msgstr ""
1317
 
1318
+ #: controls/ooohboi-hover-animator.php:822
1319
  msgid "ScaleY Normal"
1320
  msgstr ""
1321
 
1322
+ #: controls/ooohboi-hover-animator.php:848
1323
  msgid "ScaleY Hover"
1324
  msgstr ""
1325
 
1326
+ #: controls/ooohboi-hover-animator.php:871
1327
  msgid "Rotation Normal"
1328
  msgstr ""
1329
 
1330
+ #: controls/ooohboi-hover-animator.php:897
1331
  msgid "Rotation Hover"
1332
  msgstr ""
1333
 
1334
+ #: controls/ooohboi-hover-animator.php:1008 controls/ooohboi-shadough.php:122
1335
  #: controls/ooohboi-spacerat.php:474
1336
  msgid "Blur"
1337
  msgstr ""
1338
 
1339
+ #: controls/ooohboi-hover-animator.php:1024
1340
  msgid "Blur Normal"
1341
  msgstr ""
1342
 
1343
+ #: controls/ooohboi-hover-animator.php:1057
1344
  msgid "Blur Hover"
1345
  msgstr ""
1346
 
1437
  msgid "Image clip path"
1438
  msgstr ""
1439
 
1440
+ #: controls/ooohboi-imbox.php:269 controls/ooohboi-oh-animator.php:932
1441
+ #: controls/ooohboi-overlaiz.php:468 controls/ooohboi-overlay-underlay.php:716
1442
  #: controls/ooohboi-overlay-underlay.php:1344
1443
  #: controls/ooohboi-photomorph.php:120 controls/ooohboi-photomorph.php:150
1444
  #: controls/ooohboi-pseudo.php:744 controls/ooohboi-pseudo.php:1387
1456
  msgid "Box z-index"
1457
  msgstr ""
1458
 
1459
+ #: controls/ooohboi-interactor.php:99
1460
  msgid "Enable Interactor?"
1461
  msgstr ""
1462
 
1463
+ #: controls/ooohboi-interactor.php:113
1464
  msgid "Interaction Type"
1465
  msgstr ""
1466
 
1467
+ #: controls/ooohboi-interactor.php:114
1468
  msgid "It is either the onClick or onHover the selected element/widget"
1469
  msgstr ""
1470
 
1471
+ #: controls/ooohboi-interactor.php:118
1472
  msgid "Mouse Click"
1473
  msgstr ""
1474
 
1475
+ #: controls/ooohboi-interactor.php:119
1476
  msgid "Mouse Over"
1477
  msgstr ""
1478
 
1479
+ #: controls/ooohboi-interactor.php:131
1480
  msgid "Pointer Type"
1481
  msgstr ""
1482
 
1483
+ #: controls/ooohboi-interactor.php:132
1484
  msgid "Force pointer type on the trigger if needed"
1485
  msgstr ""
1486
 
1487
+ #: controls/ooohboi-interactor.php:138
1488
  msgid "Pointer"
1489
  msgstr ""
1490
 
1491
+ #: controls/ooohboi-interactor.php:153
1492
  msgid "Interactive Properties"
1493
  msgstr ""
1494
 
1495
+ #: controls/ooohboi-interactor.php:155 controls/ooohboi-oh-animator.php:749
1496
  msgid "Add as many as you like but avoid redundancy!"
1497
  msgstr ""
1498
 
1499
+ #: controls/ooohboi-interactor.php:170
1500
  msgid "Interaction Target"
1501
  msgstr ""
1502
 
1503
+ #: controls/ooohboi-interactor.php:171
1504
  msgid "Self or any other element on page"
1505
  msgstr ""
1506
 
1507
+ #: controls/ooohboi-interactor.php:175
1508
  msgid "Self"
1509
  msgstr ""
1510
 
1511
+ #: controls/ooohboi-interactor.php:176
1512
  msgid "Other element"
1513
  msgstr ""
1514
 
1515
+ #: controls/ooohboi-interactor.php:185
1516
  msgid "Element class or ID"
1517
  msgstr ""
1518
 
1519
+ #: controls/ooohboi-interactor.php:186
1520
  msgid ""
1521
  "Enter the target element class or ID. IT MUST INCLUDE THE PREFIX! For "
1522
  "instance; \".some-class-name\" (for the custom class name) or \"#some-id"
1523
  "\" (for the element ID)"
1524
  msgstr ""
1525
 
1526
+ #: controls/ooohboi-interactor.php:198 controls/ooohboi-oh-animator.php:764
1527
  msgid "Animate"
1528
  msgstr ""
1529
 
1530
+ #: controls/ooohboi-interactor.php:206
1531
  msgid "Translate X"
1532
  msgstr ""
1533
 
1534
+ #: controls/ooohboi-interactor.php:207
1535
  msgid "Translate Y"
1536
  msgstr ""
1537
 
1538
+ #: controls/ooohboi-interactor.php:211 controls/ooohboi-oh-animator.php:775
1539
  msgid "Scale"
1540
  msgstr ""
1541
 
1542
+ #: controls/ooohboi-interactor.php:212 controls/ooohboi-oh-animator.php:776
1543
  #: controls/ooohboi-overlay-underlay.php:463
1544
  #: controls/ooohboi-overlay-underlay.php:1095 controls/ooohboi-pseudo.php:489
1545
  #: controls/ooohboi-pseudo.php:1137
1546
  msgid "Rotate"
1547
  msgstr ""
1548
 
1549
+ #: controls/ooohboi-interactor.php:213 controls/ooohboi-oh-animator.php:777
1550
  msgid "SkewX"
1551
  msgstr ""
1552
 
1553
+ #: controls/ooohboi-interactor.php:214 controls/ooohboi-oh-animator.php:778
1554
  msgid "SkewY"
1555
  msgstr ""
1556
 
1557
+ #: controls/ooohboi-interactor.php:223 controls/ooohboi-oh-animator.php:1208
1558
  msgid "Animation duration in seconds. 0.4 is deafult."
1559
  msgstr ""
1560
 
1561
+ #: controls/ooohboi-interactor.php:235 controls/ooohboi-oh-animator.php:1224
1562
  msgid "Seconds to pause before the animation starts."
1563
  msgstr ""
1564
 
1565
+ #: controls/ooohboi-interactor.php:263 controls/ooohboi-interactor.php:293
1566
+ #: controls/ooohboi-interactor.php:323 controls/ooohboi-interactor.php:349
1567
+ #: controls/ooohboi-interactor.php:375 controls/ooohboi-interactor.php:389
1568
+ #: controls/ooohboi-interactor.php:400 controls/ooohboi-interactor.php:411
1569
+ #: controls/ooohboi-interactor.php:424 controls/ooohboi-interactor.php:438
1570
+ #: controls/ooohboi-interactor.php:452 controls/ooohboi-oh-animator.php:787
1571
+ #: controls/ooohboi-oh-animator.php:813 controls/ooohboi-oh-animator.php:839
1572
+ #: controls/ooohboi-oh-animator.php:853 controls/ooohboi-oh-animator.php:864
1573
+ #: controls/ooohboi-oh-animator.php:875 controls/ooohboi-oh-animator.php:888
1574
+ #: controls/ooohboi-oh-animator.php:902 controls/ooohboi-oh-animator.php:916
1575
+ #: controls/ooohboi-oh-animator.php:930
1576
  msgid "From"
1577
  msgstr ""
1578
 
1579
+ #: controls/ooohboi-interactor.php:467 controls/ooohboi-interactor.php:497
1580
+ #: controls/ooohboi-interactor.php:527 controls/ooohboi-interactor.php:553
1581
+ #: controls/ooohboi-interactor.php:579 controls/ooohboi-interactor.php:593
1582
+ #: controls/ooohboi-interactor.php:604 controls/ooohboi-interactor.php:615
1583
+ #: controls/ooohboi-interactor.php:652 controls/ooohboi-interactor.php:666
1584
+ #: controls/ooohboi-interactor.php:680 controls/ooohboi-oh-animator.php:949
1585
+ #: controls/ooohboi-oh-animator.php:975 controls/ooohboi-oh-animator.php:1001
1586
+ #: controls/ooohboi-oh-animator.php:1015 controls/ooohboi-oh-animator.php:1026
1587
+ #: controls/ooohboi-oh-animator.php:1037 controls/ooohboi-oh-animator.php:1074
1588
+ #: controls/ooohboi-oh-animator.php:1088 controls/ooohboi-oh-animator.php:1102
1589
+ #: controls/ooohboi-oh-animator.php:1116
1590
  msgid "To"
1591
  msgstr ""
1592
 
1593
+ #: controls/ooohboi-interactor.php:628 controls/ooohboi-oh-animator.php:1050
1594
  msgid "Transform Origin"
1595
  msgstr ""
1596
 
1597
+ #: controls/ooohboi-interactor.php:634 controls/ooohboi-oh-animator.php:1056
1598
  msgid "Left Top"
1599
  msgstr ""
1600
 
1601
+ #: controls/ooohboi-interactor.php:635 controls/ooohboi-oh-animator.php:1057
1602
  msgid "Left Center"
1603
  msgstr ""
1604
 
1605
+ #: controls/ooohboi-interactor.php:636 controls/ooohboi-oh-animator.php:1058
1606
  msgid "Left Bottom"
1607
  msgstr ""
1608
 
1609
+ #: controls/ooohboi-interactor.php:637 controls/ooohboi-oh-animator.php:1059
1610
  msgid "Center Top"
1611
  msgstr ""
1612
 
1613
+ #: controls/ooohboi-interactor.php:638 controls/ooohboi-oh-animator.php:1060
1614
+ #: controls/ooohboi-overlaiz.php:536 controls/ooohboi-overlay-underlay.php:582
1615
  #: controls/ooohboi-overlay-underlay.php:1214 controls/ooohboi-pseudo.php:610
1616
  #: controls/ooohboi-pseudo.php:1257 controls/ooohboi-spacerat.php:225
1617
  #: controls/ooohboi-videomasq.php:77
1618
  msgid "Center Center"
1619
  msgstr ""
1620
 
1621
+ #: controls/ooohboi-interactor.php:639 controls/ooohboi-oh-animator.php:1061
1622
  msgid "Center Bottom"
1623
  msgstr ""
1624
 
1625
+ #: controls/ooohboi-interactor.php:640 controls/ooohboi-oh-animator.php:1062
1626
  msgid "Right Top"
1627
  msgstr ""
1628
 
1629
+ #: controls/ooohboi-interactor.php:641 controls/ooohboi-oh-animator.php:1063
1630
  msgid "Right Center"
1631
  msgstr ""
1632
 
1633
+ #: controls/ooohboi-interactor.php:642 controls/ooohboi-oh-animator.php:1064
1634
  msgid "Right Bottom"
1635
  msgstr ""
1636
 
1638
  msgid "NOTE: It works only with the pagination style set to Dots!"
1639
  msgstr ""
1640
 
1641
+ #: controls/ooohboi-locomotion.php:41
1642
  msgid "Custom Attributes"
1643
  msgstr ""
1644
 
1645
+ #: controls/ooohboi-locomotion.php:49
1646
  msgid "key|value"
1647
  msgstr ""
1648
 
1649
+ #: controls/ooohboi-locomotion.php:50
1650
  #, php-format
1651
  msgid ""
1652
  "Set custom attributes for the current element/widget. Each attribute must be "
1654
  "pipe character, i.e. data-scroll-offset%s100,50em"
1655
  msgstr ""
1656
 
1657
+ #: controls/ooohboi-oh-animator.php:91
1658
  msgid "Enable ANIMATOR?"
1659
  msgstr ""
1660
 
1661
+ #: controls/ooohboi-oh-animator.php:108
1662
  #, php-format
1663
  msgid ""
1664
  "If you are not familiar with the %s, %s and scroll triggered animations, "
1665
  "it's good idea to learn some basics."
1666
  msgstr ""
1667
 
1668
+ #: controls/ooohboi-oh-animator.php:122
1669
  msgid "Animate first child?"
1670
  msgstr ""
1671
 
1672
+ #: controls/ooohboi-oh-animator.php:123
1673
  msgid ""
1674
  "By default \".elementor-widget-container\" will be animated. You can animate "
1675
  "its first child element instead."
1676
  msgstr ""
1677
 
1678
+ #: controls/ooohboi-oh-animator.php:141
1679
  msgid "ScrollTrigger Settings"
1680
  msgstr ""
1681
 
1682
+ #: controls/ooohboi-oh-animator.php:143
1683
  msgid "This is where you set you scroll triggered animation."
1684
  msgstr ""
1685
 
1686
+ #: controls/ooohboi-oh-animator.php:154
1687
  msgid "Show Markers?"
1688
  msgstr ""
1689
 
1690
+ #: controls/ooohboi-oh-animator.php:155
1691
  msgid "See where the target element/widget start/end/trigger points are"
1692
  msgstr ""
1693
 
1694
+ #: controls/ooohboi-oh-animator.php:171
1695
  msgid "Scrub?"
1696
  msgstr ""
1697
 
1698
+ #: controls/ooohboi-oh-animator.php:172
1699
  msgid ""
1700
  "Controll the animation progress with the scrollbar so it acts like a scrubber"
1701
  msgstr ""
1702
 
1703
+ #: controls/ooohboi-oh-animator.php:188
1704
  msgid "Scrub smooth"
1705
  msgstr ""
1706
 
1707
+ #: controls/ooohboi-oh-animator.php:189
1708
  msgid "Adds smoothing to scrub. Best between 1 and 5 (extreme already!)"
1709
  msgstr ""
1710
 
1711
+ #: controls/ooohboi-oh-animator.php:206
1712
  msgid "Invalidate on refresh?"
1713
  msgstr ""
1714
 
1715
+ #: controls/ooohboi-oh-animator.php:207
1716
  msgid "This flushes out any internally-recorded starting values."
1717
  msgstr ""
1718
 
1719
+ #: controls/ooohboi-oh-animator.php:223
1720
  msgid "Immediate render"
1721
  msgstr ""
1722
 
1723
+ #: controls/ooohboi-oh-animator.php:225
1724
  #, php-format
1725
  msgid "Please take a quick guide %s"
1726
  msgstr ""
1727
 
1728
+ #: controls/ooohboi-oh-animator.php:243
1729
  msgid "Pin?"
1730
  msgstr ""
1731
 
1732
+ #: controls/ooohboi-oh-animator.php:244
1733
  msgid ""
1734
  "Warning: don't animate the pinned element itself due to the unpredicted "
1735
  "results! Rather animate elements inside the pinned element."
1736
  msgstr ""
1737
 
1738
+ #: controls/ooohboi-oh-animator.php:260
1739
  msgid "Anticipate Pin"
1740
  msgstr ""
1741
 
1742
+ #: controls/ooohboi-oh-animator.php:277
1743
  msgid "Prevent overlaps"
1744
  msgstr ""
1745
 
1746
+ #: controls/ooohboi-oh-animator.php:294
1747
  msgid "Pin spacing"
1748
  msgstr ""
1749
 
1750
+ #: controls/ooohboi-oh-animator.php:299
1751
  msgid "Yes (true)"
1752
  msgstr ""
1753
 
1754
+ #: controls/ooohboi-oh-animator.php:300
1755
  msgid "No (false)"
1756
  msgstr ""
1757
 
1758
+ #: controls/ooohboi-oh-animator.php:314
1759
  msgid "ScrollTrigger Start and End"
1760
  msgstr ""
1761
 
1762
+ #: controls/ooohboi-oh-animator.php:330
1763
  msgid "ScrollTrigger Start"
1764
  msgstr ""
1765
 
1766
+ #: controls/ooohboi-oh-animator.php:332
1767
  msgid ""
1768
  "Describes a place on the trigger and a place on the scroller that must meet "
1769
  "in order to start the ScrollTrigger"
1770
  msgstr ""
1771
 
1772
+ #: controls/ooohboi-oh-animator.php:345
1773
  msgid "Start - Trigger Element"
1774
  msgstr ""
1775
 
1776
+ #: controls/ooohboi-oh-animator.php:351 controls/ooohboi-oh-animator.php:401
1777
+ #: controls/ooohboi-oh-animator.php:463 controls/ooohboi-oh-animator.php:512
1778
  msgid "Top"
1779
  msgstr ""
1780
 
1781
+ #: controls/ooohboi-oh-animator.php:353 controls/ooohboi-oh-animator.php:403
1782
+ #: controls/ooohboi-oh-animator.php:465 controls/ooohboi-oh-animator.php:514
1783
  msgid "Bottom"
1784
  msgstr ""
1785
 
1786
+ #: controls/ooohboi-oh-animator.php:354
1787
  msgid "Top + Self height"
1788
  msgstr ""
1789
 
1790
+ #: controls/ooohboi-oh-animator.php:366
1791
  msgid "Start - Trigger Element Offset"
1792
  msgstr ""
1793
 
1794
+ #: controls/ooohboi-oh-animator.php:395
1795
  msgid "Start - Viewport"
1796
  msgstr ""
1797
 
1798
+ #: controls/ooohboi-oh-animator.php:415
1799
  msgid "Start - Viewport Offset"
1800
  msgstr ""
1801
 
1802
+ #: controls/ooohboi-oh-animator.php:444
1803
  msgid "ScrollTrigger End"
1804
  msgstr ""
1805
 
1806
+ #: controls/ooohboi-oh-animator.php:446
1807
  msgid ""
1808
  "Describes a place on the endTrigger (or trigger if one isn't defined) and a "
1809
  "place on the scroller that must meet in order to end the scroll triggered "
1810
  "animation"
1811
  msgstr ""
1812
 
1813
+ #: controls/ooohboi-oh-animator.php:457
1814
  msgid "End - Trigger Element"
1815
  msgstr ""
1816
 
1817
+ #: controls/ooohboi-oh-animator.php:477
1818
  msgid "End - Trigger Element Offset"
1819
  msgstr ""
1820
 
1821
+ #: controls/ooohboi-oh-animator.php:506
1822
  msgid "End - Viewport"
1823
  msgstr ""
1824
 
1825
+ #: controls/ooohboi-oh-animator.php:526
1826
  msgid "End - Viewport Offset"
1827
  msgstr ""
1828
 
1829
+ #: controls/ooohboi-oh-animator.php:555
1830
  msgid "End trigger selector"
1831
  msgstr ""
1832
 
1833
+ #: controls/ooohboi-oh-animator.php:556
1834
  msgid ""
1835
  "Selector (element) whose position in the normal document flow is used for "
1836
  "calculating where the ScrollTrigger ends. For instance: \".element-class-name"
1837
  "\" or \"#element-unique-id\""
1838
  msgstr ""
1839
 
1840
+ #: controls/ooohboi-oh-animator.php:572
1841
  msgid "Toggle Actions"
1842
  msgstr ""
1843
 
1844
+ #: controls/ooohboi-oh-animator.php:589
1845
  msgid ""
1846
  "Determines how the linked animation is controlled at the 4 distinct toggle "
1847
  "places - onEnter, onLeave, onEnterBack, and onLeaveBack, in that order. <br/"
1853
  "the beginning) when scrolling all the way back past the beginning."
1854
  msgstr ""
1855
 
1856
+ #: controls/ooohboi-oh-animator.php:601
1857
  msgid "Action onEnter"
1858
  msgstr ""
1859
 
1860
+ #: controls/ooohboi-oh-animator.php:608 controls/ooohboi-oh-animator.php:633
1861
+ #: controls/ooohboi-oh-animator.php:658 controls/ooohboi-oh-animator.php:683
1862
+ msgid "Play"
1863
+ msgstr ""
1864
+
1865
  #: controls/ooohboi-oh-animator.php:609 controls/ooohboi-oh-animator.php:634
1866
  #: controls/ooohboi-oh-animator.php:659 controls/ooohboi-oh-animator.php:684
1867
+ msgid "Pause"
1868
  msgstr ""
1869
 
1870
  #: controls/ooohboi-oh-animator.php:610 controls/ooohboi-oh-animator.php:635
1871
  #: controls/ooohboi-oh-animator.php:660 controls/ooohboi-oh-animator.php:685
1872
+ msgid "Resume"
1873
  msgstr ""
1874
 
1875
  #: controls/ooohboi-oh-animator.php:611 controls/ooohboi-oh-animator.php:636
1876
  #: controls/ooohboi-oh-animator.php:661 controls/ooohboi-oh-animator.php:686
1877
+ msgid "Reset"
1878
  msgstr ""
1879
 
1880
  #: controls/ooohboi-oh-animator.php:612 controls/ooohboi-oh-animator.php:637
1881
  #: controls/ooohboi-oh-animator.php:662 controls/ooohboi-oh-animator.php:687
1882
+ msgid "Restart"
1883
  msgstr ""
1884
 
1885
  #: controls/ooohboi-oh-animator.php:613 controls/ooohboi-oh-animator.php:638
1886
  #: controls/ooohboi-oh-animator.php:663 controls/ooohboi-oh-animator.php:688
1887
+ msgid "Complete"
1888
  msgstr ""
1889
 
1890
  #: controls/ooohboi-oh-animator.php:614 controls/ooohboi-oh-animator.php:639
1891
  #: controls/ooohboi-oh-animator.php:664 controls/ooohboi-oh-animator.php:689
 
 
 
 
 
1892
  msgid "Reverse"
1893
  msgstr ""
1894
 
1895
+ #: controls/ooohboi-oh-animator.php:626
1896
  msgid "Action onLeave"
1897
  msgstr ""
1898
 
1899
+ #: controls/ooohboi-oh-animator.php:651
1900
  msgid "Action onEnterBack"
1901
  msgstr ""
1902
 
1903
+ #: controls/ooohboi-oh-animator.php:676
1904
  msgid "Action onLeaveBack"
1905
  msgstr ""
1906
 
1907
+ #: controls/ooohboi-oh-animator.php:704
1908
  msgid "Toggle Class"
1909
  msgstr ""
1910
 
1911
+ #: controls/ooohboi-oh-animator.php:721
1912
  msgid ""
1913
  "Adds/removes a class to an element (or multiple elements) when the "
1914
  "ScrollTrigger toggles active/inactive. <br/>\n"
1916
  "trigger element - the String! The Object is currently not supported!"
1917
  msgstr ""
1918
 
1919
+ #: controls/ooohboi-oh-animator.php:730
1920
  msgid "Toggle class name"
1921
  msgstr ""
1922
 
1923
+ #: controls/ooohboi-oh-animator.php:747
1924
  msgid "Animatable Properties"
1925
  msgstr ""
1926
 
1927
+ #: controls/ooohboi-oh-animator.php:770
1928
  msgid "X"
1929
  msgstr ""
1930
 
1931
+ #: controls/ooohboi-oh-animator.php:771
1932
  msgid "Y"
1933
  msgstr ""
1934
 
1935
+ #: controls/ooohboi-oh-animator.php:779 controls/ooohboi-overlaiz.php:451
1936
  #: controls/ooohboi-overlay-underlay.php:714
1937
  #: controls/ooohboi-overlay-underlay.php:1342 controls/ooohboi-pseudo.php:742
1938
  #: controls/ooohboi-pseudo.php:1385 controls/ooohboi-spacerat.php:537
1939
  msgid "Clip path"
1940
  msgstr ""
1941
 
1942
+ #: controls/ooohboi-oh-animator.php:1152
1943
  msgid "Easing and Timing"
1944
  msgstr ""
1945
 
1946
+ #: controls/ooohboi-oh-animator.php:1154
1947
  msgid "These will make any animation look more natural"
1948
  msgstr ""
1949
 
1950
+ #: controls/ooohboi-oh-animator.php:1166
1951
  msgid "Ease"
1952
  msgstr ""
1953
 
1954
+ #: controls/ooohboi-oh-animator.php:1167
1955
  msgid "It will automatically become NONE with the Scrub option enabled!"
1956
  msgstr ""
1957
 
1958
+ #: controls/ooohboi-oh-animator.php:1173
1959
  msgid "Power1.in"
1960
  msgstr ""
1961
 
1962
+ #: controls/ooohboi-oh-animator.php:1174
1963
  msgid "Power1.out"
1964
  msgstr ""
1965
 
1966
+ #: controls/ooohboi-oh-animator.php:1175
1967
  msgid "Power1.inOut"
1968
  msgstr ""
1969
 
1970
+ #: controls/ooohboi-oh-animator.php:1176
1971
  msgid "Power2.in"
1972
  msgstr ""
1973
 
1974
+ #: controls/ooohboi-oh-animator.php:1177
1975
  msgid "Power2.out"
1976
  msgstr ""
1977
 
1978
+ #: controls/ooohboi-oh-animator.php:1178
1979
  msgid "Power2.inOut"
1980
  msgstr ""
1981
 
1982
+ #: controls/ooohboi-oh-animator.php:1179
1983
  msgid "Power3.in"
1984
  msgstr ""
1985
 
1986
+ #: controls/ooohboi-oh-animator.php:1180
1987
  msgid "Power3.out"
1988
  msgstr ""
1989
 
1990
+ #: controls/ooohboi-oh-animator.php:1181
1991
  msgid "Power3.inOut"
1992
  msgstr ""
1993
 
1994
+ #: controls/ooohboi-oh-animator.php:1182
1995
  msgid "Power4.in"
1996
  msgstr ""
1997
 
1998
+ #: controls/ooohboi-oh-animator.php:1183
1999
  msgid "Power4.out"
2000
  msgstr ""
2001
 
2002
+ #: controls/ooohboi-oh-animator.php:1184
2003
  msgid "Power4.inOut"
2004
  msgstr ""
2005
 
2006
+ #: controls/ooohboi-oh-animator.php:1185
2007
  msgid "Circ.in"
2008
  msgstr ""
2009
 
2010
+ #: controls/ooohboi-oh-animator.php:1186
2011
  msgid "Circ.out"
2012
  msgstr ""
2013
 
2014
+ #: controls/ooohboi-oh-animator.php:1187
2015
  msgid "Circ.inOut"
2016
  msgstr ""
2017
 
2018
+ #: controls/ooohboi-oh-animator.php:1188
2019
  msgid "Expo.in"
2020
  msgstr ""
2021
 
2022
+ #: controls/ooohboi-oh-animator.php:1189
2023
  msgid "Expo.out"
2024
  msgstr ""
2025
 
2026
+ #: controls/ooohboi-oh-animator.php:1190
2027
  msgid "Expo.inOut"
2028
  msgstr ""
2029
 
2030
+ #: controls/ooohboi-oh-animator.php:1191
2031
  msgid "Sine.in"
2032
  msgstr ""
2033
 
2034
+ #: controls/ooohboi-oh-animator.php:1192
2035
  msgid "Sine.out"
2036
  msgstr ""
2037
 
2038
+ #: controls/ooohboi-oh-animator.php:1193
2039
  msgid "Sine.inOut"
2040
  msgstr ""
2041
 
2042
+ #: controls/ooohboi-oh-animator.php:1194
2043
  msgid "Elastic"
2044
  msgstr ""
2045
 
2046
+ #: controls/ooohboi-oh-animator.php:1195
2047
  msgid "Back"
2048
  msgstr ""
2049
 
2050
+ #: controls/ooohboi-oh-animator.php:1196
2051
  msgid "Bounce"
2052
  msgstr ""
2053
 
2054
+ #: controls/ooohboi-overlaiz.php:59
2055
  msgid "Enable Overlaiz?"
2056
  msgstr ""
2057
 
2058
+ #: controls/ooohboi-overlaiz.php:127 controls/ooohboi-overlay-underlay.php:262
2059
  #: controls/ooohboi-overlay-underlay.php:901 controls/ooohboi-pseudo.php:276
2060
  #: controls/ooohboi-pseudo.php:931
2061
  msgid "Calc Width"
2062
  msgstr ""
2063
 
2064
+ #: controls/ooohboi-overlaiz.php:194 controls/ooohboi-overlay-underlay.php:323
2065
  #: controls/ooohboi-overlay-underlay.php:960 controls/ooohboi-pseudo.php:341
2066
  #: controls/ooohboi-pseudo.php:994
2067
  msgid "Calc Height"
2068
  msgstr ""
2069
 
2070
+ #: controls/ooohboi-overlaiz.php:210
2071
  msgid "Position - X"
2072
  msgstr ""
2073
 
2074
+ #: controls/ooohboi-overlaiz.php:261
2075
  msgid "Calc Position - X"
2076
  msgstr ""
2077
 
2078
+ #: controls/ooohboi-overlaiz.php:277
2079
  msgid "Position - Y"
2080
  msgstr ""
2081
 
2082
+ #: controls/ooohboi-overlaiz.php:328
2083
  msgid "Calc Position - Y"
2084
  msgstr ""
2085
 
2086
+ #: controls/ooohboi-overlaiz.php:344
2087
  msgid "Rotation"
2088
  msgstr ""
2089
 
2090
+ #: controls/ooohboi-overlaiz.php:492
2091
  msgid "Mask"
2092
  msgstr ""
2093
 
2094
+ #: controls/ooohboi-overlaiz.php:493 controls/ooohboi-spacerat.php:185
2095
  #: controls/ooohboi-spacerat.php:354
2096
  msgid ""
2097
  "NOTE: In order to see the effect you should add the Background to the Spacer "
2098
  "widget first!"
2099
  msgstr ""
2100
 
2101
+ #: controls/ooohboi-overlaiz.php:511 controls/ooohboi-overlay-underlay.php:557
2102
  #: controls/ooohboi-overlay-underlay.php:1189 controls/ooohboi-pseudo.php:585
2103
  #: controls/ooohboi-pseudo.php:1232 controls/ooohboi-spacerat.php:201
2104
  msgid "Choose Image Mask"
2105
  msgstr ""
2106
 
2107
+ #: controls/ooohboi-overlaiz.php:512 controls/ooohboi-overlay-underlay.php:558
2108
  #: controls/ooohboi-overlay-underlay.php:1190 controls/ooohboi-pseudo.php:586
2109
  #: controls/ooohboi-pseudo.php:1233 controls/ooohboi-spacerat.php:202
2110
  #, php-format
2114
  "transparent will be completely hidden."
2115
  msgstr ""
2116
 
2117
+ #: controls/ooohboi-overlaiz.php:531 controls/ooohboi-overlay-underlay.php:577
2118
  #: controls/ooohboi-overlay-underlay.php:1209 controls/ooohboi-pseudo.php:605
2119
  #: controls/ooohboi-pseudo.php:1252 controls/ooohboi-spacerat.php:220
2120
  #: controls/ooohboi-videomasq.php:72
2121
  msgid "Mask position"
2122
  msgstr ""
2123
 
2124
+ #: controls/ooohboi-overlaiz.php:537 controls/ooohboi-overlay-underlay.php:583
2125
  #: controls/ooohboi-overlay-underlay.php:1215 controls/ooohboi-pseudo.php:611
2126
  #: controls/ooohboi-pseudo.php:1258 controls/ooohboi-spacerat.php:226
2127
  #: controls/ooohboi-videomasq.php:78
2128
  msgid "Center Left"
2129
  msgstr ""
2130
 
2131
+ #: controls/ooohboi-overlaiz.php:538 controls/ooohboi-overlay-underlay.php:584
2132
  #: controls/ooohboi-overlay-underlay.php:1216 controls/ooohboi-pseudo.php:612
2133
  #: controls/ooohboi-pseudo.php:1259 controls/ooohboi-spacerat.php:227
2134
  #: controls/ooohboi-videomasq.php:79
2135
  msgid "Center Right"
2136
  msgstr ""
2137
 
2138
+ #: controls/ooohboi-overlaiz.php:539 controls/ooohboi-overlay-underlay.php:585
2139
  #: controls/ooohboi-overlay-underlay.php:1217 controls/ooohboi-pseudo.php:613
2140
  #: controls/ooohboi-pseudo.php:1260 controls/ooohboi-spacerat.php:228
2141
  #: controls/ooohboi-videomasq.php:80
2142
  msgid "Top Center"
2143
  msgstr ""
2144
 
2145
+ #: controls/ooohboi-overlaiz.php:540 controls/ooohboi-overlay-underlay.php:586
2146
  #: controls/ooohboi-overlay-underlay.php:1218 controls/ooohboi-pseudo.php:614
2147
  #: controls/ooohboi-pseudo.php:1261 controls/ooohboi-spacerat.php:229
2148
  #: controls/ooohboi-videomasq.php:81
2149
  msgid "Top Left"
2150
  msgstr ""
2151
 
2152
+ #: controls/ooohboi-overlaiz.php:541 controls/ooohboi-overlay-underlay.php:587
2153
  #: controls/ooohboi-overlay-underlay.php:1219 controls/ooohboi-pseudo.php:615
2154
  #: controls/ooohboi-pseudo.php:1262 controls/ooohboi-spacerat.php:230
2155
  #: controls/ooohboi-videomasq.php:82
2156
  msgid "Top Right"
2157
  msgstr ""
2158
 
2159
+ #: controls/ooohboi-overlaiz.php:542 controls/ooohboi-overlay-underlay.php:588
2160
  #: controls/ooohboi-overlay-underlay.php:1220 controls/ooohboi-pseudo.php:616
2161
  #: controls/ooohboi-pseudo.php:1263 controls/ooohboi-spacerat.php:231
2162
  #: controls/ooohboi-videomasq.php:83
2163
  msgid "Bottom Center"
2164
  msgstr ""
2165
 
2166
+ #: controls/ooohboi-overlaiz.php:543 controls/ooohboi-overlay-underlay.php:589
2167
  #: controls/ooohboi-overlay-underlay.php:1221 controls/ooohboi-pseudo.php:617
2168
  #: controls/ooohboi-pseudo.php:1264 controls/ooohboi-spacerat.php:232
2169
  #: controls/ooohboi-videomasq.php:84
2170
  msgid "Bottom Left"
2171
  msgstr ""
2172
 
2173
+ #: controls/ooohboi-overlaiz.php:544 controls/ooohboi-overlay-underlay.php:590
2174
  #: controls/ooohboi-overlay-underlay.php:1222 controls/ooohboi-pseudo.php:618
2175
  #: controls/ooohboi-pseudo.php:1265 controls/ooohboi-spacerat.php:233
2176
  #: controls/ooohboi-videomasq.php:85
2177
  msgid "Bottom Right"
2178
  msgstr ""
2179
 
2180
+ #: controls/ooohboi-overlaiz.php:561 controls/ooohboi-overlay-underlay.php:607
2181
  #: controls/ooohboi-overlay-underlay.php:1238 controls/ooohboi-pseudo.php:635
2182
  #: controls/ooohboi-pseudo.php:1281 controls/ooohboi-spacerat.php:249
2183
  #: controls/ooohboi-videomasq.php:100
2184
  msgid "Mask size"
2185
  msgstr ""
2186
 
2187
+ #: controls/ooohboi-overlaiz.php:567 controls/ooohboi-overlay-underlay.php:613
2188
  #: controls/ooohboi-overlay-underlay.php:1244 controls/ooohboi-pseudo.php:641
2189
  #: controls/ooohboi-pseudo.php:1287 controls/ooohboi-spacerat.php:255
2190
  #: controls/ooohboi-videomasq.php:106
2191
  msgid "Cover"
2192
  msgstr ""
2193
 
2194
+ #: controls/ooohboi-overlaiz.php:568 controls/ooohboi-overlay-underlay.php:614
2195
  #: controls/ooohboi-overlay-underlay.php:1245 controls/ooohboi-pseudo.php:642
2196
  #: controls/ooohboi-pseudo.php:1288 controls/ooohboi-spacerat.php:256
2197
  #: controls/ooohboi-videomasq.php:107
2198
  msgid "Contain"
2199
  msgstr ""
2200
 
2201
+ #: controls/ooohboi-overlaiz.php:643 controls/ooohboi-overlay-underlay.php:687
2202
  #: controls/ooohboi-overlay-underlay.php:1316 controls/ooohboi-pseudo.php:715
2203
  #: controls/ooohboi-pseudo.php:1359 controls/ooohboi-spacerat.php:327
2204
  #: controls/ooohboi-videomasq.php:172
2205
  msgid "Mask repeat"
2206
  msgstr ""
2207
 
2208
+ #: controls/ooohboi-overlaiz.php:647 controls/ooohboi-overlay-underlay.php:691
2209
  #: controls/ooohboi-overlay-underlay.php:1320 controls/ooohboi-pseudo.php:719
2210
  #: controls/ooohboi-pseudo.php:1363 controls/ooohboi-spacerat.php:331
2211
  #: controls/ooohboi-videomasq.php:176
2212
  msgid "No-repeat"
2213
  msgstr ""
2214
 
2215
+ #: controls/ooohboi-overlaiz.php:648 controls/ooohboi-overlay-underlay.php:692
2216
  #: controls/ooohboi-overlay-underlay.php:1321 controls/ooohboi-pseudo.php:720
2217
  #: controls/ooohboi-pseudo.php:1364 controls/ooohboi-spacerat.php:332
2218
  #: controls/ooohboi-videomasq.php:177
2219
  msgid "Repeat"
2220
  msgstr ""
2221
 
2222
+ #: controls/ooohboi-overlaiz.php:649 controls/ooohboi-overlay-underlay.php:693
2223
  #: controls/ooohboi-overlay-underlay.php:1322 controls/ooohboi-pseudo.php:721
2224
  #: controls/ooohboi-pseudo.php:1365 controls/ooohboi-spacerat.php:333
2225
  #: controls/ooohboi-videomasq.php:178
2226
  msgid "Repeat-x"
2227
  msgstr ""
2228
 
2229
+ #: controls/ooohboi-overlaiz.php:650 controls/ooohboi-overlay-underlay.php:694
2230
  #: controls/ooohboi-overlay-underlay.php:1323 controls/ooohboi-pseudo.php:722
2231
  #: controls/ooohboi-pseudo.php:1366 controls/ooohboi-spacerat.php:334
2232
  #: controls/ooohboi-videomasq.php:179
2233
  msgid "Repeat-y"
2234
  msgstr ""
2235
 
2236
+ #: controls/ooohboi-overlaiz.php:670 controls/ooohboi-overlay-underlay.php:737
2237
  #: controls/ooohboi-overlay-underlay.php:1365 controls/ooohboi-pseudo.php:765
2238
  #: controls/ooohboi-pseudo.php:1408
2239
  msgid "Z-Index"
2356
  msgid "Unstyle Prev and Next?"
2357
  msgstr ""
2358
 
2359
+ #: controls/ooohboi-perspektive.php:100
2360
  msgid "Enable Perspektive?"
2361
  msgstr ""
2362
 
2363
+ #: controls/ooohboi-perspektive.php:101
2364
  msgid ""
2365
  "NOTE: Perspektive interferes with z-index! The background of the element "
2366
  "with the Perspektive will not be affected by the Perspektive."
2367
  msgstr ""
2368
 
2369
+ #: controls/ooohboi-perspektive.php:116
2370
  msgid "Perspective"
2371
  msgstr ""
2372
 
2373
+ #: controls/ooohboi-perspektive.php:149
2374
  msgid "Perspective Origin"
2375
  msgstr ""
2376
 
2377
+ #: controls/ooohboi-perspektive.php:174
2378
  msgid "Translate Z"
2379
  msgstr ""
2380
 
2381
+ #: controls/ooohboi-perspektive.php:207
2382
  msgid "Rotate X"
2383
  msgstr ""
2384
 
2385
+ #: controls/ooohboi-perspektive.php:231
2386
  msgid "Rotate Y"
2387
  msgstr ""
2388
 
2389
+ #: controls/ooohboi-perspektive.php:256
2390
  msgid "Just in case the wrapper is \"overflow: hidden\""
2391
  msgstr ""
2392
 
2444
  msgid "Paragraph styles"
2445
  msgstr ""
2446
 
2447
+ #: controls/ooohboi-postman.php:129
2448
+ msgid "Paragraph padding"
2449
+ msgstr ""
2450
+
2451
+ #: controls/ooohboi-postman.php:148
2452
  msgid "Paragraph margins"
2453
  msgstr ""
2454
 
2488
  msgid "Lists styles: UL and OL"
2489
  msgstr ""
2490
 
2491
+ #: controls/ooohboi-postman.php:368
2492
  msgid "Margins"
2493
  msgstr ""
2494
 
2495
+ #: controls/ooohboi-postman.php:387
2496
  msgid "Margins - nested lists"
2497
  msgstr ""
2498
 
2499
+ #: controls/ooohboi-postman.php:409
2500
  msgid "Items spacing"
2501
  msgstr ""
2502
 
2503
+ #: controls/ooohboi-postman.php:428
2504
  msgid "List type UL"
2505
  msgstr ""
2506
 
2507
+ #: controls/ooohboi-postman.php:433
2508
  msgid "Circle"
2509
  msgstr ""
2510
 
2511
+ #: controls/ooohboi-postman.php:434
2512
  msgid "Square"
2513
  msgstr ""
2514
 
2515
+ #: controls/ooohboi-postman.php:435
2516
  msgid "Disc"
2517
  msgstr ""
2518
 
2519
+ #: controls/ooohboi-postman.php:450
2520
  msgid "List type UL - custom"
2521
  msgstr ""
2522
 
2523
+ #: controls/ooohboi-postman.php:451 controls/ooohboi-postman.php:491
2524
  msgid "It has to be Unicode HEX escape, like \\2192, or \\00A9"
2525
  msgstr ""
2526
 
2527
+ #: controls/ooohboi-postman.php:468
2528
  msgid "List type OL"
2529
  msgstr ""
2530
 
2531
+ #: controls/ooohboi-postman.php:473
2532
  msgid "Decimal"
2533
  msgstr ""
2534
 
2535
+ #: controls/ooohboi-postman.php:474
2536
  msgid "Georgian"
2537
  msgstr ""
2538
 
2539
+ #: controls/ooohboi-postman.php:475
2540
  msgid "Upper alpha"
2541
  msgstr ""
2542
 
2543
+ #: controls/ooohboi-postman.php:490
2544
  msgid "List type OL - custom"
2545
  msgstr ""
2546
 
2547
+ #: controls/ooohboi-postman.php:513
2548
  msgid "Quotations"
2549
  msgstr ""
2550
 
2551
+ #: controls/ooohboi-postman.php:514
2552
  msgid "Style up the Post Content Quotations"
2553
  msgstr ""
2554
 
2555
+ #: controls/ooohboi-postman.php:525
2556
  msgid "Quotation Color"
2557
  msgstr ""
2558
 
2559
+ #: controls/ooohboi-postman.php:538
2560
  msgid "Quotation margin"
2561
  msgstr ""
2562
 
2563
+ #: controls/ooohboi-postman.php:557
2564
+ msgid "Quotation padding"
2565
+ msgstr ""
2566
+
2567
+ #: controls/ooohboi-postman.php:577
2568
  msgid "Quotation Typography"
2569
  msgstr ""
2570
 
2571
+ #: controls/ooohboi-postman.php:588
2572
  msgid "Cite color"
2573
  msgstr ""
2574
 
2575
+ #: controls/ooohboi-postman.php:601
2576
  msgid "Cite margin"
2577
  msgstr ""
2578
 
2579
+ #: controls/ooohboi-postman.php:620
2580
  msgid "Cite typography"
2581
  msgstr ""
2582
 
2583
+ #: controls/ooohboi-postman.php:641
2584
  msgid "Background opacity"
2585
  msgstr ""
2586
 
2630
  msgid "Search All"
2631
  msgstr ""
2632
 
2633
+ #: controls/ooohboi-shadough.php:45
2634
  msgid "Enable Shadough?"
2635
  msgstr ""
2636
 
2637
+ #: controls/ooohboi-shadough.php:46
2638
  msgid "Creates a shadow that conforms to the shape."
2639
  msgstr ""
2640
 
2641
+ #: controls/ooohboi-shadough.php:60 controls/ooohboi-spacerat.php:408
2642
  msgid "Offset X"
2643
  msgstr ""
2644
 
2645
+ #: controls/ooohboi-shadough.php:91 controls/ooohboi-spacerat.php:441
2646
  msgid "Offset Y"
2647
  msgstr ""
2648
 
2649
+ #: controls/ooohboi-shadough.php:152 controls/ooohboi-spacerat.php:506
2650
  msgid "Shadow Color"
2651
  msgstr ""
2652
 
2658
  msgid "Awesome gear for the pretty-much dull Spacer widget."
2659
  msgstr ""
2660
 
2661
+ #: controls/ooohboi-spacerat.php:157 controls/ooohboi-teleporter.php:108
2662
  msgid "Cursor Pointer"
2663
  msgstr ""
2664
 
2665
+ #: controls/ooohboi-spacerat.php:158 controls/ooohboi-teleporter.php:109
2666
  msgid "Keep the default cursor or show pointer on Hover?"
2667
  msgstr ""
2668
 
2726
  msgid "BEWARE! This will override the default (non-responsive) tabs alignment!"
2727
  msgstr ""
2728
 
2729
+ #: controls/ooohboi-tabbr.php:241
2730
  msgid "Tabs width"
2731
  msgstr ""
2732
 
2733
+ #: controls/ooohboi-tabbr.php:242 controls/ooohboi-tabbr.php:631
2734
  msgid ""
2735
  "Enter any acceptable CSS value; 125px, 5vw, calc(30% - 10px), clamp(50px, "
2736
  "5vw + 10px, 155px), 12% ..."
2737
  msgstr ""
2738
 
2739
+ #: controls/ooohboi-tabbr.php:294
2740
+ msgid "Tabs border"
2741
+ msgstr ""
2742
+
2743
+ #: controls/ooohboi-tabbr.php:305
2744
+ msgid "Tabs border radius"
2745
  msgstr ""
2746
 
2747
+ #: controls/ooohboi-tabbr.php:322
2748
  msgid "Tab title"
2749
  msgstr ""
2750
 
2751
+ #: controls/ooohboi-tabbr.php:323
2752
  msgid "Style up tab title"
2753
  msgstr ""
2754
 
2755
+ #: controls/ooohboi-tabbr.php:476
2756
  msgid "Active"
2757
  msgstr ""
2758
 
2759
+ #: controls/ooohboi-tabbr.php:516
2760
  msgid "Tab container"
2761
  msgstr ""
2762
 
2763
+ #: controls/ooohboi-tabbr.php:517
2764
  msgid "Style up the tab container"
2765
  msgstr ""
2766
 
2767
+ #: controls/ooohboi-tabbr.php:609
2768
  msgid "Inset border"
2769
  msgstr ""
2770
 
2771
+ #: controls/ooohboi-tabbr.php:630
2772
  msgid "Max-height"
2773
  msgstr ""
2774
 
2775
+ #: controls/ooohboi-tabbr.php:646
2776
  msgid "Scroll behaviour"
2777
  msgstr ""
2778
 
2779
+ #: controls/ooohboi-teleporter.php:60
2780
  msgid "Enable Teleporter"
2781
  msgstr ""
2782
 
2783
+ #: controls/ooohboi-teleporter.php:135 controls/ooohboi-teleporter.php:180
2784
  msgid "Content Position - X"
2785
  msgstr ""
2786
 
2787
+ #: controls/ooohboi-teleporter.php:153 controls/ooohboi-teleporter.php:198
2788
  msgid "Content Position - Y"
2789
  msgstr ""
2790
 
2791
+ #: controls/ooohboi-teleporter.php:215
2792
  msgid "Teleport to parent"
2793
  msgstr ""
2794
 
2795
+ #: controls/ooohboi-teleporter.php:216
2796
  msgid "Column Hover event is teleported to the parent element instead!"
2797
  msgstr ""
2798
 
2799
+ #: controls/ooohboi-teleporter.php:231
2800
  msgid "Which parent?"
2801
  msgstr ""
2802
 
2803
+ #: controls/ooohboi-teleporter.php:237
2804
  msgid "Section"
2805
  msgstr ""
2806
 
2807
+ #: controls/ooohboi-teleporter.php:238
2808
  msgid "Container"
2809
  msgstr ""
2810
 
2811
+ #: controls/ooohboi-teleporter.php:250
2812
  msgid "Disable on Tablet"
2813
  msgstr ""
2814
 
2815
+ #: controls/ooohboi-teleporter.php:265
2816
  msgid "Disable on Mobile"
2817
  msgstr ""
2818
 
2819
+ #: controls/ooohboi-teleporter.php:293
2820
  msgid "Overlay Color"
2821
  msgstr ""
2822
 
2823
+ #: controls/ooohboi-teleporter.php:310
2824
  msgid "Hover effect"
2825
  msgstr ""
2826
 
2827
+ #: controls/ooohboi-teleporter.php:317
2828
  msgid "Zoom"
2829
  msgstr ""
2830
 
2831
+ #: controls/ooohboi-teleporter.php:318
2832
  msgid "Stutter"
2833
  msgstr ""
2834
 
2835
+ #: controls/ooohboi-teleporter.php:330
2836
  msgid "Effect Duration"
2837
  msgstr ""
2838
 
2839
+ #: controls/ooohboi-teleporter.php:361
2840
  msgid "Strongly advised: HIDDEN."
2841
  msgstr ""
2842
 
3332
 
3333
  #. Description of the plugin/theme
3334
  msgid ""
3335
+ "An awesome set of tools/options/settings that extend Elementor default/"
3336
+ "existing widgets and elements. It keeps the editor tidy, saves valuable "
3337
+ "resources and improves the workflow."
3338
  msgstr ""
3339
 
3340
  #. Author of the plugin/theme
ooohboi-steroids.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
  * Plugin Name: OoohBoi Steroids for Elementor
4
- * Description: An awesome set of tools, options and settings that expand Elementor defaults. Instead of creating new Elementor Widgets, these act like an upgrade of existing options or the self-standing panels.
5
- * Version: 2.0.2
6
  * Author: OoohBoi
7
  * Author URI: https://www.youtube.com/c/OoohBoi
8
  * Text Domain: ooohboi-steroids
@@ -33,7 +33,7 @@ final class OoohBoi_Steroids {
33
  *
34
  * @var string The plugin version.
35
  */
36
- const VERSION = '2.0.2';
37
 
38
  /**
39
  * Minimum Elementor Version
1
  <?php
2
  /**
3
  * Plugin Name: OoohBoi Steroids for Elementor
4
+ * Description: An awesome set of tools/options/settings that extend Elementor default/existing widgets and elements. It keeps the editor tidy, saves valuable resources and improves the workflow.
5
+ * Version: 2.0.3
6
  * Author: OoohBoi
7
  * Author URI: https://www.youtube.com/c/OoohBoi
8
  * Text Domain: ooohboi-steroids
33
  *
34
  * @var string The plugin version.
35
  */
36
+ const VERSION = '2.0.3';
37
 
38
  /**
39
  * Minimum Elementor Version
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: page-builder, elementor, add-on, background-overlay, vertical text, ghost
4
  Donate link: https://www.paypal.me/ooohboi
5
  Requires at least: 5.0
6
  Tested up to: 6.0
7
- Stable tag: 2.0.2
8
  Requires PHP: 7.0
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0
@@ -26,7 +26,7 @@ Recently added 1 new extension : POSTMAN
26
 
27
  == Upgrade Notice ==
28
 
29
- 2.0.1 - Beware of the changes to the language file!
30
 
31
  == Frequently Asked Questions ==
32
 
@@ -42,6 +42,11 @@ No, you don't. It'll work with both free version of Elementor and Elementor PRO.
42
 
43
  == Changelog ==
44
 
 
 
 
 
 
45
  = 2.0.2 =
46
  - Fix: conflict with the latest Elementor v3.7.5
47
 
4
  Donate link: https://www.paypal.me/ooohboi
5
  Requires at least: 5.0
6
  Tested up to: 6.0
7
+ Stable tag: 2.0.3
8
  Requires PHP: 7.0
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0
26
 
27
  == Upgrade Notice ==
28
 
29
+ 2.0.3 - Beware of changes to the language file!
30
 
31
  == Frequently Asked Questions ==
32
 
42
 
43
  == Changelog ==
44
 
45
+ = 2.0.3 =
46
+ - Fix: POSTMAN - Quotations background color is being displayed atop the text
47
+ - Fix: TABBR - '_ob_use_tabbr' critical error for Elementor 3.7 +
48
+ - New: POSTMAN - Padding option added to Quotations
49
+
50
  = 2.0.2 =
51
  - Fix: conflict with the latest Elementor v3.7.5
52