Version Description
- 15/07/2016 = Added: new option for Social ( Target ) Added: new option for accordion( style->spacing style, type->none type, title color, title background color ) Added: new shortcode Aduio Added: new option for Tooltip ( tooltip background color, tooltip border radius )
Download this release
Release Info
Developer | magictheme |
Plugin | Magee Shortcodes |
Version | 1.5.8 |
Comparing to | |
See all releases |
Code changes from version 1.5.7 to 1.5.8
- Magee.php +2 -2
- assets/css/audioplayer.css +301 -0
- assets/css/shortcode.css +57 -0
- assets/js/audioplayer.js +216 -0
- assets/js/magee-shortcodes.js +57 -0
- inc/core.php +65 -0
- inc/options.php +104 -27
- languages/magee-shortcodes.mo +0 -0
- languages/magee-shortcodes.pot +1015 -894
- readme.txt +6 -0
- shortcodes/class-accordion.php +61 -8
- shortcodes/class-audio.php +23 -5
- shortcodes/class-social.php +4 -3
- shortcodes/class-tooltip.php +13 -2
Magee.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Magee Shortcodes
|
4 |
Plugin URI: http://www.mageewp.com/magee-shortcode.html
|
5 |
Description: Magee Shortcodes is WordPress plugin that provides a pack of shortcodes. With Magee Shortcodes, you can easily create accordion, buttons, boxes, columns, social and much more. They allow you to create so many different page layouts. You could quickly and easily built your own custom pages using all the various shortcodes that Magee Shortcodes includes.
|
6 |
-
Version: 1.5.
|
7 |
Author: MageeWP
|
8 |
Author URI: http://www.mageewp.com
|
9 |
Text Domain: magee-shortcodes
|
@@ -14,7 +14,7 @@ if ( ! defined( 'ABSPATH' ) ) return;
|
|
14 |
if(!class_exists('Magee_Core') && !defined( 'MAGEE_SHORTCODE_LIB_DIR') ):
|
15 |
define( 'MAGEE_SHORTCODES_PATH', __FILE__ );
|
16 |
define( 'MAGEE_SHORTCODES_DIR_PATH', plugin_dir_path( __FILE__ ));
|
17 |
-
define( 'MAGEE_SHORTCODES_VER', '1.5.
|
18 |
|
19 |
require_once 'inc/core.php';
|
20 |
//require_once 'inc/options.php';
|
3 |
Plugin Name: Magee Shortcodes
|
4 |
Plugin URI: http://www.mageewp.com/magee-shortcode.html
|
5 |
Description: Magee Shortcodes is WordPress plugin that provides a pack of shortcodes. With Magee Shortcodes, you can easily create accordion, buttons, boxes, columns, social and much more. They allow you to create so many different page layouts. You could quickly and easily built your own custom pages using all the various shortcodes that Magee Shortcodes includes.
|
6 |
+
Version: 1.5.8
|
7 |
Author: MageeWP
|
8 |
Author URI: http://www.mageewp.com
|
9 |
Text Domain: magee-shortcodes
|
14 |
if(!class_exists('Magee_Core') && !defined( 'MAGEE_SHORTCODE_LIB_DIR') ):
|
15 |
define( 'MAGEE_SHORTCODES_PATH', __FILE__ );
|
16 |
define( 'MAGEE_SHORTCODES_DIR_PATH', plugin_dir_path( __FILE__ ));
|
17 |
+
define( 'MAGEE_SHORTCODES_VER', '1.5.8' );
|
18 |
|
19 |
require_once 'inc/core.php';
|
20 |
//require_once 'inc/options.php';
|
assets/css/audioplayer.css
ADDED
@@ -0,0 +1,301 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.audioplayer {
|
2 |
+
margin: 10px 0;
|
3 |
+
height: 2.5em; /* 40 */
|
4 |
+
color: #fff;
|
5 |
+
border: 1px solid #222;
|
6 |
+
position: relative;
|
7 |
+
z-index: 1;
|
8 |
+
background: #222;
|
9 |
+
}
|
10 |
+
|
11 |
+
.audioplayer.controls {
|
12 |
+
display:none;
|
13 |
+
}
|
14 |
+
|
15 |
+
.audioplayer-mini {
|
16 |
+
width: 2.5em; /* 40 */
|
17 |
+
margin: 0 auto;
|
18 |
+
}
|
19 |
+
|
20 |
+
.audioplayer > div {
|
21 |
+
position: absolute;
|
22 |
+
}
|
23 |
+
|
24 |
+
.audioplayer-playpause {
|
25 |
+
width: 2.5em; /* 40 */
|
26 |
+
height: 100%;
|
27 |
+
text-align: left;
|
28 |
+
text-indent: -9999px;
|
29 |
+
cursor: pointer;
|
30 |
+
z-index: 2;
|
31 |
+
top: 0;
|
32 |
+
left: 0;
|
33 |
+
}
|
34 |
+
|
35 |
+
.audioplayer-mini .audioplayer-playpause {
|
36 |
+
width: 100%;
|
37 |
+
}
|
38 |
+
|
39 |
+
.audioplayer-playpause:hover,
|
40 |
+
.audioplayer-playpause:focus {
|
41 |
+
background-color: #222;
|
42 |
+
}
|
43 |
+
|
44 |
+
.audioplayer-playpause a {
|
45 |
+
display: block;
|
46 |
+
}
|
47 |
+
|
48 |
+
.audioplayer:not(.audioplayer-playing) .audioplayer-playpause a {
|
49 |
+
width: 0;
|
50 |
+
height: 0;
|
51 |
+
border: 0.5em solid transparent; /* 8 */
|
52 |
+
border-right: none;
|
53 |
+
border-left-color: #fff;
|
54 |
+
content: '';
|
55 |
+
position: absolute;
|
56 |
+
top: 50%;
|
57 |
+
left: 50%;
|
58 |
+
margin: -0.5em 0 0 -0.25em; /* 8 4 */
|
59 |
+
}
|
60 |
+
|
61 |
+
.audioplayer-playing .audioplayer-playpause a {
|
62 |
+
width: 0.75em;
|
63 |
+
height: 0.75em;
|
64 |
+
position: absolute;
|
65 |
+
top: 50%;
|
66 |
+
left: 50%;
|
67 |
+
margin: -0.375em 0 0 -0.375em;
|
68 |
+
}
|
69 |
+
|
70 |
+
.audioplayer-playing .audioplayer-playpause a:before,
|
71 |
+
.audioplayer-playing .audioplayer-playpause a:after {
|
72 |
+
width: 40%;
|
73 |
+
height: 100%;
|
74 |
+
background-color: #fff;
|
75 |
+
content: '';
|
76 |
+
position: absolute;
|
77 |
+
top: 0;
|
78 |
+
}
|
79 |
+
|
80 |
+
.audioplayer-playing .audioplayer-playpause a:before {
|
81 |
+
left: 0;
|
82 |
+
}
|
83 |
+
|
84 |
+
.audioplayer-playing .audioplayer-playpause a:after {
|
85 |
+
right: 0;
|
86 |
+
}
|
87 |
+
|
88 |
+
.audioplayer-time {
|
89 |
+
width: 4.375em; /* 70 */
|
90 |
+
height: 100%;
|
91 |
+
line-height: 2.375em; /* 38 */
|
92 |
+
text-align: center;
|
93 |
+
z-index: 2;
|
94 |
+
top: 0;
|
95 |
+
}
|
96 |
+
|
97 |
+
.audioplayer-time-current {
|
98 |
+
border-left: 1px solid #111;
|
99 |
+
border-left-color: rgba( 0, 0, 0, .25 );
|
100 |
+
left: 2.5em; /* 40 */
|
101 |
+
}
|
102 |
+
|
103 |
+
.audioplayer-time-duration {
|
104 |
+
right: 6.5em; /* 40 */
|
105 |
+
}
|
106 |
+
|
107 |
+
.audioplayer-novolume .audioplayer-time-duration {
|
108 |
+
border-right: 0;
|
109 |
+
right: 0;
|
110 |
+
}
|
111 |
+
|
112 |
+
.audioplayer-bar {
|
113 |
+
height: 0.5em;
|
114 |
+
background-color: #222;
|
115 |
+
cursor: pointer;
|
116 |
+
z-index: 1;
|
117 |
+
top: 50%;
|
118 |
+
right: 10.875em;
|
119 |
+
left: 6.875em;
|
120 |
+
margin-top: -0.228em;
|
121 |
+
}
|
122 |
+
|
123 |
+
.audioplayer-novolume .audioplayer-bar {
|
124 |
+
right: 4.375em; /* 70 */
|
125 |
+
}
|
126 |
+
|
127 |
+
.audioplayer-bar div {
|
128 |
+
width: 0;
|
129 |
+
height: 100%;
|
130 |
+
position: absolute;
|
131 |
+
left: 0;
|
132 |
+
top: 0;
|
133 |
+
}
|
134 |
+
|
135 |
+
.audioplayer-bar-loaded {
|
136 |
+
background-color: #333;
|
137 |
+
z-index: 1;
|
138 |
+
}
|
139 |
+
|
140 |
+
.audioplayer-bar-played {
|
141 |
+
background: #1ba1e2;
|
142 |
+
z-index: 2;
|
143 |
+
}
|
144 |
+
|
145 |
+
.audioplayer-volume {
|
146 |
+
width: 6.5em; /* 40 */
|
147 |
+
height: 100%;
|
148 |
+
border-left: 1px solid #111;
|
149 |
+
border-left-color: rgba( 0, 0, 0, .25 );
|
150 |
+
text-align: left;
|
151 |
+
text-indent: -9999px;
|
152 |
+
cursor: pointer;
|
153 |
+
z-index: 2;
|
154 |
+
top: 0;
|
155 |
+
right: 0;
|
156 |
+
}
|
157 |
+
|
158 |
+
.audioplayer-volume-button {
|
159 |
+
width: 2.5em;
|
160 |
+
height: 100%;
|
161 |
+
position: absolute;
|
162 |
+
top: 0;
|
163 |
+
left: 0;
|
164 |
+
}
|
165 |
+
|
166 |
+
.audioplayer-volume-button a {
|
167 |
+
width: 0.313em; /* 5 */
|
168 |
+
height: 0.375em; /* 6 */
|
169 |
+
background-color: #fff;
|
170 |
+
display: block;
|
171 |
+
position: relative;
|
172 |
+
z-index: 1;
|
173 |
+
top: 42%;
|
174 |
+
left: 30%;
|
175 |
+
}
|
176 |
+
|
177 |
+
.audioplayer-volume-button a:before,
|
178 |
+
.audioplayer-volume-button a:after {
|
179 |
+
content: '';
|
180 |
+
position: absolute;
|
181 |
+
}
|
182 |
+
|
183 |
+
.audioplayer-volume-button a:before {
|
184 |
+
width: 0;
|
185 |
+
height: 0;
|
186 |
+
border: 0.5em solid transparent; /* 8 */
|
187 |
+
border-left: none;
|
188 |
+
border-right-color: #fff;
|
189 |
+
z-index: 2;
|
190 |
+
top: 50%;
|
191 |
+
right: -0.25em;
|
192 |
+
margin-top: -0.5em; /* 8 */
|
193 |
+
}
|
194 |
+
|
195 |
+
.audioplayer:not(.audioplayer-mute) .audioplayer-volume-button a:after {
|
196 |
+
/* "volume" icon by Nicolas Gallagher, http://nicolasgallagher.com/pure-css-gui-icons */
|
197 |
+
width: 0.313em; /* 5 */
|
198 |
+
height: 0.313em; /* 5 */
|
199 |
+
border: 0.25em double #fff; /* 4 */
|
200 |
+
border-width: 0.25em 0.25em 0 0; /* 4 */
|
201 |
+
left: 0.563em; /* 9 */
|
202 |
+
top: -0.063em; /* 1 */
|
203 |
+
-webkit-border-radius: 0 0.938em 0 0; /* 15 */
|
204 |
+
-moz-border-radius: 0 0.938em 0 0; /* 15 */
|
205 |
+
border-radius: 0 0.938em 0 0; /* 15 */
|
206 |
+
-webkit-transform: rotate( 45deg );
|
207 |
+
-moz-transform: rotate( 45deg );
|
208 |
+
-ms-transform: rotate( 45deg );
|
209 |
+
-o-transform: rotate( 45deg );
|
210 |
+
transform: rotate( 45deg );
|
211 |
+
}
|
212 |
+
|
213 |
+
.audioplayer-volume-adjust {
|
214 |
+
width: 4em;
|
215 |
+
height: 100%;
|
216 |
+
cursor: default;
|
217 |
+
position: absolute;
|
218 |
+
right: 0;
|
219 |
+
top: 0;
|
220 |
+
}
|
221 |
+
|
222 |
+
.audioplayer-volume-adjust > div {
|
223 |
+
height: .5em;
|
224 |
+
background-color: #333;
|
225 |
+
cursor: pointer;
|
226 |
+
position: absolute;
|
227 |
+
z-index: 1;
|
228 |
+
top: 50%;
|
229 |
+
margin-top: -0.228em;
|
230 |
+
width: 3.5em;
|
231 |
+
}
|
232 |
+
|
233 |
+
.audioplayer-volume-adjust div div {
|
234 |
+
width: 100%;
|
235 |
+
height: 100%;
|
236 |
+
position: absolute;
|
237 |
+
bottom: 0;
|
238 |
+
left: 0;
|
239 |
+
background: #1ba1e2;
|
240 |
+
}
|
241 |
+
|
242 |
+
.audioplayer-novolume .audioplayer-volume {
|
243 |
+
display: none;
|
244 |
+
}
|
245 |
+
|
246 |
+
.audioplayer *,
|
247 |
+
.audioplayer *:before,
|
248 |
+
.audioplayer *:after {
|
249 |
+
-webkit-transition: color .25s ease, background-color .25s ease, opacity .5s ease;
|
250 |
+
-moz-transition: color .25s ease, background-color .25s ease, opacity .5s ease;
|
251 |
+
-ms-transition: color .25s ease, background-color .25s ease, opacity .5s ease;
|
252 |
+
-o-transition: color .25s ease, background-color .25s ease, opacity .5s ease;
|
253 |
+
transition: color .25s ease, background-color .25s ease, opacity .5s ease;
|
254 |
+
}
|
255 |
+
|
256 |
+
/*Skin*/
|
257 |
+
.audioplayer.light {
|
258 |
+
color: #000;
|
259 |
+
border: 1px solid #e5e5e5;
|
260 |
+
background-color: #f4f4f4;
|
261 |
+
}
|
262 |
+
|
263 |
+
.audioplayer.light .audioplayer-time-current,
|
264 |
+
.audioplayer.light .audioplayer-volume {
|
265 |
+
border-left-color: #e5e5e5;
|
266 |
+
}
|
267 |
+
|
268 |
+
.audioplayer.light .audioplayer-playpause:hover,
|
269 |
+
.audioplayer.light .audioplayer-playpause:focus {
|
270 |
+
background-color: #e5e5e5;
|
271 |
+
}
|
272 |
+
|
273 |
+
.audioplayer.light:not(.audioplayer-playing) .audioplayer-playpause a {
|
274 |
+
border-left-color: #000;
|
275 |
+
}
|
276 |
+
|
277 |
+
.audioplayer.light .audioplayer-volume-button a:before {
|
278 |
+
border-right-color: #000;
|
279 |
+
}
|
280 |
+
|
281 |
+
.audioplayer.light:not(.audioplayer-mute) .audioplayer-volume-button a:after {
|
282 |
+
border-color: #000;
|
283 |
+
}
|
284 |
+
|
285 |
+
.audioplayer.light .audioplayer-volume-button a {
|
286 |
+
background-color: #000;
|
287 |
+
}
|
288 |
+
|
289 |
+
.audioplayer.light.audioplayer-playing .audioplayer-playpause a:before,
|
290 |
+
.audioplayer.light.audioplayer-playing .audioplayer-playpause a:after {
|
291 |
+
background-color: #000;
|
292 |
+
}
|
293 |
+
|
294 |
+
.audioplayer.light .audioplayer-bar {
|
295 |
+
background-color: #ddd;
|
296 |
+
}
|
297 |
+
|
298 |
+
.audioplayer.light .audioplayer-bar-loaded,
|
299 |
+
.audioplayer.light .audioplayer-volume-adjust > div {
|
300 |
+
background-color: #dbdbdb;
|
301 |
+
}
|
assets/css/shortcode.css
CHANGED
@@ -819,6 +819,53 @@ a.magee-btn-normal:hover {
|
|
819 |
font-size: 16px;
|
820 |
}
|
821 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
822 |
.magee-accordion .panel-heading .accordion-toggle:after {
|
823 |
position: absolute;
|
824 |
display: block;
|
@@ -3126,6 +3173,16 @@ ol.multi-carousel-indicators {
|
|
3126 |
.magee-blog-list-wrap .entry-box-wrap .entry-header a:hover h4 {
|
3127 |
color: #fdd200;
|
3128 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3129 |
|
3130 |
/*
|
3131 |
* 23.0 Client Logos
|
819 |
font-size: 16px;
|
820 |
}
|
821 |
|
822 |
+
.magee-accordion .magee-accordion.style3 .panel-heading .accordion-toggle:after {
|
823 |
+
display:none ;
|
824 |
+
}
|
825 |
+
|
826 |
+
.magee-accordion.style3 .panel-heading .accordion-toggle.collapsed:after {
|
827 |
+
display:none ;
|
828 |
+
}
|
829 |
+
|
830 |
+
.magee-accordion.style3 .panel-heading .accordion-toggle:after {
|
831 |
+
display:none ;
|
832 |
+
}
|
833 |
+
.magee-accordion.accordion-spacing .panel-heading {
|
834 |
+
padding: 15px;
|
835 |
+
}
|
836 |
+
|
837 |
+
.magee-accordion.accordion-spacing .panel-default > .panel-heading {
|
838 |
+
background-color: #fdfdfd;
|
839 |
+
}
|
840 |
+
|
841 |
+
.magee-accordion.accordion-spacing .panel-heading:hover {
|
842 |
+
background: #f8f8f8;
|
843 |
+
}
|
844 |
+
|
845 |
+
.magee-accordion.accordion-spacing .panel-body {
|
846 |
+
padding: 15px;
|
847 |
+
}
|
848 |
+
|
849 |
+
.magee-accordion.accordion-spacing .panel-heading .accordion-toggle:after {
|
850 |
+
top: 15px;
|
851 |
+
right: 15px;
|
852 |
+
}
|
853 |
+
|
854 |
+
.magee-accordion.accordion-spacing .panel {
|
855 |
+
border: 1px solid #ddd;
|
856 |
+
overflow: hidden;
|
857 |
+
margin-bottom: 10px;
|
858 |
+
}
|
859 |
+
|
860 |
+
.magee-accordion.accordion-spacing .panel:last-child {
|
861 |
+
border-bottom-width: 1px;
|
862 |
+
}
|
863 |
+
|
864 |
+
.magee-accordion.accordion-spacing.panel-group .panel+.panel {
|
865 |
+
margin-top: 0;
|
866 |
+
|
867 |
+
}
|
868 |
+
|
869 |
.magee-accordion .panel-heading .accordion-toggle:after {
|
870 |
position: absolute;
|
871 |
display: block;
|
3173 |
.magee-blog-list-wrap .entry-box-wrap .entry-header a:hover h4 {
|
3174 |
color: #fdd200;
|
3175 |
}
|
3176 |
+
.shortcode-blog-list-wrap .post-pagination-decoration{
|
3177 |
+
height:auto;
|
3178 |
+
position:static;
|
3179 |
+
background-color:transparent;
|
3180 |
+
}
|
3181 |
+
.shortcode-blog-list-wrap .post-pagination-decoration li{
|
3182 |
+
display: inline;
|
3183 |
+
padding:5px;
|
3184 |
+
}
|
3185 |
+
|
3186 |
|
3187 |
/*
|
3188 |
* 23.0 Client Logos
|
assets/js/audioplayer.js
ADDED
@@ -0,0 +1,216 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
;(function( $, window, document, undefined )
|
2 |
+
{
|
3 |
+
var isTouch = 'ontouchstart' in window,
|
4 |
+
eStart = isTouch ? 'touchstart' : 'mousedown',
|
5 |
+
eMove = isTouch ? 'touchmove' : 'mousemove',
|
6 |
+
eEnd = isTouch ? 'touchend' : 'mouseup',
|
7 |
+
eCancel = isTouch ? 'touchcancel' : 'mouseup',
|
8 |
+
secondsToTime = function( secs )
|
9 |
+
{
|
10 |
+
var hours = Math.floor( secs / 3600 ), minutes = Math.floor( secs % 3600 / 60 ), seconds = Math.ceil( secs % 3600 % 60 );
|
11 |
+
return ( hours == 0 ? '' : hours > 0 && hours.toString().length < 2 ? '0'+hours+':' : hours+':' ) + ( minutes.toString().length < 2 ? '0'+minutes : minutes ) + ':' + ( seconds.toString().length < 2 ? '0'+seconds : seconds );
|
12 |
+
},
|
13 |
+
canPlayType = function( file )
|
14 |
+
{
|
15 |
+
var audioElement = document.createElement( 'audio' );
|
16 |
+
return !!( audioElement.canPlayType && audioElement.canPlayType( 'audio/' + file.split( '.' ).pop().toLowerCase() + ';' ).replace( /no/, '' ) );
|
17 |
+
};
|
18 |
+
|
19 |
+
$.fn.audioPlayer = function( params )
|
20 |
+
{
|
21 |
+
var params = $.extend( { classPrefix: 'audioplayer', strPlay: 'Play', strPause: 'Pause', strVolume: 'Volume',strControls:'',strStyle:'' }, params ),
|
22 |
+
cssClass = {},
|
23 |
+
cssClassSub =
|
24 |
+
{
|
25 |
+
playPause: 'playpause',
|
26 |
+
playing: 'playing',
|
27 |
+
time: 'time',
|
28 |
+
timeCurrent: 'time-current',
|
29 |
+
timeDuration: 'time-duration',
|
30 |
+
bar: 'bar',
|
31 |
+
barLoaded: 'bar-loaded',
|
32 |
+
barPlayed: 'bar-played',
|
33 |
+
volume: 'volume',
|
34 |
+
volumeButton: 'volume-button',
|
35 |
+
volumeAdjust: 'volume-adjust',
|
36 |
+
noVolume: 'novolume',
|
37 |
+
mute: 'mute',
|
38 |
+
mini: 'mini'
|
39 |
+
};
|
40 |
+
|
41 |
+
for( var subName in cssClassSub )
|
42 |
+
cssClass[ subName ] = params.classPrefix + '-' + cssClassSub[ subName ];
|
43 |
+
|
44 |
+
this.each( function()
|
45 |
+
{
|
46 |
+
if( $( this ).prop( 'tagName' ).toLowerCase() != 'audio' )
|
47 |
+
return false;
|
48 |
+
|
49 |
+
var $this = $( this ),
|
50 |
+
audioFile = $this.attr( 'src' ),
|
51 |
+
isAutoPlay = $this.get( 0 ).getAttribute( 'data-autoplay' ), isAutoPlay = isAutoPlay === 'autoplay' ? true : false,
|
52 |
+
isLoop = $this.get( 0 ).getAttribute( 'data-loop' ), isLoop = isLoop === 'loop' ? true : false,
|
53 |
+
isMute = $this.get( 0 ).getAttribute( 'data-mute' ), isMute = isMute === 'mute' ? true : false,
|
54 |
+
|
55 |
+
isSupport = false;
|
56 |
+
|
57 |
+
if( typeof audioFile === 'undefined' )
|
58 |
+
{
|
59 |
+
$this.find( 'source' ).each( function()
|
60 |
+
{
|
61 |
+
audioFile = $( this ).attr( 'src' );
|
62 |
+
if( typeof audioFile !== 'undefined' && canPlayType( audioFile ) )
|
63 |
+
{
|
64 |
+
isSupport = true;
|
65 |
+
return false;
|
66 |
+
}
|
67 |
+
});
|
68 |
+
}
|
69 |
+
else if( canPlayType( audioFile ) ) isSupport = true;
|
70 |
+
|
71 |
+
var thePlayer = $( '<div class="' + params.classPrefix +' '+ params.strControls +' '+ params.strStyle +'">' + ( isSupport ? $( '<div></div>' ).append( $this.eq( 0 ).clone() ).html() : '<embed src="' + audioFile + '" width="0" height="0" volume="100" autostart="' + isAutoPlay.toString() +'" loop="' + isLoop.toString() + '" />' ) + '<div class="' + cssClass.playPause + '" title="' + params.strPlay + '"><a href="#">' + params.strPlay + '</a></div></div>' ),
|
72 |
+
theAudio = isSupport ? thePlayer.find( 'audio' ) : thePlayer.find( 'embed' ), theAudio = theAudio.get( 0 );
|
73 |
+
|
74 |
+
if( isSupport )
|
75 |
+
{
|
76 |
+
thePlayer.find( 'audio' ).css( { 'width': 0, 'height': 0, 'visibility': 'hidden' } );
|
77 |
+
thePlayer.append( '<div class="' + cssClass.time + ' ' + cssClass.timeCurrent + '"></div><div class="' + cssClass.bar + '"><div class="' + cssClass.barLoaded + '"></div><div class="' + cssClass.barPlayed + '"></div></div><div class="' + cssClass.time + ' ' + cssClass.timeDuration + '"></div><div class="' + cssClass.volume + '"><div class="' + cssClass.volumeButton + '" title="' + params.strVolume + '"><a href="#">' + params.strVolume + '</a></div><div class="' + cssClass.volumeAdjust + '"><div><div></div></div></div></div>' );
|
78 |
+
|
79 |
+
var theBar = thePlayer.find( '.' + cssClass.bar ),
|
80 |
+
barPlayed = thePlayer.find( '.' + cssClass.barPlayed ),
|
81 |
+
barLoaded = thePlayer.find( '.' + cssClass.barLoaded ),
|
82 |
+
timeCurrent = thePlayer.find( '.' + cssClass.timeCurrent ),
|
83 |
+
timeDuration = thePlayer.find( '.' + cssClass.timeDuration ),
|
84 |
+
volumeButton = thePlayer.find( '.' + cssClass.volumeButton ),
|
85 |
+
volumeAdjuster = thePlayer.find( '.' + cssClass.volumeAdjust + ' > div' ),
|
86 |
+
volumeDefault = 0,
|
87 |
+
adjustCurrentTime = function( e )
|
88 |
+
{
|
89 |
+
theRealEvent = isTouch ? e.originalEvent.touches[ 0 ] : e;
|
90 |
+
theAudio.currentTime = Math.round( ( theAudio.duration * ( theRealEvent.pageX - theBar.offset().left ) ) / theBar.width() );
|
91 |
+
},
|
92 |
+
adjustVolume = function( e )
|
93 |
+
{
|
94 |
+
theRealEvent = isTouch ? e.originalEvent.touches[ 0 ] : e;
|
95 |
+
theAudio.volume = 1 - Math.abs( ( ( volumeAdjuster.offset().left + volumeAdjuster.width()) - theRealEvent.pageX ) / volumeAdjuster.width() );
|
96 |
+
|
97 |
+
},
|
98 |
+
updateLoadBar = setInterval( function()
|
99 |
+
{
|
100 |
+
//to fix the javascript bug INDEX_SIZE_ERR.
|
101 |
+
if(theAudio.buffered.length > 0){
|
102 |
+
if(theAudio.duration > 0){
|
103 |
+
barLoaded.width( ( theAudio.buffered.end( 0 ) / theAudio.duration ) * 100 + '%' );
|
104 |
+
}
|
105 |
+
if( theAudio.buffered.end( 0 ) >= theAudio.duration ){
|
106 |
+
clearInterval( updateLoadBar );
|
107 |
+
}
|
108 |
+
}
|
109 |
+
}, 100 );
|
110 |
+
|
111 |
+
var volumeTestDefault = theAudio.volume, volumeTestValue = theAudio.volume = 0.111;
|
112 |
+
if( Math.round( theAudio.volume * 1000 ) / 1000 == volumeTestValue ) theAudio.volume = volumeTestDefault;
|
113 |
+
else thePlayer.addClass( cssClass.noVolume );
|
114 |
+
|
115 |
+
timeDuration.html( '…' );
|
116 |
+
timeCurrent.text( secondsToTime( 0 ) );
|
117 |
+
|
118 |
+
theAudio.addEventListener( 'loadeddata', function()
|
119 |
+
{
|
120 |
+
timeDuration.text( secondsToTime( theAudio.duration ) );
|
121 |
+
volumeAdjuster.find( 'div' ).width( theAudio.volume * 100 + '%' );
|
122 |
+
volumeDefault = theAudio.volume;
|
123 |
+
if( isAutoPlay ) {isSupport ? theAudio.play() : theAudio.Play();thePlayer.addClass( cssClass.playing );}
|
124 |
+
if(isMute){
|
125 |
+
thePlayer.addClass( cssClass.mute );
|
126 |
+
volumeDefault = theAudio.volume;
|
127 |
+
theAudio.volume = 0;
|
128 |
+
volumeAdjuster.find( 'div' ).width( theAudio.volume * 100 + '%' );
|
129 |
+
}
|
130 |
+
});
|
131 |
+
|
132 |
+
theAudio.addEventListener( 'timeupdate', function()
|
133 |
+
{
|
134 |
+
timeCurrent.text( secondsToTime( theAudio.currentTime ) );
|
135 |
+
barPlayed.width( ( theAudio.currentTime / theAudio.duration ) * 100 + '%' );
|
136 |
+
});
|
137 |
+
|
138 |
+
theAudio.addEventListener( 'volumechange', function()
|
139 |
+
{
|
140 |
+
volumeAdjuster.find( 'div' ).width( theAudio.volume * 100 + '%' );
|
141 |
+
if( theAudio.volume > 0 && thePlayer.hasClass( cssClass.mute ) ) thePlayer.removeClass( cssClass.mute );
|
142 |
+
if( theAudio.volume <= 0 && !thePlayer.hasClass( cssClass.mute ) ) thePlayer.addClass( cssClass.mute );
|
143 |
+
});
|
144 |
+
|
145 |
+
theAudio.addEventListener( 'ended', function()
|
146 |
+
{
|
147 |
+
thePlayer.removeClass( cssClass.playing );
|
148 |
+
if( isLoop ) {
|
149 |
+
isSupport ? theAudio.play() : theAudio.Play();
|
150 |
+
thePlayer.addClass( cssClass.playing );
|
151 |
+
}
|
152 |
+
|
153 |
+
});
|
154 |
+
|
155 |
+
theBar.on( eStart, function( e )
|
156 |
+
{
|
157 |
+
adjustCurrentTime( e );
|
158 |
+
theBar.on( eMove, function( e ) { adjustCurrentTime( e ); } );
|
159 |
+
})
|
160 |
+
.on( eCancel, function()
|
161 |
+
{
|
162 |
+
theBar.unbind( eMove );
|
163 |
+
});
|
164 |
+
|
165 |
+
volumeButton.on( 'click', function()
|
166 |
+
{
|
167 |
+
if( thePlayer.hasClass( cssClass.mute ) )
|
168 |
+
{
|
169 |
+
thePlayer.removeClass( cssClass.mute );
|
170 |
+
theAudio.volume = volumeDefault;
|
171 |
+
}
|
172 |
+
else
|
173 |
+
{
|
174 |
+
thePlayer.addClass( cssClass.mute );
|
175 |
+
volumeDefault = theAudio.volume;
|
176 |
+
theAudio.volume = 0;
|
177 |
+
}
|
178 |
+
return false;
|
179 |
+
});
|
180 |
+
|
181 |
+
volumeAdjuster.on( eStart, function( e )
|
182 |
+
{
|
183 |
+
adjustVolume( e );
|
184 |
+
volumeAdjuster.on( eMove, function( e ) { adjustVolume( e ); } );
|
185 |
+
})
|
186 |
+
.on( eCancel, function()
|
187 |
+
{
|
188 |
+
volumeAdjuster.unbind( eMove );
|
189 |
+
});
|
190 |
+
}
|
191 |
+
else thePlayer.addClass( cssClass.mini );
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
thePlayer.find( '.' + cssClass.playPause ).on( 'click', function()
|
196 |
+
{
|
197 |
+
if( thePlayer.hasClass( cssClass.playing ) )
|
198 |
+
{
|
199 |
+
$( this ).attr( 'title', params.strPlay ).find( 'a' ).html( params.strPlay );
|
200 |
+
thePlayer.removeClass( cssClass.playing );
|
201 |
+
isSupport ? theAudio.pause() : theAudio.Stop();
|
202 |
+
}
|
203 |
+
else
|
204 |
+
{
|
205 |
+
$( this ).attr( 'title', params.strPause ).find( 'a' ).html( params.strPause );
|
206 |
+
thePlayer.addClass( cssClass.playing );
|
207 |
+
isSupport ? theAudio.play() : theAudio.Play();
|
208 |
+
}
|
209 |
+
return false;
|
210 |
+
});
|
211 |
+
|
212 |
+
$this.replaceWith( thePlayer );
|
213 |
+
});
|
214 |
+
return this;
|
215 |
+
};
|
216 |
+
})( jQuery, window, document );
|
assets/js/magee-shortcodes.js
CHANGED
@@ -248,4 +248,61 @@ jQuery(document).ready(function($) {
|
|
248 |
},{ triggerOnce: true, offset: '90%' });
|
249 |
}
|
250 |
$("a[rel^='prettyPhoto']").prettyPhoto();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
});
|
248 |
},{ triggerOnce: true, offset: '90%' });
|
249 |
}
|
250 |
$("a[rel^='prettyPhoto']").prettyPhoto();
|
251 |
+
|
252 |
+
//accordion icon controls
|
253 |
+
jQuery(".panel-title").each(function(){
|
254 |
+
if(jQuery(this).find("i").attr("data-open") && jQuery(this).find("i").attr("data-close") ){
|
255 |
+
|
256 |
+
var open_icon =jQuery(this).find("i").attr("data-open");
|
257 |
+
var close_icon = jQuery(this).find("i").attr("data-close");
|
258 |
+
var now_class = jQuery(this).find("i").attr("class");
|
259 |
+
jQuery(this).click(function(){
|
260 |
+
if(jQuery(this).find("i").hasClass("open-magee-accordion")){
|
261 |
+
var new_class = now_class.replace('open-magee-accordion','close-magee-accordion').replace(open_icon,close_icon);
|
262 |
+
jQuery(this).find("i").attr("class",new_class);
|
263 |
+
}else{
|
264 |
+
var new_class = now_class.replace('close-magee-accordion','open-magee-accordion').replace(close_icon,open_icon);
|
265 |
+
jQuery(this).find("i").attr("class",new_class);
|
266 |
+
jQuery(this).parents(".panel-default").siblings().each(function(){
|
267 |
+
var sub_icon1 = jQuery(this).find(".panel-title i").attr("data-open");
|
268 |
+
var sub_icon2 = jQuery(this).find(".panel-title i").attr("data-close");
|
269 |
+
var sub_class = jQuery(this).find(".panel-title i").attr("class");
|
270 |
+
var new_sub_class = sub_class.replace('open-magee-accordion','close-magee-accordion').replace(sub_icon1,sub_icon2);
|
271 |
+
jQuery(this).find(".panel-title i").attr("class",new_sub_class);
|
272 |
+
|
273 |
+
});
|
274 |
+
}
|
275 |
+
});
|
276 |
+
|
277 |
+
}
|
278 |
+
});
|
279 |
+
|
280 |
+
//audio
|
281 |
+
jQuery('.ms-audio').each(function(){
|
282 |
+
jQuery(this).audioPlayer({
|
283 |
+
classPrefix: 'audioplayer',
|
284 |
+
strPlay: 'Play',
|
285 |
+
strPause: 'Pause',
|
286 |
+
strVolume: 'Volume',
|
287 |
+
strControls : jQuery(this).data('controls'),
|
288 |
+
strStyle : jQuery(this).data('style'),
|
289 |
+
});
|
290 |
+
|
291 |
+
|
292 |
+
});
|
293 |
+
|
294 |
+
|
295 |
+
});
|
296 |
+
|
297 |
+
jQuery(window).load(function($) {
|
298 |
+
////flipbox
|
299 |
+
|
300 |
+
jQuery('.magee-flipbox-wrap').each(function(){
|
301 |
+
var front_height = jQuery(this).find('.flipbox-front').outerHeight();
|
302 |
+
var back_height = jQuery(this).find('.flipbox-back').outerHeight();
|
303 |
+
var height = front_height>back_height?front_height:back_height;
|
304 |
+
|
305 |
+
jQuery(this).css({'height':height});
|
306 |
+
});
|
307 |
+
|
308 |
});
|
inc/core.php
CHANGED
@@ -81,6 +81,7 @@ function frontend_scripts() {
|
|
81 |
wp_enqueue_style('prettyPhoto', plugins_url( 'assets/css/prettyPhoto.css',MAGEE_SHORTCODES_PATH ), '', '', false );
|
82 |
|
83 |
wp_enqueue_style('twentytwenty', plugins_url( 'assets/css/twentytwenty.css',MAGEE_SHORTCODES_PATH ), '', '', false );
|
|
|
84 |
|
85 |
wp_enqueue_style('animate', plugins_url( 'assets/css/animate.css',MAGEE_SHORTCODES_PATH ), '', '', false );
|
86 |
wp_enqueue_style('magee-shortcode', plugins_url( 'assets/css/shortcode.css',MAGEE_SHORTCODES_PATH ), '', MAGEE_SHORTCODES_VER, false );
|
@@ -92,6 +93,7 @@ function frontend_scripts() {
|
|
92 |
|
93 |
wp_enqueue_script( 'jquery.event.move', plugins_url( 'assets/js/jquery.event.move.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'), '1.3.6', false );
|
94 |
wp_enqueue_script( 'jquery.twentytwenty', plugins_url( 'assets/js/jquery.twentytwenty.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'), '', false );
|
|
|
95 |
wp_enqueue_script( 'chart.min', plugins_url( 'assets/js/chart.min.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'), '2.1.4', false );
|
96 |
wp_enqueue_script( 'moment', plugins_url( 'assets/js/moment.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'),'2.12.0', false );
|
97 |
|
@@ -1137,7 +1139,9 @@ function js(){
|
|
1137 |
$script .= "<link rel='stylesheet' id='twentytwenty-css' href=".plugins_url( 'assets/css/twentytwenty.css',MAGEE_SHORTCODES_PATH )." type='text/css' media='' />";
|
1138 |
$script .= "<link rel='stylesheet' id='animate-css' href=".plugins_url( 'assets/css/animate.css',MAGEE_SHORTCODES_PATH )." type='text/css' media='' />";
|
1139 |
$script .= "<link rel='stylesheet' id='magee-shortcode-css' href=".plugins_url( 'assets/css/shortcode.css',MAGEE_SHORTCODES_PATH )." type='text/css' media='' />";
|
|
|
1140 |
$script .= "<script type='text/javascript' src=".plugins_url( 'assets/js/jquery.twentytwenty.js',MAGEE_SHORTCODES_PATH )."></script>";
|
|
|
1141 |
$script .= "<script type='text/javascript' src=".plugins_url( 'assets/bootstrap/js/bootstrap.min.js',MAGEE_SHORTCODES_PATH )."></script>";
|
1142 |
$script .= "<script type='text/javascript' src=".plugins_url( 'assets/js/jquery.waypoints.js',MAGEE_SHORTCODES_PATH )."></script>";
|
1143 |
$script .= "<script type='text/javascript' src=".plugins_url( 'assets/jquery-countdown/jquery.countdown.min.js',MAGEE_SHORTCODES_PATH )."></script>";
|
@@ -1151,6 +1155,67 @@ function js(){
|
|
1151 |
echo $script;
|
1152 |
die();
|
1153 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1154 |
}
|
1155 |
|
1156 |
|
81 |
wp_enqueue_style('prettyPhoto', plugins_url( 'assets/css/prettyPhoto.css',MAGEE_SHORTCODES_PATH ), '', '', false );
|
82 |
|
83 |
wp_enqueue_style('twentytwenty', plugins_url( 'assets/css/twentytwenty.css',MAGEE_SHORTCODES_PATH ), '', '', false );
|
84 |
+
wp_enqueue_style('audioplayer', plugins_url( 'assets/css/audioplayer.css',MAGEE_SHORTCODES_PATH ), '', '', false );
|
85 |
|
86 |
wp_enqueue_style('animate', plugins_url( 'assets/css/animate.css',MAGEE_SHORTCODES_PATH ), '', '', false );
|
87 |
wp_enqueue_style('magee-shortcode', plugins_url( 'assets/css/shortcode.css',MAGEE_SHORTCODES_PATH ), '', MAGEE_SHORTCODES_VER, false );
|
93 |
|
94 |
wp_enqueue_script( 'jquery.event.move', plugins_url( 'assets/js/jquery.event.move.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'), '1.3.6', false );
|
95 |
wp_enqueue_script( 'jquery.twentytwenty', plugins_url( 'assets/js/jquery.twentytwenty.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'), '', false );
|
96 |
+
wp_enqueue_script( 'jquery-audioplayer', plugins_url( 'assets/js/audioplayer.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'), '', false );
|
97 |
wp_enqueue_script( 'chart.min', plugins_url( 'assets/js/chart.min.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'), '2.1.4', false );
|
98 |
wp_enqueue_script( 'moment', plugins_url( 'assets/js/moment.js',MAGEE_SHORTCODES_PATH ), array( 'jquery'),'2.12.0', false );
|
99 |
|
1139 |
$script .= "<link rel='stylesheet' id='twentytwenty-css' href=".plugins_url( 'assets/css/twentytwenty.css',MAGEE_SHORTCODES_PATH )." type='text/css' media='' />";
|
1140 |
$script .= "<link rel='stylesheet' id='animate-css' href=".plugins_url( 'assets/css/animate.css',MAGEE_SHORTCODES_PATH )." type='text/css' media='' />";
|
1141 |
$script .= "<link rel='stylesheet' id='magee-shortcode-css' href=".plugins_url( 'assets/css/shortcode.css',MAGEE_SHORTCODES_PATH )." type='text/css' media='' />";
|
1142 |
+
$script .= "<link rel='stylesheet' id='audioplayer-css' href=".plugins_url( 'assets/css/audioplayer.css',MAGEE_SHORTCODES_PATH )." type='text/css' media='' />";
|
1143 |
$script .= "<script type='text/javascript' src=".plugins_url( 'assets/js/jquery.twentytwenty.js',MAGEE_SHORTCODES_PATH )."></script>";
|
1144 |
+
$script .= "<script type='text/javascript' src=".plugins_url( 'assets/js/audioplayer.js',MAGEE_SHORTCODES_PATH )."></script>";
|
1145 |
$script .= "<script type='text/javascript' src=".plugins_url( 'assets/bootstrap/js/bootstrap.min.js',MAGEE_SHORTCODES_PATH )."></script>";
|
1146 |
$script .= "<script type='text/javascript' src=".plugins_url( 'assets/js/jquery.waypoints.js',MAGEE_SHORTCODES_PATH )."></script>";
|
1147 |
$script .= "<script type='text/javascript' src=".plugins_url( 'assets/jquery-countdown/jquery.countdown.min.js',MAGEE_SHORTCODES_PATH )."></script>";
|
1155 |
echo $script;
|
1156 |
die();
|
1157 |
}
|
1158 |
+
|
1159 |
+
|
1160 |
+
/**
|
1161 |
+
* Prints HTML with meta information for the current post-date/time and author.
|
1162 |
+
*/
|
1163 |
+
function posted_on( $echo = false ) {
|
1164 |
+
$return = '';
|
1165 |
+
|
1166 |
+
$display_meta_author = 'yes';
|
1167 |
+
$display_meta_date = 'yes';
|
1168 |
+
$display_meta_categories = 'yes';
|
1169 |
+
$display_meta_comments = 'yes';
|
1170 |
+
$display_meta_readmore = 'yes';
|
1171 |
+
$display_meta_tags = 'yes';
|
1172 |
+
$display_post_meta = 'yes';
|
1173 |
+
|
1174 |
+
if( function_exists('alchem_option'))
|
1175 |
+
$display_post_meta = alchem_option('display_post_meta');
|
1176 |
+
if( function_exists('onetone_option'))
|
1177 |
+
$display_post_meta = onetone_option('display_post_meta');
|
1178 |
+
|
1179 |
+
if( $display_post_meta == 'yes' ){
|
1180 |
+
|
1181 |
+
if( function_exists('alchem_option')){
|
1182 |
+
$display_meta_author = alchem_option('display_meta_author');
|
1183 |
+
$display_meta_date = alchem_option('display_meta_date');
|
1184 |
+
$display_meta_categories = alchem_option('display_meta_categories');
|
1185 |
+
$display_meta_comments = alchem_option('display_meta_comments');
|
1186 |
+
$display_meta_readmore = alchem_option('display_meta_readmore');
|
1187 |
+
$display_meta_tags = alchem_option('display_meta_tags');
|
1188 |
+
$date_format = alchem_option('date_format');
|
1189 |
+
}
|
1190 |
+
if( function_exists('onetone_option')){
|
1191 |
+
$display_meta_author = onetone_option('display_meta_author','yes');
|
1192 |
+
$display_meta_date = onetone_option('display_meta_date','yes');
|
1193 |
+
$display_meta_categories = onetone_option('display_meta_categories','yes');
|
1194 |
+
$display_meta_comments = onetone_option('display_meta_comments','yes');
|
1195 |
+
$display_meta_readmore = onetone_option('display_meta_readmore','yes');
|
1196 |
+
$display_meta_tags = onetone_option('display_meta_tags','yes');
|
1197 |
+
$date_format = onetone_option('date_format','');
|
1198 |
+
}
|
1199 |
+
|
1200 |
+
$return .= '<ul class="entry-meta">';
|
1201 |
+
if( $display_meta_date == 'yes' )
|
1202 |
+
$return .= '<li class="entry-date"><i class="fa fa-calendar"></i>'. get_the_date( $date_format ).'</li>';
|
1203 |
+
if( $display_meta_author == 'yes' )
|
1204 |
+
$return .= '<li class="entry-author"><i class="fa fa-user"></i>'.get_the_author_link().'</li>';
|
1205 |
+
if( $display_meta_categories == 'yes' )
|
1206 |
+
$return .= '<li class="entry-catagory"><i class="fa fa-file-o"></i>'.get_the_category_list(', ').'</li>';
|
1207 |
+
if( $display_meta_comments == 'yes' )
|
1208 |
+
$return .= '<li class="entry-comments pull-right">'.alchem_get_comments_popup_link('', __( '<i class="fa fa-comment"></i> 1 ', 'alchem'), __( '<i class="fa fa-comment"></i> % ', 'alchem'), 'read-comments', '').'</li>';
|
1209 |
+
$return .= '</ul>';
|
1210 |
+
}
|
1211 |
+
|
1212 |
+
if( $echo == true )
|
1213 |
+
echo $return;
|
1214 |
+
else
|
1215 |
+
return $return;
|
1216 |
+
|
1217 |
+
}
|
1218 |
+
|
1219 |
}
|
1220 |
|
1221 |
|
inc/options.php
CHANGED
@@ -25,12 +25,12 @@ function magee_shortcode_menus($name){
|
|
25 |
|
26 |
global $magee_shortcodes,$magee_sliders,$magee_widget;
|
27 |
$magee_sliders = Magee_Core::sliders_meta();
|
28 |
-
|
29 |
-
$
|
30 |
-
$
|
31 |
-
$
|
32 |
-
$
|
33 |
-
$
|
34 |
$textalign = array( 'left' => __( 'Left', 'magee-shortcodes' ), 'center' => __( 'Center', 'magee-shortcodes' ), 'right' => __( 'Right', 'magee-shortcodes' ) );
|
35 |
$opacity = array('0' => '0', '0.1' => '0.1', '0.2' => '0.2', '0.3' => '0.3', '0.4' => '0.4', '0.5' => '0.5', '0.6' => '0.6', '0.7' => '0.7', '0.8' => '0.8', '0.9' => '0.9', '1' => '1');
|
36 |
$dec_numbers = array( '0.1' => '0.1', '0.2' => '0.2', '0.3' => '0.3', '0.4' => '0.4', '0.5' => '0.5', '0.6' => '0.6', '0.7' => '0.7', '0.8' => '0.8', '0.9' => '0.9', '1' => '1', '2' => '2', '2.5' => '2.5', '3' => '3' );
|
@@ -80,37 +80,84 @@ $magee_shortcodes['accordion'] = array(
|
|
80 |
'type' => 'select',
|
81 |
'std' => 'simple',
|
82 |
'label' => __( 'Style', 'magee-shortcodes' ),
|
83 |
-
'desc' => '',
|
84 |
'options' => array(
|
85 |
'simple' => __( 'Simple Style', 'magee-shortcodes' ),
|
86 |
'boxed' => __( 'Boxed Style', 'magee-shortcodes' ),
|
|
|
87 |
)
|
88 |
),
|
89 |
'type' => array(
|
90 |
'type' => 'select',
|
91 |
'label' => __( 'Type', 'magee-shortcodes' ),
|
92 |
-
'desc' => '',
|
93 |
'std' => '1',
|
94 |
'options' => array(
|
95 |
'1' => __( 'Type 1', 'magee-shortcodes' ),
|
96 |
'2' => __( 'Type 2', 'magee-shortcodes' ),
|
|
|
97 |
)
|
98 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
'content' => array(
|
100 |
-
'std' =>
|
101 |
'type' => 'textarea',
|
102 |
-
'label' => __( '
|
103 |
-
'desc' => __( 'Insert accordion
|
104 |
),
|
105 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
),
|
107 |
-
|
|
|
|
|
|
|
|
|
108 |
'popup_title' => __( 'Accordion Shortcode', 'magee-shortcodes' ),
|
109 |
'name' => __('accordions-shortcode/','magee-shortocdes'),
|
110 |
|
111 |
);
|
112 |
|
113 |
|
|
|
114 |
/*-----------------------------------------------------------------------------------*/
|
115 |
/* Alert Config
|
116 |
/*-----------------------------------------------------------------------------------*/
|
@@ -205,6 +252,13 @@ $magee_shortcodes['audio'] = array(
|
|
205 |
'no_preview' => true,
|
206 |
'icon' => 'fa-play-circle-o',
|
207 |
'params' => array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
208 |
'mp3' => array(
|
209 |
'std' => '',
|
210 |
'type' => 'link',
|
@@ -260,9 +314,9 @@ $magee_shortcodes['audio'] = array(
|
|
260 |
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
261 |
),
|
262 |
),
|
263 |
-
'shortcode' => '[ms_audio mp3="{{mp3}}" ogg="{{ogg}}" wav="{{wav}}" mute="{{mute}}" autoplay="{{autoplay}}" loop="{{loop}}" controls="{{controls}}" class="{{class}}" id="{{id}}"]
|
264 |
'popup_title' => __( 'Audio Shortcode','magee-shortcodes'),
|
265 |
-
'name' => __('audio-shortcode/','magee-
|
266 |
);
|
267 |
|
268 |
/*******************************************************
|
@@ -352,8 +406,8 @@ $magee_shortcodes['button'] = array(
|
|
352 |
'label' => __( 'Button Target', 'magee-shortcodes' ),
|
353 |
'desc' => __( '_self = open in same window <br />_blank = open in new window.', 'magee-shortcodes' ),
|
354 |
'options' => array(
|
355 |
-
'_self' => '_self',
|
356 |
-
'_blank' => '_blank'
|
357 |
)
|
358 |
),
|
359 |
|
@@ -1771,11 +1825,11 @@ $magee_shortcodes['heading'] = array(
|
|
1771 |
'std' => 'border',
|
1772 |
'desc' => __( 'Choose a heading style. Leave blank as default.', 'magee-shortcodes'),
|
1773 |
'options' => array(
|
1774 |
-
'none' => 'None',
|
1775 |
-
'border' => 'Border',
|
1776 |
-
'boxed' => 'Boxed',
|
1777 |
-
'boxed-reverse' => 'Boxed-reverse',
|
1778 |
-
'doubleline' => 'Doubleline',
|
1779 |
)
|
1780 |
),
|
1781 |
|
@@ -1995,8 +2049,8 @@ $magee_shortcodes['image_compare'] = array(
|
|
1995 |
'label' => __( 'Style', 'magee-shortcodes'),
|
1996 |
'desc' => __( 'Select how the image compare display.', 'magee-shortcodes'),
|
1997 |
'options' => array(
|
1998 |
-
'horizontal' => 'Horizontal',
|
1999 |
-
'vertical' => 'Vertical',
|
2000 |
)
|
2001 |
),
|
2002 |
'percent' => array(
|
@@ -3480,7 +3534,16 @@ $magee_shortcodes['social'] = array(
|
|
3480 |
'type' => 'text',
|
3481 |
'label' => __( 'Icon Link URL', 'magee-shortcodes' ),
|
3482 |
'desc' => __( 'Add the icon\'s url eg: http://example.com.', 'magee-shortcodes' ),
|
3483 |
-
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3484 |
'class' => array(
|
3485 |
'std' => '',
|
3486 |
'type' => 'text',
|
@@ -3494,7 +3557,7 @@ $magee_shortcodes['social'] = array(
|
|
3494 |
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes' )
|
3495 |
),
|
3496 |
),
|
3497 |
-
'shortcode' => '[ms_social icon_size="{{icon_size}}" title="{{title}}" icon="{{icon}}" iconcolor="{{iconcolor}}" effect_3d="{{effect_3d}}" backgroundcolor="{{backgroundcolor}}" iconboxedradius="{{iconboxedradius}}" iconlink="{{iconlink}}"
|
3498 |
'popup_title' => __( 'Social Shortcode', 'magee-shortcodes' ),
|
3499 |
'name' => __('social-shortcode/','magee-shortcodes'),
|
3500 |
);
|
@@ -3724,6 +3787,20 @@ $magee_shortcodes['tooltip'] = array(
|
|
3724 |
'label' => __( 'Tooltip Text', 'magee-shortcodes' ),
|
3725 |
'desc' => __( 'Insert the text that displays in the tooltip', 'magee-shortcodes' )
|
3726 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3727 |
'placement' => array(
|
3728 |
'type' => 'select',
|
3729 |
'label' => __( 'Tooltip Position', 'magee-shortcodes' ),
|
@@ -3763,7 +3840,7 @@ $magee_shortcodes['tooltip'] = array(
|
|
3763 |
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes' )
|
3764 |
),
|
3765 |
),
|
3766 |
-
'shortcode' => '[ms_tooltip title="{{title}}" placement="{{placement}}" trigger="{{trigger}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_tooltip]',
|
3767 |
'popup_title' => __( 'Tooltip Shortcode', 'magee-shortcodes' ),
|
3768 |
'name' => __('tooltip-shortcode/','magee-shortocdes'),
|
3769 |
);
|
25 |
|
26 |
global $magee_shortcodes,$magee_sliders,$magee_widget;
|
27 |
$magee_sliders = Magee_Core::sliders_meta();
|
28 |
+
$choices = array( 'yes' => __('Yes', 'magee-shortcodes' ), 'no' => __('No', 'magee-shortcodes') );
|
29 |
+
$reverse_choices = array( 'no' => __('No', 'magee-shortcodes'), 'yes' => __('Yes', 'magee-shortcodes' ) );
|
30 |
+
$choices_with_default = array( '' => __('Default', 'magee-shortcodes'), 'yes' => __('Yes', 'magee-shortcodes' ), 'no' => __('No', 'magee-shortcodes') );
|
31 |
+
$reverse_choices_with_default = array( '' => __('Default', 'magee-shortcodes'), 'no' => __('No', 'magee-shortcodes'), 'yes' => __('Yes', 'magee-shortcodes' ) );
|
32 |
+
$leftright = array( 'left' => __('Left','magee-shortcodes'), 'right' => __( 'Right', 'magee-shortcodes' ) );
|
33 |
+
$textalign = array( 'left' => __( 'Left', 'magee-shortcodes' ), 'center' => __( 'Center', 'magee-shortcodes' ), 'right' => __( 'Right', 'magee-shortcodes' ) );
|
34 |
$textalign = array( 'left' => __( 'Left', 'magee-shortcodes' ), 'center' => __( 'Center', 'magee-shortcodes' ), 'right' => __( 'Right', 'magee-shortcodes' ) );
|
35 |
$opacity = array('0' => '0', '0.1' => '0.1', '0.2' => '0.2', '0.3' => '0.3', '0.4' => '0.4', '0.5' => '0.5', '0.6' => '0.6', '0.7' => '0.7', '0.8' => '0.8', '0.9' => '0.9', '1' => '1');
|
36 |
$dec_numbers = array( '0.1' => '0.1', '0.2' => '0.2', '0.3' => '0.3', '0.4' => '0.4', '0.5' => '0.5', '0.6' => '0.6', '0.7' => '0.7', '0.8' => '0.8', '0.9' => '0.9', '1' => '1', '2' => '2', '2.5' => '2.5', '3' => '3' );
|
80 |
'type' => 'select',
|
81 |
'std' => 'simple',
|
82 |
'label' => __( 'Style', 'magee-shortcodes' ),
|
83 |
+
'desc' => __( 'The "simple" doesn\'t have a border in the whole accordion, and the "boxed" has.','magee-shortcodes'),
|
84 |
'options' => array(
|
85 |
'simple' => __( 'Simple Style', 'magee-shortcodes' ),
|
86 |
'boxed' => __( 'Boxed Style', 'magee-shortcodes' ),
|
87 |
+
'spacing' => __( 'Spacing Style', 'magee-shortcodes' ),
|
88 |
)
|
89 |
),
|
90 |
'type' => array(
|
91 |
'type' => 'select',
|
92 |
'label' => __( 'Type', 'magee-shortcodes' ),
|
93 |
+
'desc' => __( 'The differance is in the right of accordion, "1" is a down arrow, and the "2" is a plus in a box','magee-shortcodes'),
|
94 |
'std' => '1',
|
95 |
'options' => array(
|
96 |
'1' => __( 'Type 1', 'magee-shortcodes' ),
|
97 |
'2' => __( 'Type 2', 'magee-shortcodes' ),
|
98 |
+
'3' => __( 'None Type', 'magee-shortcodes' ),
|
99 |
)
|
100 |
),
|
101 |
+
|
102 |
+
),
|
103 |
+
'child_shortcode' => array(
|
104 |
+
'params' => array(
|
105 |
+
|
106 |
+
'title' => array(
|
107 |
+
'std' => 'Title',
|
108 |
+
'type' => 'text',
|
109 |
+
'label' => __( 'Title', 'magee-shortcodes'),
|
110 |
+
'desc' => __( 'Insert the title for the accordion item.', 'magee-shortcodes'),
|
111 |
+
),
|
112 |
+
'color' => array(
|
113 |
+
'std' => '',
|
114 |
+
'type' => 'colorpicker',
|
115 |
+
'label' => __( 'Title Color', 'magee-shortcodes'),
|
116 |
+
'desc' => __( 'Insert the color for the title.', 'magee-shortcodes'),
|
117 |
+
),
|
118 |
+
'background_color' => array(
|
119 |
+
'std' => '',
|
120 |
+
'type' => 'colorpicker',
|
121 |
+
'label' => __( 'Title Background Color', 'magee-shortcodes'),
|
122 |
+
'desc' => __( 'Insert the background color for the title.', 'magee-shortcodes'),
|
123 |
+
),
|
124 |
'content' => array(
|
125 |
+
'std' => 'Your Content Goes Here',
|
126 |
'type' => 'textarea',
|
127 |
+
'label' => __( 'Text', 'magee-shortcodes'),
|
128 |
+
'desc' => __( 'Insert the content for the accordion item.', 'magee-shortcodes'),
|
129 |
),
|
130 |
+
'status' => array(
|
131 |
+
'std' => 'close',
|
132 |
+
'type' => 'select',
|
133 |
+
'label' => __( 'Status', 'magee-shortcodes'),
|
134 |
+
'desc' => __( 'Choose to have the accordion open or close when page loads.', 'magee-shortcodes'),
|
135 |
+
'options' => array("close"=>__('Close','magee-shortcodes'),"open"=>__('Open','magee-shortcodes') )
|
136 |
+
),
|
137 |
+
'close_icon' => array(
|
138 |
+
'type' => 'iconpicker',
|
139 |
+
'label' => __( 'Select Close Status Icon', 'magee-shortcodes'),
|
140 |
+
'desc' => __( 'Click an icon to select, click again to deselect', 'magee-shortcodes'),
|
141 |
+
'options' => $icons
|
142 |
+
),
|
143 |
+
'open_icon' => array(
|
144 |
+
'type' => 'iconpicker',
|
145 |
+
'label' => __( 'Select Open Status Icon', 'magee-shortcodes'),
|
146 |
+
'desc' => __( 'Click an icon to select, click again to deselect', 'magee-shortcodes'),
|
147 |
+
'options' => $icons
|
148 |
),
|
149 |
+
)
|
150 |
+
,
|
151 |
+
'shortcode' => "[ms_accordion_item title=\"{{title}}\" color=\"{{color}}\" background_color=\"{{background_color}}\" close_icon=\"{{close_icon}}\" open_icon=\"{{open_icon}}\" status=\"{{status}}\"]{{content}}[/ms_accordion_item]\r\n",
|
152 |
+
),
|
153 |
+
'shortcode' => "[ms_accordion style=\"{{style}}\" type=\"{{type}}\" class=\"{{class}}\" id=\"{{id}}\"]\r\n{{child_shortcode}}[/ms_accordion]",
|
154 |
'popup_title' => __( 'Accordion Shortcode', 'magee-shortcodes' ),
|
155 |
'name' => __('accordions-shortcode/','magee-shortocdes'),
|
156 |
|
157 |
);
|
158 |
|
159 |
|
160 |
+
|
161 |
/*-----------------------------------------------------------------------------------*/
|
162 |
/* Alert Config
|
163 |
/*-----------------------------------------------------------------------------------*/
|
252 |
'no_preview' => true,
|
253 |
'icon' => 'fa-play-circle-o',
|
254 |
'params' => array(
|
255 |
+
'style' => array(
|
256 |
+
'std' => '',
|
257 |
+
'type' => 'select',
|
258 |
+
'label' => __( 'Audio Style', 'magee-shortcodes'),
|
259 |
+
'desc' => __( 'Choose style for audio to show', 'magee-shortcodes'),
|
260 |
+
'options' => array('dark'=>__('Dark Style', 'magee-shortcodes'),'light'=>__('Light Style', 'magee-shortcodes'))
|
261 |
+
),
|
262 |
'mp3' => array(
|
263 |
'std' => '',
|
264 |
'type' => 'link',
|
314 |
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes')
|
315 |
),
|
316 |
),
|
317 |
+
'shortcode' => '[ms_audio style="{{style}}" mp3="{{mp3}}" ogg="{{ogg}}" wav="{{wav}}" mute="{{mute}}" autoplay="{{autoplay}}" loop="{{loop}}" controls="{{controls}}" class="{{class}}" id="{{id}}"]' ,
|
318 |
'popup_title' => __( 'Audio Shortcode','magee-shortcodes'),
|
319 |
+
'name' => __('audio-shortcode/','magee-shortcodes'),
|
320 |
);
|
321 |
|
322 |
/*******************************************************
|
406 |
'label' => __( 'Button Target', 'magee-shortcodes' ),
|
407 |
'desc' => __( '_self = open in same window <br />_blank = open in new window.', 'magee-shortcodes' ),
|
408 |
'options' => array(
|
409 |
+
'_self' => __( '_self', 'magee-shortcodes' ),
|
410 |
+
'_blank' => __( '_blank' , 'magee-shortcodes' ),
|
411 |
)
|
412 |
),
|
413 |
|
1825 |
'std' => 'border',
|
1826 |
'desc' => __( 'Choose a heading style. Leave blank as default.', 'magee-shortcodes'),
|
1827 |
'options' => array(
|
1828 |
+
'none' => __('None', 'magee-shortcodes' ),
|
1829 |
+
'border' => __('Border', 'magee-shortcodes' ),
|
1830 |
+
'boxed' => __('Boxed', 'magee-shortcodes' ),
|
1831 |
+
'boxed-reverse' => __('Boxed-reverse', 'magee-shortcodes' ),
|
1832 |
+
'doubleline' => __('Doubleline', 'magee-shortcodes' )
|
1833 |
)
|
1834 |
),
|
1835 |
|
2049 |
'label' => __( 'Style', 'magee-shortcodes'),
|
2050 |
'desc' => __( 'Select how the image compare display.', 'magee-shortcodes'),
|
2051 |
'options' => array(
|
2052 |
+
'horizontal' => __('Horizontal', 'magee-shortcodes' ),
|
2053 |
+
'vertical' => __('Vertical', 'magee-shortcodes' )
|
2054 |
)
|
2055 |
),
|
2056 |
'percent' => array(
|
3534 |
'type' => 'text',
|
3535 |
'label' => __( 'Icon Link URL', 'magee-shortcodes' ),
|
3536 |
'desc' => __( 'Add the icon\'s url eg: http://example.com.', 'magee-shortcodes' ),
|
3537 |
+
),
|
3538 |
+
'icontarget' => array(
|
3539 |
+
'type' => 'choose',
|
3540 |
+
'label' => __( 'Icon Target', 'magee-shortcodes' ),
|
3541 |
+
'desc' => __( '_self = open in same window <br />_blank = open in new window.', 'magee-shortcodes' ),
|
3542 |
+
'options' => array(
|
3543 |
+
'_self' => '_self',
|
3544 |
+
'_blank' => '_blank'
|
3545 |
+
)
|
3546 |
+
),
|
3547 |
'class' => array(
|
3548 |
'std' => '',
|
3549 |
'type' => 'text',
|
3557 |
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes' )
|
3558 |
),
|
3559 |
),
|
3560 |
+
'shortcode' => '[ms_social icon_size="{{icon_size}}" title="{{title}}" icon="{{icon}}" iconcolor="{{iconcolor}}" effect_3d="{{effect_3d}}" backgroundcolor="{{backgroundcolor}}" iconboxedradius="{{iconboxedradius}}" iconlink="{{iconlink}}" icontarget="{{icontarget}}" class="{{class}}" id="{{id}}"][/ms_social]',
|
3561 |
'popup_title' => __( 'Social Shortcode', 'magee-shortcodes' ),
|
3562 |
'name' => __('social-shortcode/','magee-shortcodes'),
|
3563 |
);
|
3787 |
'label' => __( 'Tooltip Text', 'magee-shortcodes' ),
|
3788 |
'desc' => __( 'Insert the text that displays in the tooltip', 'magee-shortcodes' )
|
3789 |
),
|
3790 |
+
'background_color' => array(
|
3791 |
+
'type' => 'colorpicker',
|
3792 |
+
'std' => '',
|
3793 |
+
'label' => __( 'Tooltip Background Color', 'magee-shortcodes' ),
|
3794 |
+
'desc' => __( 'Set Background Color for the text.', 'magee-shortcodes' ),
|
3795 |
+
),
|
3796 |
+
'border_radius' => array(
|
3797 |
+
'type' => 'number',
|
3798 |
+
'std' => '0',
|
3799 |
+
'max' => '100',
|
3800 |
+
'min' => '0',
|
3801 |
+
'label' => __( 'Tooltip Border Radius', 'magee-shortcodes' ),
|
3802 |
+
'desc' => __( 'Set Border Radius for the text.', 'magee-shortcodes' ),
|
3803 |
+
),
|
3804 |
'placement' => array(
|
3805 |
'type' => 'select',
|
3806 |
'label' => __( 'Tooltip Position', 'magee-shortcodes' ),
|
3840 |
'desc' => __( 'Add an ID to the wrapping HTML element.', 'magee-shortcodes' )
|
3841 |
),
|
3842 |
),
|
3843 |
+
'shortcode' => '[ms_tooltip title="{{title}}" background_color="{{background_color}}" border_radius="{{border_radius}}" placement="{{placement}}" trigger="{{trigger}}" class="{{class}}" id="{{id}}"]{{content}}[/ms_tooltip]',
|
3844 |
'popup_title' => __( 'Tooltip Shortcode', 'magee-shortcodes' ),
|
3845 |
'name' => __('tooltip-shortcode/','magee-shortocdes'),
|
3846 |
);
|
languages/magee-shortcodes.mo
CHANGED
Binary file
|
languages/magee-shortcodes.pot
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Magee Shortcodes\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: shijun quan <support@mageewp.com>\n"
|
8 |
"Language-Team: MageeWP\n"
|
9 |
"Language: en_US\n"
|
@@ -17,42 +17,50 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: inc/core.php:
|
21 |
msgid "Magee Shortcodes"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: inc/core.php:
|
25 |
msgid "Live Preview"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: inc/core.php:
|
29 |
msgid "Insert shortcode"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: inc/core.php:
|
33 |
msgid "Upload"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: inc/core.php:
|
37 |
msgid "Attach Images to Gallery"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: inc/core.php:
|
41 |
-
#: inc/options.php:
|
42 |
-
#: inc/options.php:
|
43 |
msgid "Width"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: inc/core.php:
|
47 |
-
#: inc/options.php:
|
48 |
-
#: inc/options.php:
|
49 |
msgid "Height"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: inc/core.php:
|
53 |
msgid "Select a slider"
|
54 |
msgstr ""
|
55 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
#: inc/magee-slider.php:8
|
57 |
msgid "Magee Slider"
|
58 |
msgstr ""
|
@@ -101,8 +109,9 @@ msgstr ""
|
|
101 |
msgid "Use the button above to add Slides !"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: inc/magee-slider.php:158 inc/options.php:
|
105 |
-
#: inc/options.php:
|
|
|
106 |
msgid "Title"
|
107 |
msgstr ""
|
108 |
|
@@ -114,108 +123,140 @@ msgstr ""
|
|
114 |
msgid "Date"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: inc/options.php:
|
118 |
-
#: inc/options.php:
|
119 |
-
#: inc/options.php:
|
120 |
-
|
|
|
|
|
|
|
|
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: inc/options.php:
|
124 |
-
#: inc/options.php:
|
125 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: inc/options.php:
|
129 |
-
#: inc/options.php:
|
130 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
msgid "Right"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: inc/options.php:
|
135 |
-
#: inc/options.php:
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
#: inc/options.php:
|
140 |
-
#: inc/options.php:
|
141 |
-
#: inc/options.php:
|
142 |
-
#: inc/options.php:
|
143 |
-
#: inc/options.php:
|
144 |
-
#: inc/options.php:
|
145 |
-
#: inc/options.php:
|
146 |
-
#: inc/options.php:
|
147 |
-
#: inc/options.php:
|
148 |
-
#: inc/options.php:
|
149 |
-
#: inc/options.php:
|
150 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
|
|
151 |
msgid "CSS Class"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: inc/options.php:71 inc/options.php:
|
155 |
-
#: inc/options.php:
|
156 |
-
#: inc/options.php:
|
157 |
-
#: inc/options.php:
|
158 |
-
#: inc/options.php:
|
159 |
-
#: inc/options.php:
|
160 |
-
#: inc/options.php:
|
161 |
-
#: inc/options.php:
|
162 |
-
#: inc/options.php:
|
163 |
-
#: inc/options.php:
|
164 |
-
#: inc/options.php:
|
165 |
-
#: inc/options.php:
|
166 |
-
#: inc/options.php:
|
167 |
-
#: inc/options.php:
|
168 |
-
#: inc/options.php:
|
169 |
-
#: inc/options.php:
|
170 |
-
#: inc/options.php:
|
171 |
msgid "Add a class to the wrapping HTML element."
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: inc/options.php:76 inc/options.php:
|
175 |
-
#: inc/options.php:
|
176 |
-
#: inc/options.php:
|
177 |
-
#: inc/options.php:
|
178 |
-
#: inc/options.php:
|
179 |
-
#: inc/options.php:
|
180 |
-
#: inc/options.php:
|
181 |
-
#: inc/options.php:
|
182 |
-
#: inc/options.php:
|
183 |
-
#: inc/options.php:
|
184 |
-
#: inc/options.php:
|
185 |
-
#: inc/options.php:
|
186 |
-
#: inc/options.php:
|
187 |
-
#: inc/options.php:
|
188 |
-
#: inc/options.php:
|
189 |
-
#: inc/options.php:
|
190 |
msgid "CSS ID"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: inc/options.php:77 inc/options.php:
|
194 |
-
#: inc/options.php:
|
195 |
-
#: inc/options.php:
|
196 |
-
#: inc/options.php:
|
197 |
-
#: inc/options.php:
|
198 |
-
#: inc/options.php:
|
199 |
-
#: inc/options.php:
|
200 |
-
#: inc/options.php:
|
201 |
-
#: inc/options.php:
|
202 |
-
#: inc/options.php:
|
203 |
-
#: inc/options.php:
|
204 |
-
#: inc/options.php:
|
205 |
-
#: inc/options.php:
|
206 |
-
#: inc/options.php:
|
207 |
-
#: inc/options.php:
|
208 |
-
#: inc/options.php:
|
209 |
msgid "Add an ID to the wrapping HTML element."
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: inc/options.php:82 inc/options.php:
|
213 |
-
#: inc/options.php:
|
214 |
-
#: inc/options.php:
|
215 |
msgid "Style"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
219 |
msgid "Simple Style"
|
220 |
msgstr ""
|
221 |
|
@@ -223,2394 +264,2454 @@ msgstr ""
|
|
223 |
msgid "Boxed Style"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
227 |
msgid "Type"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: inc/options.php:
|
231 |
-
msgid "
|
|
|
|
|
232 |
msgstr ""
|
233 |
|
234 |
#: inc/options.php:96
|
|
|
|
|
|
|
|
|
235 |
msgid "Type 2"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: inc/options.php:
|
239 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: inc/options.php:
|
243 |
-
msgid "Insert
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
247 |
msgid "Accordion Shortcode"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: inc/options.php:
|
251 |
msgid "accordions-shortcode/"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: inc/options.php:
|
255 |
-
#: inc/options.php:
|
256 |
-
#: inc/options.php:
|
257 |
msgid "Icon"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: inc/options.php:
|
261 |
-
#: inc/options.php:
|
262 |
-
#: inc/options.php:
|
263 |
-
#: inc/options.php:
|
264 |
-
#: inc/options.php:
|
265 |
msgid "Click an icon to select, click again to deselect."
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: inc/options.php:
|
269 |
msgid "Warning! Better check yourself, you're not looking too good."
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: inc/options.php:
|
273 |
msgid "Alert Content"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: inc/options.php:
|
277 |
msgid "Insert the content for the alert."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: inc/options.php:
|
281 |
-
#: inc/options.php:
|
282 |
-
#: inc/options.php:
|
283 |
msgid "Background Color"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: inc/options.php:
|
287 |
msgid "Set background color for alert box."
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: inc/options.php:
|
291 |
msgid "Text Color"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: inc/options.php:
|
295 |
msgid "Set content color & border color for alert box."
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: inc/options.php:
|
299 |
-
#: inc/options.php:
|
300 |
msgid "Border Width"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: inc/options.php:
|
304 |
-
#: inc/options.php:
|
305 |
-
#: inc/options.php:
|
306 |
-
#: inc/options.php:
|
307 |
-
#: inc/options.php:
|
308 |
msgid "In pixels (px), eg: 1px."
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: inc/options.php:
|
312 |
-
#: inc/options.php:
|
313 |
msgid "Border Radius"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: inc/options.php:
|
317 |
msgid "Box Shadow"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: inc/options.php:
|
321 |
msgid "Display a box shadow for alert."
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: inc/options.php:
|
325 |
msgid "Dismissable"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: inc/options.php:
|
329 |
msgid "The alert box is dismissable."
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: inc/options.php:
|
333 |
msgid "Alert Shortcode"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: inc/options.php:
|
337 |
msgid "alert-shortcode/"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
341 |
msgid "Mp3 URL"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: inc/options.php:
|
345 |
msgid "Add the URL of audio in MP3 format."
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: inc/options.php:
|
349 |
msgid "Ogg URL"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: inc/options.php:
|
353 |
msgid "Add the URL of audio in OGG format."
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: inc/options.php:
|
357 |
msgid "Wav URL"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: inc/options.php:
|
361 |
msgid "Add the URL of audio in WAV format."
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: inc/options.php:
|
365 |
msgid "Mute Audio"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: inc/options.php:
|
369 |
msgid "Choose to mute the audio."
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: inc/options.php:
|
373 |
msgid "Autoplay Audio"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: inc/options.php:
|
377 |
msgid "Choose to autoplay the audio."
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: inc/options.php:
|
381 |
msgid "Loop Audio"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: inc/options.php:
|
385 |
msgid "Choose to loop the audio."
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: inc/options.php:
|
389 |
msgid "Controls Audio"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: inc/options.php:
|
393 |
msgid "Choose to display controls of the audio."
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: inc/options.php:
|
397 |
msgid "Audio Shortcode"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: inc/options.php:
|
401 |
msgid "audio-shortcode/"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: inc/options.php:
|
405 |
msgid "Button Style"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: inc/options.php:
|
409 |
msgid "Select the button's default style."
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: inc/options.php:
|
413 |
-
#: inc/options.php:
|
414 |
msgid "Normal"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: inc/options.php:
|
418 |
msgid "Dark"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: inc/options.php:
|
422 |
msgid "Light"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: inc/options.php:
|
426 |
msgid "2d"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: inc/options.php:
|
430 |
msgid "3d"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: inc/options.php:
|
434 |
msgid "Line"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: inc/options.php:
|
438 |
msgid "Line Dark"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: inc/options.php:
|
442 |
msgid "Line Light"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: inc/options.php:
|
446 |
msgid "Button URL"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: inc/options.php:
|
450 |
msgid "Add the button's url eg: http://example.com."
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: inc/options.php:
|
454 |
msgid "Button Size"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: inc/options.php:
|
458 |
msgid "Select the button's size."
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: inc/options.php:
|
462 |
msgid "Small"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: inc/options.php:
|
466 |
msgid "Medium"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: inc/options.php:
|
470 |
msgid "Large"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: inc/options.php:
|
474 |
msgid "XLarge"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: inc/options.php:
|
478 |
msgid "In pixels (px), default: 2px."
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: inc/options.php:
|
482 |
msgid "Button Shape"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: inc/options.php:
|
486 |
msgid "Select the button's shape. Choose default for theme option selection."
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: inc/options.php:
|
490 |
-
msgid "Default"
|
491 |
-
msgstr ""
|
492 |
-
|
493 |
-
#: inc/options.php:326 inc/options.php:2168 inc/options.php:2575
|
494 |
msgid "Square"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: inc/options.php:
|
498 |
msgid "Rounded"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: inc/options.php:
|
502 |
msgid "Full Rounded"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: inc/options.php:
|
506 |
msgid "Text Shadow"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: inc/options.php:
|
510 |
msgid "Display shadow for button text."
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: inc/options.php:
|
514 |
msgid "Gradient"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: inc/options.php:
|
518 |
msgid "Display gradient for button."
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: inc/options.php:
|
522 |
msgid "Block Button"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: inc/options.php:
|
526 |
msgid "Display in full width."
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: inc/options.php:
|
530 |
msgid "Button Target"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: inc/options.php:
|
534 |
msgid "_self = open in same window <br />_blank = open in new window."
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
538 |
msgid "Button Text"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: inc/options.php:
|
542 |
msgid "Button's Text"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: inc/options.php:
|
546 |
msgid "Add the text that will display in the button."
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: inc/options.php:
|
550 |
msgid "Set background color for button."
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: inc/options.php:
|
554 |
msgid "Button Color"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: inc/options.php:
|
558 |
msgid "Set content color & border color for button."
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: inc/options.php:
|
562 |
msgid "Button Icon"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: inc/options.php:
|
566 |
msgid "Icon Animation Type"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: inc/options.php:
|
570 |
msgid "Select the type of animation to use on the button icon."
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: inc/options.php:
|
574 |
msgid "Button Shortcode"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: inc/options.php:
|
578 |
msgid "buttons-shortcode/"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: inc/options.php:
|
582 |
-
#: inc/options.php:
|
583 |
msgid "Canvas Width"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: inc/options.php:
|
587 |
-
#: inc/options.php:
|
588 |
msgid "Canvas Height"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: inc/options.php:
|
592 |
msgid "Label For Line"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: inc/options.php:
|
596 |
msgid "separate multiple tags added to chart line with commas"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: inc/options.php:
|
600 |
msgid "Chart Bar Shortcode"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: inc/options.php:
|
604 |
msgid "Data"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: inc/options.php:
|
608 |
msgid "separate values for each set of data with commas"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: inc/options.php:
|
612 |
msgid "Fill Color"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: inc/options.php:
|
616 |
msgid "Fill Opacity"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: inc/options.php:
|
620 |
msgid "Stroke Color"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: inc/options.php:
|
624 |
msgid "Stroke Opacity"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: inc/options.php:
|
628 |
-
#: inc/options.php:
|
629 |
-
#: inc/options.php:
|
630 |
-
#: inc/options.php:
|
631 |
msgid "Content"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: inc/options.php:
|
635 |
msgid "Chart Doughnut Shortcode"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: inc/options.php:
|
639 |
msgid "Chart Line Shortcode"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: inc/options.php:
|
643 |
msgid "Point Color"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: inc/options.php:
|
647 |
msgid "Point Stroke Color"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: inc/options.php:
|
651 |
msgid "Chart Pie Shortcode"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: inc/options.php:
|
655 |
msgid "Column Shortcode"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: inc/options.php:
|
659 |
msgid "columns-shortcode/"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: inc/options.php:
|
663 |
msgid "Column Style"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: inc/options.php:
|
667 |
msgid "Select the size of column."
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: inc/options.php:
|
671 |
msgid "1/1"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: inc/options.php:
|
675 |
msgid "1/2"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: inc/options.php:
|
679 |
msgid "1/3"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: inc/options.php:
|
683 |
msgid "1/4"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: inc/options.php:
|
687 |
msgid "1/5"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: inc/options.php:
|
691 |
msgid "1/6"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: inc/options.php:
|
695 |
msgid "2/3"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: inc/options.php:
|
699 |
msgid "2/5"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: inc/options.php:
|
703 |
msgid "3/4"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: inc/options.php:
|
707 |
msgid "3/5"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: inc/options.php:
|
711 |
msgid "4/5"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: inc/options.php:
|
715 |
msgid "5/6"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: inc/options.php:
|
719 |
msgid "Column Content"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: inc/options.php:
|
723 |
msgid " Column Content"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: inc/options.php:
|
727 |
msgid "Insert the column's content"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: inc/options.php:
|
731 |
msgid "left"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: inc/options.php:
|
735 |
msgid "Content Align"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: inc/options.php:
|
739 |
msgid "Set end time for countdown."
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: inc/options.php:
|
743 |
msgid "Font Color"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: inc/options.php:
|
747 |
msgid "Set font color for countdown."
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: inc/options.php:
|
751 |
msgid "Set background color for countdown."
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: inc/options.php:
|
755 |
msgid "Countdowns Shortcode"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: inc/options.php:
|
759 |
msgid "countdowns-shortcode/"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: inc/options.php:
|
763 |
msgid "Box Width"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: inc/options.php:
|
767 |
msgid "Select size of counter box"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: inc/options.php:
|
771 |
msgid "Top Icon"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: inc/options.php:
|
775 |
msgid "Top Icon Color"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: inc/options.php:
|
779 |
msgid "Set color for top icon."
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: inc/options.php:
|
783 |
msgid "Middle Left Icon"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: inc/options.php:
|
787 |
msgid "Insert text before the number."
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: inc/options.php:
|
791 |
msgid "Middle Left Text"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: inc/options.php:
|
795 |
msgid "Left text of counter num"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: inc/options.php:
|
799 |
msgid "Counter Num"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: inc/options.php:
|
803 |
msgid "The animated counter number."
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: inc/options.php:
|
807 |
msgid "Middle Right Text"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: inc/options.php:
|
811 |
msgid "Insert text after the number."
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: inc/options.php:
|
815 |
msgid "Bottom Title"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: inc/options.php:
|
819 |
msgid "Insert Title for counter."
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: inc/options.php:
|
823 |
msgid "Display Border"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: inc/options.php:
|
827 |
msgid "Choose to display border for counter."
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: inc/options.php:
|
831 |
-
#: inc/options.php:1045 inc/options.php:2155 inc/options.php:2176
|
832 |
-
#: inc/options.php:2248 inc/options.php:3010 inc/options.php:3464
|
833 |
-
#: inc/options.php:3835 inc/options.php:3845 inc/options.php:3855
|
834 |
-
#: inc/options.php:3917 inc/options.php:3927 inc/options.php:3937
|
835 |
-
#: inc/options.php:3998 inc/options.php:4008 inc/options.php:4018
|
836 |
-
msgid "No"
|
837 |
-
msgstr ""
|
838 |
-
|
839 |
-
#: inc/options.php:892 inc/options.php:1024 inc/options.php:1034
|
840 |
-
#: inc/options.php:1044 inc/options.php:2156 inc/options.php:2177
|
841 |
-
#: inc/options.php:2247 inc/options.php:3011 inc/options.php:3463
|
842 |
-
#: inc/options.php:3834 inc/options.php:3844 inc/options.php:3854
|
843 |
-
#: inc/options.php:3916 inc/options.php:3926 inc/options.php:3936
|
844 |
-
#: inc/options.php:3997 inc/options.php:4007 inc/options.php:4017
|
845 |
-
msgid "Yes"
|
846 |
-
msgstr ""
|
847 |
-
|
848 |
-
#: inc/options.php:911
|
849 |
msgid "Counter Shortcode"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: inc/options.php:
|
853 |
msgid "counter-box-shortcode/"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: inc/options.php:
|
857 |
msgid "Custom Box Content"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: inc/options.php:
|
861 |
msgid "Insert content for custom box."
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: inc/options.php:
|
865 |
msgid "Background Image"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: inc/options.php:
|
869 |
msgid "Upload an image to display in background of custom box."
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: inc/options.php:
|
873 |
msgid "Fixed Background"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: inc/options.php:
|
877 |
msgid "Choose to fixed Background Image"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: inc/options.php:
|
881 |
msgid "Background Position"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: inc/options.php:
|
885 |
msgid "Choose the postion of the background image"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: inc/options.php:
|
889 |
msgid "Top Left"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: inc/options.php:
|
893 |
msgid "Top Center"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: inc/options.php:
|
897 |
msgid "Top Right"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: inc/options.php:
|
901 |
msgid "Center Left"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: inc/options.php:
|
905 |
msgid "Center Center"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: inc/options.php:
|
909 |
msgid "Center Right"
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: inc/options.php:
|
913 |
msgid "Bottom Left"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: inc/options.php:
|
917 |
msgid "Bottom Center"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: inc/options.php:
|
921 |
msgid "Bottom Right"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: inc/options.php:
|
925 |
msgid "Padding"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: inc/options.php:
|
929 |
msgid "Content Padding. eg:30px"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: inc/options.php:
|
933 |
msgid " Custom Box Shortcode"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: inc/options.php:
|
937 |
msgid "custom-box-shortcode/"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: inc/options.php:
|
941 |
msgid "Dailymotion URL"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: inc/options.php:
|
945 |
msgid "Add the URL the video will link to, ex: http://example.com."
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: inc/options.php:
|
949 |
-
#: inc/options.php:
|
950 |
msgid "In pixels (px), eg:1px."
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: inc/options.php:
|
954 |
-
#: inc/options.php:
|
955 |
msgid "Mute Video"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: inc/options.php:
|
959 |
-
#: inc/options.php:
|
960 |
msgid "Choose to mute the video."
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: inc/options.php:
|
964 |
-
#: inc/options.php:
|
965 |
msgid "Autoplay Video"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: inc/options.php:
|
969 |
-
#: inc/options.php:
|
970 |
msgid "Choose to autoplay the video."
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: inc/options.php:
|
974 |
-
#: inc/options.php:
|
975 |
msgid "Loop Video"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: inc/options.php:
|
979 |
-
#: inc/options.php:
|
980 |
msgid "Choose to loop the video."
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: inc/options.php:
|
984 |
-
#: inc/options.php:
|
985 |
msgid "Show Controls"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: inc/options.php:
|
989 |
-
#: inc/options.php:
|
990 |
msgid "Choose to display controls for the video player."
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: inc/options.php:
|
994 |
msgid "Dailymotion Shortcode"
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: inc/options.php:
|
998 |
msgid "dailymotion-shortcode/"
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: inc/options.php:
|
1002 |
msgid "Divider Style"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: inc/options.php:
|
1006 |
msgid "Select the Divider's Style."
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: inc/options.php:
|
1010 |
msgid "Shadow"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: inc/options.php:
|
1014 |
msgid "Dashed"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: inc/options.php:
|
1018 |
msgid "Dotted"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: inc/options.php:
|
1022 |
msgid "Double Line"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: inc/options.php:
|
1026 |
msgid "Double Dashed"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: inc/options.php:
|
1030 |
msgid "Double Dotted"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: inc/options.php:
|
1034 |
msgid "Image"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: inc/options.php:
|
1038 |
msgid "Back to Top"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: inc/options.php:
|
1042 |
msgid "In pixels. Default: 100%"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: inc/options.php:
|
1046 |
msgid "Align"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: inc/options.php:
|
1050 |
msgid "When the width is not 100%."
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: inc/options.php:
|
1054 |
msgid "Margin Top"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: inc/options.php:
|
1058 |
msgid "Spacing above the separator. In pixels."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: inc/options.php:
|
1062 |
msgid "Margin Bottom"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: inc/options.php:
|
1066 |
msgid "Spacing under the separator. In pixels."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: inc/options.php:
|
1070 |
msgid "Border Size"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: inc/options.php:
|
1074 |
msgid "In pixels (px), eg: 1px. "
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: inc/options.php:
|
1078 |
-
#: inc/options.php:
|
1079 |
msgid "Border Color"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: inc/options.php:
|
1083 |
msgid "Set the border color."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: inc/options.php:
|
1087 |
msgid "Divider Shortcode"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: inc/options.php:
|
1091 |
msgid "divider-shortcode/"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: inc/options.php:
|
1095 |
msgid "Doc URL"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: inc/options.php:
|
1099 |
msgid "Upload document to display. Supported formats: doc, xls, pdf etc."
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: inc/options.php:
|
1103 |
msgid "Set width for doc."
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#: inc/options.php:
|
1107 |
msgid "Set height for doc."
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: inc/options.php:
|
1111 |
msgid "Responsive"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: inc/options.php:
|
1115 |
msgid "Choose to responsive or not"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: inc/options.php:
|
1119 |
msgid "Viewer"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: inc/options.php:
|
1123 |
msgid "Choose viewer for document."
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: inc/options.php:
|
1127 |
msgid "Google"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: inc/options.php:
|
1131 |
msgid "Microsoft"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: inc/options.php:
|
1135 |
msgid "Document Shortcode"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: inc/options.php:
|
1139 |
msgid "document-shortcode/"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: inc/options.php:
|
1143 |
msgid "Dropcap Letter"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: inc/options.php:
|
1147 |
msgid "Add the letter to be used as dropcap"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: inc/options.php:
|
1151 |
msgid "Color"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: inc/options.php:
|
1155 |
msgid ""
|
1156 |
"Controls the color of the dropcap letter. Leave blank for theme option "
|
1157 |
"selection."
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: inc/options.php:
|
1161 |
msgid "Boxed Dropcap"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: inc/options.php:
|
1165 |
msgid "Choose to get a boxed dropcap."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: inc/options.php:
|
1169 |
msgid "Box Radius"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: inc/options.php:
|
1173 |
msgid "Choose the radius of the boxed dropcap. In pixels (px), eg: 1px"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: inc/options.php:
|
1177 |
msgid "Dropcap Shortcode"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: inc/options.php:
|
1181 |
msgid "dropcap-shortcode/"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: inc/options.php:
|
1185 |
msgid "Select style for dummy image"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: inc/options.php:
|
1189 |
msgid "Any"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: inc/options.php:
|
1193 |
msgid "Transport"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: inc/options.php:
|
1197 |
msgid "Technics"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: inc/options.php:
|
1201 |
msgid "People"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: inc/options.php:
|
1205 |
msgid "Sports"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: inc/options.php:
|
1209 |
msgid "Cats"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: inc/options.php:
|
1213 |
msgid "City"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: inc/options.php:
|
1217 |
msgid "Food"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: inc/options.php:
|
1221 |
msgid "Night life"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: inc/options.php:
|
1225 |
msgid "Fashion"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: inc/options.php:
|
1229 |
msgid "Animals"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: inc/options.php:
|
1233 |
msgid "Business"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: inc/options.php:
|
1237 |
msgid "Nature"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: inc/options.php:
|
1241 |
msgid "Abstract"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: inc/options.php:
|
1245 |
msgid "Set width for image."
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: inc/options.php:
|
1249 |
msgid "Set height for image."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: inc/options.php:
|
1253 |
msgid "Dummy Image Shortcode"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: inc/options.php:
|
1257 |
msgid "dummy-image-shortcode/"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: inc/options.php:
|
1261 |
msgid "Select text type."
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: inc/options.php:
|
1265 |
msgid "Paragraphs"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: inc/options.php:
|
1269 |
msgid "Words"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: inc/options.php:
|
1273 |
msgid "Bytes"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: inc/options.php:
|
1277 |
msgid "Amount"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: inc/options.php:
|
1281 |
msgid "Choose how many paragraphs or words to show"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: inc/options.php:
|
1285 |
msgid "Dummy Text Shortcode"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: inc/options.php:
|
1289 |
msgid "dummy-text-shortcode/"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: inc/options.php:
|
1293 |
msgid "More Icon"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#: inc/options.php:
|
1297 |
msgid ""
|
1298 |
"Set icon for expand title. Click an icon to select, click again to deselect."
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: inc/options.php:
|
1302 |
msgid "More Text"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: inc/options.php:
|
1306 |
msgid "Set text for expand title."
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: inc/options.php:
|
1310 |
msgid "Less Icon"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: inc/options.php:
|
1314 |
msgid ""
|
1315 |
"Set icon for fold title. Click an icon to select, click again to deselect."
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: inc/options.php:
|
1319 |
msgid "Less Text"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: inc/options.php:
|
1323 |
msgid "Set text for fold title. "
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: inc/options.php:
|
1327 |
msgid "This text block can be expanded."
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: inc/options.php:
|
1331 |
msgid "Expand Shortcode"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: inc/options.php:
|
1335 |
msgid "expand-shortcode/"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: inc/options.php:
|
1339 |
msgid "Feature Box Style"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: inc/options.php:
|
1343 |
msgid "Select the Feature Box's Style."
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: inc/options.php:
|
1347 |
msgid "Icon on Top of Title"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: inc/options.php:
|
1351 |
msgid "Icon Beside Title and Content"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: inc/options.php:
|
1355 |
msgid "Icon Beside Title"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#: inc/options.php:
|
|
|
1359 |
msgid "Boxed"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: inc/options.php:
|
1363 |
msgid "Insert title for feature box."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: inc/options.php:
|
1367 |
msgid "Title Font Size"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: inc/options.php:
|
1371 |
msgid "Set font size for title of feature box."
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: inc/options.php:
|
1375 |
-
msgid "Title Color"
|
1376 |
-
msgstr ""
|
1377 |
-
|
1378 |
-
#: inc/options.php:1482
|
1379 |
msgid "Set color for title of feature box."
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: inc/options.php:
|
1383 |
msgid "Icon Hover Animation"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: inc/options.php:
|
1387 |
msgid "Select the Icon's Animation."
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: inc/options.php:
|
1391 |
msgid "Icon Size"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: inc/options.php:
|
1395 |
msgid "Set size for icon of feature box."
|
1396 |
msgstr ""
|
1397 |
|
1398 |
-
#: inc/options.php:
|
1399 |
-
#: inc/options.php:
|
1400 |
msgid "Icon Color"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: inc/options.php:
|
1404 |
msgid "Set color for icon of feature box."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: inc/options.php:
|
1408 |
msgid "Icon Border Color"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: inc/options.php:
|
1412 |
msgid "Set border color for icon of feature box."
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: inc/options.php:
|
1416 |
msgid "Icon Border Width"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#: inc/options.php:
|
1420 |
msgid "Set border width for icon of feature box."
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: inc/options.php:
|
1424 |
msgid "Flip Icon"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
-
#: inc/options.php:
|
1428 |
msgid "Choose to flip the icon of feature box."
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: inc/options.php:
|
1432 |
-
#: inc/options.php:
|
1433 |
msgid "None"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: inc/options.php:
|
1437 |
msgid "Horizontal"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: inc/options.php:
|
1441 |
msgid "Vertical"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#: inc/options.php:
|
1445 |
msgid "Spinning Icon"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#: inc/options.php:
|
1449 |
msgid "Choose to spin the icon of feature box."
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#: inc/options.php:
|
1453 |
-
#: inc/options.php:
|
1454 |
msgid "Icon Circle Background Color"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: inc/options.php:
|
1458 |
msgid "Set background for icon circle of feature box."
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: inc/options.php:
|
1462 |
msgid "Icon Alignment"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: inc/options.php:
|
1466 |
msgid "Set alignment for style2/style3 of feature box."
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: inc/options.php:
|
1470 |
msgid "Icon Circle"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: inc/options.php:
|
1474 |
msgid "Choose to display icon of feature box in circle."
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: inc/options.php:
|
1478 |
msgid "Icon Image"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: inc/options.php:
|
1482 |
msgid "To upload your own icon image, remember to deselect icon above."
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#: inc/options.php:
|
1486 |
msgid "Icon Image Width"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: inc/options.php:
|
1490 |
msgid ""
|
1491 |
"If using custom icon image, set icon image width. In percentage of pixels "
|
1492 |
"(px), eg: 1px."
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: inc/options.php:
|
1496 |
msgid "Icon Image Height"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: inc/options.php:
|
1500 |
msgid ""
|
1501 |
"If using custom icon image, set icon image height. In percentage of pixels "
|
1502 |
"(px), eg: 1px."
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: inc/options.php:
|
1506 |
msgid "Link URL"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: inc/options.php:
|
1510 |
msgid "Set link for feature box, eg: http://example.com."
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: inc/options.php:
|
1514 |
msgid "Link Target"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: inc/options.php:
|
1518 |
msgid "_self = open in same window _blank = open in new window."
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: inc/options.php:
|
1522 |
-
msgid "_blank"
|
1523 |
-
msgstr ""
|
1524 |
-
|
1525 |
-
#: inc/options.php:1605 inc/options.php:2066 inc/options.php:2411
|
1526 |
-
msgid "_self"
|
1527 |
-
msgstr ""
|
1528 |
-
|
1529 |
-
#: inc/options.php:1612
|
1530 |
msgid "Link Text"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: inc/options.php:
|
1534 |
msgid ""
|
1535 |
"Insert link text for feature box. It would not display if you leave it as "
|
1536 |
"blank."
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: inc/options.php:
|
1540 |
msgid "Link Color"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: inc/options.php:
|
1544 |
msgid "Set color for link of feature box."
|
1545 |
msgstr ""
|
1546 |
|
1547 |
-
#: inc/options.php:
|
1548 |
msgid "Content Color"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: inc/options.php:
|
1552 |
msgid "Set color for content of feature box."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: inc/options.php:
|
1556 |
msgid "Set box background color for Boxed Style."
|
1557 |
msgstr ""
|
1558 |
|
1559 |
-
#: inc/options.php:
|
1560 |
msgid "For Boxed Style"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#: inc/options.php:
|
1564 |
msgid "Your Content Goes Here"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
-
#: inc/options.php:
|
1568 |
msgid "Feature Box Content"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: inc/options.php:
|
1572 |
msgid "Feature Box Shortcode"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
-
#: inc/options.php:
|
1576 |
msgid "feature-box-shortcode/"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: inc/options.php:
|
1580 |
msgid "Direction"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: inc/options.php:
|
1584 |
msgid "Select flip directioon."
|
1585 |
msgstr ""
|
1586 |
|
1587 |
-
#: inc/options.php:
|
1588 |
msgid "Flip Left"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: inc/options.php:
|
1592 |
msgid "Flip Right"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#: inc/options.php:
|
1596 |
msgid "Flip Top"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: inc/options.php:
|
1600 |
msgid "Flip Bottom"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: inc/options.php:
|
1604 |
msgid "Slide Left"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: inc/options.php:
|
1608 |
msgid "Slide Right"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: inc/options.php:
|
1612 |
msgid "Slide Top"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: inc/options.php:
|
1616 |
msgid "Slide Bottom"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: inc/options.php:
|
1620 |
msgid "Front Container Paddings"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: inc/options.php:
|
1624 |
msgid "Set paddings for front container of flip box."
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: inc/options.php:
|
1628 |
msgid "Front Background Color"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#: inc/options.php:
|
1632 |
msgid "Set background color for front container of flip box."
|
1633 |
msgstr ""
|
1634 |
|
1635 |
-
#: inc/options.php:
|
1636 |
msgid "Front Font Color"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
#: inc/options.php:
|
1640 |
msgid "Custom setting only. Set the background color for custom alert boxes."
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: inc/options.php:
|
1644 |
msgid "Front Content"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: inc/options.php:
|
1648 |
msgid "Front content."
|
1649 |
msgstr ""
|
1650 |
|
1651 |
-
#: inc/options.php:
|
1652 |
msgid "Insert content for front container of flip box."
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: inc/options.php:
|
1656 |
msgid "Back Container Paddings"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: inc/options.php:
|
1660 |
msgid "Set paddings for back container of flip box."
|
1661 |
msgstr ""
|
1662 |
|
1663 |
-
#: inc/options.php:
|
1664 |
msgid "Back Background Color"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: inc/options.php:
|
1668 |
msgid "Set background color for back container of flip box."
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: inc/options.php:
|
1672 |
msgid "Back Font Color"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: inc/options.php:
|
1676 |
msgid "Back Content"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: inc/options.php:
|
1680 |
msgid "Back Content."
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: inc/options.php:
|
1684 |
msgid "Insert content for back container of flip box."
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: inc/options.php:
|
1688 |
msgid "Flip Box Shortcode"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: inc/options.php:
|
1692 |
msgid "flip-box-shortcode/"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: inc/options.php:
|
1696 |
msgid "Insert heading text"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: inc/options.php:
|
1700 |
msgid "Choose a heading style. Leave blank as default."
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1704 |
msgid "Set color for heading text."
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: inc/options.php:
|
1708 |
msgid "Set border color for heading."
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: inc/options.php:
|
1712 |
msgid "Text Align"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: inc/options.php:
|
1716 |
msgid "Set text align for this heading."
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#: inc/options.php:
|
1720 |
msgid "Font Weight"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: inc/options.php:
|
1724 |
msgid "Set font weight for heading text."
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: inc/options.php:
|
1728 |
msgid "Font Size"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: inc/options.php:
|
1732 |
msgid "Set font size for heading text. In pixels (px), eg: 1px."
|
1733 |
msgstr ""
|
1734 |
|
1735 |
-
#: inc/options.php:
|
1736 |
msgid "Responsive Text"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
-
#: inc/options.php:
|
1740 |
msgid "Choose to display responsive text."
|
1741 |
msgstr ""
|
1742 |
|
1743 |
-
#: inc/options.php:
|
1744 |
msgid "Heading Shortcode"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
-
#: inc/options.php:
|
1748 |
msgid "heading-shortcode/"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#: inc/options.php:
|
1752 |
msgid "Set background color for highlight item."
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: inc/options.php:
|
1756 |
msgid "Set font color for highlight item."
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: inc/options.php:
|
1760 |
msgid "Content to Higlight"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: inc/options.php:
|
1764 |
msgid "Insert content to highlight."
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: inc/options.php:
|
1768 |
msgid "Highlight Shortcode"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
#: inc/options.php:
|
1772 |
msgid "highlight-shortcode/"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#: inc/options.php:
|
1776 |
msgid "Set text size for item."
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#: inc/options.php:
|
1780 |
msgid "Set color for icon."
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: inc/options.php:
|
1784 |
msgid "Icon Box"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#: inc/options.php:
|
1788 |
msgid "Choose to display boxed icon."
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: inc/options.php:
|
1792 |
msgid "Icon Shortcode"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#: inc/options.php:
|
1796 |
msgid "icon-shortcode/"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
-
#: inc/options.php:
|
1800 |
msgid "Select how the image compare display."
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: inc/options.php:
|
1804 |
msgid "Percent"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#: inc/options.php:
|
1808 |
msgid "Choose default offset pct"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#: inc/options.php:
|
1812 |
msgid "Image Left"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#: inc/options.php:
|
1816 |
msgid "Insert the image displayed in the left."
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: inc/options.php:
|
1820 |
msgid "Image Right"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: inc/options.php:
|
1824 |
msgid "Insert the image displayed in the right."
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: inc/options.php:
|
1828 |
msgid "Image Compare Shortcode"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: inc/options.php:
|
1832 |
msgid "image-compare-shortcode/"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#: inc/options.php:
|
1836 |
msgid "Upload an image to display."
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#: inc/options.php:
|
1840 |
msgid "Image Link URL"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: inc/options.php:
|
1844 |
msgid "Add the URL the picture will link to, ex: http://example.com."
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#: inc/options.php:
|
1848 |
msgid ""
|
1849 |
"Choose the border radius of the image frame. In pixels (px), ex: 1px, or "
|
1850 |
"\"round\". Leave blank for theme option selection."
|
1851 |
msgstr ""
|
1852 |
|
1853 |
-
#: inc/options.php:
|
1854 |
msgid "Light Box"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
-
#: inc/options.php:
|
1858 |
msgid "Choose to display light box once click."
|
1859 |
msgstr ""
|
1860 |
|
1861 |
-
#: inc/options.php:
|
1862 |
msgid "Image Frame Shortcode"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
-
#: inc/options.php:
|
1866 |
msgid "image-frame-shortcode/"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
-
#: inc/options.php:
|
1870 |
-
msgid "Text"
|
1871 |
-
msgstr ""
|
1872 |
-
|
1873 |
-
#: inc/options.php:2118
|
1874 |
msgid "Insert text to be displayed in label."
|
1875 |
msgstr ""
|
1876 |
|
1877 |
-
#: inc/options.php:
|
1878 |
msgid "Set background color for label."
|
1879 |
msgstr ""
|
1880 |
|
1881 |
-
#: inc/options.php:
|
1882 |
msgid "Label Shortcode"
|
1883 |
msgstr ""
|
1884 |
|
1885 |
-
#: inc/options.php:
|
1886 |
msgid "label-shortcode/"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
-
#: inc/options.php:
|
1890 |
msgid "Set color fo list icon."
|
1891 |
msgstr ""
|
1892 |
|
1893 |
-
#: inc/options.php:
|
1894 |
msgid "Icon Boxed"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
-
#: inc/options.php:
|
1898 |
msgid "Choose to set icon boxed."
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: inc/options.php:
|
1902 |
msgid "Set background color for list icon."
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: inc/options.php:
|
1906 |
msgid "Boxed Shape"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
-
#: inc/options.php:
|
1910 |
msgid "Choose boxed shape for list icon."
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: inc/options.php:
|
1914 |
msgid "Circle"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: inc/options.php:
|
1918 |
msgid "Item Border"
|
1919 |
msgstr ""
|
1920 |
|
1921 |
-
#: inc/options.php:
|
1922 |
msgid "Choose to display item border for list."
|
1923 |
msgstr ""
|
1924 |
|
1925 |
-
#: inc/options.php:
|
1926 |
msgid "Item Size"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
-
#: inc/options.php:
|
1930 |
msgid "Set text font size for item."
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#: inc/options.php:
|
1934 |
msgid "List items"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#: inc/options.php:
|
1938 |
msgid "List Shortcode"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#: inc/options.php:
|
1942 |
msgid "list-shortcode/"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#: inc/options.php:
|
1946 |
msgid "Modal Anchor Text"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
-
#: inc/options.php:
|
1950 |
msgid "Insert anchor text for the modal."
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#: inc/options.php:
|
1954 |
msgid "Modal Heading"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
-
#: inc/options.php:
|
1958 |
msgid "Insert heading text for the modal."
|
1959 |
msgstr ""
|
1960 |
|
1961 |
-
#: inc/options.php:
|
1962 |
msgid "Size Of Modal"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: inc/options.php:
|
1966 |
msgid "Select the modal window size."
|
1967 |
msgstr ""
|
1968 |
|
1969 |
-
#: inc/options.php:
|
1970 |
msgid "Middle"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
-
#: inc/options.php:
|
1974 |
msgid "Show Footer"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
-
#: inc/options.php:
|
1978 |
msgid "Choose to show the modal footer with close button."
|
1979 |
msgstr ""
|
1980 |
|
1981 |
-
#: inc/options.php:
|
1982 |
msgid "Contents of Modal"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
-
#: inc/options.php:
|
1986 |
msgid "Add your content to be displayed in modal."
|
1987 |
msgstr ""
|
1988 |
|
1989 |
-
#: inc/options.php:
|
1990 |
msgid "Modal Shortcode"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#: inc/options.php:
|
1994 |
msgid "modal-shortcode/"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
-
#: inc/options.php:
|
1998 |
msgid "Select a menu"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
-
#: inc/options.php:
|
2002 |
msgid "Menu Shortcode"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
-
#: inc/options.php:
|
2006 |
msgid "Insert title for panel."
|
2007 |
msgstr ""
|
2008 |
|
2009 |
-
#: inc/options.php:
|
2010 |
msgid "Panel content."
|
2011 |
msgstr ""
|
2012 |
|
2013 |
-
#: inc/options.php:
|
2014 |
msgid "Panel Content"
|
2015 |
msgstr ""
|
2016 |
|
2017 |
-
#: inc/options.php:
|
2018 |
msgid "Insert content for panel."
|
2019 |
msgstr ""
|
2020 |
|
2021 |
-
#: inc/options.php:
|
2022 |
msgid "Set color for panel title."
|
2023 |
msgstr ""
|
2024 |
|
2025 |
-
#: inc/options.php:
|
2026 |
msgid "Set color for panel border."
|
2027 |
msgstr ""
|
2028 |
|
2029 |
-
#: inc/options.php:
|
2030 |
-
msgid "Title Background Color"
|
2031 |
-
msgstr ""
|
2032 |
-
|
2033 |
-
#: inc/options.php:2346
|
2034 |
msgid "Set background color for panel title."
|
2035 |
msgstr ""
|
2036 |
|
2037 |
-
#: inc/options.php:
|
2038 |
msgid "Panel Shortcode"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
-
#: inc/options.php:
|
2042 |
msgid "panel-shortcode/"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#: inc/options.php:
|
2046 |
msgid "Choose to display info below or beside the image."
|
2047 |
msgstr ""
|
2048 |
|
2049 |
-
#: inc/options.php:
|
2050 |
msgid "Below"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
-
#: inc/options.php:
|
2054 |
msgid "Beside"
|
2055 |
msgstr ""
|
2056 |
|
2057 |
-
#: inc/options.php:
|
2058 |
msgid "Name"
|
2059 |
msgstr ""
|
2060 |
|
2061 |
-
#: inc/options.php:
|
2062 |
msgid "Insert the name of the person."
|
2063 |
msgstr ""
|
2064 |
|
2065 |
-
#: inc/options.php:
|
2066 |
msgid "Insert the title of the person"
|
2067 |
msgstr ""
|
2068 |
|
2069 |
-
#: inc/options.php:
|
2070 |
msgid "Image Overlay Color"
|
2071 |
msgstr ""
|
2072 |
|
2073 |
-
#: inc/options.php:
|
2074 |
msgid "Select a hover color to show over the image as an overlay."
|
2075 |
msgstr ""
|
2076 |
|
2077 |
-
#: inc/options.php:
|
2078 |
msgid "Image Overlay Opacity"
|
2079 |
msgstr ""
|
2080 |
|
2081 |
-
#: inc/options.php:
|
2082 |
msgid "Opacity ranges between 0 (transparent) and 1 (opaque). ex: .5"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: inc/options.php:
|
2086 |
msgid "Profile Description"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#: inc/options.php:
|
2090 |
msgid "Insert profile description."
|
2091 |
msgstr ""
|
2092 |
|
2093 |
-
#: inc/options.php:
|
2094 |
msgid "Picture"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
-
#: inc/options.php:
|
2098 |
msgid "Picture Link URL"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
-
#: inc/options.php:
|
2102 |
msgid "Picture Border Size"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
-
#: inc/options.php:
|
2106 |
msgid "In pixels (px), ex: 1px. Leave blank for theme option selection."
|
2107 |
msgstr ""
|
2108 |
|
2109 |
-
#: inc/options.php:
|
2110 |
msgid "Picture Border Color"
|
2111 |
msgstr ""
|
2112 |
|
2113 |
-
#: inc/options.php:
|
2114 |
msgid ""
|
2115 |
"Controls the picture's border color. Leave blank for theme option selection."
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: inc/options.php:
|
2119 |
msgid "Picture Border Radius"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#: inc/options.php:
|
2123 |
msgid ""
|
2124 |
"Choose the border radius of the person image. In pixels (px), ex: 1px, or "
|
2125 |
"\"round\". Leave blank for theme option selection."
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#: inc/options.php:
|
2129 |
msgid "Social Icon Box Radius"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: inc/options.php:
|
2133 |
msgid ""
|
2134 |
"Choose the border radius of the boxed icons. In pixels (px), ex: 1px, or "
|
2135 |
"\"round\". Leave blank for theme option selection."
|
2136 |
msgstr ""
|
2137 |
|
2138 |
-
#: inc/options.php:
|
2139 |
msgid "Social Icon Custom Colors"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
-
#: inc/options.php:
|
2143 |
msgid ""
|
2144 |
"Controls the Icon's border color. Leave blank for theme option selection."
|
2145 |
msgstr ""
|
2146 |
|
2147 |
-
#: inc/options.php:
|
2148 |
msgid "Icon1"
|
2149 |
msgstr ""
|
2150 |
|
2151 |
-
#: inc/options.php:
|
2152 |
msgid "Link1 "
|
2153 |
msgstr ""
|
2154 |
|
2155 |
-
#: inc/options.php:
|
2156 |
msgid "The Icon1 Link "
|
2157 |
msgstr ""
|
2158 |
|
2159 |
-
#: inc/options.php:
|
2160 |
msgid "Icon2"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
-
#: inc/options.php:
|
2164 |
msgid "Link2 "
|
2165 |
msgstr ""
|
2166 |
|
2167 |
-
#: inc/options.php:
|
2168 |
msgid "The Icon2 Link "
|
2169 |
msgstr ""
|
2170 |
|
2171 |
-
#: inc/options.php:
|
2172 |
msgid "Icon3"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
-
#: inc/options.php:
|
2176 |
msgid "Link3 "
|
2177 |
msgstr ""
|
2178 |
|
2179 |
-
#: inc/options.php:
|
2180 |
msgid "The Icon3 Link "
|
2181 |
msgstr ""
|
2182 |
|
2183 |
-
#: inc/options.php:
|
2184 |
msgid "Icon4"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#: inc/options.php:
|
2188 |
msgid "Link4"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
-
#: inc/options.php:
|
2192 |
msgid "The Icon4 Link "
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: inc/options.php:
|
2196 |
msgid "Icon5"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: inc/options.php:
|
2200 |
msgid "Link5"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#: inc/options.php:
|
2204 |
msgid "The Icon5 Link "
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#: inc/options.php:
|
2208 |
msgid "Person Shortcode"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
-
#: inc/options.php:
|
2212 |
msgid "person-shortcode/"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#: inc/options.php:
|
2216 |
msgid "Line Cap"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: inc/options.php:
|
2220 |
msgid "Select how the ending of the bar line looks like."
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: inc/options.php:
|
2224 |
msgid "Round"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
-
#: inc/options.php:
|
2228 |
msgid "Butt"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
-
#: inc/options.php:
|
2232 |
msgid "From 1 to 100."
|
2233 |
msgstr ""
|
2234 |
|
2235 |
-
#: inc/options.php:
|
2236 |
msgid "Insert title for piechart. It need to be short."
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#: inc/options.php:
|
2240 |
msgid "Size"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#: inc/options.php:
|
2244 |
msgid "Set size for piechart."
|
2245 |
msgstr ""
|
2246 |
|
2247 |
-
#: inc/options.php:
|
2248 |
msgid "Set font size for piechart title."
|
2249 |
msgstr ""
|
2250 |
|
2251 |
-
#: inc/options.php:
|
2252 |
msgid "Filled Color"
|
2253 |
msgstr ""
|
2254 |
|
2255 |
-
#: inc/options.php:
|
2256 |
msgid "Set color for filled area in piechart."
|
2257 |
msgstr ""
|
2258 |
|
2259 |
-
#: inc/options.php:
|
2260 |
msgid "Unfilled Color"
|
2261 |
msgstr ""
|
2262 |
|
2263 |
-
#: inc/options.php:
|
2264 |
msgid "Set color for unfilled area in piechart."
|
2265 |
msgstr ""
|
2266 |
|
2267 |
-
#: inc/options.php:
|
2268 |
msgid "Piechart Shortcode"
|
2269 |
msgstr ""
|
2270 |
|
2271 |
-
#: inc/options.php:
|
2272 |
msgid "piechart-shortcode/"
|
2273 |
msgstr ""
|
2274 |
|
2275 |
-
#: inc/options.php:
|
2276 |
msgid "Popover Heading"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#: inc/options.php:
|
2280 |
msgid "Insert heading text of the popover."
|
2281 |
msgstr ""
|
2282 |
|
2283 |
-
#: inc/options.php:
|
2284 |
msgid "Triggering Text"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
-
#: inc/options.php:
|
2288 |
msgid "Content that will trigger the popover."
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#: inc/options.php:
|
2292 |
msgid "Contents Inside Popover"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
-
#: inc/options.php:
|
2296 |
msgid "Text to be displayed inside the popover."
|
2297 |
msgstr ""
|
2298 |
|
2299 |
-
#: inc/options.php:
|
2300 |
msgid "Popover Trigger Method"
|
2301 |
msgstr ""
|
2302 |
|
2303 |
-
#: inc/options.php:
|
2304 |
msgid "Choose mouse action to trigger popover."
|
2305 |
msgstr ""
|
2306 |
|
2307 |
-
#: inc/options.php:
|
2308 |
msgid "Click"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
-
#: inc/options.php:
|
2312 |
msgid "Hover"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#: inc/options.php:
|
2316 |
msgid "Popover Position"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: inc/options.php:
|
2320 |
msgid "Choose the display position of the popover."
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#: inc/options.php:
|
2324 |
msgid "Top"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: inc/options.php:
|
2328 |
msgid "Bottom"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: inc/options.php:
|
2332 |
msgid "Popover Shortcode"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: inc/options.php:
|
2336 |
msgid "popover-shortcode/"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: inc/options.php:
|
2340 |
msgid "Choose the show of progress bar."
|
2341 |
msgstr ""
|
2342 |
|
2343 |
-
#: inc/options.php:
|
2344 |
msgid "Normal Style"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: inc/options.php:
|
2348 |
msgid "Circle Style"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#: inc/options.php:
|
2352 |
msgid "Striped"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
#: inc/options.php:
|
2356 |
msgid "Choose to get the filled area striped."
|
2357 |
msgstr ""
|
2358 |
|
2359 |
-
#: inc/options.php:
|
2360 |
msgid "None Striped"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
-
#: inc/options.php:
|
2364 |
msgid "Striped Animated"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
-
#: inc/options.php:
|
2368 |
msgid "Choose to set the progress bar as rounded."
|
2369 |
msgstr ""
|
2370 |
|
2371 |
-
#: inc/options.php:
|
2372 |
msgid "On"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: inc/options.php:
|
2376 |
msgid "Off"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: inc/options.php:
|
2380 |
msgid "Display Number"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
#: inc/options.php:
|
2384 |
msgid "Choose to diplay number for progress bar."
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: inc/options.php:
|
2388 |
msgid "Set percentage for progress bar. 0~100."
|
2389 |
msgstr ""
|
2390 |
|
2391 |
-
#: inc/options.php:
|
2392 |
msgid "Insert text for progress bar."
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: inc/options.php:
|
2396 |
msgid "Set height for progress bar."
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: inc/options.php:
|
2400 |
msgid "Set background color for filled area in progress bar."
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: inc/options.php:
|
2404 |
msgid "Set align for progress bar."
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: inc/options.php:
|
2408 |
msgid "Text Position"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
-
#: inc/options.php:
|
2412 |
msgid "Choose text position for progress bar."
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: inc/options.php:
|
2416 |
msgid "Text on Progress bars"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
-
#: inc/options.php:
|
2420 |
msgid "Text above progress bars"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: inc/options.php:
|
2424 |
msgid "Progress Shortcode"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
-
#: inc/options.php:
|
2428 |
msgid "progress-bar-shortcode/"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#: inc/options.php:
|
2432 |
msgid "Select style for promo box."
|
2433 |
msgstr ""
|
2434 |
|
2435 |
-
#: inc/options.php:
|
2436 |
msgid "Set color for highlight border of promo box."
|
2437 |
msgstr ""
|
2438 |
|
2439 |
-
#: inc/options.php:
|
2440 |
msgid "Set width for highlight border of promo box."
|
2441 |
msgstr ""
|
2442 |
|
2443 |
-
#: inc/options.php:
|
2444 |
msgid "Border Position"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#: inc/options.php:
|
2448 |
msgid "Choose position for highlight border of promo box."
|
2449 |
msgstr ""
|
2450 |
|
2451 |
-
#: inc/options.php:
|
2452 |
msgid "Set background color for promo box."
|
2453 |
msgstr ""
|
2454 |
|
2455 |
-
#: inc/options.php:
|
2456 |
msgid "Inser text for button of promo box."
|
2457 |
msgstr ""
|
2458 |
|
2459 |
-
#: inc/options.php:
|
2460 |
msgid "Button Text Color"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: inc/options.php:
|
2464 |
msgid "Button Link URL"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
-
#: inc/options.php:
|
2468 |
msgid "Inser link for button of promo box, eg: http://example.com."
|
2469 |
msgstr ""
|
2470 |
|
2471 |
-
#: inc/options.php:
|
2472 |
msgid "Insert content for promo box."
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#: inc/options.php:
|
2476 |
msgid "Promo Box Shortcode"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
-
#: inc/options.php:
|
2480 |
msgid "promo-box-shortcode/"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
-
#: inc/options.php:
|
2484 |
msgid "Set alignment for pullquote."
|
2485 |
msgstr ""
|
2486 |
|
2487 |
-
#: inc/options.php:
|
2488 |
msgid "Insert content for pullquote."
|
2489 |
msgstr ""
|
2490 |
|
2491 |
-
#: inc/options.php:
|
2492 |
msgid "Pullquote Shortcode"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
-
#: inc/options.php:
|
2496 |
msgid "pullquote-shortcode/"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#: inc/options.php:
|
2500 |
msgid "The text to store within the QR code. Any text or URL is available."
|
2501 |
msgstr ""
|
2502 |
|
2503 |
-
#: inc/options.php:
|
2504 |
msgid "Alternative text"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: inc/options.php:
|
2508 |
msgid "Set image alt for QR code."
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#: inc/options.php:
|
2512 |
msgid "Size in pixel"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
-
#: inc/options.php:
|
2516 |
msgid "Image width and height."
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#: inc/options.php:
|
2520 |
msgid "QRCode clickable?"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: inc/options.php:
|
2524 |
msgid "Choose to make this QR code clickable."
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#: inc/options.php:
|
2528 |
msgid "Foreground Color"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: inc/options.php:
|
2532 |
msgid "Set foreground Color for QR code."
|
2533 |
msgstr ""
|
2534 |
|
2535 |
-
#: inc/options.php:
|
2536 |
msgid "Set background Color for QR code."
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
#: inc/options.php:
|
2540 |
msgid "QR Code Shortcode"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
#: inc/options.php:
|
2544 |
msgid "qr-code-shortcode/"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: inc/options.php:
|
2548 |
msgid "Cite"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: inc/options.php:
|
2552 |
msgid "Author name for quote."
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: inc/options.php:
|
2556 |
msgid "Cite Link"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
-
#: inc/options.php:
|
2560 |
msgid "Insert Url for the quote author. Leave empty to disable hyperlink."
|
2561 |
msgstr ""
|
2562 |
|
2563 |
-
#: inc/options.php:
|
2564 |
msgid "Insert content for the quote."
|
2565 |
msgstr ""
|
2566 |
|
2567 |
-
#: inc/options.php:
|
2568 |
msgid "Quote Shortcode"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
-
#: inc/options.php:
|
2572 |
msgid "quote-shortcode/"
|
2573 |
msgstr ""
|
2574 |
|
2575 |
-
#: inc/options.php:
|
2576 |
msgid "Feed URL"
|
2577 |
msgstr ""
|
2578 |
|
2579 |
-
#: inc/options.php:
|
2580 |
msgid "Url of RSS Feed."
|
2581 |
msgstr ""
|
2582 |
|
2583 |
-
#: inc/options.php:
|
2584 |
msgid "Number to Display"
|
2585 |
msgstr ""
|
2586 |
|
2587 |
-
#: inc/options.php:
|
2588 |
msgid "Number of items to show."
|
2589 |
msgstr ""
|
2590 |
|
2591 |
-
#: inc/options.php:
|
2592 |
msgid "RSS Feed Shortcode"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
-
#: inc/options.php:
|
2596 |
msgid "rss-feed-shortcode/"
|
2597 |
msgstr ""
|
2598 |
|
2599 |
-
#: inc/options.php:
|
2600 |
msgid "Time"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
-
#: inc/options.php:
|
2604 |
msgid ""
|
2605 |
"Select an random time in one day to show content.</br>Example: 6-12,13-16 "
|
2606 |
"show content from 6:00 to 12:00 and from 13:00 to 16:00"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
-
#: inc/options.php:
|
2610 |
msgid "Days of Week"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
-
#: inc/options.php:
|
2614 |
msgid ""
|
2615 |
"Select days from one week to show content.</br>1 => Monday </br>2 => "
|
2616 |
"Tuesday </br> 3 => Wednesday</br> 4 => Thursday </br> 5 => Friday </br> 6 "
|
@@ -2618,11 +2719,11 @@ msgid ""
|
|
2618 |
"and from Monday to Friday"
|
2619 |
msgstr ""
|
2620 |
|
2621 |
-
#: inc/options.php:
|
2622 |
msgid "Days of Month"
|
2623 |
msgstr ""
|
2624 |
|
2625 |
-
#: inc/options.php:
|
2626 |
msgid ""
|
2627 |
"Select days from one month to show content.</br>Examples:</br>1 => show "
|
2628 |
"content only at first day of month </br> 10-25 => show content from 10th to "
|
@@ -2630,597 +2731,617 @@ msgid ""
|
|
2630 |
"25th"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
-
#: inc/options.php:
|
2634 |
msgid "Months"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
-
#: inc/options.php:
|
2638 |
msgid ""
|
2639 |
"Select months from a year to show content.</br>Examples:</br>1 => show "
|
2640 |
"content in January </br> 3-6 => show content from March to June </br> "
|
2641 |
"1,5,8-9 => show content in January,May and from August to September"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
-
#: inc/options.php:
|
2645 |
msgid "Years"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
-
#: inc/options.php:
|
2649 |
msgid ""
|
2650 |
"Select years to show content.</br>Examples:</br> 2016 => show content in "
|
2651 |
"2016 </br>2014-2016 => show content from 2014 to 2016 </br> "
|
2652 |
"2016,2017,2345-2666 => show content in 2016,2017 and from 2345 to 2666"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
-
#: inc/options.php:
|
2656 |
msgid "Insert scheduled content."
|
2657 |
msgstr ""
|
2658 |
|
2659 |
-
#: inc/options.php:
|
2660 |
msgid "Scheduled Shortcode"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
-
#: inc/options.php:
|
2664 |
msgid "scheduled-shortcode/"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
-
#: inc/options.php:
|
2668 |
msgid "Set background for section. Leave blank for transparent."
|
2669 |
msgstr ""
|
2670 |
|
2671 |
-
#: inc/options.php:
|
2672 |
msgid "Upload an image to display in the background."
|
2673 |
msgstr ""
|
2674 |
|
2675 |
-
#: inc/options.php:
|
2676 |
msgid "Background Repeat"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
-
#: inc/options.php:
|
2680 |
msgid "Choose repeat style for the background image."
|
2681 |
msgstr ""
|
2682 |
|
2683 |
-
#: inc/options.php:
|
2684 |
msgid "Repeat"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
-
#: inc/options.php:
|
2688 |
msgid "Repeat-x"
|
2689 |
msgstr ""
|
2690 |
|
2691 |
-
#: inc/options.php:
|
2692 |
msgid "Repeat-y"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
-
#: inc/options.php:
|
2696 |
msgid "No-repeat"
|
2697 |
msgstr ""
|
2698 |
|
2699 |
-
#: inc/options.php:
|
2700 |
msgid "Inherit"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
-
#: inc/options.php:
|
2704 |
msgid "Choose the postion of the background image."
|
2705 |
msgstr ""
|
2706 |
|
2707 |
-
#: inc/options.php:
|
2708 |
msgid "Background Parallax"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
-
#: inc/options.php:
|
2712 |
msgid "Choose how the background image scrolls and responds."
|
2713 |
msgstr ""
|
2714 |
|
2715 |
-
#: inc/options.php:
|
2716 |
msgid "Set border color for section."
|
2717 |
msgstr ""
|
2718 |
|
2719 |
-
#: inc/options.php:
|
2720 |
msgid "Select border style for section"
|
2721 |
msgstr ""
|
2722 |
|
2723 |
-
#: inc/options.php:
|
2724 |
msgid "Hidden"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
-
#: inc/options.php:
|
2728 |
msgid "Solid"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
-
#: inc/options.php:
|
2732 |
msgid "Double"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
-
#: inc/options.php:
|
2736 |
msgid "Groove"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
-
#: inc/options.php:
|
2740 |
msgid "Ridge"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
-
#: inc/options.php:
|
2744 |
msgid "Inset"
|
2745 |
msgstr ""
|
2746 |
|
2747 |
-
#: inc/options.php:
|
2748 |
msgid "Outset"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
-
#: inc/options.php:
|
2752 |
msgid "Initial"
|
2753 |
msgstr ""
|
2754 |
|
2755 |
-
#: inc/options.php:
|
2756 |
msgid "Padding Top"
|
2757 |
msgstr ""
|
2758 |
|
2759 |
-
#: inc/options.php:
|
2760 |
msgid "Padding Bottom"
|
2761 |
msgstr ""
|
2762 |
|
2763 |
-
#: inc/options.php:
|
2764 |
msgid "Padding Left"
|
2765 |
msgstr ""
|
2766 |
|
2767 |
-
#: inc/options.php:
|
2768 |
msgid "Padding Right"
|
2769 |
msgstr ""
|
2770 |
|
2771 |
-
#: inc/options.php:
|
2772 |
msgid "Contents in Container ?"
|
2773 |
msgstr ""
|
2774 |
|
2775 |
-
#: inc/options.php:
|
2776 |
msgid "Put the content in container."
|
2777 |
msgstr ""
|
2778 |
|
2779 |
-
#: inc/options.php:
|
2780 |
msgid "Section content."
|
2781 |
msgstr ""
|
2782 |
|
2783 |
-
#: inc/options.php:
|
2784 |
msgid "Section Content"
|
2785 |
msgstr ""
|
2786 |
|
2787 |
-
#: inc/options.php:
|
2788 |
msgid "Insert content for section."
|
2789 |
msgstr ""
|
2790 |
|
2791 |
-
#: inc/options.php:
|
2792 |
msgid "Top Separator"
|
2793 |
msgstr ""
|
2794 |
|
2795 |
-
#: inc/options.php:
|
2796 |
msgid "Triangle"
|
2797 |
msgstr ""
|
2798 |
|
2799 |
-
#: inc/options.php:
|
2800 |
msgid "Doublediagonal"
|
2801 |
msgstr ""
|
2802 |
|
2803 |
-
#: inc/options.php:
|
2804 |
msgid "Halfcircle"
|
2805 |
msgstr ""
|
2806 |
|
2807 |
-
#: inc/options.php:
|
2808 |
msgid "Bigtriangle"
|
2809 |
msgstr ""
|
2810 |
|
2811 |
-
#: inc/options.php:
|
2812 |
msgid "Bighalfcircle"
|
2813 |
msgstr ""
|
2814 |
|
2815 |
-
#: inc/options.php:
|
2816 |
msgid "Curl"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
-
#: inc/options.php:
|
2820 |
msgid "Multitriangles"
|
2821 |
msgstr ""
|
2822 |
|
2823 |
-
#: inc/options.php:
|
2824 |
msgid "Roundedsplit"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
-
#: inc/options.php:
|
2828 |
msgid "Boxes"
|
2829 |
msgstr ""
|
2830 |
|
2831 |
-
#: inc/options.php:
|
2832 |
msgid "Zigzag"
|
2833 |
msgstr ""
|
2834 |
|
2835 |
-
#: inc/options.php:
|
2836 |
msgid "Clouds"
|
2837 |
msgstr ""
|
2838 |
|
2839 |
-
#: inc/options.php:
|
2840 |
msgid "Bottom Separator"
|
2841 |
msgstr ""
|
2842 |
|
2843 |
-
#: inc/options.php:
|
2844 |
msgid "Roundedcorners"
|
2845 |
msgstr ""
|
2846 |
|
2847 |
-
#: inc/options.php:
|
2848 |
msgid "Foldedcorner"
|
2849 |
msgstr ""
|
2850 |
|
2851 |
-
#: inc/options.php:
|
2852 |
msgid "Stamp"
|
2853 |
msgstr ""
|
2854 |
|
2855 |
-
#: inc/options.php:
|
2856 |
msgid "Full Height"
|
2857 |
msgstr ""
|
2858 |
|
2859 |
-
#: inc/options.php:
|
2860 |
msgid "Choose to set the section height same as browser window."
|
2861 |
msgstr ""
|
2862 |
|
2863 |
-
#: inc/options.php:
|
2864 |
msgid "Section Shortcode"
|
2865 |
msgstr ""
|
2866 |
|
2867 |
-
#: inc/options.php:
|
2868 |
msgid "section-shortcode/"
|
2869 |
msgstr ""
|
2870 |
|
2871 |
-
#: inc/options.php:
|
2872 |
msgid "Slider"
|
2873 |
msgstr ""
|
2874 |
|
2875 |
-
#: inc/options.php:
|
2876 |
msgid "slider-shortcode/"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: inc/options.php:
|
2880 |
msgid "Title "
|
2881 |
msgstr ""
|
2882 |
|
2883 |
-
#: inc/options.php:
|
2884 |
msgid "Insert the title for the social icon."
|
2885 |
msgstr ""
|
2886 |
|
2887 |
-
#: inc/options.php:
|
2888 |
msgid "In pixels (px), eg: 13px."
|
2889 |
msgstr ""
|
2890 |
|
2891 |
-
#: inc/options.php:
|
2892 |
msgid "Set background color for icon."
|
2893 |
msgstr ""
|
2894 |
|
2895 |
-
#: inc/options.php:
|
2896 |
msgid "Icon 3D effect"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: inc/options.php:
|
2900 |
msgid "Display box shadow for icon."
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: inc/options.php:
|
2904 |
msgid "Icon Box Radius Style"
|
2905 |
msgstr ""
|
2906 |
|
2907 |
-
#: inc/options.php:
|
2908 |
msgid "Circle "
|
2909 |
msgstr ""
|
2910 |
|
2911 |
-
#: inc/options.php:
|
2912 |
msgid "Icon Link URL"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
-
#: inc/options.php:
|
2916 |
msgid "Add the icon's url eg: http://example.com."
|
2917 |
msgstr ""
|
2918 |
|
2919 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
2920 |
msgid "Social Shortcode"
|
2921 |
msgstr ""
|
2922 |
|
2923 |
-
#: inc/options.php:
|
2924 |
msgid "social-shortcode/"
|
2925 |
msgstr ""
|
2926 |
|
2927 |
-
#: inc/options.php:
|
2928 |
msgid "Select tabs' style."
|
2929 |
msgstr ""
|
2930 |
|
2931 |
-
#: inc/options.php:
|
2932 |
msgid "Simple Style Justified"
|
2933 |
msgstr ""
|
2934 |
|
2935 |
-
#: inc/options.php:
|
2936 |
msgid "Button Style Justified"
|
2937 |
msgstr ""
|
2938 |
|
2939 |
-
#: inc/options.php:
|
2940 |
msgid "Normal Style Justified"
|
2941 |
msgstr ""
|
2942 |
|
2943 |
-
#: inc/options.php:
|
2944 |
msgid "Vertical Style"
|
2945 |
msgstr ""
|
2946 |
|
2947 |
-
#: inc/options.php:
|
2948 |
msgid "Vertical Style Right"
|
2949 |
msgstr ""
|
2950 |
|
2951 |
-
#: inc/options.php:
|
2952 |
msgid "Set color for tab item's title."
|
2953 |
msgstr ""
|
2954 |
|
2955 |
-
#: inc/options.php:
|
2956 |
msgid "Tab Items"
|
2957 |
msgstr ""
|
2958 |
|
2959 |
-
#: inc/options.php:
|
2960 |
msgid "Insert tab items."
|
2961 |
msgstr ""
|
2962 |
|
2963 |
-
#: inc/options.php:
|
2964 |
msgid "Tab Shortcode"
|
2965 |
msgstr ""
|
2966 |
|
2967 |
-
#: inc/options.php:
|
2968 |
msgid "tabs-shortcode/"
|
2969 |
msgstr ""
|
2970 |
|
2971 |
-
#: inc/options.php:
|
2972 |
msgid ""
|
2973 |
"Select visible permissions.Private for author only. Members for logged-in "
|
2974 |
"users. Guests for users not logged in."
|
2975 |
msgstr ""
|
2976 |
|
2977 |
-
#: inc/options.php:
|
2978 |
msgid "Private"
|
2979 |
msgstr ""
|
2980 |
|
2981 |
-
#: inc/options.php:
|
2982 |
msgid "Members"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
-
#: inc/options.php:
|
2986 |
msgid "Guests"
|
2987 |
msgstr ""
|
2988 |
|
2989 |
-
#: inc/options.php:
|
2990 |
msgid "Set content for targeted users."
|
2991 |
msgstr ""
|
2992 |
|
2993 |
-
#: inc/options.php:
|
2994 |
msgid "Alternative Content"
|
2995 |
msgstr ""
|
2996 |
|
2997 |
-
#: inc/options.php:
|
2998 |
msgid "Set content for other users."
|
2999 |
msgstr ""
|
3000 |
|
3001 |
-
#: inc/options.php:
|
3002 |
msgid "Targeted Shortcode"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
-
#: inc/options.php:
|
3006 |
msgid "targeted-shortcode/"
|
3007 |
msgstr ""
|
3008 |
|
3009 |
-
#: inc/options.php:
|
3010 |
msgid "Style "
|
3011 |
msgstr ""
|
3012 |
|
3013 |
-
#: inc/options.php:
|
3014 |
msgid "Select testimonial's style"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
-
#: inc/options.php:
|
3018 |
msgid "Box"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
-
#: inc/options.php:
|
3022 |
msgid "Name of testimonial's author."
|
3023 |
msgstr ""
|
3024 |
|
3025 |
-
#: inc/options.php:
|
3026 |
msgid "Byline"
|
3027 |
msgstr ""
|
3028 |
|
3029 |
-
#: inc/options.php:
|
3030 |
msgid "Byline of testimonial's author."
|
3031 |
msgstr ""
|
3032 |
|
3033 |
-
#: inc/options.php:
|
3034 |
msgid "Avatar"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
-
#: inc/options.php:
|
3038 |
msgid "Avatar of testimonial's author."
|
3039 |
msgstr ""
|
3040 |
|
3041 |
-
#: inc/options.php:
|
3042 |
msgid "Alignment"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
-
#: inc/options.php:
|
3046 |
msgid "Select the content's alignment."
|
3047 |
msgstr ""
|
3048 |
|
3049 |
-
#: inc/options.php:
|
3050 |
msgid "Testimonial Content"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
-
#: inc/options.php:
|
3054 |
msgid "Insert content for testimonial."
|
3055 |
msgstr ""
|
3056 |
|
3057 |
-
#: inc/options.php:
|
3058 |
msgid "Testimonial Shortcode"
|
3059 |
msgstr ""
|
3060 |
|
3061 |
-
#: inc/options.php:
|
3062 |
msgid "testimonial-shortcode/"
|
3063 |
msgstr ""
|
3064 |
|
3065 |
-
#: inc/options.php:
|
3066 |
msgid "Columns"
|
3067 |
msgstr ""
|
3068 |
|
3069 |
-
#: inc/options.php:
|
3070 |
msgid "Number of items."
|
3071 |
msgstr ""
|
3072 |
|
3073 |
-
#: inc/options.php:
|
3074 |
msgid "2 columns"
|
3075 |
msgstr ""
|
3076 |
|
3077 |
-
#: inc/options.php:
|
3078 |
msgid "3 columns"
|
3079 |
msgstr ""
|
3080 |
|
3081 |
-
#: inc/options.php:
|
3082 |
msgid "4 columns"
|
3083 |
msgstr ""
|
3084 |
|
3085 |
-
#: inc/options.php:
|
3086 |
msgid "5 columns"
|
3087 |
msgstr ""
|
3088 |
|
3089 |
-
#: inc/options.php:
|
3090 |
msgid "Timeline Items"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
-
#: inc/options.php:
|
3094 |
msgid "Insert timeline items."
|
3095 |
msgstr ""
|
3096 |
|
3097 |
-
#: inc/options.php:
|
3098 |
msgid "Timeline Shortcode"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
-
#: inc/options.php:
|
3102 |
msgid "timeline-shortcode/"
|
3103 |
msgstr ""
|
3104 |
|
3105 |
-
#: inc/options.php:
|
3106 |
msgid "Tooltip Text"
|
3107 |
msgstr ""
|
3108 |
|
3109 |
-
#: inc/options.php:
|
3110 |
msgid "Insert the text that displays in the tooltip"
|
3111 |
msgstr ""
|
3112 |
|
3113 |
-
#: inc/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3114 |
msgid "Tooltip Position"
|
3115 |
msgstr ""
|
3116 |
|
3117 |
-
#: inc/options.php:
|
3118 |
msgid "Choose the display position."
|
3119 |
msgstr ""
|
3120 |
|
3121 |
-
#: inc/options.php:
|
3122 |
msgid "Tooltip Trigger"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
-
#: inc/options.php:
|
3126 |
msgid "Choose action to trigger the tooltip."
|
3127 |
msgstr ""
|
3128 |
|
3129 |
-
#: inc/options.php:
|
3130 |
msgid "Insert the text that will activate the tooltip hover"
|
3131 |
msgstr ""
|
3132 |
|
3133 |
-
#: inc/options.php:
|
3134 |
msgid "Tooltip Shortcode"
|
3135 |
msgstr ""
|
3136 |
|
3137 |
-
#: inc/options.php:
|
3138 |
msgid "tooltip-shortcode/"
|
3139 |
msgstr ""
|
3140 |
|
3141 |
-
#: inc/options.php:
|
3142 |
msgid "Mp4 Video Url"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
-
#: inc/options.php:
|
3146 |
msgid ""
|
3147 |
"Add the URL of video in MPEG4 format. WebM and MP4 format must be included "
|
3148 |
"to render your video with cross browser compatibility. OGV is optional."
|
3149 |
msgstr ""
|
3150 |
|
3151 |
-
#: inc/options.php:
|
3152 |
msgid "Ogv Video Url"
|
3153 |
msgstr ""
|
3154 |
|
3155 |
-
#: inc/options.php:
|
3156 |
msgid ""
|
3157 |
"Add the URL of video in OGV format. WebM and MP4 format must be included to "
|
3158 |
"render your video with cross browser compatibility. OGV is optional."
|
3159 |
msgstr ""
|
3160 |
|
3161 |
-
#: inc/options.php:
|
3162 |
msgid "Webm Video Url"
|
3163 |
msgstr ""
|
3164 |
|
3165 |
-
#: inc/options.php:
|
3166 |
msgid ""
|
3167 |
"Add the URL of video in webm format. WebM and MP4 format must be included to "
|
3168 |
"render your video with cross browser compatibility. OGV is optional."
|
3169 |
msgstr ""
|
3170 |
|
3171 |
-
#: inc/options.php:
|
3172 |
msgid "Poster"
|
3173 |
msgstr ""
|
3174 |
|
3175 |
-
#: inc/options.php:
|
3176 |
msgid "Display a image when browser does not support HTML5 format."
|
3177 |
msgstr ""
|
3178 |
|
3179 |
-
#: inc/options.php:
|
3180 |
msgid "Video Shortcode"
|
3181 |
msgstr ""
|
3182 |
|
3183 |
-
#: inc/options.php:
|
3184 |
msgid "video-shortcode/"
|
3185 |
msgstr ""
|
3186 |
|
3187 |
-
#: inc/options.php:
|
3188 |
msgid "Vimeo URL"
|
3189 |
msgstr ""
|
3190 |
|
3191 |
-
#: inc/options.php:
|
3192 |
msgid "Vimeo Shortcode"
|
3193 |
msgstr ""
|
3194 |
|
3195 |
-
#: inc/options.php:
|
3196 |
msgid "vimeo-shortcode/"
|
3197 |
msgstr ""
|
3198 |
|
3199 |
-
#: inc/options.php:
|
3200 |
msgid "Youtube URL"
|
3201 |
msgstr ""
|
3202 |
|
3203 |
-
#: inc/options.php:
|
3204 |
msgid "Youtube Shortcode"
|
3205 |
msgstr ""
|
3206 |
|
3207 |
-
#: inc/options.php:
|
3208 |
msgid "youtube-shortcode/"
|
3209 |
msgstr ""
|
3210 |
|
3211 |
-
#: inc/options.php:
|
3212 |
msgid "Choose widget name to show"
|
3213 |
msgstr ""
|
3214 |
|
3215 |
-
#: inc/options.php:
|
3216 |
msgid "Set background color for widget area"
|
3217 |
msgstr ""
|
3218 |
|
3219 |
-
#: inc/options.php:
|
3220 |
msgid "Content Padding. eg:30"
|
3221 |
msgstr ""
|
3222 |
|
3223 |
-
#: inc/options.php:
|
3224 |
msgid "Widget Area Shortcode"
|
3225 |
msgstr ""
|
3226 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Magee Shortcodes\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-07-15 16:12+0800\n"
|
6 |
+
"PO-Revision-Date: 2016-07-15 16:12+0800\n"
|
7 |
"Last-Translator: shijun quan <support@mageewp.com>\n"
|
8 |
"Language-Team: MageeWP\n"
|
9 |
"Language: en_US\n"
|
17 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: inc/core.php:113 inc/core.php:117
|
21 |
msgid "Magee Shortcodes"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: inc/core.php:306
|
25 |
msgid "Live Preview"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: inc/core.php:306
|
29 |
msgid "Insert shortcode"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: inc/core.php:555 inc/core.php:586 inc/core.php:737 inc/core.php:957
|
33 |
msgid "Upload"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: inc/core.php:572
|
37 |
msgid "Attach Images to Gallery"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: inc/core.php:674 inc/options.php:1056 inc/options.php:1149
|
41 |
+
#: inc/options.php:1237 inc/options.php:1366 inc/options.php:3889
|
42 |
+
#: inc/options.php:3971 inc/options.php:4052
|
43 |
msgid "Width"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: inc/core.php:678 inc/options.php:1062 inc/options.php:1245
|
47 |
+
#: inc/options.php:1374 inc/options.php:2830 inc/options.php:3895
|
48 |
+
#: inc/options.php:3977 inc/options.php:4058
|
49 |
msgid "Height"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: inc/core.php:1037
|
53 |
msgid "Select a slider"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: inc/core.php:1208
|
57 |
+
msgid "<i class=\"fa fa-comment\"></i> 1 "
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: inc/core.php:1208
|
61 |
+
msgid "<i class=\"fa fa-comment\"></i> % "
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
#: inc/magee-slider.php:8
|
65 |
msgid "Magee Slider"
|
66 |
msgstr ""
|
109 |
msgid "Use the button above to add Slides !"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: inc/magee-slider.php:158 inc/options.php:109 inc/options.php:1521
|
113 |
+
#: inc/options.php:1818 inc/options.php:2372 inc/options.php:2455
|
114 |
+
#: inc/options.php:2645
|
115 |
msgid "Title"
|
116 |
msgstr ""
|
117 |
|
123 |
msgid "Date"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: inc/options.php:28 inc/options.php:29 inc/options.php:30 inc/options.php:31
|
127 |
+
#: inc/options.php:946 inc/options.php:1078 inc/options.php:1088
|
128 |
+
#: inc/options.php:1098 inc/options.php:2210 inc/options.php:2231
|
129 |
+
#: inc/options.php:2301 inc/options.php:3065 inc/options.php:3517
|
130 |
+
#: inc/options.php:3911 inc/options.php:3921 inc/options.php:3931
|
131 |
+
#: inc/options.php:3993 inc/options.php:4003 inc/options.php:4013
|
132 |
+
#: inc/options.php:4074 inc/options.php:4084 inc/options.php:4094
|
133 |
+
msgid "Yes"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: inc/options.php:28 inc/options.php:29 inc/options.php:30 inc/options.php:31
|
137 |
+
#: inc/options.php:945 inc/options.php:1079 inc/options.php:1089
|
138 |
+
#: inc/options.php:1099 inc/options.php:2209 inc/options.php:2230
|
139 |
+
#: inc/options.php:2302 inc/options.php:3064 inc/options.php:3518
|
140 |
+
#: inc/options.php:3912 inc/options.php:3922 inc/options.php:3932
|
141 |
+
#: inc/options.php:3994 inc/options.php:4004 inc/options.php:4014
|
142 |
+
#: inc/options.php:4075 inc/options.php:4085 inc/options.php:4095
|
143 |
+
msgid "No"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: inc/options.php:30 inc/options.php:31 inc/options.php:379
|
147 |
+
msgid "Default"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: inc/options.php:32 inc/options.php:33 inc/options.php:34
|
151 |
+
#: inc/options.php:781 inc/options.php:1157 inc/options.php:1609
|
152 |
+
#: inc/options.php:2738 inc/options.php:2847 inc/options.php:2921
|
153 |
+
#: inc/options.php:3000 inc/options.php:3811
|
154 |
+
msgid "Left"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: inc/options.php:32 inc/options.php:33 inc/options.php:34
|
158 |
+
#: inc/options.php:783 inc/options.php:1610 inc/options.php:2739
|
159 |
+
#: inc/options.php:2848 inc/options.php:2922 inc/options.php:3001
|
160 |
+
#: inc/options.php:3812
|
161 |
msgid "Right"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: inc/options.php:33 inc/options.php:34 inc/options.php:782
|
165 |
+
#: inc/options.php:1158 inc/options.php:3699
|
166 |
+
msgid "Center"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: inc/options.php:70 inc/options.php:233 inc/options.php:307
|
170 |
+
#: inc/options.php:452 inc/options.php:494 inc/options.php:578
|
171 |
+
#: inc/options.php:625 inc/options.php:715 inc/options.php:789
|
172 |
+
#: inc/options.php:839 inc/options.php:953 inc/options.php:1023
|
173 |
+
#: inc/options.php:1105 inc/options.php:1203 inc/options.php:1266
|
174 |
+
#: inc/options.php:1317 inc/options.php:1380 inc/options.php:1426
|
175 |
+
#: inc/options.php:1483 inc/options.php:1688 inc/options.php:1791
|
176 |
+
#: inc/options.php:1913 inc/options.php:1966 inc/options.php:2022
|
177 |
+
#: inc/options.php:2078 inc/options.php:2142 inc/options.php:2244
|
178 |
+
#: inc/options.php:2314 inc/options.php:2346 inc/options.php:2413
|
179 |
+
#: inc/options.php:2597 inc/options.php:2683 inc/options.php:2746
|
180 |
+
#: inc/options.php:2866 inc/options.php:2972 inc/options.php:3013
|
181 |
+
#: inc/options.php:3115 inc/options.php:3156 inc/options.php:3213
|
182 |
+
#: inc/options.php:3428 inc/options.php:3463 inc/options.php:3550
|
183 |
+
#: inc/options.php:3596 inc/options.php:3711 inc/options.php:3752
|
184 |
+
#: inc/options.php:3833 inc/options.php:3938 inc/options.php:4020
|
185 |
+
#: inc/options.php:4101 inc/options.php:4148
|
186 |
msgid "CSS Class"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: inc/options.php:71 inc/options.php:234 inc/options.php:308
|
190 |
+
#: inc/options.php:453 inc/options.php:495 inc/options.php:579
|
191 |
+
#: inc/options.php:626 inc/options.php:716 inc/options.php:790
|
192 |
+
#: inc/options.php:840 inc/options.php:954 inc/options.php:1024
|
193 |
+
#: inc/options.php:1106 inc/options.php:1204 inc/options.php:1267
|
194 |
+
#: inc/options.php:1318 inc/options.php:1381 inc/options.php:1427
|
195 |
+
#: inc/options.php:1484 inc/options.php:1689 inc/options.php:1792
|
196 |
+
#: inc/options.php:1914 inc/options.php:1967 inc/options.php:2023
|
197 |
+
#: inc/options.php:2079 inc/options.php:2143 inc/options.php:2245
|
198 |
+
#: inc/options.php:2315 inc/options.php:2347 inc/options.php:2414
|
199 |
+
#: inc/options.php:2598 inc/options.php:2684 inc/options.php:2747
|
200 |
+
#: inc/options.php:2867 inc/options.php:2973 inc/options.php:3014
|
201 |
+
#: inc/options.php:3116 inc/options.php:3157 inc/options.php:3214
|
202 |
+
#: inc/options.php:3429 inc/options.php:3464 inc/options.php:3551
|
203 |
+
#: inc/options.php:3597 inc/options.php:3712 inc/options.php:3753
|
204 |
+
#: inc/options.php:3834 inc/options.php:3939 inc/options.php:4021
|
205 |
+
#: inc/options.php:4102 inc/options.php:4149
|
206 |
msgid "Add a class to the wrapping HTML element."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: inc/options.php:76 inc/options.php:239 inc/options.php:313
|
210 |
+
#: inc/options.php:458 inc/options.php:500 inc/options.php:584
|
211 |
+
#: inc/options.php:631 inc/options.php:721 inc/options.php:795
|
212 |
+
#: inc/options.php:845 inc/options.php:959 inc/options.php:1029
|
213 |
+
#: inc/options.php:1111 inc/options.php:1209 inc/options.php:1272
|
214 |
+
#: inc/options.php:1323 inc/options.php:1386 inc/options.php:1432
|
215 |
+
#: inc/options.php:1489 inc/options.php:1694 inc/options.php:1797
|
216 |
+
#: inc/options.php:1919 inc/options.php:1972 inc/options.php:2028
|
217 |
+
#: inc/options.php:2084 inc/options.php:2148 inc/options.php:2250
|
218 |
+
#: inc/options.php:2320 inc/options.php:2352 inc/options.php:2419
|
219 |
+
#: inc/options.php:2603 inc/options.php:2752 inc/options.php:2872
|
220 |
+
#: inc/options.php:2978 inc/options.php:3019 inc/options.php:3121
|
221 |
+
#: inc/options.php:3162 inc/options.php:3219 inc/options.php:3434
|
222 |
+
#: inc/options.php:3556 inc/options.php:3602 inc/options.php:3717
|
223 |
+
#: inc/options.php:3758 inc/options.php:3839 inc/options.php:3944
|
224 |
+
#: inc/options.php:4026 inc/options.php:4107 inc/options.php:4154
|
225 |
msgid "CSS ID"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: inc/options.php:77 inc/options.php:240 inc/options.php:314
|
229 |
+
#: inc/options.php:459 inc/options.php:501 inc/options.php:585
|
230 |
+
#: inc/options.php:632 inc/options.php:722 inc/options.php:796
|
231 |
+
#: inc/options.php:846 inc/options.php:960 inc/options.php:1030
|
232 |
+
#: inc/options.php:1112 inc/options.php:1210 inc/options.php:1273
|
233 |
+
#: inc/options.php:1324 inc/options.php:1387 inc/options.php:1433
|
234 |
+
#: inc/options.php:1490 inc/options.php:1695 inc/options.php:1798
|
235 |
+
#: inc/options.php:1920 inc/options.php:1973 inc/options.php:2029
|
236 |
+
#: inc/options.php:2085 inc/options.php:2149 inc/options.php:2251
|
237 |
+
#: inc/options.php:2321 inc/options.php:2353 inc/options.php:2420
|
238 |
+
#: inc/options.php:2604 inc/options.php:2753 inc/options.php:2873
|
239 |
+
#: inc/options.php:2979 inc/options.php:3020 inc/options.php:3122
|
240 |
+
#: inc/options.php:3163 inc/options.php:3220 inc/options.php:3435
|
241 |
+
#: inc/options.php:3557 inc/options.php:3603 inc/options.php:3718
|
242 |
+
#: inc/options.php:3759 inc/options.php:3840 inc/options.php:3945
|
243 |
+
#: inc/options.php:4027 inc/options.php:4108 inc/options.php:4155
|
244 |
msgid "Add an ID to the wrapping HTML element."
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: inc/options.php:82 inc/options.php:1342 inc/options.php:1407
|
248 |
+
#: inc/options.php:1824 inc/options.php:2049 inc/options.php:2439
|
249 |
+
#: inc/options.php:2772 inc/options.php:2894 inc/options.php:3575
|
250 |
msgid "Style"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: inc/options.php:83
|
254 |
+
msgid ""
|
255 |
+
"The \"simple\" doesn't have a border in the whole accordion, and the \"boxed"
|
256 |
+
"\" has."
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: inc/options.php:85 inc/options.php:3578
|
260 |
msgid "Simple Style"
|
261 |
msgstr ""
|
262 |
|
264 |
msgid "Boxed Style"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: inc/options.php:87
|
268 |
+
msgid "Spacing Style"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: inc/options.php:92 inc/options.php:3630
|
272 |
msgid "Type"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: inc/options.php:93
|
276 |
+
msgid ""
|
277 |
+
"The differance is in the right of accordion, \"1\" is a down arrow, and the "
|
278 |
+
"\"2\" is a plus in a box"
|
279 |
msgstr ""
|
280 |
|
281 |
#: inc/options.php:96
|
282 |
+
msgid "Type 1"
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: inc/options.php:97
|
286 |
msgid "Type 2"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: inc/options.php:98
|
290 |
+
msgid "None Type"
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: inc/options.php:110
|
294 |
+
msgid "Insert the title for the accordion item."
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: inc/options.php:115 inc/options.php:1535 inc/options.php:2386
|
298 |
+
#: inc/options.php:3590
|
299 |
+
msgid "Title Color"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: inc/options.php:116
|
303 |
+
msgid "Insert the color for the title."
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: inc/options.php:121 inc/options.php:2399
|
307 |
+
msgid "Title Background Color"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: inc/options.php:122
|
311 |
+
msgid "Insert the background color for the title."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: inc/options.php:127 inc/options.php:2171 inc/options.php:2821
|
315 |
+
msgid "Text"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: inc/options.php:128
|
319 |
+
msgid "Insert the content for the accordion item."
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: inc/options.php:133
|
323 |
+
msgid "Status"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: inc/options.php:134
|
327 |
+
msgid "Choose to have the accordion open or close when page loads."
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: inc/options.php:135
|
331 |
+
msgid "Close"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: inc/options.php:135
|
335 |
+
msgid "Open"
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: inc/options.php:139
|
339 |
+
msgid "Select Close Status Icon"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: inc/options.php:140 inc/options.php:146
|
343 |
+
msgid "Click an icon to select, click again to deselect"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: inc/options.php:145
|
347 |
+
msgid "Select Open Status Icon"
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#: inc/options.php:154
|
351 |
msgid "Accordion Shortcode"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: inc/options.php:155
|
355 |
msgid "accordions-shortcode/"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: inc/options.php:171 inc/options.php:1142 inc/options.php:1195
|
359 |
+
#: inc/options.php:1546 inc/options.php:1994 inc/options.php:2195
|
360 |
+
#: inc/options.php:3489
|
361 |
msgid "Icon"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: inc/options.php:172 inc/options.php:438 inc/options.php:894
|
365 |
+
#: inc/options.php:1196 inc/options.php:1547 inc/options.php:1995
|
366 |
+
#: inc/options.php:2196 inc/options.php:2537 inc/options.php:2549
|
367 |
+
#: inc/options.php:2561 inc/options.php:2573 inc/options.php:2585
|
368 |
+
#: inc/options.php:2960 inc/options.php:3490
|
369 |
msgid "Click an icon to select, click again to deselect."
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: inc/options.php:177
|
373 |
msgid "Warning! Better check yourself, you're not looking too good."
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: inc/options.php:179
|
377 |
msgid "Alert Content"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: inc/options.php:180
|
381 |
msgid "Insert the content for the alert."
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: inc/options.php:186 inc/options.php:832 inc/options.php:1941
|
385 |
+
#: inc/options.php:2177 inc/options.php:3077 inc/options.php:3246
|
386 |
+
#: inc/options.php:4134
|
387 |
msgid "Background Color"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: inc/options.php:187
|
391 |
msgid "Set background color for alert box."
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: inc/options.php:192 inc/options.php:431
|
395 |
msgid "Text Color"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: inc/options.php:193
|
399 |
msgid "Set content color & border color for alert box."
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: inc/options.php:202 inc/options.php:370 inc/options.php:1900
|
403 |
+
#: inc/options.php:2912
|
404 |
msgid "Border Width"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: inc/options.php:203 inc/options.php:212 inc/options.php:1885
|
408 |
+
#: inc/options.php:1893 inc/options.php:1901 inc/options.php:1950
|
409 |
+
#: inc/options.php:2408 inc/options.php:3300 inc/options.php:3337
|
410 |
+
#: inc/options.php:3345 inc/options.php:3353 inc/options.php:3361
|
411 |
+
#: inc/options.php:3890 inc/options.php:3896
|
412 |
msgid "In pixels (px), eg: 1px."
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: inc/options.php:211 inc/options.php:1949 inc/options.php:2129
|
416 |
+
#: inc/options.php:2407
|
417 |
msgid "Border Radius"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: inc/options.php:218
|
421 |
msgid "Box Shadow"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: inc/options.php:219
|
425 |
msgid "Display a box shadow for alert."
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: inc/options.php:225
|
429 |
msgid "Dismissable"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: inc/options.php:226
|
433 |
msgid "The alert box is dismissable."
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: inc/options.php:244
|
437 |
msgid "Alert Shortcode"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: inc/options.php:245
|
441 |
msgid "alert-shortcode/"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: inc/options.php:258
|
445 |
+
msgid "Audio Style"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: inc/options.php:259
|
449 |
+
msgid "Choose style for audio to show"
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: inc/options.php:260
|
453 |
+
msgid "Dark Style"
|
454 |
+
msgstr ""
|
455 |
+
|
456 |
+
#: inc/options.php:260
|
457 |
+
msgid "Light Style"
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: inc/options.php:265
|
461 |
msgid "Mp3 URL"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: inc/options.php:266
|
465 |
msgid "Add the URL of audio in MP3 format."
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: inc/options.php:271
|
469 |
msgid "Ogg URL"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: inc/options.php:272
|
473 |
msgid "Add the URL of audio in OGG format."
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: inc/options.php:277
|
477 |
msgid "Wav URL"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: inc/options.php:278
|
481 |
msgid "Add the URL of audio in WAV format."
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: inc/options.php:282
|
485 |
msgid "Mute Audio"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: inc/options.php:283
|
489 |
msgid "Choose to mute the audio."
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: inc/options.php:288
|
493 |
msgid "Autoplay Audio"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: inc/options.php:289
|
497 |
msgid "Choose to autoplay the audio."
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: inc/options.php:294
|
501 |
msgid "Loop Audio"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: inc/options.php:295
|
505 |
msgid "Choose to loop the audio."
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: inc/options.php:300
|
509 |
msgid "Controls Audio"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: inc/options.php:301
|
513 |
msgid "Choose to display controls of the audio."
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: inc/options.php:318
|
517 |
msgid "Audio Shortcode"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: inc/options.php:319
|
521 |
msgid "audio-shortcode/"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: inc/options.php:332 inc/options.php:3580
|
525 |
msgid "Button Style"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: inc/options.php:333
|
529 |
msgid "Select the button's default style."
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: inc/options.php:335 inc/options.php:1134 inc/options.php:2897
|
533 |
+
#: inc/options.php:3526 inc/options.php:3670
|
534 |
msgid "Normal"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: inc/options.php:336
|
538 |
msgid "Dark"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: inc/options.php:337
|
542 |
msgid "Light"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: inc/options.php:338
|
546 |
msgid "2d"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: inc/options.php:339
|
550 |
msgid "3d"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: inc/options.php:340
|
554 |
msgid "Line"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: inc/options.php:341
|
558 |
msgid "Line Dark"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: inc/options.php:342
|
562 |
msgid "Line Light"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: inc/options.php:349
|
566 |
msgid "Button URL"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: inc/options.php:350
|
570 |
msgid "Add the button's url eg: http://example.com."
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: inc/options.php:355
|
574 |
msgid "Button Size"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: inc/options.php:356
|
578 |
msgid "Select the button's size."
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: inc/options.php:358 inc/options.php:2290
|
582 |
msgid "Small"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: inc/options.php:359
|
586 |
msgid "Medium"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: inc/options.php:360 inc/options.php:2292
|
590 |
msgid "Large"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: inc/options.php:361
|
594 |
msgid "XLarge"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: inc/options.php:371
|
598 |
msgid "In pixels (px), default: 2px."
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: inc/options.php:376
|
602 |
msgid "Button Shape"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: inc/options.php:377
|
606 |
msgid "Select the button's shape. Choose default for theme option selection."
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: inc/options.php:380 inc/options.php:2222 inc/options.php:2629
|
|
|
|
|
|
|
|
|
610 |
msgid "Square"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: inc/options.php:381 inc/options.php:2793 inc/options.php:3528
|
614 |
msgid "Rounded"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: inc/options.php:382
|
618 |
msgid "Full Rounded"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: inc/options.php:387
|
622 |
msgid "Text Shadow"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: inc/options.php:388
|
626 |
msgid "Display shadow for button text."
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: inc/options.php:393
|
630 |
msgid "Gradient"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: inc/options.php:394
|
634 |
msgid "Display gradient for button."
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: inc/options.php:399
|
638 |
msgid "Block Button"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: inc/options.php:400
|
642 |
msgid "Display in full width."
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: inc/options.php:406
|
646 |
msgid "Button Target"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: inc/options.php:407 inc/options.php:3541
|
650 |
msgid "_self = open in same window <br />_blank = open in new window."
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: inc/options.php:409 inc/options.php:1659 inc/options.php:2120
|
654 |
+
#: inc/options.php:2465
|
655 |
+
msgid "_self"
|
656 |
+
msgstr ""
|
657 |
+
|
658 |
+
#: inc/options.php:410 inc/options.php:1658 inc/options.php:2119
|
659 |
+
#: inc/options.php:2464
|
660 |
+
msgid "_blank"
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: inc/options.php:415 inc/options.php:2943
|
664 |
msgid "Button Text"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: inc/options.php:417
|
668 |
msgid "Button's Text"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: inc/options.php:418
|
672 |
msgid "Add the text that will display in the button."
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: inc/options.php:423
|
676 |
msgid "Set background color for button."
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: inc/options.php:424 inc/options.php:2937
|
680 |
msgid "Button Color"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: inc/options.php:432
|
684 |
msgid "Set content color & border color for button."
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: inc/options.php:437 inc/options.php:2959
|
688 |
msgid "Button Icon"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: inc/options.php:444
|
692 |
msgid "Icon Animation Type"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: inc/options.php:445
|
696 |
msgid "Select the type of animation to use on the button icon."
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: inc/options.php:463
|
700 |
msgid "Button Shortcode"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: inc/options.php:464
|
704 |
msgid "buttons-shortcode/"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: inc/options.php:480 inc/options.php:564 inc/options.php:611
|
708 |
+
#: inc/options.php:700
|
709 |
msgid "Canvas Width"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: inc/options.php:488 inc/options.php:572 inc/options.php:619
|
713 |
+
#: inc/options.php:709
|
714 |
msgid "Canvas Height"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: inc/options.php:506 inc/options.php:637
|
718 |
msgid "Label For Line"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: inc/options.php:507
|
722 |
msgid "separate multiple tags added to chart line with commas"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: inc/options.php:511
|
726 |
msgid "Chart Bar Shortcode"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: inc/options.php:517 inc/options.php:648
|
730 |
msgid "Data"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: inc/options.php:518 inc/options.php:649
|
734 |
msgid "separate values for each set of data with commas"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: inc/options.php:523 inc/options.php:654
|
738 |
msgid "Fill Color"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: inc/options.php:529 inc/options.php:660
|
742 |
msgid "Fill Opacity"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: inc/options.php:536 inc/options.php:667
|
746 |
msgid "Stroke Color"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: inc/options.php:542
|
750 |
msgid "Stroke Opacity"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: inc/options.php:590 inc/options.php:727 inc/options.php:980
|
754 |
+
#: inc/options.php:1477 inc/options.php:2966 inc/options.php:3007
|
755 |
+
#: inc/options.php:3041 inc/options.php:3109 inc/options.php:3225
|
756 |
+
#: inc/options.php:3641 inc/options.php:3827
|
757 |
msgid "Content"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: inc/options.php:595
|
761 |
msgid "Chart Doughnut Shortcode"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: inc/options.php:642
|
765 |
msgid "Chart Line Shortcode"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: inc/options.php:673
|
769 |
msgid "Point Color"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: inc/options.php:679
|
773 |
msgid "Point Stroke Color"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: inc/options.php:732
|
777 |
msgid "Chart Pie Shortcode"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: inc/options.php:746
|
781 |
msgid "Column Shortcode"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: inc/options.php:747
|
785 |
msgid "columns-shortcode/"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: inc/options.php:752
|
789 |
msgid "Column Style"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: inc/options.php:753
|
793 |
msgid "Select the size of column."
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: inc/options.php:755 inc/options.php:877
|
797 |
msgid "1/1"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: inc/options.php:756 inc/options.php:878
|
801 |
msgid "1/2"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: inc/options.php:757 inc/options.php:879
|
805 |
msgid "1/3"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: inc/options.php:758 inc/options.php:880
|
809 |
msgid "1/4"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: inc/options.php:759 inc/options.php:881
|
813 |
msgid "1/5"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: inc/options.php:760 inc/options.php:882
|
817 |
msgid "1/6"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: inc/options.php:761 inc/options.php:883
|
821 |
msgid "2/3"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: inc/options.php:762 inc/options.php:884
|
825 |
msgid "2/5"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: inc/options.php:763 inc/options.php:885
|
829 |
msgid "3/4"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: inc/options.php:764 inc/options.php:886
|
833 |
msgid "3/5"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: inc/options.php:765 inc/options.php:887
|
837 |
msgid "4/5"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: inc/options.php:766 inc/options.php:888
|
841 |
msgid "5/6"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: inc/options.php:770
|
845 |
msgid "Column Content"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: inc/options.php:772
|
849 |
msgid " Column Content"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: inc/options.php:773
|
853 |
msgid "Insert the column's content"
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: inc/options.php:776
|
857 |
msgid "left"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: inc/options.php:778
|
861 |
msgid "Content Align"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: inc/options.php:818
|
865 |
msgid "Set end time for countdown."
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: inc/options.php:825 inc/options.php:1838 inc/options.php:1954
|
869 |
msgid "Font Color"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: inc/options.php:826
|
873 |
msgid "Set font color for countdown."
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: inc/options.php:833
|
877 |
msgid "Set background color for countdown."
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: inc/options.php:852
|
881 |
msgid "Countdowns Shortcode"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: inc/options.php:853
|
885 |
msgid "countdowns-shortcode/"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: inc/options.php:874
|
889 |
msgid "Box Width"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: inc/options.php:875
|
893 |
msgid "Select size of counter box"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: inc/options.php:893
|
897 |
msgid "Top Icon"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: inc/options.php:900
|
901 |
msgid "Top Icon Color"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: inc/options.php:901
|
905 |
msgid "Set color for top icon."
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: inc/options.php:906
|
909 |
msgid "Middle Left Icon"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: inc/options.php:907
|
913 |
msgid "Insert text before the number."
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: inc/options.php:914
|
917 |
msgid "Middle Left Text"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: inc/options.php:915
|
921 |
msgid "Left text of counter num"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: inc/options.php:923
|
925 |
msgid "Counter Num"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: inc/options.php:924
|
929 |
msgid "The animated counter number."
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: inc/options.php:929
|
933 |
msgid "Middle Right Text"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: inc/options.php:930
|
937 |
msgid "Insert text after the number."
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: inc/options.php:936
|
941 |
msgid "Bottom Title"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: inc/options.php:937
|
945 |
msgid "Insert Title for counter."
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: inc/options.php:942
|
949 |
msgid "Display Border"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: inc/options.php:943
|
953 |
msgid "Choose to display border for counter."
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: inc/options.php:965
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
957 |
msgid "Counter Shortcode"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: inc/options.php:966
|
961 |
msgid "counter-box-shortcode/"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: inc/options.php:978
|
965 |
msgid "Custom Box Content"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: inc/options.php:981
|
969 |
msgid "Insert content for custom box."
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: inc/options.php:985 inc/options.php:3253
|
973 |
msgid "Background Image"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: inc/options.php:986
|
977 |
msgid "Upload an image to display in background of custom box."
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: inc/options.php:991
|
981 |
msgid "Fixed Background"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: inc/options.php:992
|
985 |
msgid "Choose to fixed Background Image"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: inc/options.php:998 inc/options.php:3272 inc/options.php:3311
|
989 |
msgid "Background Position"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: inc/options.php:999
|
993 |
msgid "Choose the postion of the background image"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: inc/options.php:1001 inc/options.php:3276
|
997 |
msgid "Top Left"
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: inc/options.php:1002 inc/options.php:3277
|
1001 |
msgid "Top Center"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: inc/options.php:1003 inc/options.php:3278
|
1005 |
msgid "Top Right"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: inc/options.php:1004 inc/options.php:3279
|
1009 |
msgid "Center Left"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: inc/options.php:1005 inc/options.php:3280
|
1013 |
msgid "Center Center"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: inc/options.php:1006 inc/options.php:3281
|
1017 |
msgid "Center Right"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: inc/options.php:1007 inc/options.php:3282
|
1021 |
msgid "Bottom Left"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: inc/options.php:1008 inc/options.php:3283
|
1025 |
msgid "Bottom Center"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: inc/options.php:1009 inc/options.php:3284
|
1029 |
msgid "Bottom Right"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: inc/options.php:1017 inc/options.php:4142
|
1033 |
msgid "Padding"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: inc/options.php:1018
|
1037 |
msgid "Content Padding. eg:30px"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: inc/options.php:1034
|
1041 |
msgid " Custom Box Shortcode"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: inc/options.php:1035
|
1045 |
msgid "custom-box-shortcode/"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: inc/options.php:1050
|
1049 |
msgid "Dailymotion URL"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: inc/options.php:1051 inc/options.php:3966 inc/options.php:4047
|
1053 |
msgid "Add the URL the video will link to, ex: http://example.com."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: inc/options.php:1057 inc/options.php:1063 inc/options.php:3972
|
1057 |
+
#: inc/options.php:3978 inc/options.php:4053 inc/options.php:4059
|
1058 |
msgid "In pixels (px), eg:1px."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: inc/options.php:1068 inc/options.php:3901 inc/options.php:3983
|
1062 |
+
#: inc/options.php:4064
|
1063 |
msgid "Mute Video"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: inc/options.php:1069 inc/options.php:3902 inc/options.php:3984
|
1067 |
+
#: inc/options.php:4065
|
1068 |
msgid "Choose to mute the video."
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: inc/options.php:1075 inc/options.php:3908 inc/options.php:3990
|
1072 |
+
#: inc/options.php:4071
|
1073 |
msgid "Autoplay Video"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: inc/options.php:1076 inc/options.php:3909 inc/options.php:3991
|
1077 |
+
#: inc/options.php:4072
|
1078 |
msgid "Choose to autoplay the video."
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: inc/options.php:1085 inc/options.php:3918 inc/options.php:4000
|
1082 |
+
#: inc/options.php:4081
|
1083 |
msgid "Loop Video"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: inc/options.php:1086 inc/options.php:3919 inc/options.php:4001
|
1087 |
+
#: inc/options.php:4082
|
1088 |
msgid "Choose to loop the video."
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: inc/options.php:1095 inc/options.php:3928 inc/options.php:4010
|
1092 |
+
#: inc/options.php:4091
|
1093 |
msgid "Show Controls"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: inc/options.php:1096 inc/options.php:3929 inc/options.php:4011
|
1097 |
+
#: inc/options.php:4092
|
1098 |
msgid "Choose to display controls for the video player."
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: inc/options.php:1116
|
1102 |
msgid "Dailymotion Shortcode"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: inc/options.php:1117
|
1106 |
msgid "dailymotion-shortcode/"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: inc/options.php:1131
|
1110 |
msgid "Divider Style"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: inc/options.php:1132
|
1114 |
msgid "Select the Divider's Style."
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: inc/options.php:1135
|
1118 |
msgid "Shadow"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: inc/options.php:1136 inc/options.php:3318
|
1122 |
msgid "Dashed"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: inc/options.php:1137 inc/options.php:3317
|
1126 |
msgid "Dotted"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: inc/options.php:1138
|
1130 |
msgid "Double Line"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: inc/options.php:1139
|
1134 |
msgid "Double Dashed"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: inc/options.php:1140
|
1138 |
msgid "Double Dotted"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: inc/options.php:1141 inc/options.php:2104
|
1142 |
msgid "Image"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: inc/options.php:1143
|
1146 |
msgid "Back to Top"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: inc/options.php:1150
|
1150 |
msgid "In pixels. Default: 100%"
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: inc/options.php:1154 inc/options.php:2997
|
1154 |
msgid "Align"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: inc/options.php:1155
|
1158 |
msgid "When the width is not 100%."
|
1159 |
msgstr ""
|
1160 |
|
1161 |
+
#: inc/options.php:1166 inc/options.php:1884
|
1162 |
msgid "Margin Top"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: inc/options.php:1167
|
1166 |
msgid "Spacing above the separator. In pixels."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: inc/options.php:1174 inc/options.php:1892
|
1170 |
msgid "Margin Bottom"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: inc/options.php:1175
|
1174 |
msgid "Spacing under the separator. In pixels."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: inc/options.php:1183 inc/options.php:3299
|
1178 |
msgid "Border Size"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: inc/options.php:1184
|
1182 |
msgid "In pixels (px), eg: 1px. "
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: inc/options.php:1189 inc/options.php:1843 inc/options.php:2392
|
1186 |
+
#: inc/options.php:2904 inc/options.php:3306
|
1187 |
msgid "Border Color"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: inc/options.php:1190
|
1191 |
msgid "Set the border color."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: inc/options.php:1214
|
1195 |
msgid "Divider Shortcode"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: inc/options.php:1215
|
1199 |
msgid "divider-shortcode/"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: inc/options.php:1229
|
1203 |
msgid "Doc URL"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: inc/options.php:1230
|
1207 |
msgid "Upload document to display. Supported formats: doc, xls, pdf etc."
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: inc/options.php:1238
|
1211 |
msgid "Set width for doc."
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: inc/options.php:1246
|
1215 |
msgid "Set height for doc."
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: inc/options.php:1250
|
1219 |
msgid "Responsive"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: inc/options.php:1251
|
1223 |
msgid "Choose to responsive or not"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: inc/options.php:1256
|
1227 |
msgid "Viewer"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: inc/options.php:1257
|
1231 |
msgid "Choose viewer for document."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: inc/options.php:1259
|
1235 |
msgid "Google"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: inc/options.php:1260
|
1239 |
msgid "Microsoft"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: inc/options.php:1277
|
1243 |
msgid "Document Shortcode"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: inc/options.php:1278
|
1247 |
msgid "document-shortcode/"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: inc/options.php:1292
|
1251 |
msgid "Dropcap Letter"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: inc/options.php:1293
|
1255 |
msgid "Add the letter to be used as dropcap"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: inc/options.php:1297 inc/options.php:2838
|
1259 |
msgid "Color"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: inc/options.php:1298
|
1263 |
msgid ""
|
1264 |
"Controls the color of the dropcap letter. Leave blank for theme option "
|
1265 |
"selection."
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: inc/options.php:1302
|
1269 |
msgid "Boxed Dropcap"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: inc/options.php:1303
|
1273 |
msgid "Choose to get a boxed dropcap."
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: inc/options.php:1311
|
1277 |
msgid "Box Radius"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: inc/options.php:1312
|
1281 |
msgid "Choose the radius of the boxed dropcap. In pixels (px), eg: 1px"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: inc/options.php:1328
|
1285 |
msgid "Dropcap Shortcode"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: inc/options.php:1329
|
1289 |
msgid "dropcap-shortcode/"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: inc/options.php:1343
|
1293 |
msgid "Select style for dummy image"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: inc/options.php:1345
|
1297 |
msgid "Any"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: inc/options.php:1346
|
1301 |
msgid "Transport"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: inc/options.php:1347
|
1305 |
msgid "Technics"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: inc/options.php:1348
|
1309 |
msgid "People"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: inc/options.php:1349
|
1313 |
msgid "Sports"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: inc/options.php:1350
|
1317 |
msgid "Cats"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: inc/options.php:1351
|
1321 |
msgid "City"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: inc/options.php:1352
|
1325 |
msgid "Food"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: inc/options.php:1353
|
1329 |
msgid "Night life"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: inc/options.php:1354
|
1333 |
msgid "Fashion"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: inc/options.php:1355
|
1337 |
msgid "Animals"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: inc/options.php:1356
|
1341 |
msgid "Business"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: inc/options.php:1357
|
1345 |
msgid "Nature"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: inc/options.php:1358
|
1349 |
msgid "Abstract"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
+
#: inc/options.php:1367
|
1353 |
msgid "Set width for image."
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: inc/options.php:1375
|
1357 |
msgid "Set height for image."
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: inc/options.php:1392
|
1361 |
msgid "Dummy Image Shortcode"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: inc/options.php:1393
|
1365 |
msgid "dummy-image-shortcode/"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: inc/options.php:1408
|
1369 |
msgid "Select text type."
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: inc/options.php:1410
|
1373 |
msgid "Paragraphs"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: inc/options.php:1411
|
1377 |
msgid "Words"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: inc/options.php:1412
|
1381 |
msgid "Bytes"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: inc/options.php:1420
|
1385 |
msgid "Amount"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: inc/options.php:1421
|
1389 |
msgid "Choose how many paragraphs or words to show"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: inc/options.php:1437
|
1393 |
msgid "Dummy Text Shortcode"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: inc/options.php:1438
|
1397 |
msgid "dummy-text-shortcode/"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: inc/options.php:1452
|
1401 |
msgid "More Icon"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: inc/options.php:1453
|
1405 |
msgid ""
|
1406 |
"Set icon for expand title. Click an icon to select, click again to deselect."
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: inc/options.php:1459
|
1410 |
msgid "More Text"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: inc/options.php:1460
|
1414 |
msgid "Set text for expand title."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: inc/options.php:1464
|
1418 |
msgid "Less Icon"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: inc/options.php:1465
|
1422 |
msgid ""
|
1423 |
"Set icon for fold title. Click an icon to select, click again to deselect."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: inc/options.php:1471
|
1427 |
msgid "Less Text"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: inc/options.php:1472
|
1431 |
msgid "Set text for fold title. "
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: inc/options.php:1478
|
1435 |
msgid "This text block can be expanded."
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: inc/options.php:1494
|
1439 |
msgid "Expand Shortcode"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: inc/options.php:1495
|
1443 |
msgid "expand-shortcode/"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: inc/options.php:1508
|
1447 |
msgid "Feature Box Style"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: inc/options.php:1509
|
1451 |
msgid "Select the Feature Box's Style."
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: inc/options.php:1511
|
1455 |
msgid "Icon on Top of Title"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: inc/options.php:1512
|
1459 |
msgid "Icon Beside Title and Content"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: inc/options.php:1513
|
1463 |
msgid "Icon Beside Title"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: inc/options.php:1514 inc/options.php:1830 inc/options.php:2898
|
1467 |
+
#: inc/options.php:3527
|
1468 |
msgid "Boxed"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: inc/options.php:1522
|
1472 |
msgid "Insert title for feature box."
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: inc/options.php:1530
|
1476 |
msgid "Title Font Size"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: inc/options.php:1531
|
1480 |
msgid "Set font size for title of feature box."
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: inc/options.php:1536
|
|
|
|
|
|
|
|
|
1484 |
msgid "Set color for title of feature box."
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: inc/options.php:1540
|
1488 |
msgid "Icon Hover Animation"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: inc/options.php:1541
|
1492 |
msgid "Select the Icon's Animation."
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: inc/options.php:1555 inc/options.php:2003 inc/options.php:3498
|
1496 |
msgid "Icon Size"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: inc/options.php:1556
|
1500 |
msgid "Set size for icon of feature box."
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: inc/options.php:1560 inc/options.php:2009 inc/options.php:2201
|
1504 |
+
#: inc/options.php:3503
|
1505 |
msgid "Icon Color"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: inc/options.php:1561
|
1509 |
msgid "Set color for icon of feature box."
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: inc/options.php:1565
|
1513 |
msgid "Icon Border Color"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: inc/options.php:1566
|
1517 |
msgid "Set border color for icon of feature box."
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: inc/options.php:1573
|
1521 |
msgid "Icon Border Width"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: inc/options.php:1574
|
1525 |
msgid "Set border width for icon of feature box."
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: inc/options.php:1580
|
1529 |
msgid "Flip Icon"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: inc/options.php:1581
|
1533 |
msgid "Choose to flip the icon of feature box."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: inc/options.php:1583 inc/options.php:1828 inc/options.php:3315
|
1537 |
+
#: inc/options.php:3384 inc/options.php:3404 inc/options.php:3698
|
1538 |
msgid "None"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: inc/options.php:1584 inc/options.php:1723 inc/options.php:2052
|
1542 |
msgid "Horizontal"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: inc/options.php:1585 inc/options.php:1724 inc/options.php:2053
|
1546 |
msgid "Vertical"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: inc/options.php:1592
|
1550 |
msgid "Spinning Icon"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: inc/options.php:1593
|
1554 |
msgid "Choose to spin the icon of feature box."
|
1555 |
msgstr ""
|
1556 |
|
1557 |
+
#: inc/options.php:1599 inc/options.php:2214 inc/options.php:2931
|
1558 |
+
#: inc/options.php:3508
|
1559 |
msgid "Icon Circle Background Color"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: inc/options.php:1600
|
1563 |
msgid "Set background for icon circle of feature box."
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: inc/options.php:1606
|
1567 |
msgid "Icon Alignment"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: inc/options.php:1607
|
1571 |
msgid "Set alignment for style2/style3 of feature box."
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: inc/options.php:1617
|
1575 |
msgid "Icon Circle"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: inc/options.php:1618
|
1579 |
msgid "Choose to display icon of feature box in circle."
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: inc/options.php:1625
|
1583 |
msgid "Icon Image"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: inc/options.php:1626
|
1587 |
msgid "To upload your own icon image, remember to deselect icon above."
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: inc/options.php:1633
|
1591 |
msgid "Icon Image Width"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: inc/options.php:1634
|
1595 |
msgid ""
|
1596 |
"If using custom icon image, set icon image width. In percentage of pixels "
|
1597 |
"(px), eg: 1px."
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: inc/options.php:1641
|
1601 |
msgid "Icon Image Height"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: inc/options.php:1642
|
1605 |
msgid ""
|
1606 |
"If using custom icon image, set icon image height. In percentage of pixels "
|
1607 |
"(px), eg: 1px."
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: inc/options.php:1649
|
1611 |
msgid "Link URL"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: inc/options.php:1650
|
1615 |
msgid "Set link for feature box, eg: http://example.com."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: inc/options.php:1655 inc/options.php:2116 inc/options.php:2461
|
1619 |
msgid "Link Target"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: inc/options.php:1656 inc/options.php:2117 inc/options.php:2462
|
1623 |
msgid "_self = open in same window _blank = open in new window."
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: inc/options.php:1666
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1627 |
msgid "Link Text"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: inc/options.php:1667
|
1631 |
msgid ""
|
1632 |
"Insert link text for feature box. It would not display if you leave it as "
|
1633 |
"blank."
|
1634 |
msgstr ""
|
1635 |
|
1636 |
+
#: inc/options.php:1671
|
1637 |
msgid "Link Color"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#: inc/options.php:1672
|
1641 |
msgid "Set color for link of feature box."
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#: inc/options.php:1676
|
1645 |
msgid "Content Color"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: inc/options.php:1677
|
1649 |
msgid "Set color for content of feature box."
|
1650 |
msgstr ""
|
1651 |
|
1652 |
+
#: inc/options.php:1681
|
1653 |
msgid "Set box background color for Boxed Style."
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: inc/options.php:1682
|
1657 |
msgid "For Boxed Style"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
+
#: inc/options.php:1698 inc/options.php:1958 inc/options.php:2306
|
1661 |
msgid "Your Content Goes Here"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: inc/options.php:1700
|
1665 |
msgid "Feature Box Content"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: inc/options.php:1705
|
1669 |
msgid "Feature Box Shortcode"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#: inc/options.php:1706
|
1673 |
msgid "feature-box-shortcode/"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
+
#: inc/options.php:1720
|
1677 |
msgid "Direction"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
+
#: inc/options.php:1721
|
1681 |
msgid "Select flip directioon."
|
1682 |
msgstr ""
|
1683 |
|
1684 |
+
#: inc/options.php:1725
|
1685 |
msgid "Flip Left"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
+
#: inc/options.php:1726
|
1689 |
msgid "Flip Right"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
+
#: inc/options.php:1727
|
1693 |
msgid "Flip Top"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: inc/options.php:1728
|
1697 |
msgid "Flip Bottom"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
+
#: inc/options.php:1729
|
1701 |
msgid "Slide Left"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: inc/options.php:1730
|
1705 |
msgid "Slide Right"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: inc/options.php:1731
|
1709 |
msgid "Slide Top"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
+
#: inc/options.php:1732
|
1713 |
msgid "Slide Bottom"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
+
#: inc/options.php:1740
|
1717 |
msgid "Front Container Paddings"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
+
#: inc/options.php:1741
|
1721 |
msgid "Set paddings for front container of flip box."
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#: inc/options.php:1746
|
1725 |
msgid "Front Background Color"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
+
#: inc/options.php:1747
|
1729 |
msgid "Set background color for front container of flip box."
|
1730 |
msgstr ""
|
1731 |
|
1732 |
+
#: inc/options.php:1752
|
1733 |
msgid "Front Font Color"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
+
#: inc/options.php:1753 inc/options.php:1779
|
1737 |
msgid "Custom setting only. Set the background color for custom alert boxes."
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: inc/options.php:1756
|
1741 |
msgid "Front Content"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: inc/options.php:1758
|
1745 |
msgid "Front content."
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: inc/options.php:1759
|
1749 |
msgid "Insert content for front container of flip box."
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: inc/options.php:1766
|
1753 |
msgid "Back Container Paddings"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
+
#: inc/options.php:1767
|
1757 |
msgid "Set paddings for back container of flip box."
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: inc/options.php:1772
|
1761 |
msgid "Back Background Color"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: inc/options.php:1773
|
1765 |
msgid "Set background color for back container of flip box."
|
1766 |
msgstr ""
|
1767 |
|
1768 |
+
#: inc/options.php:1778
|
1769 |
msgid "Back Font Color"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: inc/options.php:1782
|
1773 |
msgid "Back Content"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: inc/options.php:1784
|
1777 |
msgid "Back Content."
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: inc/options.php:1785
|
1781 |
msgid "Insert content for back container of flip box."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: inc/options.php:1802
|
1785 |
msgid "Flip Box Shortcode"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: inc/options.php:1803
|
1789 |
msgid "flip-box-shortcode/"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: inc/options.php:1819
|
1793 |
msgid "Insert heading text"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: inc/options.php:1826
|
1797 |
msgid "Choose a heading style. Leave blank as default."
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: inc/options.php:1829
|
1801 |
+
msgid "Border"
|
1802 |
+
msgstr ""
|
1803 |
+
|
1804 |
+
#: inc/options.php:1831
|
1805 |
+
msgid "Boxed-reverse"
|
1806 |
+
msgstr ""
|
1807 |
+
|
1808 |
+
#: inc/options.php:1832
|
1809 |
+
msgid "Doubleline"
|
1810 |
+
msgstr ""
|
1811 |
+
|
1812 |
+
#: inc/options.php:1839
|
1813 |
msgid "Set color for heading text."
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: inc/options.php:1844
|
1817 |
msgid "Set border color for heading."
|
1818 |
msgstr ""
|
1819 |
|
1820 |
+
#: inc/options.php:1849 inc/options.php:2844
|
1821 |
msgid "Text Align"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
+
#: inc/options.php:1850
|
1825 |
msgid "Set text align for this heading."
|
1826 |
msgstr ""
|
1827 |
|
1828 |
+
#: inc/options.php:1856
|
1829 |
msgid "Font Weight"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
+
#: inc/options.php:1857
|
1833 |
msgid "Set font weight for heading text."
|
1834 |
msgstr ""
|
1835 |
|
1836 |
+
#: inc/options.php:1876 inc/options.php:2663
|
1837 |
msgid "Font Size"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
+
#: inc/options.php:1877
|
1841 |
msgid "Set font size for heading text. In pixels (px), eg: 1px."
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#: inc/options.php:1906
|
1845 |
msgid "Responsive Text"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: inc/options.php:1907
|
1849 |
msgid "Choose to display responsive text."
|
1850 |
msgstr ""
|
1851 |
|
1852 |
+
#: inc/options.php:1926
|
1853 |
msgid "Heading Shortcode"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
+
#: inc/options.php:1927
|
1857 |
msgid "heading-shortcode/"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
+
#: inc/options.php:1942
|
1861 |
msgid "Set background color for highlight item."
|
1862 |
msgstr ""
|
1863 |
|
1864 |
+
#: inc/options.php:1955
|
1865 |
msgid "Set font color for highlight item."
|
1866 |
msgstr ""
|
1867 |
|
1868 |
+
#: inc/options.php:1960
|
1869 |
msgid "Content to Higlight"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
+
#: inc/options.php:1961
|
1873 |
msgid "Insert content to highlight."
|
1874 |
msgstr ""
|
1875 |
|
1876 |
+
#: inc/options.php:1978
|
1877 |
msgid "Highlight Shortcode"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
+
#: inc/options.php:1979
|
1881 |
msgid "highlight-shortcode/"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
+
#: inc/options.php:2004
|
1885 |
msgid "Set text size for item."
|
1886 |
msgstr ""
|
1887 |
|
1888 |
+
#: inc/options.php:2010 inc/options.php:3504
|
1889 |
msgid "Set color for icon."
|
1890 |
msgstr ""
|
1891 |
|
1892 |
+
#: inc/options.php:2015
|
1893 |
msgid "Icon Box"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
#: inc/options.php:2016
|
1897 |
msgid "Choose to display boxed icon."
|
1898 |
msgstr ""
|
1899 |
|
1900 |
+
#: inc/options.php:2034
|
1901 |
msgid "Icon Shortcode"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: inc/options.php:2035
|
1905 |
msgid "icon-shortcode/"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
+
#: inc/options.php:2050
|
1909 |
msgid "Select how the image compare display."
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: inc/options.php:2059 inc/options.php:2637 inc/options.php:2814
|
1913 |
msgid "Percent"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
#: inc/options.php:2060
|
1917 |
msgid "Choose default offset pct"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
+
#: inc/options.php:2066
|
1921 |
msgid "Image Left"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
+
#: inc/options.php:2067
|
1925 |
msgid "Insert the image displayed in the left."
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: inc/options.php:2072
|
1929 |
msgid "Image Right"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
#: inc/options.php:2073
|
1933 |
msgid "Insert the image displayed in the right."
|
1934 |
msgstr ""
|
1935 |
|
1936 |
+
#: inc/options.php:2089
|
1937 |
msgid "Image Compare Shortcode"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
+
#: inc/options.php:2090
|
1941 |
msgid "image-compare-shortcode/"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: inc/options.php:2105 inc/options.php:2491
|
1945 |
msgid "Upload an image to display."
|
1946 |
msgstr ""
|
1947 |
|
1948 |
+
#: inc/options.php:2110
|
1949 |
msgid "Image Link URL"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: inc/options.php:2111 inc/options.php:2497
|
1953 |
msgid "Add the URL the picture will link to, ex: http://example.com."
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: inc/options.php:2130
|
1957 |
msgid ""
|
1958 |
"Choose the border radius of the image frame. In pixels (px), ex: 1px, or "
|
1959 |
"\"round\". Leave blank for theme option selection."
|
1960 |
msgstr ""
|
1961 |
|
1962 |
+
#: inc/options.php:2135
|
1963 |
msgid "Light Box"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
+
#: inc/options.php:2136
|
1967 |
msgid "Choose to display light box once click."
|
1968 |
msgstr ""
|
1969 |
|
1970 |
+
#: inc/options.php:2154
|
1971 |
msgid "Image Frame Shortcode"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
+
#: inc/options.php:2155
|
1975 |
msgid "image-frame-shortcode/"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
+
#: inc/options.php:2172
|
|
|
|
|
|
|
|
|
1979 |
msgid "Insert text to be displayed in label."
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: inc/options.php:2178
|
1983 |
msgid "Set background color for label."
|
1984 |
msgstr ""
|
1985 |
|
1986 |
+
#: inc/options.php:2182
|
1987 |
msgid "Label Shortcode"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
+
#: inc/options.php:2183
|
1991 |
msgid "label-shortcode/"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
+
#: inc/options.php:2202
|
1995 |
msgid "Set color fo list icon."
|
1996 |
msgstr ""
|
1997 |
|
1998 |
+
#: inc/options.php:2206
|
1999 |
msgid "Icon Boxed"
|
2000 |
msgstr ""
|
2001 |
|
2002 |
+
#: inc/options.php:2207
|
2003 |
msgid "Choose to set icon boxed."
|
2004 |
msgstr ""
|
2005 |
|
2006 |
+
#: inc/options.php:2215
|
2007 |
msgid "Set background color for list icon."
|
2008 |
msgstr ""
|
2009 |
|
2010 |
+
#: inc/options.php:2219
|
2011 |
msgid "Boxed Shape"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
+
#: inc/options.php:2220
|
2015 |
msgid "Choose boxed shape for list icon."
|
2016 |
msgstr ""
|
2017 |
|
2018 |
+
#: inc/options.php:2223
|
2019 |
msgid "Circle"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
+
#: inc/options.php:2227
|
2023 |
msgid "Item Border"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
+
#: inc/options.php:2228
|
2027 |
msgid "Choose to display item border for list."
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: inc/options.php:2238
|
2031 |
msgid "Item Size"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
+
#: inc/options.php:2239
|
2035 |
msgid "Set text font size for item."
|
2036 |
msgstr ""
|
2037 |
|
2038 |
+
#: inc/options.php:2256
|
2039 |
msgid "List items"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: inc/options.php:2261
|
2043 |
msgid "List Shortcode"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: inc/options.php:2262
|
2047 |
msgid "list-shortcode/"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: inc/options.php:2276
|
2051 |
msgid "Modal Anchor Text"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: inc/options.php:2277
|
2055 |
msgid "Insert anchor text for the modal."
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: inc/options.php:2282
|
2059 |
msgid "Modal Heading"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
+
#: inc/options.php:2283
|
2063 |
msgid "Insert heading text for the modal."
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: inc/options.php:2287
|
2067 |
msgid "Size Of Modal"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: inc/options.php:2288
|
2071 |
msgid "Select the modal window size."
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#: inc/options.php:2291
|
2075 |
msgid "Middle"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
+
#: inc/options.php:2298
|
2079 |
msgid "Show Footer"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
+
#: inc/options.php:2299
|
2083 |
msgid "Choose to show the modal footer with close button."
|
2084 |
msgstr ""
|
2085 |
|
2086 |
+
#: inc/options.php:2308
|
2087 |
msgid "Contents of Modal"
|
2088 |
msgstr ""
|
2089 |
|
2090 |
+
#: inc/options.php:2309
|
2091 |
msgid "Add your content to be displayed in modal."
|
2092 |
msgstr ""
|
2093 |
|
2094 |
+
#: inc/options.php:2325
|
2095 |
msgid "Modal Shortcode"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
+
#: inc/options.php:2326
|
2099 |
msgid "modal-shortcode/"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
+
#: inc/options.php:2340
|
2103 |
msgid "Select a menu"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: inc/options.php:2357
|
2107 |
msgid "Menu Shortcode"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
+
#: inc/options.php:2373
|
2111 |
msgid "Insert title for panel."
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: inc/options.php:2376
|
2115 |
msgid "Panel content."
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: inc/options.php:2378
|
2119 |
msgid "Panel Content"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
+
#: inc/options.php:2379
|
2123 |
msgid "Insert content for panel."
|
2124 |
msgstr ""
|
2125 |
|
2126 |
+
#: inc/options.php:2387
|
2127 |
msgid "Set color for panel title."
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: inc/options.php:2393
|
2131 |
msgid "Set color for panel border."
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: inc/options.php:2400
|
|
|
|
|
|
|
|
|
2135 |
msgid "Set background color for panel title."
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: inc/options.php:2424
|
2139 |
msgid "Panel Shortcode"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: inc/options.php:2425
|
2143 |
msgid "panel-shortcode/"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: inc/options.php:2440
|
2147 |
msgid "Choose to display info below or beside the image."
|
2148 |
msgstr ""
|
2149 |
|
2150 |
+
#: inc/options.php:2442
|
2151 |
msgid "Below"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: inc/options.php:2443
|
2155 |
msgid "Beside"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: inc/options.php:2449 inc/options.php:3677 inc/options.php:4127
|
2159 |
msgid "Name"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: inc/options.php:2450
|
2163 |
msgid "Insert the name of the person."
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: inc/options.php:2456
|
2167 |
msgid "Insert the title of the person"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
+
#: inc/options.php:2472
|
2171 |
msgid "Image Overlay Color"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
+
#: inc/options.php:2473
|
2175 |
msgid "Select a hover color to show over the image as an overlay."
|
2176 |
msgstr ""
|
2177 |
|
2178 |
+
#: inc/options.php:2478
|
2179 |
msgid "Image Overlay Opacity"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
+
#: inc/options.php:2479
|
2183 |
msgid "Opacity ranges between 0 (transparent) and 1 (opaque). ex: .5"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: inc/options.php:2485
|
2187 |
msgid "Profile Description"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
+
#: inc/options.php:2486
|
2191 |
msgid "Insert profile description."
|
2192 |
msgstr ""
|
2193 |
|
2194 |
+
#: inc/options.php:2490
|
2195 |
msgid "Picture"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: inc/options.php:2496
|
2199 |
msgid "Picture Link URL"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: inc/options.php:2504
|
2203 |
msgid "Picture Border Size"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: inc/options.php:2505
|
2207 |
msgid "In pixels (px), ex: 1px. Leave blank for theme option selection."
|
2208 |
msgstr ""
|
2209 |
|
2210 |
+
#: inc/options.php:2509
|
2211 |
msgid "Picture Border Color"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
+
#: inc/options.php:2510
|
2215 |
msgid ""
|
2216 |
"Controls the picture's border color. Leave blank for theme option selection."
|
2217 |
msgstr ""
|
2218 |
|
2219 |
+
#: inc/options.php:2517
|
2220 |
msgid "Picture Border Radius"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
+
#: inc/options.php:2518
|
2224 |
msgid ""
|
2225 |
"Choose the border radius of the person image. In pixels (px), ex: 1px, or "
|
2226 |
"\"round\". Leave blank for theme option selection."
|
2227 |
msgstr ""
|
2228 |
|
2229 |
+
#: inc/options.php:2525
|
2230 |
msgid "Social Icon Box Radius"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
+
#: inc/options.php:2526
|
2234 |
msgid ""
|
2235 |
"Choose the border radius of the boxed icons. In pixels (px), ex: 1px, or "
|
2236 |
"\"round\". Leave blank for theme option selection."
|
2237 |
msgstr ""
|
2238 |
|
2239 |
+
#: inc/options.php:2531
|
2240 |
msgid "Social Icon Custom Colors"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
+
#: inc/options.php:2532
|
2244 |
msgid ""
|
2245 |
"Controls the Icon's border color. Leave blank for theme option selection."
|
2246 |
msgstr ""
|
2247 |
|
2248 |
+
#: inc/options.php:2536
|
2249 |
msgid "Icon1"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
+
#: inc/options.php:2543
|
2253 |
msgid "Link1 "
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: inc/options.php:2544
|
2257 |
msgid "The Icon1 Link "
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: inc/options.php:2548
|
2261 |
msgid "Icon2"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
+
#: inc/options.php:2555
|
2265 |
msgid "Link2 "
|
2266 |
msgstr ""
|
2267 |
|
2268 |
+
#: inc/options.php:2556
|
2269 |
msgid "The Icon2 Link "
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: inc/options.php:2560
|
2273 |
msgid "Icon3"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
+
#: inc/options.php:2567
|
2277 |
msgid "Link3 "
|
2278 |
msgstr ""
|
2279 |
|
2280 |
+
#: inc/options.php:2568
|
2281 |
msgid "The Icon3 Link "
|
2282 |
msgstr ""
|
2283 |
|
2284 |
+
#: inc/options.php:2572
|
2285 |
msgid "Icon4"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
+
#: inc/options.php:2579
|
2289 |
msgid "Link4"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: inc/options.php:2580
|
2293 |
msgid "The Icon4 Link "
|
2294 |
msgstr ""
|
2295 |
|
2296 |
+
#: inc/options.php:2584
|
2297 |
msgid "Icon5"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: inc/options.php:2591
|
2301 |
msgid "Link5"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: inc/options.php:2592
|
2305 |
msgid "The Icon5 Link "
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
#: inc/options.php:2608
|
2309 |
msgid "Person Shortcode"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
+
#: inc/options.php:2609
|
2313 |
msgid "person-shortcode/"
|
2314 |
msgstr ""
|
2315 |
|
2316 |
+
#: inc/options.php:2624
|
2317 |
msgid "Line Cap"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
+
#: inc/options.php:2625
|
2321 |
msgid "Select how the ending of the bar line looks like."
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: inc/options.php:2627
|
2325 |
msgid "Round"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: inc/options.php:2628
|
2329 |
msgid "Butt"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
+
#: inc/options.php:2638
|
2333 |
msgid "From 1 to 100."
|
2334 |
msgstr ""
|
2335 |
|
2336 |
+
#: inc/options.php:2646
|
2337 |
msgid "Insert title for piechart. It need to be short."
|
2338 |
msgstr ""
|
2339 |
|
2340 |
+
#: inc/options.php:2654
|
2341 |
msgid "Size"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
+
#: inc/options.php:2655
|
2345 |
msgid "Set size for piechart."
|
2346 |
msgstr ""
|
2347 |
|
2348 |
+
#: inc/options.php:2664
|
2349 |
msgid "Set font size for piechart title."
|
2350 |
msgstr ""
|
2351 |
|
2352 |
+
#: inc/options.php:2669
|
2353 |
msgid "Filled Color"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
+
#: inc/options.php:2670
|
2357 |
msgid "Set color for filled area in piechart."
|
2358 |
msgstr ""
|
2359 |
|
2360 |
+
#: inc/options.php:2675
|
2361 |
msgid "Unfilled Color"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
+
#: inc/options.php:2676
|
2365 |
msgid "Set color for unfilled area in piechart."
|
2366 |
msgstr ""
|
2367 |
|
2368 |
+
#: inc/options.php:2689
|
2369 |
msgid "Piechart Shortcode"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
+
#: inc/options.php:2690
|
2373 |
msgid "piechart-shortcode/"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
+
#: inc/options.php:2704
|
2377 |
msgid "Popover Heading"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
+
#: inc/options.php:2705
|
2381 |
msgid "Insert heading text of the popover."
|
2382 |
msgstr ""
|
2383 |
|
2384 |
+
#: inc/options.php:2710
|
2385 |
msgid "Triggering Text"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
+
#: inc/options.php:2711
|
2389 |
msgid "Content that will trigger the popover."
|
2390 |
msgstr ""
|
2391 |
|
2392 |
+
#: inc/options.php:2718
|
2393 |
msgid "Contents Inside Popover"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
+
#: inc/options.php:2719
|
2397 |
msgid "Text to be displayed inside the popover."
|
2398 |
msgstr ""
|
2399 |
|
2400 |
+
#: inc/options.php:2724
|
2401 |
msgid "Popover Trigger Method"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
+
#: inc/options.php:2725
|
2405 |
msgid "Choose mouse action to trigger popover."
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: inc/options.php:2727 inc/options.php:3821
|
2409 |
msgid "Click"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: inc/options.php:2728 inc/options.php:3820
|
2413 |
msgid "Hover"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: inc/options.php:2733
|
2417 |
msgid "Popover Position"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
+
#: inc/options.php:2734
|
2421 |
msgid "Choose the display position of the popover."
|
2422 |
msgstr ""
|
2423 |
|
2424 |
+
#: inc/options.php:2736 inc/options.php:2923 inc/options.php:3809
|
2425 |
msgid "Top"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
+
#: inc/options.php:2737 inc/options.php:2924 inc/options.php:3810
|
2429 |
msgid "Bottom"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
+
#: inc/options.php:2757
|
2433 |
msgid "Popover Shortcode"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: inc/options.php:2758
|
2437 |
msgid "popover-shortcode/"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: inc/options.php:2773
|
2441 |
msgid "Choose the show of progress bar."
|
2442 |
msgstr ""
|
2443 |
|
2444 |
+
#: inc/options.php:2775 inc/options.php:3582
|
2445 |
msgid "Normal Style"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
+
#: inc/options.php:2776
|
2449 |
msgid "Circle Style"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
+
#: inc/options.php:2782 inc/options.php:2786
|
2453 |
msgid "Striped"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
+
#: inc/options.php:2783
|
2457 |
msgid "Choose to get the filled area striped."
|
2458 |
msgstr ""
|
2459 |
|
2460 |
+
#: inc/options.php:2785
|
2461 |
msgid "None Striped"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
+
#: inc/options.php:2787
|
2465 |
msgid "Striped Animated"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
+
#: inc/options.php:2794
|
2469 |
msgid "Choose to set the progress bar as rounded."
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: inc/options.php:2796
|
2473 |
msgid "On"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: inc/options.php:2797
|
2477 |
msgid "Off"
|
2478 |
msgstr ""
|
2479 |
|
2480 |
+
#: inc/options.php:2803
|
2481 |
msgid "Display Number"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: inc/options.php:2804
|
2485 |
msgid "Choose to diplay number for progress bar."
|
2486 |
msgstr ""
|
2487 |
|
2488 |
+
#: inc/options.php:2815
|
2489 |
msgid "Set percentage for progress bar. 0~100."
|
2490 |
msgstr ""
|
2491 |
|
2492 |
+
#: inc/options.php:2822
|
2493 |
msgid "Insert text for progress bar."
|
2494 |
msgstr ""
|
2495 |
|
2496 |
+
#: inc/options.php:2831
|
2497 |
msgid "Set height for progress bar."
|
2498 |
msgstr ""
|
2499 |
|
2500 |
+
#: inc/options.php:2839
|
2501 |
msgid "Set background color for filled area in progress bar."
|
2502 |
msgstr ""
|
2503 |
|
2504 |
+
#: inc/options.php:2845
|
2505 |
msgid "Set align for progress bar."
|
2506 |
msgstr ""
|
2507 |
|
2508 |
+
#: inc/options.php:2854
|
2509 |
msgid "Text Position"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
+
#: inc/options.php:2855
|
2513 |
msgid "Choose text position for progress bar."
|
2514 |
msgstr ""
|
2515 |
|
2516 |
+
#: inc/options.php:2857
|
2517 |
msgid "Text on Progress bars"
|
2518 |
msgstr ""
|
2519 |
|
2520 |
+
#: inc/options.php:2858
|
2521 |
msgid "Text above progress bars"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
+
#: inc/options.php:2879
|
2525 |
msgid "Progress Shortcode"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
+
#: inc/options.php:2880
|
2529 |
msgid "progress-bar-shortcode/"
|
2530 |
msgstr ""
|
2531 |
|
2532 |
+
#: inc/options.php:2895
|
2533 |
msgid "Select style for promo box."
|
2534 |
msgstr ""
|
2535 |
|
2536 |
+
#: inc/options.php:2905
|
2537 |
msgid "Set color for highlight border of promo box."
|
2538 |
msgstr ""
|
2539 |
|
2540 |
+
#: inc/options.php:2913
|
2541 |
msgid "Set width for highlight border of promo box."
|
2542 |
msgstr ""
|
2543 |
|
2544 |
+
#: inc/options.php:2918
|
2545 |
msgid "Border Position"
|
2546 |
msgstr ""
|
2547 |
|
2548 |
+
#: inc/options.php:2919
|
2549 |
msgid "Choose position for highlight border of promo box."
|
2550 |
msgstr ""
|
2551 |
|
2552 |
+
#: inc/options.php:2932
|
2553 |
msgid "Set background color for promo box."
|
2554 |
msgstr ""
|
2555 |
|
2556 |
+
#: inc/options.php:2944
|
2557 |
msgid "Inser text for button of promo box."
|
2558 |
msgstr ""
|
2559 |
|
2560 |
+
#: inc/options.php:2949
|
2561 |
msgid "Button Text Color"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
+
#: inc/options.php:2954
|
2565 |
msgid "Button Link URL"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
+
#: inc/options.php:2955
|
2569 |
msgid "Inser link for button of promo box, eg: http://example.com."
|
2570 |
msgstr ""
|
2571 |
|
2572 |
+
#: inc/options.php:2967
|
2573 |
msgid "Insert content for promo box."
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: inc/options.php:2983
|
2577 |
msgid "Promo Box Shortcode"
|
2578 |
msgstr ""
|
2579 |
|
2580 |
+
#: inc/options.php:2984
|
2581 |
msgid "promo-box-shortcode/"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: inc/options.php:2998
|
2585 |
msgid "Set alignment for pullquote."
|
2586 |
msgstr ""
|
2587 |
|
2588 |
+
#: inc/options.php:3008
|
2589 |
msgid "Insert content for pullquote."
|
2590 |
msgstr ""
|
2591 |
|
2592 |
+
#: inc/options.php:3025
|
2593 |
msgid "Pullquote Shortcode"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
+
#: inc/options.php:3026
|
2597 |
msgid "pullquote-shortcode/"
|
2598 |
msgstr ""
|
2599 |
|
2600 |
+
#: inc/options.php:3042
|
2601 |
msgid "The text to store within the QR code. Any text or URL is available."
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: inc/options.php:3047
|
2605 |
msgid "Alternative text"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
+
#: inc/options.php:3048
|
2609 |
msgid "Set image alt for QR code."
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: inc/options.php:3055
|
2613 |
msgid "Size in pixel"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: inc/options.php:3056
|
2617 |
msgid "Image width and height."
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: inc/options.php:3061
|
2621 |
msgid "QRCode clickable?"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
+
#: inc/options.php:3062
|
2625 |
msgid "Choose to make this QR code clickable."
|
2626 |
msgstr ""
|
2627 |
|
2628 |
+
#: inc/options.php:3071
|
2629 |
msgid "Foreground Color"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
+
#: inc/options.php:3072
|
2633 |
msgid "Set foreground Color for QR code."
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: inc/options.php:3078
|
2637 |
msgid "Set background Color for QR code."
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: inc/options.php:3082
|
2641 |
msgid "QR Code Shortcode"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
+
#: inc/options.php:3083
|
2645 |
msgid "qr-code-shortcode/"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
+
#: inc/options.php:3097
|
2649 |
msgid "Cite"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
+
#: inc/options.php:3098
|
2653 |
msgid "Author name for quote."
|
2654 |
msgstr ""
|
2655 |
|
2656 |
+
#: inc/options.php:3103
|
2657 |
msgid "Cite Link"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
+
#: inc/options.php:3104
|
2661 |
msgid "Insert Url for the quote author. Leave empty to disable hyperlink."
|
2662 |
msgstr ""
|
2663 |
|
2664 |
+
#: inc/options.php:3110
|
2665 |
msgid "Insert content for the quote."
|
2666 |
msgstr ""
|
2667 |
|
2668 |
+
#: inc/options.php:3126
|
2669 |
msgid "Quote Shortcode"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: inc/options.php:3127
|
2673 |
msgid "quote-shortcode/"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
+
#: inc/options.php:3142
|
2677 |
msgid "Feed URL"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
+
#: inc/options.php:3143
|
2681 |
msgid "Url of RSS Feed."
|
2682 |
msgstr ""
|
2683 |
|
2684 |
+
#: inc/options.php:3150
|
2685 |
msgid "Number to Display"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
+
#: inc/options.php:3151
|
2689 |
msgid "Number of items to show."
|
2690 |
msgstr ""
|
2691 |
|
2692 |
+
#: inc/options.php:3167
|
2693 |
msgid "RSS Feed Shortcode"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
+
#: inc/options.php:3168
|
2697 |
msgid "rss-feed-shortcode/"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
+
#: inc/options.php:3183
|
2701 |
msgid "Time"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
+
#: inc/options.php:3184
|
2705 |
msgid ""
|
2706 |
"Select an random time in one day to show content.</br>Example: 6-12,13-16 "
|
2707 |
"show content from 6:00 to 12:00 and from 13:00 to 16:00"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
+
#: inc/options.php:3189
|
2711 |
msgid "Days of Week"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
+
#: inc/options.php:3190
|
2715 |
msgid ""
|
2716 |
"Select days from one week to show content.</br>1 => Monday </br>2 => "
|
2717 |
"Tuesday </br> 3 => Wednesday</br> 4 => Thursday </br> 5 => Friday </br> 6 "
|
2719 |
"and from Monday to Friday"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
+
#: inc/options.php:3195
|
2723 |
msgid "Days of Month"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
+
#: inc/options.php:3196
|
2727 |
msgid ""
|
2728 |
"Select days from one month to show content.</br>Examples:</br>1 => show "
|
2729 |
"content only at first day of month </br> 10-25 => show content from 10th to "
|
2731 |
"25th"
|
2732 |
msgstr ""
|
2733 |
|
2734 |
+
#: inc/options.php:3201
|
2735 |
msgid "Months"
|
2736 |
msgstr ""
|
2737 |
|
2738 |
+
#: inc/options.php:3202
|
2739 |
msgid ""
|
2740 |
"Select months from a year to show content.</br>Examples:</br>1 => show "
|
2741 |
"content in January </br> 3-6 => show content from March to June </br> "
|
2742 |
"1,5,8-9 => show content in January,May and from August to September"
|
2743 |
msgstr ""
|
2744 |
|
2745 |
+
#: inc/options.php:3207
|
2746 |
msgid "Years"
|
2747 |
msgstr ""
|
2748 |
|
2749 |
+
#: inc/options.php:3208
|
2750 |
msgid ""
|
2751 |
"Select years to show content.</br>Examples:</br> 2016 => show content in "
|
2752 |
"2016 </br>2014-2016 => show content from 2014 to 2016 </br> "
|
2753 |
"2016,2017,2345-2666 => show content in 2016,2017 and from 2345 to 2666"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
+
#: inc/options.php:3226
|
2757 |
msgid "Insert scheduled content."
|
2758 |
msgstr ""
|
2759 |
|
2760 |
+
#: inc/options.php:3230
|
2761 |
msgid "Scheduled Shortcode"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
+
#: inc/options.php:3231
|
2765 |
msgid "scheduled-shortcode/"
|
2766 |
msgstr ""
|
2767 |
|
2768 |
+
#: inc/options.php:3247
|
2769 |
msgid "Set background for section. Leave blank for transparent."
|
2770 |
msgstr ""
|
2771 |
|
2772 |
+
#: inc/options.php:3254
|
2773 |
msgid "Upload an image to display in the background."
|
2774 |
msgstr ""
|
2775 |
|
2776 |
+
#: inc/options.php:3258
|
2777 |
msgid "Background Repeat"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
+
#: inc/options.php:3259
|
2781 |
msgid "Choose repeat style for the background image."
|
2782 |
msgstr ""
|
2783 |
|
2784 |
+
#: inc/options.php:3262
|
2785 |
msgid "Repeat"
|
2786 |
msgstr ""
|
2787 |
|
2788 |
+
#: inc/options.php:3263
|
2789 |
msgid "Repeat-x"
|
2790 |
msgstr ""
|
2791 |
|
2792 |
+
#: inc/options.php:3264
|
2793 |
msgid "Repeat-y"
|
2794 |
msgstr ""
|
2795 |
|
2796 |
+
#: inc/options.php:3265
|
2797 |
msgid "No-repeat"
|
2798 |
msgstr ""
|
2799 |
|
2800 |
+
#: inc/options.php:3266 inc/options.php:3326
|
2801 |
msgid "Inherit"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
+
#: inc/options.php:3273
|
2805 |
msgid "Choose the postion of the background image."
|
2806 |
msgstr ""
|
2807 |
|
2808 |
+
#: inc/options.php:3289
|
2809 |
msgid "Background Parallax"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
+
#: inc/options.php:3290
|
2813 |
msgid "Choose how the background image scrolls and responds."
|
2814 |
msgstr ""
|
2815 |
|
2816 |
+
#: inc/options.php:3307
|
2817 |
msgid "Set border color for section."
|
2818 |
msgstr ""
|
2819 |
|
2820 |
+
#: inc/options.php:3312
|
2821 |
msgid "Select border style for section"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
+
#: inc/options.php:3316
|
2825 |
msgid "Hidden"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
+
#: inc/options.php:3319
|
2829 |
msgid "Solid"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
+
#: inc/options.php:3320
|
2833 |
msgid "Double"
|
2834 |
msgstr ""
|
2835 |
|
2836 |
+
#: inc/options.php:3321
|
2837 |
msgid "Groove"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
+
#: inc/options.php:3322
|
2841 |
msgid "Ridge"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
+
#: inc/options.php:3323
|
2845 |
msgid "Inset"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
+
#: inc/options.php:3324
|
2849 |
msgid "Outset"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
+
#: inc/options.php:3325
|
2853 |
msgid "Initial"
|
2854 |
msgstr ""
|
2855 |
|
2856 |
+
#: inc/options.php:3336
|
2857 |
msgid "Padding Top"
|
2858 |
msgstr ""
|
2859 |
|
2860 |
+
#: inc/options.php:3344
|
2861 |
msgid "Padding Bottom"
|
2862 |
msgstr ""
|
2863 |
|
2864 |
+
#: inc/options.php:3352
|
2865 |
msgid "Padding Left"
|
2866 |
msgstr ""
|
2867 |
|
2868 |
+
#: inc/options.php:3360
|
2869 |
msgid "Padding Right"
|
2870 |
msgstr ""
|
2871 |
|
2872 |
+
#: inc/options.php:3365
|
2873 |
msgid "Contents in Container ?"
|
2874 |
msgstr ""
|
2875 |
|
2876 |
+
#: inc/options.php:3366
|
2877 |
msgid "Put the content in container."
|
2878 |
msgstr ""
|
2879 |
|
2880 |
+
#: inc/options.php:3372
|
2881 |
msgid "Section content."
|
2882 |
msgstr ""
|
2883 |
|
2884 |
+
#: inc/options.php:3374
|
2885 |
msgid "Section Content"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
+
#: inc/options.php:3375
|
2889 |
msgid "Insert content for section."
|
2890 |
msgstr ""
|
2891 |
|
2892 |
+
#: inc/options.php:3381
|
2893 |
msgid "Top Separator"
|
2894 |
msgstr ""
|
2895 |
|
2896 |
+
#: inc/options.php:3385 inc/options.php:3405
|
2897 |
msgid "Triangle"
|
2898 |
msgstr ""
|
2899 |
|
2900 |
+
#: inc/options.php:3386
|
2901 |
msgid "Doublediagonal"
|
2902 |
msgstr ""
|
2903 |
|
2904 |
+
#: inc/options.php:3387 inc/options.php:3406
|
2905 |
msgid "Halfcircle"
|
2906 |
msgstr ""
|
2907 |
|
2908 |
+
#: inc/options.php:3388 inc/options.php:3407
|
2909 |
msgid "Bigtriangle"
|
2910 |
msgstr ""
|
2911 |
|
2912 |
+
#: inc/options.php:3389 inc/options.php:3408
|
2913 |
msgid "Bighalfcircle"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
+
#: inc/options.php:3390 inc/options.php:3409
|
2917 |
msgid "Curl"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
+
#: inc/options.php:3391 inc/options.php:3410
|
2921 |
msgid "Multitriangles"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: inc/options.php:3392
|
2925 |
msgid "Roundedsplit"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
+
#: inc/options.php:3393 inc/options.php:3413
|
2929 |
msgid "Boxes"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
+
#: inc/options.php:3394 inc/options.php:3414
|
2933 |
msgid "Zigzag"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
+
#: inc/options.php:3395
|
2937 |
msgid "Clouds"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
+
#: inc/options.php:3401
|
2941 |
msgid "Bottom Separator"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: inc/options.php:3411
|
2945 |
msgid "Roundedcorners"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: inc/options.php:3412
|
2949 |
msgid "Foldedcorner"
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: inc/options.php:3415
|
2953 |
msgid "Stamp"
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: inc/options.php:3421
|
2957 |
msgid "Full Height"
|
2958 |
msgstr ""
|
2959 |
|
2960 |
+
#: inc/options.php:3422
|
2961 |
msgid "Choose to set the section height same as browser window."
|
2962 |
msgstr ""
|
2963 |
|
2964 |
+
#: inc/options.php:3439
|
2965 |
msgid "Section Shortcode"
|
2966 |
msgstr ""
|
2967 |
|
2968 |
+
#: inc/options.php:3440
|
2969 |
msgid "section-shortcode/"
|
2970 |
msgstr ""
|
2971 |
|
2972 |
+
#: inc/options.php:3455 inc/options.php:3468
|
2973 |
msgid "Slider"
|
2974 |
msgstr ""
|
2975 |
|
2976 |
+
#: inc/options.php:3469
|
2977 |
msgid "slider-shortcode/"
|
2978 |
msgstr ""
|
2979 |
|
2980 |
+
#: inc/options.php:3484
|
2981 |
msgid "Title "
|
2982 |
msgstr ""
|
2983 |
|
2984 |
+
#: inc/options.php:3485
|
2985 |
msgid "Insert the title for the social icon."
|
2986 |
msgstr ""
|
2987 |
|
2988 |
+
#: inc/options.php:3499
|
2989 |
msgid "In pixels (px), eg: 13px."
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
#: inc/options.php:3509
|
2993 |
msgid "Set background color for icon."
|
2994 |
msgstr ""
|
2995 |
|
2996 |
+
#: inc/options.php:3514
|
2997 |
msgid "Icon 3D effect"
|
2998 |
msgstr ""
|
2999 |
|
3000 |
+
#: inc/options.php:3515
|
3001 |
msgid "Display box shadow for icon."
|
3002 |
msgstr ""
|
3003 |
|
3004 |
+
#: inc/options.php:3523
|
3005 |
msgid "Icon Box Radius Style"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
+
#: inc/options.php:3529
|
3009 |
msgid "Circle "
|
3010 |
msgstr ""
|
3011 |
|
3012 |
+
#: inc/options.php:3535
|
3013 |
msgid "Icon Link URL"
|
3014 |
msgstr ""
|
3015 |
|
3016 |
+
#: inc/options.php:3536
|
3017 |
msgid "Add the icon's url eg: http://example.com."
|
3018 |
msgstr ""
|
3019 |
|
3020 |
+
#: inc/options.php:3540
|
3021 |
+
msgid "Icon Target"
|
3022 |
+
msgstr ""
|
3023 |
+
|
3024 |
+
#: inc/options.php:3561
|
3025 |
msgid "Social Shortcode"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
+
#: inc/options.php:3562
|
3029 |
msgid "social-shortcode/"
|
3030 |
msgstr ""
|
3031 |
|
3032 |
+
#: inc/options.php:3576
|
3033 |
msgid "Select tabs' style."
|
3034 |
msgstr ""
|
3035 |
|
3036 |
+
#: inc/options.php:3579
|
3037 |
msgid "Simple Style Justified"
|
3038 |
msgstr ""
|
3039 |
|
3040 |
+
#: inc/options.php:3581
|
3041 |
msgid "Button Style Justified"
|
3042 |
msgstr ""
|
3043 |
|
3044 |
+
#: inc/options.php:3583
|
3045 |
msgid "Normal Style Justified"
|
3046 |
msgstr ""
|
3047 |
|
3048 |
+
#: inc/options.php:3584
|
3049 |
msgid "Vertical Style"
|
3050 |
msgstr ""
|
3051 |
|
3052 |
+
#: inc/options.php:3585
|
3053 |
msgid "Vertical Style Right"
|
3054 |
msgstr ""
|
3055 |
|
3056 |
+
#: inc/options.php:3591
|
3057 |
msgid "Set color for tab item's title."
|
3058 |
msgstr ""
|
3059 |
|
3060 |
+
#: inc/options.php:3608
|
3061 |
msgid "Tab Items"
|
3062 |
msgstr ""
|
3063 |
|
3064 |
+
#: inc/options.php:3609
|
3065 |
msgid "Insert tab items."
|
3066 |
msgstr ""
|
3067 |
|
3068 |
+
#: inc/options.php:3615
|
3069 |
msgid "Tab Shortcode"
|
3070 |
msgstr ""
|
3071 |
|
3072 |
+
#: inc/options.php:3616
|
3073 |
msgid "tabs-shortcode/"
|
3074 |
msgstr ""
|
3075 |
|
3076 |
+
#: inc/options.php:3631
|
3077 |
msgid ""
|
3078 |
"Select visible permissions.Private for author only. Members for logged-in "
|
3079 |
"users. Guests for users not logged in."
|
3080 |
msgstr ""
|
3081 |
|
3082 |
+
#: inc/options.php:3633
|
3083 |
msgid "Private"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
+
#: inc/options.php:3634
|
3087 |
msgid "Members"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
+
#: inc/options.php:3635
|
3091 |
msgid "Guests"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
+
#: inc/options.php:3642
|
3095 |
msgid "Set content for targeted users."
|
3096 |
msgstr ""
|
3097 |
|
3098 |
+
#: inc/options.php:3647
|
3099 |
msgid "Alternative Content"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
+
#: inc/options.php:3648
|
3103 |
msgid "Set content for other users."
|
3104 |
msgstr ""
|
3105 |
|
3106 |
+
#: inc/options.php:3652
|
3107 |
msgid "Targeted Shortcode"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
+
#: inc/options.php:3653
|
3111 |
msgid "targeted-shortcode/"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
+
#: inc/options.php:3667
|
3115 |
msgid "Style "
|
3116 |
msgstr ""
|
3117 |
|
3118 |
+
#: inc/options.php:3668
|
3119 |
msgid "Select testimonial's style"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
+
#: inc/options.php:3671
|
3123 |
msgid "Box"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
+
#: inc/options.php:3678
|
3127 |
msgid "Name of testimonial's author."
|
3128 |
msgstr ""
|
3129 |
|
3130 |
+
#: inc/options.php:3683
|
3131 |
msgid "Byline"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
+
#: inc/options.php:3684
|
3135 |
msgid "Byline of testimonial's author."
|
3136 |
msgstr ""
|
3137 |
|
3138 |
+
#: inc/options.php:3688
|
3139 |
msgid "Avatar"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
+
#: inc/options.php:3689
|
3143 |
msgid "Avatar of testimonial's author."
|
3144 |
msgstr ""
|
3145 |
|
3146 |
+
#: inc/options.php:3695
|
3147 |
msgid "Alignment"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
+
#: inc/options.php:3696
|
3151 |
msgid "Select the content's alignment."
|
3152 |
msgstr ""
|
3153 |
|
3154 |
+
#: inc/options.php:3703 inc/options.php:3705
|
3155 |
msgid "Testimonial Content"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
+
#: inc/options.php:3706
|
3159 |
msgid "Insert content for testimonial."
|
3160 |
msgstr ""
|
3161 |
|
3162 |
+
#: inc/options.php:3722
|
3163 |
msgid "Testimonial Shortcode"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
+
#: inc/options.php:3723
|
3167 |
msgid "testimonial-shortcode/"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
+
#: inc/options.php:3738
|
3171 |
msgid "Columns"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
+
#: inc/options.php:3739
|
3175 |
msgid "Number of items."
|
3176 |
msgstr ""
|
3177 |
|
3178 |
+
#: inc/options.php:3742
|
3179 |
msgid "2 columns"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
+
#: inc/options.php:3743
|
3183 |
msgid "3 columns"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
+
#: inc/options.php:3744
|
3187 |
msgid "4 columns"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
#: inc/options.php:3745
|
3191 |
msgid "5 columns"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
+
#: inc/options.php:3764
|
3195 |
msgid "Timeline Items"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
+
#: inc/options.php:3765
|
3199 |
msgid "Insert timeline items."
|
3200 |
msgstr ""
|
3201 |
|
3202 |
+
#: inc/options.php:3770
|
3203 |
msgid "Timeline Shortcode"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
+
#: inc/options.php:3771
|
3207 |
msgid "timeline-shortcode/"
|
3208 |
msgstr ""
|
3209 |
|
3210 |
+
#: inc/options.php:3787
|
3211 |
msgid "Tooltip Text"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
+
#: inc/options.php:3788
|
3215 |
msgid "Insert the text that displays in the tooltip"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
+
#: inc/options.php:3793
|
3219 |
+
msgid "Tooltip Background Color"
|
3220 |
+
msgstr ""
|
3221 |
+
|
3222 |
+
#: inc/options.php:3794
|
3223 |
+
msgid "Set Background Color for the text."
|
3224 |
+
msgstr ""
|
3225 |
+
|
3226 |
+
#: inc/options.php:3801
|
3227 |
+
msgid "Tooltip Border Radius"
|
3228 |
+
msgstr ""
|
3229 |
+
|
3230 |
+
#: inc/options.php:3802
|
3231 |
+
msgid "Set Border Radius for the text."
|
3232 |
+
msgstr ""
|
3233 |
+
|
3234 |
+
#: inc/options.php:3806
|
3235 |
msgid "Tooltip Position"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
+
#: inc/options.php:3807
|
3239 |
msgid "Choose the display position."
|
3240 |
msgstr ""
|
3241 |
|
3242 |
+
#: inc/options.php:3817
|
3243 |
msgid "Tooltip Trigger"
|
3244 |
msgstr ""
|
3245 |
|
3246 |
+
#: inc/options.php:3818
|
3247 |
msgid "Choose action to trigger the tooltip."
|
3248 |
msgstr ""
|
3249 |
|
3250 |
+
#: inc/options.php:3828
|
3251 |
msgid "Insert the text that will activate the tooltip hover"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
+
#: inc/options.php:3844
|
3255 |
msgid "Tooltip Shortcode"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
+
#: inc/options.php:3845
|
3259 |
msgid "tooltip-shortcode/"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
+
#: inc/options.php:3861
|
3263 |
msgid "Mp4 Video Url"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
+
#: inc/options.php:3862
|
3267 |
msgid ""
|
3268 |
"Add the URL of video in MPEG4 format. WebM and MP4 format must be included "
|
3269 |
"to render your video with cross browser compatibility. OGV is optional."
|
3270 |
msgstr ""
|
3271 |
|
3272 |
+
#: inc/options.php:3868
|
3273 |
msgid "Ogv Video Url"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
+
#: inc/options.php:3869
|
3277 |
msgid ""
|
3278 |
"Add the URL of video in OGV format. WebM and MP4 format must be included to "
|
3279 |
"render your video with cross browser compatibility. OGV is optional."
|
3280 |
msgstr ""
|
3281 |
|
3282 |
+
#: inc/options.php:3875
|
3283 |
msgid "Webm Video Url"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
+
#: inc/options.php:3876
|
3287 |
msgid ""
|
3288 |
"Add the URL of video in webm format. WebM and MP4 format must be included to "
|
3289 |
"render your video with cross browser compatibility. OGV is optional."
|
3290 |
msgstr ""
|
3291 |
|
3292 |
+
#: inc/options.php:3882
|
3293 |
msgid "Poster"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
+
#: inc/options.php:3883
|
3297 |
msgid "Display a image when browser does not support HTML5 format."
|
3298 |
msgstr ""
|
3299 |
|
3300 |
+
#: inc/options.php:3949
|
3301 |
msgid "Video Shortcode"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
+
#: inc/options.php:3950
|
3305 |
msgid "video-shortcode/"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
+
#: inc/options.php:3965
|
3309 |
msgid "Vimeo URL"
|
3310 |
msgstr ""
|
3311 |
|
3312 |
+
#: inc/options.php:4031
|
3313 |
msgid "Vimeo Shortcode"
|
3314 |
msgstr ""
|
3315 |
|
3316 |
+
#: inc/options.php:4032
|
3317 |
msgid "vimeo-shortcode/"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
+
#: inc/options.php:4046
|
3321 |
msgid "Youtube URL"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
+
#: inc/options.php:4112
|
3325 |
msgid "Youtube Shortcode"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
+
#: inc/options.php:4113
|
3329 |
msgid "youtube-shortcode/"
|
3330 |
msgstr ""
|
3331 |
|
3332 |
+
#: inc/options.php:4128
|
3333 |
msgid "Choose widget name to show"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
+
#: inc/options.php:4135
|
3337 |
msgid "Set background color for widget area"
|
3338 |
msgstr ""
|
3339 |
|
3340 |
+
#: inc/options.php:4143
|
3341 |
msgid "Content Padding. eg:30"
|
3342 |
msgstr ""
|
3343 |
|
3344 |
+
#: inc/options.php:4159
|
3345 |
msgid "Widget Area Shortcode"
|
3346 |
msgstr ""
|
3347 |
|
readme.txt
CHANGED
@@ -68,6 +68,12 @@ Activate plugin at "Plugins" administration page.
|
|
68 |
|
69 |
== Changelog ==
|
70 |
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
= 1.5.7 - 21/06/2016 =
|
72 |
Added: new option for List
|
73 |
Added: new option for Flip Box ( Diretion:flip top/left/bottom/right; slide top/left/bottom/right )
|
68 |
|
69 |
== Changelog ==
|
70 |
|
71 |
+
= 1.5.8 - 15/07/2016 =
|
72 |
+
Added: new option for Social ( Target )
|
73 |
+
Added: new option for accordion( style->spacing style, type->none type, title color, title background color )
|
74 |
+
Added: new shortcode Aduio
|
75 |
+
Added: new option for Tooltip ( tooltip background color, tooltip border radius )
|
76 |
+
|
77 |
= 1.5.7 - 21/06/2016 =
|
78 |
Added: new option for List
|
79 |
Added: new option for Flip Box ( Diretion:flip top/left/bottom/right; slide top/left/bottom/right )
|
shortcodes/class-accordion.php
CHANGED
@@ -44,8 +44,7 @@ class Magee_Accordion {
|
|
44 |
$html = '<div class="panel-group magee-accordion accordion-'.$style.' '.esc_attr($class).'" role="tablist" aria-multiselectable="true" id="'.esc_attr($this->id).'">'.do_shortcode( Magee_Core::fix_shortcodes($content)).'</div>';
|
45 |
$html .= '<script>
|
46 |
jQuery(function($) {
|
47 |
-
if($("#magee-sc-form-preview").length>0){
|
48 |
-
if($("#magee-sc-form-preview").contents().find(".panel-heading").length>1){
|
49 |
num = $("#magee-sc-form-preview").contents().find(".panel-heading").length ;
|
50 |
for($i=0;$i<num;$i++){
|
51 |
$("#magee-sc-form-preview").contents().find(".panel-heading").eq($i).on("click",function(e){
|
@@ -64,7 +63,30 @@ class Magee_Accordion {
|
|
64 |
}
|
65 |
});
|
66 |
};
|
67 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
}
|
69 |
});
|
70 |
</script>';
|
@@ -85,31 +107,62 @@ class Magee_Accordion {
|
|
85 |
array(
|
86 |
'title' =>'',
|
87 |
'status' =>'',
|
88 |
-
'
|
|
|
|
|
|
|
89 |
), $args
|
90 |
);
|
91 |
|
92 |
extract( $defaults );
|
93 |
self::$args = $defaults;
|
94 |
-
|
|
|
95 |
if( $status == "open" ) {
|
96 |
$status = "in";
|
97 |
$expanded = "true";
|
98 |
$collapse = "";
|
|
|
|
|
|
|
99 |
}
|
100 |
else{
|
101 |
$status = "";
|
102 |
$expanded = "false";
|
103 |
$collapse = "collapsed";
|
|
|
|
|
|
|
104 |
}
|
105 |
-
|
|
|
|
|
|
|
|
|
|
|
106 |
$itemId = 'collapse'.$this->id."-".$this->num;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
|
108 |
-
$html
|
109 |
<div class="panel-heading" role="tab" id="heading'.$itemId.'">
|
110 |
<a class="accordion-toggle '.$collapse.'" data-toggle="collapse" data-parent="#'.$this->id.'" href="#'.$itemId.'" aria-expanded="'.$expanded.'" aria-controls="'.$itemId.'">
|
111 |
<h4 class="panel-title">
|
112 |
-
|
113 |
</h4>
|
114 |
</a>
|
115 |
</div>
|
44 |
$html = '<div class="panel-group magee-accordion accordion-'.$style.' '.esc_attr($class).'" role="tablist" aria-multiselectable="true" id="'.esc_attr($this->id).'">'.do_shortcode( Magee_Core::fix_shortcodes($content)).'</div>';
|
45 |
$html .= '<script>
|
46 |
jQuery(function($) {
|
47 |
+
if($("#magee-sc-form-preview").length>0){
|
|
|
48 |
num = $("#magee-sc-form-preview").contents().find(".panel-heading").length ;
|
49 |
for($i=0;$i<num;$i++){
|
50 |
$("#magee-sc-form-preview").contents().find(".panel-heading").eq($i).on("click",function(e){
|
63 |
}
|
64 |
});
|
65 |
};
|
66 |
+
$("#magee-sc-form-preview").contents().find(".panel-title").each(function(){
|
67 |
+
if($(this).find(".open-magee-accordion").length>0 || $(this).find(".close-magee-accordion").length>0){
|
68 |
+
var open_icon =$(this).find("i").attr("data-open");
|
69 |
+
var close_icon = $(this).find("i").attr("data-close");
|
70 |
+
var now_class = $(this).find("i").attr("class");
|
71 |
+
$(this).click(function(){
|
72 |
+
if($(this).find("i").hasClass("open-magee-accordion")){
|
73 |
+
var new_class = now_class.replace("open-magee-accordion","close-magee-accordion").replace(open_icon,close_icon);
|
74 |
+
$(this).find("i").attr("class",new_class);
|
75 |
+
}else{
|
76 |
+
var new_class = now_class.replace("close-magee-accordion","open-magee-accordion").replace(close_icon,open_icon);
|
77 |
+
$(this).find("i").attr("class",new_class);
|
78 |
+
$(this).parents(".panel-default").siblings().each(function(){
|
79 |
+
var sub_icon1 = $(this).find(".panel-title i").attr("data-open");
|
80 |
+
var sub_icon2 = $(this).find(".panel-title i").attr("data-close");
|
81 |
+
var sub_class = $(this).find(".panel-title i").attr("class");
|
82 |
+
var new_sub_class = sub_class.replace("open-magee-accordion","close-magee-accordion").replace(sub_icon1,sub_icon2);
|
83 |
+
$(this).find(".panel-title i").attr("class",new_sub_class);
|
84 |
+
|
85 |
+
});
|
86 |
+
}
|
87 |
+
});
|
88 |
+
}
|
89 |
+
});
|
90 |
}
|
91 |
});
|
92 |
</script>';
|
107 |
array(
|
108 |
'title' =>'',
|
109 |
'status' =>'',
|
110 |
+
'close_icon' =>'',
|
111 |
+
'open_icon' =>'',
|
112 |
+
'background_color' => '',
|
113 |
+
'color' => '',
|
114 |
), $args
|
115 |
);
|
116 |
|
117 |
extract( $defaults );
|
118 |
self::$args = $defaults;
|
119 |
+
$html = '';
|
120 |
+
$icon_str = '';
|
121 |
if( $status == "open" ) {
|
122 |
$status = "in";
|
123 |
$expanded = "true";
|
124 |
$collapse = "";
|
125 |
+
if($open_icon !== ''):
|
126 |
+
$icon_str = '<i class="fa '.esc_attr($open_icon).' open-magee-accordion" data-close="'.$close_icon.'" data-open="'.$open_icon.'"></i>';
|
127 |
+
endif;
|
128 |
}
|
129 |
else{
|
130 |
$status = "";
|
131 |
$expanded = "false";
|
132 |
$collapse = "collapsed";
|
133 |
+
if($close_icon !== ''):
|
134 |
+
$icon_str = '<i class="fa '.esc_attr($close_icon).' close-magee-accordion" data-close="'.$close_icon.'" data-open="'.$open_icon.'"></i>';
|
135 |
+
endif;
|
136 |
}
|
137 |
+
/*if( stristr($icon,'fa-')):
|
138 |
+
|
139 |
+
else:
|
140 |
+
$icon_str = '<img class="image-instead" src="'.esc_attr($icon).'"/>';
|
141 |
+
endif;*/
|
142 |
+
|
143 |
$itemId = 'collapse'.$this->id."-".$this->num;
|
144 |
+
$addclass = 'panel-css-'.$this->num;
|
145 |
+
|
146 |
+
|
147 |
+
$html .= '<div class="panel panel-default '.$addclass.'">';
|
148 |
+
$html .= '<style type="text/css">';
|
149 |
+
if($background_color !== '')
|
150 |
+
$html .= '#'.$this->id.' .'.$addclass.' .panel-heading{
|
151 |
+
background-color:'.$background_color.'!important;}
|
152 |
+
#'.$this->id.' .'.$addclass.'{border-color:'.$background_color.'!important;}';
|
153 |
+
|
154 |
+
if($color !== '')
|
155 |
+
$html .= '#'.$this->id.' .'.$addclass.' .panel-title{color:'.$color.'!important;}
|
156 |
+
#'.$this->id.' .'.$addclass.' .panel-title i{color:'.$color.';}
|
157 |
+
#'.$this->id.' .'.$addclass.' .panel-heading .accordion-toggle:after{color:'.$color.';}';
|
158 |
+
|
159 |
+
$html .= '</style>';
|
160 |
|
161 |
+
$html .= '
|
162 |
<div class="panel-heading" role="tab" id="heading'.$itemId.'">
|
163 |
<a class="accordion-toggle '.$collapse.'" data-toggle="collapse" data-parent="#'.$this->id.'" href="#'.$itemId.'" aria-expanded="'.$expanded.'" aria-controls="'.$itemId.'">
|
164 |
<h4 class="panel-title">
|
165 |
+
'.$icon_str.esc_attr($title).'
|
166 |
</h4>
|
167 |
</a>
|
168 |
</div>
|
shortcodes/class-audio.php
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?php
|
2 |
-
if( !class_exists('
|
3 |
class Magee_Audio {
|
4 |
|
5 |
|
@@ -34,13 +34,16 @@ class Magee_Audio {
|
|
34 |
'autoplay' =>'',
|
35 |
'loop' =>'',
|
36 |
'controls' =>'',
|
|
|
37 |
),$args
|
38 |
);
|
39 |
|
40 |
extract( $defaults );
|
41 |
self::$args = $defaults;
|
|
|
|
|
42 |
if( $mute =='yes'):
|
43 |
-
$mute = '
|
44 |
else:
|
45 |
$mute = '';
|
46 |
endif;
|
@@ -55,11 +58,11 @@ class Magee_Audio {
|
|
55 |
$loop = '';
|
56 |
endif;
|
57 |
if( $controls == 'yes'):
|
58 |
-
$controls = 'controls';
|
59 |
-
else:
|
60 |
$controls = '';
|
|
|
|
|
61 |
endif;
|
62 |
-
$html = '<audio class="'.esc_attr($class).'"
|
63 |
if( !empty($mp3)){
|
64 |
$html .= '<source src="'.esc_url($mp3).'" type="audio/mpeg">';
|
65 |
}
|
@@ -71,6 +74,21 @@ class Magee_Audio {
|
|
71 |
}
|
72 |
$html .= 'Your browser does not support the audio element.' ;
|
73 |
$html .='</audio>' ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
return $html;
|
75 |
}
|
76 |
}
|
1 |
<?php
|
2 |
+
if( !class_exists('Magee_Audio') ):
|
3 |
class Magee_Audio {
|
4 |
|
5 |
|
34 |
'autoplay' =>'',
|
35 |
'loop' =>'',
|
36 |
'controls' =>'',
|
37 |
+
'style' =>'dark',
|
38 |
),$args
|
39 |
);
|
40 |
|
41 |
extract( $defaults );
|
42 |
self::$args = $defaults;
|
43 |
+
$addclass = uniqid('audiocontrols-');
|
44 |
+
$class .= ' '.$addclass;
|
45 |
if( $mute =='yes'):
|
46 |
+
$mute = 'mute';
|
47 |
else:
|
48 |
$mute = '';
|
49 |
endif;
|
58 |
$loop = '';
|
59 |
endif;
|
60 |
if( $controls == 'yes'):
|
|
|
|
|
61 |
$controls = '';
|
62 |
+
else:
|
63 |
+
$controls = 'controls';
|
64 |
endif;
|
65 |
+
$html = '<audio preload="auto" class="ms-audio '.esc_attr($class).'" data-style="'.$style.'" data-controls="'.$controls.'" id="'.esc_attr($id).'" data-mute="'.$mute.'" data-loop="'.$loop.'" data-autoplay="'.$autoplay.'" >';
|
66 |
if( !empty($mp3)){
|
67 |
$html .= '<source src="'.esc_url($mp3).'" type="audio/mpeg">';
|
68 |
}
|
74 |
}
|
75 |
$html .= 'Your browser does not support the audio element.' ;
|
76 |
$html .='</audio>' ;
|
77 |
+
$html .= "<script>
|
78 |
+
jQuery(function($){
|
79 |
+
if(jQuery('#magee-sc-form-preview').length>0){
|
80 |
+
jQuery('#magee-sc-form-preview').ready(function(){
|
81 |
+
jQuery('#magee-sc-form-preview').contents().find('.ms-audio').audioPlayer({
|
82 |
+
classPrefix: 'audioplayer',
|
83 |
+
strPlay: 'Play',
|
84 |
+
strPause: 'Pause',
|
85 |
+
strVolume: 'Volume',
|
86 |
+
strControls : '".$controls."',
|
87 |
+
strStyle : '".$style."',
|
88 |
+
});
|
89 |
+
});
|
90 |
+
}
|
91 |
+
});</script>";
|
92 |
return $html;
|
93 |
}
|
94 |
}
|
shortcodes/class-social.php
CHANGED
@@ -30,6 +30,7 @@ class Magee_Social {
|
|
30 |
'title' =>'',
|
31 |
'icon' =>'',
|
32 |
'iconlink' =>'#',
|
|
|
33 |
'iconcolor' =>'#A0A0A0',
|
34 |
'backgroundcolor' =>'transparent',
|
35 |
'iconboxedradius' =>'',
|
@@ -72,10 +73,10 @@ class Magee_Social {
|
|
72 |
}
|
73 |
|
74 |
if( stristr($icon,'fa-')):
|
75 |
-
$html=sprintf(' %s <a href="%s" Id="%s" class="fa %s magee-icon %s %s %s_social_icon_acolor" data-toggle="tooltip" data-placement="top" title="" data-original-title="%s"></a>',
|
76 |
-
$styles,$iconlink,$id,$icon,$sty3d,$class,$uqid,$title);
|
77 |
else:
|
78 |
-
$html=sprintf(' %s <a href="%s" Id="%s" class="fa magee-icon %s %s %s_social_icon_acolor" data-toggle="tooltip" data-placement="top" title="" data-original-title="%s"><img src="%s" class="image_instead"/></a>',$styles,$iconlink,$id,$sty3d,$class,$uqid,$title,$icon);
|
79 |
|
80 |
endif;
|
81 |
$html .= "<script>
|
30 |
'title' =>'',
|
31 |
'icon' =>'',
|
32 |
'iconlink' =>'#',
|
33 |
+
'icontarget' =>'',
|
34 |
'iconcolor' =>'#A0A0A0',
|
35 |
'backgroundcolor' =>'transparent',
|
36 |
'iconboxedradius' =>'',
|
73 |
}
|
74 |
|
75 |
if( stristr($icon,'fa-')):
|
76 |
+
$html=sprintf(' %s <a href="%s" target="%s" Id="%s" class="fa %s magee-icon %s %s %s_social_icon_acolor" data-toggle="tooltip" data-placement="top" title="" data-original-title="%s"></a>',
|
77 |
+
$styles,$iconlink,$icontarget,$id,$icon,$sty3d,$class,$uqid,$title);
|
78 |
else:
|
79 |
+
$html=sprintf(' %s <a href="%s" target="%s" Id="%s" class="fa magee-icon %s %s %s_social_icon_acolor" data-toggle="tooltip" data-placement="top" title="" data-original-title="%s"><img src="%s" class="image_instead"/></a>',$styles,$iconlink,$icontarget,$id,$sty3d,$class,$uqid,$title,$icon);
|
80 |
|
81 |
endif;
|
82 |
$html .= "<script>
|
shortcodes/class-tooltip.php
CHANGED
@@ -27,6 +27,8 @@ class Magee_Tooltip {
|
|
27 |
'id' =>'',
|
28 |
'class' =>'',
|
29 |
'title' =>'',
|
|
|
|
|
30 |
'trigger' =>'click',
|
31 |
'placement' =>'top',
|
32 |
), $args
|
@@ -34,9 +36,18 @@ class Magee_Tooltip {
|
|
34 |
|
35 |
extract( $defaults );
|
36 |
self::$args = $defaults;
|
37 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
|
39 |
-
$html
|
40 |
$html .= "<script>
|
41 |
jQuery(function($){
|
42 |
if(jQuery('#magee-sc-form-preview').length>0){
|
27 |
'id' =>'',
|
28 |
'class' =>'',
|
29 |
'title' =>'',
|
30 |
+
'background_color' =>'',
|
31 |
+
'border_radius' =>'',
|
32 |
'trigger' =>'click',
|
33 |
'placement' =>'top',
|
34 |
), $args
|
36 |
|
37 |
extract( $defaults );
|
38 |
self::$args = $defaults;
|
39 |
+
if(is_numeric($border_radius))
|
40 |
+
$border_radius = $border_radius.'px';
|
41 |
+
|
42 |
+
$addclass = uniqid("tooltip-");
|
43 |
+
$class .= ' '.$addclass;
|
44 |
+
$html = '';
|
45 |
+
if($background_color !== '')
|
46 |
+
$html .= '<style type="text/css">.'.$addclass.' + .tooltip > .tooltip-inner {background-color: '.$background_color.';border-radius:'.$border_radius.';}
|
47 |
+
.'.$addclass.' + .tooltip > .tooltip-arrow {border-'.$placement.'-color: '.$background_color.';}</style>';
|
48 |
+
|
49 |
|
50 |
+
$html .= sprintf('<span class="%s tooltip-text" id="%s" data-toggle="tooltip" data-trigger="%s" data-placement="%s" data-original-title="%s" >%s</span>',$class,$id,$trigger,$placement,$title,do_shortcode( Magee_Core::fix_shortcodes($content)));
|
51 |
$html .= "<script>
|
52 |
jQuery(function($){
|
53 |
if(jQuery('#magee-sc-form-preview').length>0){
|