Version Description
- Fix: CONTAINER EXTRAS - Fixed buggy custom container Width
- New: HARAKIRI - Clip-text option added
- New: HARAKIRI - Text-indent option added
- New: WIDGET STALKER - Added a true margin option (opposed to Elementor's default working like a padding)
- NOTE: INTERACTOR extension temporarily disabled until the issue resolved
Download this release
Release Info
Developer | ooohboi |
Plugin | OoohBoi Steroids for Elementor |
Version | 1.9.7 |
Comparing to | |
See all releases |
Code changes from version 1.9.6 to 1.9.7
- assets/js/interactor.js +8 -51
- controls/ooohboi-container-extras.php +32 -36
- inc/info/ob-landing.php +13 -7
- lang/ooohboi-steroids.pot +712 -561
- ooohboi-steroids.php +4 -4
- readme.txt +10 -3
assets/js/interactor.js
CHANGED
@@ -16,38 +16,9 @@
|
|
16 |
onInit: function() {
|
17 |
|
18 |
ModuleHandler.prototype.onInit.apply( this, arguments );
|
19 |
-
if( this.isInteractorObject() ) {
|
20 |
-
|
21 |
-
// console.log( parent.window.$e );
|
22 |
-
|
23 |
-
elementor.hooks.addAction( 'panel/open_editor/widget', function( panel, model, view ) {
|
24 |
-
|
25 |
-
var container = view.getContainer();
|
26 |
-
var settings = view.getContainer().settings.attributes;
|
27 |
-
|
28 |
-
console.log( container.repeaters._ob_i_props_repeater );
|
29 |
-
|
30 |
-
container.repeaters._ob_i_props_repeater.view.on( 'onAddButtonClick', function( evt ) {
|
31 |
-
|
32 |
-
console.log( 'New Repeater Item Added' );
|
33 |
-
|
34 |
-
} );
|
35 |
-
|
36 |
-
/*
|
37 |
-
parent.window.$e.run( "document/elements/settings", {
|
38 |
-
container: container,
|
39 |
-
settings: settings,
|
40 |
-
options: {
|
41 |
-
external: true
|
42 |
-
}
|
43 |
-
} );
|
44 |
-
*/
|
45 |
|
46 |
-
|
47 |
|
48 |
-
//const editor = elementor.getPanelView().getCurrentPageView();
|
49 |
-
//const model_cid = this.getModelCID( '_ob_i_props_repeater' );
|
50 |
-
//const view = editor.children.findByModelCid( model_cid );
|
51 |
|
52 |
|
53 |
this.$element.addClass( 'ob-is-interactor' );
|
@@ -61,6 +32,7 @@
|
|
61 |
},
|
62 |
|
63 |
onElementChange: function( changedProp ) {
|
|
|
64 |
if( changedProp === '_ob_do_interactor' ) {
|
65 |
if( 'yes' === this.getElementSettings( '_ob_do_interactor' ) ) {
|
66 |
this.$element.addClass( 'ob-is-interactor' );
|
@@ -71,15 +43,7 @@
|
|
71 |
},
|
72 |
|
73 |
bindEvents: function() {
|
74 |
-
|
75 |
-
/*
|
76 |
-
var TMP_this = this;
|
77 |
-
elementor.channels.editor.on( 'change', function( el ) {
|
78 |
-
if( el._parent.model.id === TMP_this.$element[ 0 ].dataset.id ) {
|
79 |
-
console.log( 'Something has been changed' );
|
80 |
-
}
|
81 |
-
} );
|
82 |
-
*/
|
83 |
},
|
84 |
|
85 |
run: function() {
|
@@ -99,6 +63,11 @@
|
|
99 |
var me = this.$element;
|
100 |
var _this = this;
|
101 |
|
|
|
|
|
|
|
|
|
|
|
102 |
$.each( el_settings.rptr, function( i, val ) {
|
103 |
|
104 |
// target element
|
@@ -213,18 +182,6 @@
|
|
213 |
} );
|
214 |
} );
|
215 |
}
|
216 |
-
/*
|
217 |
-
if( this.isEdit ) {
|
218 |
-
var TMP_this = this;
|
219 |
-
// the DOM hack to prevent all kinds of shit ...
|
220 |
-
elementor.channels.editor.on( 'change', function( el ) {
|
221 |
-
console.log( el._parent );
|
222 |
-
if( el._parent.model.id === TMP_this.getID() ) {
|
223 |
-
console.log( 'Something has been changed' );
|
224 |
-
}
|
225 |
-
} );
|
226 |
-
}
|
227 |
-
*/
|
228 |
},
|
229 |
|
230 |
} );
|
16 |
onInit: function() {
|
17 |
|
18 |
ModuleHandler.prototype.onInit.apply( this, arguments );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
+
if( this.isInteractorObject() ) {
|
21 |
|
|
|
|
|
|
|
22 |
|
23 |
|
24 |
this.$element.addClass( 'ob-is-interactor' );
|
32 |
},
|
33 |
|
34 |
onElementChange: function( changedProp ) {
|
35 |
+
|
36 |
if( changedProp === '_ob_do_interactor' ) {
|
37 |
if( 'yes' === this.getElementSettings( '_ob_do_interactor' ) ) {
|
38 |
this.$element.addClass( 'ob-is-interactor' );
|
43 |
},
|
44 |
|
45 |
bindEvents: function() {
|
46 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
},
|
48 |
|
49 |
run: function() {
|
63 |
var me = this.$element;
|
64 |
var _this = this;
|
65 |
|
66 |
+
// reset actions
|
67 |
+
me.off( 'click' );
|
68 |
+
me.off( 'mouseenter' );
|
69 |
+
me.off( 'mouseleave' );
|
70 |
+
|
71 |
$.each( el_settings.rptr, function( i, val ) {
|
72 |
|
73 |
// target element
|
182 |
} );
|
183 |
} );
|
184 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
185 |
},
|
186 |
|
187 |
} );
|
controls/ooohboi-container-extras.php
CHANGED
@@ -111,76 +111,72 @@ class OoohBoi_Container_Extras {
|
|
111 |
'type' => Controls_Manager::TEXT,
|
112 |
'separator' => 'before',
|
113 |
'label_block' => true,
|
114 |
-
'default' => '
|
115 |
'description' => __( 'You can enter any acceptable CSS value ( 50em, 25vw, 42.1% ) or the expression ( 100% - 300px, 55vw - 150px, 15rem - 20px ). NO calc() needed, it will be added automatically!', 'ooohboi-steroids' ),
|
116 |
'selectors' => [
|
117 |
-
'{{WRAPPER}}.ob-is-container-extras' => '
|
118 |
],
|
119 |
-
'frontend_available' => true,
|
120 |
'condition' => [
|
121 |
'_ob_use_container_extras' => 'yes',
|
|
|
122 |
],
|
123 |
]
|
124 |
-
);
|
125 |
-
|
126 |
-
// --------------------------------------------------------------------------------------------- CONTROL Container calc min height
|
127 |
$element->add_responsive_control(
|
128 |
-
|
129 |
[
|
130 |
-
'label' => __( '
|
131 |
'type' => Controls_Manager::TEXT,
|
132 |
'separator' => 'before',
|
133 |
'label_block' => true,
|
134 |
'default' => '',
|
135 |
'description' => __( 'You can enter any acceptable CSS value ( 50em, 25vw, 42.1% ) or the expression ( 100% - 300px, 55vw - 150px, 15rem - 20px ). NO calc() needed, it will be added automatically!', 'ooohboi-steroids' ),
|
136 |
'selectors' => [
|
137 |
-
'{{WRAPPER}}.ob-is-container-extras' => '--
|
138 |
],
|
139 |
-
'frontend_available' => true,
|
140 |
'condition' => [
|
141 |
'_ob_use_container_extras' => 'yes',
|
|
|
142 |
],
|
143 |
]
|
144 |
);
|
145 |
-
|
146 |
-
|
147 |
-
'_ob_ce_link_type',
|
148 |
[
|
149 |
-
'label' => __( '
|
150 |
-
'type' => Controls_Manager::
|
151 |
-
|
152 |
-
|
153 |
-
'
|
154 |
-
|
155 |
-
'pointer' => __( 'Custom URL', 'ooohboi-steroids' ),
|
156 |
-
],
|
157 |
'selectors' => [
|
158 |
-
|
159 |
-
|
160 |
'condition' => [
|
161 |
'_ob_use_container_extras' => 'yes',
|
|
|
162 |
],
|
163 |
]
|
164 |
);
|
165 |
-
|
166 |
-
|
167 |
-
|
|
|
168 |
[
|
169 |
-
'label' => __( '
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
'
|
174 |
-
|
|
|
|
|
175 |
],
|
176 |
-
'placeholder' => __( 'https://your-link.com', 'ooohboi-steroids' ),
|
177 |
'condition' => [
|
178 |
'_ob_use_container_extras' => 'yes',
|
179 |
-
'_ob_ce_link_type' => 'pointer',
|
180 |
],
|
181 |
-
'show_label' => false,
|
182 |
]
|
183 |
-
|
184 |
|
185 |
}
|
186 |
|
111 |
'type' => Controls_Manager::TEXT,
|
112 |
'separator' => 'before',
|
113 |
'label_block' => true,
|
114 |
+
'default' => '',
|
115 |
'description' => __( 'You can enter any acceptable CSS value ( 50em, 25vw, 42.1% ) or the expression ( 100% - 300px, 55vw - 150px, 15rem - 20px ). NO calc() needed, it will be added automatically!', 'ooohboi-steroids' ),
|
116 |
'selectors' => [
|
117 |
+
'{{WRAPPER}}.ob-is-container-extras' => '--width: calc({{VALUE}});',
|
118 |
],
|
|
|
119 |
'condition' => [
|
120 |
'_ob_use_container_extras' => 'yes',
|
121 |
+
'content_width' => 'full',
|
122 |
],
|
123 |
]
|
124 |
+
);
|
|
|
|
|
125 |
$element->add_responsive_control(
|
126 |
+
'_ob_ce_boxed_width',
|
127 |
[
|
128 |
+
'label' => __( 'Width', 'ooohboi-steroids' ),
|
129 |
'type' => Controls_Manager::TEXT,
|
130 |
'separator' => 'before',
|
131 |
'label_block' => true,
|
132 |
'default' => '',
|
133 |
'description' => __( 'You can enter any acceptable CSS value ( 50em, 25vw, 42.1% ) or the expression ( 100% - 300px, 55vw - 150px, 15rem - 20px ). NO calc() needed, it will be added automatically!', 'ooohboi-steroids' ),
|
134 |
'selectors' => [
|
135 |
+
'{{WRAPPER}}.ob-is-container-extras' => '--content-width: calc({{VALUE}});',
|
136 |
],
|
|
|
137 |
'condition' => [
|
138 |
'_ob_use_container_extras' => 'yes',
|
139 |
+
'content_width' => 'boxed',
|
140 |
],
|
141 |
]
|
142 |
);
|
143 |
+
$element->add_responsive_control(
|
144 |
+
'_ob_ce_max_width',
|
|
|
145 |
[
|
146 |
+
'label' => __( 'Max-width', 'ooohboi-steroids' ),
|
147 |
+
'type' => Controls_Manager::TEXT,
|
148 |
+
'separator' => 'before',
|
149 |
+
'label_block' => true,
|
150 |
+
'default' => '',
|
151 |
+
'description' => __( 'You can enter any acceptable CSS value ( 50em, 25vw, 42.1% ) or the expression ( 100% - 300px, 55vw - 150px, 15rem - 20px ). NO calc() needed, it will be added automatically!', 'ooohboi-steroids' ),
|
|
|
|
|
152 |
'selectors' => [
|
153 |
+
'{{WRAPPER}}.ob-is-container-extras' => 'max-width: Min(100%,calc({{VALUE}}));',
|
154 |
+
],
|
155 |
'condition' => [
|
156 |
'_ob_use_container_extras' => 'yes',
|
157 |
+
'content_width' => 'full',
|
158 |
],
|
159 |
]
|
160 |
);
|
161 |
+
|
162 |
+
// --------------------------------------------------------------------------------------------- CONTROL Container calc min height
|
163 |
+
$element->add_responsive_control(
|
164 |
+
'_ob_ce_calc_min_height',
|
165 |
[
|
166 |
+
'label' => __( 'Calc Min Height', 'ooohboi-steroids' ),
|
167 |
+
'type' => Controls_Manager::TEXT,
|
168 |
+
'separator' => 'before',
|
169 |
+
'label_block' => true,
|
170 |
+
'default' => '',
|
171 |
+
'description' => __( 'You can enter any acceptable CSS value ( 50em, 25vw, 42.1% ) or the expression ( 100% - 300px, 55vw - 150px, 15rem - 20px ). NO calc() needed, it will be added automatically!', 'ooohboi-steroids' ),
|
172 |
+
'selectors' => [
|
173 |
+
'{{WRAPPER}}.ob-is-container-extras' => '--min-height: calc({{VALUE}});',
|
174 |
],
|
|
|
175 |
'condition' => [
|
176 |
'_ob_use_container_extras' => 'yes',
|
|
|
177 |
],
|
|
|
178 |
]
|
179 |
+
);
|
180 |
|
181 |
}
|
182 |
|
inc/info/ob-landing.php
CHANGED
@@ -10,11 +10,22 @@
|
|
10 |
|
11 |
<div class="col-8">
|
12 |
|
13 |
-
<h3>What's new in v1.9.
|
14 |
<p>
|
15 |
-
<strong>Fixes and
|
16 |
</p>
|
17 |
<p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
Some new options added to the Container Extras! From now on you can calc() Container's Min Height or make the Container hyperlink.
|
19 |
</p>
|
20 |
<p>
|
@@ -27,11 +38,6 @@
|
|
27 |
Oh Animator big bug has been fixed (animations didn't perform on the front-end)
|
28 |
</p>
|
29 |
<p>
|
30 |
-
GSAP & ScrollTrigger libsare now up to date.
|
31 |
-
</p>
|
32 |
-
|
33 |
-
<h3>Since v1.9.5?</h3>
|
34 |
-
<p>
|
35 |
<strong>OH! ANIMATOR - Scroll triggered animations (beta)</strong>
|
36 |
</p>
|
37 |
<p>
|
10 |
|
11 |
<div class="col-8">
|
12 |
|
13 |
+
<h3>What's new in v1.9.7?</h3>
|
14 |
<p>
|
15 |
+
<strong>Fixes, improvements and maintenance</strong>
|
16 |
</p>
|
17 |
<p>
|
18 |
+
HARAKIRI extension now brings support for clip-text and text indentation
|
19 |
+
</p>
|
20 |
+
<p>
|
21 |
+
CONTAINER EXTRAS - Container's calc() width now properly works with full-width and boxed width
|
22 |
+
</p>
|
23 |
+
<p>
|
24 |
+
INTERACTOR extension temporarily disabled until bug resolved
|
25 |
+
</p>
|
26 |
+
|
27 |
+
<h3>Since v1.9.6 and below</h3>
|
28 |
+
<p>
|
29 |
Some new options added to the Container Extras! From now on you can calc() Container's Min Height or make the Container hyperlink.
|
30 |
</p>
|
31 |
<p>
|
38 |
Oh Animator big bug has been fixed (animations didn't perform on the front-end)
|
39 |
</p>
|
40 |
<p>
|
|
|
|
|
|
|
|
|
|
|
41 |
<strong>OH! ANIMATOR - Scroll triggered animations (beta)</strong>
|
42 |
</p>
|
43 |
<p>
|
lang/ooohboi-steroids.pot
CHANGED
@@ -2,15 +2,15 @@
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: OoohBoi Steroids for Elementor\n"
|
5 |
-
"POT-Creation-Date: 2022-
|
6 |
-
"PO-Revision-Date: 2022-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
13 |
-
"X-Generator: Poedit 3.
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
|
16 |
"X-Poedit-WPHeader: ooohboi-steroids.php\n"
|
@@ -35,31 +35,32 @@ msgstr ""
|
|
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:
|
39 |
-
#: controls/ooohboi-glider.php:
|
40 |
-
#: controls/ooohboi-glider.php:
|
41 |
-
#: controls/ooohboi-glider.php:
|
42 |
-
#: controls/ooohboi-glider.php:
|
43 |
-
#: controls/ooohboi-glider.php:
|
44 |
-
#: controls/ooohboi-glider.php:
|
45 |
-
#: controls/ooohboi-harakiri.php:
|
46 |
-
#: controls/ooohboi-hover-animator.php:
|
47 |
-
#: controls/ooohboi-hover-animator.php:
|
48 |
#: controls/ooohboi-icobox.php:112 controls/ooohboi-icobox.php:247
|
49 |
-
#: controls/ooohboi-imbox.php:97 controls/ooohboi-imbox.php:
|
50 |
-
#: controls/ooohboi-imbox.php:
|
51 |
-
#: controls/ooohboi-oh-animator.php:
|
52 |
-
#: controls/ooohboi-oh-animator.php:
|
53 |
-
#: controls/ooohboi-oh-animator.php:
|
54 |
-
#: controls/ooohboi-oh-animator.php:
|
55 |
-
#: controls/ooohboi-
|
|
|
56 |
#: controls/ooohboi-overlay-underlay.php:1398
|
57 |
#: controls/ooohboi-overlay-underlay.php:1417 controls/ooohboi-paginini.php:220
|
58 |
#: controls/ooohboi-perspektive.php:105 controls/ooohboi-photomorph.php:97
|
59 |
-
#: controls/ooohboi-photomorph.php:173 controls/ooohboi-pseudo.php:
|
60 |
#: controls/ooohboi-searchcop.php:79 controls/ooohboi-shadough.php:50
|
61 |
#: controls/ooohboi-spacerat.php:101 controls/ooohboi-spacerat.php:378
|
62 |
-
#: controls/ooohboi-widget-stalker.php:
|
63 |
#: inc/exopite-simple-options/fields/upload.php:131
|
64 |
msgid "Yes"
|
65 |
msgstr ""
|
@@ -68,31 +69,32 @@ msgstr ""
|
|
68 |
#: controls/ooohboi-breaking-bad.php:483 controls/ooohboi-breaking-bad.php:558
|
69 |
#: controls/ooohboi-bullet.php:52 controls/ooohboi-butter-button.php:103
|
70 |
#: controls/ooohboi-commentz.php:102 controls/ooohboi-commentz.php:1139
|
71 |
-
#: controls/ooohboi-container-extras.php:
|
72 |
-
#: controls/ooohboi-glider.php:
|
73 |
-
#: controls/ooohboi-glider.php:
|
74 |
-
#: controls/ooohboi-glider.php:
|
75 |
-
#: controls/ooohboi-glider.php:
|
76 |
-
#: controls/ooohboi-glider.php:
|
77 |
-
#: controls/ooohboi-glider.php:
|
78 |
-
#: controls/ooohboi-harakiri.php:
|
79 |
-
#: controls/ooohboi-hover-animator.php:
|
80 |
-
#: controls/ooohboi-hover-animator.php:
|
81 |
#: controls/ooohboi-icobox.php:113 controls/ooohboi-icobox.php:248
|
82 |
-
#: controls/ooohboi-imbox.php:98 controls/ooohboi-imbox.php:
|
83 |
-
#: controls/ooohboi-imbox.php:
|
84 |
-
#: controls/ooohboi-oh-animator.php:
|
85 |
-
#: controls/ooohboi-oh-animator.php:
|
86 |
-
#: controls/ooohboi-oh-animator.php:
|
87 |
-
#: controls/ooohboi-oh-animator.php:
|
88 |
-
#: controls/ooohboi-
|
|
|
89 |
#: controls/ooohboi-overlay-underlay.php:1399
|
90 |
#: controls/ooohboi-overlay-underlay.php:1418 controls/ooohboi-paginini.php:221
|
91 |
#: controls/ooohboi-perspektive.php:106 controls/ooohboi-photomorph.php:98
|
92 |
-
#: controls/ooohboi-photomorph.php:174 controls/ooohboi-pseudo.php:
|
93 |
#: controls/ooohboi-searchcop.php:80 controls/ooohboi-shadough.php:51
|
94 |
#: controls/ooohboi-spacerat.php:102 controls/ooohboi-spacerat.php:379
|
95 |
-
#: controls/ooohboi-widget-stalker.php:
|
96 |
#: inc/exopite-simple-options/fields/upload.php:129
|
97 |
msgid "No"
|
98 |
msgstr ""
|
@@ -104,6 +106,7 @@ msgstr ""
|
|
104 |
#: controls/ooohboi-breaking-bad.php:108 controls/ooohboi-breaking-bad.php:154
|
105 |
#: controls/ooohboi-breaking-bad.php:337 controls/ooohboi-breaking-bad.php:466
|
106 |
#: controls/ooohboi-breaking-bad.php:591 controls/ooohboi-breaking-bad.php:615
|
|
|
107 |
msgid "Start"
|
108 |
msgstr ""
|
109 |
|
@@ -111,17 +114,18 @@ msgstr ""
|
|
111 |
#: controls/ooohboi-breaking-bad.php:315 controls/ooohboi-breaking-bad.php:338
|
112 |
#: controls/ooohboi-breaking-bad.php:467 controls/ooohboi-breaking-bad.php:592
|
113 |
#: controls/ooohboi-breaking-bad.php:616 controls/ooohboi-commentz.php:166
|
114 |
-
#: controls/ooohboi-commentz.php:707 controls/ooohboi-
|
115 |
-
#: controls/ooohboi-oh-animator.php:
|
116 |
-
#: controls/ooohboi-oh-animator.php:
|
|
|
117 |
msgid "Center"
|
118 |
msgstr ""
|
119 |
|
120 |
#: controls/ooohboi-breaking-bad.php:110 controls/ooohboi-breaking-bad.php:156
|
121 |
#: controls/ooohboi-breaking-bad.php:316 controls/ooohboi-breaking-bad.php:339
|
122 |
#: controls/ooohboi-breaking-bad.php:468 controls/ooohboi-breaking-bad.php:593
|
123 |
-
#: controls/ooohboi-breaking-bad.php:617
|
124 |
-
#: controls/ooohboi-widget-stalker.php:
|
125 |
msgid "End"
|
126 |
msgstr ""
|
127 |
|
@@ -164,34 +168,36 @@ msgid ""
|
|
164 |
msgstr ""
|
165 |
|
166 |
#: controls/ooohboi-breaking-bad.php:192
|
167 |
-
#: controls/ooohboi-widget-stalker.php:
|
168 |
msgid "Size Method"
|
169 |
msgstr ""
|
170 |
|
171 |
#: controls/ooohboi-breaking-bad.php:193
|
172 |
-
#: controls/ooohboi-widget-stalker.php:
|
173 |
msgid "Use Flex or Units?"
|
174 |
msgstr ""
|
175 |
|
176 |
#: controls/ooohboi-breaking-bad.php:198 controls/ooohboi-breaking-bad.php:210
|
177 |
-
#: controls/ooohboi-widget-stalker.php:
|
178 |
-
#: controls/ooohboi-widget-stalker.php:
|
179 |
msgid "Flex"
|
180 |
msgstr ""
|
181 |
|
182 |
#: controls/ooohboi-breaking-bad.php:199
|
183 |
-
#: controls/ooohboi-widget-stalker.php:
|
184 |
msgid "Units"
|
185 |
msgstr ""
|
186 |
|
187 |
#: controls/ooohboi-breaking-bad.php:249
|
188 |
-
#: controls/ooohboi-container-extras.php:
|
|
|
|
|
189 |
#: controls/ooohboi-overlaiz.php:588 controls/ooohboi-overlay-underlay.php:218
|
190 |
#: controls/ooohboi-overlay-underlay.php:632
|
191 |
#: controls/ooohboi-overlay-underlay.php:858
|
192 |
-
#: controls/ooohboi-overlay-underlay.php:1262 controls/ooohboi-pseudo.php:
|
193 |
-
#: controls/ooohboi-pseudo.php:
|
194 |
-
#: controls/ooohboi-pseudo.php:
|
195 |
#: controls/ooohboi-videomasq.php:123
|
196 |
msgid "Width"
|
197 |
msgstr ""
|
@@ -199,15 +205,15 @@ msgstr ""
|
|
199 |
#: controls/ooohboi-breaking-bad.php:255 controls/ooohboi-breaking-bad.php:294
|
200 |
#: controls/ooohboi-breaking-bad.php:406 controls/ooohboi-teleporter.php:137
|
201 |
#: controls/ooohboi-teleporter.php:155 controls/ooohboi-teleporter.php:186
|
202 |
-
#: controls/ooohboi-teleporter.php:203 controls/ooohboi-widget-stalker.php:
|
203 |
-
#: controls/ooohboi-widget-stalker.php:
|
204 |
msgid ""
|
205 |
"You can enter any acceptable CSS value, for example: 50em, 300px, 100%, "
|
206 |
"calc(100% - 300px)."
|
207 |
msgstr ""
|
208 |
|
209 |
#: controls/ooohboi-breaking-bad.php:289 controls/ooohboi-breaking-bad.php:402
|
210 |
-
#: controls/ooohboi-widget-stalker.php:
|
211 |
msgid "Max Width"
|
212 |
msgstr ""
|
213 |
|
@@ -223,14 +229,14 @@ msgstr ""
|
|
223 |
|
224 |
#: controls/ooohboi-breaking-bad.php:313 controls/ooohboi-overlaiz.php:568
|
225 |
#: controls/ooohboi-overlay-underlay.php:612
|
226 |
-
#: controls/ooohboi-overlay-underlay.php:1243 controls/ooohboi-pseudo.php:
|
227 |
-
#: controls/ooohboi-pseudo.php:
|
228 |
-
#: controls/ooohboi-videomasq.php:105 controls/ooohboi-widget-stalker.php:
|
229 |
msgid "Auto"
|
230 |
msgstr ""
|
231 |
|
232 |
#: controls/ooohboi-breaking-bad.php:314
|
233 |
-
#: controls/ooohboi-widget-stalker.php:
|
234 |
msgid "Baseline"
|
235 |
msgstr ""
|
236 |
|
@@ -253,7 +259,7 @@ msgid "Stacking Order"
|
|
253 |
msgstr ""
|
254 |
|
255 |
#: controls/ooohboi-breaking-bad.php:355 controls/ooohboi-breaking-bad.php:444
|
256 |
-
#: controls/ooohboi-widget-stalker.php:
|
257 |
#, php-format
|
258 |
msgid "More info at %sMozilla%s."
|
259 |
msgstr ""
|
@@ -269,7 +275,7 @@ msgid ""
|
|
269 |
"Breaking Bad for this Column parent SECTION!"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: controls/ooohboi-breaking-bad.php:416 controls/ooohboi-harakiri.php:
|
273 |
msgid "Custom Height"
|
274 |
msgstr ""
|
275 |
|
@@ -293,12 +299,13 @@ msgstr ""
|
|
293 |
msgid "Column Link"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: controls/ooohboi-breaking-bad.php:504 controls/ooohboi-
|
297 |
-
#: controls/ooohboi-
|
298 |
-
#: controls/ooohboi-oh-animator.php:
|
299 |
-
#: controls/ooohboi-oh-animator.php:
|
300 |
-
#: controls/ooohboi-oh-animator.php:
|
301 |
-
#: controls/ooohboi-oh-animator.php:
|
|
|
302 |
#: controls/ooohboi-spacerat.php:126 controls/ooohboi-teleporter.php:78
|
303 |
msgid "None"
|
304 |
msgstr ""
|
@@ -323,7 +330,8 @@ msgstr ""
|
|
323 |
msgid "Widget Stalker"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: controls/ooohboi-breaking-bad.php:553
|
|
|
327 |
msgid "Enable Widget Stalker?"
|
328 |
msgstr ""
|
329 |
|
@@ -372,16 +380,16 @@ msgstr ""
|
|
372 |
|
373 |
#: controls/ooohboi-butter-button.php:175 controls/ooohboi-commentz.php:183
|
374 |
#: controls/ooohboi-commentz.php:792 controls/ooohboi-commentz.php:1031
|
375 |
-
#: controls/ooohboi-glider.php:
|
376 |
#: controls/ooohboi-paginini.php:59
|
377 |
msgid "Padding"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: controls/ooohboi-butter-button.php:195 controls/ooohboi-harakiri.php:
|
381 |
-
#: controls/ooohboi-overlay-underlay.php:177
|
382 |
#: controls/ooohboi-overlay-underlay.php:817
|
383 |
-
#: controls/ooohboi-photomorph.php:112 controls/ooohboi-pseudo.php:
|
384 |
-
#: controls/ooohboi-pseudo.php:
|
385 |
msgid "Normal"
|
386 |
msgstr ""
|
387 |
|
@@ -411,36 +419,36 @@ msgstr ""
|
|
411 |
#: controls/ooohboi-butter-button.php:267
|
412 |
#: controls/ooohboi-butter-button.php:398 controls/ooohboi-commentz.php:285
|
413 |
#: controls/ooohboi-commentz.php:466 controls/ooohboi-commentz.php:988
|
414 |
-
#: controls/ooohboi-imbox.php:
|
415 |
-
#: controls/ooohboi-imbox.php:
|
416 |
#: controls/ooohboi-overlaiz.php:371 controls/ooohboi-overlaiz.php:390
|
417 |
#: controls/ooohboi-overlay-underlay.php:491
|
418 |
#: controls/ooohboi-overlay-underlay.php:509
|
419 |
#: controls/ooohboi-overlay-underlay.php:1123
|
420 |
#: controls/ooohboi-overlay-underlay.php:1141 controls/ooohboi-paginini.php:146
|
421 |
-
#: controls/ooohboi-paginini.php:195 controls/ooohboi-pseudo.php:
|
422 |
-
#: controls/ooohboi-pseudo.php:
|
423 |
-
#: controls/ooohboi-pseudo.php:
|
424 |
msgid "Border"
|
425 |
msgstr ""
|
426 |
|
427 |
#: controls/ooohboi-butter-button.php:280
|
428 |
#: controls/ooohboi-butter-button.php:411 controls/ooohboi-commentz.php:296
|
429 |
#: controls/ooohboi-commentz.php:478 controls/ooohboi-commentz.php:869
|
430 |
-
#: controls/ooohboi-commentz.php:999 controls/ooohboi-glider.php:
|
431 |
-
#: controls/ooohboi-glider.php:
|
432 |
-
#: controls/ooohboi-imbox.php:
|
433 |
#: controls/ooohboi-kontrolz.php:207 controls/ooohboi-overlaiz.php:402
|
434 |
#: controls/ooohboi-overlay-underlay.php:520
|
435 |
#: controls/ooohboi-overlay-underlay.php:1153 controls/ooohboi-paginini.php:154
|
436 |
-
#: controls/ooohboi-paginini.php:203 controls/ooohboi-pseudo.php:
|
437 |
-
#: controls/ooohboi-pseudo.php:
|
438 |
msgid "Border Radius"
|
439 |
msgstr ""
|
440 |
|
441 |
#: controls/ooohboi-butter-button.php:298
|
442 |
#: controls/ooohboi-butter-button.php:429 controls/ooohboi-icobox.php:55
|
443 |
-
#: controls/ooohboi-imbox.php:56 controls/ooohboi-imbox.php:
|
444 |
#: controls/ooohboi-overlaiz.php:427
|
445 |
msgid "Box Shadow"
|
446 |
msgstr ""
|
@@ -474,7 +482,8 @@ msgstr ""
|
|
474 |
|
475 |
#: controls/ooohboi-commentz.php:144 controls/ooohboi-commentz.php:550
|
476 |
#: controls/ooohboi-commentz.php:626 controls/ooohboi-commentz.php:932
|
477 |
-
#: controls/ooohboi-harakiri.php:
|
|
|
478 |
msgid "Color"
|
479 |
msgstr ""
|
480 |
|
@@ -493,7 +502,8 @@ msgstr ""
|
|
493 |
#: controls/ooohboi-commentz.php:203 controls/ooohboi-commentz.php:642
|
494 |
#: controls/ooohboi-commentz.php:809 controls/ooohboi-commentz.php:948
|
495 |
#: controls/ooohboi-commentz.php:1051 controls/ooohboi-commentz.php:1115
|
496 |
-
#: controls/ooohboi-oh-animator.php:
|
|
|
497 |
msgid "Margin"
|
498 |
msgstr ""
|
499 |
|
@@ -510,7 +520,7 @@ msgid "Comment body margin"
|
|
510 |
msgstr ""
|
511 |
|
512 |
#: controls/ooohboi-commentz.php:312 controls/ooohboi-commentz.php:1015
|
513 |
-
#: controls/ooohboi-oh-animator.php:
|
514 |
msgid "Background color"
|
515 |
msgstr ""
|
516 |
|
@@ -538,7 +548,7 @@ msgstr ""
|
|
538 |
msgid "Gravatar style"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: controls/ooohboi-commentz.php:416 controls/ooohboi-glider.php:
|
542 |
msgid "Size"
|
543 |
msgstr ""
|
544 |
|
@@ -640,230 +650,241 @@ msgid ""
|
|
640 |
"not be posted!"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: controls/ooohboi-container-extras.php:
|
644 |
msgid "Enable Container Extras?"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: controls/ooohboi-container-extras.php:
|
648 |
msgid "Get some more flexibility on Containers width"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: controls/ooohboi-container-extras.php:
|
|
|
|
|
|
|
652 |
msgid ""
|
653 |
"You can enter any acceptable CSS value ( 50em, 25vw, 42.1% ) or the "
|
654 |
"expression ( 100% - 300px, 55vw - 150px, 15rem - 20px ). NO calc() needed, "
|
655 |
"it will be added automatically!"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: controls/ooohboi-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
659 |
msgid "Create Slider?"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: controls/ooohboi-glider.php:
|
663 |
msgid ""
|
664 |
"This container containers will become slidable. TIP: Use this Switch to "
|
665 |
"refresh your Glider."
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: controls/ooohboi-glider.php:
|
669 |
msgid "Adaptable height?"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: controls/ooohboi-glider.php:
|
673 |
msgid "Slider height"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: controls/ooohboi-glider.php:
|
677 |
msgid "Hide Navigation"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: controls/ooohboi-glider.php:
|
681 |
msgid "Navigation styles"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: controls/ooohboi-glider.php:
|
685 |
msgid "Arrows Color"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: controls/ooohboi-glider.php:
|
689 |
msgid "Arrows Color - Hover"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: controls/ooohboi-glider.php:
|
693 |
#: controls/ooohboi-paginini.php:47 controls/ooohboi-paginini.php:121
|
694 |
#: controls/ooohboi-paginini.php:182
|
695 |
msgid "Background Color"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: controls/ooohboi-glider.php:
|
699 |
msgid "Background Color - Hover"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: controls/ooohboi-glider.php:
|
703 |
msgid "Icon size"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: controls/ooohboi-glider.php:
|
707 |
msgid "Calc - Y"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: controls/ooohboi-glider.php:
|
711 |
-
#: controls/ooohboi-glider.php:
|
712 |
#: controls/ooohboi-kontrolz.php:143 controls/ooohboi-kontrolz.php:156
|
713 |
msgid "Valid CSS only! Like: 25px or 15em or 100% - 50px or 50% + 3rem"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: controls/ooohboi-glider.php:
|
717 |
msgid "Calc Prev - X"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: controls/ooohboi-glider.php:
|
721 |
msgid "Calc Next - X"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: controls/ooohboi-glider.php:
|
725 |
msgid "Hide Pagination"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: controls/ooohboi-glider.php:
|
729 |
msgid "Pagination styles"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: controls/ooohboi-glider.php:
|
733 |
msgid "Pagination type"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: controls/ooohboi-glider.php:
|
737 |
msgid "Bullets"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: controls/ooohboi-glider.php:
|
741 |
msgid "Fraction"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: controls/ooohboi-glider.php:
|
745 |
msgid "Progress Bar"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: controls/ooohboi-glider.php:
|
749 |
msgid "Pagination Color"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: controls/ooohboi-glider.php:
|
753 |
msgid "Pagination Color - Active"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: controls/ooohboi-glider.php:
|
757 |
msgid "Transition type"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: controls/ooohboi-glider.php:
|
761 |
msgid "Slide"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: controls/ooohboi-glider.php:
|
765 |
msgid "Fade"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: controls/ooohboi-glider.php:
|
769 |
msgid "Show Multiple Slides"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: controls/ooohboi-glider.php:
|
773 |
msgid "Slides Per View"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: controls/ooohboi-glider.php:
|
777 |
msgid "Slides to Scroll"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: controls/ooohboi-glider.php:
|
781 |
msgid "Scrolling multiple slides can break infinite loop."
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: controls/ooohboi-glider.php:
|
785 |
msgid "Space Between Slides (px)"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: controls/ooohboi-glider.php:
|
789 |
msgid "Centered Slides"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: controls/ooohboi-glider.php:
|
793 |
msgid "Active slide will be centered."
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: controls/ooohboi-glider.php:
|
797 |
msgid "Centered Slide Bounds"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: controls/ooohboi-glider.php:
|
801 |
msgid ""
|
802 |
"Active slide will be centered without adding gaps at the beginning and end "
|
803 |
"of slider."
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: controls/ooohboi-glider.php:
|
807 |
msgid "Infinite Loop"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: controls/ooohboi-glider.php:
|
811 |
msgid "Direction"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: controls/ooohboi-glider.php:
|
815 |
msgid "Horizontal"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: controls/ooohboi-glider.php:
|
819 |
msgid "Vertical"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: controls/ooohboi-glider.php:
|
823 |
msgid "Parallax"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: controls/ooohboi-glider.php:
|
827 |
msgid "It will work with Elementor PRO Attributes only."
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: controls/ooohboi-glider.php:
|
831 |
msgid "Transition speed"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: controls/ooohboi-glider.php:
|
835 |
msgid "Enable Touch Move"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: controls/ooohboi-glider.php:
|
839 |
msgid "Enable Mousewheel"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: controls/ooohboi-glider.php:
|
843 |
msgid "Deblur Slides"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: controls/ooohboi-glider.php:
|
847 |
msgid "Round values of slides width and height to prevent blurry texts?"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: controls/ooohboi-glider.php:
|
851 |
msgid "Autoplay"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: controls/ooohboi-glider.php:
|
855 |
msgid "Autoplay delay"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: controls/ooohboi-glider.php:
|
859 |
msgid "In miliseconds! 1000 is one second."
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: controls/ooohboi-glider.php:
|
863 |
msgid "Control Glider externally!"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: controls/ooohboi-glider.php:
|
867 |
msgid ""
|
868 |
"You can control this Glider instance from any link on this page by adding "
|
869 |
"the custom class name to the link. \n"
|
@@ -871,352 +892,387 @@ msgid ""
|
|
871 |
"end. For instance: glider-NNNNNNN-gotoslide-3"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: controls/ooohboi-glider.php:
|
875 |
msgid "This Glider control class"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: controls/ooohboi-harakiri.php:
|
|
|
|
|
|
|
|
|
879 |
msgid "Color - HOVER"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: controls/ooohboi-harakiri.php:
|
883 |
msgid "Writing Mode"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: controls/ooohboi-harakiri.php:
|
887 |
msgid "Vertical LR"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: controls/ooohboi-harakiri.php:
|
891 |
msgid "Vertical RL"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: controls/ooohboi-harakiri.php:
|
895 |
msgid "Flip"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: controls/ooohboi-harakiri.php:
|
899 |
-
#: controls/ooohboi-overlay-underlay.php:279
|
900 |
-
#: controls/ooohboi-overlay-underlay.php:917 controls/ooohboi-pseudo.php:
|
901 |
-
#: controls/ooohboi-pseudo.php:
|
902 |
msgid "Height"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: controls/ooohboi-harakiri.php:
|
906 |
-
#: controls/ooohboi-hover-animator.php:
|
907 |
-
#: controls/ooohboi-hover-animator.php:
|
908 |
-
#: controls/ooohboi-hover-animator.php:
|
909 |
-
#: controls/ooohboi-hover-animator.php:
|
910 |
-
#: controls/ooohboi-hover-animator.php:
|
|
|
911 |
#: controls/ooohboi-overlaiz.php:567 controls/ooohboi-overlay-underlay.php:581
|
912 |
#: controls/ooohboi-overlay-underlay.php:611
|
913 |
#: controls/ooohboi-overlay-underlay.php:1213
|
914 |
#: controls/ooohboi-overlay-underlay.php:1242
|
915 |
-
#: controls/ooohboi-photomorph.php:220 controls/ooohboi-pseudo.php:
|
916 |
-
#: controls/ooohboi-pseudo.php:
|
917 |
-
#: controls/ooohboi-pseudo.php:
|
918 |
#: controls/ooohboi-spacerat.php:253 controls/ooohboi-videomasq.php:76
|
919 |
#: controls/ooohboi-videomasq.php:104
|
920 |
msgid "Default"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: controls/ooohboi-harakiri.php:
|
924 |
msgid "Inline"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: controls/ooohboi-harakiri.php:
|
928 |
#: controls/ooohboi-overlay-underlay.php:615
|
929 |
-
#: controls/ooohboi-overlay-underlay.php:1246 controls/ooohboi-pseudo.php:
|
930 |
-
#: controls/ooohboi-pseudo.php:
|
931 |
#: controls/ooohboi-videomasq.php:108
|
932 |
msgid "Custom"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: controls/ooohboi-harakiri.php:
|
936 |
msgid "NOTE: [%] unit works properly only if Column height is a fixed value!"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: controls/ooohboi-harakiri.php:
|
|
|
|
|
|
|
|
|
940 |
msgid "Mix Blend Mode"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: controls/ooohboi-harakiri.php:
|
944 |
#, php-format
|
945 |
msgid "Learn more about this CSS property: %sMozilla.org%s"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: controls/ooohboi-harakiri.php:
|
949 |
msgid "Multiply"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: controls/ooohboi-harakiri.php:
|
953 |
msgid "Screen"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: controls/ooohboi-harakiri.php:
|
957 |
msgid "Overlay"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: controls/ooohboi-harakiri.php:
|
961 |
msgid "Darken"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: controls/ooohboi-harakiri.php:
|
965 |
msgid "Lighten"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: controls/ooohboi-harakiri.php:
|
969 |
msgid "Color-dodge"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: controls/ooohboi-harakiri.php:
|
973 |
msgid "Color-burn"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: controls/ooohboi-harakiri.php:
|
977 |
msgid "Hard-light"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: controls/ooohboi-harakiri.php:
|
981 |
msgid "Soft-light"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: controls/ooohboi-harakiri.php:
|
985 |
msgid "Difference"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: controls/ooohboi-harakiri.php:
|
989 |
msgid "Exclusion"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: controls/ooohboi-harakiri.php:
|
993 |
msgid "Hue"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: controls/ooohboi-harakiri.php:
|
997 |
msgid "Saturation"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: controls/ooohboi-harakiri.php:
|
1001 |
msgid "Luminosity"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: controls/ooohboi-harakiri.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1005 |
msgid "Cut off the bottom margin"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: controls/ooohboi-harakiri.php:
|
1009 |
msgid "NOTE: Only the last child P(aragraph) shall be cut off!"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: controls/ooohboi-hover-animator.php:
|
1013 |
msgid "Enable HOVERANIMATOR?"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: controls/ooohboi-hover-animator.php:
|
1017 |
msgid ""
|
1018 |
"With Hoveranimator you can animate any widget in this container on mouse-"
|
1019 |
"over event. Animation panel is available under the Advanced tab, per widget!"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: controls/ooohboi-hover-animator.php:
|
1023 |
#: controls/ooohboi-imbox.php:76 controls/ooohboi-perspektive.php:256
|
1024 |
#: controls/ooohboi-teleporter.php:361
|
1025 |
msgid "Content Overflow"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: controls/ooohboi-hover-animator.php:
|
1029 |
msgid ""
|
1030 |
"VISIBLE - makes visible all the elements outside this Column boundaries, "
|
1031 |
"HIDDEN - hides everything outside this Column boundaries."
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: controls/ooohboi-hover-animator.php:
|
1035 |
#: controls/ooohboi-imbox.php:81 controls/ooohboi-perspektive.php:262
|
1036 |
#: controls/ooohboi-teleporter.php:367
|
1037 |
msgid "Visible"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: controls/ooohboi-hover-animator.php:
|
1041 |
#: controls/ooohboi-imbox.php:82 controls/ooohboi-perspektive.php:263
|
1042 |
#: controls/ooohboi-teleporter.php:368
|
1043 |
msgid "Hidden"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: controls/ooohboi-hover-animator.php:
|
1047 |
msgid "Enable Hoveranimator"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: controls/ooohboi-hover-animator.php:
|
1051 |
msgid ""
|
1052 |
"That will allow you to animate this widget on mouse-over event of the parent "
|
1053 |
"column."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: controls/ooohboi-hover-animator.php:
|
|
|
1057 |
#: controls/ooohboi-overlay-underlay.php:138
|
1058 |
-
#: controls/ooohboi-overlay-underlay.php:778 controls/ooohboi-pseudo.php:
|
1059 |
-
#: controls/ooohboi-pseudo.php:
|
1060 |
msgid "Opacity"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: controls/ooohboi-hover-animator.php:
|
1064 |
msgid "Opacity Normal"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: controls/ooohboi-hover-animator.php:
|
1068 |
msgid "Opacity Hover"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: controls/ooohboi-hover-animator.php:
|
1072 |
-
#: controls/ooohboi-hover-animator.php:
|
1073 |
-
#: controls/ooohboi-hover-animator.php:
|
1074 |
-
#: controls/ooohboi-hover-animator.php:
|
1075 |
-
#: controls/ooohboi-hover-animator.php:
|
1076 |
-
#: controls/ooohboi-oh-animator.php:
|
1077 |
msgid "Duration"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: controls/ooohboi-hover-animator.php:
|
1081 |
-
#: controls/ooohboi-hover-animator.php:
|
1082 |
-
#: controls/ooohboi-hover-animator.php:
|
1083 |
-
#: controls/ooohboi-hover-animator.php:
|
1084 |
-
#: controls/ooohboi-hover-animator.php:
|
1085 |
-
#: controls/ooohboi-oh-animator.php:
|
1086 |
msgid "Delay"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: controls/ooohboi-hover-animator.php:
|
1090 |
-
#: controls/ooohboi-hover-animator.php:
|
1091 |
-
#: controls/ooohboi-hover-animator.php:
|
1092 |
-
#: controls/ooohboi-hover-animator.php:
|
1093 |
-
#: controls/ooohboi-hover-animator.php:
|
1094 |
msgid "Easing"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: controls/ooohboi-hover-animator.php:
|
1098 |
-
#: controls/ooohboi-hover-animator.php:
|
1099 |
-
#: controls/ooohboi-hover-animator.php:
|
1100 |
-
#: controls/ooohboi-hover-animator.php:
|
1101 |
-
#: controls/ooohboi-hover-animator.php:
|
|
|
1102 |
msgid "Ease-in"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: controls/ooohboi-hover-animator.php:
|
1106 |
-
#: controls/ooohboi-hover-animator.php:
|
1107 |
-
#: controls/ooohboi-hover-animator.php:
|
1108 |
-
#: controls/ooohboi-hover-animator.php:
|
1109 |
-
#: controls/ooohboi-hover-animator.php:
|
|
|
1110 |
msgid "Ease-out"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: controls/ooohboi-hover-animator.php:
|
1114 |
-
#: controls/ooohboi-hover-animator.php:
|
1115 |
-
#: controls/ooohboi-hover-animator.php:
|
1116 |
-
#: controls/ooohboi-hover-animator.php:
|
1117 |
-
#: controls/ooohboi-hover-animator.php:
|
|
|
1118 |
msgid "Ease-in-out"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: controls/ooohboi-hover-animator.php:
|
1122 |
#: controls/ooohboi-overlay-underlay.php:340
|
1123 |
-
#: controls/ooohboi-overlay-underlay.php:976 controls/ooohboi-pseudo.php:
|
1124 |
-
#: controls/ooohboi-pseudo.php:
|
1125 |
msgid "Offset Top"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: controls/ooohboi-hover-animator.php:
|
1129 |
msgid "Offset Top Normal"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: controls/ooohboi-hover-animator.php:
|
1133 |
msgid "Calc Offset Top Normal"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: controls/ooohboi-hover-animator.php:
|
1137 |
-
#: controls/ooohboi-hover-animator.php:
|
1138 |
-
#: controls/ooohboi-hover-animator.php:
|
1139 |
-
#: controls/ooohboi-hover-animator.php:
|
1140 |
#: controls/ooohboi-overlaiz.php:197 controls/ooohboi-overlaiz.php:264
|
1141 |
#: controls/ooohboi-overlaiz.php:331 controls/ooohboi-overlay-underlay.php:263
|
1142 |
#: controls/ooohboi-overlay-underlay.php:385
|
1143 |
#: controls/ooohboi-overlay-underlay.php:902
|
1144 |
#: controls/ooohboi-overlay-underlay.php:1020
|
1145 |
-
#: controls/ooohboi-overlay-underlay.php:1079 controls/ooohboi-pseudo.php:
|
1146 |
-
#: controls/ooohboi-pseudo.php:
|
1147 |
-
#: controls/ooohboi-pseudo.php:
|
1148 |
msgid "Enter CSS calc value only! Like: 100% - 50px or 100% + 2em"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: controls/ooohboi-hover-animator.php:
|
1152 |
msgid "Offset Top Hover"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: controls/ooohboi-hover-animator.php:
|
1156 |
msgid "Calc Offset Top Hover"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: controls/ooohboi-hover-animator.php:
|
1160 |
#: controls/ooohboi-overlay-underlay.php:401
|
1161 |
-
#: controls/ooohboi-overlay-underlay.php:1035 controls/ooohboi-pseudo.php:
|
1162 |
-
#: controls/ooohboi-pseudo.php:
|
1163 |
msgid "Offset Left"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: controls/ooohboi-hover-animator.php:
|
1167 |
msgid "Offset Left Normal"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: controls/ooohboi-hover-animator.php:
|
1171 |
msgid "Calc Offset Left Normal"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: controls/ooohboi-hover-animator.php:
|
1175 |
msgid "Offset Left Hover"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: controls/ooohboi-hover-animator.php:
|
1179 |
msgid "Calc Offset Left Hover"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: controls/ooohboi-hover-animator.php:
|
1183 |
msgid "Transforms"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: controls/ooohboi-hover-animator.php:
|
1187 |
msgid "ScaleX Normal"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: controls/ooohboi-hover-animator.php:
|
1191 |
msgid "ScaleX Hover"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: controls/ooohboi-hover-animator.php:
|
1195 |
msgid "ScaleY Normal"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: controls/ooohboi-hover-animator.php:
|
1199 |
msgid "ScaleY Hover"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: controls/ooohboi-hover-animator.php:
|
1203 |
msgid "Rotation Normal"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: controls/ooohboi-hover-animator.php:
|
1207 |
msgid "Rotation Hover"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: controls/ooohboi-hover-animator.php:
|
1211 |
#: controls/ooohboi-spacerat.php:474
|
1212 |
msgid "Blur"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: controls/ooohboi-hover-animator.php:
|
1216 |
msgid "Blur Normal"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: controls/ooohboi-hover-animator.php:
|
1220 |
msgid "Blur Hover"
|
1221 |
msgstr ""
|
1222 |
|
@@ -1230,11 +1286,11 @@ msgid "The icon sits atop the title on mobiles. Prevent that, huh?"
|
|
1230 |
msgstr ""
|
1231 |
|
1232 |
#: controls/ooohboi-icobox.php:108 controls/ooohboi-icobox.php:243
|
1233 |
-
#: controls/ooohboi-imbox.php:
|
1234 |
msgid "Overrides"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: controls/ooohboi-icobox.php:109 controls/ooohboi-imbox.php:
|
1238 |
msgid "Allow more basic controls?"
|
1239 |
msgstr ""
|
1240 |
|
@@ -1246,27 +1302,27 @@ msgstr ""
|
|
1246 |
msgid "Icon Margin"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: controls/ooohboi-icobox.php:229 controls/ooohboi-imbox.php:
|
1250 |
msgid "Box Padding"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#: controls/ooohboi-icobox.php:244 controls/ooohboi-imbox.php:
|
1254 |
msgid "Allow separate controls for Title and Description?"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: controls/ooohboi-icobox.php:258 controls/ooohboi-imbox.php:
|
1258 |
msgid "Title Padding"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: controls/ooohboi-icobox.php:274 controls/ooohboi-imbox.php:
|
1262 |
msgid "Title Margin"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: controls/ooohboi-icobox.php:289 controls/ooohboi-imbox.php:
|
1266 |
msgid "Description Padding"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: controls/ooohboi-icobox.php:305 controls/ooohboi-imbox.php:
|
1270 |
msgid "Description Margin"
|
1271 |
msgstr ""
|
1272 |
|
@@ -1279,51 +1335,237 @@ msgstr ""
|
|
1279 |
msgid "The thumbnail sits atop the title on mobiles. Prevent that, huh?"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: controls/ooohboi-imbox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1283 |
msgid "Image Size"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: controls/ooohboi-imbox.php:
|
1287 |
msgid "Image Padding"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: controls/ooohboi-imbox.php:
|
1291 |
msgid "Image Margin"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: controls/ooohboi-imbox.php:
|
1295 |
msgid "Enable full-height?"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: controls/ooohboi-imbox.php:
|
1299 |
msgid ""
|
1300 |
"That will make the photo full-height. Makes sense only if the photo is "
|
1301 |
"placed left or the right-hand side!"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: controls/ooohboi-imbox.php:
|
1305 |
msgid "Image clip path"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: controls/ooohboi-imbox.php:
|
1309 |
#: controls/ooohboi-overlaiz.php:470 controls/ooohboi-overlay-underlay.php:716
|
1310 |
#: controls/ooohboi-overlay-underlay.php:1344
|
1311 |
#: controls/ooohboi-photomorph.php:120 controls/ooohboi-photomorph.php:150
|
1312 |
-
#: controls/ooohboi-pseudo.php:
|
1313 |
#: controls/ooohboi-spacerat.php:539
|
1314 |
#, php-format
|
1315 |
msgid ""
|
1316 |
"Enter the full clip-path property! See the copy-paste examples at %sClippy%s"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: controls/ooohboi-imbox.php:
|
1320 |
msgid "Box Margin"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: controls/ooohboi-imbox.php:
|
1324 |
msgid "Box z-index"
|
1325 |
msgstr ""
|
1326 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1327 |
#: controls/ooohboi-kontrolz.php:183
|
1328 |
msgid "NOTE: It works only with the pagination style set to Dots!"
|
1329 |
msgstr ""
|
@@ -1344,194 +1586,194 @@ msgid ""
|
|
1344 |
"pipe character, i.e. data-scroll-offset%s100,50em"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: controls/ooohboi-oh-animator.php:
|
1348 |
msgid "Enable ANIMATOR?"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: controls/ooohboi-oh-animator.php:
|
1352 |
#, php-format
|
1353 |
msgid ""
|
1354 |
"If you are not familiar with the %s, %s and scroll triggered animations, "
|
1355 |
"it's good idea to learn some basics."
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#: controls/ooohboi-oh-animator.php:
|
1359 |
msgid "Animate first child?"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: controls/ooohboi-oh-animator.php:
|
1363 |
msgid ""
|
1364 |
"By default \".elementor-widget-container\" will be animated. You can animate "
|
1365 |
"its first child element instead."
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: controls/ooohboi-oh-animator.php:
|
1369 |
msgid "ScrollTrigger Settings"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: controls/ooohboi-oh-animator.php:
|
1373 |
msgid "This is where you set you scroll triggered animation."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: controls/ooohboi-oh-animator.php:
|
1377 |
msgid "Show Markers?"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: controls/ooohboi-oh-animator.php:
|
1381 |
msgid "See where the target element/widget start/end/trigger points are"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: controls/ooohboi-oh-animator.php:
|
1385 |
msgid "Scrub?"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: controls/ooohboi-oh-animator.php:
|
1389 |
msgid ""
|
1390 |
"Controll the animation progress with the scrollbar so it acts like a scrubber"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: controls/ooohboi-oh-animator.php:
|
1394 |
msgid "Scrub smooth"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: controls/ooohboi-oh-animator.php:
|
1398 |
msgid "Adds smoothing to scrub. Best between 1 and 5 (extreme already!)"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: controls/ooohboi-oh-animator.php:
|
1402 |
msgid "Invalidate on refresh?"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: controls/ooohboi-oh-animator.php:
|
1406 |
msgid "This flushes out any internally-recorded starting values."
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: controls/ooohboi-oh-animator.php:
|
1410 |
msgid "Immediate render"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: controls/ooohboi-oh-animator.php:
|
1414 |
#, php-format
|
1415 |
msgid "Please take a quick guide %s"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: controls/ooohboi-oh-animator.php:
|
1419 |
msgid "Pin?"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: controls/ooohboi-oh-animator.php:
|
1423 |
msgid ""
|
1424 |
"Warning: don't animate the pinned element itself due to the unpredicted "
|
1425 |
"results! Rather animate elements inside the pinned element."
|
1426 |
msgstr ""
|
1427 |
|
1428 |
-
#: controls/ooohboi-oh-animator.php:
|
1429 |
msgid "Anticipate Pin"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#: controls/ooohboi-oh-animator.php:
|
1433 |
msgid "Prevent overlaps"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: controls/ooohboi-oh-animator.php:
|
1437 |
msgid "Pin spacing"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: controls/ooohboi-oh-animator.php:
|
1441 |
msgid "Yes (true)"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#: controls/ooohboi-oh-animator.php:
|
1445 |
msgid "No (false)"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#: controls/ooohboi-oh-animator.php:
|
1449 |
msgid "ScrollTrigger Start and End"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#: controls/ooohboi-oh-animator.php:
|
1453 |
msgid "ScrollTrigger Start"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: controls/ooohboi-oh-animator.php:
|
1457 |
msgid ""
|
1458 |
"Describes a place on the trigger and a place on the scroller that must meet "
|
1459 |
"in order to start the ScrollTrigger"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: controls/ooohboi-oh-animator.php:
|
1463 |
msgid "Start - Trigger Element"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: controls/ooohboi-oh-animator.php:
|
1467 |
-
#: controls/ooohboi-oh-animator.php:
|
1468 |
msgid "Top"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: controls/ooohboi-oh-animator.php:
|
1472 |
-
#: controls/ooohboi-oh-animator.php:
|
1473 |
msgid "Bottom"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#: controls/ooohboi-oh-animator.php:
|
1477 |
msgid "Top + Self height"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#: controls/ooohboi-oh-animator.php:
|
1481 |
msgid "Start - Trigger Element Offset"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: controls/ooohboi-oh-animator.php:
|
1485 |
msgid "Start - Viewport"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: controls/ooohboi-oh-animator.php:
|
1489 |
msgid "Start - Viewport Offset"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: controls/ooohboi-oh-animator.php:
|
1493 |
msgid "ScrollTrigger End"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: controls/ooohboi-oh-animator.php:
|
1497 |
msgid ""
|
1498 |
"Describes a place on the endTrigger (or trigger if one isn't defined) and a "
|
1499 |
"place on the scroller that must meet in order to end the scroll triggered "
|
1500 |
"animation"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: controls/ooohboi-oh-animator.php:
|
1504 |
msgid "End - Trigger Element"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: controls/ooohboi-oh-animator.php:
|
1508 |
msgid "End - Trigger Element Offset"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: controls/ooohboi-oh-animator.php:
|
1512 |
msgid "End - Viewport"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: controls/ooohboi-oh-animator.php:
|
1516 |
msgid "End - Viewport Offset"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: controls/ooohboi-oh-animator.php:
|
1520 |
msgid "End trigger selector"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: controls/ooohboi-oh-animator.php:
|
1524 |
msgid ""
|
1525 |
"Selector (element) whose position in the normal document flow is used for "
|
1526 |
"calculating where the ScrollTrigger ends. For instance: \".element-class-name"
|
1527 |
"\" or \"#element-unique-id\""
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: controls/ooohboi-oh-animator.php:
|
1531 |
msgid "Toggle Actions"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: controls/ooohboi-oh-animator.php:
|
1535 |
msgid ""
|
1536 |
"Determines how the linked animation is controlled at the 4 distinct toggle "
|
1537 |
"places - onEnter, onLeave, onEnterBack, and onLeaveBack, in that order. <br/"
|
@@ -1543,62 +1785,62 @@ msgid ""
|
|
1543 |
"the beginning) when scrolling all the way back past the beginning."
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: controls/ooohboi-oh-animator.php:
|
1547 |
msgid "Action onEnter"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: controls/ooohboi-oh-animator.php:607 controls/ooohboi-oh-animator.php:632
|
1551 |
-
#: controls/ooohboi-oh-animator.php:657 controls/ooohboi-oh-animator.php:682
|
1552 |
-
msgid "Play"
|
1553 |
-
msgstr ""
|
1554 |
-
|
1555 |
-
#: controls/ooohboi-oh-animator.php:608 controls/ooohboi-oh-animator.php:633
|
1556 |
-
#: controls/ooohboi-oh-animator.php:658 controls/ooohboi-oh-animator.php:683
|
1557 |
-
msgid "Pause"
|
1558 |
-
msgstr ""
|
1559 |
-
|
1560 |
#: controls/ooohboi-oh-animator.php:609 controls/ooohboi-oh-animator.php:634
|
1561 |
#: controls/ooohboi-oh-animator.php:659 controls/ooohboi-oh-animator.php:684
|
1562 |
-
msgid "
|
1563 |
msgstr ""
|
1564 |
|
1565 |
#: controls/ooohboi-oh-animator.php:610 controls/ooohboi-oh-animator.php:635
|
1566 |
#: controls/ooohboi-oh-animator.php:660 controls/ooohboi-oh-animator.php:685
|
1567 |
-
msgid "
|
1568 |
msgstr ""
|
1569 |
|
1570 |
#: controls/ooohboi-oh-animator.php:611 controls/ooohboi-oh-animator.php:636
|
1571 |
#: controls/ooohboi-oh-animator.php:661 controls/ooohboi-oh-animator.php:686
|
1572 |
-
msgid "
|
1573 |
msgstr ""
|
1574 |
|
1575 |
#: controls/ooohboi-oh-animator.php:612 controls/ooohboi-oh-animator.php:637
|
1576 |
#: controls/ooohboi-oh-animator.php:662 controls/ooohboi-oh-animator.php:687
|
1577 |
-
msgid "
|
1578 |
msgstr ""
|
1579 |
|
1580 |
#: controls/ooohboi-oh-animator.php:613 controls/ooohboi-oh-animator.php:638
|
1581 |
#: controls/ooohboi-oh-animator.php:663 controls/ooohboi-oh-animator.php:688
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1582 |
msgid "Reverse"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: controls/ooohboi-oh-animator.php:
|
1586 |
msgid "Action onLeave"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#: controls/ooohboi-oh-animator.php:
|
1590 |
msgid "Action onEnterBack"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: controls/ooohboi-oh-animator.php:
|
1594 |
msgid "Action onLeaveBack"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: controls/ooohboi-oh-animator.php:
|
1598 |
msgid "Toggle Class"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#: controls/ooohboi-oh-animator.php:
|
1602 |
msgid ""
|
1603 |
"Adds/removes a class to an element (or multiple elements) when the "
|
1604 |
"ScrollTrigger toggles active/inactive. <br/>\n"
|
@@ -1606,249 +1848,154 @@ msgid ""
|
|
1606 |
"trigger element - the String! The Object is currently not supported!"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#: controls/ooohboi-oh-animator.php:
|
1610 |
msgid "Toggle class name"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: controls/ooohboi-oh-animator.php:746
|
1614 |
-
msgid "Animatable Properties"
|
1615 |
-
msgstr ""
|
1616 |
-
|
1617 |
#: controls/ooohboi-oh-animator.php:748
|
1618 |
-
msgid "
|
1619 |
-
msgstr ""
|
1620 |
-
|
1621 |
-
#: controls/ooohboi-oh-animator.php:763
|
1622 |
-
msgid "Animate"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: controls/ooohboi-oh-animator.php:
|
1626 |
msgid "X"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: controls/ooohboi-oh-animator.php:
|
1630 |
msgid "Y"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: controls/ooohboi-oh-animator.php:
|
1634 |
-
msgid "Scale"
|
1635 |
-
msgstr ""
|
1636 |
-
|
1637 |
-
#: controls/ooohboi-oh-animator.php:775
|
1638 |
-
#: controls/ooohboi-overlay-underlay.php:463
|
1639 |
-
#: controls/ooohboi-overlay-underlay.php:1095 controls/ooohboi-pseudo.php:490
|
1640 |
-
#: controls/ooohboi-pseudo.php:1138
|
1641 |
-
msgid "Rotate"
|
1642 |
-
msgstr ""
|
1643 |
-
|
1644 |
-
#: controls/ooohboi-oh-animator.php:776
|
1645 |
-
msgid "SkewX"
|
1646 |
-
msgstr ""
|
1647 |
-
|
1648 |
-
#: controls/ooohboi-oh-animator.php:777
|
1649 |
-
msgid "SkewY"
|
1650 |
-
msgstr ""
|
1651 |
-
|
1652 |
-
#: controls/ooohboi-oh-animator.php:778 controls/ooohboi-overlaiz.php:453
|
1653 |
#: controls/ooohboi-overlay-underlay.php:714
|
1654 |
-
#: controls/ooohboi-overlay-underlay.php:1342 controls/ooohboi-pseudo.php:
|
1655 |
-
#: controls/ooohboi-pseudo.php:
|
1656 |
msgid "Clip path"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: controls/ooohboi-oh-animator.php:
|
1660 |
-
#: controls/ooohboi-oh-animator.php:838 controls/ooohboi-oh-animator.php:852
|
1661 |
-
#: controls/ooohboi-oh-animator.php:863 controls/ooohboi-oh-animator.php:874
|
1662 |
-
#: controls/ooohboi-oh-animator.php:887 controls/ooohboi-oh-animator.php:901
|
1663 |
-
#: controls/ooohboi-oh-animator.php:915 controls/ooohboi-oh-animator.php:929
|
1664 |
-
msgid "From"
|
1665 |
-
msgstr ""
|
1666 |
-
|
1667 |
-
#: controls/ooohboi-oh-animator.php:948 controls/ooohboi-oh-animator.php:974
|
1668 |
-
#: controls/ooohboi-oh-animator.php:1000 controls/ooohboi-oh-animator.php:1014
|
1669 |
-
#: controls/ooohboi-oh-animator.php:1025 controls/ooohboi-oh-animator.php:1036
|
1670 |
-
#: controls/ooohboi-oh-animator.php:1073 controls/ooohboi-oh-animator.php:1087
|
1671 |
-
#: controls/ooohboi-oh-animator.php:1101 controls/ooohboi-oh-animator.php:1115
|
1672 |
-
msgid "To"
|
1673 |
-
msgstr ""
|
1674 |
-
|
1675 |
-
#: controls/ooohboi-oh-animator.php:1049
|
1676 |
-
msgid "Transform Origin"
|
1677 |
-
msgstr ""
|
1678 |
-
|
1679 |
-
#: controls/ooohboi-oh-animator.php:1055
|
1680 |
-
msgid "Left Top"
|
1681 |
-
msgstr ""
|
1682 |
-
|
1683 |
-
#: controls/ooohboi-oh-animator.php:1056
|
1684 |
-
msgid "Left Center"
|
1685 |
-
msgstr ""
|
1686 |
-
|
1687 |
-
#: controls/ooohboi-oh-animator.php:1057
|
1688 |
-
msgid "Left Bottom"
|
1689 |
-
msgstr ""
|
1690 |
-
|
1691 |
-
#: controls/ooohboi-oh-animator.php:1058
|
1692 |
-
msgid "Center Top"
|
1693 |
-
msgstr ""
|
1694 |
-
|
1695 |
-
#: controls/ooohboi-oh-animator.php:1059 controls/ooohboi-overlaiz.php:538
|
1696 |
-
#: controls/ooohboi-overlay-underlay.php:582
|
1697 |
-
#: controls/ooohboi-overlay-underlay.php:1214 controls/ooohboi-pseudo.php:611
|
1698 |
-
#: controls/ooohboi-pseudo.php:1258 controls/ooohboi-spacerat.php:225
|
1699 |
-
#: controls/ooohboi-videomasq.php:77
|
1700 |
-
msgid "Center Center"
|
1701 |
-
msgstr ""
|
1702 |
-
|
1703 |
-
#: controls/ooohboi-oh-animator.php:1060
|
1704 |
-
msgid "Center Bottom"
|
1705 |
-
msgstr ""
|
1706 |
-
|
1707 |
-
#: controls/ooohboi-oh-animator.php:1061
|
1708 |
-
msgid "Right Top"
|
1709 |
-
msgstr ""
|
1710 |
-
|
1711 |
-
#: controls/ooohboi-oh-animator.php:1062
|
1712 |
-
msgid "Right Center"
|
1713 |
-
msgstr ""
|
1714 |
-
|
1715 |
-
#: controls/ooohboi-oh-animator.php:1063
|
1716 |
-
msgid "Right Bottom"
|
1717 |
-
msgstr ""
|
1718 |
-
|
1719 |
-
#: controls/ooohboi-oh-animator.php:1151
|
1720 |
msgid "Easing and Timing"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: controls/ooohboi-oh-animator.php:
|
1724 |
msgid "These will make any animation look more natural"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: controls/ooohboi-oh-animator.php:
|
1728 |
msgid "Ease"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: controls/ooohboi-oh-animator.php:
|
1732 |
msgid "It will automatically become NONE with the Scrub option enabled!"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
-
#: controls/ooohboi-oh-animator.php:
|
1736 |
msgid "Power1.in"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
-
#: controls/ooohboi-oh-animator.php:
|
1740 |
msgid "Power1.out"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
-
#: controls/ooohboi-oh-animator.php:
|
1744 |
msgid "Power1.inOut"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
-
#: controls/ooohboi-oh-animator.php:
|
1748 |
msgid "Power2.in"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#: controls/ooohboi-oh-animator.php:
|
1752 |
msgid "Power2.out"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: controls/ooohboi-oh-animator.php:
|
1756 |
msgid "Power2.inOut"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: controls/ooohboi-oh-animator.php:
|
1760 |
msgid "Power3.in"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: controls/ooohboi-oh-animator.php:
|
1764 |
msgid "Power3.out"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: controls/ooohboi-oh-animator.php:
|
1768 |
msgid "Power3.inOut"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
#: controls/ooohboi-oh-animator.php:
|
1772 |
msgid "Power4.in"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#: controls/ooohboi-oh-animator.php:
|
1776 |
msgid "Power4.out"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#: controls/ooohboi-oh-animator.php:
|
1780 |
msgid "Power4.inOut"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: controls/ooohboi-oh-animator.php:
|
1784 |
msgid "Circ.in"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#: controls/ooohboi-oh-animator.php:
|
1788 |
msgid "Circ.out"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: controls/ooohboi-oh-animator.php:
|
1792 |
msgid "Circ.inOut"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#: controls/ooohboi-oh-animator.php:
|
1796 |
msgid "Expo.in"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
-
#: controls/ooohboi-oh-animator.php:
|
1800 |
msgid "Expo.out"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: controls/ooohboi-oh-animator.php:
|
1804 |
msgid "Expo.inOut"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#: controls/ooohboi-oh-animator.php:
|
1808 |
msgid "Sine.in"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#: controls/ooohboi-oh-animator.php:
|
1812 |
msgid "Sine.out"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#: controls/ooohboi-oh-animator.php:
|
1816 |
msgid "Sine.inOut"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: controls/ooohboi-oh-animator.php:
|
1820 |
msgid "Elastic"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: controls/ooohboi-oh-animator.php:
|
1824 |
msgid "Back"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: controls/ooohboi-oh-animator.php:
|
1828 |
msgid "Bounce"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: controls/ooohboi-oh-animator.php:1207
|
1832 |
-
msgid "Animation duration in seconds. 0.4 is deafult."
|
1833 |
-
msgstr ""
|
1834 |
-
|
1835 |
-
#: controls/ooohboi-oh-animator.php:1223
|
1836 |
-
msgid "Seconds to pause before the animation starts."
|
1837 |
-
msgstr ""
|
1838 |
-
|
1839 |
#: controls/ooohboi-overlaiz.php:61
|
1840 |
msgid "Enable Overlaiz?"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
#: controls/ooohboi-overlaiz.php:129 controls/ooohboi-overlay-underlay.php:262
|
1844 |
-
#: controls/ooohboi-overlay-underlay.php:901 controls/ooohboi-pseudo.php:
|
1845 |
-
#: controls/ooohboi-pseudo.php:
|
1846 |
msgid "Calc Width"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
#: controls/ooohboi-overlaiz.php:196 controls/ooohboi-overlay-underlay.php:323
|
1850 |
-
#: controls/ooohboi-overlay-underlay.php:960 controls/ooohboi-pseudo.php:
|
1851 |
-
#: controls/ooohboi-pseudo.php:
|
1852 |
msgid "Calc Height"
|
1853 |
msgstr ""
|
1854 |
|
@@ -1884,14 +2031,14 @@ msgid ""
|
|
1884 |
msgstr ""
|
1885 |
|
1886 |
#: controls/ooohboi-overlaiz.php:513 controls/ooohboi-overlay-underlay.php:557
|
1887 |
-
#: controls/ooohboi-overlay-underlay.php:1189 controls/ooohboi-pseudo.php:
|
1888 |
-
#: controls/ooohboi-pseudo.php:
|
1889 |
msgid "Choose Image Mask"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
#: controls/ooohboi-overlaiz.php:514 controls/ooohboi-overlay-underlay.php:558
|
1893 |
-
#: controls/ooohboi-overlay-underlay.php:1190 controls/ooohboi-pseudo.php:
|
1894 |
-
#: controls/ooohboi-pseudo.php:
|
1895 |
#, php-format
|
1896 |
msgid ""
|
1897 |
"NOTE: Image Mask should be black-and-transparent SVG file! Anything that’s "
|
@@ -1900,127 +2047,127 @@ msgid ""
|
|
1900 |
msgstr ""
|
1901 |
|
1902 |
#: controls/ooohboi-overlaiz.php:533 controls/ooohboi-overlay-underlay.php:577
|
1903 |
-
#: controls/ooohboi-overlay-underlay.php:1209 controls/ooohboi-pseudo.php:
|
1904 |
-
#: controls/ooohboi-pseudo.php:
|
1905 |
#: controls/ooohboi-videomasq.php:72
|
1906 |
msgid "Mask position"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
#: controls/ooohboi-overlaiz.php:539 controls/ooohboi-overlay-underlay.php:583
|
1910 |
-
#: controls/ooohboi-overlay-underlay.php:1215 controls/ooohboi-pseudo.php:
|
1911 |
-
#: controls/ooohboi-pseudo.php:
|
1912 |
#: controls/ooohboi-videomasq.php:78
|
1913 |
msgid "Center Left"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
#: controls/ooohboi-overlaiz.php:540 controls/ooohboi-overlay-underlay.php:584
|
1917 |
-
#: controls/ooohboi-overlay-underlay.php:1216 controls/ooohboi-pseudo.php:
|
1918 |
-
#: controls/ooohboi-pseudo.php:
|
1919 |
#: controls/ooohboi-videomasq.php:79
|
1920 |
msgid "Center Right"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
#: controls/ooohboi-overlaiz.php:541 controls/ooohboi-overlay-underlay.php:585
|
1924 |
-
#: controls/ooohboi-overlay-underlay.php:1217 controls/ooohboi-pseudo.php:
|
1925 |
-
#: controls/ooohboi-pseudo.php:
|
1926 |
#: controls/ooohboi-videomasq.php:80
|
1927 |
msgid "Top Center"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
#: controls/ooohboi-overlaiz.php:542 controls/ooohboi-overlay-underlay.php:586
|
1931 |
-
#: controls/ooohboi-overlay-underlay.php:1218 controls/ooohboi-pseudo.php:
|
1932 |
-
#: controls/ooohboi-pseudo.php:
|
1933 |
#: controls/ooohboi-videomasq.php:81
|
1934 |
msgid "Top Left"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
#: controls/ooohboi-overlaiz.php:543 controls/ooohboi-overlay-underlay.php:587
|
1938 |
-
#: controls/ooohboi-overlay-underlay.php:1219 controls/ooohboi-pseudo.php:
|
1939 |
-
#: controls/ooohboi-pseudo.php:
|
1940 |
#: controls/ooohboi-videomasq.php:82
|
1941 |
msgid "Top Right"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
#: controls/ooohboi-overlaiz.php:544 controls/ooohboi-overlay-underlay.php:588
|
1945 |
-
#: controls/ooohboi-overlay-underlay.php:1220 controls/ooohboi-pseudo.php:
|
1946 |
-
#: controls/ooohboi-pseudo.php:
|
1947 |
#: controls/ooohboi-videomasq.php:83
|
1948 |
msgid "Bottom Center"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
#: controls/ooohboi-overlaiz.php:545 controls/ooohboi-overlay-underlay.php:589
|
1952 |
-
#: controls/ooohboi-overlay-underlay.php:1221 controls/ooohboi-pseudo.php:
|
1953 |
-
#: controls/ooohboi-pseudo.php:
|
1954 |
#: controls/ooohboi-videomasq.php:84
|
1955 |
msgid "Bottom Left"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
#: controls/ooohboi-overlaiz.php:546 controls/ooohboi-overlay-underlay.php:590
|
1959 |
-
#: controls/ooohboi-overlay-underlay.php:1222 controls/ooohboi-pseudo.php:
|
1960 |
-
#: controls/ooohboi-pseudo.php:
|
1961 |
#: controls/ooohboi-videomasq.php:85
|
1962 |
msgid "Bottom Right"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
#: controls/ooohboi-overlaiz.php:563 controls/ooohboi-overlay-underlay.php:607
|
1966 |
-
#: controls/ooohboi-overlay-underlay.php:1238 controls/ooohboi-pseudo.php:
|
1967 |
-
#: controls/ooohboi-pseudo.php:
|
1968 |
#: controls/ooohboi-videomasq.php:100
|
1969 |
msgid "Mask size"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
#: controls/ooohboi-overlaiz.php:569 controls/ooohboi-overlay-underlay.php:613
|
1973 |
-
#: controls/ooohboi-overlay-underlay.php:1244 controls/ooohboi-pseudo.php:
|
1974 |
-
#: controls/ooohboi-pseudo.php:
|
1975 |
#: controls/ooohboi-videomasq.php:106
|
1976 |
msgid "Cover"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
#: controls/ooohboi-overlaiz.php:570 controls/ooohboi-overlay-underlay.php:614
|
1980 |
-
#: controls/ooohboi-overlay-underlay.php:1245 controls/ooohboi-pseudo.php:
|
1981 |
-
#: controls/ooohboi-pseudo.php:
|
1982 |
#: controls/ooohboi-videomasq.php:107
|
1983 |
msgid "Contain"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
#: controls/ooohboi-overlaiz.php:645 controls/ooohboi-overlay-underlay.php:687
|
1987 |
-
#: controls/ooohboi-overlay-underlay.php:1316 controls/ooohboi-pseudo.php:
|
1988 |
-
#: controls/ooohboi-pseudo.php:
|
1989 |
#: controls/ooohboi-videomasq.php:172
|
1990 |
msgid "Mask repeat"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
#: controls/ooohboi-overlaiz.php:649 controls/ooohboi-overlay-underlay.php:691
|
1994 |
-
#: controls/ooohboi-overlay-underlay.php:1320 controls/ooohboi-pseudo.php:
|
1995 |
-
#: controls/ooohboi-pseudo.php:
|
1996 |
#: controls/ooohboi-videomasq.php:176
|
1997 |
msgid "No-repeat"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
#: controls/ooohboi-overlaiz.php:650 controls/ooohboi-overlay-underlay.php:692
|
2001 |
-
#: controls/ooohboi-overlay-underlay.php:1321 controls/ooohboi-pseudo.php:
|
2002 |
-
#: controls/ooohboi-pseudo.php:
|
2003 |
#: controls/ooohboi-videomasq.php:177
|
2004 |
msgid "Repeat"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
#: controls/ooohboi-overlaiz.php:651 controls/ooohboi-overlay-underlay.php:693
|
2008 |
-
#: controls/ooohboi-overlay-underlay.php:1322 controls/ooohboi-pseudo.php:
|
2009 |
-
#: controls/ooohboi-pseudo.php:
|
2010 |
#: controls/ooohboi-videomasq.php:178
|
2011 |
msgid "Repeat-x"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
#: controls/ooohboi-overlaiz.php:652 controls/ooohboi-overlay-underlay.php:694
|
2015 |
-
#: controls/ooohboi-overlay-underlay.php:1323 controls/ooohboi-pseudo.php:
|
2016 |
-
#: controls/ooohboi-pseudo.php:
|
2017 |
#: controls/ooohboi-videomasq.php:179
|
2018 |
msgid "Repeat-y"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
#: controls/ooohboi-overlaiz.php:672 controls/ooohboi-overlay-underlay.php:737
|
2022 |
-
#: controls/ooohboi-overlay-underlay.php:1365 controls/ooohboi-pseudo.php:
|
2023 |
-
#: controls/ooohboi-pseudo.php:
|
2024 |
msgid "Z-Index"
|
2025 |
msgstr ""
|
2026 |
|
@@ -2029,33 +2176,33 @@ msgid "Enable PoopArt?"
|
|
2029 |
msgstr ""
|
2030 |
|
2031 |
#: controls/ooohboi-overlay-underlay.php:174
|
2032 |
-
#: controls/ooohboi-overlay-underlay.php:814 controls/ooohboi-pseudo.php:
|
2033 |
-
#: controls/ooohboi-pseudo.php:
|
2034 |
msgid "Blend Mode"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
#: controls/ooohboi-overlay-underlay.php:201
|
2038 |
-
#: controls/ooohboi-overlay-underlay.php:841 controls/ooohboi-pseudo.php:
|
2039 |
-
#: controls/ooohboi-pseudo.php:
|
2040 |
msgid "Position and Size"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
#: controls/ooohboi-overlay-underlay.php:324
|
2044 |
#: controls/ooohboi-overlay-underlay.php:446
|
2045 |
-
#: controls/ooohboi-overlay-underlay.php:961 controls/ooohboi-pseudo.php:
|
2046 |
-
#: controls/ooohboi-pseudo.php:
|
2047 |
msgid "Enter CSS calc value only! Like: 45% + 85px or 100% - 3em"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
#: controls/ooohboi-overlay-underlay.php:384
|
2051 |
-
#: controls/ooohboi-overlay-underlay.php:1019 controls/ooohboi-pseudo.php:
|
2052 |
-
#: controls/ooohboi-pseudo.php:
|
2053 |
msgid "Calc Offset Top"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
#: controls/ooohboi-overlay-underlay.php:445
|
2057 |
-
#: controls/ooohboi-overlay-underlay.php:1078 controls/ooohboi-pseudo.php:
|
2058 |
-
#: controls/ooohboi-pseudo.php:
|
2059 |
msgid "Calc Offset Left"
|
2060 |
msgstr ""
|
2061 |
|
@@ -2217,29 +2364,29 @@ msgstr ""
|
|
2217 |
msgid "Animation delay"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#: controls/ooohboi-pseudo.php:
|
2221 |
msgid "Enable Pseudo?"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#: controls/ooohboi-pseudo.php:
|
2225 |
msgid ""
|
2226 |
"This is how you can create and manage :before and :after pseudo elements for "
|
2227 |
"this column"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
-
#: controls/ooohboi-pseudo.php:
|
2231 |
msgid "Before"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
-
#: controls/ooohboi-pseudo.php:
|
2235 |
msgid "Before Mask"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
-
#: controls/ooohboi-pseudo.php:
|
2239 |
msgid "After"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
-
#: controls/ooohboi-pseudo.php:
|
2243 |
msgid "After Mask"
|
2244 |
msgstr ""
|
2245 |
|
@@ -2387,25 +2534,29 @@ msgid ""
|
|
2387 |
"that’s transparent will be completely hidden."
|
2388 |
msgstr ""
|
2389 |
|
2390 |
-
#: controls/ooohboi-widget-stalker.php:
|
2391 |
msgid ""
|
2392 |
"NOTE: Position, alignment, direction and justification of all widgets is "
|
2393 |
"controlled by the parent Container!"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
-
#: controls/ooohboi-widget-stalker.php:
|
2397 |
msgid "Widget width"
|
2398 |
msgstr ""
|
2399 |
|
2400 |
-
#: controls/ooohboi-widget-stalker.php:
|
|
|
|
|
|
|
|
|
2401 |
msgid "Align self"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
-
#: controls/ooohboi-widget-stalker.php:
|
2405 |
msgid "Align this widget vertically"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
-
#: controls/ooohboi-widget-stalker.php:
|
2409 |
msgid "Widget Order"
|
2410 |
msgstr ""
|
2411 |
|
@@ -2563,11 +2714,11 @@ msgid ""
|
|
2563 |
"Elementor 3.6 and above)%s"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: inc/common-functions.php:
|
2567 |
msgid "Manage JS Libraries"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
-
#: inc/common-functions.php:
|
2571 |
#, php-format
|
2572 |
msgid ""
|
2573 |
"%sThe following libraries are currently available with Steroids for "
|
@@ -2575,56 +2726,56 @@ msgid ""
|
|
2575 |
"OFF.%s"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
-
#: inc/common-functions.php:
|
2579 |
msgid "LOCOMOTIVE SCROLL"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: inc/common-functions.php:
|
2583 |
#, php-format
|
2584 |
msgid ""
|
2585 |
"%1$sDetection of elements in viewport and smooth scrolling with parallax.%3$s"
|
2586 |
"%4$sSOURCE%5$s%2$s"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
-
#: inc/common-functions.php:
|
2590 |
msgid "Enable for Tablets"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
-
#: inc/common-functions.php:
|
2594 |
msgid "Enable for Mobiles"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
-
#: inc/common-functions.php:
|
2598 |
msgid "Multiplier"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
-
#: inc/common-functions.php:
|
2602 |
#, php-format
|
2603 |
msgid "%sBoost/reduce scrolling speed. 1 is the default.%s"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
-
#: inc/common-functions.php:
|
2607 |
msgid "Refresh on resize?"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
-
#: inc/common-functions.php:
|
2611 |
msgid ""
|
2612 |
"Things get messy on resize. That will do the silent page refresh upon the "
|
2613 |
"window resize/orientationchange."
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
#: inc/common-functions.php:
|
2617 |
msgid "Enable freehand mode?"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
-
#: inc/common-functions.php:
|
2621 |
#, php-format
|
2622 |
msgid ""
|
2623 |
"That removes all the default %sdata-scroll-section%s attributes so you can "
|
2624 |
"set them at will."
|
2625 |
msgstr ""
|
2626 |
|
2627 |
-
#: inc/common-functions.php:
|
2628 |
#, php-format
|
2629 |
msgid ""
|
2630 |
"%1$s Cross-browser JavaScript library/API which is used to create and "
|
@@ -2632,40 +2783,40 @@ msgid ""
|
|
2632 |
"%2$s"
|
2633 |
msgstr ""
|
2634 |
|
2635 |
-
#: inc/common-functions.php:
|
2636 |
#, php-format
|
2637 |
msgid ""
|
2638 |
"%1$s A lightweight JavaScript animation library with a simple, yet powerful "
|
2639 |
"API.%3$s%4$sSOURCE%5$s%2$s"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
-
#: inc/common-functions.php:
|
2643 |
#, php-format
|
2644 |
msgid ""
|
2645 |
"%1$s Create badass fluid and smooth transitions between your website's pages."
|
2646 |
"%3$s%4$sSOURCE%5$s%2$s"
|
2647 |
msgstr ""
|
2648 |
|
2649 |
-
#: inc/common-functions.php:
|
2650 |
#, php-format
|
2651 |
msgid ""
|
2652 |
"%1$sGreenSock's GSAP JavaScript animation library (including Draggable).%3$s"
|
2653 |
"%4$sSOURCE%5$s%2$s"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
-
#: inc/common-functions.php:
|
2657 |
#, php-format
|
2658 |
msgid "%1$sLet your page react to scroll changes.%3$s%4$sSOURCE%5$s%2$s"
|
2659 |
msgstr ""
|
2660 |
|
2661 |
-
#: inc/common-functions.php:
|
2662 |
#, php-format
|
2663 |
msgid ""
|
2664 |
"%1$sAnimates the scroll position of the window or a DOM element.%3$s"
|
2665 |
"%4$sSOURCE%5$s%2$s"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: inc/common-functions.php:
|
2669 |
#, php-format
|
2670 |
msgid ""
|
2671 |
"%1$sAnimate anything (SVG, DOM, canvas, generic objects, whatever) along a "
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: OoohBoi Steroids for Elementor\n"
|
5 |
+
"POT-Creation-Date: 2022-06-19 11:09+0200\n"
|
6 |
+
"PO-Revision-Date: 2022-06-19 11:09+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
13 |
+
"X-Generator: Poedit 3.1\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
|
16 |
"X-Poedit-WPHeader: ooohboi-steroids.php\n"
|
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:102 controls/ooohboi-glider.php:121
|
39 |
+
#: controls/ooohboi-glider.php:135 controls/ooohboi-glider.php:188
|
40 |
+
#: controls/ooohboi-glider.php:421 controls/ooohboi-glider.php:581
|
41 |
+
#: controls/ooohboi-glider.php:662 controls/ooohboi-glider.php:683
|
42 |
+
#: controls/ooohboi-glider.php:705 controls/ooohboi-glider.php:745
|
43 |
+
#: controls/ooohboi-glider.php:780 controls/ooohboi-glider.php:798
|
44 |
+
#: controls/ooohboi-glider.php:817 controls/ooohboi-glider.php:836
|
45 |
+
#: controls/ooohboi-harakiri.php:95 controls/ooohboi-harakiri.php:149
|
46 |
+
#: controls/ooohboi-harakiri.php:397 controls/ooohboi-hover-animator.php:112
|
47 |
+
#: controls/ooohboi-hover-animator.php:186 controls/ooohboi-icobox.php:96
|
48 |
#: controls/ooohboi-icobox.php:112 controls/ooohboi-icobox.php:247
|
49 |
+
#: controls/ooohboi-imbox.php:97 controls/ooohboi-imbox.php:135
|
50 |
+
#: controls/ooohboi-imbox.php:431 controls/ooohboi-interactor.php:103
|
51 |
+
#: controls/ooohboi-oh-animator.php:95 controls/ooohboi-oh-animator.php:126
|
52 |
+
#: controls/ooohboi-oh-animator.php:158 controls/ooohboi-oh-animator.php:175
|
53 |
+
#: controls/ooohboi-oh-animator.php:210 controls/ooohboi-oh-animator.php:230
|
54 |
+
#: controls/ooohboi-oh-animator.php:247 controls/ooohboi-oh-animator.php:263
|
55 |
+
#: controls/ooohboi-oh-animator.php:280 controls/ooohboi-overlaiz.php:64
|
56 |
+
#: controls/ooohboi-overlay-underlay.php:105
|
57 |
#: controls/ooohboi-overlay-underlay.php:1398
|
58 |
#: controls/ooohboi-overlay-underlay.php:1417 controls/ooohboi-paginini.php:220
|
59 |
#: controls/ooohboi-perspektive.php:105 controls/ooohboi-photomorph.php:97
|
60 |
+
#: controls/ooohboi-photomorph.php:173 controls/ooohboi-pseudo.php:114
|
61 |
#: controls/ooohboi-searchcop.php:79 controls/ooohboi-shadough.php:50
|
62 |
#: controls/ooohboi-spacerat.php:101 controls/ooohboi-spacerat.php:378
|
63 |
+
#: controls/ooohboi-widget-stalker.php:114
|
64 |
#: inc/exopite-simple-options/fields/upload.php:131
|
65 |
msgid "Yes"
|
66 |
msgstr ""
|
69 |
#: controls/ooohboi-breaking-bad.php:483 controls/ooohboi-breaking-bad.php:558
|
70 |
#: controls/ooohboi-bullet.php:52 controls/ooohboi-butter-button.php:103
|
71 |
#: controls/ooohboi-commentz.php:102 controls/ooohboi-commentz.php:1139
|
72 |
+
#: controls/ooohboi-container-extras.php:103 controls/ooohboi-glider.php:122
|
73 |
+
#: controls/ooohboi-glider.php:136 controls/ooohboi-glider.php:189
|
74 |
+
#: controls/ooohboi-glider.php:422 controls/ooohboi-glider.php:582
|
75 |
+
#: controls/ooohboi-glider.php:663 controls/ooohboi-glider.php:684
|
76 |
+
#: controls/ooohboi-glider.php:706 controls/ooohboi-glider.php:746
|
77 |
+
#: controls/ooohboi-glider.php:781 controls/ooohboi-glider.php:799
|
78 |
+
#: controls/ooohboi-glider.php:818 controls/ooohboi-glider.php:837
|
79 |
+
#: controls/ooohboi-harakiri.php:96 controls/ooohboi-harakiri.php:150
|
80 |
+
#: controls/ooohboi-harakiri.php:398 controls/ooohboi-hover-animator.php:113
|
81 |
+
#: controls/ooohboi-hover-animator.php:187 controls/ooohboi-icobox.php:97
|
82 |
#: controls/ooohboi-icobox.php:113 controls/ooohboi-icobox.php:248
|
83 |
+
#: controls/ooohboi-imbox.php:98 controls/ooohboi-imbox.php:136
|
84 |
+
#: controls/ooohboi-imbox.php:432 controls/ooohboi-interactor.php:104
|
85 |
+
#: controls/ooohboi-oh-animator.php:96 controls/ooohboi-oh-animator.php:127
|
86 |
+
#: controls/ooohboi-oh-animator.php:159 controls/ooohboi-oh-animator.php:176
|
87 |
+
#: controls/ooohboi-oh-animator.php:211 controls/ooohboi-oh-animator.php:231
|
88 |
+
#: controls/ooohboi-oh-animator.php:248 controls/ooohboi-oh-animator.php:264
|
89 |
+
#: controls/ooohboi-oh-animator.php:281 controls/ooohboi-overlaiz.php:65
|
90 |
+
#: controls/ooohboi-overlay-underlay.php:106
|
91 |
#: controls/ooohboi-overlay-underlay.php:1399
|
92 |
#: controls/ooohboi-overlay-underlay.php:1418 controls/ooohboi-paginini.php:221
|
93 |
#: controls/ooohboi-perspektive.php:106 controls/ooohboi-photomorph.php:98
|
94 |
+
#: controls/ooohboi-photomorph.php:174 controls/ooohboi-pseudo.php:115
|
95 |
#: controls/ooohboi-searchcop.php:80 controls/ooohboi-shadough.php:51
|
96 |
#: controls/ooohboi-spacerat.php:102 controls/ooohboi-spacerat.php:379
|
97 |
+
#: controls/ooohboi-widget-stalker.php:115
|
98 |
#: inc/exopite-simple-options/fields/upload.php:129
|
99 |
msgid "No"
|
100 |
msgstr ""
|
106 |
#: controls/ooohboi-breaking-bad.php:108 controls/ooohboi-breaking-bad.php:154
|
107 |
#: controls/ooohboi-breaking-bad.php:337 controls/ooohboi-breaking-bad.php:466
|
108 |
#: controls/ooohboi-breaking-bad.php:591 controls/ooohboi-breaking-bad.php:615
|
109 |
+
#: controls/ooohboi-imbox.php:114
|
110 |
msgid "Start"
|
111 |
msgstr ""
|
112 |
|
114 |
#: controls/ooohboi-breaking-bad.php:315 controls/ooohboi-breaking-bad.php:338
|
115 |
#: controls/ooohboi-breaking-bad.php:467 controls/ooohboi-breaking-bad.php:592
|
116 |
#: controls/ooohboi-breaking-bad.php:616 controls/ooohboi-commentz.php:166
|
117 |
+
#: controls/ooohboi-commentz.php:707 controls/ooohboi-imbox.php:115
|
118 |
+
#: controls/ooohboi-oh-animator.php:353 controls/ooohboi-oh-animator.php:403
|
119 |
+
#: controls/ooohboi-oh-animator.php:465 controls/ooohboi-oh-animator.php:514
|
120 |
+
#: controls/ooohboi-widget-stalker.php:265
|
121 |
msgid "Center"
|
122 |
msgstr ""
|
123 |
|
124 |
#: controls/ooohboi-breaking-bad.php:110 controls/ooohboi-breaking-bad.php:156
|
125 |
#: controls/ooohboi-breaking-bad.php:316 controls/ooohboi-breaking-bad.php:339
|
126 |
#: controls/ooohboi-breaking-bad.php:468 controls/ooohboi-breaking-bad.php:593
|
127 |
+
#: controls/ooohboi-breaking-bad.php:617 controls/ooohboi-imbox.php:116
|
128 |
+
#: controls/ooohboi-widget-stalker.php:266
|
129 |
msgid "End"
|
130 |
msgstr ""
|
131 |
|
168 |
msgstr ""
|
169 |
|
170 |
#: controls/ooohboi-breaking-bad.php:192
|
171 |
+
#: controls/ooohboi-widget-stalker.php:128
|
172 |
msgid "Size Method"
|
173 |
msgstr ""
|
174 |
|
175 |
#: controls/ooohboi-breaking-bad.php:193
|
176 |
+
#: controls/ooohboi-widget-stalker.php:129
|
177 |
msgid "Use Flex or Units?"
|
178 |
msgstr ""
|
179 |
|
180 |
#: controls/ooohboi-breaking-bad.php:198 controls/ooohboi-breaking-bad.php:210
|
181 |
+
#: controls/ooohboi-widget-stalker.php:133
|
182 |
+
#: controls/ooohboi-widget-stalker.php:145
|
183 |
msgid "Flex"
|
184 |
msgstr ""
|
185 |
|
186 |
#: controls/ooohboi-breaking-bad.php:199
|
187 |
+
#: controls/ooohboi-widget-stalker.php:134
|
188 |
msgid "Units"
|
189 |
msgstr ""
|
190 |
|
191 |
#: controls/ooohboi-breaking-bad.php:249
|
192 |
+
#: controls/ooohboi-container-extras.php:114
|
193 |
+
#: controls/ooohboi-container-extras.php:132
|
194 |
+
#: controls/ooohboi-interactor.php:205 controls/ooohboi-overlaiz.php:78
|
195 |
#: controls/ooohboi-overlaiz.php:588 controls/ooohboi-overlay-underlay.php:218
|
196 |
#: controls/ooohboi-overlay-underlay.php:632
|
197 |
#: controls/ooohboi-overlay-underlay.php:858
|
198 |
+
#: controls/ooohboi-overlay-underlay.php:1262 controls/ooohboi-pseudo.php:228
|
199 |
+
#: controls/ooohboi-pseudo.php:660 controls/ooohboi-pseudo.php:886
|
200 |
+
#: controls/ooohboi-pseudo.php:1305 controls/ooohboi-spacerat.php:273
|
201 |
#: controls/ooohboi-videomasq.php:123
|
202 |
msgid "Width"
|
203 |
msgstr ""
|
205 |
#: controls/ooohboi-breaking-bad.php:255 controls/ooohboi-breaking-bad.php:294
|
206 |
#: controls/ooohboi-breaking-bad.php:406 controls/ooohboi-teleporter.php:137
|
207 |
#: controls/ooohboi-teleporter.php:155 controls/ooohboi-teleporter.php:186
|
208 |
+
#: controls/ooohboi-teleporter.php:203 controls/ooohboi-widget-stalker.php:187
|
209 |
+
#: controls/ooohboi-widget-stalker.php:227
|
210 |
msgid ""
|
211 |
"You can enter any acceptable CSS value, for example: 50em, 300px, 100%, "
|
212 |
"calc(100% - 300px)."
|
213 |
msgstr ""
|
214 |
|
215 |
#: controls/ooohboi-breaking-bad.php:289 controls/ooohboi-breaking-bad.php:402
|
216 |
+
#: controls/ooohboi-widget-stalker.php:223
|
217 |
msgid "Max Width"
|
218 |
msgstr ""
|
219 |
|
229 |
|
230 |
#: controls/ooohboi-breaking-bad.php:313 controls/ooohboi-overlaiz.php:568
|
231 |
#: controls/ooohboi-overlay-underlay.php:612
|
232 |
+
#: controls/ooohboi-overlay-underlay.php:1243 controls/ooohboi-pseudo.php:640
|
233 |
+
#: controls/ooohboi-pseudo.php:1286 controls/ooohboi-spacerat.php:254
|
234 |
+
#: controls/ooohboi-videomasq.php:105 controls/ooohboi-widget-stalker.php:263
|
235 |
msgid "Auto"
|
236 |
msgstr ""
|
237 |
|
238 |
#: controls/ooohboi-breaking-bad.php:314
|
239 |
+
#: controls/ooohboi-widget-stalker.php:264
|
240 |
msgid "Baseline"
|
241 |
msgstr ""
|
242 |
|
259 |
msgstr ""
|
260 |
|
261 |
#: controls/ooohboi-breaking-bad.php:355 controls/ooohboi-breaking-bad.php:444
|
262 |
+
#: controls/ooohboi-widget-stalker.php:282
|
263 |
#, php-format
|
264 |
msgid "More info at %sMozilla%s."
|
265 |
msgstr ""
|
275 |
"Breaking Bad for this Column parent SECTION!"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: controls/ooohboi-breaking-bad.php:416 controls/ooohboi-harakiri.php:195
|
279 |
msgid "Custom Height"
|
280 |
msgstr ""
|
281 |
|
299 |
msgid "Column Link"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: controls/ooohboi-breaking-bad.php:504 controls/ooohboi-interactor.php:204
|
303 |
+
#: controls/ooohboi-interactor.php:634 controls/ooohboi-oh-animator.php:351
|
304 |
+
#: controls/ooohboi-oh-animator.php:401 controls/ooohboi-oh-animator.php:463
|
305 |
+
#: controls/ooohboi-oh-animator.php:512 controls/ooohboi-oh-animator.php:608
|
306 |
+
#: controls/ooohboi-oh-animator.php:633 controls/ooohboi-oh-animator.php:658
|
307 |
+
#: controls/ooohboi-oh-animator.php:683 controls/ooohboi-oh-animator.php:770
|
308 |
+
#: controls/ooohboi-oh-animator.php:1056 controls/ooohboi-oh-animator.php:1173
|
309 |
#: controls/ooohboi-spacerat.php:126 controls/ooohboi-teleporter.php:78
|
310 |
msgid "None"
|
311 |
msgstr ""
|
330 |
msgid "Widget Stalker"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: controls/ooohboi-breaking-bad.php:553
|
334 |
+
#: controls/ooohboi-widget-stalker.php:110
|
335 |
msgid "Enable Widget Stalker?"
|
336 |
msgstr ""
|
337 |
|
380 |
|
381 |
#: controls/ooohboi-butter-button.php:175 controls/ooohboi-commentz.php:183
|
382 |
#: controls/ooohboi-commentz.php:792 controls/ooohboi-commentz.php:1031
|
383 |
+
#: controls/ooohboi-glider.php:335 controls/ooohboi-kontrolz.php:107
|
384 |
#: controls/ooohboi-paginini.php:59
|
385 |
msgid "Padding"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: controls/ooohboi-butter-button.php:195 controls/ooohboi-harakiri.php:129
|
389 |
+
#: controls/ooohboi-harakiri.php:378 controls/ooohboi-overlay-underlay.php:177
|
390 |
#: controls/ooohboi-overlay-underlay.php:817
|
391 |
+
#: controls/ooohboi-photomorph.php:112 controls/ooohboi-pseudo.php:186
|
392 |
+
#: controls/ooohboi-pseudo.php:845 controls/ooohboi-teleporter.php:129
|
393 |
msgid "Normal"
|
394 |
msgstr ""
|
395 |
|
419 |
#: controls/ooohboi-butter-button.php:267
|
420 |
#: controls/ooohboi-butter-button.php:398 controls/ooohboi-commentz.php:285
|
421 |
#: controls/ooohboi-commentz.php:466 controls/ooohboi-commentz.php:988
|
422 |
+
#: controls/ooohboi-imbox.php:230 controls/ooohboi-imbox.php:244
|
423 |
+
#: controls/ooohboi-imbox.php:376 controls/ooohboi-imbox.php:390
|
424 |
#: controls/ooohboi-overlaiz.php:371 controls/ooohboi-overlaiz.php:390
|
425 |
#: controls/ooohboi-overlay-underlay.php:491
|
426 |
#: controls/ooohboi-overlay-underlay.php:509
|
427 |
#: controls/ooohboi-overlay-underlay.php:1123
|
428 |
#: controls/ooohboi-overlay-underlay.php:1141 controls/ooohboi-paginini.php:146
|
429 |
+
#: controls/ooohboi-paginini.php:195 controls/ooohboi-pseudo.php:518
|
430 |
+
#: controls/ooohboi-pseudo.php:536 controls/ooohboi-pseudo.php:1165
|
431 |
+
#: controls/ooohboi-pseudo.php:1183
|
432 |
msgid "Border"
|
433 |
msgstr ""
|
434 |
|
435 |
#: controls/ooohboi-butter-button.php:280
|
436 |
#: controls/ooohboi-butter-button.php:411 controls/ooohboi-commentz.php:296
|
437 |
#: controls/ooohboi-commentz.php:478 controls/ooohboi-commentz.php:869
|
438 |
+
#: controls/ooohboi-commentz.php:999 controls/ooohboi-glider.php:291
|
439 |
+
#: controls/ooohboi-glider.php:538 controls/ooohboi-imbox.php:252
|
440 |
+
#: controls/ooohboi-imbox.php:398 controls/ooohboi-kontrolz.php:95
|
441 |
#: controls/ooohboi-kontrolz.php:207 controls/ooohboi-overlaiz.php:402
|
442 |
#: controls/ooohboi-overlay-underlay.php:520
|
443 |
#: controls/ooohboi-overlay-underlay.php:1153 controls/ooohboi-paginini.php:154
|
444 |
+
#: controls/ooohboi-paginini.php:203 controls/ooohboi-pseudo.php:548
|
445 |
+
#: controls/ooohboi-pseudo.php:1195
|
446 |
msgid "Border Radius"
|
447 |
msgstr ""
|
448 |
|
449 |
#: controls/ooohboi-butter-button.php:298
|
450 |
#: controls/ooohboi-butter-button.php:429 controls/ooohboi-icobox.php:55
|
451 |
+
#: controls/ooohboi-imbox.php:56 controls/ooohboi-imbox.php:354
|
452 |
#: controls/ooohboi-overlaiz.php:427
|
453 |
msgid "Box Shadow"
|
454 |
msgstr ""
|
482 |
|
483 |
#: controls/ooohboi-commentz.php:144 controls/ooohboi-commentz.php:550
|
484 |
#: controls/ooohboi-commentz.php:626 controls/ooohboi-commentz.php:932
|
485 |
+
#: controls/ooohboi-harakiri.php:309 controls/ooohboi-interactor.php:210
|
486 |
+
#: controls/ooohboi-oh-animator.php:774
|
487 |
msgid "Color"
|
488 |
msgstr ""
|
489 |
|
502 |
#: controls/ooohboi-commentz.php:203 controls/ooohboi-commentz.php:642
|
503 |
#: controls/ooohboi-commentz.php:809 controls/ooohboi-commentz.php:948
|
504 |
#: controls/ooohboi-commentz.php:1051 controls/ooohboi-commentz.php:1115
|
505 |
+
#: controls/ooohboi-oh-animator.php:302 controls/ooohboi-paginini.php:75
|
506 |
+
#: controls/ooohboi-widget-stalker.php:240
|
507 |
msgid "Margin"
|
508 |
msgstr ""
|
509 |
|
520 |
msgstr ""
|
521 |
|
522 |
#: controls/ooohboi-commentz.php:312 controls/ooohboi-commentz.php:1015
|
523 |
+
#: controls/ooohboi-interactor.php:211 controls/ooohboi-oh-animator.php:775
|
524 |
msgid "Background color"
|
525 |
msgstr ""
|
526 |
|
548 |
msgid "Gravatar style"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: controls/ooohboi-commentz.php:416 controls/ooohboi-glider.php:511
|
552 |
msgid "Size"
|
553 |
msgstr ""
|
554 |
|
650 |
"not be posted!"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: controls/ooohboi-container-extras.php:98
|
654 |
msgid "Enable Container Extras?"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: controls/ooohboi-container-extras.php:99
|
658 |
msgid "Get some more flexibility on Containers width"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: controls/ooohboi-container-extras.php:119
|
662 |
+
#: controls/ooohboi-container-extras.php:137
|
663 |
+
#: controls/ooohboi-container-extras.php:155
|
664 |
+
#: controls/ooohboi-container-extras.php:175
|
665 |
msgid ""
|
666 |
"You can enter any acceptable CSS value ( 50em, 25vw, 42.1% ) or the "
|
667 |
"expression ( 100% - 300px, 55vw - 150px, 15rem - 20px ). NO calc() needed, "
|
668 |
"it will be added automatically!"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: controls/ooohboi-container-extras.php:150
|
672 |
+
msgid "Max-width"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: controls/ooohboi-container-extras.php:170
|
676 |
+
msgid "Calc Min Height"
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: controls/ooohboi-glider.php:117
|
680 |
msgid "Create Slider?"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: controls/ooohboi-glider.php:118
|
684 |
msgid ""
|
685 |
"This container containers will become slidable. TIP: Use this Switch to "
|
686 |
"refresh your Glider."
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: controls/ooohboi-glider.php:132
|
690 |
msgid "Adaptable height?"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: controls/ooohboi-glider.php:150
|
694 |
msgid "Slider height"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: controls/ooohboi-glider.php:185
|
698 |
msgid "Hide Navigation"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: controls/ooohboi-glider.php:206 controls/ooohboi-kontrolz.php:46
|
702 |
msgid "Navigation styles"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: controls/ooohboi-glider.php:223
|
706 |
msgid "Arrows Color"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: controls/ooohboi-glider.php:240 controls/ooohboi-kontrolz.php:58
|
710 |
msgid "Arrows Color - Hover"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: controls/ooohboi-glider.php:257 controls/ooohboi-kontrolz.php:71
|
714 |
#: controls/ooohboi-paginini.php:47 controls/ooohboi-paginini.php:121
|
715 |
#: controls/ooohboi-paginini.php:182
|
716 |
msgid "Background Color"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: controls/ooohboi-glider.php:274 controls/ooohboi-kontrolz.php:83
|
720 |
msgid "Background Color - Hover"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: controls/ooohboi-glider.php:308
|
724 |
msgid "Icon size"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: controls/ooohboi-glider.php:361 controls/ooohboi-kontrolz.php:128
|
728 |
msgid "Calc - Y"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: controls/ooohboi-glider.php:362 controls/ooohboi-glider.php:381
|
732 |
+
#: controls/ooohboi-glider.php:399 controls/ooohboi-kontrolz.php:129
|
733 |
#: controls/ooohboi-kontrolz.php:143 controls/ooohboi-kontrolz.php:156
|
734 |
msgid "Valid CSS only! Like: 25px or 15em or 100% - 50px or 50% + 3rem"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: controls/ooohboi-glider.php:379 controls/ooohboi-kontrolz.php:141
|
738 |
msgid "Calc Prev - X"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: controls/ooohboi-glider.php:397 controls/ooohboi-kontrolz.php:154
|
742 |
msgid "Calc Next - X"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: controls/ooohboi-glider.php:418
|
746 |
msgid "Hide Pagination"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: controls/ooohboi-glider.php:440 controls/ooohboi-kontrolz.php:170
|
750 |
msgid "Pagination styles"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: controls/ooohboi-glider.php:456
|
754 |
msgid "Pagination type"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: controls/ooohboi-glider.php:460
|
758 |
msgid "Bullets"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: controls/ooohboi-glider.php:461
|
762 |
msgid "Fraction"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: controls/ooohboi-glider.php:462
|
766 |
msgid "Progress Bar"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: controls/ooohboi-glider.php:476 controls/ooohboi-kontrolz.php:182
|
770 |
msgid "Pagination Color"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: controls/ooohboi-glider.php:493 controls/ooohboi-kontrolz.php:195
|
774 |
msgid "Pagination Color - Active"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: controls/ooohboi-glider.php:558
|
778 |
msgid "Transition type"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: controls/ooohboi-glider.php:563
|
782 |
msgid "Slide"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: controls/ooohboi-glider.php:564 controls/ooohboi-teleporter.php:317
|
786 |
msgid "Fade"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: controls/ooohboi-glider.php:578
|
790 |
msgid "Show Multiple Slides"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: controls/ooohboi-glider.php:599
|
794 |
msgid "Slides Per View"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: controls/ooohboi-glider.php:620
|
798 |
msgid "Slides to Scroll"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: controls/ooohboi-glider.php:621
|
802 |
msgid "Scrolling multiple slides can break infinite loop."
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: controls/ooohboi-glider.php:640
|
806 |
msgid "Space Between Slides (px)"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: controls/ooohboi-glider.php:658
|
810 |
msgid "Centered Slides"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: controls/ooohboi-glider.php:659
|
814 |
msgid "Active slide will be centered."
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: controls/ooohboi-glider.php:679
|
818 |
msgid "Centered Slide Bounds"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: controls/ooohboi-glider.php:680
|
822 |
msgid ""
|
823 |
"Active slide will be centered without adding gaps at the beginning and end "
|
824 |
"of slider."
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: controls/ooohboi-glider.php:702
|
828 |
msgid "Infinite Loop"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: controls/ooohboi-glider.php:721
|
832 |
msgid "Direction"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: controls/ooohboi-glider.php:726
|
836 |
msgid "Horizontal"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: controls/ooohboi-glider.php:727
|
840 |
msgid "Vertical"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: controls/ooohboi-glider.php:741
|
844 |
msgid "Parallax"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: controls/ooohboi-glider.php:742
|
848 |
msgid "It will work with Elementor PRO Attributes only."
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: controls/ooohboi-glider.php:761
|
852 |
msgid "Transition speed"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: controls/ooohboi-glider.php:777
|
856 |
msgid "Enable Touch Move"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: controls/ooohboi-glider.php:795
|
860 |
msgid "Enable Mousewheel"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: controls/ooohboi-glider.php:813
|
864 |
msgid "Deblur Slides"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: controls/ooohboi-glider.php:814
|
868 |
msgid "Round values of slides width and height to prevent blurry texts?"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: controls/ooohboi-glider.php:833
|
872 |
msgid "Autoplay"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: controls/ooohboi-glider.php:851
|
876 |
msgid "Autoplay delay"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: controls/ooohboi-glider.php:852
|
880 |
msgid "In miliseconds! 1000 is one second."
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: controls/ooohboi-glider.php:870
|
884 |
msgid "Control Glider externally!"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: controls/ooohboi-glider.php:872
|
888 |
msgid ""
|
889 |
"You can control this Glider instance from any link on this page by adding "
|
890 |
"the custom class name to the link. \n"
|
892 |
"end. For instance: glider-NNNNNNN-gotoslide-3"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: controls/ooohboi-glider.php:884
|
896 |
msgid "This Glider control class"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: controls/ooohboi-harakiri.php:92
|
900 |
+
msgid "Enable Harakiri?"
|
901 |
+
msgstr ""
|
902 |
+
|
903 |
+
#: controls/ooohboi-harakiri.php:106
|
904 |
msgid "Color - HOVER"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: controls/ooohboi-harakiri.php:121
|
908 |
msgid "Writing Mode"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: controls/ooohboi-harakiri.php:127
|
912 |
msgid "Vertical LR"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: controls/ooohboi-harakiri.php:128
|
916 |
msgid "Vertical RL"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: controls/ooohboi-harakiri.php:145
|
920 |
msgid "Flip"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: controls/ooohboi-harakiri.php:170 controls/ooohboi-interactor.php:206
|
924 |
+
#: controls/ooohboi-overlaiz.php:145 controls/ooohboi-overlay-underlay.php:279
|
925 |
+
#: controls/ooohboi-overlay-underlay.php:917 controls/ooohboi-pseudo.php:293
|
926 |
+
#: controls/ooohboi-pseudo.php:947
|
927 |
msgid "Height"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: controls/ooohboi-harakiri.php:174 controls/ooohboi-harakiri.php:295
|
931 |
+
#: controls/ooohboi-hover-animator.php:324
|
932 |
+
#: controls/ooohboi-hover-animator.php:521
|
933 |
+
#: controls/ooohboi-hover-animator.php:718
|
934 |
+
#: controls/ooohboi-hover-animator.php:968
|
935 |
+
#: controls/ooohboi-hover-animator.php:1134 controls/ooohboi-interactor.php:138
|
936 |
+
#: controls/ooohboi-interactor.php:253 controls/ooohboi-overlaiz.php:537
|
937 |
#: controls/ooohboi-overlaiz.php:567 controls/ooohboi-overlay-underlay.php:581
|
938 |
#: controls/ooohboi-overlay-underlay.php:611
|
939 |
#: controls/ooohboi-overlay-underlay.php:1213
|
940 |
#: controls/ooohboi-overlay-underlay.php:1242
|
941 |
+
#: controls/ooohboi-photomorph.php:220 controls/ooohboi-pseudo.php:609
|
942 |
+
#: controls/ooohboi-pseudo.php:639 controls/ooohboi-pseudo.php:1256
|
943 |
+
#: controls/ooohboi-pseudo.php:1285 controls/ooohboi-spacerat.php:224
|
944 |
#: controls/ooohboi-spacerat.php:253 controls/ooohboi-videomasq.php:76
|
945 |
#: controls/ooohboi-videomasq.php:104
|
946 |
msgid "Default"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: controls/ooohboi-harakiri.php:175
|
950 |
msgid "Inline"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: controls/ooohboi-harakiri.php:176 controls/ooohboi-overlaiz.php:571
|
954 |
#: controls/ooohboi-overlay-underlay.php:615
|
955 |
+
#: controls/ooohboi-overlay-underlay.php:1246 controls/ooohboi-pseudo.php:643
|
956 |
+
#: controls/ooohboi-pseudo.php:1289 controls/ooohboi-spacerat.php:257
|
957 |
#: controls/ooohboi-videomasq.php:108
|
958 |
msgid "Custom"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: controls/ooohboi-harakiri.php:196
|
962 |
msgid "NOTE: [%] unit works properly only if Column height is a fixed value!"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: controls/ooohboi-harakiri.php:248
|
966 |
+
msgid "Text Indent"
|
967 |
+
msgstr ""
|
968 |
+
|
969 |
+
#: controls/ooohboi-harakiri.php:286
|
970 |
msgid "Mix Blend Mode"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: controls/ooohboi-harakiri.php:288
|
974 |
#, php-format
|
975 |
msgid "Learn more about this CSS property: %sMozilla.org%s"
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: controls/ooohboi-harakiri.php:296
|
979 |
msgid "Multiply"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: controls/ooohboi-harakiri.php:297
|
983 |
msgid "Screen"
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: controls/ooohboi-harakiri.php:298 controls/ooohboi-overlay-underlay.php:120
|
987 |
msgid "Overlay"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: controls/ooohboi-harakiri.php:299
|
991 |
msgid "Darken"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: controls/ooohboi-harakiri.php:300
|
995 |
msgid "Lighten"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: controls/ooohboi-harakiri.php:301
|
999 |
msgid "Color-dodge"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: controls/ooohboi-harakiri.php:302
|
1003 |
msgid "Color-burn"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: controls/ooohboi-harakiri.php:303
|
1007 |
msgid "Hard-light"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: controls/ooohboi-harakiri.php:304
|
1011 |
msgid "Soft-light"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: controls/ooohboi-harakiri.php:305
|
1015 |
msgid "Difference"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: controls/ooohboi-harakiri.php:306
|
1019 |
msgid "Exclusion"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: controls/ooohboi-harakiri.php:307
|
1023 |
msgid "Hue"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: controls/ooohboi-harakiri.php:308
|
1027 |
msgid "Saturation"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: controls/ooohboi-harakiri.php:310
|
1031 |
msgid "Luminosity"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: controls/ooohboi-harakiri.php:347
|
1035 |
+
msgid "Clip Text"
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
#: controls/ooohboi-harakiri.php:349
|
1039 |
+
msgid ""
|
1040 |
+
"Add the background (image or gradient), select \"Clip to text\", and your "
|
1041 |
+
"Heading text color will change to either of these two."
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
#: controls/ooohboi-harakiri.php:373
|
1045 |
+
msgid "Background clip"
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: controls/ooohboi-harakiri.php:374
|
1049 |
+
msgid "Apply the background to text only"
|
1050 |
+
msgstr ""
|
1051 |
+
|
1052 |
+
#: controls/ooohboi-harakiri.php:379
|
1053 |
+
msgid "Clip to text"
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
#: controls/ooohboi-harakiri.php:394
|
1057 |
msgid "Cut off the bottom margin"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: controls/ooohboi-harakiri.php:395
|
1061 |
msgid "NOTE: Only the last child P(aragraph) shall be cut off!"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: controls/ooohboi-hover-animator.php:109
|
1065 |
msgid "Enable HOVERANIMATOR?"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: controls/ooohboi-hover-animator.php:124
|
1069 |
msgid ""
|
1070 |
"With Hoveranimator you can animate any widget in this container on mouse-"
|
1071 |
"over event. Animation panel is available under the Advanced tab, per widget!"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: controls/ooohboi-hover-animator.php:133 controls/ooohboi-icobox.php:75
|
1075 |
#: controls/ooohboi-imbox.php:76 controls/ooohboi-perspektive.php:256
|
1076 |
#: controls/ooohboi-teleporter.php:361
|
1077 |
msgid "Content Overflow"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: controls/ooohboi-hover-animator.php:134
|
1081 |
msgid ""
|
1082 |
"VISIBLE - makes visible all the elements outside this Column boundaries, "
|
1083 |
"HIDDEN - hides everything outside this Column boundaries."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: controls/ooohboi-hover-animator.php:139 controls/ooohboi-icobox.php:80
|
1087 |
#: controls/ooohboi-imbox.php:81 controls/ooohboi-perspektive.php:262
|
1088 |
#: controls/ooohboi-teleporter.php:367
|
1089 |
msgid "Visible"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: controls/ooohboi-hover-animator.php:140 controls/ooohboi-icobox.php:81
|
1093 |
#: controls/ooohboi-imbox.php:82 controls/ooohboi-perspektive.php:263
|
1094 |
#: controls/ooohboi-teleporter.php:368
|
1095 |
msgid "Hidden"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: controls/ooohboi-hover-animator.php:183
|
1099 |
msgid "Enable Hoveranimator"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
+
#: controls/ooohboi-hover-animator.php:184
|
1103 |
msgid ""
|
1104 |
"That will allow you to animate this widget on mouse-over event of the parent "
|
1105 |
"column."
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: controls/ooohboi-hover-animator.php:197 controls/ooohboi-interactor.php:209
|
1109 |
+
#: controls/ooohboi-oh-animator.php:773
|
1110 |
#: controls/ooohboi-overlay-underlay.php:138
|
1111 |
+
#: controls/ooohboi-overlay-underlay.php:778 controls/ooohboi-pseudo.php:147
|
1112 |
+
#: controls/ooohboi-pseudo.php:806
|
1113 |
msgid "Opacity"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: controls/ooohboi-hover-animator.php:213
|
1117 |
msgid "Opacity Normal"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: controls/ooohboi-hover-animator.php:238
|
1121 |
msgid "Opacity Hover"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: controls/ooohboi-hover-animator.php:260
|
1125 |
+
#: controls/ooohboi-hover-animator.php:457
|
1126 |
+
#: controls/ooohboi-hover-animator.php:654
|
1127 |
+
#: controls/ooohboi-hover-animator.php:904
|
1128 |
+
#: controls/ooohboi-hover-animator.php:1070 controls/ooohboi-interactor.php:223
|
1129 |
+
#: controls/ooohboi-oh-animator.php:1208
|
1130 |
msgid "Duration"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: controls/ooohboi-hover-animator.php:289
|
1134 |
+
#: controls/ooohboi-hover-animator.php:486
|
1135 |
+
#: controls/ooohboi-hover-animator.php:683
|
1136 |
+
#: controls/ooohboi-hover-animator.php:933
|
1137 |
+
#: controls/ooohboi-hover-animator.php:1099 controls/ooohboi-interactor.php:235
|
1138 |
+
#: controls/ooohboi-oh-animator.php:1224
|
1139 |
msgid "Delay"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: controls/ooohboi-hover-animator.php:318
|
1143 |
+
#: controls/ooohboi-hover-animator.php:515
|
1144 |
+
#: controls/ooohboi-hover-animator.php:712
|
1145 |
+
#: controls/ooohboi-hover-animator.php:962
|
1146 |
+
#: controls/ooohboi-hover-animator.php:1128 controls/ooohboi-interactor.php:247
|
1147 |
msgid "Easing"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: controls/ooohboi-hover-animator.php:325
|
1151 |
+
#: controls/ooohboi-hover-animator.php:522
|
1152 |
+
#: controls/ooohboi-hover-animator.php:719
|
1153 |
+
#: controls/ooohboi-hover-animator.php:969
|
1154 |
+
#: controls/ooohboi-hover-animator.php:1135 controls/ooohboi-interactor.php:254
|
1155 |
+
#: controls/ooohboi-photomorph.php:221
|
1156 |
msgid "Ease-in"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: controls/ooohboi-hover-animator.php:326
|
1160 |
+
#: controls/ooohboi-hover-animator.php:523
|
1161 |
+
#: controls/ooohboi-hover-animator.php:720
|
1162 |
+
#: controls/ooohboi-hover-animator.php:970
|
1163 |
+
#: controls/ooohboi-hover-animator.php:1136 controls/ooohboi-interactor.php:255
|
1164 |
+
#: controls/ooohboi-photomorph.php:222
|
1165 |
msgid "Ease-out"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: controls/ooohboi-hover-animator.php:327
|
1169 |
+
#: controls/ooohboi-hover-animator.php:524
|
1170 |
+
#: controls/ooohboi-hover-animator.php:721
|
1171 |
+
#: controls/ooohboi-hover-animator.php:971
|
1172 |
+
#: controls/ooohboi-hover-animator.php:1137 controls/ooohboi-interactor.php:256
|
1173 |
+
#: controls/ooohboi-photomorph.php:223
|
1174 |
msgid "Ease-in-out"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: controls/ooohboi-hover-animator.php:347
|
1178 |
#: controls/ooohboi-overlay-underlay.php:340
|
1179 |
+
#: controls/ooohboi-overlay-underlay.php:976 controls/ooohboi-pseudo.php:358
|
1180 |
+
#: controls/ooohboi-pseudo.php:1010
|
1181 |
msgid "Offset Top"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: controls/ooohboi-hover-animator.php:363
|
1185 |
msgid "Offset Top Normal"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: controls/ooohboi-hover-animator.php:395
|
1189 |
msgid "Calc Offset Top Normal"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: controls/ooohboi-hover-animator.php:396
|
1193 |
+
#: controls/ooohboi-hover-animator.php:443
|
1194 |
+
#: controls/ooohboi-hover-animator.php:593
|
1195 |
+
#: controls/ooohboi-hover-animator.php:640 controls/ooohboi-overlaiz.php:130
|
1196 |
#: controls/ooohboi-overlaiz.php:197 controls/ooohboi-overlaiz.php:264
|
1197 |
#: controls/ooohboi-overlaiz.php:331 controls/ooohboi-overlay-underlay.php:263
|
1198 |
#: controls/ooohboi-overlay-underlay.php:385
|
1199 |
#: controls/ooohboi-overlay-underlay.php:902
|
1200 |
#: controls/ooohboi-overlay-underlay.php:1020
|
1201 |
+
#: controls/ooohboi-overlay-underlay.php:1079 controls/ooohboi-pseudo.php:277
|
1202 |
+
#: controls/ooohboi-pseudo.php:407 controls/ooohboi-pseudo.php:932
|
1203 |
+
#: controls/ooohboi-pseudo.php:1058 controls/ooohboi-pseudo.php:1121
|
1204 |
msgid "Enter CSS calc value only! Like: 100% - 50px or 100% + 2em"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: controls/ooohboi-hover-animator.php:413
|
1208 |
msgid "Offset Top Hover"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: controls/ooohboi-hover-animator.php:442
|
1212 |
msgid "Calc Offset Top Hover"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: controls/ooohboi-hover-animator.php:544
|
1216 |
#: controls/ooohboi-overlay-underlay.php:401
|
1217 |
+
#: controls/ooohboi-overlay-underlay.php:1035 controls/ooohboi-pseudo.php:423
|
1218 |
+
#: controls/ooohboi-pseudo.php:1073
|
1219 |
msgid "Offset Left"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: controls/ooohboi-hover-animator.php:560
|
1223 |
msgid "Offset Left Normal"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: controls/ooohboi-hover-animator.php:592
|
1227 |
msgid "Calc Offset Left Normal"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: controls/ooohboi-hover-animator.php:610
|
1231 |
msgid "Offset Left Hover"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: controls/ooohboi-hover-animator.php:639
|
1235 |
msgid "Calc Offset Left Hover"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: controls/ooohboi-hover-animator.php:741
|
1239 |
msgid "Transforms"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: controls/ooohboi-hover-animator.php:756
|
1243 |
msgid "ScaleX Normal"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: controls/ooohboi-hover-animator.php:782
|
1247 |
msgid "ScaleX Hover"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: controls/ooohboi-hover-animator.php:805
|
1251 |
msgid "ScaleY Normal"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: controls/ooohboi-hover-animator.php:831
|
1255 |
msgid "ScaleY Hover"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: controls/ooohboi-hover-animator.php:854
|
1259 |
msgid "Rotation Normal"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: controls/ooohboi-hover-animator.php:880
|
1263 |
msgid "Rotation Hover"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: controls/ooohboi-hover-animator.php:991 controls/ooohboi-shadough.php:123
|
1267 |
#: controls/ooohboi-spacerat.php:474
|
1268 |
msgid "Blur"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: controls/ooohboi-hover-animator.php:1007
|
1272 |
msgid "Blur Normal"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: controls/ooohboi-hover-animator.php:1040
|
1276 |
msgid "Blur Hover"
|
1277 |
msgstr ""
|
1278 |
|
1286 |
msgstr ""
|
1287 |
|
1288 |
#: controls/ooohboi-icobox.php:108 controls/ooohboi-icobox.php:243
|
1289 |
+
#: controls/ooohboi-imbox.php:131 controls/ooohboi-imbox.php:427
|
1290 |
msgid "Overrides"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: controls/ooohboi-icobox.php:109 controls/ooohboi-imbox.php:132
|
1294 |
msgid "Allow more basic controls?"
|
1295 |
msgstr ""
|
1296 |
|
1302 |
msgid "Icon Margin"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: controls/ooohboi-icobox.php:229 controls/ooohboi-imbox.php:327
|
1306 |
msgid "Box Padding"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: controls/ooohboi-icobox.php:244 controls/ooohboi-imbox.php:428
|
1310 |
msgid "Allow separate controls for Title and Description?"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: controls/ooohboi-icobox.php:258 controls/ooohboi-imbox.php:441
|
1314 |
msgid "Title Padding"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: controls/ooohboi-icobox.php:274 controls/ooohboi-imbox.php:457
|
1318 |
msgid "Title Margin"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: controls/ooohboi-icobox.php:289 controls/ooohboi-imbox.php:473
|
1322 |
msgid "Description Padding"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: controls/ooohboi-icobox.php:305 controls/ooohboi-imbox.php:489
|
1326 |
msgid "Description Margin"
|
1327 |
msgstr ""
|
1328 |
|
1335 |
msgid "The thumbnail sits atop the title on mobiles. Prevent that, huh?"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: controls/ooohboi-imbox.php:109
|
1339 |
+
msgid "Content position"
|
1340 |
+
msgstr ""
|
1341 |
+
|
1342 |
+
#: controls/ooohboi-imbox.php:110
|
1343 |
+
msgid "Where to align the content to?"
|
1344 |
+
msgstr ""
|
1345 |
+
|
1346 |
+
#: controls/ooohboi-imbox.php:145
|
1347 |
msgid "Image Size"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: controls/ooohboi-imbox.php:182
|
1351 |
msgid "Image Padding"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: controls/ooohboi-imbox.php:198
|
1355 |
msgid "Image Margin"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: controls/ooohboi-imbox.php:213
|
1359 |
msgid "Enable full-height?"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: controls/ooohboi-imbox.php:214
|
1363 |
msgid ""
|
1364 |
"That will make the photo full-height. Makes sense only if the photo is "
|
1365 |
"placed left or the right-hand side!"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: controls/ooohboi-imbox.php:267
|
1369 |
msgid "Image clip path"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: controls/ooohboi-imbox.php:269 controls/ooohboi-oh-animator.php:933
|
1373 |
#: controls/ooohboi-overlaiz.php:470 controls/ooohboi-overlay-underlay.php:716
|
1374 |
#: controls/ooohboi-overlay-underlay.php:1344
|
1375 |
#: controls/ooohboi-photomorph.php:120 controls/ooohboi-photomorph.php:150
|
1376 |
+
#: controls/ooohboi-pseudo.php:744 controls/ooohboi-pseudo.php:1387
|
1377 |
#: controls/ooohboi-spacerat.php:539
|
1378 |
#, php-format
|
1379 |
msgid ""
|
1380 |
"Enter the full clip-path property! See the copy-paste examples at %sClippy%s"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: controls/ooohboi-imbox.php:340
|
1384 |
msgid "Box Margin"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: controls/ooohboi-imbox.php:413
|
1388 |
msgid "Box z-index"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: controls/ooohboi-interactor.php:100
|
1392 |
+
msgid "Enable Interactor?"
|
1393 |
+
msgstr ""
|
1394 |
+
|
1395 |
+
#: controls/ooohboi-interactor.php:114
|
1396 |
+
msgid "Interaction Type"
|
1397 |
+
msgstr ""
|
1398 |
+
|
1399 |
+
#: controls/ooohboi-interactor.php:115
|
1400 |
+
msgid "It is either the onClick or onHover the selected element/widget"
|
1401 |
+
msgstr ""
|
1402 |
+
|
1403 |
+
#: controls/ooohboi-interactor.php:119
|
1404 |
+
msgid "Mouse Click"
|
1405 |
+
msgstr ""
|
1406 |
+
|
1407 |
+
#: controls/ooohboi-interactor.php:120
|
1408 |
+
msgid "Mouse Over"
|
1409 |
+
msgstr ""
|
1410 |
+
|
1411 |
+
#: controls/ooohboi-interactor.php:132
|
1412 |
+
msgid "Pointer Type"
|
1413 |
+
msgstr ""
|
1414 |
+
|
1415 |
+
#: controls/ooohboi-interactor.php:133
|
1416 |
+
msgid "Force pointer type on the trigger if needed"
|
1417 |
+
msgstr ""
|
1418 |
+
|
1419 |
+
#: controls/ooohboi-interactor.php:139
|
1420 |
+
msgid "Pointer"
|
1421 |
+
msgstr ""
|
1422 |
+
|
1423 |
+
#: controls/ooohboi-interactor.php:154
|
1424 |
+
msgid "Interactive Properties"
|
1425 |
+
msgstr ""
|
1426 |
+
|
1427 |
+
#: controls/ooohboi-interactor.php:156 controls/ooohboi-oh-animator.php:750
|
1428 |
+
msgid "Add as many as you like but avoid redundancy!"
|
1429 |
+
msgstr ""
|
1430 |
+
|
1431 |
+
#: controls/ooohboi-interactor.php:171
|
1432 |
+
msgid "Interaction Target"
|
1433 |
+
msgstr ""
|
1434 |
+
|
1435 |
+
#: controls/ooohboi-interactor.php:172
|
1436 |
+
msgid "Self or any other element on page"
|
1437 |
+
msgstr ""
|
1438 |
+
|
1439 |
+
#: controls/ooohboi-interactor.php:176
|
1440 |
+
msgid "Self"
|
1441 |
+
msgstr ""
|
1442 |
+
|
1443 |
+
#: controls/ooohboi-interactor.php:177
|
1444 |
+
msgid "Other element"
|
1445 |
+
msgstr ""
|
1446 |
+
|
1447 |
+
#: controls/ooohboi-interactor.php:186
|
1448 |
+
msgid "Element class or ID"
|
1449 |
+
msgstr ""
|
1450 |
+
|
1451 |
+
#: controls/ooohboi-interactor.php:187
|
1452 |
+
msgid ""
|
1453 |
+
"Enter the target element class or ID. IT MUST INCLUDE THE PREFIX! For "
|
1454 |
+
"instance; \".some-class-name\" (for the custom class name) or \"#some-id"
|
1455 |
+
"\" (for the element ID)"
|
1456 |
+
msgstr ""
|
1457 |
+
|
1458 |
+
#: controls/ooohboi-interactor.php:199 controls/ooohboi-oh-animator.php:765
|
1459 |
+
msgid "Animate"
|
1460 |
+
msgstr ""
|
1461 |
+
|
1462 |
+
#: controls/ooohboi-interactor.php:207
|
1463 |
+
msgid "Translate X"
|
1464 |
+
msgstr ""
|
1465 |
+
|
1466 |
+
#: controls/ooohboi-interactor.php:208
|
1467 |
+
msgid "Translate Y"
|
1468 |
+
msgstr ""
|
1469 |
+
|
1470 |
+
#: controls/ooohboi-interactor.php:212 controls/ooohboi-oh-animator.php:776
|
1471 |
+
msgid "Scale"
|
1472 |
+
msgstr ""
|
1473 |
+
|
1474 |
+
#: controls/ooohboi-interactor.php:213 controls/ooohboi-oh-animator.php:777
|
1475 |
+
#: controls/ooohboi-overlay-underlay.php:463
|
1476 |
+
#: controls/ooohboi-overlay-underlay.php:1095 controls/ooohboi-pseudo.php:489
|
1477 |
+
#: controls/ooohboi-pseudo.php:1137
|
1478 |
+
msgid "Rotate"
|
1479 |
+
msgstr ""
|
1480 |
+
|
1481 |
+
#: controls/ooohboi-interactor.php:214 controls/ooohboi-oh-animator.php:778
|
1482 |
+
msgid "SkewX"
|
1483 |
+
msgstr ""
|
1484 |
+
|
1485 |
+
#: controls/ooohboi-interactor.php:215 controls/ooohboi-oh-animator.php:779
|
1486 |
+
msgid "SkewY"
|
1487 |
+
msgstr ""
|
1488 |
+
|
1489 |
+
#: controls/ooohboi-interactor.php:224 controls/ooohboi-oh-animator.php:1209
|
1490 |
+
msgid "Animation duration in seconds. 0.4 is deafult."
|
1491 |
+
msgstr ""
|
1492 |
+
|
1493 |
+
#: controls/ooohboi-interactor.php:236 controls/ooohboi-oh-animator.php:1225
|
1494 |
+
msgid "Seconds to pause before the animation starts."
|
1495 |
+
msgstr ""
|
1496 |
+
|
1497 |
+
#: controls/ooohboi-interactor.php:264 controls/ooohboi-interactor.php:294
|
1498 |
+
#: controls/ooohboi-interactor.php:324 controls/ooohboi-interactor.php:350
|
1499 |
+
#: controls/ooohboi-interactor.php:376 controls/ooohboi-interactor.php:390
|
1500 |
+
#: controls/ooohboi-interactor.php:401 controls/ooohboi-interactor.php:412
|
1501 |
+
#: controls/ooohboi-interactor.php:425 controls/ooohboi-interactor.php:439
|
1502 |
+
#: controls/ooohboi-interactor.php:453 controls/ooohboi-oh-animator.php:788
|
1503 |
+
#: controls/ooohboi-oh-animator.php:814 controls/ooohboi-oh-animator.php:840
|
1504 |
+
#: controls/ooohboi-oh-animator.php:854 controls/ooohboi-oh-animator.php:865
|
1505 |
+
#: controls/ooohboi-oh-animator.php:876 controls/ooohboi-oh-animator.php:889
|
1506 |
+
#: controls/ooohboi-oh-animator.php:903 controls/ooohboi-oh-animator.php:917
|
1507 |
+
#: controls/ooohboi-oh-animator.php:931
|
1508 |
+
msgid "From"
|
1509 |
+
msgstr ""
|
1510 |
+
|
1511 |
+
#: controls/ooohboi-interactor.php:468 controls/ooohboi-interactor.php:498
|
1512 |
+
#: controls/ooohboi-interactor.php:528 controls/ooohboi-interactor.php:554
|
1513 |
+
#: controls/ooohboi-interactor.php:580 controls/ooohboi-interactor.php:594
|
1514 |
+
#: controls/ooohboi-interactor.php:605 controls/ooohboi-interactor.php:616
|
1515 |
+
#: controls/ooohboi-interactor.php:653 controls/ooohboi-interactor.php:667
|
1516 |
+
#: controls/ooohboi-interactor.php:681 controls/ooohboi-oh-animator.php:950
|
1517 |
+
#: controls/ooohboi-oh-animator.php:976 controls/ooohboi-oh-animator.php:1002
|
1518 |
+
#: controls/ooohboi-oh-animator.php:1016 controls/ooohboi-oh-animator.php:1027
|
1519 |
+
#: controls/ooohboi-oh-animator.php:1038 controls/ooohboi-oh-animator.php:1075
|
1520 |
+
#: controls/ooohboi-oh-animator.php:1089 controls/ooohboi-oh-animator.php:1103
|
1521 |
+
#: controls/ooohboi-oh-animator.php:1117
|
1522 |
+
msgid "To"
|
1523 |
+
msgstr ""
|
1524 |
+
|
1525 |
+
#: controls/ooohboi-interactor.php:629 controls/ooohboi-oh-animator.php:1051
|
1526 |
+
msgid "Transform Origin"
|
1527 |
+
msgstr ""
|
1528 |
+
|
1529 |
+
#: controls/ooohboi-interactor.php:635 controls/ooohboi-oh-animator.php:1057
|
1530 |
+
msgid "Left Top"
|
1531 |
+
msgstr ""
|
1532 |
+
|
1533 |
+
#: controls/ooohboi-interactor.php:636 controls/ooohboi-oh-animator.php:1058
|
1534 |
+
msgid "Left Center"
|
1535 |
+
msgstr ""
|
1536 |
+
|
1537 |
+
#: controls/ooohboi-interactor.php:637 controls/ooohboi-oh-animator.php:1059
|
1538 |
+
msgid "Left Bottom"
|
1539 |
+
msgstr ""
|
1540 |
+
|
1541 |
+
#: controls/ooohboi-interactor.php:638 controls/ooohboi-oh-animator.php:1060
|
1542 |
+
msgid "Center Top"
|
1543 |
+
msgstr ""
|
1544 |
+
|
1545 |
+
#: controls/ooohboi-interactor.php:639 controls/ooohboi-oh-animator.php:1061
|
1546 |
+
#: controls/ooohboi-overlaiz.php:538 controls/ooohboi-overlay-underlay.php:582
|
1547 |
+
#: controls/ooohboi-overlay-underlay.php:1214 controls/ooohboi-pseudo.php:610
|
1548 |
+
#: controls/ooohboi-pseudo.php:1257 controls/ooohboi-spacerat.php:225
|
1549 |
+
#: controls/ooohboi-videomasq.php:77
|
1550 |
+
msgid "Center Center"
|
1551 |
+
msgstr ""
|
1552 |
+
|
1553 |
+
#: controls/ooohboi-interactor.php:640 controls/ooohboi-oh-animator.php:1062
|
1554 |
+
msgid "Center Bottom"
|
1555 |
+
msgstr ""
|
1556 |
+
|
1557 |
+
#: controls/ooohboi-interactor.php:641 controls/ooohboi-oh-animator.php:1063
|
1558 |
+
msgid "Right Top"
|
1559 |
+
msgstr ""
|
1560 |
+
|
1561 |
+
#: controls/ooohboi-interactor.php:642 controls/ooohboi-oh-animator.php:1064
|
1562 |
+
msgid "Right Center"
|
1563 |
+
msgstr ""
|
1564 |
+
|
1565 |
+
#: controls/ooohboi-interactor.php:643 controls/ooohboi-oh-animator.php:1065
|
1566 |
+
msgid "Right Bottom"
|
1567 |
+
msgstr ""
|
1568 |
+
|
1569 |
#: controls/ooohboi-kontrolz.php:183
|
1570 |
msgid "NOTE: It works only with the pagination style set to Dots!"
|
1571 |
msgstr ""
|
1586 |
"pipe character, i.e. data-scroll-offset%s100,50em"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: controls/ooohboi-oh-animator.php:92
|
1590 |
msgid "Enable ANIMATOR?"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: controls/ooohboi-oh-animator.php:109
|
1594 |
#, php-format
|
1595 |
msgid ""
|
1596 |
"If you are not familiar with the %s, %s and scroll triggered animations, "
|
1597 |
"it's good idea to learn some basics."
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: controls/ooohboi-oh-animator.php:123
|
1601 |
msgid "Animate first child?"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: controls/ooohboi-oh-animator.php:124
|
1605 |
msgid ""
|
1606 |
"By default \".elementor-widget-container\" will be animated. You can animate "
|
1607 |
"its first child element instead."
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: controls/ooohboi-oh-animator.php:142
|
1611 |
msgid "ScrollTrigger Settings"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: controls/ooohboi-oh-animator.php:144
|
1615 |
msgid "This is where you set you scroll triggered animation."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: controls/ooohboi-oh-animator.php:155
|
1619 |
msgid "Show Markers?"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: controls/ooohboi-oh-animator.php:156
|
1623 |
msgid "See where the target element/widget start/end/trigger points are"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: controls/ooohboi-oh-animator.php:172
|
1627 |
msgid "Scrub?"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: controls/ooohboi-oh-animator.php:173
|
1631 |
msgid ""
|
1632 |
"Controll the animation progress with the scrollbar so it acts like a scrubber"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: controls/ooohboi-oh-animator.php:189
|
1636 |
msgid "Scrub smooth"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#: controls/ooohboi-oh-animator.php:190
|
1640 |
msgid "Adds smoothing to scrub. Best between 1 and 5 (extreme already!)"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: controls/ooohboi-oh-animator.php:207
|
1644 |
msgid "Invalidate on refresh?"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
+
#: controls/ooohboi-oh-animator.php:208
|
1648 |
msgid "This flushes out any internally-recorded starting values."
|
1649 |
msgstr ""
|
1650 |
|
1651 |
+
#: controls/ooohboi-oh-animator.php:224
|
1652 |
msgid "Immediate render"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
+
#: controls/ooohboi-oh-animator.php:226
|
1656 |
#, php-format
|
1657 |
msgid "Please take a quick guide %s"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
+
#: controls/ooohboi-oh-animator.php:244
|
1661 |
msgid "Pin?"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: controls/ooohboi-oh-animator.php:245
|
1665 |
msgid ""
|
1666 |
"Warning: don't animate the pinned element itself due to the unpredicted "
|
1667 |
"results! Rather animate elements inside the pinned element."
|
1668 |
msgstr ""
|
1669 |
|
1670 |
+
#: controls/ooohboi-oh-animator.php:261
|
1671 |
msgid "Anticipate Pin"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
+
#: controls/ooohboi-oh-animator.php:278
|
1675 |
msgid "Prevent overlaps"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
#: controls/ooohboi-oh-animator.php:295
|
1679 |
msgid "Pin spacing"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: controls/ooohboi-oh-animator.php:300
|
1683 |
msgid "Yes (true)"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: controls/ooohboi-oh-animator.php:301
|
1687 |
msgid "No (false)"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: controls/ooohboi-oh-animator.php:315
|
1691 |
msgid "ScrollTrigger Start and End"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: controls/ooohboi-oh-animator.php:331
|
1695 |
msgid "ScrollTrigger Start"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: controls/ooohboi-oh-animator.php:333
|
1699 |
msgid ""
|
1700 |
"Describes a place on the trigger and a place on the scroller that must meet "
|
1701 |
"in order to start the ScrollTrigger"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: controls/ooohboi-oh-animator.php:346
|
1705 |
msgid "Start - Trigger Element"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: controls/ooohboi-oh-animator.php:352 controls/ooohboi-oh-animator.php:402
|
1709 |
+
#: controls/ooohboi-oh-animator.php:464 controls/ooohboi-oh-animator.php:513
|
1710 |
msgid "Top"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
+
#: controls/ooohboi-oh-animator.php:354 controls/ooohboi-oh-animator.php:404
|
1714 |
+
#: controls/ooohboi-oh-animator.php:466 controls/ooohboi-oh-animator.php:515
|
1715 |
msgid "Bottom"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: controls/ooohboi-oh-animator.php:355
|
1719 |
msgid "Top + Self height"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: controls/ooohboi-oh-animator.php:367
|
1723 |
msgid "Start - Trigger Element Offset"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
+
#: controls/ooohboi-oh-animator.php:396
|
1727 |
msgid "Start - Viewport"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: controls/ooohboi-oh-animator.php:416
|
1731 |
msgid "Start - Viewport Offset"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: controls/ooohboi-oh-animator.php:445
|
1735 |
msgid "ScrollTrigger End"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
+
#: controls/ooohboi-oh-animator.php:447
|
1739 |
msgid ""
|
1740 |
"Describes a place on the endTrigger (or trigger if one isn't defined) and a "
|
1741 |
"place on the scroller that must meet in order to end the scroll triggered "
|
1742 |
"animation"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
+
#: controls/ooohboi-oh-animator.php:458
|
1746 |
msgid "End - Trigger Element"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
+
#: controls/ooohboi-oh-animator.php:478
|
1750 |
msgid "End - Trigger Element Offset"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
+
#: controls/ooohboi-oh-animator.php:507
|
1754 |
msgid "End - Viewport"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
+
#: controls/ooohboi-oh-animator.php:527
|
1758 |
msgid "End - Viewport Offset"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
+
#: controls/ooohboi-oh-animator.php:556
|
1762 |
msgid "End trigger selector"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
+
#: controls/ooohboi-oh-animator.php:557
|
1766 |
msgid ""
|
1767 |
"Selector (element) whose position in the normal document flow is used for "
|
1768 |
"calculating where the ScrollTrigger ends. For instance: \".element-class-name"
|
1769 |
"\" or \"#element-unique-id\""
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: controls/ooohboi-oh-animator.php:573
|
1773 |
msgid "Toggle Actions"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: controls/ooohboi-oh-animator.php:590
|
1777 |
msgid ""
|
1778 |
"Determines how the linked animation is controlled at the 4 distinct toggle "
|
1779 |
"places - onEnter, onLeave, onEnterBack, and onLeaveBack, in that order. <br/"
|
1785 |
"the beginning) when scrolling all the way back past the beginning."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: controls/ooohboi-oh-animator.php:602
|
1789 |
msgid "Action onEnter"
|
1790 |
msgstr ""
|
1791 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1792 |
#: controls/ooohboi-oh-animator.php:609 controls/ooohboi-oh-animator.php:634
|
1793 |
#: controls/ooohboi-oh-animator.php:659 controls/ooohboi-oh-animator.php:684
|
1794 |
+
msgid "Play"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
#: controls/ooohboi-oh-animator.php:610 controls/ooohboi-oh-animator.php:635
|
1798 |
#: controls/ooohboi-oh-animator.php:660 controls/ooohboi-oh-animator.php:685
|
1799 |
+
msgid "Pause"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
#: controls/ooohboi-oh-animator.php:611 controls/ooohboi-oh-animator.php:636
|
1803 |
#: controls/ooohboi-oh-animator.php:661 controls/ooohboi-oh-animator.php:686
|
1804 |
+
msgid "Resume"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
#: controls/ooohboi-oh-animator.php:612 controls/ooohboi-oh-animator.php:637
|
1808 |
#: controls/ooohboi-oh-animator.php:662 controls/ooohboi-oh-animator.php:687
|
1809 |
+
msgid "Reset"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
#: controls/ooohboi-oh-animator.php:613 controls/ooohboi-oh-animator.php:638
|
1813 |
#: controls/ooohboi-oh-animator.php:663 controls/ooohboi-oh-animator.php:688
|
1814 |
+
msgid "Restart"
|
1815 |
+
msgstr ""
|
1816 |
+
|
1817 |
+
#: controls/ooohboi-oh-animator.php:614 controls/ooohboi-oh-animator.php:639
|
1818 |
+
#: controls/ooohboi-oh-animator.php:664 controls/ooohboi-oh-animator.php:689
|
1819 |
+
msgid "Complete"
|
1820 |
+
msgstr ""
|
1821 |
+
|
1822 |
+
#: controls/ooohboi-oh-animator.php:615 controls/ooohboi-oh-animator.php:640
|
1823 |
+
#: controls/ooohboi-oh-animator.php:665 controls/ooohboi-oh-animator.php:690
|
1824 |
msgid "Reverse"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: controls/ooohboi-oh-animator.php:627
|
1828 |
msgid "Action onLeave"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: controls/ooohboi-oh-animator.php:652
|
1832 |
msgid "Action onEnterBack"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: controls/ooohboi-oh-animator.php:677
|
1836 |
msgid "Action onLeaveBack"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: controls/ooohboi-oh-animator.php:705
|
1840 |
msgid "Toggle Class"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: controls/ooohboi-oh-animator.php:722
|
1844 |
msgid ""
|
1845 |
"Adds/removes a class to an element (or multiple elements) when the "
|
1846 |
"ScrollTrigger toggles active/inactive. <br/>\n"
|
1848 |
"trigger element - the String! The Object is currently not supported!"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
+
#: controls/ooohboi-oh-animator.php:731
|
1852 |
msgid "Toggle class name"
|
1853 |
msgstr ""
|
1854 |
|
|
|
|
|
|
|
|
|
1855 |
#: controls/ooohboi-oh-animator.php:748
|
1856 |
+
msgid "Animatable Properties"
|
|
|
|
|
|
|
|
|
1857 |
msgstr ""
|
1858 |
|
1859 |
+
#: controls/ooohboi-oh-animator.php:771
|
1860 |
msgid "X"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
+
#: controls/ooohboi-oh-animator.php:772
|
1864 |
msgid "Y"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
+
#: controls/ooohboi-oh-animator.php:780 controls/ooohboi-overlaiz.php:453
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1868 |
#: controls/ooohboi-overlay-underlay.php:714
|
1869 |
+
#: controls/ooohboi-overlay-underlay.php:1342 controls/ooohboi-pseudo.php:742
|
1870 |
+
#: controls/ooohboi-pseudo.php:1385 controls/ooohboi-spacerat.php:537
|
1871 |
msgid "Clip path"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: controls/ooohboi-oh-animator.php:1153
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1875 |
msgid "Easing and Timing"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: controls/ooohboi-oh-animator.php:1155
|
1879 |
msgid "These will make any animation look more natural"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: controls/ooohboi-oh-animator.php:1167
|
1883 |
msgid "Ease"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
+
#: controls/ooohboi-oh-animator.php:1168
|
1887 |
msgid "It will automatically become NONE with the Scrub option enabled!"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: controls/ooohboi-oh-animator.php:1174
|
1891 |
msgid "Power1.in"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
+
#: controls/ooohboi-oh-animator.php:1175
|
1895 |
msgid "Power1.out"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
+
#: controls/ooohboi-oh-animator.php:1176
|
1899 |
msgid "Power1.inOut"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
+
#: controls/ooohboi-oh-animator.php:1177
|
1903 |
msgid "Power2.in"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
+
#: controls/ooohboi-oh-animator.php:1178
|
1907 |
msgid "Power2.out"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
+
#: controls/ooohboi-oh-animator.php:1179
|
1911 |
msgid "Power2.inOut"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
+
#: controls/ooohboi-oh-animator.php:1180
|
1915 |
msgid "Power3.in"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
+
#: controls/ooohboi-oh-animator.php:1181
|
1919 |
msgid "Power3.out"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
+
#: controls/ooohboi-oh-animator.php:1182
|
1923 |
msgid "Power3.inOut"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
+
#: controls/ooohboi-oh-animator.php:1183
|
1927 |
msgid "Power4.in"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
+
#: controls/ooohboi-oh-animator.php:1184
|
1931 |
msgid "Power4.out"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
+
#: controls/ooohboi-oh-animator.php:1185
|
1935 |
msgid "Power4.inOut"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
+
#: controls/ooohboi-oh-animator.php:1186
|
1939 |
msgid "Circ.in"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
+
#: controls/ooohboi-oh-animator.php:1187
|
1943 |
msgid "Circ.out"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
+
#: controls/ooohboi-oh-animator.php:1188
|
1947 |
msgid "Circ.inOut"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
+
#: controls/ooohboi-oh-animator.php:1189
|
1951 |
msgid "Expo.in"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
+
#: controls/ooohboi-oh-animator.php:1190
|
1955 |
msgid "Expo.out"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
+
#: controls/ooohboi-oh-animator.php:1191
|
1959 |
msgid "Expo.inOut"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
+
#: controls/ooohboi-oh-animator.php:1192
|
1963 |
msgid "Sine.in"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
+
#: controls/ooohboi-oh-animator.php:1193
|
1967 |
msgid "Sine.out"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
+
#: controls/ooohboi-oh-animator.php:1194
|
1971 |
msgid "Sine.inOut"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
+
#: controls/ooohboi-oh-animator.php:1195
|
1975 |
msgid "Elastic"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
+
#: controls/ooohboi-oh-animator.php:1196
|
1979 |
msgid "Back"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: controls/ooohboi-oh-animator.php:1197
|
1983 |
msgid "Bounce"
|
1984 |
msgstr ""
|
1985 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1986 |
#: controls/ooohboi-overlaiz.php:61
|
1987 |
msgid "Enable Overlaiz?"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
#: controls/ooohboi-overlaiz.php:129 controls/ooohboi-overlay-underlay.php:262
|
1991 |
+
#: controls/ooohboi-overlay-underlay.php:901 controls/ooohboi-pseudo.php:276
|
1992 |
+
#: controls/ooohboi-pseudo.php:931
|
1993 |
msgid "Calc Width"
|
1994 |
msgstr ""
|
1995 |
|
1996 |
#: controls/ooohboi-overlaiz.php:196 controls/ooohboi-overlay-underlay.php:323
|
1997 |
+
#: controls/ooohboi-overlay-underlay.php:960 controls/ooohboi-pseudo.php:341
|
1998 |
+
#: controls/ooohboi-pseudo.php:994
|
1999 |
msgid "Calc Height"
|
2000 |
msgstr ""
|
2001 |
|
2031 |
msgstr ""
|
2032 |
|
2033 |
#: controls/ooohboi-overlaiz.php:513 controls/ooohboi-overlay-underlay.php:557
|
2034 |
+
#: controls/ooohboi-overlay-underlay.php:1189 controls/ooohboi-pseudo.php:585
|
2035 |
+
#: controls/ooohboi-pseudo.php:1232 controls/ooohboi-spacerat.php:201
|
2036 |
msgid "Choose Image Mask"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
#: controls/ooohboi-overlaiz.php:514 controls/ooohboi-overlay-underlay.php:558
|
2040 |
+
#: controls/ooohboi-overlay-underlay.php:1190 controls/ooohboi-pseudo.php:586
|
2041 |
+
#: controls/ooohboi-pseudo.php:1233 controls/ooohboi-spacerat.php:202
|
2042 |
#, php-format
|
2043 |
msgid ""
|
2044 |
"NOTE: Image Mask should be black-and-transparent SVG file! Anything that’s "
|
2047 |
msgstr ""
|
2048 |
|
2049 |
#: controls/ooohboi-overlaiz.php:533 controls/ooohboi-overlay-underlay.php:577
|
2050 |
+
#: controls/ooohboi-overlay-underlay.php:1209 controls/ooohboi-pseudo.php:605
|
2051 |
+
#: controls/ooohboi-pseudo.php:1252 controls/ooohboi-spacerat.php:220
|
2052 |
#: controls/ooohboi-videomasq.php:72
|
2053 |
msgid "Mask position"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
#: controls/ooohboi-overlaiz.php:539 controls/ooohboi-overlay-underlay.php:583
|
2057 |
+
#: controls/ooohboi-overlay-underlay.php:1215 controls/ooohboi-pseudo.php:611
|
2058 |
+
#: controls/ooohboi-pseudo.php:1258 controls/ooohboi-spacerat.php:226
|
2059 |
#: controls/ooohboi-videomasq.php:78
|
2060 |
msgid "Center Left"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
#: controls/ooohboi-overlaiz.php:540 controls/ooohboi-overlay-underlay.php:584
|
2064 |
+
#: controls/ooohboi-overlay-underlay.php:1216 controls/ooohboi-pseudo.php:612
|
2065 |
+
#: controls/ooohboi-pseudo.php:1259 controls/ooohboi-spacerat.php:227
|
2066 |
#: controls/ooohboi-videomasq.php:79
|
2067 |
msgid "Center Right"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
#: controls/ooohboi-overlaiz.php:541 controls/ooohboi-overlay-underlay.php:585
|
2071 |
+
#: controls/ooohboi-overlay-underlay.php:1217 controls/ooohboi-pseudo.php:613
|
2072 |
+
#: controls/ooohboi-pseudo.php:1260 controls/ooohboi-spacerat.php:228
|
2073 |
#: controls/ooohboi-videomasq.php:80
|
2074 |
msgid "Top Center"
|
2075 |
msgstr ""
|
2076 |
|
2077 |
#: controls/ooohboi-overlaiz.php:542 controls/ooohboi-overlay-underlay.php:586
|
2078 |
+
#: controls/ooohboi-overlay-underlay.php:1218 controls/ooohboi-pseudo.php:614
|
2079 |
+
#: controls/ooohboi-pseudo.php:1261 controls/ooohboi-spacerat.php:229
|
2080 |
#: controls/ooohboi-videomasq.php:81
|
2081 |
msgid "Top Left"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
#: controls/ooohboi-overlaiz.php:543 controls/ooohboi-overlay-underlay.php:587
|
2085 |
+
#: controls/ooohboi-overlay-underlay.php:1219 controls/ooohboi-pseudo.php:615
|
2086 |
+
#: controls/ooohboi-pseudo.php:1262 controls/ooohboi-spacerat.php:230
|
2087 |
#: controls/ooohboi-videomasq.php:82
|
2088 |
msgid "Top Right"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
#: controls/ooohboi-overlaiz.php:544 controls/ooohboi-overlay-underlay.php:588
|
2092 |
+
#: controls/ooohboi-overlay-underlay.php:1220 controls/ooohboi-pseudo.php:616
|
2093 |
+
#: controls/ooohboi-pseudo.php:1263 controls/ooohboi-spacerat.php:231
|
2094 |
#: controls/ooohboi-videomasq.php:83
|
2095 |
msgid "Bottom Center"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
#: controls/ooohboi-overlaiz.php:545 controls/ooohboi-overlay-underlay.php:589
|
2099 |
+
#: controls/ooohboi-overlay-underlay.php:1221 controls/ooohboi-pseudo.php:617
|
2100 |
+
#: controls/ooohboi-pseudo.php:1264 controls/ooohboi-spacerat.php:232
|
2101 |
#: controls/ooohboi-videomasq.php:84
|
2102 |
msgid "Bottom Left"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
#: controls/ooohboi-overlaiz.php:546 controls/ooohboi-overlay-underlay.php:590
|
2106 |
+
#: controls/ooohboi-overlay-underlay.php:1222 controls/ooohboi-pseudo.php:618
|
2107 |
+
#: controls/ooohboi-pseudo.php:1265 controls/ooohboi-spacerat.php:233
|
2108 |
#: controls/ooohboi-videomasq.php:85
|
2109 |
msgid "Bottom Right"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
#: controls/ooohboi-overlaiz.php:563 controls/ooohboi-overlay-underlay.php:607
|
2113 |
+
#: controls/ooohboi-overlay-underlay.php:1238 controls/ooohboi-pseudo.php:635
|
2114 |
+
#: controls/ooohboi-pseudo.php:1281 controls/ooohboi-spacerat.php:249
|
2115 |
#: controls/ooohboi-videomasq.php:100
|
2116 |
msgid "Mask size"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
#: controls/ooohboi-overlaiz.php:569 controls/ooohboi-overlay-underlay.php:613
|
2120 |
+
#: controls/ooohboi-overlay-underlay.php:1244 controls/ooohboi-pseudo.php:641
|
2121 |
+
#: controls/ooohboi-pseudo.php:1287 controls/ooohboi-spacerat.php:255
|
2122 |
#: controls/ooohboi-videomasq.php:106
|
2123 |
msgid "Cover"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
#: controls/ooohboi-overlaiz.php:570 controls/ooohboi-overlay-underlay.php:614
|
2127 |
+
#: controls/ooohboi-overlay-underlay.php:1245 controls/ooohboi-pseudo.php:642
|
2128 |
+
#: controls/ooohboi-pseudo.php:1288 controls/ooohboi-spacerat.php:256
|
2129 |
#: controls/ooohboi-videomasq.php:107
|
2130 |
msgid "Contain"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
#: controls/ooohboi-overlaiz.php:645 controls/ooohboi-overlay-underlay.php:687
|
2134 |
+
#: controls/ooohboi-overlay-underlay.php:1316 controls/ooohboi-pseudo.php:715
|
2135 |
+
#: controls/ooohboi-pseudo.php:1359 controls/ooohboi-spacerat.php:327
|
2136 |
#: controls/ooohboi-videomasq.php:172
|
2137 |
msgid "Mask repeat"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
#: controls/ooohboi-overlaiz.php:649 controls/ooohboi-overlay-underlay.php:691
|
2141 |
+
#: controls/ooohboi-overlay-underlay.php:1320 controls/ooohboi-pseudo.php:719
|
2142 |
+
#: controls/ooohboi-pseudo.php:1363 controls/ooohboi-spacerat.php:331
|
2143 |
#: controls/ooohboi-videomasq.php:176
|
2144 |
msgid "No-repeat"
|
2145 |
msgstr ""
|
2146 |
|
2147 |
#: controls/ooohboi-overlaiz.php:650 controls/ooohboi-overlay-underlay.php:692
|
2148 |
+
#: controls/ooohboi-overlay-underlay.php:1321 controls/ooohboi-pseudo.php:720
|
2149 |
+
#: controls/ooohboi-pseudo.php:1364 controls/ooohboi-spacerat.php:332
|
2150 |
#: controls/ooohboi-videomasq.php:177
|
2151 |
msgid "Repeat"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
#: controls/ooohboi-overlaiz.php:651 controls/ooohboi-overlay-underlay.php:693
|
2155 |
+
#: controls/ooohboi-overlay-underlay.php:1322 controls/ooohboi-pseudo.php:721
|
2156 |
+
#: controls/ooohboi-pseudo.php:1365 controls/ooohboi-spacerat.php:333
|
2157 |
#: controls/ooohboi-videomasq.php:178
|
2158 |
msgid "Repeat-x"
|
2159 |
msgstr ""
|
2160 |
|
2161 |
#: controls/ooohboi-overlaiz.php:652 controls/ooohboi-overlay-underlay.php:694
|
2162 |
+
#: controls/ooohboi-overlay-underlay.php:1323 controls/ooohboi-pseudo.php:722
|
2163 |
+
#: controls/ooohboi-pseudo.php:1366 controls/ooohboi-spacerat.php:334
|
2164 |
#: controls/ooohboi-videomasq.php:179
|
2165 |
msgid "Repeat-y"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
#: controls/ooohboi-overlaiz.php:672 controls/ooohboi-overlay-underlay.php:737
|
2169 |
+
#: controls/ooohboi-overlay-underlay.php:1365 controls/ooohboi-pseudo.php:765
|
2170 |
+
#: controls/ooohboi-pseudo.php:1408
|
2171 |
msgid "Z-Index"
|
2172 |
msgstr ""
|
2173 |
|
2176 |
msgstr ""
|
2177 |
|
2178 |
#: controls/ooohboi-overlay-underlay.php:174
|
2179 |
+
#: controls/ooohboi-overlay-underlay.php:814 controls/ooohboi-pseudo.php:183
|
2180 |
+
#: controls/ooohboi-pseudo.php:842
|
2181 |
msgid "Blend Mode"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
#: controls/ooohboi-overlay-underlay.php:201
|
2185 |
+
#: controls/ooohboi-overlay-underlay.php:841 controls/ooohboi-pseudo.php:211
|
2186 |
+
#: controls/ooohboi-pseudo.php:869
|
2187 |
msgid "Position and Size"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
#: controls/ooohboi-overlay-underlay.php:324
|
2191 |
#: controls/ooohboi-overlay-underlay.php:446
|
2192 |
+
#: controls/ooohboi-overlay-underlay.php:961 controls/ooohboi-pseudo.php:342
|
2193 |
+
#: controls/ooohboi-pseudo.php:472 controls/ooohboi-pseudo.php:995
|
2194 |
msgid "Enter CSS calc value only! Like: 45% + 85px or 100% - 3em"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
#: controls/ooohboi-overlay-underlay.php:384
|
2198 |
+
#: controls/ooohboi-overlay-underlay.php:1019 controls/ooohboi-pseudo.php:406
|
2199 |
+
#: controls/ooohboi-pseudo.php:1057
|
2200 |
msgid "Calc Offset Top"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
#: controls/ooohboi-overlay-underlay.php:445
|
2204 |
+
#: controls/ooohboi-overlay-underlay.php:1078 controls/ooohboi-pseudo.php:471
|
2205 |
+
#: controls/ooohboi-pseudo.php:1120
|
2206 |
msgid "Calc Offset Left"
|
2207 |
msgstr ""
|
2208 |
|
2364 |
msgid "Animation delay"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
+
#: controls/ooohboi-pseudo.php:110
|
2368 |
msgid "Enable Pseudo?"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
+
#: controls/ooohboi-pseudo.php:111
|
2372 |
msgid ""
|
2373 |
"This is how you can create and manage :before and :after pseudo elements for "
|
2374 |
"this column"
|
2375 |
msgstr ""
|
2376 |
|
2377 |
+
#: controls/ooohboi-pseudo.php:129
|
2378 |
msgid "Before"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
+
#: controls/ooohboi-pseudo.php:568
|
2382 |
msgid "Before Mask"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
+
#: controls/ooohboi-pseudo.php:787
|
2386 |
msgid "After"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: controls/ooohboi-pseudo.php:1215
|
2390 |
msgid "After Mask"
|
2391 |
msgstr ""
|
2392 |
|
2534 |
"that’s transparent will be completely hidden."
|
2535 |
msgstr ""
|
2536 |
|
2537 |
+
#: controls/ooohboi-widget-stalker.php:111
|
2538 |
msgid ""
|
2539 |
"NOTE: Position, alignment, direction and justification of all widgets is "
|
2540 |
"controlled by the parent Container!"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
+
#: controls/ooohboi-widget-stalker.php:183
|
2544 |
msgid "Widget width"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
+
#: controls/ooohboi-widget-stalker.php:241
|
2548 |
+
msgid "Unlike Elementor's default margin, this is the true margin!"
|
2549 |
+
msgstr ""
|
2550 |
+
|
2551 |
+
#: controls/ooohboi-widget-stalker.php:258
|
2552 |
msgid "Align self"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
+
#: controls/ooohboi-widget-stalker.php:259
|
2556 |
msgid "Align this widget vertically"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
+
#: controls/ooohboi-widget-stalker.php:280
|
2560 |
msgid "Widget Order"
|
2561 |
msgstr ""
|
2562 |
|
2714 |
"Elementor 3.6 and above)%s"
|
2715 |
msgstr ""
|
2716 |
|
2717 |
+
#: inc/common-functions.php:247
|
2718 |
msgid "Manage JS Libraries"
|
2719 |
msgstr ""
|
2720 |
|
2721 |
+
#: inc/common-functions.php:253
|
2722 |
#, php-format
|
2723 |
msgid ""
|
2724 |
"%sThe following libraries are currently available with Steroids for "
|
2726 |
"OFF.%s"
|
2727 |
msgstr ""
|
2728 |
|
2729 |
+
#: inc/common-functions.php:259
|
2730 |
msgid "LOCOMOTIVE SCROLL"
|
2731 |
msgstr ""
|
2732 |
|
2733 |
+
#: inc/common-functions.php:260
|
2734 |
#, php-format
|
2735 |
msgid ""
|
2736 |
"%1$sDetection of elements in viewport and smooth scrolling with parallax.%3$s"
|
2737 |
"%4$sSOURCE%5$s%2$s"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
+
#: inc/common-functions.php:271
|
2741 |
msgid "Enable for Tablets"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
+
#: inc/common-functions.php:272
|
2745 |
msgid "Enable for Mobiles"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
+
#: inc/common-functions.php:281
|
2749 |
msgid "Multiplier"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
+
#: inc/common-functions.php:282
|
2753 |
#, php-format
|
2754 |
msgid "%sBoost/reduce scrolling speed. 1 is the default.%s"
|
2755 |
msgstr ""
|
2756 |
|
2757 |
+
#: inc/common-functions.php:291
|
2758 |
msgid "Refresh on resize?"
|
2759 |
msgstr ""
|
2760 |
|
2761 |
+
#: inc/common-functions.php:292
|
2762 |
msgid ""
|
2763 |
"Things get messy on resize. That will do the silent page refresh upon the "
|
2764 |
"window resize/orientationchange."
|
2765 |
msgstr ""
|
2766 |
|
2767 |
+
#: inc/common-functions.php:299
|
2768 |
msgid "Enable freehand mode?"
|
2769 |
msgstr ""
|
2770 |
|
2771 |
+
#: inc/common-functions.php:300
|
2772 |
#, php-format
|
2773 |
msgid ""
|
2774 |
"That removes all the default %sdata-scroll-section%s attributes so you can "
|
2775 |
"set them at will."
|
2776 |
msgstr ""
|
2777 |
|
2778 |
+
#: inc/common-functions.php:311
|
2779 |
#, php-format
|
2780 |
msgid ""
|
2781 |
"%1$s Cross-browser JavaScript library/API which is used to create and "
|
2783 |
"%2$s"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
+
#: inc/common-functions.php:318
|
2787 |
#, php-format
|
2788 |
msgid ""
|
2789 |
"%1$s A lightweight JavaScript animation library with a simple, yet powerful "
|
2790 |
"API.%3$s%4$sSOURCE%5$s%2$s"
|
2791 |
msgstr ""
|
2792 |
|
2793 |
+
#: inc/common-functions.php:325
|
2794 |
#, php-format
|
2795 |
msgid ""
|
2796 |
"%1$s Create badass fluid and smooth transitions between your website's pages."
|
2797 |
"%3$s%4$sSOURCE%5$s%2$s"
|
2798 |
msgstr ""
|
2799 |
|
2800 |
+
#: inc/common-functions.php:332
|
2801 |
#, php-format
|
2802 |
msgid ""
|
2803 |
"%1$sGreenSock's GSAP JavaScript animation library (including Draggable).%3$s"
|
2804 |
"%4$sSOURCE%5$s%2$s"
|
2805 |
msgstr ""
|
2806 |
|
2807 |
+
#: inc/common-functions.php:339
|
2808 |
#, php-format
|
2809 |
msgid "%1$sLet your page react to scroll changes.%3$s%4$sSOURCE%5$s%2$s"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
+
#: inc/common-functions.php:346
|
2813 |
#, php-format
|
2814 |
msgid ""
|
2815 |
"%1$sAnimates the scroll position of the window or a DOM element.%3$s"
|
2816 |
"%4$sSOURCE%5$s%2$s"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
+
#: inc/common-functions.php:353
|
2820 |
#, php-format
|
2821 |
msgid ""
|
2822 |
"%1$sAnimate anything (SVG, DOM, canvas, generic objects, whatever) along a "
|
ooohboi-steroids.php
CHANGED
@@ -2,7 +2,7 @@
|
|
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: 1.9.
|
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 = '1.9.
|
37 |
|
38 |
/**
|
39 |
* Minimum Elementor Version
|
@@ -365,7 +365,7 @@ final class OoohBoi_Steroids {
|
|
365 |
'OoohBoi_Glider' => 'ob_use_glider', 'OoohBoi_PhotoGiraffe' => 'ob_use_photogiraffe', 'OoohBoi_Teleporter' => 'ob_use_teleporter', 'OoohBoi_SearchCop' => 'ob_use_searchcop', 'OoohBoi_Videomasq' => 'ob_use_videomasq',
|
366 |
'OoohBoi_Butter_Button' => 'ob_use_butterbutton', 'OoohBoi_Perspektive' => 'ob_use_perspektive', 'OoohBoi_Shadough' => 'ob_use_shadough', 'OoohBoi_PhotoMorph' => 'ob_use_photomorph', 'OoohBoi_Commentz' => 'ob_use_commentz',
|
367 |
'OoohBoi_SpaceRat' => 'ob_use_spacerat', 'OoohBoi_Imbox' => 'ob_use_imbox', 'OoohBoi_Icobox' => 'ob_use_icobox', 'OoohBoi_Hover_Animator' => 'ob_use_hoveranimator', 'OoohBoi_Kontrolz' => 'ob_use_kontrolz',
|
368 |
-
'OoohBoi_Widget_Stalker' => 'ob_use_widgetstalker', 'OoohBoi_Pseudo' => 'ob_use_pseudo', 'OoohBoi_Bullet' => 'ob_use_bullet', 'OoohBoi_Container_Extras' => 'ob_use_container_extras'
|
369 |
|
370 |
/* since 1.9.1 & Elementor 3.6+ */
|
371 |
$exclude_with_containers = [];
|
@@ -535,7 +535,7 @@ final class OoohBoi_Steroids {
|
|
535 |
// OoohBoi Container Extras ONLY IF ELEMENTOR >= ELEMENTOR_VERSION_CONTAINER
|
536 |
include_once plugin_dir_path( __FILE__ ) . 'controls/ooohboi-container-extras.php'; // OoohBoi Container Extras
|
537 |
include_once plugin_dir_path( __FILE__ ) . 'controls/ooohboi-oh-animator.php'; // OoohBoi Animator
|
538 |
-
|
539 |
// ----------
|
540 |
include_once plugin_dir_path( __FILE__ ) . 'controls/ooohboi-locomotion.php'; // OoohBoi Locomotion
|
541 |
}
|
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: 1.9.7
|
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 = '1.9.7';
|
37 |
|
38 |
/**
|
39 |
* Minimum Elementor Version
|
365 |
'OoohBoi_Glider' => 'ob_use_glider', 'OoohBoi_PhotoGiraffe' => 'ob_use_photogiraffe', 'OoohBoi_Teleporter' => 'ob_use_teleporter', 'OoohBoi_SearchCop' => 'ob_use_searchcop', 'OoohBoi_Videomasq' => 'ob_use_videomasq',
|
366 |
'OoohBoi_Butter_Button' => 'ob_use_butterbutton', 'OoohBoi_Perspektive' => 'ob_use_perspektive', 'OoohBoi_Shadough' => 'ob_use_shadough', 'OoohBoi_PhotoMorph' => 'ob_use_photomorph', 'OoohBoi_Commentz' => 'ob_use_commentz',
|
367 |
'OoohBoi_SpaceRat' => 'ob_use_spacerat', 'OoohBoi_Imbox' => 'ob_use_imbox', 'OoohBoi_Icobox' => 'ob_use_icobox', 'OoohBoi_Hover_Animator' => 'ob_use_hoveranimator', 'OoohBoi_Kontrolz' => 'ob_use_kontrolz',
|
368 |
+
'OoohBoi_Widget_Stalker' => 'ob_use_widgetstalker', 'OoohBoi_Pseudo' => 'ob_use_pseudo', 'OoohBoi_Bullet' => 'ob_use_bullet', 'OoohBoi_Container_Extras' => 'ob_use_container_extras'/*, 'OoohBoi_Interactor' => 'ob_use_interactor'*/ ];
|
369 |
|
370 |
/* since 1.9.1 & Elementor 3.6+ */
|
371 |
$exclude_with_containers = [];
|
535 |
// OoohBoi Container Extras ONLY IF ELEMENTOR >= ELEMENTOR_VERSION_CONTAINER
|
536 |
include_once plugin_dir_path( __FILE__ ) . 'controls/ooohboi-container-extras.php'; // OoohBoi Container Extras
|
537 |
include_once plugin_dir_path( __FILE__ ) . 'controls/ooohboi-oh-animator.php'; // OoohBoi Animator
|
538 |
+
//include_once plugin_dir_path( __FILE__ ) . 'controls/ooohboi-interactor.php'; // OoohBoi Interactor
|
539 |
// ----------
|
540 |
include_once plugin_dir_path( __FILE__ ) . 'controls/ooohboi-locomotion.php'; // OoohBoi Locomotion
|
541 |
}
|
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.5
|
7 |
-
Stable tag: 1.9.
|
8 |
Requires PHP: 7.0
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0
|
@@ -112,7 +112,7 @@ Do those tricky GSAP-ScrollTrigger(ed) animations via the user-friendly interfac
|
|
112 |
|
113 |
== Upgrade Notice ==
|
114 |
|
115 |
-
1.9.
|
116 |
|
117 |
== Frequently Asked Questions ==
|
118 |
|
@@ -156,7 +156,14 @@ No, you don't. It'll work with both free version of Elementor and Elementor PRO.
|
|
156 |
|
157 |
== Changelog ==
|
158 |
|
159 |
-
= 1.9.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
- Fix: IMBOX - Added option to align content vertically when "Prevent Image and Title Collaps" enabled
|
161 |
- Fix: OH ANIMATOR - Front-end animation bug
|
162 |
- New: CONTAINER EXTRAS - added options to calc() min-height and set the Container link
|
4 |
Donate link: https://www.paypal.me/ooohboi
|
5 |
Requires at least: 5.0
|
6 |
Tested up to: 6.5
|
7 |
+
Stable tag: 1.9.7
|
8 |
Requires PHP: 7.0
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0
|
112 |
|
113 |
== Upgrade Notice ==
|
114 |
|
115 |
+
1.9.7 - Beware of the changes to the language file!
|
116 |
|
117 |
== Frequently Asked Questions ==
|
118 |
|
156 |
|
157 |
== Changelog ==
|
158 |
|
159 |
+
= 1.9.7 =
|
160 |
+
- Fix: CONTAINER EXTRAS - Fixed buggy custom container Width
|
161 |
+
- New: HARAKIRI - Clip-text option added
|
162 |
+
- New: HARAKIRI - Text-indent option added
|
163 |
+
- New: WIDGET STALKER - Added a true margin option (opposed to Elementor's default working like a padding)
|
164 |
+
- NOTE: INTERACTOR extension temporarily disabled until the issue resolved
|
165 |
+
|
166 |
+
= 1.9.6 =
|
167 |
- Fix: IMBOX - Added option to align content vertically when "Prevent Image and Title Collaps" enabled
|
168 |
- Fix: OH ANIMATOR - Front-end animation bug
|
169 |
- New: CONTAINER EXTRAS - added options to calc() min-height and set the Container link
|