Version Description
- December 15th 2015 =
Check out the blog post about 1.0.6.1 release
Download this release
Release Info
Developer | LiveComposer |
Plugin | Page Builder: Live Composer – drag and drop website builder (visual front end site editor) |
Version | 1.0.6.1 |
Comparing to | |
See all releases |
Code changes from version 1.0.6 to 1.0.6.1
- ds-live-composer.php +2 -2
- includes/other-functions.php +31 -0
- lang/dslc_string-default.mo +0 -0
- lang/dslc_string-default.po +0 -6098
- modules/blog/module.php +5 -1
- modules/downloads/module.php +5 -1
- modules/galleries/module.php +5 -1
- modules/partners/module.php +5 -1
- modules/posts/module.php +5 -1
- modules/projects/module.php +5 -1
- modules/staff/module.php +5 -1
- modules/testimonials/module.php +5 -1
- modules/tp-thumbnail/module.php +1 -1
- modules/woocommerce/module.php +5 -1
- readme.txt +6 -2
ds-live-composer.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin URI: http://www.livecomposerplugin.com
|
5 |
Description: Primarily a front-end page builder but can also be used to build a whole website ( with our blank theme ) from header to footer.
|
6 |
Author: Dany Duchaine and Slobodan Kustrimovic
|
7 |
-
Version: 1.0.6
|
8 |
Author URI: http://livecomposerplugin.com
|
9 |
License: GPL2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -16,7 +16,7 @@
|
|
16 |
* Constants
|
17 |
*/
|
18 |
|
19 |
-
define( 'DS_LIVE_COMPOSER_VER', '1.0.6' );
|
20 |
define( 'DS_LIVE_COMPOSER_LOAD_MINIFIED', true );
|
21 |
|
22 |
define( 'DS_LIVE_COMPOSER_BASENAME', plugin_basename( __FILE__ ) );
|
4 |
Plugin URI: http://www.livecomposerplugin.com
|
5 |
Description: Primarily a front-end page builder but can also be used to build a whole website ( with our blank theme ) from header to footer.
|
6 |
Author: Dany Duchaine and Slobodan Kustrimovic
|
7 |
+
Version: 1.0.6.1
|
8 |
Author URI: http://livecomposerplugin.com
|
9 |
License: GPL2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
16 |
* Constants
|
17 |
*/
|
18 |
|
19 |
+
define( 'DS_LIVE_COMPOSER_VER', '1.0.6.1' );
|
20 |
define( 'DS_LIVE_COMPOSER_LOAD_MINIFIED', true );
|
21 |
|
22 |
define( 'DS_LIVE_COMPOSER_BASENAME', plugin_basename( __FILE__ ) );
|
includes/other-functions.php
CHANGED
@@ -7,6 +7,7 @@
|
|
7 |
* dslc_aq_resize ( Resize an image using DSLC_Aq_Resize Class )
|
8 |
* dslc_get_social_count ( Returns amount of social shares a page has )
|
9 |
* dslc_icons_current_set ( Returns the ID of the currently used set based on icon )
|
|
|
10 |
*/
|
11 |
|
12 |
if( ! class_exists('DSLC_Aq_Resize') ) {
|
@@ -350,4 +351,34 @@ function dslc_icons_current_set( $icon = false ) {
|
|
350 |
return 'fontawesome';
|
351 |
}
|
352 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
353 |
}
|
7 |
* dslc_aq_resize ( Resize an image using DSLC_Aq_Resize Class )
|
8 |
* dslc_get_social_count ( Returns amount of social shares a page has )
|
9 |
* dslc_icons_current_set ( Returns the ID of the currently used set based on icon )
|
10 |
+
* dslc_get_attachment_alt ( Returnt he ALT attribute for an attachment )
|
11 |
*/
|
12 |
|
13 |
if( ! class_exists('DSLC_Aq_Resize') ) {
|
351 |
return 'fontawesome';
|
352 |
}
|
353 |
|
354 |
+
}
|
355 |
+
|
356 |
+
/**
|
357 |
+
* Returns the ALT attribute for an attachment
|
358 |
+
*
|
359 |
+
* @since 1.0.7
|
360 |
+
*
|
361 |
+
* @param string $attachment_ID The ID of the attachment
|
362 |
+
* @return string The ALT attribute text
|
363 |
+
*/
|
364 |
+
function dslc_get_attachment_alt( $attachment_ID ) {
|
365 |
+
|
366 |
+
// Get ALT
|
367 |
+
$thumb_alt = trim( strip_tags( get_post_meta( $attachment_ID, '_wp_attachment_image_alt', true) ) );
|
368 |
+
|
369 |
+
// No ALT supplied get attachment info
|
370 |
+
if ( empty( $thumb_alt ) )
|
371 |
+
$attachment = get_post( $attachment_ID );
|
372 |
+
|
373 |
+
// Use caption if no ALT supplied
|
374 |
+
if ( empty( $thumb_alt ) )
|
375 |
+
$thumb_alt = trim(strip_tags( $attachment->post_excerpt ));
|
376 |
+
|
377 |
+
// Use title if no caption supplied either
|
378 |
+
if ( empty( $thumb_alt ) )
|
379 |
+
$thumb_alt = trim(strip_tags( $attachment->post_title ));
|
380 |
+
|
381 |
+
// Return ALT
|
382 |
+
return esc_attr( $thumb_alt );
|
383 |
+
|
384 |
}
|
lang/dslc_string-default.mo
DELETED
Binary file
|
lang/dslc_string-default.po
DELETED
@@ -1,6098 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Live Composer\n"
|
4 |
-
"POT-Creation-Date: 2014-07-08 21:59+0100\n"
|
5 |
-
"PO-Revision-Date: 2014-07-08 21:59+0100\n"
|
6 |
-
"Last-Translator: \n"
|
7 |
-
"Language-Team: DanyDuchaine\n"
|
8 |
-
"Language: en\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.6.6\n"
|
13 |
-
"X-Poedit-Basepath: .\n"
|
14 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Poedit-KeywordsList: _x;__;_e\n"
|
17 |
-
"X-Poedit-SearchPath-0: ..\n"
|
18 |
-
|
19 |
-
#: ../ds-live-composer.php:67
|
20 |
-
msgid "Blog Variation 1"
|
21 |
-
msgstr ""
|
22 |
-
|
23 |
-
#: ../ds-live-composer.php:74
|
24 |
-
msgid "Blog Variation 2"
|
25 |
-
msgstr ""
|
26 |
-
|
27 |
-
#: ../ds-live-composer.php:81
|
28 |
-
msgid "Blog Variation 3"
|
29 |
-
msgstr ""
|
30 |
-
|
31 |
-
#: ../ds-live-composer.php:88
|
32 |
-
msgid "Projects Variation 1"
|
33 |
-
msgstr ""
|
34 |
-
|
35 |
-
#: ../ds-live-composer.php:95
|
36 |
-
msgid "Projects Variation 2"
|
37 |
-
msgstr ""
|
38 |
-
|
39 |
-
#: ../ds-live-composer.php:102
|
40 |
-
msgid "Partners Variation 1"
|
41 |
-
msgstr ""
|
42 |
-
|
43 |
-
#: ../ds-live-composer.php:109
|
44 |
-
msgid "Products Variation 1"
|
45 |
-
msgstr ""
|
46 |
-
|
47 |
-
#: ../ds-live-composer.php:116
|
48 |
-
msgid "Products Variation 2"
|
49 |
-
msgstr ""
|
50 |
-
|
51 |
-
#: ../ds-live-composer.php:123
|
52 |
-
msgid "Staff Variation 1"
|
53 |
-
msgstr ""
|
54 |
-
|
55 |
-
#: ../ds-live-composer.php:130
|
56 |
-
msgid "Staff Variation 2"
|
57 |
-
msgstr ""
|
58 |
-
|
59 |
-
#: ../includes/access-control.php:10
|
60 |
-
msgid "Administrators"
|
61 |
-
msgstr ""
|
62 |
-
|
63 |
-
#: ../includes/access-control.php:14
|
64 |
-
msgid "Editors"
|
65 |
-
msgstr ""
|
66 |
-
|
67 |
-
#: ../includes/access-control.php:18
|
68 |
-
msgid "Authors"
|
69 |
-
msgstr ""
|
70 |
-
|
71 |
-
#: ../includes/access-control.php:22
|
72 |
-
msgid "Contributors"
|
73 |
-
msgstr ""
|
74 |
-
|
75 |
-
#: ../includes/access-control.php:28
|
76 |
-
msgid "Access Control"
|
77 |
-
msgstr ""
|
78 |
-
|
79 |
-
#: ../includes/access-control.php:31
|
80 |
-
msgid "Front-End Editor"
|
81 |
-
msgstr ""
|
82 |
-
|
83 |
-
#: ../includes/access-control.php:34
|
84 |
-
msgid ""
|
85 |
-
"Who can use Live Composer in the front-end? This will also affect who can "
|
86 |
-
"manage post templates."
|
87 |
-
msgstr ""
|
88 |
-
|
89 |
-
#: ../includes/access-control.php:38
|
90 |
-
msgid "Projects Management"
|
91 |
-
msgstr ""
|
92 |
-
|
93 |
-
#: ../includes/access-control.php:41
|
94 |
-
msgid "Who can manage projects ( add, edit, trash... )?"
|
95 |
-
msgstr ""
|
96 |
-
|
97 |
-
#: ../includes/access-control.php:45
|
98 |
-
msgid "Galleries Management"
|
99 |
-
msgstr ""
|
100 |
-
|
101 |
-
#: ../includes/access-control.php:48
|
102 |
-
msgid "Who can manage galleries ( add, edit, trash... )?"
|
103 |
-
msgstr ""
|
104 |
-
|
105 |
-
#: ../includes/access-control.php:52
|
106 |
-
msgid "Staff Management"
|
107 |
-
msgstr ""
|
108 |
-
|
109 |
-
#: ../includes/access-control.php:55
|
110 |
-
msgid "Who can manage staff ( add, edit, trash... )?"
|
111 |
-
msgstr ""
|
112 |
-
|
113 |
-
#: ../includes/access-control.php:59
|
114 |
-
msgid "Downloads Management"
|
115 |
-
msgstr ""
|
116 |
-
|
117 |
-
#: ../includes/access-control.php:62
|
118 |
-
msgid "Who can manage downloads ( add, edit, trash... )?"
|
119 |
-
msgstr ""
|
120 |
-
|
121 |
-
#: ../includes/access-control.php:66
|
122 |
-
msgid "Testimonials Management"
|
123 |
-
msgstr ""
|
124 |
-
|
125 |
-
#: ../includes/access-control.php:69
|
126 |
-
msgid "Who can manage testimonials ( add, edit, trash... )?"
|
127 |
-
msgstr ""
|
128 |
-
|
129 |
-
#: ../includes/access-control.php:73
|
130 |
-
msgid "Partners Management"
|
131 |
-
msgstr ""
|
132 |
-
|
133 |
-
#: ../includes/access-control.php:76
|
134 |
-
msgid "Who can manage partners ( add, edit, trash... )?"
|
135 |
-
msgstr ""
|
136 |
-
|
137 |
-
#: ../includes/ajax.php:61 ../includes/ajax.php:154
|
138 |
-
#: ../includes/display-functions.php:1143
|
139 |
-
msgid "Drop modules here"
|
140 |
-
msgstr ""
|
141 |
-
|
142 |
-
#: ../includes/ajax.php:316 ../includes/ajax.php:321
|
143 |
-
msgid "General"
|
144 |
-
msgstr ""
|
145 |
-
|
146 |
-
#: ../includes/ajax.php:538 ../includes/display-functions.php:155
|
147 |
-
msgid "Upload Image"
|
148 |
-
msgstr ""
|
149 |
-
|
150 |
-
#: ../includes/ajax.php:539 ../includes/display-functions.php:156
|
151 |
-
msgid "Remove Image"
|
152 |
-
msgstr ""
|
153 |
-
|
154 |
-
#: ../includes/display-functions.php:41
|
155 |
-
msgid "FUNCTIONALITY"
|
156 |
-
msgstr ""
|
157 |
-
|
158 |
-
#: ../includes/display-functions.php:42
|
159 |
-
msgid "STYLING"
|
160 |
-
msgstr ""
|
161 |
-
|
162 |
-
#: ../includes/display-functions.php:43
|
163 |
-
msgid "RESPONSIVE"
|
164 |
-
msgstr ""
|
165 |
-
|
166 |
-
#: ../includes/display-functions.php:46 ../includes/display-functions.php:770
|
167 |
-
#: ../includes/scripts.php:23
|
168 |
-
msgid "CONFIRM"
|
169 |
-
msgstr ""
|
170 |
-
|
171 |
-
#: ../includes/display-functions.php:47 ../includes/display-functions.php:359
|
172 |
-
#: ../includes/display-functions.php:386 ../includes/display-functions.php:771
|
173 |
-
msgid "CANCEL"
|
174 |
-
msgstr ""
|
175 |
-
|
176 |
-
#: ../includes/display-functions.php:56
|
177 |
-
msgid "PUBLISH CHANGES"
|
178 |
-
msgstr ""
|
179 |
-
|
180 |
-
#: ../includes/display-functions.php:61
|
181 |
-
msgid "SHOW EDITOR"
|
182 |
-
msgstr ""
|
183 |
-
|
184 |
-
#: ../includes/display-functions.php:62
|
185 |
-
msgid "HIDE EDITOR"
|
186 |
-
msgstr ""
|
187 |
-
|
188 |
-
#: ../includes/display-functions.php:65
|
189 |
-
msgid "DISABLE EDITOR"
|
190 |
-
msgstr ""
|
191 |
-
|
192 |
-
#: ../includes/display-functions.php:78
|
193 |
-
msgid "ALL MODULES"
|
194 |
-
msgstr ""
|
195 |
-
|
196 |
-
#: ../includes/display-functions.php:126
|
197 |
-
#: ../includes/single-templates-framework/inc/functions.php:86
|
198 |
-
#: ../modules/blog/module.php:36 ../modules/downloads/module.php:36
|
199 |
-
#: ../modules/galleries/module.php:36 ../modules/partners/module.php:36
|
200 |
-
#: ../modules/posts/module.php:43 ../modules/projects/module.php:36
|
201 |
-
#: ../modules/staff/module.php:52 ../modules/testimonials/module.php:36
|
202 |
-
#: ../modules/woocommerce/module.php:35
|
203 |
-
msgid "Type"
|
204 |
-
msgstr ""
|
205 |
-
|
206 |
-
#: ../includes/display-functions.php:128
|
207 |
-
msgid "Wrapped"
|
208 |
-
msgstr ""
|
209 |
-
|
210 |
-
#: ../includes/display-functions.php:129
|
211 |
-
msgid "Full"
|
212 |
-
msgstr ""
|
213 |
-
|
214 |
-
#: ../includes/display-functions.php:136
|
215 |
-
msgid "Columns Spacing"
|
216 |
-
msgstr ""
|
217 |
-
|
218 |
-
#: ../includes/display-functions.php:138
|
219 |
-
msgid "With Spacing"
|
220 |
-
msgstr ""
|
221 |
-
|
222 |
-
#: ../includes/display-functions.php:139
|
223 |
-
msgid "Without Spacing"
|
224 |
-
msgstr ""
|
225 |
-
|
226 |
-
#: ../includes/display-functions.php:146 ../modules/accordion/module.php:52
|
227 |
-
#: ../modules/accordion/module.php:149 ../modules/accordion/module.php:253
|
228 |
-
#: ../modules/accordion/module.php:394 ../modules/blog/module.php:247
|
229 |
-
#: ../modules/blog/module.php:443 ../modules/blog/module.php:1274
|
230 |
-
#: ../modules/button/module.php:82 ../modules/downloads/module.php:341
|
231 |
-
#: ../modules/downloads/module.php:1063 ../modules/galleries/module.php:373
|
232 |
-
#: ../modules/galleries/module.php:540 ../modules/galleries/module.php:828
|
233 |
-
#: ../modules/image/module.php:149 ../modules/infobox/module.php:104
|
234 |
-
#: ../modules/infobox/module.php:331 ../modules/infobox/module.php:659
|
235 |
-
#: ../modules/notification/module.php:28
|
236 |
-
#: ../modules/notification/module.php:207 ../modules/posts/module.php:247
|
237 |
-
#: ../modules/posts/module.php:443 ../modules/posts/module.php:1226
|
238 |
-
#: ../modules/progress-bars/module.php:77
|
239 |
-
#: ../modules/progress-bars/module.php:304 ../modules/projects/module.php:337
|
240 |
-
#: ../modules/projects/module.php:1082 ../modules/staff/module.php:358
|
241 |
-
#: ../modules/staff/module.php:540 ../modules/tabs/module.php:235
|
242 |
-
#: ../modules/testimonials/module.php:687
|
243 |
-
#: ../modules/text-simple/module.php:1916
|
244 |
-
#: ../modules/tp-comments-form/module.php:28
|
245 |
-
#: ../modules/tp-comments-form/module.php:234
|
246 |
-
#: ../modules/tp-comments-form/module.php:411
|
247 |
-
#: ../modules/tp-comments/module.php:26 ../modules/tp-comments/module.php:134
|
248 |
-
#: ../modules/tp-comments/module.php:250 ../modules/tp-comments/module.php:378
|
249 |
-
#: ../modules/tp-comments/module.php:668
|
250 |
-
#: ../modules/tp-downloads-button/module.php:32
|
251 |
-
#: ../modules/tp-excerpt/module.php:24 ../modules/tp-title/module.php:24
|
252 |
-
#: ../modules/widgets/module.php:70 ../modules/widgets/module.php:189
|
253 |
-
#: ../modules/woocommerce/module.php:352 ../modules/woocommerce/module.php:519
|
254 |
-
#: ../modules/woocommerce/module.php:738
|
255 |
-
msgid "BG Color"
|
256 |
-
msgstr ""
|
257 |
-
|
258 |
-
#: ../includes/display-functions.php:153 ../modules/infobox/module.php:114
|
259 |
-
msgid "BG Image"
|
260 |
-
msgstr ""
|
261 |
-
|
262 |
-
#: ../includes/display-functions.php:163 ../modules/infobox/module.php:124
|
263 |
-
msgid "BG Image Repeat"
|
264 |
-
msgstr ""
|
265 |
-
|
266 |
-
#: ../includes/display-functions.php:165 ../modules/infobox/module.php:130
|
267 |
-
msgid "Repeat"
|
268 |
-
msgstr ""
|
269 |
-
|
270 |
-
#: ../includes/display-functions.php:166 ../modules/infobox/module.php:134
|
271 |
-
msgid "Repeat Horizontal"
|
272 |
-
msgstr ""
|
273 |
-
|
274 |
-
#: ../includes/display-functions.php:167 ../modules/infobox/module.php:138
|
275 |
-
msgid "Repeat Vertical"
|
276 |
-
msgstr ""
|
277 |
-
|
278 |
-
#: ../includes/display-functions.php:168 ../modules/infobox/module.php:142
|
279 |
-
msgid "Do NOT Repeat"
|
280 |
-
msgstr ""
|
281 |
-
|
282 |
-
#: ../includes/display-functions.php:175 ../modules/infobox/module.php:172
|
283 |
-
msgid "BG Image Position"
|
284 |
-
msgstr ""
|
285 |
-
|
286 |
-
#: ../includes/display-functions.php:177 ../modules/blog/module.php:811
|
287 |
-
#: ../modules/downloads/module.php:697 ../modules/galleries/module.php:649
|
288 |
-
#: ../modules/galleries/module.php:995 ../modules/infobox/module.php:178
|
289 |
-
#: ../modules/partners/module.php:687 ../modules/posts/module.php:811
|
290 |
-
#: ../modules/projects/module.php:693 ../modules/staff/module.php:880
|
291 |
-
#: ../modules/woocommerce/module.php:689 ../modules/woocommerce/module.php:876
|
292 |
-
msgid "Top Left"
|
293 |
-
msgstr ""
|
294 |
-
|
295 |
-
#: ../includes/display-functions.php:178 ../modules/blog/module.php:815
|
296 |
-
#: ../modules/downloads/module.php:701 ../modules/galleries/module.php:653
|
297 |
-
#: ../modules/galleries/module.php:999 ../modules/infobox/module.php:182
|
298 |
-
#: ../modules/partners/module.php:691 ../modules/posts/module.php:815
|
299 |
-
#: ../modules/projects/module.php:697 ../modules/staff/module.php:884
|
300 |
-
#: ../modules/woocommerce/module.php:693 ../modules/woocommerce/module.php:880
|
301 |
-
msgid "Top Right"
|
302 |
-
msgstr ""
|
303 |
-
|
304 |
-
#: ../includes/display-functions.php:179 ../modules/infobox/module.php:186
|
305 |
-
msgid "Top Center"
|
306 |
-
msgstr ""
|
307 |
-
|
308 |
-
#: ../includes/display-functions.php:180 ../modules/infobox/module.php:190
|
309 |
-
msgid "Center Left"
|
310 |
-
msgstr ""
|
311 |
-
|
312 |
-
#: ../includes/display-functions.php:181 ../modules/infobox/module.php:194
|
313 |
-
msgid "Center Right"
|
314 |
-
msgstr ""
|
315 |
-
|
316 |
-
#: ../includes/display-functions.php:182 ../modules/blog/module.php:784
|
317 |
-
#: ../modules/blog/module.php:819 ../modules/button/module.php:72
|
318 |
-
#: ../modules/button/module.php:433 ../modules/button/module.php:541
|
319 |
-
#: ../modules/downloads/module.php:670 ../modules/downloads/module.php:705
|
320 |
-
#: ../modules/galleries/module.php:657 ../modules/galleries/module.php:968
|
321 |
-
#: ../modules/galleries/module.php:1003 ../modules/html/module.php:248
|
322 |
-
#: ../modules/html/module.php:355 ../modules/html/module.php:462
|
323 |
-
#: ../modules/html/module.php:569 ../modules/html/module.php:676
|
324 |
-
#: ../modules/html/module.php:783 ../modules/html/module.php:890
|
325 |
-
#: ../modules/image/module.php:135 ../modules/image/module.php:272
|
326 |
-
#: ../modules/infobox/module.php:86 ../modules/infobox/module.php:198
|
327 |
-
#: ../modules/partners/module.php:660 ../modules/partners/module.php:695
|
328 |
-
#: ../modules/posts/module.php:784 ../modules/posts/module.php:819
|
329 |
-
#: ../modules/projects/module.php:666 ../modules/projects/module.php:701
|
330 |
-
#: ../modules/staff/module.php:526 ../modules/staff/module.php:853
|
331 |
-
#: ../modules/staff/module.php:888 ../modules/testimonials/module.php:579
|
332 |
-
#: ../modules/text-simple/module.php:260 ../modules/text-simple/module.php:478
|
333 |
-
#: ../modules/text-simple/module.php:696 ../modules/text-simple/module.php:914
|
334 |
-
#: ../modules/text-simple/module.php:1132
|
335 |
-
#: ../modules/text-simple/module.php:1350
|
336 |
-
#: ../modules/text-simple/module.php:1568 ../modules/tp-content/module.php:240
|
337 |
-
#: ../modules/tp-content/module.php:347 ../modules/tp-content/module.php:442
|
338 |
-
#: ../modules/tp-content/module.php:537 ../modules/tp-content/module.php:632
|
339 |
-
#: ../modules/tp-content/module.php:727 ../modules/tp-content/module.php:822
|
340 |
-
#: ../modules/tp-excerpt/module.php:219 ../modules/tp-thumbnail/module.php:34
|
341 |
-
#: ../modules/tp-title/module.php:219 ../modules/woocommerce/module.php:697
|
342 |
-
#: ../modules/woocommerce/module.php:884 ../modules/woocommerce/module.php:942
|
343 |
-
#: ../modules/woocommerce/module.php:1206
|
344 |
-
msgid "Center"
|
345 |
-
msgstr ""
|
346 |
-
|
347 |
-
#: ../includes/display-functions.php:183 ../modules/blog/module.php:823
|
348 |
-
#: ../modules/downloads/module.php:709 ../modules/galleries/module.php:661
|
349 |
-
#: ../modules/galleries/module.php:1007 ../modules/infobox/module.php:202
|
350 |
-
#: ../modules/partners/module.php:699 ../modules/posts/module.php:823
|
351 |
-
#: ../modules/projects/module.php:705 ../modules/staff/module.php:892
|
352 |
-
#: ../modules/woocommerce/module.php:701 ../modules/woocommerce/module.php:888
|
353 |
-
msgid "Bottom Left"
|
354 |
-
msgstr ""
|
355 |
-
|
356 |
-
#: ../includes/display-functions.php:184 ../modules/blog/module.php:827
|
357 |
-
#: ../modules/downloads/module.php:713 ../modules/galleries/module.php:665
|
358 |
-
#: ../modules/galleries/module.php:1011 ../modules/infobox/module.php:206
|
359 |
-
#: ../modules/partners/module.php:703 ../modules/posts/module.php:827
|
360 |
-
#: ../modules/projects/module.php:709 ../modules/staff/module.php:896
|
361 |
-
#: ../modules/woocommerce/module.php:705 ../modules/woocommerce/module.php:892
|
362 |
-
msgid "Bottom Right"
|
363 |
-
msgstr ""
|
364 |
-
|
365 |
-
#: ../includes/display-functions.php:185 ../modules/infobox/module.php:210
|
366 |
-
msgid "Bottom Center"
|
367 |
-
msgstr ""
|
368 |
-
|
369 |
-
#: ../includes/display-functions.php:192 ../modules/infobox/module.php:152
|
370 |
-
msgid "BG Image Attachment"
|
371 |
-
msgstr ""
|
372 |
-
|
373 |
-
#: ../includes/display-functions.php:194 ../modules/infobox/module.php:158
|
374 |
-
msgid "Scroll"
|
375 |
-
msgstr ""
|
376 |
-
|
377 |
-
#: ../includes/display-functions.php:195 ../modules/infobox/module.php:162
|
378 |
-
msgid "Fixed"
|
379 |
-
msgstr ""
|
380 |
-
|
381 |
-
#: ../includes/display-functions.php:196
|
382 |
-
msgid "Parallax"
|
383 |
-
msgstr ""
|
384 |
-
|
385 |
-
#: ../includes/display-functions.php:203
|
386 |
-
msgid "BG Image Size"
|
387 |
-
msgstr ""
|
388 |
-
|
389 |
-
#: ../includes/display-functions.php:205
|
390 |
-
msgid "Original"
|
391 |
-
msgstr ""
|
392 |
-
|
393 |
-
#: ../includes/display-functions.php:206
|
394 |
-
msgid "Cover"
|
395 |
-
msgstr ""
|
396 |
-
|
397 |
-
#: ../includes/display-functions.php:207
|
398 |
-
msgid "Contain"
|
399 |
-
msgstr ""
|
400 |
-
|
401 |
-
#: ../includes/display-functions.php:214
|
402 |
-
msgid "BG Video"
|
403 |
-
msgstr ""
|
404 |
-
|
405 |
-
#: ../includes/display-functions.php:216
|
406 |
-
msgid "Upload Video"
|
407 |
-
msgstr ""
|
408 |
-
|
409 |
-
#: ../includes/display-functions.php:217
|
410 |
-
msgid "Remove Video"
|
411 |
-
msgstr ""
|
412 |
-
|
413 |
-
#: ../includes/display-functions.php:224
|
414 |
-
msgid "BG - Overlay Color"
|
415 |
-
msgstr ""
|
416 |
-
|
417 |
-
#: ../includes/display-functions.php:231
|
418 |
-
msgid "BG - Overlay Opacity"
|
419 |
-
msgstr ""
|
420 |
-
|
421 |
-
#: ../includes/display-functions.php:240 ../modules/accordion/module.php:62
|
422 |
-
#: ../modules/accordion/module.php:160 ../modules/accordion/module.php:264
|
423 |
-
#: ../modules/accordion/module.php:405 ../modules/blog/module.php:257
|
424 |
-
#: ../modules/blog/module.php:454 ../modules/blog/module.php:655
|
425 |
-
#: ../modules/blog/module.php:949 ../modules/blog/module.php:1337
|
426 |
-
#: ../modules/button/module.php:102 ../modules/downloads/module.php:352
|
427 |
-
#: ../modules/downloads/module.php:541 ../modules/downloads/module.php:837
|
428 |
-
#: ../modules/downloads/module.php:1085 ../modules/galleries/module.php:384
|
429 |
-
#: ../modules/galleries/module.php:551 ../modules/galleries/module.php:839
|
430 |
-
#: ../modules/html/module.php:63 ../modules/image/module.php:159
|
431 |
-
#: ../modules/infobox/module.php:220 ../modules/infobox/module.php:342
|
432 |
-
#: ../modules/infobox/module.php:722 ../modules/notification/module.php:38
|
433 |
-
#: ../modules/notification/module.php:229 ../modules/partners/module.php:340
|
434 |
-
#: ../modules/partners/module.php:531 ../modules/posts/module.php:257
|
435 |
-
#: ../modules/posts/module.php:454 ../modules/posts/module.php:655
|
436 |
-
#: ../modules/posts/module.php:949 ../modules/posts/module.php:1289
|
437 |
-
#: ../modules/progress-bars/module.php:87
|
438 |
-
#: ../modules/progress-bars/module.php:315 ../modules/projects/module.php:348
|
439 |
-
#: ../modules/projects/module.php:537 ../modules/projects/module.php:1116
|
440 |
-
#: ../modules/social/module.php:117 ../modules/staff/module.php:369
|
441 |
-
#: ../modules/staff/module.php:551 ../modules/staff/module.php:724
|
442 |
-
#: ../modules/staff/module.php:1021 ../modules/tabs/module.php:55
|
443 |
-
#: ../modules/tabs/module.php:246 ../modules/tabs/module.php:323
|
444 |
-
#: ../modules/testimonials/module.php:310
|
445 |
-
#: ../modules/testimonials/module.php:415
|
446 |
-
#: ../modules/testimonials/module.php:698 ../modules/text-simple/module.php:63
|
447 |
-
#: ../modules/text-simple/module.php:290 ../modules/text-simple/module.php:508
|
448 |
-
#: ../modules/text-simple/module.php:726 ../modules/text-simple/module.php:944
|
449 |
-
#: ../modules/text-simple/module.php:1162
|
450 |
-
#: ../modules/text-simple/module.php:1380
|
451 |
-
#: ../modules/text-simple/module.php:1927
|
452 |
-
#: ../modules/tp-comments-form/module.php:38
|
453 |
-
#: ../modules/tp-comments-form/module.php:245
|
454 |
-
#: ../modules/tp-comments-form/module.php:474
|
455 |
-
#: ../modules/tp-comments/module.php:36 ../modules/tp-comments/module.php:145
|
456 |
-
#: ../modules/tp-comments/module.php:261 ../modules/tp-comments/module.php:389
|
457 |
-
#: ../modules/tp-comments/module.php:679 ../modules/tp-content/module.php:55
|
458 |
-
#: ../modules/tp-downloads-button/module.php:52
|
459 |
-
#: ../modules/tp-excerpt/module.php:34
|
460 |
-
#: ../modules/tp-gallery-slider/module.php:95
|
461 |
-
#: ../modules/tp-gallery-slider/module.php:215
|
462 |
-
#: ../modules/tp-gallery-slider/module.php:331
|
463 |
-
#: ../modules/tp-meta/module.php:92 ../modules/tp-staff-social/module.php:28
|
464 |
-
#: ../modules/tp-thumbnail/module.php:62 ../modules/tp-title/module.php:34
|
465 |
-
#: ../modules/widgets/module.php:80 ../modules/widgets/module.php:200
|
466 |
-
#: ../modules/widgets/module.php:317 ../modules/woocommerce/module.php:363
|
467 |
-
#: ../modules/woocommerce/module.php:530 ../modules/woocommerce/module.php:749
|
468 |
-
msgid "Border Color"
|
469 |
-
msgstr ""
|
470 |
-
|
471 |
-
#: ../includes/display-functions.php:247 ../modules/accordion/module.php:72
|
472 |
-
#: ../modules/accordion/module.php:171 ../modules/accordion/module.php:275
|
473 |
-
#: ../modules/accordion/module.php:416 ../modules/blog/module.php:267
|
474 |
-
#: ../modules/blog/module.php:465 ../modules/blog/module.php:666
|
475 |
-
#: ../modules/blog/module.php:960 ../modules/blog/module.php:1296
|
476 |
-
#: ../modules/button/module.php:122 ../modules/downloads/module.php:363
|
477 |
-
#: ../modules/downloads/module.php:552 ../modules/downloads/module.php:1107
|
478 |
-
#: ../modules/galleries/module.php:395 ../modules/galleries/module.php:562
|
479 |
-
#: ../modules/galleries/module.php:850 ../modules/html/module.php:73
|
480 |
-
#: ../modules/image/module.php:169 ../modules/infobox/module.php:230
|
481 |
-
#: ../modules/infobox/module.php:353 ../modules/infobox/module.php:681
|
482 |
-
#: ../modules/notification/module.php:48
|
483 |
-
#: ../modules/notification/module.php:251 ../modules/partners/module.php:351
|
484 |
-
#: ../modules/partners/module.php:542 ../modules/posts/module.php:267
|
485 |
-
#: ../modules/posts/module.php:465 ../modules/posts/module.php:666
|
486 |
-
#: ../modules/posts/module.php:960 ../modules/posts/module.php:1248
|
487 |
-
#: ../modules/progress-bars/module.php:97
|
488 |
-
#: ../modules/progress-bars/module.php:326 ../modules/projects/module.php:359
|
489 |
-
#: ../modules/projects/module.php:548 ../modules/projects/module.php:1104
|
490 |
-
#: ../modules/social/module.php:137 ../modules/staff/module.php:380
|
491 |
-
#: ../modules/staff/module.php:562 ../modules/staff/module.php:735
|
492 |
-
#: ../modules/staff/module.php:1032 ../modules/tabs/module.php:66
|
493 |
-
#: ../modules/tabs/module.php:333 ../modules/testimonials/module.php:321
|
494 |
-
#: ../modules/testimonials/module.php:426
|
495 |
-
#: ../modules/testimonials/module.php:709 ../modules/text-simple/module.php:73
|
496 |
-
#: ../modules/text-simple/module.php:301 ../modules/text-simple/module.php:519
|
497 |
-
#: ../modules/text-simple/module.php:737 ../modules/text-simple/module.php:955
|
498 |
-
#: ../modules/text-simple/module.php:1173
|
499 |
-
#: ../modules/text-simple/module.php:1391
|
500 |
-
#: ../modules/text-simple/module.php:1938
|
501 |
-
#: ../modules/tp-comments-form/module.php:48
|
502 |
-
#: ../modules/tp-comments-form/module.php:256
|
503 |
-
#: ../modules/tp-comments-form/module.php:433
|
504 |
-
#: ../modules/tp-comments/module.php:46 ../modules/tp-comments/module.php:156
|
505 |
-
#: ../modules/tp-comments/module.php:272 ../modules/tp-comments/module.php:400
|
506 |
-
#: ../modules/tp-comments/module.php:690 ../modules/tp-content/module.php:65
|
507 |
-
#: ../modules/tp-downloads-button/module.php:72
|
508 |
-
#: ../modules/tp-excerpt/module.php:44
|
509 |
-
#: ../modules/tp-gallery-slider/module.php:105
|
510 |
-
#: ../modules/tp-gallery-slider/module.php:226
|
511 |
-
#: ../modules/tp-gallery-slider/module.php:342
|
512 |
-
#: ../modules/tp-meta/module.php:102 ../modules/tp-staff-social/module.php:48
|
513 |
-
#: ../modules/tp-thumbnail/module.php:72 ../modules/tp-title/module.php:44
|
514 |
-
#: ../modules/widgets/module.php:90 ../modules/widgets/module.php:211
|
515 |
-
#: ../modules/widgets/module.php:328 ../modules/woocommerce/module.php:374
|
516 |
-
#: ../modules/woocommerce/module.php:541 ../modules/woocommerce/module.php:760
|
517 |
-
msgid "Border Width"
|
518 |
-
msgstr ""
|
519 |
-
|
520 |
-
#: ../includes/display-functions.php:256
|
521 |
-
msgid "Border Style"
|
522 |
-
msgstr ""
|
523 |
-
|
524 |
-
#: ../includes/display-functions.php:258 ../modules/blog/module.php:419
|
525 |
-
#: ../modules/downloads/module.php:317 ../modules/galleries/module.php:349
|
526 |
-
#: ../modules/partners/module.php:305 ../modules/posts/module.php:419
|
527 |
-
#: ../modules/projects/module.php:313 ../modules/projects/module.php:962
|
528 |
-
#: ../modules/separator/module.php:57 ../modules/staff/module.php:330
|
529 |
-
#: ../modules/testimonials/module.php:275
|
530 |
-
#: ../modules/woocommerce/module.php:328
|
531 |
-
msgid "Solid"
|
532 |
-
msgstr ""
|
533 |
-
|
534 |
-
#: ../includes/display-functions.php:259 ../modules/blog/module.php:427
|
535 |
-
#: ../modules/downloads/module.php:325 ../modules/galleries/module.php:357
|
536 |
-
#: ../modules/partners/module.php:313 ../modules/posts/module.php:427
|
537 |
-
#: ../modules/projects/module.php:321 ../modules/projects/module.php:970
|
538 |
-
#: ../modules/separator/module.php:65 ../modules/staff/module.php:338
|
539 |
-
#: ../modules/testimonials/module.php:283
|
540 |
-
#: ../modules/woocommerce/module.php:336
|
541 |
-
msgid "Dotted"
|
542 |
-
msgstr ""
|
543 |
-
|
544 |
-
#: ../includes/display-functions.php:260 ../modules/blog/module.php:423
|
545 |
-
#: ../modules/downloads/module.php:321 ../modules/galleries/module.php:353
|
546 |
-
#: ../modules/partners/module.php:309 ../modules/posts/module.php:423
|
547 |
-
#: ../modules/projects/module.php:317 ../modules/projects/module.php:966
|
548 |
-
#: ../modules/separator/module.php:61 ../modules/staff/module.php:334
|
549 |
-
#: ../modules/testimonials/module.php:279
|
550 |
-
#: ../modules/woocommerce/module.php:332
|
551 |
-
msgid "Dashed"
|
552 |
-
msgstr ""
|
553 |
-
|
554 |
-
#: ../includes/display-functions.php:267 ../modules/accordion/module.php:83
|
555 |
-
#: ../modules/accordion/module.php:183 ../modules/accordion/module.php:287
|
556 |
-
#: ../modules/accordion/module.php:428 ../modules/blog/module.php:278
|
557 |
-
#: ../modules/blog/module.php:477 ../modules/blog/module.php:678
|
558 |
-
#: ../modules/blog/module.php:972 ../modules/blog/module.php:1308
|
559 |
-
#: ../modules/button/module.php:133 ../modules/downloads/module.php:375
|
560 |
-
#: ../modules/downloads/module.php:564 ../modules/downloads/module.php:1119
|
561 |
-
#: ../modules/galleries/module.php:407 ../modules/galleries/module.php:574
|
562 |
-
#: ../modules/galleries/module.php:862 ../modules/html/module.php:84
|
563 |
-
#: ../modules/image/module.php:180 ../modules/infobox/module.php:241
|
564 |
-
#: ../modules/infobox/module.php:365 ../modules/infobox/module.php:693
|
565 |
-
#: ../modules/notification/module.php:59
|
566 |
-
#: ../modules/notification/module.php:263 ../modules/partners/module.php:363
|
567 |
-
#: ../modules/partners/module.php:554 ../modules/posts/module.php:278
|
568 |
-
#: ../modules/posts/module.php:477 ../modules/posts/module.php:678
|
569 |
-
#: ../modules/posts/module.php:972 ../modules/posts/module.php:1260
|
570 |
-
#: ../modules/progress-bars/module.php:108
|
571 |
-
#: ../modules/progress-bars/module.php:338 ../modules/projects/module.php:371
|
572 |
-
#: ../modules/projects/module.php:560 ../modules/social/module.php:148
|
573 |
-
#: ../modules/staff/module.php:392 ../modules/staff/module.php:574
|
574 |
-
#: ../modules/staff/module.php:747 ../modules/staff/module.php:1044
|
575 |
-
#: ../modules/tabs/module.php:78 ../modules/tabs/module.php:268
|
576 |
-
#: ../modules/tabs/module.php:344 ../modules/testimonials/module.php:333
|
577 |
-
#: ../modules/testimonials/module.php:438
|
578 |
-
#: ../modules/testimonials/module.php:721 ../modules/text-simple/module.php:84
|
579 |
-
#: ../modules/text-simple/module.php:313 ../modules/text-simple/module.php:531
|
580 |
-
#: ../modules/text-simple/module.php:749 ../modules/text-simple/module.php:967
|
581 |
-
#: ../modules/text-simple/module.php:1185
|
582 |
-
#: ../modules/text-simple/module.php:1403
|
583 |
-
#: ../modules/text-simple/module.php:1950
|
584 |
-
#: ../modules/tp-comments-form/module.php:59
|
585 |
-
#: ../modules/tp-comments-form/module.php:268
|
586 |
-
#: ../modules/tp-comments-form/module.php:445
|
587 |
-
#: ../modules/tp-comments/module.php:57 ../modules/tp-comments/module.php:168
|
588 |
-
#: ../modules/tp-comments/module.php:284 ../modules/tp-comments/module.php:412
|
589 |
-
#: ../modules/tp-comments/module.php:702 ../modules/tp-content/module.php:76
|
590 |
-
#: ../modules/tp-downloads-button/module.php:83
|
591 |
-
#: ../modules/tp-excerpt/module.php:55
|
592 |
-
#: ../modules/tp-gallery-slider/module.php:116
|
593 |
-
#: ../modules/tp-gallery-slider/module.php:238
|
594 |
-
#: ../modules/tp-gallery-slider/module.php:354
|
595 |
-
#: ../modules/tp-meta/module.php:113 ../modules/tp-staff-social/module.php:59
|
596 |
-
#: ../modules/tp-thumbnail/module.php:83 ../modules/tp-title/module.php:55
|
597 |
-
#: ../modules/widgets/module.php:101 ../modules/widgets/module.php:223
|
598 |
-
#: ../modules/woocommerce/module.php:386 ../modules/woocommerce/module.php:553
|
599 |
-
#: ../modules/woocommerce/module.php:772
|
600 |
-
msgid "Borders"
|
601 |
-
msgstr ""
|
602 |
-
|
603 |
-
#: ../includes/display-functions.php:271 ../modules/accordion/module.php:89
|
604 |
-
#: ../modules/accordion/module.php:189 ../modules/accordion/module.php:293
|
605 |
-
#: ../modules/accordion/module.php:434 ../modules/blog/module.php:284
|
606 |
-
#: ../modules/blog/module.php:483 ../modules/blog/module.php:684
|
607 |
-
#: ../modules/blog/module.php:978 ../modules/blog/module.php:1314
|
608 |
-
#: ../modules/button/module.php:139 ../modules/downloads/module.php:381
|
609 |
-
#: ../modules/downloads/module.php:570 ../modules/downloads/module.php:1125
|
610 |
-
#: ../modules/galleries/module.php:413 ../modules/galleries/module.php:580
|
611 |
-
#: ../modules/galleries/module.php:868 ../modules/html/module.php:90
|
612 |
-
#: ../modules/image/module.php:186 ../modules/infobox/module.php:247
|
613 |
-
#: ../modules/infobox/module.php:371 ../modules/infobox/module.php:699
|
614 |
-
#: ../modules/notification/module.php:65
|
615 |
-
#: ../modules/notification/module.php:269 ../modules/partners/module.php:369
|
616 |
-
#: ../modules/partners/module.php:560 ../modules/posts/module.php:284
|
617 |
-
#: ../modules/posts/module.php:483 ../modules/posts/module.php:684
|
618 |
-
#: ../modules/posts/module.php:978 ../modules/posts/module.php:1266
|
619 |
-
#: ../modules/progress-bars/module.php:114
|
620 |
-
#: ../modules/progress-bars/module.php:344 ../modules/projects/module.php:377
|
621 |
-
#: ../modules/projects/module.php:566 ../modules/social/module.php:154
|
622 |
-
#: ../modules/staff/module.php:398 ../modules/staff/module.php:580
|
623 |
-
#: ../modules/staff/module.php:753 ../modules/staff/module.php:1050
|
624 |
-
#: ../modules/tabs/module.php:84 ../modules/tabs/module.php:274
|
625 |
-
#: ../modules/tabs/module.php:350 ../modules/testimonials/module.php:339
|
626 |
-
#: ../modules/testimonials/module.php:444
|
627 |
-
#: ../modules/testimonials/module.php:727 ../modules/text-simple/module.php:90
|
628 |
-
#: ../modules/text-simple/module.php:319 ../modules/text-simple/module.php:537
|
629 |
-
#: ../modules/text-simple/module.php:755 ../modules/text-simple/module.php:973
|
630 |
-
#: ../modules/text-simple/module.php:1191
|
631 |
-
#: ../modules/text-simple/module.php:1409
|
632 |
-
#: ../modules/text-simple/module.php:1840
|
633 |
-
#: ../modules/text-simple/module.php:1956
|
634 |
-
#: ../modules/tp-comments-form/module.php:65
|
635 |
-
#: ../modules/tp-comments-form/module.php:274
|
636 |
-
#: ../modules/tp-comments-form/module.php:451
|
637 |
-
#: ../modules/tp-comments/module.php:63 ../modules/tp-comments/module.php:174
|
638 |
-
#: ../modules/tp-comments/module.php:290 ../modules/tp-comments/module.php:418
|
639 |
-
#: ../modules/tp-comments/module.php:708 ../modules/tp-content/module.php:82
|
640 |
-
#: ../modules/tp-downloads-button/module.php:89
|
641 |
-
#: ../modules/tp-excerpt/module.php:61
|
642 |
-
#: ../modules/tp-gallery-slider/module.php:122
|
643 |
-
#: ../modules/tp-gallery-slider/module.php:244
|
644 |
-
#: ../modules/tp-gallery-slider/module.php:360
|
645 |
-
#: ../modules/tp-meta/module.php:119 ../modules/tp-staff-social/module.php:65
|
646 |
-
#: ../modules/tp-thumbnail/module.php:89 ../modules/tp-title/module.php:61
|
647 |
-
#: ../modules/widgets/module.php:107 ../modules/widgets/module.php:229
|
648 |
-
#: ../modules/woocommerce/module.php:392 ../modules/woocommerce/module.php:559
|
649 |
-
#: ../modules/woocommerce/module.php:778
|
650 |
-
msgid "Top"
|
651 |
-
msgstr ""
|
652 |
-
|
653 |
-
#: ../includes/display-functions.php:275 ../modules/accordion/module.php:93
|
654 |
-
#: ../modules/accordion/module.php:193 ../modules/accordion/module.php:297
|
655 |
-
#: ../modules/accordion/module.php:438 ../modules/blog/module.php:288
|
656 |
-
#: ../modules/blog/module.php:487 ../modules/blog/module.php:688
|
657 |
-
#: ../modules/blog/module.php:788 ../modules/blog/module.php:982
|
658 |
-
#: ../modules/blog/module.php:1318 ../modules/button/module.php:76
|
659 |
-
#: ../modules/button/module.php:143 ../modules/button/module.php:437
|
660 |
-
#: ../modules/button/module.php:545 ../modules/downloads/module.php:385
|
661 |
-
#: ../modules/downloads/module.php:574 ../modules/downloads/module.php:674
|
662 |
-
#: ../modules/downloads/module.php:1129 ../modules/galleries/module.php:417
|
663 |
-
#: ../modules/galleries/module.php:584 ../modules/galleries/module.php:872
|
664 |
-
#: ../modules/galleries/module.php:972 ../modules/html/module.php:94
|
665 |
-
#: ../modules/html/module.php:252 ../modules/html/module.php:359
|
666 |
-
#: ../modules/html/module.php:466 ../modules/html/module.php:573
|
667 |
-
#: ../modules/html/module.php:680 ../modules/html/module.php:787
|
668 |
-
#: ../modules/html/module.php:894 ../modules/image/module.php:139
|
669 |
-
#: ../modules/image/module.php:190 ../modules/image/module.php:276
|
670 |
-
#: ../modules/infobox/module.php:90 ../modules/infobox/module.php:251
|
671 |
-
#: ../modules/infobox/module.php:375 ../modules/infobox/module.php:703
|
672 |
-
#: ../modules/notification/module.php:69
|
673 |
-
#: ../modules/notification/module.php:273 ../modules/partners/module.php:373
|
674 |
-
#: ../modules/partners/module.php:564 ../modules/partners/module.php:664
|
675 |
-
#: ../modules/posts/module.php:288 ../modules/posts/module.php:487
|
676 |
-
#: ../modules/posts/module.php:688 ../modules/posts/module.php:788
|
677 |
-
#: ../modules/posts/module.php:982 ../modules/posts/module.php:1270
|
678 |
-
#: ../modules/progress-bars/module.php:118
|
679 |
-
#: ../modules/progress-bars/module.php:348 ../modules/projects/module.php:381
|
680 |
-
#: ../modules/projects/module.php:570 ../modules/projects/module.php:670
|
681 |
-
#: ../modules/social/module.php:158 ../modules/staff/module.php:402
|
682 |
-
#: ../modules/staff/module.php:530 ../modules/staff/module.php:584
|
683 |
-
#: ../modules/staff/module.php:757 ../modules/staff/module.php:857
|
684 |
-
#: ../modules/staff/module.php:1054 ../modules/tabs/module.php:88
|
685 |
-
#: ../modules/tabs/module.php:278 ../modules/tabs/module.php:354
|
686 |
-
#: ../modules/testimonials/module.php:343
|
687 |
-
#: ../modules/testimonials/module.php:448
|
688 |
-
#: ../modules/testimonials/module.php:583
|
689 |
-
#: ../modules/testimonials/module.php:626
|
690 |
-
#: ../modules/testimonials/module.php:731 ../modules/text-simple/module.php:94
|
691 |
-
#: ../modules/text-simple/module.php:264 ../modules/text-simple/module.php:323
|
692 |
-
#: ../modules/text-simple/module.php:482 ../modules/text-simple/module.php:541
|
693 |
-
#: ../modules/text-simple/module.php:700 ../modules/text-simple/module.php:759
|
694 |
-
#: ../modules/text-simple/module.php:918 ../modules/text-simple/module.php:977
|
695 |
-
#: ../modules/text-simple/module.php:1136
|
696 |
-
#: ../modules/text-simple/module.php:1195
|
697 |
-
#: ../modules/text-simple/module.php:1354
|
698 |
-
#: ../modules/text-simple/module.php:1413
|
699 |
-
#: ../modules/text-simple/module.php:1572
|
700 |
-
#: ../modules/text-simple/module.php:1844
|
701 |
-
#: ../modules/text-simple/module.php:1960
|
702 |
-
#: ../modules/tp-comments-form/module.php:69
|
703 |
-
#: ../modules/tp-comments-form/module.php:278
|
704 |
-
#: ../modules/tp-comments-form/module.php:455
|
705 |
-
#: ../modules/tp-comments/module.php:67 ../modules/tp-comments/module.php:178
|
706 |
-
#: ../modules/tp-comments/module.php:294 ../modules/tp-comments/module.php:422
|
707 |
-
#: ../modules/tp-comments/module.php:712 ../modules/tp-content/module.php:86
|
708 |
-
#: ../modules/tp-content/module.php:244 ../modules/tp-content/module.php:351
|
709 |
-
#: ../modules/tp-content/module.php:446 ../modules/tp-content/module.php:541
|
710 |
-
#: ../modules/tp-content/module.php:636 ../modules/tp-content/module.php:731
|
711 |
-
#: ../modules/tp-content/module.php:826
|
712 |
-
#: ../modules/tp-downloads-button/module.php:93
|
713 |
-
#: ../modules/tp-excerpt/module.php:65 ../modules/tp-excerpt/module.php:223
|
714 |
-
#: ../modules/tp-gallery-slider/module.php:126
|
715 |
-
#: ../modules/tp-gallery-slider/module.php:248
|
716 |
-
#: ../modules/tp-gallery-slider/module.php:364
|
717 |
-
#: ../modules/tp-meta/module.php:123 ../modules/tp-staff-social/module.php:69
|
718 |
-
#: ../modules/tp-thumbnail/module.php:38 ../modules/tp-thumbnail/module.php:93
|
719 |
-
#: ../modules/tp-title/module.php:65 ../modules/tp-title/module.php:223
|
720 |
-
#: ../modules/widgets/module.php:111 ../modules/widgets/module.php:233
|
721 |
-
#: ../modules/woocommerce/module.php:396 ../modules/woocommerce/module.php:563
|
722 |
-
#: ../modules/woocommerce/module.php:782 ../modules/woocommerce/module.php:946
|
723 |
-
#: ../modules/woocommerce/module.php:1210
|
724 |
-
#: ../modules/woocommerce/module.php:1300
|
725 |
-
msgid "Right"
|
726 |
-
msgstr ""
|
727 |
-
|
728 |
-
#: ../includes/display-functions.php:279 ../modules/accordion/module.php:97
|
729 |
-
#: ../modules/accordion/module.php:197 ../modules/accordion/module.php:301
|
730 |
-
#: ../modules/accordion/module.php:442 ../modules/blog/module.php:292
|
731 |
-
#: ../modules/blog/module.php:491 ../modules/blog/module.php:692
|
732 |
-
#: ../modules/blog/module.php:986 ../modules/blog/module.php:1322
|
733 |
-
#: ../modules/button/module.php:147 ../modules/downloads/module.php:389
|
734 |
-
#: ../modules/downloads/module.php:578 ../modules/downloads/module.php:1133
|
735 |
-
#: ../modules/galleries/module.php:421 ../modules/galleries/module.php:588
|
736 |
-
#: ../modules/galleries/module.php:876 ../modules/html/module.php:98
|
737 |
-
#: ../modules/image/module.php:194 ../modules/infobox/module.php:255
|
738 |
-
#: ../modules/infobox/module.php:379 ../modules/infobox/module.php:707
|
739 |
-
#: ../modules/notification/module.php:73
|
740 |
-
#: ../modules/notification/module.php:277 ../modules/partners/module.php:377
|
741 |
-
#: ../modules/partners/module.php:568 ../modules/posts/module.php:292
|
742 |
-
#: ../modules/posts/module.php:491 ../modules/posts/module.php:692
|
743 |
-
#: ../modules/posts/module.php:986 ../modules/posts/module.php:1274
|
744 |
-
#: ../modules/progress-bars/module.php:122
|
745 |
-
#: ../modules/progress-bars/module.php:352 ../modules/projects/module.php:385
|
746 |
-
#: ../modules/projects/module.php:574 ../modules/social/module.php:162
|
747 |
-
#: ../modules/staff/module.php:406 ../modules/staff/module.php:588
|
748 |
-
#: ../modules/staff/module.php:761 ../modules/staff/module.php:1058
|
749 |
-
#: ../modules/tabs/module.php:92 ../modules/tabs/module.php:282
|
750 |
-
#: ../modules/tabs/module.php:358 ../modules/testimonials/module.php:347
|
751 |
-
#: ../modules/testimonials/module.php:452
|
752 |
-
#: ../modules/testimonials/module.php:735 ../modules/text-simple/module.php:98
|
753 |
-
#: ../modules/text-simple/module.php:327 ../modules/text-simple/module.php:545
|
754 |
-
#: ../modules/text-simple/module.php:763 ../modules/text-simple/module.php:981
|
755 |
-
#: ../modules/text-simple/module.php:1199
|
756 |
-
#: ../modules/text-simple/module.php:1417
|
757 |
-
#: ../modules/text-simple/module.php:1848
|
758 |
-
#: ../modules/text-simple/module.php:1964
|
759 |
-
#: ../modules/tp-comments-form/module.php:73
|
760 |
-
#: ../modules/tp-comments-form/module.php:282
|
761 |
-
#: ../modules/tp-comments-form/module.php:459
|
762 |
-
#: ../modules/tp-comments/module.php:71 ../modules/tp-comments/module.php:182
|
763 |
-
#: ../modules/tp-comments/module.php:298 ../modules/tp-comments/module.php:426
|
764 |
-
#: ../modules/tp-comments/module.php:716 ../modules/tp-content/module.php:90
|
765 |
-
#: ../modules/tp-downloads-button/module.php:97
|
766 |
-
#: ../modules/tp-excerpt/module.php:69
|
767 |
-
#: ../modules/tp-gallery-slider/module.php:130
|
768 |
-
#: ../modules/tp-gallery-slider/module.php:252
|
769 |
-
#: ../modules/tp-gallery-slider/module.php:368
|
770 |
-
#: ../modules/tp-meta/module.php:127 ../modules/tp-staff-social/module.php:73
|
771 |
-
#: ../modules/tp-thumbnail/module.php:97 ../modules/tp-title/module.php:69
|
772 |
-
#: ../modules/widgets/module.php:115 ../modules/widgets/module.php:237
|
773 |
-
#: ../modules/woocommerce/module.php:400 ../modules/woocommerce/module.php:567
|
774 |
-
#: ../modules/woocommerce/module.php:786
|
775 |
-
msgid "Bottom"
|
776 |
-
msgstr ""
|
777 |
-
|
778 |
-
#: ../includes/display-functions.php:283 ../modules/accordion/module.php:101
|
779 |
-
#: ../modules/accordion/module.php:201 ../modules/accordion/module.php:305
|
780 |
-
#: ../modules/accordion/module.php:446 ../modules/blog/module.php:296
|
781 |
-
#: ../modules/blog/module.php:495 ../modules/blog/module.php:696
|
782 |
-
#: ../modules/blog/module.php:780 ../modules/blog/module.php:990
|
783 |
-
#: ../modules/blog/module.php:1326 ../modules/button/module.php:68
|
784 |
-
#: ../modules/button/module.php:151 ../modules/button/module.php:429
|
785 |
-
#: ../modules/button/module.php:537 ../modules/downloads/module.php:393
|
786 |
-
#: ../modules/downloads/module.php:582 ../modules/downloads/module.php:666
|
787 |
-
#: ../modules/downloads/module.php:1137 ../modules/galleries/module.php:425
|
788 |
-
#: ../modules/galleries/module.php:592 ../modules/galleries/module.php:880
|
789 |
-
#: ../modules/galleries/module.php:964 ../modules/html/module.php:102
|
790 |
-
#: ../modules/html/module.php:244 ../modules/html/module.php:351
|
791 |
-
#: ../modules/html/module.php:458 ../modules/html/module.php:565
|
792 |
-
#: ../modules/html/module.php:672 ../modules/html/module.php:779
|
793 |
-
#: ../modules/html/module.php:886 ../modules/image/module.php:131
|
794 |
-
#: ../modules/image/module.php:198 ../modules/image/module.php:268
|
795 |
-
#: ../modules/infobox/module.php:82 ../modules/infobox/module.php:259
|
796 |
-
#: ../modules/infobox/module.php:383 ../modules/infobox/module.php:711
|
797 |
-
#: ../modules/notification/module.php:77
|
798 |
-
#: ../modules/notification/module.php:281 ../modules/partners/module.php:381
|
799 |
-
#: ../modules/partners/module.php:572 ../modules/partners/module.php:656
|
800 |
-
#: ../modules/posts/module.php:296 ../modules/posts/module.php:495
|
801 |
-
#: ../modules/posts/module.php:696 ../modules/posts/module.php:780
|
802 |
-
#: ../modules/posts/module.php:990 ../modules/posts/module.php:1278
|
803 |
-
#: ../modules/progress-bars/module.php:126
|
804 |
-
#: ../modules/progress-bars/module.php:356 ../modules/projects/module.php:389
|
805 |
-
#: ../modules/projects/module.php:578 ../modules/projects/module.php:662
|
806 |
-
#: ../modules/social/module.php:166 ../modules/staff/module.php:410
|
807 |
-
#: ../modules/staff/module.php:522 ../modules/staff/module.php:592
|
808 |
-
#: ../modules/staff/module.php:765 ../modules/staff/module.php:849
|
809 |
-
#: ../modules/staff/module.php:1062 ../modules/tabs/module.php:96
|
810 |
-
#: ../modules/tabs/module.php:286 ../modules/tabs/module.php:362
|
811 |
-
#: ../modules/testimonials/module.php:351
|
812 |
-
#: ../modules/testimonials/module.php:456
|
813 |
-
#: ../modules/testimonials/module.php:575
|
814 |
-
#: ../modules/testimonials/module.php:622
|
815 |
-
#: ../modules/testimonials/module.php:739
|
816 |
-
#: ../modules/text-simple/module.php:102 ../modules/text-simple/module.php:256
|
817 |
-
#: ../modules/text-simple/module.php:331 ../modules/text-simple/module.php:474
|
818 |
-
#: ../modules/text-simple/module.php:549 ../modules/text-simple/module.php:692
|
819 |
-
#: ../modules/text-simple/module.php:767 ../modules/text-simple/module.php:910
|
820 |
-
#: ../modules/text-simple/module.php:985
|
821 |
-
#: ../modules/text-simple/module.php:1128
|
822 |
-
#: ../modules/text-simple/module.php:1203
|
823 |
-
#: ../modules/text-simple/module.php:1346
|
824 |
-
#: ../modules/text-simple/module.php:1421
|
825 |
-
#: ../modules/text-simple/module.php:1564
|
826 |
-
#: ../modules/text-simple/module.php:1852
|
827 |
-
#: ../modules/text-simple/module.php:1968
|
828 |
-
#: ../modules/tp-comments-form/module.php:77
|
829 |
-
#: ../modules/tp-comments-form/module.php:286
|
830 |
-
#: ../modules/tp-comments-form/module.php:463
|
831 |
-
#: ../modules/tp-comments/module.php:75 ../modules/tp-comments/module.php:186
|
832 |
-
#: ../modules/tp-comments/module.php:302 ../modules/tp-comments/module.php:430
|
833 |
-
#: ../modules/tp-comments/module.php:720 ../modules/tp-content/module.php:94
|
834 |
-
#: ../modules/tp-content/module.php:236 ../modules/tp-content/module.php:343
|
835 |
-
#: ../modules/tp-content/module.php:438 ../modules/tp-content/module.php:533
|
836 |
-
#: ../modules/tp-content/module.php:628 ../modules/tp-content/module.php:723
|
837 |
-
#: ../modules/tp-content/module.php:818
|
838 |
-
#: ../modules/tp-downloads-button/module.php:101
|
839 |
-
#: ../modules/tp-excerpt/module.php:73 ../modules/tp-excerpt/module.php:215
|
840 |
-
#: ../modules/tp-gallery-slider/module.php:134
|
841 |
-
#: ../modules/tp-gallery-slider/module.php:256
|
842 |
-
#: ../modules/tp-gallery-slider/module.php:372
|
843 |
-
#: ../modules/tp-meta/module.php:131 ../modules/tp-staff-social/module.php:77
|
844 |
-
#: ../modules/tp-thumbnail/module.php:30
|
845 |
-
#: ../modules/tp-thumbnail/module.php:101 ../modules/tp-title/module.php:73
|
846 |
-
#: ../modules/tp-title/module.php:215 ../modules/widgets/module.php:119
|
847 |
-
#: ../modules/widgets/module.php:241 ../modules/woocommerce/module.php:404
|
848 |
-
#: ../modules/woocommerce/module.php:571 ../modules/woocommerce/module.php:790
|
849 |
-
#: ../modules/woocommerce/module.php:938
|
850 |
-
#: ../modules/woocommerce/module.php:1202
|
851 |
-
#: ../modules/woocommerce/module.php:1296
|
852 |
-
msgid "Left"
|
853 |
-
msgstr ""
|
854 |
-
|
855 |
-
#: ../includes/display-functions.php:292
|
856 |
-
#: ../modules/woocommerce/module.php:1040
|
857 |
-
msgid "Margin Horizontal"
|
858 |
-
msgstr ""
|
859 |
-
|
860 |
-
#: ../includes/display-functions.php:301 ../modules/accordion/module.php:122
|
861 |
-
#: ../modules/accordion/module.php:224 ../modules/accordion/module.php:365
|
862 |
-
#: ../modules/accordion/module.php:518 ../modules/accordion/module.php:577
|
863 |
-
#: ../modules/accordion/module.php:756 ../modules/blog/module.php:339
|
864 |
-
#: ../modules/blog/module.php:554 ../modules/blog/module.php:731
|
865 |
-
#: ../modules/blog/module.php:1074 ../modules/blog/module.php:1431
|
866 |
-
#: ../modules/button/module.php:183 ../modules/button/module.php:370
|
867 |
-
#: ../modules/button/module.php:478 ../modules/downloads/module.php:440
|
868 |
-
#: ../modules/downloads/module.php:631 ../modules/downloads/module.php:897
|
869 |
-
#: ../modules/downloads/module.php:1232 ../modules/galleries/module.php:472
|
870 |
-
#: ../modules/galleries/module.php:929 ../modules/html/module.php:145
|
871 |
-
#: ../modules/html/module.php:966 ../modules/html/module.php:1231
|
872 |
-
#: ../modules/image/module.php:230 ../modules/image/module.php:394
|
873 |
-
#: ../modules/image/module.php:489 ../modules/infobox/module.php:291
|
874 |
-
#: ../modules/infobox/module.php:858 ../modules/infobox/module.php:977
|
875 |
-
#: ../modules/infobox/module.php:1248 ../modules/notification/module.php:109
|
876 |
-
#: ../modules/notification/module.php:414
|
877 |
-
#: ../modules/notification/module.php:521 ../modules/partners/module.php:442
|
878 |
-
#: ../modules/partners/module.php:621 ../modules/posts/module.php:339
|
879 |
-
#: ../modules/posts/module.php:554 ../modules/posts/module.php:731
|
880 |
-
#: ../modules/posts/module.php:1062 ../modules/posts/module.php:1383
|
881 |
-
#: ../modules/progress-bars/module.php:169
|
882 |
-
#: ../modules/progress-bars/module.php:269
|
883 |
-
#: ../modules/progress-bars/module.php:402
|
884 |
-
#: ../modules/progress-bars/module.php:473
|
885 |
-
#: ../modules/progress-bars/module.php:628 ../modules/projects/module.php:436
|
886 |
-
#: ../modules/projects/module.php:627 ../modules/projects/module.php:1210
|
887 |
-
#: ../modules/staff/module.php:457 ../modules/staff/module.php:639
|
888 |
-
#: ../modules/staff/module.php:814 ../modules/staff/module.php:1134
|
889 |
-
#: ../modules/tabs/module.php:180 ../modules/tabs/module.php:461
|
890 |
-
#: ../modules/tabs/module.php:542 ../modules/tabs/module.php:687
|
891 |
-
#: ../modules/testimonials/module.php:386
|
892 |
-
#: ../modules/text-simple/module.php:145 ../modules/text-simple/module.php:439
|
893 |
-
#: ../modules/text-simple/module.php:657 ../modules/text-simple/module.php:875
|
894 |
-
#: ../modules/text-simple/module.php:1093
|
895 |
-
#: ../modules/text-simple/module.php:1311
|
896 |
-
#: ../modules/text-simple/module.php:1529
|
897 |
-
#: ../modules/text-simple/module.php:2064
|
898 |
-
#: ../modules/text-simple/module.php:2123
|
899 |
-
#: ../modules/text-simple/module.php:2424
|
900 |
-
#: ../modules/tp-comments-form/module.php:129
|
901 |
-
#: ../modules/tp-comments-form/module.php:382
|
902 |
-
#: ../modules/tp-comments-form/module.php:568
|
903 |
-
#: ../modules/tp-comments-form/module.php:627
|
904 |
-
#: ../modules/tp-comments-form/module.php:818
|
905 |
-
#: ../modules/tp-comments/module.php:107 ../modules/tp-comments/module.php:221
|
906 |
-
#: ../modules/tp-comments/module.php:465 ../modules/tp-comments/module.php:815
|
907 |
-
#: ../modules/tp-comments/module.php:874
|
908 |
-
#: ../modules/tp-comments/module.php:1137 ../modules/tp-content/module.php:137
|
909 |
-
#: ../modules/tp-content/module.php:898 ../modules/tp-content/module.php:1101
|
910 |
-
#: ../modules/tp-downloads-button/module.php:133
|
911 |
-
#: ../modules/tp-downloads-button/module.php:292
|
912 |
-
#: ../modules/tp-downloads-button/module.php:363
|
913 |
-
#: ../modules/tp-excerpt/module.php:116 ../modules/tp-excerpt/module.php:268
|
914 |
-
#: ../modules/tp-excerpt/module.php:351
|
915 |
-
#: ../modules/tp-gallery-slider/module.php:177
|
916 |
-
#: ../modules/tp-gallery-slider/module.php:291
|
917 |
-
#: ../modules/tp-gallery-slider/module.php:407
|
918 |
-
#: ../modules/tp-gallery-slider/module.php:529
|
919 |
-
#: ../modules/tp-gallery-slider/module.php:672
|
920 |
-
#: ../modules/tp-meta/module.php:174 ../modules/tp-meta/module.php:359
|
921 |
-
#: ../modules/tp-meta/module.php:418 ../modules/tp-thumbnail/module.php:161
|
922 |
-
#: ../modules/tp-thumbnail/module.php:220
|
923 |
-
#: ../modules/tp-thumbnail/module.php:267 ../modules/tp-title/module.php:116
|
924 |
-
#: ../modules/tp-title/module.php:268 ../modules/tp-title/module.php:351
|
925 |
-
#: ../modules/widgets/module.php:162 ../modules/widgets/module.php:276
|
926 |
-
#: ../modules/widgets/module.php:580 ../modules/widgets/module.php:766
|
927 |
-
#: ../modules/widgets/module.php:922 ../modules/woocommerce/module.php:451
|
928 |
-
#: ../modules/woocommerce/module.php:839
|
929 |
-
msgid "Padding Vertical"
|
930 |
-
msgstr ""
|
931 |
-
|
932 |
-
#: ../includes/display-functions.php:310 ../modules/accordion/module.php:133
|
933 |
-
#: ../modules/accordion/module.php:236 ../modules/accordion/module.php:377
|
934 |
-
#: ../modules/accordion/module.php:530 ../modules/accordion/module.php:589
|
935 |
-
#: ../modules/accordion/module.php:768 ../modules/blog/module.php:350
|
936 |
-
#: ../modules/blog/module.php:566 ../modules/blog/module.php:743
|
937 |
-
#: ../modules/blog/module.php:1086 ../modules/blog/module.php:1443
|
938 |
-
#: ../modules/button/module.php:194 ../modules/button/module.php:382
|
939 |
-
#: ../modules/button/module.php:490 ../modules/downloads/module.php:452
|
940 |
-
#: ../modules/downloads/module.php:643 ../modules/galleries/module.php:484
|
941 |
-
#: ../modules/galleries/module.php:941 ../modules/html/module.php:156
|
942 |
-
#: ../modules/html/module.php:978 ../modules/html/module.php:1243
|
943 |
-
#: ../modules/image/module.php:241 ../modules/image/module.php:406
|
944 |
-
#: ../modules/image/module.php:501 ../modules/infobox/module.php:304
|
945 |
-
#: ../modules/infobox/module.php:870 ../modules/infobox/module.php:991
|
946 |
-
#: ../modules/infobox/module.php:1262 ../modules/notification/module.php:120
|
947 |
-
#: ../modules/notification/module.php:426
|
948 |
-
#: ../modules/notification/module.php:533 ../modules/partners/module.php:633
|
949 |
-
#: ../modules/posts/module.php:350 ../modules/posts/module.php:566
|
950 |
-
#: ../modules/posts/module.php:743 ../modules/posts/module.php:1074
|
951 |
-
#: ../modules/posts/module.php:1395 ../modules/progress-bars/module.php:180
|
952 |
-
#: ../modules/progress-bars/module.php:257
|
953 |
-
#: ../modules/progress-bars/module.php:414
|
954 |
-
#: ../modules/progress-bars/module.php:485
|
955 |
-
#: ../modules/progress-bars/module.php:640 ../modules/projects/module.php:448
|
956 |
-
#: ../modules/projects/module.php:639 ../modules/projects/module.php:1222
|
957 |
-
#: ../modules/staff/module.php:469 ../modules/staff/module.php:651
|
958 |
-
#: ../modules/staff/module.php:826 ../modules/tabs/module.php:192
|
959 |
-
#: ../modules/tabs/module.php:472 ../modules/tabs/module.php:554
|
960 |
-
#: ../modules/tabs/module.php:699 ../modules/testimonials/module.php:398
|
961 |
-
#: ../modules/text-simple/module.php:156 ../modules/text-simple/module.php:451
|
962 |
-
#: ../modules/text-simple/module.php:669 ../modules/text-simple/module.php:887
|
963 |
-
#: ../modules/text-simple/module.php:1105
|
964 |
-
#: ../modules/text-simple/module.php:1323
|
965 |
-
#: ../modules/text-simple/module.php:1541
|
966 |
-
#: ../modules/text-simple/module.php:2076
|
967 |
-
#: ../modules/text-simple/module.php:2135
|
968 |
-
#: ../modules/text-simple/module.php:2436
|
969 |
-
#: ../modules/tp-comments-form/module.php:140
|
970 |
-
#: ../modules/tp-comments-form/module.php:394
|
971 |
-
#: ../modules/tp-comments-form/module.php:580
|
972 |
-
#: ../modules/tp-comments-form/module.php:639
|
973 |
-
#: ../modules/tp-comments-form/module.php:830
|
974 |
-
#: ../modules/tp-comments/module.php:118 ../modules/tp-comments/module.php:233
|
975 |
-
#: ../modules/tp-comments/module.php:361 ../modules/tp-comments/module.php:477
|
976 |
-
#: ../modules/tp-comments/module.php:827 ../modules/tp-comments/module.php:886
|
977 |
-
#: ../modules/tp-comments/module.php:1149 ../modules/tp-content/module.php:148
|
978 |
-
#: ../modules/tp-content/module.php:910 ../modules/tp-content/module.php:1113
|
979 |
-
#: ../modules/tp-excerpt/module.php:127 ../modules/tp-excerpt/module.php:280
|
980 |
-
#: ../modules/tp-excerpt/module.php:363
|
981 |
-
#: ../modules/tp-gallery-slider/module.php:188
|
982 |
-
#: ../modules/tp-gallery-slider/module.php:303
|
983 |
-
#: ../modules/tp-gallery-slider/module.php:419
|
984 |
-
#: ../modules/tp-gallery-slider/module.php:541
|
985 |
-
#: ../modules/tp-gallery-slider/module.php:684
|
986 |
-
#: ../modules/tp-meta/module.php:185 ../modules/tp-meta/module.php:371
|
987 |
-
#: ../modules/tp-meta/module.php:430 ../modules/tp-thumbnail/module.php:172
|
988 |
-
#: ../modules/tp-thumbnail/module.php:232
|
989 |
-
#: ../modules/tp-thumbnail/module.php:279 ../modules/tp-title/module.php:127
|
990 |
-
#: ../modules/tp-title/module.php:280 ../modules/tp-title/module.php:363
|
991 |
-
#: ../modules/widgets/module.php:173 ../modules/widgets/module.php:288
|
992 |
-
#: ../modules/widgets/module.php:592 ../modules/widgets/module.php:778
|
993 |
-
#: ../modules/widgets/module.php:934 ../modules/woocommerce/module.php:463
|
994 |
-
#: ../modules/woocommerce/module.php:851
|
995 |
-
msgid "Padding Horizontal"
|
996 |
-
msgstr ""
|
997 |
-
|
998 |
-
#: ../includes/display-functions.php:319
|
999 |
-
msgid "Custom Class"
|
1000 |
-
msgstr ""
|
1001 |
-
|
1002 |
-
#: ../includes/display-functions.php:326
|
1003 |
-
msgid "Custom ID"
|
1004 |
-
msgstr ""
|
1005 |
-
|
1006 |
-
#: ../includes/display-functions.php:346
|
1007 |
-
msgid "TEMPLATES"
|
1008 |
-
msgstr ""
|
1009 |
-
|
1010 |
-
#: ../includes/display-functions.php:349
|
1011 |
-
msgid "Load"
|
1012 |
-
msgstr ""
|
1013 |
-
|
1014 |
-
#: ../includes/display-functions.php:350
|
1015 |
-
msgid "Save"
|
1016 |
-
msgstr ""
|
1017 |
-
|
1018 |
-
#: ../includes/display-functions.php:351 ../includes/display-functions.php:761
|
1019 |
-
msgid "Import"
|
1020 |
-
msgstr ""
|
1021 |
-
|
1022 |
-
#: ../includes/display-functions.php:352
|
1023 |
-
msgid "Export"
|
1024 |
-
msgstr ""
|
1025 |
-
|
1026 |
-
#: ../includes/display-functions.php:357
|
1027 |
-
msgid "Name of the template"
|
1028 |
-
msgstr ""
|
1029 |
-
|
1030 |
-
#: ../includes/display-functions.php:358
|
1031 |
-
msgid "SAVE"
|
1032 |
-
msgstr ""
|
1033 |
-
|
1034 |
-
#: ../includes/display-functions.php:368
|
1035 |
-
msgid "CLOSE"
|
1036 |
-
msgstr ""
|
1037 |
-
|
1038 |
-
#: ../includes/display-functions.php:376
|
1039 |
-
msgid "Enter the exported code heree"
|
1040 |
-
msgstr ""
|
1041 |
-
|
1042 |
-
#: ../includes/display-functions.php:378 ../includes/scripts.php:25
|
1043 |
-
msgid "IMPORT"
|
1044 |
-
msgstr ""
|
1045 |
-
|
1046 |
-
#: ../includes/display-functions.php:401
|
1047 |
-
msgid "ORIGINAL TEMPLATES"
|
1048 |
-
msgstr ""
|
1049 |
-
|
1050 |
-
#: ../includes/display-functions.php:452
|
1051 |
-
msgid "Confirm"
|
1052 |
-
msgstr ""
|
1053 |
-
|
1054 |
-
#: ../includes/display-functions.php:453
|
1055 |
-
msgid "Cancel"
|
1056 |
-
msgstr ""
|
1057 |
-
|
1058 |
-
#: ../includes/display-functions.php:462
|
1059 |
-
msgid ""
|
1060 |
-
"Icons used in this plugin are from \"Font Awesome\".<br><a href=\"http://"
|
1061 |
-
"livecomposerplugin.com/icons-listing/\" class=\"dslca-link\" target=\"_blank"
|
1062 |
-
"\">View full list of icons.</a>"
|
1063 |
-
msgstr ""
|
1064 |
-
|
1065 |
-
#: ../includes/display-functions.php:481
|
1066 |
-
msgid "ACTIVATE EDITOR"
|
1067 |
-
msgstr ""
|
1068 |
-
|
1069 |
-
#: ../includes/display-functions.php:490
|
1070 |
-
msgid "EDIT TEMPLATE"
|
1071 |
-
msgstr ""
|
1072 |
-
|
1073 |
-
#: ../includes/display-functions.php:494
|
1074 |
-
msgid "CREATE TEMPLATE"
|
1075 |
-
msgstr ""
|
1076 |
-
|
1077 |
-
#: ../includes/display-functions.php:537 ../includes/scripts.php:28
|
1078 |
-
msgid "MODULES AREA"
|
1079 |
-
msgstr ""
|
1080 |
-
|
1081 |
-
#: ../includes/display-functions.php:760
|
1082 |
-
msgid "Add Modules Row"
|
1083 |
-
msgstr ""
|
1084 |
-
|
1085 |
-
#: ../includes/display-functions.php:1379
|
1086 |
-
msgid "Newer"
|
1087 |
-
msgstr ""
|
1088 |
-
|
1089 |
-
#: ../includes/display-functions.php:1380
|
1090 |
-
msgid "Older"
|
1091 |
-
msgstr ""
|
1092 |
-
|
1093 |
-
#: ../includes/functions.php:245 ../includes/scripts.php:46
|
1094 |
-
#: ../modules/accordion/module.php:562 ../modules/accordion/module.php:573
|
1095 |
-
#: ../modules/accordion/module.php:585 ../modules/accordion/module.php:597
|
1096 |
-
#: ../modules/accordion/module.php:609 ../modules/accordion/module.php:621
|
1097 |
-
#: ../modules/accordion/module.php:633 ../modules/accordion/module.php:645
|
1098 |
-
#: ../modules/accordion/module.php:657 ../modules/accordion/module.php:669
|
1099 |
-
#: ../modules/accordion/module.php:681 ../modules/accordion/module.php:693
|
1100 |
-
#: ../modules/accordion/module.php:705 ../modules/accordion/module.php:717
|
1101 |
-
#: ../modules/blog/module.php:1517 ../modules/blog/module.php:1528
|
1102 |
-
#: ../modules/blog/module.php:1543 ../modules/blog/module.php:1554
|
1103 |
-
#: ../modules/blog/module.php:1566 ../modules/blog/module.php:1579
|
1104 |
-
#: ../modules/blog/module.php:1591 ../modules/blog/module.php:1603
|
1105 |
-
#: ../modules/blog/module.php:1615 ../modules/blog/module.php:1626
|
1106 |
-
#: ../modules/blog/module.php:1638 ../modules/blog/module.php:1650
|
1107 |
-
#: ../modules/blog/module.php:1662 ../modules/blog/module.php:1675
|
1108 |
-
#: ../modules/blog/module.php:1687 ../modules/blog/module.php:1699
|
1109 |
-
#: ../modules/blog/module.php:1710 ../modules/blog/module.php:1722
|
1110 |
-
#: ../modules/blog/module.php:1735 ../modules/blog/module.php:1746
|
1111 |
-
#: ../modules/blog/module.php:1759 ../modules/blog/module.php:1771
|
1112 |
-
#: ../modules/blog/module.php:1783 ../modules/button/module.php:355
|
1113 |
-
#: ../modules/button/module.php:366 ../modules/button/module.php:378
|
1114 |
-
#: ../modules/button/module.php:390 ../modules/button/module.php:402
|
1115 |
-
#: ../modules/button/module.php:414 ../modules/button/module.php:426
|
1116 |
-
#: ../modules/downloads/module.php:1349 ../modules/downloads/module.php:1361
|
1117 |
-
#: ../modules/downloads/module.php:1375 ../modules/downloads/module.php:1387
|
1118 |
-
#: ../modules/downloads/module.php:1399 ../modules/downloads/module.php:1411
|
1119 |
-
#: ../modules/downloads/module.php:1423 ../modules/downloads/module.php:1435
|
1120 |
-
#: ../modules/downloads/module.php:1446 ../modules/downloads/module.php:1458
|
1121 |
-
#: ../modules/downloads/module.php:1470 ../modules/downloads/module.php:1482
|
1122 |
-
#: ../modules/downloads/module.php:1494 ../modules/downloads/module.php:1506
|
1123 |
-
#: ../modules/downloads/module.php:1518 ../modules/downloads/module.php:1530
|
1124 |
-
#: ../modules/downloads/module.php:1542 ../modules/downloads/module.php:1554
|
1125 |
-
#: ../modules/downloads/module.php:1566 ../modules/downloads/module.php:1579
|
1126 |
-
#: ../modules/downloads/module.php:1590 ../modules/galleries/module.php:1270
|
1127 |
-
#: ../modules/galleries/module.php:1281 ../modules/galleries/module.php:1296
|
1128 |
-
#: ../modules/galleries/module.php:1308 ../modules/galleries/module.php:1320
|
1129 |
-
#: ../modules/galleries/module.php:1332 ../modules/galleries/module.php:1343
|
1130 |
-
#: ../modules/galleries/module.php:1356 ../modules/galleries/module.php:1367
|
1131 |
-
#: ../modules/galleries/module.php:1379 ../modules/galleries/module.php:1391
|
1132 |
-
#: ../modules/galleries/module.php:1404 ../modules/galleries/module.php:1416
|
1133 |
-
#: ../modules/galleries/module.php:1427 ../modules/galleries/module.php:1439
|
1134 |
-
#: ../modules/galleries/module.php:1451 ../modules/galleries/module.php:1463
|
1135 |
-
#: ../modules/galleries/module.php:1475 ../modules/galleries/module.php:1487
|
1136 |
-
#: ../modules/html/module.php:951 ../modules/html/module.php:962
|
1137 |
-
#: ../modules/html/module.php:974 ../modules/html/module.php:986
|
1138 |
-
#: ../modules/html/module.php:998 ../modules/html/module.php:1010
|
1139 |
-
#: ../modules/html/module.php:1022 ../modules/html/module.php:1034
|
1140 |
-
#: ../modules/html/module.php:1046 ../modules/html/module.php:1058
|
1141 |
-
#: ../modules/html/module.php:1070 ../modules/html/module.php:1082
|
1142 |
-
#: ../modules/html/module.php:1094 ../modules/html/module.php:1106
|
1143 |
-
#: ../modules/html/module.php:1118 ../modules/html/module.php:1130
|
1144 |
-
#: ../modules/html/module.php:1142 ../modules/html/module.php:1154
|
1145 |
-
#: ../modules/html/module.php:1166 ../modules/html/module.php:1178
|
1146 |
-
#: ../modules/html/module.php:1190 ../modules/image/module.php:379
|
1147 |
-
#: ../modules/image/module.php:390 ../modules/image/module.php:402
|
1148 |
-
#: ../modules/image/module.php:414 ../modules/image/module.php:426
|
1149 |
-
#: ../modules/image/module.php:438 ../modules/image/module.php:450
|
1150 |
-
#: ../modules/infobox/module.php:962 ../modules/infobox/module.php:973
|
1151 |
-
#: ../modules/infobox/module.php:985 ../modules/infobox/module.php:999
|
1152 |
-
#: ../modules/infobox/module.php:1011 ../modules/infobox/module.php:1023
|
1153 |
-
#: ../modules/infobox/module.php:1037 ../modules/infobox/module.php:1051
|
1154 |
-
#: ../modules/infobox/module.php:1065 ../modules/infobox/module.php:1077
|
1155 |
-
#: ../modules/infobox/module.php:1089 ../modules/infobox/module.php:1101
|
1156 |
-
#: ../modules/infobox/module.php:1113 ../modules/infobox/module.php:1125
|
1157 |
-
#: ../modules/infobox/module.php:1137 ../modules/infobox/module.php:1149
|
1158 |
-
#: ../modules/infobox/module.php:1161 ../modules/infobox/module.php:1173
|
1159 |
-
#: ../modules/infobox/module.php:1185 ../modules/infobox/module.php:1197
|
1160 |
-
#: ../modules/infobox/module.php:1209 ../modules/notification/module.php:399
|
1161 |
-
#: ../modules/notification/module.php:410
|
1162 |
-
#: ../modules/notification/module.php:422
|
1163 |
-
#: ../modules/notification/module.php:434
|
1164 |
-
#: ../modules/notification/module.php:446
|
1165 |
-
#: ../modules/notification/module.php:458
|
1166 |
-
#: ../modules/notification/module.php:470
|
1167 |
-
#: ../modules/notification/module.php:482 ../modules/partners/module.php:934
|
1168 |
-
#: ../modules/partners/module.php:948 ../modules/partners/module.php:960
|
1169 |
-
#: ../modules/partners/module.php:972 ../modules/partners/module.php:984
|
1170 |
-
#: ../modules/partners/module.php:996 ../modules/partners/module.php:1007
|
1171 |
-
#: ../modules/partners/module.php:1019 ../modules/partners/module.php:1031
|
1172 |
-
#: ../modules/partners/module.php:1043 ../modules/partners/module.php:1055
|
1173 |
-
#: ../modules/posts/module.php:1469 ../modules/posts/module.php:1480
|
1174 |
-
#: ../modules/posts/module.php:1495 ../modules/posts/module.php:1506
|
1175 |
-
#: ../modules/posts/module.php:1518 ../modules/posts/module.php:1531
|
1176 |
-
#: ../modules/posts/module.php:1543 ../modules/posts/module.php:1555
|
1177 |
-
#: ../modules/posts/module.php:1567 ../modules/posts/module.php:1578
|
1178 |
-
#: ../modules/posts/module.php:1590 ../modules/posts/module.php:1602
|
1179 |
-
#: ../modules/posts/module.php:1614 ../modules/posts/module.php:1627
|
1180 |
-
#: ../modules/posts/module.php:1639 ../modules/posts/module.php:1651
|
1181 |
-
#: ../modules/posts/module.php:1662 ../modules/posts/module.php:1674
|
1182 |
-
#: ../modules/posts/module.php:1687 ../modules/posts/module.php:1698
|
1183 |
-
#: ../modules/posts/module.php:1711 ../modules/posts/module.php:1723
|
1184 |
-
#: ../modules/posts/module.php:1735 ../modules/progress-bars/module.php:458
|
1185 |
-
#: ../modules/progress-bars/module.php:469
|
1186 |
-
#: ../modules/progress-bars/module.php:481
|
1187 |
-
#: ../modules/progress-bars/module.php:493
|
1188 |
-
#: ../modules/progress-bars/module.php:505
|
1189 |
-
#: ../modules/progress-bars/module.php:517
|
1190 |
-
#: ../modules/progress-bars/module.php:529
|
1191 |
-
#: ../modules/progress-bars/module.php:541
|
1192 |
-
#: ../modules/progress-bars/module.php:553
|
1193 |
-
#: ../modules/progress-bars/module.php:565
|
1194 |
-
#: ../modules/progress-bars/module.php:577
|
1195 |
-
#: ../modules/progress-bars/module.php:589 ../modules/projects/module.php:1285
|
1196 |
-
#: ../modules/projects/module.php:1296 ../modules/projects/module.php:1311
|
1197 |
-
#: ../modules/projects/module.php:1323 ../modules/projects/module.php:1335
|
1198 |
-
#: ../modules/projects/module.php:1347 ../modules/projects/module.php:1359
|
1199 |
-
#: ../modules/projects/module.php:1371 ../modules/projects/module.php:1382
|
1200 |
-
#: ../modules/projects/module.php:1394 ../modules/projects/module.php:1406
|
1201 |
-
#: ../modules/projects/module.php:1418 ../modules/projects/module.php:1430
|
1202 |
-
#: ../modules/projects/module.php:1443 ../modules/projects/module.php:1454
|
1203 |
-
#: ../modules/projects/module.php:1466 ../modules/projects/module.php:1479
|
1204 |
-
#: ../modules/projects/module.php:1490 ../modules/projects/module.php:1503
|
1205 |
-
#: ../modules/projects/module.php:1515 ../modules/projects/module.php:1527
|
1206 |
-
#: ../modules/separator/module.php:105 ../modules/separator/module.php:119
|
1207 |
-
#: ../modules/social/module.php:297 ../modules/social/module.php:308
|
1208 |
-
#: ../modules/social/module.php:320 ../modules/social/module.php:332
|
1209 |
-
#: ../modules/social/module.php:344 ../modules/staff/module.php:1258
|
1210 |
-
#: ../modules/staff/module.php:1269 ../modules/staff/module.php:1284
|
1211 |
-
#: ../modules/staff/module.php:1296 ../modules/staff/module.php:1308
|
1212 |
-
#: ../modules/staff/module.php:1320 ../modules/staff/module.php:1332
|
1213 |
-
#: ../modules/staff/module.php:1344 ../modules/staff/module.php:1356
|
1214 |
-
#: ../modules/staff/module.php:1367 ../modules/staff/module.php:1380
|
1215 |
-
#: ../modules/staff/module.php:1392 ../modules/staff/module.php:1403
|
1216 |
-
#: ../modules/staff/module.php:1415 ../modules/staff/module.php:1427
|
1217 |
-
#: ../modules/staff/module.php:1439 ../modules/staff/module.php:1451
|
1218 |
-
#: ../modules/staff/module.php:1464 ../modules/staff/module.php:1475
|
1219 |
-
#: ../modules/staff/module.php:1487 ../modules/tabs/module.php:503
|
1220 |
-
#: ../modules/tabs/module.php:514 ../modules/tabs/module.php:526
|
1221 |
-
#: ../modules/tabs/module.php:538 ../modules/tabs/module.php:550
|
1222 |
-
#: ../modules/tabs/module.php:562 ../modules/tabs/module.php:574
|
1223 |
-
#: ../modules/tabs/module.php:586 ../modules/tabs/module.php:598
|
1224 |
-
#: ../modules/tabs/module.php:610 ../modules/tabs/module.php:624
|
1225 |
-
#: ../modules/testimonials/module.php:952
|
1226 |
-
#: ../modules/testimonials/module.php:963
|
1227 |
-
#: ../modules/testimonials/module.php:978
|
1228 |
-
#: ../modules/testimonials/module.php:990
|
1229 |
-
#: ../modules/testimonials/module.php:1002
|
1230 |
-
#: ../modules/testimonials/module.php:1013
|
1231 |
-
#: ../modules/testimonials/module.php:1025
|
1232 |
-
#: ../modules/testimonials/module.php:1038
|
1233 |
-
#: ../modules/testimonials/module.php:1050
|
1234 |
-
#: ../modules/testimonials/module.php:1062
|
1235 |
-
#: ../modules/testimonials/module.php:1074
|
1236 |
-
#: ../modules/testimonials/module.php:1086
|
1237 |
-
#: ../modules/testimonials/module.php:1098
|
1238 |
-
#: ../modules/testimonials/module.php:1111
|
1239 |
-
#: ../modules/testimonials/module.php:1123
|
1240 |
-
#: ../modules/testimonials/module.php:1136
|
1241 |
-
#: ../modules/testimonials/module.php:1147
|
1242 |
-
#: ../modules/testimonials/module.php:1161
|
1243 |
-
#: ../modules/testimonials/module.php:1174
|
1244 |
-
#: ../modules/testimonials/module.php:1186
|
1245 |
-
#: ../modules/testimonials/module.php:1197
|
1246 |
-
#: ../modules/text-simple/module.php:2108
|
1247 |
-
#: ../modules/text-simple/module.php:2119
|
1248 |
-
#: ../modules/text-simple/module.php:2131
|
1249 |
-
#: ../modules/text-simple/module.php:2143
|
1250 |
-
#: ../modules/text-simple/module.php:2155
|
1251 |
-
#: ../modules/text-simple/module.php:2167
|
1252 |
-
#: ../modules/text-simple/module.php:2179
|
1253 |
-
#: ../modules/text-simple/module.php:2191
|
1254 |
-
#: ../modules/text-simple/module.php:2203
|
1255 |
-
#: ../modules/text-simple/module.php:2215
|
1256 |
-
#: ../modules/text-simple/module.php:2227
|
1257 |
-
#: ../modules/text-simple/module.php:2239
|
1258 |
-
#: ../modules/text-simple/module.php:2251
|
1259 |
-
#: ../modules/text-simple/module.php:2263
|
1260 |
-
#: ../modules/text-simple/module.php:2275
|
1261 |
-
#: ../modules/text-simple/module.php:2287
|
1262 |
-
#: ../modules/text-simple/module.php:2299
|
1263 |
-
#: ../modules/text-simple/module.php:2311
|
1264 |
-
#: ../modules/text-simple/module.php:2323
|
1265 |
-
#: ../modules/text-simple/module.php:2335
|
1266 |
-
#: ../modules/text-simple/module.php:2347
|
1267 |
-
#: ../modules/text-simple/module.php:2359
|
1268 |
-
#: ../modules/text-simple/module.php:2371
|
1269 |
-
#: ../modules/text-simple/module.php:2383
|
1270 |
-
#: ../modules/tp-comments-form/module.php:612
|
1271 |
-
#: ../modules/tp-comments-form/module.php:624
|
1272 |
-
#: ../modules/tp-comments-form/module.php:636
|
1273 |
-
#: ../modules/tp-comments-form/module.php:648
|
1274 |
-
#: ../modules/tp-comments-form/module.php:659
|
1275 |
-
#: ../modules/tp-comments-form/module.php:671
|
1276 |
-
#: ../modules/tp-comments-form/module.php:683
|
1277 |
-
#: ../modules/tp-comments-form/module.php:695
|
1278 |
-
#: ../modules/tp-comments-form/module.php:707
|
1279 |
-
#: ../modules/tp-comments-form/module.php:720
|
1280 |
-
#: ../modules/tp-comments-form/module.php:732
|
1281 |
-
#: ../modules/tp-comments-form/module.php:744
|
1282 |
-
#: ../modules/tp-comments-form/module.php:755
|
1283 |
-
#: ../modules/tp-comments-form/module.php:768
|
1284 |
-
#: ../modules/tp-comments-form/module.php:780
|
1285 |
-
#: ../modules/tp-comments/module.php:859 ../modules/tp-comments/module.php:871
|
1286 |
-
#: ../modules/tp-comments/module.php:883 ../modules/tp-comments/module.php:895
|
1287 |
-
#: ../modules/tp-comments/module.php:907 ../modules/tp-comments/module.php:919
|
1288 |
-
#: ../modules/tp-comments/module.php:931 ../modules/tp-comments/module.php:943
|
1289 |
-
#: ../modules/tp-comments/module.php:955 ../modules/tp-comments/module.php:967
|
1290 |
-
#: ../modules/tp-comments/module.php:979 ../modules/tp-comments/module.php:991
|
1291 |
-
#: ../modules/tp-comments/module.php:1003
|
1292 |
-
#: ../modules/tp-comments/module.php:1015
|
1293 |
-
#: ../modules/tp-comments/module.php:1026
|
1294 |
-
#: ../modules/tp-comments/module.php:1038
|
1295 |
-
#: ../modules/tp-comments/module.php:1050
|
1296 |
-
#: ../modules/tp-comments/module.php:1062
|
1297 |
-
#: ../modules/tp-comments/module.php:1074
|
1298 |
-
#: ../modules/tp-comments/module.php:1087
|
1299 |
-
#: ../modules/tp-comments/module.php:1099 ../modules/tp-content/module.php:883
|
1300 |
-
#: ../modules/tp-content/module.php:894 ../modules/tp-content/module.php:906
|
1301 |
-
#: ../modules/tp-content/module.php:918 ../modules/tp-content/module.php:930
|
1302 |
-
#: ../modules/tp-content/module.php:942 ../modules/tp-content/module.php:954
|
1303 |
-
#: ../modules/tp-content/module.php:966 ../modules/tp-content/module.php:978
|
1304 |
-
#: ../modules/tp-content/module.php:990 ../modules/tp-content/module.php:1002
|
1305 |
-
#: ../modules/tp-content/module.php:1014 ../modules/tp-content/module.php:1026
|
1306 |
-
#: ../modules/tp-content/module.php:1038 ../modules/tp-content/module.php:1050
|
1307 |
-
#: ../modules/tp-content/module.php:1062
|
1308 |
-
#: ../modules/tp-downloads-button/module.php:265
|
1309 |
-
#: ../modules/tp-downloads-button/module.php:276
|
1310 |
-
#: ../modules/tp-downloads-button/module.php:288
|
1311 |
-
#: ../modules/tp-downloads-button/module.php:300
|
1312 |
-
#: ../modules/tp-downloads-button/module.php:312
|
1313 |
-
#: ../modules/tp-excerpt/module.php:253 ../modules/tp-excerpt/module.php:264
|
1314 |
-
#: ../modules/tp-excerpt/module.php:276 ../modules/tp-excerpt/module.php:288
|
1315 |
-
#: ../modules/tp-excerpt/module.php:300 ../modules/tp-excerpt/module.php:312
|
1316 |
-
#: ../modules/tp-gallery-slider/module.php:514
|
1317 |
-
#: ../modules/tp-gallery-slider/module.php:525
|
1318 |
-
#: ../modules/tp-gallery-slider/module.php:537
|
1319 |
-
#: ../modules/tp-gallery-slider/module.php:549
|
1320 |
-
#: ../modules/tp-gallery-slider/module.php:562
|
1321 |
-
#: ../modules/tp-gallery-slider/module.php:574
|
1322 |
-
#: ../modules/tp-gallery-slider/module.php:586
|
1323 |
-
#: ../modules/tp-gallery-slider/module.php:598
|
1324 |
-
#: ../modules/tp-gallery-slider/module.php:609
|
1325 |
-
#: ../modules/tp-gallery-slider/module.php:621
|
1326 |
-
#: ../modules/tp-gallery-slider/module.php:633
|
1327 |
-
#: ../modules/tp-meta/module.php:356 ../modules/tp-meta/module.php:367
|
1328 |
-
#: ../modules/tp-meta/module.php:379 ../modules/tp-meta/module.php:391
|
1329 |
-
#: ../modules/tp-staff-social/module.php:208
|
1330 |
-
#: ../modules/tp-staff-social/module.php:219
|
1331 |
-
#: ../modules/tp-staff-social/module.php:231
|
1332 |
-
#: ../modules/tp-staff-social/module.php:243
|
1333 |
-
#: ../modules/tp-staff-social/module.php:255
|
1334 |
-
#: ../modules/tp-thumbnail/module.php:217
|
1335 |
-
#: ../modules/tp-thumbnail/module.php:228
|
1336 |
-
#: ../modules/tp-thumbnail/module.php:240 ../modules/tp-title/module.php:253
|
1337 |
-
#: ../modules/tp-title/module.php:264 ../modules/tp-title/module.php:276
|
1338 |
-
#: ../modules/tp-title/module.php:288 ../modules/tp-title/module.php:300
|
1339 |
-
#: ../modules/tp-title/module.php:312 ../modules/widgets/module.php:751
|
1340 |
-
#: ../modules/widgets/module.php:762 ../modules/widgets/module.php:774
|
1341 |
-
#: ../modules/widgets/module.php:786 ../modules/widgets/module.php:798
|
1342 |
-
#: ../modules/widgets/module.php:810 ../modules/widgets/module.php:822
|
1343 |
-
#: ../modules/widgets/module.php:834 ../modules/widgets/module.php:846
|
1344 |
-
#: ../modules/widgets/module.php:858 ../modules/widgets/module.php:870
|
1345 |
-
#: ../modules/widgets/module.php:882 ../modules/woocommerce/module.php:1473
|
1346 |
-
#: ../modules/woocommerce/module.php:1484
|
1347 |
-
#: ../modules/woocommerce/module.php:1499
|
1348 |
-
#: ../modules/woocommerce/module.php:1511
|
1349 |
-
#: ../modules/woocommerce/module.php:1523
|
1350 |
-
#: ../modules/woocommerce/module.php:1534
|
1351 |
-
#: ../modules/woocommerce/module.php:1546
|
1352 |
-
#: ../modules/woocommerce/module.php:1558
|
1353 |
-
#: ../modules/woocommerce/module.php:1571
|
1354 |
-
#: ../modules/woocommerce/module.php:1583
|
1355 |
-
#: ../modules/woocommerce/module.php:1594
|
1356 |
-
#: ../modules/woocommerce/module.php:1606
|
1357 |
-
#: ../modules/woocommerce/module.php:1618
|
1358 |
-
#: ../modules/woocommerce/module.php:1630
|
1359 |
-
#: ../modules/woocommerce/module.php:1642
|
1360 |
-
#: ../modules/woocommerce/module.php:1654
|
1361 |
-
#: ../modules/woocommerce/module.php:1667
|
1362 |
-
#: ../modules/woocommerce/module.php:1679
|
1363 |
-
#: ../modules/woocommerce/module.php:1690
|
1364 |
-
#: ../modules/woocommerce/module.php:1702
|
1365 |
-
#: ../modules/woocommerce/module.php:1714
|
1366 |
-
#: ../modules/woocommerce/module.php:1726
|
1367 |
-
msgid "tablet"
|
1368 |
-
msgstr ""
|
1369 |
-
|
1370 |
-
#: ../includes/functions.php:249 ../includes/scripts.php:47
|
1371 |
-
#: ../modules/accordion/module.php:741 ../modules/accordion/module.php:752
|
1372 |
-
#: ../modules/accordion/module.php:764 ../modules/accordion/module.php:776
|
1373 |
-
#: ../modules/accordion/module.php:788 ../modules/accordion/module.php:800
|
1374 |
-
#: ../modules/accordion/module.php:812 ../modules/accordion/module.php:824
|
1375 |
-
#: ../modules/accordion/module.php:836 ../modules/accordion/module.php:848
|
1376 |
-
#: ../modules/accordion/module.php:860 ../modules/accordion/module.php:872
|
1377 |
-
#: ../modules/accordion/module.php:884 ../modules/accordion/module.php:896
|
1378 |
-
#: ../modules/blog/module.php:1806 ../modules/blog/module.php:1817
|
1379 |
-
#: ../modules/blog/module.php:1832 ../modules/blog/module.php:1843
|
1380 |
-
#: ../modules/blog/module.php:1855 ../modules/blog/module.php:1868
|
1381 |
-
#: ../modules/blog/module.php:1880 ../modules/blog/module.php:1892
|
1382 |
-
#: ../modules/blog/module.php:1904 ../modules/blog/module.php:1915
|
1383 |
-
#: ../modules/blog/module.php:1927 ../modules/blog/module.php:1939
|
1384 |
-
#: ../modules/blog/module.php:1951 ../modules/blog/module.php:1964
|
1385 |
-
#: ../modules/blog/module.php:1976 ../modules/blog/module.php:1988
|
1386 |
-
#: ../modules/blog/module.php:1999 ../modules/blog/module.php:2011
|
1387 |
-
#: ../modules/blog/module.php:2024 ../modules/blog/module.php:2035
|
1388 |
-
#: ../modules/blog/module.php:2048 ../modules/blog/module.php:2060
|
1389 |
-
#: ../modules/blog/module.php:2072 ../modules/button/module.php:463
|
1390 |
-
#: ../modules/button/module.php:474 ../modules/button/module.php:486
|
1391 |
-
#: ../modules/button/module.php:498 ../modules/button/module.php:510
|
1392 |
-
#: ../modules/button/module.php:522 ../modules/button/module.php:534
|
1393 |
-
#: ../modules/downloads/module.php:1614 ../modules/downloads/module.php:1626
|
1394 |
-
#: ../modules/downloads/module.php:1640 ../modules/downloads/module.php:1652
|
1395 |
-
#: ../modules/downloads/module.php:1664 ../modules/downloads/module.php:1676
|
1396 |
-
#: ../modules/downloads/module.php:1688 ../modules/downloads/module.php:1700
|
1397 |
-
#: ../modules/downloads/module.php:1711 ../modules/downloads/module.php:1723
|
1398 |
-
#: ../modules/downloads/module.php:1735 ../modules/downloads/module.php:1747
|
1399 |
-
#: ../modules/downloads/module.php:1759 ../modules/downloads/module.php:1771
|
1400 |
-
#: ../modules/downloads/module.php:1783 ../modules/downloads/module.php:1795
|
1401 |
-
#: ../modules/downloads/module.php:1807 ../modules/downloads/module.php:1819
|
1402 |
-
#: ../modules/downloads/module.php:1831 ../modules/downloads/module.php:1844
|
1403 |
-
#: ../modules/downloads/module.php:1855 ../modules/galleries/module.php:1510
|
1404 |
-
#: ../modules/galleries/module.php:1521 ../modules/galleries/module.php:1536
|
1405 |
-
#: ../modules/galleries/module.php:1548 ../modules/galleries/module.php:1560
|
1406 |
-
#: ../modules/galleries/module.php:1572 ../modules/galleries/module.php:1583
|
1407 |
-
#: ../modules/galleries/module.php:1596 ../modules/galleries/module.php:1607
|
1408 |
-
#: ../modules/galleries/module.php:1619 ../modules/galleries/module.php:1631
|
1409 |
-
#: ../modules/galleries/module.php:1644 ../modules/galleries/module.php:1656
|
1410 |
-
#: ../modules/galleries/module.php:1667 ../modules/galleries/module.php:1679
|
1411 |
-
#: ../modules/galleries/module.php:1691 ../modules/galleries/module.php:1703
|
1412 |
-
#: ../modules/galleries/module.php:1715 ../modules/galleries/module.php:1727
|
1413 |
-
#: ../modules/html/module.php:1216 ../modules/html/module.php:1227
|
1414 |
-
#: ../modules/html/module.php:1239 ../modules/html/module.php:1251
|
1415 |
-
#: ../modules/html/module.php:1263 ../modules/html/module.php:1275
|
1416 |
-
#: ../modules/html/module.php:1287 ../modules/html/module.php:1299
|
1417 |
-
#: ../modules/html/module.php:1311 ../modules/html/module.php:1323
|
1418 |
-
#: ../modules/html/module.php:1335 ../modules/html/module.php:1347
|
1419 |
-
#: ../modules/html/module.php:1359 ../modules/html/module.php:1371
|
1420 |
-
#: ../modules/html/module.php:1383 ../modules/html/module.php:1395
|
1421 |
-
#: ../modules/html/module.php:1407 ../modules/html/module.php:1419
|
1422 |
-
#: ../modules/html/module.php:1431 ../modules/html/module.php:1443
|
1423 |
-
#: ../modules/html/module.php:1455 ../modules/image/module.php:474
|
1424 |
-
#: ../modules/image/module.php:485 ../modules/image/module.php:497
|
1425 |
-
#: ../modules/image/module.php:509 ../modules/image/module.php:521
|
1426 |
-
#: ../modules/image/module.php:533 ../modules/image/module.php:545
|
1427 |
-
#: ../modules/infobox/module.php:1233 ../modules/infobox/module.php:1244
|
1428 |
-
#: ../modules/infobox/module.php:1256 ../modules/infobox/module.php:1270
|
1429 |
-
#: ../modules/infobox/module.php:1282 ../modules/infobox/module.php:1294
|
1430 |
-
#: ../modules/infobox/module.php:1308 ../modules/infobox/module.php:1322
|
1431 |
-
#: ../modules/infobox/module.php:1336 ../modules/infobox/module.php:1348
|
1432 |
-
#: ../modules/infobox/module.php:1360 ../modules/infobox/module.php:1372
|
1433 |
-
#: ../modules/infobox/module.php:1384 ../modules/infobox/module.php:1396
|
1434 |
-
#: ../modules/infobox/module.php:1408 ../modules/infobox/module.php:1420
|
1435 |
-
#: ../modules/infobox/module.php:1432 ../modules/infobox/module.php:1444
|
1436 |
-
#: ../modules/infobox/module.php:1456 ../modules/infobox/module.php:1468
|
1437 |
-
#: ../modules/infobox/module.php:1480 ../modules/notification/module.php:506
|
1438 |
-
#: ../modules/notification/module.php:517
|
1439 |
-
#: ../modules/notification/module.php:529
|
1440 |
-
#: ../modules/notification/module.php:541
|
1441 |
-
#: ../modules/notification/module.php:553
|
1442 |
-
#: ../modules/notification/module.php:565
|
1443 |
-
#: ../modules/notification/module.php:577
|
1444 |
-
#: ../modules/notification/module.php:589 ../modules/partners/module.php:1079
|
1445 |
-
#: ../modules/partners/module.php:1093 ../modules/partners/module.php:1105
|
1446 |
-
#: ../modules/partners/module.php:1117 ../modules/partners/module.php:1129
|
1447 |
-
#: ../modules/partners/module.php:1141 ../modules/partners/module.php:1152
|
1448 |
-
#: ../modules/partners/module.php:1164 ../modules/partners/module.php:1176
|
1449 |
-
#: ../modules/partners/module.php:1188 ../modules/partners/module.php:1200
|
1450 |
-
#: ../modules/posts/module.php:1758 ../modules/posts/module.php:1769
|
1451 |
-
#: ../modules/posts/module.php:1784 ../modules/posts/module.php:1795
|
1452 |
-
#: ../modules/posts/module.php:1807 ../modules/posts/module.php:1820
|
1453 |
-
#: ../modules/posts/module.php:1832 ../modules/posts/module.php:1844
|
1454 |
-
#: ../modules/posts/module.php:1856 ../modules/posts/module.php:1867
|
1455 |
-
#: ../modules/posts/module.php:1879 ../modules/posts/module.php:1891
|
1456 |
-
#: ../modules/posts/module.php:1903 ../modules/posts/module.php:1916
|
1457 |
-
#: ../modules/posts/module.php:1928 ../modules/posts/module.php:1940
|
1458 |
-
#: ../modules/posts/module.php:1951 ../modules/posts/module.php:1963
|
1459 |
-
#: ../modules/posts/module.php:1976 ../modules/posts/module.php:1987
|
1460 |
-
#: ../modules/posts/module.php:2000 ../modules/posts/module.php:2012
|
1461 |
-
#: ../modules/posts/module.php:2024 ../modules/progress-bars/module.php:613
|
1462 |
-
#: ../modules/progress-bars/module.php:624
|
1463 |
-
#: ../modules/progress-bars/module.php:636
|
1464 |
-
#: ../modules/progress-bars/module.php:648
|
1465 |
-
#: ../modules/progress-bars/module.php:660
|
1466 |
-
#: ../modules/progress-bars/module.php:672
|
1467 |
-
#: ../modules/progress-bars/module.php:684
|
1468 |
-
#: ../modules/progress-bars/module.php:696
|
1469 |
-
#: ../modules/progress-bars/module.php:708
|
1470 |
-
#: ../modules/progress-bars/module.php:720
|
1471 |
-
#: ../modules/progress-bars/module.php:732
|
1472 |
-
#: ../modules/progress-bars/module.php:744 ../modules/projects/module.php:1550
|
1473 |
-
#: ../modules/projects/module.php:1561 ../modules/projects/module.php:1576
|
1474 |
-
#: ../modules/projects/module.php:1588 ../modules/projects/module.php:1600
|
1475 |
-
#: ../modules/projects/module.php:1612 ../modules/projects/module.php:1624
|
1476 |
-
#: ../modules/projects/module.php:1636 ../modules/projects/module.php:1647
|
1477 |
-
#: ../modules/projects/module.php:1659 ../modules/projects/module.php:1671
|
1478 |
-
#: ../modules/projects/module.php:1683 ../modules/projects/module.php:1695
|
1479 |
-
#: ../modules/projects/module.php:1708 ../modules/projects/module.php:1719
|
1480 |
-
#: ../modules/projects/module.php:1731 ../modules/projects/module.php:1744
|
1481 |
-
#: ../modules/projects/module.php:1755 ../modules/projects/module.php:1768
|
1482 |
-
#: ../modules/projects/module.php:1780 ../modules/projects/module.php:1792
|
1483 |
-
#: ../modules/separator/module.php:142 ../modules/separator/module.php:156
|
1484 |
-
#: ../modules/social/module.php:368 ../modules/social/module.php:379
|
1485 |
-
#: ../modules/social/module.php:391 ../modules/social/module.php:403
|
1486 |
-
#: ../modules/social/module.php:415 ../modules/staff/module.php:1511
|
1487 |
-
#: ../modules/staff/module.php:1522 ../modules/staff/module.php:1537
|
1488 |
-
#: ../modules/staff/module.php:1549 ../modules/staff/module.php:1561
|
1489 |
-
#: ../modules/staff/module.php:1573 ../modules/staff/module.php:1585
|
1490 |
-
#: ../modules/staff/module.php:1597 ../modules/staff/module.php:1609
|
1491 |
-
#: ../modules/staff/module.php:1620 ../modules/staff/module.php:1633
|
1492 |
-
#: ../modules/staff/module.php:1645 ../modules/staff/module.php:1656
|
1493 |
-
#: ../modules/staff/module.php:1668 ../modules/staff/module.php:1680
|
1494 |
-
#: ../modules/staff/module.php:1692 ../modules/staff/module.php:1704
|
1495 |
-
#: ../modules/staff/module.php:1717 ../modules/staff/module.php:1728
|
1496 |
-
#: ../modules/staff/module.php:1740 ../modules/tabs/module.php:648
|
1497 |
-
#: ../modules/tabs/module.php:659 ../modules/tabs/module.php:671
|
1498 |
-
#: ../modules/tabs/module.php:683 ../modules/tabs/module.php:695
|
1499 |
-
#: ../modules/tabs/module.php:707 ../modules/tabs/module.php:719
|
1500 |
-
#: ../modules/tabs/module.php:731 ../modules/tabs/module.php:743
|
1501 |
-
#: ../modules/tabs/module.php:755 ../modules/tabs/module.php:769
|
1502 |
-
#: ../modules/testimonials/module.php:1221
|
1503 |
-
#: ../modules/testimonials/module.php:1232
|
1504 |
-
#: ../modules/testimonials/module.php:1247
|
1505 |
-
#: ../modules/testimonials/module.php:1259
|
1506 |
-
#: ../modules/testimonials/module.php:1271
|
1507 |
-
#: ../modules/testimonials/module.php:1282
|
1508 |
-
#: ../modules/testimonials/module.php:1294
|
1509 |
-
#: ../modules/testimonials/module.php:1307
|
1510 |
-
#: ../modules/testimonials/module.php:1319
|
1511 |
-
#: ../modules/testimonials/module.php:1331
|
1512 |
-
#: ../modules/testimonials/module.php:1343
|
1513 |
-
#: ../modules/testimonials/module.php:1355
|
1514 |
-
#: ../modules/testimonials/module.php:1367
|
1515 |
-
#: ../modules/testimonials/module.php:1380
|
1516 |
-
#: ../modules/testimonials/module.php:1392
|
1517 |
-
#: ../modules/testimonials/module.php:1405
|
1518 |
-
#: ../modules/testimonials/module.php:1416
|
1519 |
-
#: ../modules/testimonials/module.php:1430
|
1520 |
-
#: ../modules/testimonials/module.php:1443
|
1521 |
-
#: ../modules/testimonials/module.php:1455
|
1522 |
-
#: ../modules/testimonials/module.php:1466
|
1523 |
-
#: ../modules/text-simple/module.php:2409
|
1524 |
-
#: ../modules/text-simple/module.php:2420
|
1525 |
-
#: ../modules/text-simple/module.php:2432
|
1526 |
-
#: ../modules/text-simple/module.php:2444
|
1527 |
-
#: ../modules/text-simple/module.php:2456
|
1528 |
-
#: ../modules/text-simple/module.php:2468
|
1529 |
-
#: ../modules/text-simple/module.php:2480
|
1530 |
-
#: ../modules/text-simple/module.php:2492
|
1531 |
-
#: ../modules/text-simple/module.php:2504
|
1532 |
-
#: ../modules/text-simple/module.php:2516
|
1533 |
-
#: ../modules/text-simple/module.php:2528
|
1534 |
-
#: ../modules/text-simple/module.php:2540
|
1535 |
-
#: ../modules/text-simple/module.php:2552
|
1536 |
-
#: ../modules/text-simple/module.php:2564
|
1537 |
-
#: ../modules/text-simple/module.php:2576
|
1538 |
-
#: ../modules/text-simple/module.php:2588
|
1539 |
-
#: ../modules/text-simple/module.php:2600
|
1540 |
-
#: ../modules/text-simple/module.php:2612
|
1541 |
-
#: ../modules/text-simple/module.php:2624
|
1542 |
-
#: ../modules/text-simple/module.php:2636
|
1543 |
-
#: ../modules/text-simple/module.php:2648
|
1544 |
-
#: ../modules/text-simple/module.php:2660
|
1545 |
-
#: ../modules/text-simple/module.php:2672
|
1546 |
-
#: ../modules/text-simple/module.php:2684
|
1547 |
-
#: ../modules/tp-comments-form/module.php:803
|
1548 |
-
#: ../modules/tp-comments-form/module.php:815
|
1549 |
-
#: ../modules/tp-comments-form/module.php:827
|
1550 |
-
#: ../modules/tp-comments-form/module.php:839
|
1551 |
-
#: ../modules/tp-comments-form/module.php:850
|
1552 |
-
#: ../modules/tp-comments-form/module.php:862
|
1553 |
-
#: ../modules/tp-comments-form/module.php:874
|
1554 |
-
#: ../modules/tp-comments-form/module.php:886
|
1555 |
-
#: ../modules/tp-comments-form/module.php:898
|
1556 |
-
#: ../modules/tp-comments-form/module.php:911
|
1557 |
-
#: ../modules/tp-comments-form/module.php:923
|
1558 |
-
#: ../modules/tp-comments-form/module.php:935
|
1559 |
-
#: ../modules/tp-comments-form/module.php:946
|
1560 |
-
#: ../modules/tp-comments-form/module.php:959
|
1561 |
-
#: ../modules/tp-comments-form/module.php:971
|
1562 |
-
#: ../modules/tp-comments/module.php:1122
|
1563 |
-
#: ../modules/tp-comments/module.php:1134
|
1564 |
-
#: ../modules/tp-comments/module.php:1146
|
1565 |
-
#: ../modules/tp-comments/module.php:1158
|
1566 |
-
#: ../modules/tp-comments/module.php:1170
|
1567 |
-
#: ../modules/tp-comments/module.php:1182
|
1568 |
-
#: ../modules/tp-comments/module.php:1194
|
1569 |
-
#: ../modules/tp-comments/module.php:1206
|
1570 |
-
#: ../modules/tp-comments/module.php:1218
|
1571 |
-
#: ../modules/tp-comments/module.php:1230
|
1572 |
-
#: ../modules/tp-comments/module.php:1242
|
1573 |
-
#: ../modules/tp-comments/module.php:1254
|
1574 |
-
#: ../modules/tp-comments/module.php:1266
|
1575 |
-
#: ../modules/tp-comments/module.php:1278
|
1576 |
-
#: ../modules/tp-comments/module.php:1289
|
1577 |
-
#: ../modules/tp-comments/module.php:1301
|
1578 |
-
#: ../modules/tp-comments/module.php:1313
|
1579 |
-
#: ../modules/tp-comments/module.php:1325
|
1580 |
-
#: ../modules/tp-comments/module.php:1337
|
1581 |
-
#: ../modules/tp-comments/module.php:1350
|
1582 |
-
#: ../modules/tp-comments/module.php:1362
|
1583 |
-
#: ../modules/tp-content/module.php:1086 ../modules/tp-content/module.php:1097
|
1584 |
-
#: ../modules/tp-content/module.php:1109 ../modules/tp-content/module.php:1121
|
1585 |
-
#: ../modules/tp-content/module.php:1133 ../modules/tp-content/module.php:1145
|
1586 |
-
#: ../modules/tp-content/module.php:1157 ../modules/tp-content/module.php:1169
|
1587 |
-
#: ../modules/tp-content/module.php:1181 ../modules/tp-content/module.php:1193
|
1588 |
-
#: ../modules/tp-content/module.php:1205 ../modules/tp-content/module.php:1217
|
1589 |
-
#: ../modules/tp-content/module.php:1229 ../modules/tp-content/module.php:1241
|
1590 |
-
#: ../modules/tp-content/module.php:1253 ../modules/tp-content/module.php:1265
|
1591 |
-
#: ../modules/tp-downloads-button/module.php:336
|
1592 |
-
#: ../modules/tp-downloads-button/module.php:347
|
1593 |
-
#: ../modules/tp-downloads-button/module.php:359
|
1594 |
-
#: ../modules/tp-downloads-button/module.php:371
|
1595 |
-
#: ../modules/tp-downloads-button/module.php:383
|
1596 |
-
#: ../modules/tp-excerpt/module.php:336 ../modules/tp-excerpt/module.php:347
|
1597 |
-
#: ../modules/tp-excerpt/module.php:359 ../modules/tp-excerpt/module.php:371
|
1598 |
-
#: ../modules/tp-excerpt/module.php:383 ../modules/tp-excerpt/module.php:395
|
1599 |
-
#: ../modules/tp-gallery-slider/module.php:657
|
1600 |
-
#: ../modules/tp-gallery-slider/module.php:668
|
1601 |
-
#: ../modules/tp-gallery-slider/module.php:680
|
1602 |
-
#: ../modules/tp-gallery-slider/module.php:692
|
1603 |
-
#: ../modules/tp-gallery-slider/module.php:705
|
1604 |
-
#: ../modules/tp-gallery-slider/module.php:717
|
1605 |
-
#: ../modules/tp-gallery-slider/module.php:729
|
1606 |
-
#: ../modules/tp-gallery-slider/module.php:741
|
1607 |
-
#: ../modules/tp-gallery-slider/module.php:752
|
1608 |
-
#: ../modules/tp-gallery-slider/module.php:764
|
1609 |
-
#: ../modules/tp-gallery-slider/module.php:776
|
1610 |
-
#: ../modules/tp-meta/module.php:415 ../modules/tp-meta/module.php:426
|
1611 |
-
#: ../modules/tp-meta/module.php:438 ../modules/tp-meta/module.php:450
|
1612 |
-
#: ../modules/tp-staff-social/module.php:279
|
1613 |
-
#: ../modules/tp-staff-social/module.php:290
|
1614 |
-
#: ../modules/tp-staff-social/module.php:302
|
1615 |
-
#: ../modules/tp-staff-social/module.php:314
|
1616 |
-
#: ../modules/tp-staff-social/module.php:326
|
1617 |
-
#: ../modules/tp-thumbnail/module.php:264
|
1618 |
-
#: ../modules/tp-thumbnail/module.php:275
|
1619 |
-
#: ../modules/tp-thumbnail/module.php:287 ../modules/tp-title/module.php:336
|
1620 |
-
#: ../modules/tp-title/module.php:347 ../modules/tp-title/module.php:359
|
1621 |
-
#: ../modules/tp-title/module.php:371 ../modules/tp-title/module.php:383
|
1622 |
-
#: ../modules/tp-title/module.php:395 ../modules/widgets/module.php:907
|
1623 |
-
#: ../modules/widgets/module.php:918 ../modules/widgets/module.php:930
|
1624 |
-
#: ../modules/widgets/module.php:942 ../modules/widgets/module.php:954
|
1625 |
-
#: ../modules/widgets/module.php:966 ../modules/widgets/module.php:978
|
1626 |
-
#: ../modules/widgets/module.php:990 ../modules/widgets/module.php:1002
|
1627 |
-
#: ../modules/widgets/module.php:1014 ../modules/widgets/module.php:1026
|
1628 |
-
#: ../modules/widgets/module.php:1038 ../modules/woocommerce/module.php:1750
|
1629 |
-
#: ../modules/woocommerce/module.php:1761
|
1630 |
-
#: ../modules/woocommerce/module.php:1776
|
1631 |
-
#: ../modules/woocommerce/module.php:1788
|
1632 |
-
#: ../modules/woocommerce/module.php:1800
|
1633 |
-
#: ../modules/woocommerce/module.php:1811
|
1634 |
-
#: ../modules/woocommerce/module.php:1823
|
1635 |
-
#: ../modules/woocommerce/module.php:1835
|
1636 |
-
#: ../modules/woocommerce/module.php:1848
|
1637 |
-
#: ../modules/woocommerce/module.php:1860
|
1638 |
-
#: ../modules/woocommerce/module.php:1871
|
1639 |
-
#: ../modules/woocommerce/module.php:1883
|
1640 |
-
#: ../modules/woocommerce/module.php:1895
|
1641 |
-
#: ../modules/woocommerce/module.php:1907
|
1642 |
-
#: ../modules/woocommerce/module.php:1919
|
1643 |
-
#: ../modules/woocommerce/module.php:1931
|
1644 |
-
#: ../modules/woocommerce/module.php:1944
|
1645 |
-
#: ../modules/woocommerce/module.php:1956
|
1646 |
-
#: ../modules/woocommerce/module.php:1967
|
1647 |
-
#: ../modules/woocommerce/module.php:1979
|
1648 |
-
#: ../modules/woocommerce/module.php:1991
|
1649 |
-
#: ../modules/woocommerce/module.php:2003
|
1650 |
-
msgid "phone"
|
1651 |
-
msgstr ""
|
1652 |
-
|
1653 |
-
#: ../includes/plugin-options-framework/inc/display-options.php:151
|
1654 |
-
msgid "delete"
|
1655 |
-
msgstr ""
|
1656 |
-
|
1657 |
-
#: ../includes/plugin-options-framework/inc/display-options.php:156
|
1658 |
-
msgid "Add new sidebar"
|
1659 |
-
msgstr ""
|
1660 |
-
|
1661 |
-
#: ../includes/plugin-options-framework/inc/options.php:8
|
1662 |
-
msgid "General Options"
|
1663 |
-
msgstr ""
|
1664 |
-
|
1665 |
-
#: ../includes/plugin-options-framework/inc/options.php:11
|
1666 |
-
msgid "Max Width"
|
1667 |
-
msgstr ""
|
1668 |
-
|
1669 |
-
#: ../includes/plugin-options-framework/inc/options.php:14
|
1670 |
-
msgid ""
|
1671 |
-
"The width of the modules section when row is set to wrapped. If not set the "
|
1672 |
-
"$content_width variable from theme will be used."
|
1673 |
-
msgstr ""
|
1674 |
-
|
1675 |
-
#: ../includes/plugin-options-framework/inc/options.php:17
|
1676 |
-
msgid "Force !important CSS"
|
1677 |
-
msgstr ""
|
1678 |
-
|
1679 |
-
#: ../includes/plugin-options-framework/inc/options.php:20
|
1680 |
-
msgid ""
|
1681 |
-
"In case the CSS from the theme is influencing CSS for the modules, enabling "
|
1682 |
-
"this will in most cases fix that."
|
1683 |
-
msgstr ""
|
1684 |
-
|
1685 |
-
#: ../includes/plugin-options-framework/inc/options.php:23
|
1686 |
-
#: ../modules/accordion/module.php:557 ../modules/accordion/module.php:736
|
1687 |
-
#: ../modules/blog/module.php:372 ../modules/blog/module.php:1512
|
1688 |
-
#: ../modules/blog/module.php:1801 ../modules/button/module.php:285
|
1689 |
-
#: ../modules/button/module.php:350 ../modules/button/module.php:458
|
1690 |
-
#: ../modules/downloads/module.php:270 ../modules/downloads/module.php:1344
|
1691 |
-
#: ../modules/downloads/module.php:1609 ../modules/galleries/module.php:302
|
1692 |
-
#: ../modules/galleries/module.php:1265 ../modules/galleries/module.php:1505
|
1693 |
-
#: ../modules/html/module.php:42 ../modules/html/module.php:946
|
1694 |
-
#: ../modules/html/module.php:1211 ../modules/image/module.php:80
|
1695 |
-
#: ../modules/image/module.php:374 ../modules/image/module.php:469
|
1696 |
-
#: ../modules/infobox/module.php:957 ../modules/infobox/module.php:1228
|
1697 |
-
#: ../modules/notification/module.php:394
|
1698 |
-
#: ../modules/notification/module.php:501 ../modules/partners/module.php:258
|
1699 |
-
#: ../modules/partners/module.php:929 ../modules/partners/module.php:1074
|
1700 |
-
#: ../modules/posts/module.php:372 ../modules/posts/module.php:1464
|
1701 |
-
#: ../modules/posts/module.php:1753 ../modules/progress-bars/module.php:453
|
1702 |
-
#: ../modules/progress-bars/module.php:608 ../modules/projects/module.php:266
|
1703 |
-
#: ../modules/projects/module.php:1280 ../modules/projects/module.php:1545
|
1704 |
-
#: ../modules/separator/module.php:100 ../modules/separator/module.php:137
|
1705 |
-
#: ../modules/social/module.php:292 ../modules/social/module.php:363
|
1706 |
-
#: ../modules/staff/module.php:283 ../modules/staff/module.php:1253
|
1707 |
-
#: ../modules/staff/module.php:1506 ../modules/tabs/module.php:498
|
1708 |
-
#: ../modules/tabs/module.php:643 ../modules/testimonials/module.php:947
|
1709 |
-
#: ../modules/testimonials/module.php:1216
|
1710 |
-
#: ../modules/text-simple/module.php:42 ../modules/text-simple/module.php:2103
|
1711 |
-
#: ../modules/text-simple/module.php:2404
|
1712 |
-
#: ../modules/tp-comments-form/module.php:607
|
1713 |
-
#: ../modules/tp-comments-form/module.php:798
|
1714 |
-
#: ../modules/tp-comments/module.php:854
|
1715 |
-
#: ../modules/tp-comments/module.php:1117 ../modules/tp-content/module.php:34
|
1716 |
-
#: ../modules/tp-content/module.php:878 ../modules/tp-content/module.php:1081
|
1717 |
-
#: ../modules/tp-downloads-button/module.php:260
|
1718 |
-
#: ../modules/tp-downloads-button/module.php:331
|
1719 |
-
#: ../modules/tp-excerpt/module.php:248 ../modules/tp-excerpt/module.php:331
|
1720 |
-
#: ../modules/tp-gallery-slider/module.php:70
|
1721 |
-
#: ../modules/tp-gallery-slider/module.php:509
|
1722 |
-
#: ../modules/tp-gallery-slider/module.php:652
|
1723 |
-
#: ../modules/tp-meta/module.php:351 ../modules/tp-meta/module.php:410
|
1724 |
-
#: ../modules/tp-staff-social/module.php:203
|
1725 |
-
#: ../modules/tp-staff-social/module.php:274
|
1726 |
-
#: ../modules/tp-thumbnail/module.php:139
|
1727 |
-
#: ../modules/tp-thumbnail/module.php:212
|
1728 |
-
#: ../modules/tp-thumbnail/module.php:259 ../modules/tp-title/module.php:248
|
1729 |
-
#: ../modules/tp-title/module.php:331 ../modules/widgets/module.php:746
|
1730 |
-
#: ../modules/widgets/module.php:902 ../modules/woocommerce/module.php:281
|
1731 |
-
#: ../modules/woocommerce/module.php:1468
|
1732 |
-
#: ../modules/woocommerce/module.php:1745
|
1733 |
-
msgid "Enabled"
|
1734 |
-
msgstr ""
|
1735 |
-
|
1736 |
-
#: ../includes/plugin-options-framework/inc/options.php:27
|
1737 |
-
#: ../modules/accordion/module.php:553 ../modules/accordion/module.php:732
|
1738 |
-
#: ../modules/blog/module.php:84 ../modules/blog/module.php:376
|
1739 |
-
#: ../modules/blog/module.php:1508 ../modules/blog/module.php:1797
|
1740 |
-
#: ../modules/button/module.php:281 ../modules/button/module.php:346
|
1741 |
-
#: ../modules/button/module.php:454 ../modules/downloads/module.php:84
|
1742 |
-
#: ../modules/downloads/module.php:274 ../modules/downloads/module.php:1340
|
1743 |
-
#: ../modules/downloads/module.php:1605 ../modules/galleries/module.php:84
|
1744 |
-
#: ../modules/galleries/module.php:306 ../modules/galleries/module.php:1261
|
1745 |
-
#: ../modules/galleries/module.php:1501 ../modules/html/module.php:46
|
1746 |
-
#: ../modules/html/module.php:942 ../modules/html/module.php:1207
|
1747 |
-
#: ../modules/image/module.php:84 ../modules/image/module.php:370
|
1748 |
-
#: ../modules/image/module.php:465 ../modules/infobox/module.php:953
|
1749 |
-
#: ../modules/infobox/module.php:1224 ../modules/notification/module.php:390
|
1750 |
-
#: ../modules/notification/module.php:497 ../modules/partners/module.php:84
|
1751 |
-
#: ../modules/partners/module.php:262 ../modules/partners/module.php:925
|
1752 |
-
#: ../modules/partners/module.php:1070 ../modules/posts/module.php:91
|
1753 |
-
#: ../modules/posts/module.php:376 ../modules/posts/module.php:1460
|
1754 |
-
#: ../modules/posts/module.php:1749 ../modules/progress-bars/module.php:54
|
1755 |
-
#: ../modules/progress-bars/module.php:449
|
1756 |
-
#: ../modules/progress-bars/module.php:604 ../modules/projects/module.php:84
|
1757 |
-
#: ../modules/projects/module.php:270 ../modules/projects/module.php:1276
|
1758 |
-
#: ../modules/projects/module.php:1541 ../modules/separator/module.php:96
|
1759 |
-
#: ../modules/separator/module.php:133 ../modules/social/module.php:288
|
1760 |
-
#: ../modules/social/module.php:359 ../modules/staff/module.php:84
|
1761 |
-
#: ../modules/staff/module.php:287 ../modules/staff/module.php:1249
|
1762 |
-
#: ../modules/staff/module.php:1502 ../modules/tabs/module.php:494
|
1763 |
-
#: ../modules/tabs/module.php:639 ../modules/testimonials/module.php:68
|
1764 |
-
#: ../modules/testimonials/module.php:943
|
1765 |
-
#: ../modules/testimonials/module.php:1212
|
1766 |
-
#: ../modules/text-simple/module.php:46 ../modules/text-simple/module.php:2099
|
1767 |
-
#: ../modules/text-simple/module.php:2400
|
1768 |
-
#: ../modules/tp-comments-form/module.php:603
|
1769 |
-
#: ../modules/tp-comments-form/module.php:794
|
1770 |
-
#: ../modules/tp-comments/module.php:850
|
1771 |
-
#: ../modules/tp-comments/module.php:1113 ../modules/tp-content/module.php:38
|
1772 |
-
#: ../modules/tp-content/module.php:874 ../modules/tp-content/module.php:1077
|
1773 |
-
#: ../modules/tp-downloads-button/module.php:256
|
1774 |
-
#: ../modules/tp-downloads-button/module.php:327
|
1775 |
-
#: ../modules/tp-excerpt/module.php:244 ../modules/tp-excerpt/module.php:327
|
1776 |
-
#: ../modules/tp-gallery-slider/module.php:74
|
1777 |
-
#: ../modules/tp-gallery-slider/module.php:505
|
1778 |
-
#: ../modules/tp-gallery-slider/module.php:648
|
1779 |
-
#: ../modules/tp-meta/module.php:347 ../modules/tp-meta/module.php:406
|
1780 |
-
#: ../modules/tp-staff-social/module.php:199
|
1781 |
-
#: ../modules/tp-staff-social/module.php:270
|
1782 |
-
#: ../modules/tp-thumbnail/module.php:143
|
1783 |
-
#: ../modules/tp-thumbnail/module.php:208
|
1784 |
-
#: ../modules/tp-thumbnail/module.php:255 ../modules/tp-title/module.php:244
|
1785 |
-
#: ../modules/tp-title/module.php:327 ../modules/widgets/module.php:742
|
1786 |
-
#: ../modules/widgets/module.php:898 ../modules/woocommerce/module.php:83
|
1787 |
-
#: ../modules/woocommerce/module.php:285
|
1788 |
-
#: ../modules/woocommerce/module.php:1464
|
1789 |
-
#: ../modules/woocommerce/module.php:1741
|
1790 |
-
msgid "Disabled"
|
1791 |
-
msgstr ""
|
1792 |
-
|
1793 |
-
#: ../includes/plugin-options-framework/inc/options.php:36
|
1794 |
-
msgid "Widgets Module"
|
1795 |
-
msgstr ""
|
1796 |
-
|
1797 |
-
#: ../includes/plugin-options-framework/inc/options.php:40
|
1798 |
-
msgid "Sidebars"
|
1799 |
-
msgstr ""
|
1800 |
-
|
1801 |
-
#: ../includes/plugin-options-framework/inc/options.php:49
|
1802 |
-
msgid "Slugs"
|
1803 |
-
msgstr ""
|
1804 |
-
|
1805 |
-
#: ../includes/plugin-options-framework/inc/options.php:53
|
1806 |
-
msgid "<strong>Project</strong> Slug"
|
1807 |
-
msgstr ""
|
1808 |
-
|
1809 |
-
#: ../includes/plugin-options-framework/inc/options.php:58
|
1810 |
-
msgid "<strong>Projects</strong> Category Slug"
|
1811 |
-
msgstr ""
|
1812 |
-
|
1813 |
-
#: ../includes/plugin-options-framework/inc/options.php:64
|
1814 |
-
msgid "<strong>Gallery</strong> Slug"
|
1815 |
-
msgstr ""
|
1816 |
-
|
1817 |
-
#: ../includes/plugin-options-framework/inc/options.php:69
|
1818 |
-
msgid "<strong>Galleries</strong> Category Slug"
|
1819 |
-
msgstr ""
|
1820 |
-
|
1821 |
-
#: ../includes/plugin-options-framework/inc/options.php:75
|
1822 |
-
msgid "<strong>Download</strong> Slug"
|
1823 |
-
msgstr ""
|
1824 |
-
|
1825 |
-
#: ../includes/plugin-options-framework/inc/options.php:80
|
1826 |
-
msgid "<strong>Downloads</strong> Categories Slug"
|
1827 |
-
msgstr ""
|
1828 |
-
|
1829 |
-
#: ../includes/plugin-options-framework/inc/options.php:85
|
1830 |
-
msgid "<strong>Downloads</strong> Tags Slug"
|
1831 |
-
msgstr ""
|
1832 |
-
|
1833 |
-
#: ../includes/plugin-options-framework/inc/options.php:91
|
1834 |
-
msgid "<strong>Staff</strong> Slug"
|
1835 |
-
msgstr ""
|
1836 |
-
|
1837 |
-
#: ../includes/plugin-options-framework/inc/options.php:96
|
1838 |
-
msgid "<strong>Staff</strong> Categories Slug"
|
1839 |
-
msgstr ""
|
1840 |
-
|
1841 |
-
#: ../includes/plugin-options-framework/inc/options.php:102
|
1842 |
-
msgid "<strong>Partner</strong> Slug"
|
1843 |
-
msgstr ""
|
1844 |
-
|
1845 |
-
#: ../includes/plugin-options-framework/inc/options.php:107
|
1846 |
-
msgid "<strong>Partners</strong> Categories Slug"
|
1847 |
-
msgstr ""
|
1848 |
-
|
1849 |
-
#: ../includes/plugin-options-framework/inc/options.php:136
|
1850 |
-
msgid "✔ Enabled"
|
1851 |
-
msgstr ""
|
1852 |
-
|
1853 |
-
#: ../includes/plugin-options-framework/inc/options.php:140
|
1854 |
-
msgid "✖ Disabled"
|
1855 |
-
msgstr ""
|
1856 |
-
|
1857 |
-
#: ../includes/plugin-options-framework/inc/options.php:149
|
1858 |
-
msgid "Features Control"
|
1859 |
-
msgstr ""
|
1860 |
-
|
1861 |
-
#: ../includes/post-options-framework/post-options-framework.php:28
|
1862 |
-
msgid "Default"
|
1863 |
-
msgstr ""
|
1864 |
-
|
1865 |
-
#: ../includes/post-options-framework/post-options-framework.php:48
|
1866 |
-
msgid "LC Template"
|
1867 |
-
msgstr ""
|
1868 |
-
|
1869 |
-
#: ../includes/post-options-framework/post-options-framework.php:53
|
1870 |
-
#: ../includes/single-templates-framework/inc/functions.php:16
|
1871 |
-
msgid "Template"
|
1872 |
-
msgstr ""
|
1873 |
-
|
1874 |
-
#: ../includes/scripts.php:24
|
1875 |
-
msgid "OK"
|
1876 |
-
msgstr ""
|
1877 |
-
|
1878 |
-
#: ../includes/scripts.php:26
|
1879 |
-
msgid "You are about to exit Live Composer"
|
1880 |
-
msgstr ""
|
1881 |
-
|
1882 |
-
#: ../includes/scripts.php:27 ../includes/scripts.php:45
|
1883 |
-
msgid "Any unsaved changed will be lost."
|
1884 |
-
msgstr ""
|
1885 |
-
|
1886 |
-
#: ../includes/scripts.php:29
|
1887 |
-
msgid "MODULES ROW"
|
1888 |
-
msgstr ""
|
1889 |
-
|
1890 |
-
#: ../includes/scripts.php:30
|
1891 |
-
msgid "Import Row"
|
1892 |
-
msgstr ""
|
1893 |
-
|
1894 |
-
#: ../includes/scripts.php:31
|
1895 |
-
msgid "Copy the row export code bellow."
|
1896 |
-
msgstr ""
|
1897 |
-
|
1898 |
-
#: ../includes/scripts.php:32
|
1899 |
-
msgid "Delete Module"
|
1900 |
-
msgstr ""
|
1901 |
-
|
1902 |
-
#: ../includes/scripts.php:33
|
1903 |
-
msgid "Are you sure you want to delete this module?"
|
1904 |
-
msgstr ""
|
1905 |
-
|
1906 |
-
#: ../includes/scripts.php:34
|
1907 |
-
msgid "Delete Area/Column"
|
1908 |
-
msgstr ""
|
1909 |
-
|
1910 |
-
#: ../includes/scripts.php:35
|
1911 |
-
msgid "Are you sure you want to delete this modules area?"
|
1912 |
-
msgstr ""
|
1913 |
-
|
1914 |
-
#: ../includes/scripts.php:36
|
1915 |
-
msgid "Delete Row"
|
1916 |
-
msgstr ""
|
1917 |
-
|
1918 |
-
#: ../includes/scripts.php:37
|
1919 |
-
msgid "Are you sure you want to delete this row?"
|
1920 |
-
msgstr ""
|
1921 |
-
|
1922 |
-
#: ../includes/scripts.php:38
|
1923 |
-
msgid "Export Row"
|
1924 |
-
msgstr ""
|
1925 |
-
|
1926 |
-
#: ../includes/scripts.php:39
|
1927 |
-
msgid "The code bellow is the importable code for this row."
|
1928 |
-
msgstr ""
|
1929 |
-
|
1930 |
-
#: ../includes/scripts.php:40
|
1931 |
-
msgid "You are currently editing a module"
|
1932 |
-
msgstr ""
|
1933 |
-
|
1934 |
-
#: ../includes/scripts.php:41 ../includes/scripts.php:43
|
1935 |
-
msgid ""
|
1936 |
-
"You need to either <strong>confirm</strong> or <strong>cancel</strong> those "
|
1937 |
-
"changes before continuing."
|
1938 |
-
msgstr ""
|
1939 |
-
|
1940 |
-
#: ../includes/scripts.php:42
|
1941 |
-
msgid "You are currently editing a modules row"
|
1942 |
-
msgstr ""
|
1943 |
-
|
1944 |
-
#: ../includes/scripts.php:44
|
1945 |
-
msgid "You are about to refresh the page"
|
1946 |
-
msgstr ""
|
1947 |
-
|
1948 |
-
#: ../includes/single-templates-framework/inc/functions.php:15
|
1949 |
-
msgid "Templates"
|
1950 |
-
msgstr ""
|
1951 |
-
|
1952 |
-
#: ../includes/single-templates-framework/inc/functions.php:17
|
1953 |
-
#: ../includes/single-templates-framework/inc/functions.php:18
|
1954 |
-
msgid "Add Template"
|
1955 |
-
msgstr ""
|
1956 |
-
|
1957 |
-
#: ../includes/single-templates-framework/inc/functions.php:19
|
1958 |
-
#: ../modules/downloads/functions.php:21 ../modules/galleries/functions.php:30
|
1959 |
-
#: ../modules/partners/functions.php:15 ../modules/projects/functions.php:15
|
1960 |
-
#: ../modules/testimonials/functions.php:30
|
1961 |
-
msgid "Edit"
|
1962 |
-
msgstr ""
|
1963 |
-
|
1964 |
-
#: ../includes/single-templates-framework/inc/functions.php:20
|
1965 |
-
msgid "Edit Template"
|
1966 |
-
msgstr ""
|
1967 |
-
|
1968 |
-
#: ../includes/single-templates-framework/inc/functions.php:21
|
1969 |
-
msgid "New Template"
|
1970 |
-
msgstr ""
|
1971 |
-
|
1972 |
-
#: ../includes/single-templates-framework/inc/functions.php:22
|
1973 |
-
msgid "View Templates"
|
1974 |
-
msgstr ""
|
1975 |
-
|
1976 |
-
#: ../includes/single-templates-framework/inc/functions.php:23
|
1977 |
-
msgid "View Template"
|
1978 |
-
msgstr ""
|
1979 |
-
|
1980 |
-
#: ../includes/single-templates-framework/inc/functions.php:24
|
1981 |
-
msgid "Search Templates"
|
1982 |
-
msgstr ""
|
1983 |
-
|
1984 |
-
#: ../includes/single-templates-framework/inc/functions.php:25
|
1985 |
-
msgid "No Templates found"
|
1986 |
-
msgstr ""
|
1987 |
-
|
1988 |
-
#: ../includes/single-templates-framework/inc/functions.php:26
|
1989 |
-
msgid "No Templates found in Trash"
|
1990 |
-
msgstr ""
|
1991 |
-
|
1992 |
-
#: ../includes/single-templates-framework/inc/functions.php:27
|
1993 |
-
msgid "Parent Template"
|
1994 |
-
msgstr ""
|
1995 |
-
|
1996 |
-
#: ../includes/single-templates-framework/inc/functions.php:61
|
1997 |
-
#: ../modules/posts/module.php:36
|
1998 |
-
msgid "Post Type"
|
1999 |
-
msgstr ""
|
2000 |
-
|
2001 |
-
#: ../includes/single-templates-framework/inc/functions.php:62
|
2002 |
-
msgid "Which post type is this template for?"
|
2003 |
-
msgstr ""
|
2004 |
-
|
2005 |
-
#: ../includes/single-templates-framework/inc/functions.php:69
|
2006 |
-
msgid "Base"
|
2007 |
-
msgstr ""
|
2008 |
-
|
2009 |
-
#: ../includes/single-templates-framework/inc/functions.php:70
|
2010 |
-
msgid ""
|
2011 |
-
"If set to <strong>theme template</strong> the template will be appeneded to "
|
2012 |
-
"the regular single post template ( ex. If the theme shows thumbnail and "
|
2013 |
-
"title in it's template they will still be there ). If set to <strong>plugin "
|
2014 |
-
"template</strong> everything will be stripped and only the content from this "
|
2015 |
-
"template shown."
|
2016 |
-
msgstr ""
|
2017 |
-
|
2018 |
-
#: ../includes/single-templates-framework/inc/functions.php:88
|
2019 |
-
msgid ""
|
2020 |
-
"<strong>Default</strong> template will be used as the default for all the "
|
2021 |
-
"posts. <strong>Regular</strong> template is an additional template that you "
|
2022 |
-
"can set to specific posts."
|
2023 |
-
msgstr ""
|
2024 |
-
|
2025 |
-
#: ../includes/tutorials/tutorial.php:77
|
2026 |
-
msgid "- Select -"
|
2027 |
-
msgstr ""
|
2028 |
-
|
2029 |
-
#: ../includes/tutorials/tutorial.php:89
|
2030 |
-
msgid "Tutorials"
|
2031 |
-
msgstr ""
|
2032 |
-
|
2033 |
-
#: ../includes/tutorials/tutorial.php:92
|
2034 |
-
msgid "Chapter One"
|
2035 |
-
msgstr ""
|
2036 |
-
|
2037 |
-
#: ../includes/tutorials/tutorial.php:95
|
2038 |
-
msgid "Choose the page that will be used for chapter one of the tutorial."
|
2039 |
-
msgstr ""
|
2040 |
-
|
2041 |
-
#: ../includes/tutorials/tutorial.php:99
|
2042 |
-
msgid "Chapter Two"
|
2043 |
-
msgstr ""
|
2044 |
-
|
2045 |
-
#: ../includes/tutorials/tutorial.php:102
|
2046 |
-
msgid "Choose the page that will be used for chapter two of the tutorial."
|
2047 |
-
msgstr ""
|
2048 |
-
|
2049 |
-
#: ../includes/tutorials/tutorial.php:106
|
2050 |
-
msgid "Chapter Three"
|
2051 |
-
msgstr ""
|
2052 |
-
|
2053 |
-
#: ../includes/tutorials/tutorial.php:109
|
2054 |
-
msgid "Choose the page that will be used for chapter three of the tutorial."
|
2055 |
-
msgstr ""
|
2056 |
-
|
2057 |
-
#: ../includes/tutorials/tutorial.php:113
|
2058 |
-
msgid "Chapter Four"
|
2059 |
-
msgstr ""
|
2060 |
-
|
2061 |
-
#: ../includes/tutorials/tutorial.php:116
|
2062 |
-
msgid "Choose the page that will be used for chapter four of the tutorial."
|
2063 |
-
msgstr ""
|
2064 |
-
|
2065 |
-
#: ../modules/accordion/module.php:13
|
2066 |
-
msgid "Accordion"
|
2067 |
-
msgstr ""
|
2068 |
-
|
2069 |
-
#: ../modules/accordion/module.php:24
|
2070 |
-
msgid "(hidden) Accordion Content"
|
2071 |
-
msgstr ""
|
2072 |
-
|
2073 |
-
#: ../modules/accordion/module.php:32
|
2074 |
-
msgid "(hidden) Accordion Nav"
|
2075 |
-
msgstr ""
|
2076 |
-
|
2077 |
-
#: ../modules/accordion/module.php:41
|
2078 |
-
msgid "Open by default"
|
2079 |
-
msgstr ""
|
2080 |
-
|
2081 |
-
#: ../modules/accordion/module.php:111 ../modules/accordion/module.php:212
|
2082 |
-
#: ../modules/accordion/module.php:565 ../modules/accordion/module.php:744
|
2083 |
-
#: ../modules/blog/module.php:328 ../modules/blog/module.php:530
|
2084 |
-
#: ../modules/blog/module.php:932 ../modules/blog/module.php:1062
|
2085 |
-
#: ../modules/blog/module.php:1241 ../modules/blog/module.php:1520
|
2086 |
-
#: ../modules/blog/module.php:1809 ../modules/button/module.php:172
|
2087 |
-
#: ../modules/button/module.php:358 ../modules/button/module.php:466
|
2088 |
-
#: ../modules/downloads/module.php:248 ../modules/downloads/module.php:428
|
2089 |
-
#: ../modules/downloads/module.php:820 ../modules/downloads/module.php:1030
|
2090 |
-
#: ../modules/downloads/module.php:1220 ../modules/downloads/module.php:1352
|
2091 |
-
#: ../modules/downloads/module.php:1617 ../modules/galleries/module.php:280
|
2092 |
-
#: ../modules/galleries/module.php:460 ../modules/galleries/module.php:1118
|
2093 |
-
#: ../modules/galleries/module.php:1146 ../modules/galleries/module.php:1273
|
2094 |
-
#: ../modules/galleries/module.php:1513 ../modules/html/module.php:134
|
2095 |
-
#: ../modules/html/module.php:328 ../modules/html/module.php:435
|
2096 |
-
#: ../modules/html/module.php:542 ../modules/html/module.php:649
|
2097 |
-
#: ../modules/html/module.php:756 ../modules/html/module.php:863
|
2098 |
-
#: ../modules/html/module.php:954 ../modules/html/module.php:1219
|
2099 |
-
#: ../modules/image/module.php:219 ../modules/image/module.php:382
|
2100 |
-
#: ../modules/image/module.php:477 ../modules/infobox/module.php:280
|
2101 |
-
#: ../modules/infobox/module.php:563 ../modules/infobox/module.php:642
|
2102 |
-
#: ../modules/infobox/module.php:965 ../modules/infobox/module.php:1236
|
2103 |
-
#: ../modules/notification/module.php:98
|
2104 |
-
#: ../modules/notification/module.php:402
|
2105 |
-
#: ../modules/notification/module.php:509 ../modules/partners/module.php:236
|
2106 |
-
#: ../modules/partners/module.php:416 ../modules/partners/module.php:810
|
2107 |
-
#: ../modules/posts/module.php:328 ../modules/posts/module.php:530
|
2108 |
-
#: ../modules/posts/module.php:932 ../modules/posts/module.php:1050
|
2109 |
-
#: ../modules/posts/module.php:1193 ../modules/posts/module.php:1472
|
2110 |
-
#: ../modules/posts/module.php:1761 ../modules/progress-bars/module.php:158
|
2111 |
-
#: ../modules/progress-bars/module.php:245
|
2112 |
-
#: ../modules/progress-bars/module.php:390
|
2113 |
-
#: ../modules/progress-bars/module.php:461
|
2114 |
-
#: ../modules/progress-bars/module.php:616 ../modules/projects/module.php:244
|
2115 |
-
#: ../modules/projects/module.php:424 ../modules/projects/module.php:816
|
2116 |
-
#: ../modules/projects/module.php:894 ../modules/projects/module.php:1038
|
2117 |
-
#: ../modules/projects/module.php:1288 ../modules/projects/module.php:1553
|
2118 |
-
#: ../modules/social/module.php:207 ../modules/social/module.php:300
|
2119 |
-
#: ../modules/social/module.php:371 ../modules/staff/module.php:261
|
2120 |
-
#: ../modules/staff/module.php:445 ../modules/staff/module.php:627
|
2121 |
-
#: ../modules/staff/module.php:1004 ../modules/staff/module.php:1122
|
2122 |
-
#: ../modules/staff/module.php:1261 ../modules/staff/module.php:1514
|
2123 |
-
#: ../modules/tabs/module.php:450 ../modules/tabs/module.php:530
|
2124 |
-
#: ../modules/tabs/module.php:675 ../modules/testimonials/module.php:224
|
2125 |
-
#: ../modules/testimonials/module.php:528
|
2126 |
-
#: ../modules/testimonials/module.php:632
|
2127 |
-
#: ../modules/testimonials/module.php:854
|
2128 |
-
#: ../modules/testimonials/module.php:955
|
2129 |
-
#: ../modules/testimonials/module.php:1224
|
2130 |
-
#: ../modules/text-simple/module.php:134 ../modules/text-simple/module.php:427
|
2131 |
-
#: ../modules/text-simple/module.php:645 ../modules/text-simple/module.php:863
|
2132 |
-
#: ../modules/text-simple/module.php:1081
|
2133 |
-
#: ../modules/text-simple/module.php:1299
|
2134 |
-
#: ../modules/text-simple/module.php:1517
|
2135 |
-
#: ../modules/text-simple/module.php:1675
|
2136 |
-
#: ../modules/text-simple/module.php:2052
|
2137 |
-
#: ../modules/text-simple/module.php:2111
|
2138 |
-
#: ../modules/text-simple/module.php:2412
|
2139 |
-
#: ../modules/tp-comments-form/module.php:118
|
2140 |
-
#: ../modules/tp-comments-form/module.php:217
|
2141 |
-
#: ../modules/tp-comments-form/module.php:370
|
2142 |
-
#: ../modules/tp-comments-form/module.php:615
|
2143 |
-
#: ../modules/tp-comments-form/module.php:806
|
2144 |
-
#: ../modules/tp-comments/module.php:96 ../modules/tp-comments/module.php:209
|
2145 |
-
#: ../modules/tp-comments/module.php:325 ../modules/tp-comments/module.php:453
|
2146 |
-
#: ../modules/tp-comments/module.php:862
|
2147 |
-
#: ../modules/tp-comments/module.php:1125 ../modules/tp-content/module.php:126
|
2148 |
-
#: ../modules/tp-content/module.php:320 ../modules/tp-content/module.php:886
|
2149 |
-
#: ../modules/tp-content/module.php:1089
|
2150 |
-
#: ../modules/tp-downloads-button/module.php:122
|
2151 |
-
#: ../modules/tp-downloads-button/module.php:280
|
2152 |
-
#: ../modules/tp-downloads-button/module.php:351
|
2153 |
-
#: ../modules/tp-excerpt/module.php:105 ../modules/tp-excerpt/module.php:256
|
2154 |
-
#: ../modules/tp-excerpt/module.php:339
|
2155 |
-
#: ../modules/tp-gallery-slider/module.php:166
|
2156 |
-
#: ../modules/tp-gallery-slider/module.php:517
|
2157 |
-
#: ../modules/tp-gallery-slider/module.php:660
|
2158 |
-
#: ../modules/tp-meta/module.php:163 ../modules/tp-staff-social/module.php:118
|
2159 |
-
#: ../modules/tp-staff-social/module.php:211
|
2160 |
-
#: ../modules/tp-staff-social/module.php:282
|
2161 |
-
#: ../modules/tp-thumbnail/module.php:150 ../modules/tp-title/module.php:105
|
2162 |
-
#: ../modules/tp-title/module.php:256 ../modules/tp-title/module.php:339
|
2163 |
-
#: ../modules/widgets/module.php:151 ../modules/widgets/module.php:401
|
2164 |
-
#: ../modules/widgets/module.php:556 ../modules/widgets/module.php:754
|
2165 |
-
#: ../modules/widgets/module.php:910 ../modules/woocommerce/module.php:259
|
2166 |
-
#: ../modules/woocommerce/module.php:439
|
2167 |
-
#: ../modules/woocommerce/module.php:1028
|
2168 |
-
#: ../modules/woocommerce/module.php:1159
|
2169 |
-
#: ../modules/woocommerce/module.php:1322
|
2170 |
-
#: ../modules/woocommerce/module.php:1476
|
2171 |
-
#: ../modules/woocommerce/module.php:1753
|
2172 |
-
msgid "Margin Bottom"
|
2173 |
-
msgstr ""
|
2174 |
-
|
2175 |
-
#: ../modules/accordion/module.php:157 ../modules/accordion/module.php:168
|
2176 |
-
#: ../modules/accordion/module.php:180 ../modules/accordion/module.php:209
|
2177 |
-
#: ../modules/accordion/module.php:221 ../modules/accordion/module.php:233
|
2178 |
-
#: ../modules/accordion/module.php:245
|
2179 |
-
msgid "header"
|
2180 |
-
msgstr ""
|
2181 |
-
|
2182 |
-
#: ../modules/accordion/module.php:261 ../modules/accordion/module.php:272
|
2183 |
-
#: ../modules/accordion/module.php:284 ../modules/accordion/module.php:313
|
2184 |
-
#: ../modules/accordion/module.php:324 ../modules/accordion/module.php:335
|
2185 |
-
#: ../modules/accordion/module.php:347 ../modules/accordion/module.php:362
|
2186 |
-
#: ../modules/accordion/module.php:374 ../modules/accordion/module.php:386
|
2187 |
-
#: ../modules/progress-bars/module.php:296
|
2188 |
-
msgid "title"
|
2189 |
-
msgstr ""
|
2190 |
-
|
2191 |
-
#: ../modules/accordion/module.php:316 ../modules/accordion/module.php:457
|
2192 |
-
#: ../modules/blog/module.php:384 ../modules/blog/module.php:860
|
2193 |
-
#: ../modules/blog/module.php:1001 ../modules/blog/module.php:1180
|
2194 |
-
#: ../modules/blog/module.php:1371 ../modules/button/module.php:210
|
2195 |
-
#: ../modules/button/module.php:301 ../modules/downloads/module.php:282
|
2196 |
-
#: ../modules/downloads/module.php:748 ../modules/downloads/module.php:848
|
2197 |
-
#: ../modules/downloads/module.php:969 ../modules/downloads/module.php:1160
|
2198 |
-
#: ../modules/downloads/module.php:1280 ../modules/galleries/module.php:314
|
2199 |
-
#: ../modules/galleries/module.php:1046 ../modules/galleries/module.php:1135
|
2200 |
-
#: ../modules/galleries/module.php:1181 ../modules/html/module.php:172
|
2201 |
-
#: ../modules/html/module.php:267 ../modules/html/module.php:374
|
2202 |
-
#: ../modules/html/module.php:481 ../modules/html/module.php:588
|
2203 |
-
#: ../modules/html/module.php:695 ../modules/html/module.php:802
|
2204 |
-
#: ../modules/image/module.php:286 ../modules/infobox/module.php:406
|
2205 |
-
#: ../modules/infobox/module.php:502 ../modules/infobox/module.php:581
|
2206 |
-
#: ../modules/infobox/module.php:756 ../modules/notification/module.php:143
|
2207 |
-
#: ../modules/partners/module.php:270 ../modules/partners/module.php:738
|
2208 |
-
#: ../modules/partners/module.php:845 ../modules/posts/module.php:384
|
2209 |
-
#: ../modules/posts/module.php:860 ../modules/posts/module.php:1001
|
2210 |
-
#: ../modules/posts/module.php:1132 ../modules/posts/module.php:1323
|
2211 |
-
#: ../modules/progress-bars/module.php:196
|
2212 |
-
#: ../modules/progress-bars/module.php:379 ../modules/projects/module.php:278
|
2213 |
-
#: ../modules/projects/module.php:744 ../modules/projects/module.php:833
|
2214 |
-
#: ../modules/projects/module.php:977 ../modules/projects/module.php:1150
|
2215 |
-
#: ../modules/social/module.php:187 ../modules/social/module.php:243
|
2216 |
-
#: ../modules/staff/module.php:295 ../modules/staff/module.php:932
|
2217 |
-
#: ../modules/staff/module.php:1073 ../modules/staff/module.php:1169
|
2218 |
-
#: ../modules/tabs/module.php:297 ../modules/testimonials/module.php:240
|
2219 |
-
#: ../modules/testimonials/module.php:467
|
2220 |
-
#: ../modules/testimonials/module.php:805
|
2221 |
-
#: ../modules/testimonials/module.php:883
|
2222 |
-
#: ../modules/text-simple/module.php:172 ../modules/text-simple/module.php:366
|
2223 |
-
#: ../modules/text-simple/module.php:584 ../modules/text-simple/module.php:802
|
2224 |
-
#: ../modules/text-simple/module.php:1020
|
2225 |
-
#: ../modules/text-simple/module.php:1238
|
2226 |
-
#: ../modules/text-simple/module.php:1456
|
2227 |
-
#: ../modules/text-simple/module.php:1614
|
2228 |
-
#: ../modules/text-simple/module.php:1991
|
2229 |
-
#: ../modules/tp-comments-form/module.php:98
|
2230 |
-
#: ../modules/tp-comments-form/module.php:156
|
2231 |
-
#: ../modules/tp-comments-form/module.php:309
|
2232 |
-
#: ../modules/tp-comments-form/module.php:508
|
2233 |
-
#: ../modules/tp-comments/module.php:506 ../modules/tp-comments/module.php:560
|
2234 |
-
#: ../modules/tp-comments/module.php:614 ../modules/tp-comments/module.php:743
|
2235 |
-
#: ../modules/tp-content/module.php:164 ../modules/tp-content/module.php:259
|
2236 |
-
#: ../modules/tp-content/module.php:366 ../modules/tp-content/module.php:461
|
2237 |
-
#: ../modules/tp-content/module.php:556 ../modules/tp-content/module.php:651
|
2238 |
-
#: ../modules/tp-content/module.php:746
|
2239 |
-
#: ../modules/tp-downloads-button/module.php:149
|
2240 |
-
#: ../modules/tp-downloads-button/module.php:222
|
2241 |
-
#: ../modules/tp-excerpt/module.php:143
|
2242 |
-
#: ../modules/tp-gallery-slider/module.php:436
|
2243 |
-
#: ../modules/tp-meta/module.php:242 ../modules/tp-staff-social/module.php:98
|
2244 |
-
#: ../modules/tp-staff-social/module.php:154
|
2245 |
-
#: ../modules/tp-title/module.php:143 ../modules/widgets/module.php:340
|
2246 |
-
#: ../modules/widgets/module.php:430 ../modules/woocommerce/module.php:293
|
2247 |
-
#: ../modules/woocommerce/module.php:582 ../modules/woocommerce/module.php:956
|
2248 |
-
#: ../modules/woocommerce/module.php:1098
|
2249 |
-
#: ../modules/woocommerce/module.php:1225
|
2250 |
-
#: ../modules/woocommerce/module.php:1311
|
2251 |
-
msgid "Color"
|
2252 |
-
msgstr ""
|
2253 |
-
|
2254 |
-
#: ../modules/accordion/module.php:327 ../modules/accordion/module.php:468
|
2255 |
-
#: ../modules/blog/module.php:882 ../modules/blog/module.php:1012
|
2256 |
-
#: ../modules/blog/module.php:1191 ../modules/blog/module.php:1393
|
2257 |
-
#: ../modules/button/module.php:232 ../modules/button/module.php:394
|
2258 |
-
#: ../modules/button/module.php:502 ../modules/downloads/module.php:770
|
2259 |
-
#: ../modules/downloads/module.php:870 ../modules/downloads/module.php:980
|
2260 |
-
#: ../modules/downloads/module.php:1182 ../modules/downloads/module.php:1291
|
2261 |
-
#: ../modules/galleries/module.php:1068 ../modules/galleries/module.php:1192
|
2262 |
-
#: ../modules/html/module.php:183 ../modules/html/module.php:278
|
2263 |
-
#: ../modules/html/module.php:385 ../modules/html/module.php:492
|
2264 |
-
#: ../modules/html/module.php:599 ../modules/html/module.php:706
|
2265 |
-
#: ../modules/html/module.php:813 ../modules/html/module.php:990
|
2266 |
-
#: ../modules/html/module.php:1255 ../modules/image/module.php:297
|
2267 |
-
#: ../modules/infobox/module.php:513 ../modules/infobox/module.php:592
|
2268 |
-
#: ../modules/infobox/module.php:778 ../modules/notification/module.php:154
|
2269 |
-
#: ../modules/notification/module.php:438
|
2270 |
-
#: ../modules/notification/module.php:545 ../modules/partners/module.php:760
|
2271 |
-
#: ../modules/partners/module.php:856 ../modules/posts/module.php:882
|
2272 |
-
#: ../modules/posts/module.php:1012 ../modules/posts/module.php:1143
|
2273 |
-
#: ../modules/posts/module.php:1345 ../modules/progress-bars/module.php:207
|
2274 |
-
#: ../modules/projects/module.php:766 ../modules/projects/module.php:844
|
2275 |
-
#: ../modules/projects/module.php:988 ../modules/projects/module.php:1172
|
2276 |
-
#: ../modules/staff/module.php:954 ../modules/staff/module.php:1084
|
2277 |
-
#: ../modules/staff/module.php:1180 ../modules/tabs/module.php:142
|
2278 |
-
#: ../modules/tabs/module.php:404 ../modules/tabs/module.php:506
|
2279 |
-
#: ../modules/tabs/module.php:651 ../modules/testimonials/module.php:478
|
2280 |
-
#: ../modules/testimonials/module.php:816
|
2281 |
-
#: ../modules/testimonials/module.php:894
|
2282 |
-
#: ../modules/text-simple/module.php:183 ../modules/text-simple/module.php:377
|
2283 |
-
#: ../modules/text-simple/module.php:595 ../modules/text-simple/module.php:813
|
2284 |
-
#: ../modules/text-simple/module.php:1031
|
2285 |
-
#: ../modules/text-simple/module.php:1249
|
2286 |
-
#: ../modules/text-simple/module.php:1467
|
2287 |
-
#: ../modules/text-simple/module.php:1625
|
2288 |
-
#: ../modules/text-simple/module.php:2002
|
2289 |
-
#: ../modules/text-simple/module.php:2147
|
2290 |
-
#: ../modules/text-simple/module.php:2448
|
2291 |
-
#: ../modules/tp-comments-form/module.php:167
|
2292 |
-
#: ../modules/tp-comments-form/module.php:320
|
2293 |
-
#: ../modules/tp-comments-form/module.php:530
|
2294 |
-
#: ../modules/tp-comments/module.php:517 ../modules/tp-comments/module.php:571
|
2295 |
-
#: ../modules/tp-comments/module.php:625 ../modules/tp-comments/module.php:765
|
2296 |
-
#: ../modules/tp-content/module.php:175 ../modules/tp-content/module.php:270
|
2297 |
-
#: ../modules/tp-content/module.php:377 ../modules/tp-content/module.php:472
|
2298 |
-
#: ../modules/tp-content/module.php:567 ../modules/tp-content/module.php:662
|
2299 |
-
#: ../modules/tp-content/module.php:757 ../modules/tp-content/module.php:922
|
2300 |
-
#: ../modules/tp-content/module.php:1125
|
2301 |
-
#: ../modules/tp-downloads-button/module.php:171
|
2302 |
-
#: ../modules/tp-downloads-button/module.php:268
|
2303 |
-
#: ../modules/tp-downloads-button/module.php:339
|
2304 |
-
#: ../modules/tp-excerpt/module.php:154 ../modules/tp-excerpt/module.php:292
|
2305 |
-
#: ../modules/tp-excerpt/module.php:375 ../modules/tp-meta/module.php:264
|
2306 |
-
#: ../modules/tp-meta/module.php:383 ../modules/tp-meta/module.php:442
|
2307 |
-
#: ../modules/tp-title/module.php:154 ../modules/tp-title/module.php:292
|
2308 |
-
#: ../modules/tp-title/module.php:375 ../modules/widgets/module.php:351
|
2309 |
-
#: ../modules/widgets/module.php:441 ../modules/woocommerce/module.php:605
|
2310 |
-
#: ../modules/woocommerce/module.php:978
|
2311 |
-
#: ../modules/woocommerce/module.php:1109
|
2312 |
-
#: ../modules/woocommerce/module.php:1247
|
2313 |
-
msgid "Font Size"
|
2314 |
-
msgstr ""
|
2315 |
-
|
2316 |
-
#: ../modules/accordion/module.php:339 ../modules/accordion/module.php:480
|
2317 |
-
#: ../modules/blog/module.php:894 ../modules/blog/module.php:1035
|
2318 |
-
#: ../modules/blog/module.php:1203 ../modules/blog/module.php:1405
|
2319 |
-
#: ../modules/button/module.php:244 ../modules/downloads/module.php:782
|
2320 |
-
#: ../modules/downloads/module.php:882 ../modules/downloads/module.php:992
|
2321 |
-
#: ../modules/downloads/module.php:1194 ../modules/downloads/module.php:1303
|
2322 |
-
#: ../modules/galleries/module.php:1080 ../modules/galleries/module.php:1204
|
2323 |
-
#: ../modules/html/module.php:195 ../modules/html/module.php:290
|
2324 |
-
#: ../modules/html/module.php:397 ../modules/html/module.php:504
|
2325 |
-
#: ../modules/html/module.php:611 ../modules/html/module.php:718
|
2326 |
-
#: ../modules/html/module.php:825 ../modules/image/module.php:309
|
2327 |
-
#: ../modules/infobox/module.php:525 ../modules/infobox/module.php:604
|
2328 |
-
#: ../modules/infobox/module.php:790 ../modules/notification/module.php:166
|
2329 |
-
#: ../modules/partners/module.php:772 ../modules/partners/module.php:868
|
2330 |
-
#: ../modules/posts/module.php:894 ../modules/posts/module.php:1035
|
2331 |
-
#: ../modules/posts/module.php:1155 ../modules/posts/module.php:1357
|
2332 |
-
#: ../modules/progress-bars/module.php:219 ../modules/projects/module.php:778
|
2333 |
-
#: ../modules/projects/module.php:856 ../modules/projects/module.php:1000
|
2334 |
-
#: ../modules/projects/module.php:1184 ../modules/staff/module.php:966
|
2335 |
-
#: ../modules/staff/module.php:1096 ../modules/staff/module.php:1192
|
2336 |
-
#: ../modules/tabs/module.php:154 ../modules/tabs/module.php:415
|
2337 |
-
#: ../modules/testimonials/module.php:490
|
2338 |
-
#: ../modules/testimonials/module.php:828
|
2339 |
-
#: ../modules/testimonials/module.php:906
|
2340 |
-
#: ../modules/text-simple/module.php:195 ../modules/text-simple/module.php:389
|
2341 |
-
#: ../modules/text-simple/module.php:607 ../modules/text-simple/module.php:825
|
2342 |
-
#: ../modules/text-simple/module.php:1043
|
2343 |
-
#: ../modules/text-simple/module.php:1261
|
2344 |
-
#: ../modules/text-simple/module.php:1479
|
2345 |
-
#: ../modules/text-simple/module.php:1637
|
2346 |
-
#: ../modules/text-simple/module.php:2014
|
2347 |
-
#: ../modules/tp-comments-form/module.php:179
|
2348 |
-
#: ../modules/tp-comments-form/module.php:332
|
2349 |
-
#: ../modules/tp-comments-form/module.php:542
|
2350 |
-
#: ../modules/tp-comments/module.php:529 ../modules/tp-comments/module.php:583
|
2351 |
-
#: ../modules/tp-comments/module.php:637 ../modules/tp-comments/module.php:777
|
2352 |
-
#: ../modules/tp-content/module.php:187 ../modules/tp-content/module.php:282
|
2353 |
-
#: ../modules/tp-content/module.php:389 ../modules/tp-content/module.php:484
|
2354 |
-
#: ../modules/tp-content/module.php:579 ../modules/tp-content/module.php:674
|
2355 |
-
#: ../modules/tp-content/module.php:769
|
2356 |
-
#: ../modules/tp-downloads-button/module.php:183
|
2357 |
-
#: ../modules/tp-excerpt/module.php:166 ../modules/tp-meta/module.php:276
|
2358 |
-
#: ../modules/tp-title/module.php:166 ../modules/widgets/module.php:363
|
2359 |
-
#: ../modules/widgets/module.php:453 ../modules/woocommerce/module.php:617
|
2360 |
-
#: ../modules/woocommerce/module.php:990
|
2361 |
-
#: ../modules/woocommerce/module.php:1121
|
2362 |
-
#: ../modules/woocommerce/module.php:1259
|
2363 |
-
msgid "Font Weight"
|
2364 |
-
msgstr ""
|
2365 |
-
|
2366 |
-
#: ../modules/accordion/module.php:354 ../modules/accordion/module.php:495
|
2367 |
-
#: ../modules/blog/module.php:909 ../modules/blog/module.php:1024
|
2368 |
-
#: ../modules/blog/module.php:1218 ../modules/blog/module.php:1420
|
2369 |
-
#: ../modules/button/module.php:259 ../modules/downloads/module.php:797
|
2370 |
-
#: ../modules/downloads/module.php:859 ../modules/downloads/module.php:1007
|
2371 |
-
#: ../modules/downloads/module.php:1209 ../modules/downloads/module.php:1318
|
2372 |
-
#: ../modules/galleries/module.php:1095 ../modules/galleries/module.php:1219
|
2373 |
-
#: ../modules/html/module.php:210 ../modules/html/module.php:305
|
2374 |
-
#: ../modules/html/module.php:412 ../modules/html/module.php:519
|
2375 |
-
#: ../modules/html/module.php:626 ../modules/html/module.php:733
|
2376 |
-
#: ../modules/html/module.php:840 ../modules/image/module.php:324
|
2377 |
-
#: ../modules/infobox/module.php:540 ../modules/infobox/module.php:619
|
2378 |
-
#: ../modules/infobox/module.php:805 ../modules/notification/module.php:193
|
2379 |
-
#: ../modules/partners/module.php:787 ../modules/partners/module.php:883
|
2380 |
-
#: ../modules/posts/module.php:909 ../modules/posts/module.php:1024
|
2381 |
-
#: ../modules/posts/module.php:1170 ../modules/posts/module.php:1372
|
2382 |
-
#: ../modules/progress-bars/module.php:234 ../modules/projects/module.php:793
|
2383 |
-
#: ../modules/projects/module.php:871 ../modules/projects/module.php:1015
|
2384 |
-
#: ../modules/projects/module.php:1199 ../modules/staff/module.php:981
|
2385 |
-
#: ../modules/staff/module.php:1111 ../modules/staff/module.php:1207
|
2386 |
-
#: ../modules/tabs/module.php:169 ../modules/tabs/module.php:429
|
2387 |
-
#: ../modules/testimonials/module.php:505
|
2388 |
-
#: ../modules/testimonials/module.php:843
|
2389 |
-
#: ../modules/testimonials/module.php:921
|
2390 |
-
#: ../modules/text-simple/module.php:210 ../modules/text-simple/module.php:404
|
2391 |
-
#: ../modules/text-simple/module.php:622 ../modules/text-simple/module.php:840
|
2392 |
-
#: ../modules/text-simple/module.php:1058
|
2393 |
-
#: ../modules/text-simple/module.php:1276
|
2394 |
-
#: ../modules/text-simple/module.php:1494
|
2395 |
-
#: ../modules/text-simple/module.php:1652
|
2396 |
-
#: ../modules/text-simple/module.php:2029
|
2397 |
-
#: ../modules/tp-comments-form/module.php:194
|
2398 |
-
#: ../modules/tp-comments-form/module.php:347
|
2399 |
-
#: ../modules/tp-comments-form/module.php:557
|
2400 |
-
#: ../modules/tp-comments/module.php:544 ../modules/tp-comments/module.php:598
|
2401 |
-
#: ../modules/tp-comments/module.php:652 ../modules/tp-comments/module.php:792
|
2402 |
-
#: ../modules/tp-content/module.php:202 ../modules/tp-content/module.php:297
|
2403 |
-
#: ../modules/tp-content/module.php:404 ../modules/tp-content/module.php:499
|
2404 |
-
#: ../modules/tp-content/module.php:594 ../modules/tp-content/module.php:689
|
2405 |
-
#: ../modules/tp-content/module.php:784
|
2406 |
-
#: ../modules/tp-downloads-button/module.php:198
|
2407 |
-
#: ../modules/tp-excerpt/module.php:181 ../modules/tp-meta/module.php:291
|
2408 |
-
#: ../modules/tp-title/module.php:181 ../modules/widgets/module.php:378
|
2409 |
-
#: ../modules/widgets/module.php:468 ../modules/woocommerce/module.php:632
|
2410 |
-
#: ../modules/woocommerce/module.php:1005
|
2411 |
-
#: ../modules/woocommerce/module.php:1136
|
2412 |
-
#: ../modules/woocommerce/module.php:1274
|
2413 |
-
msgid "Font Family"
|
2414 |
-
msgstr ""
|
2415 |
-
|
2416 |
-
#: ../modules/accordion/module.php:402 ../modules/accordion/module.php:413
|
2417 |
-
#: ../modules/accordion/module.php:425 ../modules/accordion/module.php:454
|
2418 |
-
#: ../modules/accordion/module.php:465 ../modules/accordion/module.php:476
|
2419 |
-
#: ../modules/accordion/module.php:488 ../modules/accordion/module.php:503
|
2420 |
-
#: ../modules/accordion/module.php:514 ../modules/accordion/module.php:527
|
2421 |
-
#: ../modules/accordion/module.php:539 ../modules/widgets/module.php:438
|
2422 |
-
#: ../modules/widgets/module.php:449 ../modules/widgets/module.php:461
|
2423 |
-
#: ../modules/widgets/module.php:476 ../modules/widgets/module.php:487
|
2424 |
-
#: ../modules/widgets/module.php:499 ../modules/widgets/module.php:510
|
2425 |
-
#: ../modules/widgets/module.php:521
|
2426 |
-
msgid "content"
|
2427 |
-
msgstr ""
|
2428 |
-
|
2429 |
-
#: ../modules/accordion/module.php:506 ../modules/blog/module.php:920
|
2430 |
-
#: ../modules/blog/module.php:1050 ../modules/blog/module.php:1229
|
2431 |
-
#: ../modules/downloads/module.php:808 ../modules/downloads/module.php:1018
|
2432 |
-
#: ../modules/galleries/module.php:1106 ../modules/galleries/module.php:1230
|
2433 |
-
#: ../modules/html/module.php:221 ../modules/html/module.php:316
|
2434 |
-
#: ../modules/html/module.php:423 ../modules/html/module.php:530
|
2435 |
-
#: ../modules/html/module.php:637 ../modules/html/module.php:744
|
2436 |
-
#: ../modules/html/module.php:851 ../modules/html/module.php:1002
|
2437 |
-
#: ../modules/html/module.php:1267 ../modules/image/module.php:335
|
2438 |
-
#: ../modules/infobox/module.php:551 ../modules/infobox/module.php:630
|
2439 |
-
#: ../modules/notification/module.php:181
|
2440 |
-
#: ../modules/notification/module.php:450
|
2441 |
-
#: ../modules/notification/module.php:557 ../modules/partners/module.php:798
|
2442 |
-
#: ../modules/partners/module.php:894 ../modules/posts/module.php:920
|
2443 |
-
#: ../modules/posts/module.php:1181 ../modules/projects/module.php:804
|
2444 |
-
#: ../modules/projects/module.php:882 ../modules/projects/module.php:1026
|
2445 |
-
#: ../modules/staff/module.php:992 ../modules/staff/module.php:1218
|
2446 |
-
#: ../modules/tabs/module.php:439 ../modules/tabs/module.php:518
|
2447 |
-
#: ../modules/tabs/module.php:663 ../modules/testimonials/module.php:516
|
2448 |
-
#: ../modules/text-simple/module.php:221 ../modules/text-simple/module.php:415
|
2449 |
-
#: ../modules/text-simple/module.php:633 ../modules/text-simple/module.php:851
|
2450 |
-
#: ../modules/text-simple/module.php:1069
|
2451 |
-
#: ../modules/text-simple/module.php:1287
|
2452 |
-
#: ../modules/text-simple/module.php:1505
|
2453 |
-
#: ../modules/text-simple/module.php:1663
|
2454 |
-
#: ../modules/text-simple/module.php:2040
|
2455 |
-
#: ../modules/text-simple/module.php:2159
|
2456 |
-
#: ../modules/text-simple/module.php:2460
|
2457 |
-
#: ../modules/tp-comments-form/module.php:205
|
2458 |
-
#: ../modules/tp-comments-form/module.php:358
|
2459 |
-
#: ../modules/tp-comments/module.php:803 ../modules/tp-content/module.php:213
|
2460 |
-
#: ../modules/tp-content/module.php:308 ../modules/tp-content/module.php:415
|
2461 |
-
#: ../modules/tp-content/module.php:510 ../modules/tp-content/module.php:605
|
2462 |
-
#: ../modules/tp-content/module.php:700 ../modules/tp-content/module.php:795
|
2463 |
-
#: ../modules/tp-content/module.php:934 ../modules/tp-content/module.php:1137
|
2464 |
-
#: ../modules/tp-excerpt/module.php:192 ../modules/tp-excerpt/module.php:304
|
2465 |
-
#: ../modules/tp-excerpt/module.php:387 ../modules/tp-meta/module.php:302
|
2466 |
-
#: ../modules/tp-title/module.php:192 ../modules/tp-title/module.php:304
|
2467 |
-
#: ../modules/tp-title/module.php:387 ../modules/widgets/module.php:389
|
2468 |
-
#: ../modules/widgets/module.php:479 ../modules/woocommerce/module.php:1016
|
2469 |
-
#: ../modules/woocommerce/module.php:1147
|
2470 |
-
msgid "Line Height"
|
2471 |
-
msgstr ""
|
2472 |
-
|
2473 |
-
#: ../modules/accordion/module.php:547 ../modules/accordion/module.php:726
|
2474 |
-
#: ../modules/blog/module.php:1502 ../modules/blog/module.php:1791
|
2475 |
-
#: ../modules/button/module.php:340 ../modules/button/module.php:448
|
2476 |
-
#: ../modules/downloads/module.php:1334 ../modules/downloads/module.php:1599
|
2477 |
-
#: ../modules/galleries/module.php:1255 ../modules/galleries/module.php:1495
|
2478 |
-
#: ../modules/html/module.php:936 ../modules/html/module.php:1201
|
2479 |
-
#: ../modules/image/module.php:364 ../modules/image/module.php:459
|
2480 |
-
#: ../modules/infobox/module.php:947 ../modules/infobox/module.php:1218
|
2481 |
-
#: ../modules/notification/module.php:384
|
2482 |
-
#: ../modules/notification/module.php:491 ../modules/partners/module.php:919
|
2483 |
-
#: ../modules/partners/module.php:1064 ../modules/posts/module.php:1454
|
2484 |
-
#: ../modules/posts/module.php:1743 ../modules/progress-bars/module.php:443
|
2485 |
-
#: ../modules/progress-bars/module.php:598 ../modules/projects/module.php:1270
|
2486 |
-
#: ../modules/projects/module.php:1535 ../modules/separator/module.php:90
|
2487 |
-
#: ../modules/separator/module.php:127 ../modules/social/module.php:282
|
2488 |
-
#: ../modules/social/module.php:353 ../modules/staff/module.php:1243
|
2489 |
-
#: ../modules/staff/module.php:1496 ../modules/tabs/module.php:488
|
2490 |
-
#: ../modules/tabs/module.php:633 ../modules/testimonials/module.php:937
|
2491 |
-
#: ../modules/testimonials/module.php:1206
|
2492 |
-
#: ../modules/text-simple/module.php:2093
|
2493 |
-
#: ../modules/text-simple/module.php:2394
|
2494 |
-
#: ../modules/tp-comments-form/module.php:597
|
2495 |
-
#: ../modules/tp-comments-form/module.php:788
|
2496 |
-
#: ../modules/tp-comments/module.php:844
|
2497 |
-
#: ../modules/tp-comments/module.php:1107 ../modules/tp-content/module.php:868
|
2498 |
-
#: ../modules/tp-content/module.php:1071
|
2499 |
-
#: ../modules/tp-downloads-button/module.php:250
|
2500 |
-
#: ../modules/tp-downloads-button/module.php:321
|
2501 |
-
#: ../modules/tp-excerpt/module.php:238 ../modules/tp-excerpt/module.php:321
|
2502 |
-
#: ../modules/tp-gallery-slider/module.php:499
|
2503 |
-
#: ../modules/tp-gallery-slider/module.php:642
|
2504 |
-
#: ../modules/tp-meta/module.php:341 ../modules/tp-meta/module.php:400
|
2505 |
-
#: ../modules/tp-staff-social/module.php:193
|
2506 |
-
#: ../modules/tp-staff-social/module.php:264
|
2507 |
-
#: ../modules/tp-thumbnail/module.php:202
|
2508 |
-
#: ../modules/tp-thumbnail/module.php:249 ../modules/tp-title/module.php:238
|
2509 |
-
#: ../modules/tp-title/module.php:321 ../modules/widgets/module.php:736
|
2510 |
-
#: ../modules/widgets/module.php:892 ../modules/woocommerce/module.php:1458
|
2511 |
-
#: ../modules/woocommerce/module.php:1735
|
2512 |
-
msgid "Responsive"
|
2513 |
-
msgstr ""
|
2514 |
-
|
2515 |
-
#: ../modules/accordion/module.php:601 ../modules/accordion/module.php:780
|
2516 |
-
msgid "Header - Margin Bottom"
|
2517 |
-
msgstr ""
|
2518 |
-
|
2519 |
-
#: ../modules/accordion/module.php:613 ../modules/accordion/module.php:792
|
2520 |
-
msgid "Header - Padding Vertical"
|
2521 |
-
msgstr ""
|
2522 |
-
|
2523 |
-
#: ../modules/accordion/module.php:625 ../modules/accordion/module.php:804
|
2524 |
-
msgid "Header - Padding Horizontal"
|
2525 |
-
msgstr ""
|
2526 |
-
|
2527 |
-
#: ../modules/accordion/module.php:637 ../modules/accordion/module.php:816
|
2528 |
-
#: ../modules/blog/module.php:1618 ../modules/blog/module.php:1907
|
2529 |
-
#: ../modules/downloads/module.php:1438 ../modules/downloads/module.php:1703
|
2530 |
-
#: ../modules/galleries/module.php:1419 ../modules/galleries/module.php:1659
|
2531 |
-
#: ../modules/infobox/module.php:1069 ../modules/infobox/module.php:1340
|
2532 |
-
#: ../modules/partners/module.php:999 ../modules/partners/module.php:1144
|
2533 |
-
#: ../modules/posts/module.php:1570 ../modules/posts/module.php:1859
|
2534 |
-
#: ../modules/progress-bars/module.php:497
|
2535 |
-
#: ../modules/progress-bars/module.php:652 ../modules/projects/module.php:1374
|
2536 |
-
#: ../modules/projects/module.php:1639 ../modules/staff/module.php:1395
|
2537 |
-
#: ../modules/staff/module.php:1648 ../modules/widgets/module.php:814
|
2538 |
-
#: ../modules/widgets/module.php:970 ../modules/woocommerce/module.php:1586
|
2539 |
-
#: ../modules/woocommerce/module.php:1863
|
2540 |
-
msgid "Title - Font Size"
|
2541 |
-
msgstr ""
|
2542 |
-
|
2543 |
-
#: ../modules/accordion/module.php:649 ../modules/accordion/module.php:828
|
2544 |
-
#: ../modules/progress-bars/module.php:533
|
2545 |
-
#: ../modules/progress-bars/module.php:688
|
2546 |
-
msgid "Title - Padding Vertical"
|
2547 |
-
msgstr ""
|
2548 |
-
|
2549 |
-
#: ../modules/accordion/module.php:661 ../modules/accordion/module.php:840
|
2550 |
-
#: ../modules/progress-bars/module.php:521
|
2551 |
-
#: ../modules/progress-bars/module.php:676
|
2552 |
-
msgid "Title - Padding Horizontal"
|
2553 |
-
msgstr ""
|
2554 |
-
|
2555 |
-
#: ../modules/accordion/module.php:673 ../modules/accordion/module.php:852
|
2556 |
-
#: ../modules/infobox/module.php:1105 ../modules/infobox/module.php:1376
|
2557 |
-
#: ../modules/widgets/module.php:862 ../modules/widgets/module.php:1018
|
2558 |
-
msgid "Content - Font Size"
|
2559 |
-
msgstr ""
|
2560 |
-
|
2561 |
-
#: ../modules/accordion/module.php:685 ../modules/accordion/module.php:864
|
2562 |
-
#: ../modules/infobox/module.php:1117 ../modules/infobox/module.php:1388
|
2563 |
-
#: ../modules/widgets/module.php:874 ../modules/widgets/module.php:1030
|
2564 |
-
msgid "Content - Line Height"
|
2565 |
-
msgstr ""
|
2566 |
-
|
2567 |
-
#: ../modules/accordion/module.php:697 ../modules/accordion/module.php:876
|
2568 |
-
msgid "Content - Padding Vertical"
|
2569 |
-
msgstr ""
|
2570 |
-
|
2571 |
-
#: ../modules/accordion/module.php:709 ../modules/accordion/module.php:888
|
2572 |
-
msgid "Content - Padding Horizontal"
|
2573 |
-
msgstr ""
|
2574 |
-
|
2575 |
-
#: ../modules/accordion/module.php:953 ../modules/accordion/module.php:982
|
2576 |
-
#: ../modules/infobox/module.php:1558 ../modules/notification/module.php:622
|
2577 |
-
#: ../modules/tabs/module.php:848 ../modules/tabs/module.php:862
|
2578 |
-
#: ../modules/text-simple/module.php:2718
|
2579 |
-
msgid "Edit Content"
|
2580 |
-
msgstr ""
|
2581 |
-
|
2582 |
-
#: ../modules/accordion/module.php:966 ../modules/progress-bars/module.php:26
|
2583 |
-
msgid "CLICK TO EDIT"
|
2584 |
-
msgstr ""
|
2585 |
-
|
2586 |
-
#: ../modules/blog/module.php:13
|
2587 |
-
msgid "Blog"
|
2588 |
-
msgstr ""
|
2589 |
-
|
2590 |
-
#: ../modules/blog/module.php:42 ../modules/downloads/module.php:42
|
2591 |
-
#: ../modules/galleries/module.php:42 ../modules/partners/module.php:42
|
2592 |
-
#: ../modules/posts/module.php:49 ../modules/projects/module.php:42
|
2593 |
-
#: ../modules/staff/module.php:58 ../modules/testimonials/module.php:42
|
2594 |
-
#: ../modules/woocommerce/module.php:41
|
2595 |
-
msgid "Grid"
|
2596 |
-
msgstr ""
|
2597 |
-
|
2598 |
-
#: ../modules/blog/module.php:46 ../modules/downloads/module.php:46
|
2599 |
-
#: ../modules/galleries/module.php:46 ../modules/partners/module.php:46
|
2600 |
-
#: ../modules/posts/module.php:53 ../modules/projects/module.php:46
|
2601 |
-
#: ../modules/staff/module.php:62 ../modules/testimonials/module.php:46
|
2602 |
-
#: ../modules/woocommerce/module.php:45
|
2603 |
-
msgid "Masonry Grid"
|
2604 |
-
msgstr ""
|
2605 |
-
|
2606 |
-
#: ../modules/blog/module.php:50 ../modules/downloads/module.php:50
|
2607 |
-
#: ../modules/galleries/module.php:50 ../modules/partners/module.php:50
|
2608 |
-
#: ../modules/posts/module.php:57 ../modules/projects/module.php:50
|
2609 |
-
#: ../modules/staff/module.php:66 ../modules/testimonials/module.php:50
|
2610 |
-
#: ../modules/woocommerce/module.php:49
|
2611 |
-
msgid "Carousel"
|
2612 |
-
msgstr ""
|
2613 |
-
|
2614 |
-
#: ../modules/blog/module.php:56 ../modules/downloads/module.php:56
|
2615 |
-
#: ../modules/galleries/module.php:56 ../modules/partners/module.php:56
|
2616 |
-
#: ../modules/posts/module.php:63 ../modules/projects/module.php:56
|
2617 |
-
#: ../modules/woocommerce/module.php:55
|
2618 |
-
msgid "Orientation"
|
2619 |
-
msgstr ""
|
2620 |
-
|
2621 |
-
#: ../modules/blog/module.php:62 ../modules/downloads/module.php:62
|
2622 |
-
#: ../modules/galleries/module.php:62 ../modules/partners/module.php:62
|
2623 |
-
#: ../modules/posts/module.php:69 ../modules/projects/module.php:62
|
2624 |
-
#: ../modules/tp-meta/module.php:63 ../modules/woocommerce/module.php:61
|
2625 |
-
msgid "Vertical"
|
2626 |
-
msgstr ""
|
2627 |
-
|
2628 |
-
#: ../modules/blog/module.php:66 ../modules/downloads/module.php:66
|
2629 |
-
#: ../modules/galleries/module.php:66 ../modules/partners/module.php:66
|
2630 |
-
#: ../modules/posts/module.php:73 ../modules/projects/module.php:66
|
2631 |
-
#: ../modules/tp-meta/module.php:59 ../modules/woocommerce/module.php:65
|
2632 |
-
msgid "Horizontal"
|
2633 |
-
msgstr ""
|
2634 |
-
|
2635 |
-
#: ../modules/blog/module.php:72 ../modules/downloads/module.php:72
|
2636 |
-
#: ../modules/galleries/module.php:72 ../modules/partners/module.php:72
|
2637 |
-
#: ../modules/posts/module.php:79 ../modules/projects/module.php:72
|
2638 |
-
#: ../modules/staff/module.php:72 ../modules/testimonials/module.php:56
|
2639 |
-
#: ../modules/woocommerce/module.php:71
|
2640 |
-
msgid "Posts Per Page"
|
2641 |
-
msgstr ""
|
2642 |
-
|
2643 |
-
#: ../modules/blog/module.php:78 ../modules/downloads/module.php:78
|
2644 |
-
#: ../modules/galleries/module.php:78 ../modules/partners/module.php:78
|
2645 |
-
#: ../modules/posts/module.php:85 ../modules/projects/module.php:78
|
2646 |
-
#: ../modules/staff/module.php:78 ../modules/testimonials/module.php:62
|
2647 |
-
#: ../modules/woocommerce/module.php:77
|
2648 |
-
msgid "Pagination"
|
2649 |
-
msgstr ""
|
2650 |
-
|
2651 |
-
#: ../modules/blog/module.php:88 ../modules/downloads/module.php:88
|
2652 |
-
#: ../modules/galleries/module.php:88 ../modules/partners/module.php:88
|
2653 |
-
#: ../modules/posts/module.php:95 ../modules/projects/module.php:88
|
2654 |
-
#: ../modules/staff/module.php:88 ../modules/testimonials/module.php:72
|
2655 |
-
#: ../modules/woocommerce/module.php:87
|
2656 |
-
msgid "Numbered"
|
2657 |
-
msgstr ""
|
2658 |
-
|
2659 |
-
#: ../modules/blog/module.php:92 ../modules/downloads/module.php:92
|
2660 |
-
#: ../modules/galleries/module.php:92 ../modules/partners/module.php:92
|
2661 |
-
#: ../modules/posts/module.php:99 ../modules/projects/module.php:92
|
2662 |
-
#: ../modules/staff/module.php:92 ../modules/testimonials/module.php:76
|
2663 |
-
#: ../modules/woocommerce/module.php:91
|
2664 |
-
msgid "Prev/Next"
|
2665 |
-
msgstr ""
|
2666 |
-
|
2667 |
-
#: ../modules/blog/module.php:98 ../modules/galleries/module.php:98
|
2668 |
-
#: ../modules/partners/module.php:98 ../modules/posts/module.php:105
|
2669 |
-
#: ../modules/projects/module.php:98 ../modules/testimonials/module.php:82
|
2670 |
-
msgid "Posts Per Row"
|
2671 |
-
msgstr ""
|
2672 |
-
|
2673 |
-
#: ../modules/blog/module.php:105 ../modules/downloads/module.php:98
|
2674 |
-
#: ../modules/galleries/module.php:105 ../modules/partners/module.php:105
|
2675 |
-
#: ../modules/projects/module.php:105 ../modules/projects/module.php:211
|
2676 |
-
#: ../modules/projects/module.php:841 ../modules/projects/module.php:852
|
2677 |
-
#: ../modules/projects/module.php:864 ../modules/projects/module.php:879
|
2678 |
-
#: ../modules/projects/module.php:890 ../modules/projects/module.php:903
|
2679 |
-
#: ../modules/staff/module.php:105 ../modules/testimonials/module.php:89
|
2680 |
-
#: ../modules/woocommerce/module.php:104
|
2681 |
-
msgid "Categories"
|
2682 |
-
msgstr ""
|
2683 |
-
|
2684 |
-
#: ../modules/blog/module.php:112 ../modules/downloads/module.php:112
|
2685 |
-
#: ../modules/galleries/module.php:112 ../modules/partners/module.php:112
|
2686 |
-
#: ../modules/posts/module.php:112 ../modules/projects/module.php:112
|
2687 |
-
#: ../modules/staff/module.php:112 ../modules/testimonials/module.php:96
|
2688 |
-
#: ../modules/woocommerce/module.php:111
|
2689 |
-
msgid "Order By"
|
2690 |
-
msgstr ""
|
2691 |
-
|
2692 |
-
#: ../modules/blog/module.php:118 ../modules/downloads/module.php:118
|
2693 |
-
#: ../modules/galleries/module.php:118 ../modules/partners/module.php:118
|
2694 |
-
#: ../modules/posts/module.php:118 ../modules/projects/module.php:118
|
2695 |
-
#: ../modules/staff/module.php:118 ../modules/testimonials/module.php:102
|
2696 |
-
#: ../modules/woocommerce/module.php:117
|
2697 |
-
msgid "Publish Date"
|
2698 |
-
msgstr ""
|
2699 |
-
|
2700 |
-
#: ../modules/blog/module.php:122 ../modules/downloads/module.php:122
|
2701 |
-
#: ../modules/galleries/module.php:122 ../modules/partners/module.php:122
|
2702 |
-
#: ../modules/posts/module.php:122 ../modules/projects/module.php:122
|
2703 |
-
#: ../modules/staff/module.php:122 ../modules/testimonials/module.php:106
|
2704 |
-
#: ../modules/woocommerce/module.php:121
|
2705 |
-
msgid "Modified Date"
|
2706 |
-
msgstr ""
|
2707 |
-
|
2708 |
-
#: ../modules/blog/module.php:126 ../modules/downloads/module.php:126
|
2709 |
-
#: ../modules/galleries/module.php:126 ../modules/partners/module.php:126
|
2710 |
-
#: ../modules/posts/module.php:126 ../modules/projects/module.php:126
|
2711 |
-
#: ../modules/staff/module.php:126 ../modules/testimonials/module.php:110
|
2712 |
-
#: ../modules/woocommerce/module.php:125
|
2713 |
-
msgid "Random"
|
2714 |
-
msgstr ""
|
2715 |
-
|
2716 |
-
#: ../modules/blog/module.php:130 ../modules/downloads/module.php:130
|
2717 |
-
#: ../modules/galleries/module.php:130 ../modules/partners/module.php:130
|
2718 |
-
#: ../modules/posts/module.php:130 ../modules/projects/module.php:130
|
2719 |
-
#: ../modules/staff/module.php:130 ../modules/testimonials/module.php:114
|
2720 |
-
#: ../modules/woocommerce/module.php:129
|
2721 |
-
msgid "Alphabetic"
|
2722 |
-
msgstr ""
|
2723 |
-
|
2724 |
-
#: ../modules/blog/module.php:134 ../modules/downloads/module.php:134
|
2725 |
-
#: ../modules/galleries/module.php:134 ../modules/partners/module.php:134
|
2726 |
-
#: ../modules/posts/module.php:134 ../modules/projects/module.php:134
|
2727 |
-
#: ../modules/staff/module.php:134 ../modules/testimonials/module.php:118
|
2728 |
-
#: ../modules/woocommerce/module.php:133
|
2729 |
-
msgid "Comment Count"
|
2730 |
-
msgstr ""
|
2731 |
-
|
2732 |
-
#: ../modules/blog/module.php:140 ../modules/downloads/module.php:140
|
2733 |
-
#: ../modules/galleries/module.php:140 ../modules/partners/module.php:140
|
2734 |
-
#: ../modules/posts/module.php:140 ../modules/projects/module.php:140
|
2735 |
-
#: ../modules/staff/module.php:140 ../modules/testimonials/module.php:124
|
2736 |
-
#: ../modules/woocommerce/module.php:143
|
2737 |
-
msgid "Order"
|
2738 |
-
msgstr ""
|
2739 |
-
|
2740 |
-
#: ../modules/blog/module.php:146 ../modules/downloads/module.php:146
|
2741 |
-
#: ../modules/galleries/module.php:146 ../modules/partners/module.php:146
|
2742 |
-
#: ../modules/posts/module.php:146 ../modules/projects/module.php:146
|
2743 |
-
#: ../modules/staff/module.php:146 ../modules/testimonials/module.php:130
|
2744 |
-
#: ../modules/woocommerce/module.php:149
|
2745 |
-
msgid "Ascending"
|
2746 |
-
msgstr ""
|
2747 |
-
|
2748 |
-
#: ../modules/blog/module.php:150 ../modules/downloads/module.php:150
|
2749 |
-
#: ../modules/galleries/module.php:150 ../modules/partners/module.php:150
|
2750 |
-
#: ../modules/posts/module.php:150 ../modules/projects/module.php:150
|
2751 |
-
#: ../modules/staff/module.php:150 ../modules/testimonials/module.php:134
|
2752 |
-
#: ../modules/woocommerce/module.php:153
|
2753 |
-
msgid "Descending"
|
2754 |
-
msgstr ""
|
2755 |
-
|
2756 |
-
#: ../modules/blog/module.php:156 ../modules/downloads/module.php:156
|
2757 |
-
#: ../modules/galleries/module.php:156 ../modules/partners/module.php:156
|
2758 |
-
#: ../modules/posts/module.php:156 ../modules/projects/module.php:156
|
2759 |
-
#: ../modules/staff/module.php:156 ../modules/testimonials/module.php:140
|
2760 |
-
#: ../modules/woocommerce/module.php:159
|
2761 |
-
msgid "Offset"
|
2762 |
-
msgstr ""
|
2763 |
-
|
2764 |
-
#: ../modules/blog/module.php:162 ../modules/downloads/module.php:162
|
2765 |
-
#: ../modules/galleries/module.php:162 ../modules/partners/module.php:162
|
2766 |
-
#: ../modules/posts/module.php:162 ../modules/projects/module.php:162
|
2767 |
-
#: ../modules/staff/module.php:162 ../modules/testimonials/module.php:146
|
2768 |
-
#: ../modules/woocommerce/module.php:165
|
2769 |
-
msgid "Include (IDs)"
|
2770 |
-
msgstr ""
|
2771 |
-
|
2772 |
-
#: ../modules/blog/module.php:168 ../modules/downloads/module.php:168
|
2773 |
-
#: ../modules/galleries/module.php:168 ../modules/partners/module.php:168
|
2774 |
-
#: ../modules/posts/module.php:168 ../modules/projects/module.php:168
|
2775 |
-
#: ../modules/staff/module.php:168 ../modules/testimonials/module.php:152
|
2776 |
-
#: ../modules/woocommerce/module.php:171
|
2777 |
-
msgid "Exclude (IDs)"
|
2778 |
-
msgstr ""
|
2779 |
-
|
2780 |
-
#: ../modules/blog/module.php:177 ../modules/downloads/module.php:179
|
2781 |
-
#: ../modules/galleries/module.php:215 ../modules/infobox/module.php:51
|
2782 |
-
#: ../modules/partners/module.php:179 ../modules/posts/module.php:177
|
2783 |
-
#: ../modules/projects/module.php:179 ../modules/staff/module.php:196
|
2784 |
-
#: ../modules/testimonials/module.php:163 ../modules/tp-meta/module.php:24
|
2785 |
-
#: ../modules/woocommerce/module.php:182
|
2786 |
-
msgid "Elements"
|
2787 |
-
msgstr ""
|
2788 |
-
|
2789 |
-
#: ../modules/blog/module.php:183 ../modules/downloads/module.php:185
|
2790 |
-
#: ../modules/galleries/module.php:221 ../modules/partners/module.php:185
|
2791 |
-
#: ../modules/posts/module.php:183 ../modules/projects/module.php:185
|
2792 |
-
#: ../modules/staff/module.php:202 ../modules/testimonials/module.php:169
|
2793 |
-
#: ../modules/woocommerce/module.php:188
|
2794 |
-
msgid "Heading"
|
2795 |
-
msgstr ""
|
2796 |
-
|
2797 |
-
#: ../modules/blog/module.php:187 ../modules/downloads/module.php:189
|
2798 |
-
#: ../modules/galleries/module.php:225 ../modules/partners/module.php:189
|
2799 |
-
#: ../modules/posts/module.php:187 ../modules/projects/module.php:189
|
2800 |
-
#: ../modules/staff/module.php:206 ../modules/testimonials/module.php:173
|
2801 |
-
#: ../modules/woocommerce/module.php:192
|
2802 |
-
msgid "Filters"
|
2803 |
-
msgstr ""
|
2804 |
-
|
2805 |
-
#: ../modules/blog/module.php:195 ../modules/downloads/module.php:197
|
2806 |
-
#: ../modules/galleries/module.php:233 ../modules/partners/module.php:197
|
2807 |
-
#: ../modules/posts/module.php:195 ../modules/projects/module.php:197
|
2808 |
-
#: ../modules/staff/module.php:214 ../modules/testimonials/module.php:181
|
2809 |
-
#: ../modules/woocommerce/module.php:200
|
2810 |
-
msgid "Post Elements"
|
2811 |
-
msgstr ""
|
2812 |
-
|
2813 |
-
#: ../modules/blog/module.php:201 ../modules/blog/module.php:451
|
2814 |
-
#: ../modules/blog/module.php:462 ../modules/blog/module.php:474
|
2815 |
-
#: ../modules/blog/module.php:503 ../modules/blog/module.php:514
|
2816 |
-
#: ../modules/blog/module.php:526 ../modules/blog/module.php:538
|
2817 |
-
#: ../modules/blog/module.php:550 ../modules/blog/module.php:563
|
2818 |
-
#: ../modules/blog/module.php:575 ../modules/blog/module.php:611
|
2819 |
-
#: ../modules/downloads/module.php:203 ../modules/downloads/module.php:349
|
2820 |
-
#: ../modules/downloads/module.php:360 ../modules/downloads/module.php:372
|
2821 |
-
#: ../modules/downloads/module.php:401 ../modules/downloads/module.php:412
|
2822 |
-
#: ../modules/downloads/module.php:424 ../modules/downloads/module.php:437
|
2823 |
-
#: ../modules/downloads/module.php:449 ../modules/downloads/module.php:461
|
2824 |
-
#: ../modules/downloads/module.php:497 ../modules/galleries/module.php:239
|
2825 |
-
#: ../modules/galleries/module.php:381 ../modules/galleries/module.php:392
|
2826 |
-
#: ../modules/galleries/module.php:404 ../modules/galleries/module.php:433
|
2827 |
-
#: ../modules/galleries/module.php:444 ../modules/galleries/module.php:456
|
2828 |
-
#: ../modules/galleries/module.php:469 ../modules/galleries/module.php:481
|
2829 |
-
#: ../modules/galleries/module.php:493 ../modules/galleries/module.php:529
|
2830 |
-
#: ../modules/partners/module.php:203 ../modules/partners/module.php:337
|
2831 |
-
#: ../modules/partners/module.php:348 ../modules/partners/module.php:360
|
2832 |
-
#: ../modules/partners/module.php:389 ../modules/partners/module.php:400
|
2833 |
-
#: ../modules/partners/module.php:412 ../modules/partners/module.php:425
|
2834 |
-
#: ../modules/partners/module.php:437 ../modules/partners/module.php:451
|
2835 |
-
#: ../modules/partners/module.php:487 ../modules/posts/module.php:201
|
2836 |
-
#: ../modules/posts/module.php:451 ../modules/posts/module.php:462
|
2837 |
-
#: ../modules/posts/module.php:474 ../modules/posts/module.php:503
|
2838 |
-
#: ../modules/posts/module.php:514 ../modules/posts/module.php:526
|
2839 |
-
#: ../modules/posts/module.php:538 ../modules/posts/module.php:550
|
2840 |
-
#: ../modules/posts/module.php:563 ../modules/posts/module.php:575
|
2841 |
-
#: ../modules/posts/module.php:611 ../modules/projects/module.php:203
|
2842 |
-
#: ../modules/projects/module.php:345 ../modules/projects/module.php:356
|
2843 |
-
#: ../modules/projects/module.php:368 ../modules/projects/module.php:397
|
2844 |
-
#: ../modules/projects/module.php:408 ../modules/projects/module.php:420
|
2845 |
-
#: ../modules/projects/module.php:433 ../modules/projects/module.php:445
|
2846 |
-
#: ../modules/projects/module.php:457 ../modules/projects/module.php:493
|
2847 |
-
#: ../modules/staff/module.php:220 ../modules/staff/module.php:366
|
2848 |
-
#: ../modules/staff/module.php:377 ../modules/staff/module.php:389
|
2849 |
-
#: ../modules/staff/module.php:418 ../modules/staff/module.php:429
|
2850 |
-
#: ../modules/staff/module.php:441 ../modules/staff/module.php:454
|
2851 |
-
#: ../modules/staff/module.php:466 ../modules/staff/module.php:478
|
2852 |
-
#: ../modules/tp-thumbnail/module.php:13 ../modules/woocommerce/module.php:206
|
2853 |
-
#: ../modules/woocommerce/module.php:360 ../modules/woocommerce/module.php:371
|
2854 |
-
#: ../modules/woocommerce/module.php:383 ../modules/woocommerce/module.php:412
|
2855 |
-
#: ../modules/woocommerce/module.php:423 ../modules/woocommerce/module.php:435
|
2856 |
-
#: ../modules/woocommerce/module.php:448 ../modules/woocommerce/module.php:460
|
2857 |
-
#: ../modules/woocommerce/module.php:472 ../modules/woocommerce/module.php:508
|
2858 |
-
msgid "Thumbnail"
|
2859 |
-
msgstr ""
|
2860 |
-
|
2861 |
-
#: ../modules/blog/module.php:205 ../modules/blog/module.php:868
|
2862 |
-
#: ../modules/blog/module.php:879 ../modules/blog/module.php:890
|
2863 |
-
#: ../modules/blog/module.php:902 ../modules/blog/module.php:917
|
2864 |
-
#: ../modules/blog/module.php:928 ../modules/blog/module.php:940
|
2865 |
-
#: ../modules/downloads/module.php:207 ../modules/downloads/module.php:756
|
2866 |
-
#: ../modules/downloads/module.php:767 ../modules/downloads/module.php:778
|
2867 |
-
#: ../modules/downloads/module.php:790 ../modules/downloads/module.php:805
|
2868 |
-
#: ../modules/downloads/module.php:816 ../modules/downloads/module.php:828
|
2869 |
-
#: ../modules/galleries/module.php:247 ../modules/galleries/module.php:1054
|
2870 |
-
#: ../modules/galleries/module.php:1065 ../modules/galleries/module.php:1076
|
2871 |
-
#: ../modules/galleries/module.php:1088 ../modules/galleries/module.php:1103
|
2872 |
-
#: ../modules/galleries/module.php:1114 ../modules/galleries/module.php:1126
|
2873 |
-
#: ../modules/infobox/module.php:61 ../modules/infobox/module.php:510
|
2874 |
-
#: ../modules/infobox/module.php:521 ../modules/infobox/module.php:533
|
2875 |
-
#: ../modules/infobox/module.php:548 ../modules/infobox/module.php:559
|
2876 |
-
#: ../modules/infobox/module.php:571 ../modules/infobox/module.php:918
|
2877 |
-
#: ../modules/partners/module.php:207 ../modules/partners/module.php:746
|
2878 |
-
#: ../modules/partners/module.php:757 ../modules/partners/module.php:768
|
2879 |
-
#: ../modules/partners/module.php:780 ../modules/partners/module.php:795
|
2880 |
-
#: ../modules/partners/module.php:806 ../modules/partners/module.php:818
|
2881 |
-
#: ../modules/posts/module.php:205 ../modules/posts/module.php:868
|
2882 |
-
#: ../modules/posts/module.php:879 ../modules/posts/module.php:890
|
2883 |
-
#: ../modules/posts/module.php:902 ../modules/posts/module.php:917
|
2884 |
-
#: ../modules/posts/module.php:928 ../modules/posts/module.php:940
|
2885 |
-
#: ../modules/progress-bars/module.php:204
|
2886 |
-
#: ../modules/progress-bars/module.php:215
|
2887 |
-
#: ../modules/progress-bars/module.php:227
|
2888 |
-
#: ../modules/progress-bars/module.php:242
|
2889 |
-
#: ../modules/progress-bars/module.php:253
|
2890 |
-
#: ../modules/progress-bars/module.php:266
|
2891 |
-
#: ../modules/progress-bars/module.php:278 ../modules/projects/module.php:207
|
2892 |
-
#: ../modules/projects/module.php:752 ../modules/projects/module.php:763
|
2893 |
-
#: ../modules/projects/module.php:774 ../modules/projects/module.php:786
|
2894 |
-
#: ../modules/projects/module.php:801 ../modules/projects/module.php:812
|
2895 |
-
#: ../modules/projects/module.php:824 ../modules/staff/module.php:228
|
2896 |
-
#: ../modules/staff/module.php:940 ../modules/staff/module.php:951
|
2897 |
-
#: ../modules/staff/module.php:962 ../modules/staff/module.php:974
|
2898 |
-
#: ../modules/staff/module.php:989 ../modules/staff/module.php:1000
|
2899 |
-
#: ../modules/staff/module.php:1012 ../modules/tp-comments-form/module.php:164
|
2900 |
-
#: ../modules/tp-comments-form/module.php:175
|
2901 |
-
#: ../modules/tp-comments-form/module.php:187
|
2902 |
-
#: ../modules/tp-comments-form/module.php:202
|
2903 |
-
#: ../modules/tp-comments-form/module.php:213
|
2904 |
-
#: ../modules/tp-comments-form/module.php:225
|
2905 |
-
#: ../modules/tp-title/module.php:13 ../modules/widgets/module.php:325
|
2906 |
-
#: ../modules/widgets/module.php:337 ../modules/widgets/module.php:348
|
2907 |
-
#: ../modules/widgets/module.php:359 ../modules/widgets/module.php:371
|
2908 |
-
#: ../modules/widgets/module.php:386 ../modules/widgets/module.php:397
|
2909 |
-
#: ../modules/widgets/module.php:409 ../modules/widgets/module.php:421
|
2910 |
-
#: ../modules/woocommerce/module.php:214 ../modules/woocommerce/module.php:935
|
2911 |
-
#: ../modules/woocommerce/module.php:964 ../modules/woocommerce/module.php:975
|
2912 |
-
#: ../modules/woocommerce/module.php:986 ../modules/woocommerce/module.php:998
|
2913 |
-
#: ../modules/woocommerce/module.php:1013
|
2914 |
-
#: ../modules/woocommerce/module.php:1024
|
2915 |
-
#: ../modules/woocommerce/module.php:1036
|
2916 |
-
#: ../modules/woocommerce/module.php:1048
|
2917 |
-
msgid "Title"
|
2918 |
-
msgstr ""
|
2919 |
-
|
2920 |
-
#: ../modules/blog/module.php:209 ../modules/blog/module.php:957
|
2921 |
-
#: ../modules/blog/module.php:969 ../modules/blog/module.php:998
|
2922 |
-
#: ../modules/blog/module.php:1009 ../modules/blog/module.php:1020
|
2923 |
-
#: ../modules/blog/module.php:1032 ../modules/blog/module.php:1043
|
2924 |
-
#: ../modules/blog/module.php:1058 ../modules/blog/module.php:1071
|
2925 |
-
#: ../modules/blog/module.php:1083 ../modules/blog/module.php:1095
|
2926 |
-
#: ../modules/blog/module.php:1107 ../modules/blog/module.php:1118
|
2927 |
-
#: ../modules/blog/module.php:1130 ../modules/blog/module.php:1142
|
2928 |
-
#: ../modules/blog/module.php:1154 ../modules/posts/module.php:209
|
2929 |
-
#: ../modules/posts/module.php:957 ../modules/posts/module.php:969
|
2930 |
-
#: ../modules/posts/module.php:998 ../modules/posts/module.php:1009
|
2931 |
-
#: ../modules/posts/module.php:1020 ../modules/posts/module.php:1032
|
2932 |
-
#: ../modules/posts/module.php:1043 ../modules/posts/module.php:1059
|
2933 |
-
#: ../modules/posts/module.php:1071 ../modules/posts/module.php:1083
|
2934 |
-
#: ../modules/posts/module.php:1095 ../modules/posts/module.php:1106
|
2935 |
-
msgid "Meta"
|
2936 |
-
msgstr ""
|
2937 |
-
|
2938 |
-
#: ../modules/blog/module.php:213 ../modules/blog/module.php:1168
|
2939 |
-
#: ../modules/blog/module.php:1177 ../modules/blog/module.php:1188
|
2940 |
-
#: ../modules/blog/module.php:1199 ../modules/blog/module.php:1211
|
2941 |
-
#: ../modules/blog/module.php:1226 ../modules/blog/module.php:1237
|
2942 |
-
#: ../modules/blog/module.php:1258 ../modules/downloads/module.php:215
|
2943 |
-
#: ../modules/downloads/module.php:957 ../modules/downloads/module.php:966
|
2944 |
-
#: ../modules/downloads/module.php:977 ../modules/downloads/module.php:988
|
2945 |
-
#: ../modules/downloads/module.php:1000 ../modules/downloads/module.php:1015
|
2946 |
-
#: ../modules/downloads/module.php:1026 ../modules/downloads/module.php:1038
|
2947 |
-
#: ../modules/downloads/module.php:1047 ../modules/galleries/module.php:255
|
2948 |
-
#: ../modules/galleries/module.php:1169 ../modules/galleries/module.php:1178
|
2949 |
-
#: ../modules/galleries/module.php:1189 ../modules/galleries/module.php:1200
|
2950 |
-
#: ../modules/galleries/module.php:1212 ../modules/galleries/module.php:1227
|
2951 |
-
#: ../modules/galleries/module.php:1238 ../modules/galleries/module.php:1247
|
2952 |
-
#: ../modules/partners/module.php:211 ../modules/partners/module.php:833
|
2953 |
-
#: ../modules/partners/module.php:842 ../modules/partners/module.php:853
|
2954 |
-
#: ../modules/partners/module.php:864 ../modules/partners/module.php:876
|
2955 |
-
#: ../modules/partners/module.php:891 ../modules/partners/module.php:902
|
2956 |
-
#: ../modules/partners/module.php:911 ../modules/posts/module.php:213
|
2957 |
-
#: ../modules/posts/module.php:1120 ../modules/posts/module.php:1129
|
2958 |
-
#: ../modules/posts/module.php:1140 ../modules/posts/module.php:1151
|
2959 |
-
#: ../modules/posts/module.php:1163 ../modules/posts/module.php:1178
|
2960 |
-
#: ../modules/posts/module.php:1189 ../modules/posts/module.php:1210
|
2961 |
-
#: ../modules/projects/module.php:215 ../modules/projects/module.php:917
|
2962 |
-
#: ../modules/projects/module.php:926 ../modules/projects/module.php:985
|
2963 |
-
#: ../modules/projects/module.php:996 ../modules/projects/module.php:1008
|
2964 |
-
#: ../modules/projects/module.php:1023 ../modules/projects/module.php:1034
|
2965 |
-
#: ../modules/projects/module.php:1055 ../modules/staff/module.php:236
|
2966 |
-
#: ../modules/staff/module.php:1157 ../modules/staff/module.php:1166
|
2967 |
-
#: ../modules/staff/module.php:1177 ../modules/staff/module.php:1188
|
2968 |
-
#: ../modules/staff/module.php:1200 ../modules/staff/module.php:1215
|
2969 |
-
#: ../modules/staff/module.php:1226 ../modules/staff/module.php:1235
|
2970 |
-
#: ../modules/woocommerce/module.php:222
|
2971 |
-
#: ../modules/woocommerce/module.php:1063
|
2972 |
-
#: ../modules/woocommerce/module.php:1072
|
2973 |
-
#: ../modules/woocommerce/module.php:1083
|
2974 |
-
#: ../modules/woocommerce/module.php:1094
|
2975 |
-
#: ../modules/woocommerce/module.php:1106
|
2976 |
-
#: ../modules/woocommerce/module.php:1117
|
2977 |
-
#: ../modules/woocommerce/module.php:1129
|
2978 |
-
#: ../modules/woocommerce/module.php:1144
|
2979 |
-
#: ../modules/woocommerce/module.php:1155
|
2980 |
-
#: ../modules/woocommerce/module.php:1176
|
2981 |
-
msgid "Excerpt"
|
2982 |
-
msgstr ""
|
2983 |
-
|
2984 |
-
#: ../modules/blog/module.php:217 ../modules/blog/module.php:1271
|
2985 |
-
#: ../modules/blog/module.php:1282 ../modules/blog/module.php:1293
|
2986 |
-
#: ../modules/blog/module.php:1304 ../modules/blog/module.php:1334
|
2987 |
-
#: ../modules/blog/module.php:1345 ../modules/blog/module.php:1356
|
2988 |
-
#: ../modules/blog/module.php:1367 ../modules/blog/module.php:1379
|
2989 |
-
#: ../modules/blog/module.php:1390 ../modules/blog/module.php:1401
|
2990 |
-
#: ../modules/blog/module.php:1413 ../modules/blog/module.php:1428
|
2991 |
-
#: ../modules/blog/module.php:1440 ../modules/blog/module.php:1452
|
2992 |
-
#: ../modules/blog/module.php:1460 ../modules/blog/module.php:1471
|
2993 |
-
#: ../modules/blog/module.php:1482 ../modules/blog/module.php:1494
|
2994 |
-
#: ../modules/button/module.php:13 ../modules/downloads/module.php:1060
|
2995 |
-
#: ../modules/downloads/module.php:1071 ../modules/downloads/module.php:1082
|
2996 |
-
#: ../modules/downloads/module.php:1093 ../modules/downloads/module.php:1104
|
2997 |
-
#: ../modules/downloads/module.php:1116 ../modules/downloads/module.php:1145
|
2998 |
-
#: ../modules/downloads/module.php:1156 ../modules/downloads/module.php:1168
|
2999 |
-
#: ../modules/downloads/module.php:1179 ../modules/downloads/module.php:1190
|
3000 |
-
#: ../modules/downloads/module.php:1202 ../modules/downloads/module.php:1217
|
3001 |
-
#: ../modules/downloads/module.php:1228 ../modules/downloads/module.php:1240
|
3002 |
-
#: ../modules/downloads/module.php:1249 ../modules/downloads/module.php:1260
|
3003 |
-
#: ../modules/downloads/module.php:1272 ../modules/infobox/module.php:69
|
3004 |
-
#: ../modules/infobox/module.php:667 ../modules/infobox/module.php:678
|
3005 |
-
#: ../modules/infobox/module.php:689 ../modules/infobox/module.php:719
|
3006 |
-
#: ../modules/infobox/module.php:730 ../modules/infobox/module.php:741
|
3007 |
-
#: ../modules/infobox/module.php:752 ../modules/infobox/module.php:764
|
3008 |
-
#: ../modules/infobox/module.php:775 ../modules/infobox/module.php:786
|
3009 |
-
#: ../modules/infobox/module.php:798 ../modules/infobox/module.php:813
|
3010 |
-
#: ../modules/infobox/module.php:825 ../modules/infobox/module.php:837
|
3011 |
-
#: ../modules/infobox/module.php:855 ../modules/infobox/module.php:867
|
3012 |
-
#: ../modules/infobox/module.php:879 ../modules/infobox/module.php:887
|
3013 |
-
#: ../modules/infobox/module.php:898 ../modules/infobox/module.php:910
|
3014 |
-
#: ../modules/posts/module.php:217 ../modules/posts/module.php:1223
|
3015 |
-
#: ../modules/posts/module.php:1234 ../modules/posts/module.php:1245
|
3016 |
-
#: ../modules/posts/module.php:1256 ../modules/posts/module.php:1286
|
3017 |
-
#: ../modules/posts/module.php:1297 ../modules/posts/module.php:1308
|
3018 |
-
#: ../modules/posts/module.php:1319 ../modules/posts/module.php:1331
|
3019 |
-
#: ../modules/posts/module.php:1342 ../modules/posts/module.php:1353
|
3020 |
-
#: ../modules/posts/module.php:1365 ../modules/posts/module.php:1380
|
3021 |
-
#: ../modules/posts/module.php:1392 ../modules/posts/module.php:1404
|
3022 |
-
#: ../modules/posts/module.php:1412 ../modules/posts/module.php:1423
|
3023 |
-
#: ../modules/posts/module.php:1434 ../modules/posts/module.php:1446
|
3024 |
-
#: ../modules/projects/module.php:219 ../modules/projects/module.php:1079
|
3025 |
-
#: ../modules/projects/module.php:1090 ../modules/projects/module.php:1101
|
3026 |
-
#: ../modules/projects/module.php:1112 ../modules/projects/module.php:1124
|
3027 |
-
#: ../modules/projects/module.php:1135 ../modules/projects/module.php:1146
|
3028 |
-
#: ../modules/projects/module.php:1158 ../modules/projects/module.php:1169
|
3029 |
-
#: ../modules/projects/module.php:1180 ../modules/projects/module.php:1192
|
3030 |
-
#: ../modules/projects/module.php:1207 ../modules/projects/module.php:1219
|
3031 |
-
#: ../modules/projects/module.php:1231 ../modules/projects/module.php:1239
|
3032 |
-
#: ../modules/projects/module.php:1250 ../modules/projects/module.php:1262
|
3033 |
-
#: ../modules/tp-comments-form/module.php:419
|
3034 |
-
#: ../modules/tp-comments-form/module.php:430
|
3035 |
-
#: ../modules/tp-comments-form/module.php:441
|
3036 |
-
#: ../modules/tp-comments-form/module.php:471
|
3037 |
-
#: ../modules/tp-comments-form/module.php:482
|
3038 |
-
#: ../modules/tp-comments-form/module.php:493
|
3039 |
-
#: ../modules/tp-comments-form/module.php:504
|
3040 |
-
#: ../modules/tp-comments-form/module.php:516
|
3041 |
-
#: ../modules/tp-comments-form/module.php:527
|
3042 |
-
#: ../modules/tp-comments-form/module.php:538
|
3043 |
-
#: ../modules/tp-comments-form/module.php:550
|
3044 |
-
#: ../modules/tp-comments-form/module.php:565
|
3045 |
-
#: ../modules/tp-comments-form/module.php:577
|
3046 |
-
#: ../modules/tp-comments-form/module.php:589
|
3047 |
-
#: ../modules/tp-downloads-button/module.php:29
|
3048 |
-
msgid "Button"
|
3049 |
-
msgstr ""
|
3050 |
-
|
3051 |
-
#: ../modules/blog/module.php:225 ../modules/downloads/module.php:231
|
3052 |
-
#: ../modules/galleries/module.php:263 ../modules/partners/module.php:219
|
3053 |
-
#: ../modules/posts/module.php:225 ../modules/projects/module.php:227
|
3054 |
-
#: ../modules/staff/module.php:244 ../modules/testimonials/module.php:207
|
3055 |
-
#: ../modules/woocommerce/module.php:242
|
3056 |
-
msgid "Carousel Elements"
|
3057 |
-
msgstr ""
|
3058 |
-
|
3059 |
-
#: ../modules/blog/module.php:231 ../modules/downloads/module.php:237
|
3060 |
-
#: ../modules/galleries/module.php:269 ../modules/partners/module.php:225
|
3061 |
-
#: ../modules/posts/module.php:231 ../modules/projects/module.php:233
|
3062 |
-
#: ../modules/staff/module.php:250 ../modules/testimonials/module.php:213
|
3063 |
-
#: ../modules/woocommerce/module.php:248
|
3064 |
-
msgid "Arrows"
|
3065 |
-
msgstr ""
|
3066 |
-
|
3067 |
-
#: ../modules/blog/module.php:235 ../modules/downloads/module.php:241
|
3068 |
-
#: ../modules/galleries/module.php:273 ../modules/partners/module.php:229
|
3069 |
-
#: ../modules/posts/module.php:235 ../modules/projects/module.php:237
|
3070 |
-
#: ../modules/staff/module.php:254 ../modules/testimonials/module.php:217
|
3071 |
-
#: ../modules/woocommerce/module.php:252
|
3072 |
-
msgid "Circles"
|
3073 |
-
msgstr ""
|
3074 |
-
|
3075 |
-
#: ../modules/blog/module.php:306 ../modules/blog/module.php:506
|
3076 |
-
#: ../modules/blog/module.php:707 ../modules/downloads/module.php:404
|
3077 |
-
#: ../modules/downloads/module.php:593 ../modules/galleries/module.php:436
|
3078 |
-
#: ../modules/galleries/module.php:891 ../modules/html/module.php:112
|
3079 |
-
#: ../modules/partners/module.php:392 ../modules/partners/module.php:583
|
3080 |
-
#: ../modules/posts/module.php:306 ../modules/posts/module.php:506
|
3081 |
-
#: ../modules/posts/module.php:707 ../modules/progress-bars/module.php:136
|
3082 |
-
#: ../modules/projects/module.php:400 ../modules/projects/module.php:589
|
3083 |
-
#: ../modules/staff/module.php:421 ../modules/staff/module.php:603
|
3084 |
-
#: ../modules/staff/module.php:776 ../modules/tabs/module.php:107
|
3085 |
-
#: ../modules/tabs/module.php:372 ../modules/testimonials/module.php:362
|
3086 |
-
#: ../modules/text-simple/module.php:112 ../modules/text-simple/module.php:342
|
3087 |
-
#: ../modules/text-simple/module.php:560 ../modules/text-simple/module.php:778
|
3088 |
-
#: ../modules/text-simple/module.php:996
|
3089 |
-
#: ../modules/text-simple/module.php:1214
|
3090 |
-
#: ../modules/text-simple/module.php:1432 ../modules/tp-content/module.php:104
|
3091 |
-
#: ../modules/tp-excerpt/module.php:83
|
3092 |
-
#: ../modules/tp-gallery-slider/module.php:144
|
3093 |
-
#: ../modules/tp-gallery-slider/module.php:267
|
3094 |
-
#: ../modules/tp-gallery-slider/module.php:383
|
3095 |
-
#: ../modules/tp-meta/module.php:141 ../modules/tp-thumbnail/module.php:111
|
3096 |
-
#: ../modules/tp-title/module.php:83 ../modules/widgets/module.php:129
|
3097 |
-
#: ../modules/widgets/module.php:252 ../modules/woocommerce/module.php:415
|
3098 |
-
#: ../modules/woocommerce/module.php:801
|
3099 |
-
msgid "Border Radius - Top"
|
3100 |
-
msgstr ""
|
3101 |
-
|
3102 |
-
#: ../modules/blog/module.php:317 ../modules/blog/module.php:518
|
3103 |
-
#: ../modules/blog/module.php:719 ../modules/downloads/module.php:416
|
3104 |
-
#: ../modules/downloads/module.php:605 ../modules/galleries/module.php:448
|
3105 |
-
#: ../modules/galleries/module.php:903 ../modules/html/module.php:123
|
3106 |
-
#: ../modules/partners/module.php:404 ../modules/partners/module.php:595
|
3107 |
-
#: ../modules/posts/module.php:317 ../modules/posts/module.php:518
|
3108 |
-
#: ../modules/posts/module.php:719 ../modules/progress-bars/module.php:147
|
3109 |
-
#: ../modules/projects/module.php:412 ../modules/projects/module.php:601
|
3110 |
-
#: ../modules/staff/module.php:433 ../modules/staff/module.php:615
|
3111 |
-
#: ../modules/staff/module.php:788 ../modules/tabs/module.php:119
|
3112 |
-
#: ../modules/tabs/module.php:383 ../modules/testimonials/module.php:374
|
3113 |
-
#: ../modules/text-simple/module.php:123 ../modules/text-simple/module.php:354
|
3114 |
-
#: ../modules/text-simple/module.php:572 ../modules/text-simple/module.php:790
|
3115 |
-
#: ../modules/text-simple/module.php:1008
|
3116 |
-
#: ../modules/text-simple/module.php:1226
|
3117 |
-
#: ../modules/text-simple/module.php:1444 ../modules/tp-content/module.php:115
|
3118 |
-
#: ../modules/tp-excerpt/module.php:94
|
3119 |
-
#: ../modules/tp-gallery-slider/module.php:155
|
3120 |
-
#: ../modules/tp-gallery-slider/module.php:279
|
3121 |
-
#: ../modules/tp-gallery-slider/module.php:395
|
3122 |
-
#: ../modules/tp-meta/module.php:152 ../modules/tp-thumbnail/module.php:122
|
3123 |
-
#: ../modules/tp-title/module.php:94 ../modules/widgets/module.php:140
|
3124 |
-
#: ../modules/widgets/module.php:264 ../modules/woocommerce/module.php:427
|
3125 |
-
#: ../modules/woocommerce/module.php:813
|
3126 |
-
msgid "Border Radius - Bottom"
|
3127 |
-
msgstr ""
|
3128 |
-
|
3129 |
-
#: ../modules/blog/module.php:366 ../modules/button/module.php:275
|
3130 |
-
#: ../modules/downloads/module.php:264 ../modules/galleries/module.php:296
|
3131 |
-
#: ../modules/partners/module.php:252 ../modules/posts/module.php:366
|
3132 |
-
#: ../modules/projects/module.php:260 ../modules/staff/module.php:277
|
3133 |
-
#: ../modules/woocommerce/module.php:275
|
3134 |
-
msgid "Enable/Disable"
|
3135 |
-
msgstr ""
|
3136 |
-
|
3137 |
-
#: ../modules/blog/module.php:381 ../modules/blog/module.php:392
|
3138 |
-
#: ../modules/blog/module.php:406 ../modules/blog/module.php:435
|
3139 |
-
#: ../modules/downloads/module.php:279 ../modules/downloads/module.php:290
|
3140 |
-
#: ../modules/downloads/module.php:304 ../modules/downloads/module.php:333
|
3141 |
-
#: ../modules/galleries/module.php:311 ../modules/galleries/module.php:322
|
3142 |
-
#: ../modules/galleries/module.php:336 ../modules/galleries/module.php:365
|
3143 |
-
#: ../modules/partners/module.php:267 ../modules/partners/module.php:278
|
3144 |
-
#: ../modules/partners/module.php:292 ../modules/partners/module.php:321
|
3145 |
-
#: ../modules/posts/module.php:381 ../modules/posts/module.php:392
|
3146 |
-
#: ../modules/posts/module.php:406 ../modules/posts/module.php:435
|
3147 |
-
#: ../modules/projects/module.php:275 ../modules/projects/module.php:286
|
3148 |
-
#: ../modules/projects/module.php:300 ../modules/projects/module.php:329
|
3149 |
-
#: ../modules/staff/module.php:292 ../modules/staff/module.php:303
|
3150 |
-
#: ../modules/staff/module.php:317 ../modules/staff/module.php:346
|
3151 |
-
#: ../modules/testimonials/module.php:248
|
3152 |
-
#: ../modules/testimonials/module.php:262
|
3153 |
-
#: ../modules/testimonials/module.php:291
|
3154 |
-
#: ../modules/woocommerce/module.php:290 ../modules/woocommerce/module.php:301
|
3155 |
-
#: ../modules/woocommerce/module.php:315 ../modules/woocommerce/module.php:344
|
3156 |
-
msgid "Row Separator"
|
3157 |
-
msgstr ""
|
3158 |
-
|
3159 |
-
#: ../modules/blog/module.php:395 ../modules/downloads/module.php:293
|
3160 |
-
#: ../modules/galleries/module.php:325 ../modules/partners/module.php:281
|
3161 |
-
#: ../modules/posts/module.php:395 ../modules/projects/module.php:289
|
3162 |
-
#: ../modules/separator/module.php:34 ../modules/separator/module.php:108
|
3163 |
-
#: ../modules/separator/module.php:145 ../modules/staff/module.php:306
|
3164 |
-
#: ../modules/testimonials/module.php:251
|
3165 |
-
#: ../modules/woocommerce/module.php:304
|
3166 |
-
msgid "Height"
|
3167 |
-
msgstr ""
|
3168 |
-
|
3169 |
-
#: ../modules/blog/module.php:409 ../modules/downloads/module.php:307
|
3170 |
-
#: ../modules/galleries/module.php:339 ../modules/partners/module.php:295
|
3171 |
-
#: ../modules/posts/module.php:409 ../modules/projects/module.php:303
|
3172 |
-
#: ../modules/separator/module.php:47 ../modules/staff/module.php:320
|
3173 |
-
#: ../modules/testimonials/module.php:265
|
3174 |
-
#: ../modules/text-simple/module.php:1699 ../modules/widgets/module.php:604
|
3175 |
-
#: ../modules/woocommerce/module.php:318
|
3176 |
-
msgid "Style"
|
3177 |
-
msgstr ""
|
3178 |
-
|
3179 |
-
#: ../modules/blog/module.php:415 ../modules/downloads/module.php:313
|
3180 |
-
#: ../modules/galleries/module.php:345 ../modules/partners/module.php:301
|
3181 |
-
#: ../modules/posts/module.php:415 ../modules/projects/module.php:309
|
3182 |
-
#: ../modules/separator/module.php:53 ../modules/staff/module.php:326
|
3183 |
-
#: ../modules/testimonials/module.php:271
|
3184 |
-
#: ../modules/woocommerce/module.php:324
|
3185 |
-
msgid "Invisible"
|
3186 |
-
msgstr ""
|
3187 |
-
|
3188 |
-
#: ../modules/blog/module.php:542 ../modules/button/module.php:323
|
3189 |
-
#: ../modules/infobox/module.php:439 ../modules/infobox/module.php:828
|
3190 |
-
#: ../modules/notification/module.php:317 ../modules/posts/module.php:542
|
3191 |
-
#: ../modules/testimonials/module.php:669
|
3192 |
-
#: ../modules/testimonials/module.php:762
|
3193 |
-
#: ../modules/tp-downloads-button/module.php:233
|
3194 |
-
msgid "Margin Right"
|
3195 |
-
msgstr ""
|
3196 |
-
|
3197 |
-
#: ../modules/blog/module.php:578 ../modules/downloads/module.php:464
|
3198 |
-
#: ../modules/galleries/module.php:496 ../modules/image/module.php:90
|
3199 |
-
#: ../modules/partners/module.php:454 ../modules/posts/module.php:578
|
3200 |
-
#: ../modules/projects/module.php:460 ../modules/staff/module.php:481
|
3201 |
-
#: ../modules/tp-thumbnail/module.php:190
|
3202 |
-
#: ../modules/woocommerce/module.php:475
|
3203 |
-
msgid "Resize - Height"
|
3204 |
-
msgstr ""
|
3205 |
-
|
3206 |
-
#: ../modules/blog/module.php:583 ../modules/blog/module.php:591
|
3207 |
-
#: ../modules/blog/module.php:599 ../modules/downloads/module.php:469
|
3208 |
-
#: ../modules/downloads/module.php:477 ../modules/downloads/module.php:485
|
3209 |
-
#: ../modules/galleries/module.php:501 ../modules/galleries/module.php:509
|
3210 |
-
#: ../modules/galleries/module.php:517 ../modules/partners/module.php:459
|
3211 |
-
#: ../modules/partners/module.php:467 ../modules/partners/module.php:475
|
3212 |
-
#: ../modules/posts/module.php:583 ../modules/posts/module.php:591
|
3213 |
-
#: ../modules/posts/module.php:599 ../modules/projects/module.php:465
|
3214 |
-
#: ../modules/projects/module.php:473 ../modules/projects/module.php:481
|
3215 |
-
#: ../modules/staff/module.php:486 ../modules/staff/module.php:494
|
3216 |
-
#: ../modules/staff/module.php:502 ../modules/woocommerce/module.php:480
|
3217 |
-
#: ../modules/woocommerce/module.php:488 ../modules/woocommerce/module.php:496
|
3218 |
-
msgid "thumbnail"
|
3219 |
-
msgstr ""
|
3220 |
-
|
3221 |
-
#: ../modules/blog/module.php:586 ../modules/blog/module.php:594
|
3222 |
-
#: ../modules/downloads/module.php:472 ../modules/downloads/module.php:480
|
3223 |
-
#: ../modules/galleries/module.php:504 ../modules/galleries/module.php:512
|
3224 |
-
#: ../modules/image/module.php:96 ../modules/partners/module.php:462
|
3225 |
-
#: ../modules/partners/module.php:470 ../modules/posts/module.php:586
|
3226 |
-
#: ../modules/posts/module.php:594 ../modules/projects/module.php:468
|
3227 |
-
#: ../modules/projects/module.php:476 ../modules/staff/module.php:489
|
3228 |
-
#: ../modules/staff/module.php:497 ../modules/tp-thumbnail/module.php:183
|
3229 |
-
#: ../modules/woocommerce/module.php:483 ../modules/woocommerce/module.php:491
|
3230 |
-
msgid "Resize - Width"
|
3231 |
-
msgstr ""
|
3232 |
-
|
3233 |
-
#: ../modules/blog/module.php:603 ../modules/downloads/module.php:489
|
3234 |
-
#: ../modules/downloads/module.php:731 ../modules/galleries/module.php:521
|
3235 |
-
#: ../modules/galleries/module.php:1029 ../modules/infobox/module.php:315
|
3236 |
-
#: ../modules/infobox/module.php:1003 ../modules/infobox/module.php:1274
|
3237 |
-
#: ../modules/partners/module.php:479 ../modules/partners/module.php:721
|
3238 |
-
#: ../modules/posts/module.php:603 ../modules/posts/module.php:845
|
3239 |
-
#: ../modules/projects/module.php:485 ../modules/projects/module.php:727
|
3240 |
-
#: ../modules/staff/module.php:914 ../modules/woocommerce/module.php:500
|
3241 |
-
#: ../modules/woocommerce/module.php:910
|
3242 |
-
msgid "Width"
|
3243 |
-
msgstr ""
|
3244 |
-
|
3245 |
-
#: ../modules/blog/module.php:622 ../modules/downloads/module.php:508
|
3246 |
-
#: ../modules/galleries/module.php:806 ../modules/partners/module.php:498
|
3247 |
-
#: ../modules/posts/module.php:622 ../modules/projects/module.php:504
|
3248 |
-
#: ../modules/staff/module.php:691 ../modules/woocommerce/module.php:716
|
3249 |
-
msgid "Location"
|
3250 |
-
msgstr ""
|
3251 |
-
|
3252 |
-
#: ../modules/blog/module.php:627 ../modules/blog/module.php:652
|
3253 |
-
#: ../modules/blog/module.php:663 ../modules/blog/module.php:675
|
3254 |
-
#: ../modules/blog/module.php:704 ../modules/blog/module.php:715
|
3255 |
-
#: ../modules/blog/module.php:727 ../modules/blog/module.php:740
|
3256 |
-
#: ../modules/blog/module.php:752 ../modules/blog/module.php:764
|
3257 |
-
#: ../modules/blog/module.php:777 ../modules/downloads/module.php:513
|
3258 |
-
#: ../modules/downloads/module.php:538 ../modules/downloads/module.php:549
|
3259 |
-
#: ../modules/downloads/module.php:561 ../modules/downloads/module.php:590
|
3260 |
-
#: ../modules/downloads/module.php:601 ../modules/downloads/module.php:613
|
3261 |
-
#: ../modules/downloads/module.php:626 ../modules/downloads/module.php:640
|
3262 |
-
#: ../modules/downloads/module.php:652 ../modules/downloads/module.php:663
|
3263 |
-
#: ../modules/galleries/module.php:811 ../modules/galleries/module.php:836
|
3264 |
-
#: ../modules/galleries/module.php:847 ../modules/galleries/module.php:859
|
3265 |
-
#: ../modules/galleries/module.php:888 ../modules/galleries/module.php:899
|
3266 |
-
#: ../modules/galleries/module.php:911 ../modules/galleries/module.php:924
|
3267 |
-
#: ../modules/galleries/module.php:938 ../modules/galleries/module.php:950
|
3268 |
-
#: ../modules/galleries/module.php:961 ../modules/partners/module.php:503
|
3269 |
-
#: ../modules/partners/module.php:528 ../modules/partners/module.php:539
|
3270 |
-
#: ../modules/partners/module.php:551 ../modules/partners/module.php:580
|
3271 |
-
#: ../modules/partners/module.php:591 ../modules/partners/module.php:603
|
3272 |
-
#: ../modules/partners/module.php:616 ../modules/partners/module.php:630
|
3273 |
-
#: ../modules/partners/module.php:642 ../modules/partners/module.php:653
|
3274 |
-
#: ../modules/posts/module.php:627 ../modules/posts/module.php:652
|
3275 |
-
#: ../modules/posts/module.php:663 ../modules/posts/module.php:675
|
3276 |
-
#: ../modules/posts/module.php:704 ../modules/posts/module.php:715
|
3277 |
-
#: ../modules/posts/module.php:727 ../modules/posts/module.php:740
|
3278 |
-
#: ../modules/posts/module.php:752 ../modules/posts/module.php:764
|
3279 |
-
#: ../modules/posts/module.php:777 ../modules/projects/module.php:509
|
3280 |
-
#: ../modules/projects/module.php:534 ../modules/projects/module.php:545
|
3281 |
-
#: ../modules/projects/module.php:557 ../modules/projects/module.php:586
|
3282 |
-
#: ../modules/projects/module.php:597 ../modules/projects/module.php:609
|
3283 |
-
#: ../modules/projects/module.php:622 ../modules/projects/module.php:636
|
3284 |
-
#: ../modules/projects/module.php:648 ../modules/projects/module.php:659
|
3285 |
-
#: ../modules/staff/module.php:696 ../modules/staff/module.php:721
|
3286 |
-
#: ../modules/staff/module.php:732 ../modules/staff/module.php:744
|
3287 |
-
#: ../modules/staff/module.php:773 ../modules/staff/module.php:784
|
3288 |
-
#: ../modules/staff/module.php:796 ../modules/staff/module.php:809
|
3289 |
-
#: ../modules/staff/module.php:823 ../modules/staff/module.php:835
|
3290 |
-
#: ../modules/staff/module.php:846 ../modules/testimonials/module.php:307
|
3291 |
-
#: ../modules/testimonials/module.php:318
|
3292 |
-
#: ../modules/testimonials/module.php:330
|
3293 |
-
#: ../modules/testimonials/module.php:359
|
3294 |
-
#: ../modules/testimonials/module.php:370
|
3295 |
-
#: ../modules/testimonials/module.php:382
|
3296 |
-
#: ../modules/testimonials/module.php:395
|
3297 |
-
#: ../modules/testimonials/module.php:407
|
3298 |
-
#: ../modules/woocommerce/module.php:721 ../modules/woocommerce/module.php:746
|
3299 |
-
#: ../modules/woocommerce/module.php:757 ../modules/woocommerce/module.php:769
|
3300 |
-
#: ../modules/woocommerce/module.php:798 ../modules/woocommerce/module.php:809
|
3301 |
-
#: ../modules/woocommerce/module.php:821 ../modules/woocommerce/module.php:834
|
3302 |
-
#: ../modules/woocommerce/module.php:848 ../modules/woocommerce/module.php:860
|
3303 |
-
msgid "Main"
|
3304 |
-
msgstr ""
|
3305 |
-
|
3306 |
-
#: ../modules/blog/module.php:630 ../modules/downloads/module.php:516
|
3307 |
-
#: ../modules/galleries/module.php:814 ../modules/partners/module.php:506
|
3308 |
-
#: ../modules/posts/module.php:630 ../modules/projects/module.php:512
|
3309 |
-
#: ../modules/staff/module.php:699 ../modules/woocommerce/module.php:724
|
3310 |
-
msgid "Bellow Thumbnail"
|
3311 |
-
msgstr ""
|
3312 |
-
|
3313 |
-
#: ../modules/blog/module.php:634 ../modules/downloads/module.php:520
|
3314 |
-
#: ../modules/galleries/module.php:818 ../modules/partners/module.php:510
|
3315 |
-
#: ../modules/posts/module.php:634 ../modules/projects/module.php:516
|
3316 |
-
#: ../modules/staff/module.php:703 ../modules/woocommerce/module.php:728
|
3317 |
-
msgid "Inside Thumbnail ( hover )"
|
3318 |
-
msgstr ""
|
3319 |
-
|
3320 |
-
#: ../modules/blog/module.php:638 ../modules/downloads/module.php:524
|
3321 |
-
#: ../modules/galleries/module.php:822 ../modules/partners/module.php:514
|
3322 |
-
#: ../modules/posts/module.php:638 ../modules/projects/module.php:520
|
3323 |
-
#: ../modules/staff/module.php:707 ../modules/woocommerce/module.php:732
|
3324 |
-
msgid "Inside Thumbnail ( always visible )"
|
3325 |
-
msgstr ""
|
3326 |
-
|
3327 |
-
#: ../modules/blog/module.php:644 ../modules/downloads/module.php:530
|
3328 |
-
#: ../modules/html/module.php:53 ../modules/partners/module.php:329
|
3329 |
-
#: ../modules/partners/module.php:520 ../modules/posts/module.php:644
|
3330 |
-
#: ../modules/projects/module.php:526 ../modules/staff/module.php:713
|
3331 |
-
#: ../modules/tabs/module.php:44 ../modules/tabs/module.php:313
|
3332 |
-
#: ../modules/testimonials/module.php:299 ../modules/text-simple/module.php:53
|
3333 |
-
#: ../modules/text-simple/module.php:279 ../modules/text-simple/module.php:497
|
3334 |
-
#: ../modules/text-simple/module.php:715 ../modules/text-simple/module.php:933
|
3335 |
-
#: ../modules/text-simple/module.php:1151
|
3336 |
-
#: ../modules/text-simple/module.php:1369 ../modules/tp-content/module.php:45
|
3337 |
-
#: ../modules/tp-gallery-slider/module.php:85
|
3338 |
-
#: ../modules/tp-gallery-slider/module.php:204
|
3339 |
-
#: ../modules/tp-gallery-slider/module.php:320
|
3340 |
-
#: ../modules/tp-meta/module.php:82 ../modules/tp-thumbnail/module.php:52
|
3341 |
-
msgid " BG Color"
|
3342 |
-
msgstr ""
|
3343 |
-
|
3344 |
-
#: ../modules/blog/module.php:755 ../modules/downloads/module.php:617
|
3345 |
-
#: ../modules/galleries/module.php:915 ../modules/partners/module.php:428
|
3346 |
-
#: ../modules/partners/module.php:607 ../modules/posts/module.php:755
|
3347 |
-
#: ../modules/projects/module.php:613 ../modules/staff/module.php:800
|
3348 |
-
#: ../modules/woocommerce/module.php:825
|
3349 |
-
msgid "Minimum Height"
|
3350 |
-
msgstr ""
|
3351 |
-
|
3352 |
-
#: ../modules/blog/module.php:769 ../modules/downloads/module.php:655
|
3353 |
-
#: ../modules/galleries/module.php:953 ../modules/html/module.php:233
|
3354 |
-
#: ../modules/html/module.php:340 ../modules/html/module.php:447
|
3355 |
-
#: ../modules/html/module.php:554 ../modules/html/module.php:661
|
3356 |
-
#: ../modules/html/module.php:768 ../modules/html/module.php:875
|
3357 |
-
#: ../modules/partners/module.php:645 ../modules/posts/module.php:769
|
3358 |
-
#: ../modules/projects/module.php:651 ../modules/staff/module.php:838
|
3359 |
-
#: ../modules/testimonials/module.php:564
|
3360 |
-
#: ../modules/text-simple/module.php:245 ../modules/text-simple/module.php:463
|
3361 |
-
#: ../modules/text-simple/module.php:681 ../modules/text-simple/module.php:899
|
3362 |
-
#: ../modules/text-simple/module.php:1117
|
3363 |
-
#: ../modules/text-simple/module.php:1335
|
3364 |
-
#: ../modules/text-simple/module.php:1553 ../modules/tp-content/module.php:225
|
3365 |
-
#: ../modules/tp-content/module.php:332 ../modules/tp-content/module.php:427
|
3366 |
-
#: ../modules/tp-content/module.php:522 ../modules/tp-content/module.php:617
|
3367 |
-
#: ../modules/tp-content/module.php:712 ../modules/tp-content/module.php:807
|
3368 |
-
#: ../modules/tp-excerpt/module.php:204 ../modules/tp-title/module.php:204
|
3369 |
-
#: ../modules/woocommerce/module.php:1191
|
3370 |
-
msgid "Text Align"
|
3371 |
-
msgstr ""
|
3372 |
-
|
3373 |
-
#: ../modules/blog/module.php:792 ../modules/downloads/module.php:678
|
3374 |
-
#: ../modules/galleries/module.php:976 ../modules/html/module.php:256
|
3375 |
-
#: ../modules/html/module.php:363 ../modules/html/module.php:470
|
3376 |
-
#: ../modules/html/module.php:577 ../modules/html/module.php:684
|
3377 |
-
#: ../modules/html/module.php:791 ../modules/html/module.php:898
|
3378 |
-
#: ../modules/image/module.php:143 ../modules/image/module.php:280
|
3379 |
-
#: ../modules/infobox/module.php:94 ../modules/partners/module.php:668
|
3380 |
-
#: ../modules/posts/module.php:792 ../modules/projects/module.php:674
|
3381 |
-
#: ../modules/staff/module.php:534 ../modules/staff/module.php:861
|
3382 |
-
#: ../modules/testimonials/module.php:587
|
3383 |
-
#: ../modules/text-simple/module.php:268 ../modules/text-simple/module.php:486
|
3384 |
-
#: ../modules/text-simple/module.php:704 ../modules/text-simple/module.php:922
|
3385 |
-
#: ../modules/text-simple/module.php:1140
|
3386 |
-
#: ../modules/text-simple/module.php:1358
|
3387 |
-
#: ../modules/text-simple/module.php:1576 ../modules/tp-content/module.php:248
|
3388 |
-
#: ../modules/tp-content/module.php:355 ../modules/tp-content/module.php:450
|
3389 |
-
#: ../modules/tp-content/module.php:545 ../modules/tp-content/module.php:640
|
3390 |
-
#: ../modules/tp-content/module.php:735 ../modules/tp-content/module.php:830
|
3391 |
-
#: ../modules/tp-excerpt/module.php:227 ../modules/tp-thumbnail/module.php:42
|
3392 |
-
#: ../modules/tp-title/module.php:227 ../modules/woocommerce/module.php:950
|
3393 |
-
#: ../modules/woocommerce/module.php:1214
|
3394 |
-
msgid "Justify"
|
3395 |
-
msgstr ""
|
3396 |
-
|
3397 |
-
#: ../modules/blog/module.php:803 ../modules/downloads/module.php:689
|
3398 |
-
#: ../modules/galleries/module.php:641 ../modules/galleries/module.php:987
|
3399 |
-
#: ../modules/infobox/module.php:453 ../modules/infobox/module.php:840
|
3400 |
-
#: ../modules/partners/module.php:679 ../modules/posts/module.php:803
|
3401 |
-
#: ../modules/progress-bars/module.php:281 ../modules/projects/module.php:685
|
3402 |
-
#: ../modules/staff/module.php:232 ../modules/staff/module.php:872
|
3403 |
-
#: ../modules/staff/module.php:1029 ../modules/staff/module.php:1041
|
3404 |
-
#: ../modules/staff/module.php:1070 ../modules/staff/module.php:1081
|
3405 |
-
#: ../modules/staff/module.php:1092 ../modules/staff/module.php:1104
|
3406 |
-
#: ../modules/staff/module.php:1119 ../modules/staff/module.php:1130
|
3407 |
-
#: ../modules/staff/module.php:1143 ../modules/testimonials/module.php:199
|
3408 |
-
#: ../modules/testimonials/module.php:598
|
3409 |
-
#: ../modules/woocommerce/module.php:681 ../modules/woocommerce/module.php:868
|
3410 |
-
#: ../modules/woocommerce/module.php:1285
|
3411 |
-
msgid "Position"
|
3412 |
-
msgstr ""
|
3413 |
-
|
3414 |
-
#: ../modules/blog/module.php:808 ../modules/blog/module.php:842
|
3415 |
-
#: ../modules/blog/module.php:854 ../modules/downloads/module.php:694
|
3416 |
-
#: ../modules/downloads/module.php:728 ../modules/downloads/module.php:740
|
3417 |
-
#: ../modules/galleries/module.php:992 ../modules/galleries/module.php:1026
|
3418 |
-
#: ../modules/galleries/module.php:1038 ../modules/partners/module.php:684
|
3419 |
-
#: ../modules/partners/module.php:718 ../modules/partners/module.php:730
|
3420 |
-
#: ../modules/posts/module.php:808 ../modules/posts/module.php:842
|
3421 |
-
#: ../modules/posts/module.php:854 ../modules/projects/module.php:690
|
3422 |
-
#: ../modules/projects/module.php:724 ../modules/projects/module.php:736
|
3423 |
-
#: ../modules/staff/module.php:877 ../modules/staff/module.php:911
|
3424 |
-
#: ../modules/staff/module.php:923 ../modules/woocommerce/module.php:873
|
3425 |
-
#: ../modules/woocommerce/module.php:907 ../modules/woocommerce/module.php:919
|
3426 |
-
msgid "Main Inner"
|
3427 |
-
msgstr ""
|
3428 |
-
|
3429 |
-
#: ../modules/blog/module.php:833
|
3430 |
-
msgid "Main Inner - Margin"
|
3431 |
-
msgstr ""
|
3432 |
-
|
3433 |
-
#: ../modules/blog/module.php:845
|
3434 |
-
msgid "Main Inner - Width"
|
3435 |
-
msgstr ""
|
3436 |
-
|
3437 |
-
#: ../modules/blog/module.php:871 ../modules/blog/module.php:1382
|
3438 |
-
#: ../modules/button/module.php:221 ../modules/button/module.php:312
|
3439 |
-
#: ../modules/downloads/module.php:759 ../modules/downloads/module.php:1171
|
3440 |
-
#: ../modules/galleries/module.php:1057 ../modules/infobox/module.php:767
|
3441 |
-
#: ../modules/partners/module.php:749 ../modules/posts/module.php:871
|
3442 |
-
#: ../modules/posts/module.php:1334 ../modules/projects/module.php:755
|
3443 |
-
#: ../modules/projects/module.php:1161 ../modules/social/module.php:197
|
3444 |
-
#: ../modules/social/module.php:254 ../modules/staff/module.php:943
|
3445 |
-
#: ../modules/tp-comments-form/module.php:519
|
3446 |
-
#: ../modules/tp-downloads-button/module.php:160
|
3447 |
-
#: ../modules/tp-meta/module.php:253 ../modules/tp-staff-social/module.php:108
|
3448 |
-
#: ../modules/tp-staff-social/module.php:165
|
3449 |
-
#: ../modules/woocommerce/module.php:967
|
3450 |
-
msgid "Color - Hover"
|
3451 |
-
msgstr ""
|
3452 |
-
|
3453 |
-
#: ../modules/blog/module.php:1099 ../modules/downloads/module.php:909
|
3454 |
-
#: ../modules/posts/module.php:1087 ../modules/tp-meta/module.php:314
|
3455 |
-
#: ../modules/widgets/module.php:491
|
3456 |
-
msgid "Link - Color"
|
3457 |
-
msgstr ""
|
3458 |
-
|
3459 |
-
#: ../modules/blog/module.php:1110 ../modules/downloads/module.php:920
|
3460 |
-
#: ../modules/posts/module.php:1098 ../modules/widgets/module.php:502
|
3461 |
-
msgid "Link - Hover - Color"
|
3462 |
-
msgstr ""
|
3463 |
-
|
3464 |
-
#: ../modules/blog/module.php:1121 ../modules/tp-meta/module.php:201
|
3465 |
-
msgid "Avatar - Border Radius"
|
3466 |
-
msgstr ""
|
3467 |
-
|
3468 |
-
#: ../modules/blog/module.php:1133 ../modules/testimonials/module.php:1115
|
3469 |
-
#: ../modules/testimonials/module.php:1384 ../modules/tp-meta/module.php:213
|
3470 |
-
msgid "Avatar - Margin Right"
|
3471 |
-
msgstr ""
|
3472 |
-
|
3473 |
-
#: ../modules/blog/module.php:1145 ../modules/testimonials/module.php:1139
|
3474 |
-
#: ../modules/testimonials/module.php:1408 ../modules/tp-meta/module.php:225
|
3475 |
-
msgid "Avatar - Size"
|
3476 |
-
msgstr ""
|
3477 |
-
|
3478 |
-
#: ../modules/blog/module.php:1162 ../modules/downloads/module.php:951
|
3479 |
-
#: ../modules/galleries/module.php:1163 ../modules/partners/module.php:827
|
3480 |
-
#: ../modules/posts/module.php:1114 ../modules/projects/module.php:911
|
3481 |
-
#: ../modules/staff/module.php:1151 ../modules/woocommerce/module.php:1057
|
3482 |
-
msgid "Excerpt or Content"
|
3483 |
-
msgstr ""
|
3484 |
-
|
3485 |
-
#: ../modules/blog/module.php:1172 ../modules/downloads/module.php:961
|
3486 |
-
#: ../modules/galleries/module.php:1173 ../modules/html/module.php:180
|
3487 |
-
#: ../modules/html/module.php:191 ../modules/html/module.php:203
|
3488 |
-
#: ../modules/html/module.php:218 ../modules/html/module.php:229
|
3489 |
-
#: ../modules/html/module.php:241 ../modules/infobox/module.php:65
|
3490 |
-
#: ../modules/infobox/module.php:589 ../modules/infobox/module.php:600
|
3491 |
-
#: ../modules/infobox/module.php:612 ../modules/infobox/module.php:627
|
3492 |
-
#: ../modules/infobox/module.php:638 ../modules/infobox/module.php:650
|
3493 |
-
#: ../modules/infobox/module.php:926 ../modules/notification/module.php:134
|
3494 |
-
#: ../modules/partners/module.php:837 ../modules/posts/module.php:1124
|
3495 |
-
#: ../modules/projects/module.php:921 ../modules/staff/module.php:1161
|
3496 |
-
#: ../modules/text-simple/module.php:23 ../modules/text-simple/module.php:180
|
3497 |
-
#: ../modules/text-simple/module.php:191 ../modules/text-simple/module.php:203
|
3498 |
-
#: ../modules/text-simple/module.php:218 ../modules/text-simple/module.php:229
|
3499 |
-
#: ../modules/text-simple/module.php:241 ../modules/text-simple/module.php:253
|
3500 |
-
#: ../modules/tp-content/module.php:172 ../modules/tp-content/module.php:183
|
3501 |
-
#: ../modules/tp-content/module.php:195 ../modules/tp-content/module.php:210
|
3502 |
-
#: ../modules/tp-content/module.php:221 ../modules/tp-content/module.php:233
|
3503 |
-
#: ../modules/woocommerce/module.php:1067
|
3504 |
-
msgid "Content"
|
3505 |
-
msgstr ""
|
3506 |
-
|
3507 |
-
#: ../modules/blog/module.php:1250 ../modules/posts/module.php:1202
|
3508 |
-
#: ../modules/projects/module.php:937 ../modules/projects/module.php:949
|
3509 |
-
#: ../modules/projects/module.php:974 ../modules/projects/module.php:1047
|
3510 |
-
#: ../modules/projects/module.php:1067 ../modules/woocommerce/module.php:1168
|
3511 |
-
#: ../modules/woocommerce/module.php:1188
|
3512 |
-
#: ../modules/woocommerce/module.php:1199
|
3513 |
-
msgid "excerpt"
|
3514 |
-
msgstr ""
|
3515 |
-
|
3516 |
-
#: ../modules/blog/module.php:1253 ../modules/downloads/module.php:1042
|
3517 |
-
#: ../modules/galleries/module.php:1242 ../modules/partners/module.php:906
|
3518 |
-
#: ../modules/posts/module.php:1205 ../modules/projects/module.php:1050
|
3519 |
-
#: ../modules/staff/module.php:1230 ../modules/woocommerce/module.php:1171
|
3520 |
-
msgid "Max Length ( amount of words )"
|
3521 |
-
msgstr ""
|
3522 |
-
|
3523 |
-
#: ../modules/blog/module.php:1266 ../modules/downloads/module.php:1055
|
3524 |
-
#: ../modules/galleries/module.php:744 ../modules/posts/module.php:1218
|
3525 |
-
#: ../modules/projects/module.php:1074 ../modules/text-simple/module.php:13
|
3526 |
-
#: ../modules/tp-downloads-button/module.php:24
|
3527 |
-
msgid "Text"
|
3528 |
-
msgstr ""
|
3529 |
-
|
3530 |
-
#: ../modules/blog/module.php:1285 ../modules/button/module.php:92
|
3531 |
-
#: ../modules/downloads/module.php:1074 ../modules/infobox/module.php:670
|
3532 |
-
#: ../modules/notification/module.php:218 ../modules/posts/module.php:1237
|
3533 |
-
#: ../modules/projects/module.php:1093
|
3534 |
-
#: ../modules/tp-comments-form/module.php:422
|
3535 |
-
#: ../modules/tp-downloads-button/module.php:42
|
3536 |
-
msgid "BG Color - Hover"
|
3537 |
-
msgstr ""
|
3538 |
-
|
3539 |
-
#: ../modules/blog/module.php:1348 ../modules/button/module.php:112
|
3540 |
-
#: ../modules/downloads/module.php:1096 ../modules/infobox/module.php:733
|
3541 |
-
#: ../modules/notification/module.php:240 ../modules/posts/module.php:1300
|
3542 |
-
#: ../modules/projects/module.php:1127 ../modules/social/module.php:127
|
3543 |
-
#: ../modules/tp-comments-form/module.php:485
|
3544 |
-
#: ../modules/tp-downloads-button/module.php:62
|
3545 |
-
#: ../modules/tp-staff-social/module.php:38
|
3546 |
-
msgid "Border Color - Hover"
|
3547 |
-
msgstr ""
|
3548 |
-
|
3549 |
-
#: ../modules/blog/module.php:1359 ../modules/button/module.php:161
|
3550 |
-
#: ../modules/downloads/module.php:1148 ../modules/galleries/module.php:603
|
3551 |
-
#: ../modules/image/module.php:208 ../modules/infobox/module.php:269
|
3552 |
-
#: ../modules/infobox/module.php:394 ../modules/infobox/module.php:744
|
3553 |
-
#: ../modules/notification/module.php:87
|
3554 |
-
#: ../modules/notification/module.php:292 ../modules/posts/module.php:1311
|
3555 |
-
#: ../modules/progress-bars/module.php:367 ../modules/projects/module.php:1138
|
3556 |
-
#: ../modules/social/module.php:176 ../modules/testimonials/module.php:750
|
3557 |
-
#: ../modules/text-simple/module.php:1979
|
3558 |
-
#: ../modules/tp-comments-form/module.php:87
|
3559 |
-
#: ../modules/tp-comments-form/module.php:297
|
3560 |
-
#: ../modules/tp-comments-form/module.php:496
|
3561 |
-
#: ../modules/tp-comments/module.php:85 ../modules/tp-comments/module.php:197
|
3562 |
-
#: ../modules/tp-comments/module.php:313 ../modules/tp-comments/module.php:441
|
3563 |
-
#: ../modules/tp-comments/module.php:494 ../modules/tp-comments/module.php:731
|
3564 |
-
#: ../modules/tp-downloads-button/module.php:111
|
3565 |
-
#: ../modules/tp-staff-social/module.php:87
|
3566 |
-
#: ../modules/woocommerce/module.php:593
|
3567 |
-
msgid "Border Radius"
|
3568 |
-
msgstr ""
|
3569 |
-
|
3570 |
-
#: ../modules/blog/module.php:1455 ../modules/button/module.php:293
|
3571 |
-
#: ../modules/downloads/module.php:1244 ../modules/infobox/module.php:57
|
3572 |
-
#: ../modules/infobox/module.php:339 ../modules/infobox/module.php:350
|
3573 |
-
#: ../modules/infobox/module.php:362 ../modules/infobox/module.php:391
|
3574 |
-
#: ../modules/infobox/module.php:402 ../modules/infobox/module.php:414
|
3575 |
-
#: ../modules/infobox/module.php:417 ../modules/infobox/module.php:422
|
3576 |
-
#: ../modules/infobox/module.php:433 ../modules/infobox/module.php:447
|
3577 |
-
#: ../modules/infobox/module.php:468 ../modules/infobox/module.php:479
|
3578 |
-
#: ../modules/infobox/module.php:493 ../modules/infobox/module.php:882
|
3579 |
-
#: ../modules/posts/module.php:1407 ../modules/projects/module.php:1234
|
3580 |
-
#: ../modules/tp-downloads-button/module.php:214
|
3581 |
-
msgid "Icon"
|
3582 |
-
msgstr ""
|
3583 |
-
|
3584 |
-
#: ../modules/blog/module.php:1463 ../modules/downloads/module.php:1252
|
3585 |
-
#: ../modules/infobox/module.php:890 ../modules/notification/module.php:345
|
3586 |
-
#: ../modules/posts/module.php:1415 ../modules/projects/module.php:1242
|
3587 |
-
#: ../modules/staff/module.php:663
|
3588 |
-
msgid "Icon - Color"
|
3589 |
-
msgstr ""
|
3590 |
-
|
3591 |
-
#: ../modules/blog/module.php:1474 ../modules/posts/module.php:1426
|
3592 |
-
msgid "Icon - Hover - Color"
|
3593 |
-
msgstr ""
|
3594 |
-
|
3595 |
-
#: ../modules/blog/module.php:1485 ../modules/button/module.php:406
|
3596 |
-
#: ../modules/button/module.php:514 ../modules/downloads/module.php:1263
|
3597 |
-
#: ../modules/infobox/module.php:901 ../modules/infobox/module.php:1029
|
3598 |
-
#: ../modules/infobox/module.php:1300 ../modules/posts/module.php:1437
|
3599 |
-
#: ../modules/projects/module.php:1253
|
3600 |
-
#: ../modules/tp-downloads-button/module.php:304
|
3601 |
-
#: ../modules/tp-downloads-button/module.php:375
|
3602 |
-
msgid "Icon - Margin Right"
|
3603 |
-
msgstr ""
|
3604 |
-
|
3605 |
-
#: ../modules/blog/module.php:1532 ../modules/blog/module.php:1821
|
3606 |
-
#: ../modules/downloads/module.php:1364 ../modules/downloads/module.php:1629
|
3607 |
-
#: ../modules/partners/module.php:937 ../modules/partners/module.php:1082
|
3608 |
-
#: ../modules/posts/module.php:1484 ../modules/posts/module.php:1773
|
3609 |
-
#: ../modules/projects/module.php:1300 ../modules/projects/module.php:1565
|
3610 |
-
#: ../modules/staff/module.php:1273 ../modules/staff/module.php:1526
|
3611 |
-
#: ../modules/testimonials/module.php:967
|
3612 |
-
#: ../modules/testimonials/module.php:1236
|
3613 |
-
msgid "Separator - Height"
|
3614 |
-
msgstr ""
|
3615 |
-
|
3616 |
-
#: ../modules/blog/module.php:1546 ../modules/blog/module.php:1835
|
3617 |
-
#: ../modules/downloads/module.php:1378 ../modules/downloads/module.php:1643
|
3618 |
-
#: ../modules/galleries/module.php:1299 ../modules/galleries/module.php:1539
|
3619 |
-
#: ../modules/partners/module.php:951 ../modules/partners/module.php:1096
|
3620 |
-
#: ../modules/posts/module.php:1498 ../modules/posts/module.php:1787
|
3621 |
-
#: ../modules/projects/module.php:1314 ../modules/projects/module.php:1579
|
3622 |
-
#: ../modules/staff/module.php:1287 ../modules/staff/module.php:1540
|
3623 |
-
msgid "Thumbnail - Margin Bottom"
|
3624 |
-
msgstr ""
|
3625 |
-
|
3626 |
-
#: ../modules/blog/module.php:1558 ../modules/blog/module.php:1847
|
3627 |
-
#: ../modules/posts/module.php:1510 ../modules/posts/module.php:1799
|
3628 |
-
msgid "Thumbnail - Margin Right"
|
3629 |
-
msgstr ""
|
3630 |
-
|
3631 |
-
#: ../modules/blog/module.php:1570 ../modules/blog/module.php:1859
|
3632 |
-
#: ../modules/downloads/module.php:1390 ../modules/downloads/module.php:1655
|
3633 |
-
#: ../modules/galleries/module.php:1311 ../modules/galleries/module.php:1551
|
3634 |
-
#: ../modules/partners/module.php:963 ../modules/partners/module.php:1108
|
3635 |
-
#: ../modules/posts/module.php:1522 ../modules/posts/module.php:1811
|
3636 |
-
#: ../modules/projects/module.php:1326 ../modules/projects/module.php:1591
|
3637 |
-
#: ../modules/staff/module.php:1299 ../modules/staff/module.php:1552
|
3638 |
-
#: ../modules/woocommerce/module.php:1502
|
3639 |
-
#: ../modules/woocommerce/module.php:1779
|
3640 |
-
msgid "Thumbnail - Padding Vertical"
|
3641 |
-
msgstr ""
|
3642 |
-
|
3643 |
-
#: ../modules/blog/module.php:1582 ../modules/blog/module.php:1871
|
3644 |
-
#: ../modules/downloads/module.php:1402 ../modules/downloads/module.php:1667
|
3645 |
-
#: ../modules/galleries/module.php:1323 ../modules/galleries/module.php:1563
|
3646 |
-
#: ../modules/posts/module.php:1534 ../modules/posts/module.php:1823
|
3647 |
-
#: ../modules/projects/module.php:1338 ../modules/projects/module.php:1603
|
3648 |
-
#: ../modules/staff/module.php:1311 ../modules/staff/module.php:1564
|
3649 |
-
#: ../modules/woocommerce/module.php:1514
|
3650 |
-
#: ../modules/woocommerce/module.php:1791
|
3651 |
-
msgid "Thumbnail - Padding Horizontal"
|
3652 |
-
msgstr ""
|
3653 |
-
|
3654 |
-
#: ../modules/blog/module.php:1594 ../modules/blog/module.php:1883
|
3655 |
-
#: ../modules/downloads/module.php:1414 ../modules/downloads/module.php:1679
|
3656 |
-
#: ../modules/galleries/module.php:1395 ../modules/galleries/module.php:1635
|
3657 |
-
#: ../modules/partners/module.php:975 ../modules/partners/module.php:1120
|
3658 |
-
#: ../modules/posts/module.php:1546 ../modules/posts/module.php:1835
|
3659 |
-
#: ../modules/projects/module.php:1350 ../modules/projects/module.php:1615
|
3660 |
-
#: ../modules/staff/module.php:1371 ../modules/staff/module.php:1624
|
3661 |
-
#: ../modules/testimonials/module.php:981
|
3662 |
-
#: ../modules/testimonials/module.php:1250
|
3663 |
-
#: ../modules/tp-comments/module.php:1078
|
3664 |
-
#: ../modules/tp-comments/module.php:1341
|
3665 |
-
#: ../modules/woocommerce/module.php:1562
|
3666 |
-
#: ../modules/woocommerce/module.php:1839
|
3667 |
-
msgid "Main - Padding Vertical"
|
3668 |
-
msgstr ""
|
3669 |
-
|
3670 |
-
#: ../modules/blog/module.php:1606 ../modules/blog/module.php:1895
|
3671 |
-
#: ../modules/downloads/module.php:1426 ../modules/downloads/module.php:1691
|
3672 |
-
#: ../modules/galleries/module.php:1407 ../modules/galleries/module.php:1647
|
3673 |
-
#: ../modules/partners/module.php:987 ../modules/partners/module.php:1132
|
3674 |
-
#: ../modules/posts/module.php:1558 ../modules/posts/module.php:1847
|
3675 |
-
#: ../modules/projects/module.php:1362 ../modules/projects/module.php:1627
|
3676 |
-
#: ../modules/staff/module.php:1383 ../modules/staff/module.php:1636
|
3677 |
-
#: ../modules/testimonials/module.php:993
|
3678 |
-
#: ../modules/testimonials/module.php:1262
|
3679 |
-
#: ../modules/tp-comments/module.php:1090
|
3680 |
-
#: ../modules/tp-comments/module.php:1353
|
3681 |
-
#: ../modules/woocommerce/module.php:1574
|
3682 |
-
#: ../modules/woocommerce/module.php:1851
|
3683 |
-
msgid "Main - Padding Horizontal"
|
3684 |
-
msgstr ""
|
3685 |
-
|
3686 |
-
#: ../modules/blog/module.php:1630 ../modules/blog/module.php:1919
|
3687 |
-
#: ../modules/downloads/module.php:1450 ../modules/downloads/module.php:1715
|
3688 |
-
#: ../modules/galleries/module.php:1431 ../modules/galleries/module.php:1671
|
3689 |
-
#: ../modules/infobox/module.php:1081 ../modules/infobox/module.php:1352
|
3690 |
-
#: ../modules/partners/module.php:1011 ../modules/partners/module.php:1156
|
3691 |
-
#: ../modules/posts/module.php:1582 ../modules/posts/module.php:1871
|
3692 |
-
#: ../modules/projects/module.php:1386 ../modules/projects/module.php:1651
|
3693 |
-
#: ../modules/staff/module.php:1407 ../modules/staff/module.php:1660
|
3694 |
-
#: ../modules/widgets/module.php:826 ../modules/widgets/module.php:982
|
3695 |
-
#: ../modules/woocommerce/module.php:1598
|
3696 |
-
#: ../modules/woocommerce/module.php:1875
|
3697 |
-
msgid "Title - Line Height"
|
3698 |
-
msgstr ""
|
3699 |
-
|
3700 |
-
#: ../modules/blog/module.php:1642 ../modules/blog/module.php:1931
|
3701 |
-
#: ../modules/downloads/module.php:1462 ../modules/downloads/module.php:1727
|
3702 |
-
#: ../modules/galleries/module.php:1443 ../modules/galleries/module.php:1683
|
3703 |
-
#: ../modules/infobox/module.php:1093 ../modules/infobox/module.php:1364
|
3704 |
-
#: ../modules/partners/module.php:1023 ../modules/partners/module.php:1168
|
3705 |
-
#: ../modules/posts/module.php:1594 ../modules/posts/module.php:1883
|
3706 |
-
#: ../modules/progress-bars/module.php:509
|
3707 |
-
#: ../modules/progress-bars/module.php:664 ../modules/projects/module.php:1398
|
3708 |
-
#: ../modules/projects/module.php:1663 ../modules/staff/module.php:1419
|
3709 |
-
#: ../modules/staff/module.php:1672 ../modules/widgets/module.php:838
|
3710 |
-
#: ../modules/widgets/module.php:994 ../modules/woocommerce/module.php:1610
|
3711 |
-
#: ../modules/woocommerce/module.php:1887
|
3712 |
-
msgid "Title - Margin Bottom"
|
3713 |
-
msgstr ""
|
3714 |
-
|
3715 |
-
#: ../modules/blog/module.php:1654 ../modules/blog/module.php:1943
|
3716 |
-
#: ../modules/posts/module.php:1606 ../modules/posts/module.php:1895
|
3717 |
-
msgid "Meta - Font Size"
|
3718 |
-
msgstr ""
|
3719 |
-
|
3720 |
-
#: ../modules/blog/module.php:1666 ../modules/blog/module.php:1955
|
3721 |
-
#: ../modules/posts/module.php:1618 ../modules/posts/module.php:1907
|
3722 |
-
msgid "Meta - Margin Bottom"
|
3723 |
-
msgstr ""
|
3724 |
-
|
3725 |
-
#: ../modules/blog/module.php:1678 ../modules/blog/module.php:1967
|
3726 |
-
#: ../modules/posts/module.php:1630 ../modules/posts/module.php:1919
|
3727 |
-
msgid "Meta - Padding Vertical"
|
3728 |
-
msgstr ""
|
3729 |
-
|
3730 |
-
#: ../modules/blog/module.php:1690 ../modules/blog/module.php:1979
|
3731 |
-
#: ../modules/posts/module.php:1642 ../modules/posts/module.php:1931
|
3732 |
-
msgid "Meta - Padding Horizontal"
|
3733 |
-
msgstr ""
|
3734 |
-
|
3735 |
-
#: ../modules/blog/module.php:1702 ../modules/blog/module.php:1991
|
3736 |
-
#: ../modules/downloads/module.php:1498 ../modules/downloads/module.php:1763
|
3737 |
-
#: ../modules/galleries/module.php:1467 ../modules/galleries/module.php:1707
|
3738 |
-
#: ../modules/partners/module.php:1035 ../modules/partners/module.php:1180
|
3739 |
-
#: ../modules/posts/module.php:1654 ../modules/posts/module.php:1943
|
3740 |
-
#: ../modules/projects/module.php:1446 ../modules/projects/module.php:1711
|
3741 |
-
#: ../modules/staff/module.php:1467 ../modules/staff/module.php:1720
|
3742 |
-
#: ../modules/woocommerce/module.php:1634
|
3743 |
-
#: ../modules/woocommerce/module.php:1911
|
3744 |
-
msgid "Excerpt - Font Size"
|
3745 |
-
msgstr ""
|
3746 |
-
|
3747 |
-
#: ../modules/blog/module.php:1714 ../modules/blog/module.php:2003
|
3748 |
-
#: ../modules/downloads/module.php:1510 ../modules/downloads/module.php:1775
|
3749 |
-
#: ../modules/galleries/module.php:1479 ../modules/galleries/module.php:1719
|
3750 |
-
#: ../modules/partners/module.php:1047 ../modules/partners/module.php:1192
|
3751 |
-
#: ../modules/posts/module.php:1666 ../modules/posts/module.php:1955
|
3752 |
-
#: ../modules/projects/module.php:1458 ../modules/projects/module.php:1723
|
3753 |
-
#: ../modules/staff/module.php:1479 ../modules/staff/module.php:1732
|
3754 |
-
#: ../modules/woocommerce/module.php:1646
|
3755 |
-
#: ../modules/woocommerce/module.php:1923
|
3756 |
-
msgid "Excerpt - Line Height"
|
3757 |
-
msgstr ""
|
3758 |
-
|
3759 |
-
#: ../modules/blog/module.php:1726 ../modules/blog/module.php:2015
|
3760 |
-
#: ../modules/downloads/module.php:1522 ../modules/downloads/module.php:1787
|
3761 |
-
#: ../modules/posts/module.php:1678 ../modules/posts/module.php:1967
|
3762 |
-
#: ../modules/projects/module.php:1470 ../modules/projects/module.php:1735
|
3763 |
-
#: ../modules/woocommerce/module.php:1658
|
3764 |
-
#: ../modules/woocommerce/module.php:1935
|
3765 |
-
msgid "Excerpt - Margin Bottom"
|
3766 |
-
msgstr ""
|
3767 |
-
|
3768 |
-
#: ../modules/blog/module.php:1738 ../modules/blog/module.php:2027
|
3769 |
-
#: ../modules/downloads/module.php:1534 ../modules/downloads/module.php:1799
|
3770 |
-
#: ../modules/infobox/module.php:1141 ../modules/infobox/module.php:1412
|
3771 |
-
#: ../modules/posts/module.php:1690 ../modules/posts/module.php:1979
|
3772 |
-
#: ../modules/projects/module.php:1482 ../modules/projects/module.php:1747
|
3773 |
-
#: ../modules/tp-comments-form/module.php:747
|
3774 |
-
#: ../modules/tp-comments-form/module.php:938
|
3775 |
-
msgid "Button - Font Size"
|
3776 |
-
msgstr ""
|
3777 |
-
|
3778 |
-
#: ../modules/blog/module.php:1750 ../modules/blog/module.php:2039
|
3779 |
-
#: ../modules/downloads/module.php:1558 ../modules/downloads/module.php:1823
|
3780 |
-
#: ../modules/infobox/module.php:1177 ../modules/infobox/module.php:1448
|
3781 |
-
#: ../modules/posts/module.php:1702 ../modules/posts/module.php:1991
|
3782 |
-
#: ../modules/projects/module.php:1494 ../modules/projects/module.php:1759
|
3783 |
-
#: ../modules/tp-comments-form/module.php:759
|
3784 |
-
#: ../modules/tp-comments-form/module.php:950
|
3785 |
-
msgid "Button - Padding Vertical"
|
3786 |
-
msgstr ""
|
3787 |
-
|
3788 |
-
#: ../modules/blog/module.php:1762 ../modules/blog/module.php:2051
|
3789 |
-
#: ../modules/infobox/module.php:1189 ../modules/infobox/module.php:1460
|
3790 |
-
#: ../modules/posts/module.php:1714 ../modules/posts/module.php:2003
|
3791 |
-
#: ../modules/projects/module.php:1506 ../modules/projects/module.php:1771
|
3792 |
-
#: ../modules/tp-comments-form/module.php:771
|
3793 |
-
#: ../modules/tp-comments-form/module.php:962
|
3794 |
-
msgid "Button - Padding Horizontal"
|
3795 |
-
msgstr ""
|
3796 |
-
|
3797 |
-
#: ../modules/blog/module.php:1774 ../modules/blog/module.php:2063
|
3798 |
-
#: ../modules/infobox/module.php:1201 ../modules/infobox/module.php:1472
|
3799 |
-
#: ../modules/posts/module.php:1726 ../modules/posts/module.php:2015
|
3800 |
-
msgid "Button - Icon - Margin Right"
|
3801 |
-
msgstr ""
|
3802 |
-
|
3803 |
-
#: ../modules/blog/module.php:2308 ../modules/downloads/module.php:2090
|
3804 |
-
#: ../modules/galleries/module.php:1966 ../modules/partners/module.php:1435
|
3805 |
-
#: ../modules/posts/module.php:2260 ../modules/projects/module.php:2030
|
3806 |
-
#: ../modules/staff/module.php:1983 ../modules/testimonials/module.php:1705
|
3807 |
-
#: ../modules/woocommerce/module.php:2254
|
3808 |
-
msgid "All"
|
3809 |
-
msgstr ""
|
3810 |
-
|
3811 |
-
#: ../modules/blog/module.php:2449 ../modules/blog/module.php:2517
|
3812 |
-
#: ../modules/posts/module.php:2391 ../modules/posts/module.php:2456
|
3813 |
-
msgid "By"
|
3814 |
-
msgstr ""
|
3815 |
-
|
3816 |
-
#: ../modules/blog/module.php:2580
|
3817 |
-
msgid ""
|
3818 |
-
"You do not have any blog posts at the moment. Go to <strong>WP Admin → "
|
3819 |
-
"Posts</strong> to add some."
|
3820 |
-
msgstr ""
|
3821 |
-
|
3822 |
-
#: ../modules/button/module.php:28
|
3823 |
-
msgid "Button Text"
|
3824 |
-
msgstr ""
|
3825 |
-
|
3826 |
-
#: ../modules/button/module.php:35
|
3827 |
-
msgid "URL"
|
3828 |
-
msgstr ""
|
3829 |
-
|
3830 |
-
#: ../modules/button/module.php:41 ../modules/infobox/module.php:30
|
3831 |
-
msgid "Open in"
|
3832 |
-
msgstr ""
|
3833 |
-
|
3834 |
-
#: ../modules/button/module.php:47 ../modules/infobox/module.php:36
|
3835 |
-
msgid "Same Tab"
|
3836 |
-
msgstr ""
|
3837 |
-
|
3838 |
-
#: ../modules/button/module.php:51 ../modules/infobox/module.php:40
|
3839 |
-
msgid "New Tab"
|
3840 |
-
msgstr ""
|
3841 |
-
|
3842 |
-
#: ../modules/button/module.php:58 ../modules/button/module.php:418
|
3843 |
-
#: ../modules/button/module.php:526 ../modules/image/module.php:121
|
3844 |
-
#: ../modules/image/module.php:257 ../modules/infobox/module.php:76
|
3845 |
-
#: ../modules/staff/module.php:511 ../modules/tp-thumbnail/module.php:24
|
3846 |
-
#: ../modules/woocommerce/module.php:927
|
3847 |
-
msgid "Align"
|
3848 |
-
msgstr ""
|
3849 |
-
|
3850 |
-
#: ../modules/button/module.php:218 ../modules/button/module.php:229
|
3851 |
-
#: ../modules/button/module.php:240 ../modules/button/module.php:252
|
3852 |
-
#: ../modules/button/module.php:267
|
3853 |
-
#: ../modules/tp-downloads-button/module.php:157
|
3854 |
-
#: ../modules/tp-downloads-button/module.php:168
|
3855 |
-
#: ../modules/tp-downloads-button/module.php:179
|
3856 |
-
#: ../modules/tp-downloads-button/module.php:191
|
3857 |
-
#: ../modules/tp-downloads-button/module.php:206
|
3858 |
-
#: ../modules/tp-meta/module.php:250 ../modules/tp-meta/module.php:261
|
3859 |
-
#: ../modules/tp-meta/module.php:272 ../modules/tp-meta/module.php:284
|
3860 |
-
#: ../modules/tp-meta/module.php:299 ../modules/tp-meta/module.php:310
|
3861 |
-
#: ../modules/tp-meta/module.php:322 ../modules/tp-meta/module.php:333
|
3862 |
-
msgid "typography"
|
3863 |
-
msgstr ""
|
3864 |
-
|
3865 |
-
#: ../modules/button/module.php:290 ../modules/button/module.php:298
|
3866 |
-
#: ../modules/button/module.php:309 ../modules/button/module.php:320
|
3867 |
-
#: ../modules/button/module.php:332 ../modules/social/module.php:251
|
3868 |
-
#: ../modules/social/module.php:262 ../modules/social/module.php:273
|
3869 |
-
#: ../modules/tp-downloads-button/module.php:219
|
3870 |
-
#: ../modules/tp-downloads-button/module.php:230
|
3871 |
-
#: ../modules/tp-downloads-button/module.php:242
|
3872 |
-
#: ../modules/tp-staff-social/module.php:162
|
3873 |
-
#: ../modules/tp-staff-social/module.php:173
|
3874 |
-
#: ../modules/tp-staff-social/module.php:184
|
3875 |
-
msgid "icon"
|
3876 |
-
msgstr ""
|
3877 |
-
|
3878 |
-
#: ../modules/downloads/functions.php:17 ../modules/downloads/module.php:16
|
3879 |
-
msgid "Downloads"
|
3880 |
-
msgstr ""
|
3881 |
-
|
3882 |
-
#: ../modules/downloads/functions.php:18
|
3883 |
-
msgid "Download Item"
|
3884 |
-
msgstr ""
|
3885 |
-
|
3886 |
-
#: ../modules/downloads/functions.php:19 ../modules/downloads/functions.php:20
|
3887 |
-
msgid "Add Download Item"
|
3888 |
-
msgstr ""
|
3889 |
-
|
3890 |
-
#: ../modules/downloads/functions.php:22
|
3891 |
-
msgid "Edit Download Item"
|
3892 |
-
msgstr ""
|
3893 |
-
|
3894 |
-
#: ../modules/downloads/functions.php:23
|
3895 |
-
msgid "New Download Item"
|
3896 |
-
msgstr ""
|
3897 |
-
|
3898 |
-
#: ../modules/downloads/functions.php:24 ../modules/downloads/functions.php:25
|
3899 |
-
msgid "View Download Item"
|
3900 |
-
msgstr ""
|
3901 |
-
|
3902 |
-
#: ../modules/downloads/functions.php:26
|
3903 |
-
msgid "Search Download Item"
|
3904 |
-
msgstr ""
|
3905 |
-
|
3906 |
-
#: ../modules/downloads/functions.php:27
|
3907 |
-
msgid "No Download Item found"
|
3908 |
-
msgstr ""
|
3909 |
-
|
3910 |
-
#: ../modules/downloads/functions.php:28
|
3911 |
-
msgid "No Download Item found in Trash"
|
3912 |
-
msgstr ""
|
3913 |
-
|
3914 |
-
#: ../modules/downloads/functions.php:29
|
3915 |
-
msgid "Parent Download Item"
|
3916 |
-
msgstr ""
|
3917 |
-
|
3918 |
-
#: ../modules/downloads/module.php:105 ../modules/staff/module.php:98
|
3919 |
-
#: ../modules/woocommerce/module.php:97
|
3920 |
-
msgid "Items Per Row"
|
3921 |
-
msgstr ""
|
3922 |
-
|
3923 |
-
#: ../modules/downloads/module.php:211 ../modules/downloads/module.php:845
|
3924 |
-
#: ../modules/downloads/module.php:856 ../modules/downloads/module.php:867
|
3925 |
-
#: ../modules/downloads/module.php:878 ../modules/downloads/module.php:890
|
3926 |
-
#: ../modules/downloads/module.php:905 ../modules/downloads/module.php:917
|
3927 |
-
#: ../modules/downloads/module.php:928 ../modules/downloads/module.php:939
|
3928 |
-
#: ../modules/tp-meta/module.php:42
|
3929 |
-
msgid "Tags"
|
3930 |
-
msgstr ""
|
3931 |
-
|
3932 |
-
#: ../modules/downloads/module.php:219
|
3933 |
-
#: ../modules/tp-downloads-button/module.php:13
|
3934 |
-
msgid "Download Button"
|
3935 |
-
msgstr ""
|
3936 |
-
|
3937 |
-
#: ../modules/downloads/module.php:223
|
3938 |
-
msgid "Download Count"
|
3939 |
-
msgstr ""
|
3940 |
-
|
3941 |
-
#: ../modules/downloads/module.php:719 ../modules/galleries/module.php:615
|
3942 |
-
#: ../modules/galleries/module.php:1017 ../modules/partners/module.php:709
|
3943 |
-
#: ../modules/posts/module.php:833 ../modules/projects/module.php:715
|
3944 |
-
#: ../modules/staff/module.php:902 ../modules/woocommerce/module.php:643
|
3945 |
-
#: ../modules/woocommerce/module.php:898
|
3946 |
-
msgid "Margin"
|
3947 |
-
msgstr ""
|
3948 |
-
|
3949 |
-
#: ../modules/downloads/module.php:931 ../modules/widgets/module.php:513
|
3950 |
-
msgid "Link - Font Weight"
|
3951 |
-
msgstr ""
|
3952 |
-
|
3953 |
-
#: ../modules/downloads/module.php:1288 ../modules/downloads/module.php:1299
|
3954 |
-
#: ../modules/downloads/module.php:1311 ../modules/downloads/module.php:1326
|
3955 |
-
#: ../modules/galleries/module.php:243 ../modules/galleries/module.php:548
|
3956 |
-
#: ../modules/galleries/module.php:559 ../modules/galleries/module.php:571
|
3957 |
-
#: ../modules/galleries/module.php:600 ../modules/galleries/module.php:612
|
3958 |
-
#: ../modules/galleries/module.php:623 ../modules/galleries/module.php:635
|
3959 |
-
#: ../modules/galleries/module.php:646 ../modules/galleries/module.php:680
|
3960 |
-
#: ../modules/galleries/module.php:691 ../modules/galleries/module.php:702
|
3961 |
-
#: ../modules/galleries/module.php:714 ../modules/galleries/module.php:729
|
3962 |
-
#: ../modules/galleries/module.php:740 ../modules/galleries/module.php:749
|
3963 |
-
#: ../modules/galleries/module.php:760 ../modules/galleries/module.php:771
|
3964 |
-
#: ../modules/galleries/module.php:783 ../modules/galleries/module.php:798
|
3965 |
-
msgid "Count"
|
3966 |
-
msgstr ""
|
3967 |
-
|
3968 |
-
#: ../modules/downloads/module.php:1474 ../modules/downloads/module.php:1739
|
3969 |
-
msgid "Tags - Font Size"
|
3970 |
-
msgstr ""
|
3971 |
-
|
3972 |
-
#: ../modules/downloads/module.php:1486 ../modules/downloads/module.php:1751
|
3973 |
-
msgid "Tags - Padding Vertical"
|
3974 |
-
msgstr ""
|
3975 |
-
|
3976 |
-
#: ../modules/downloads/module.php:1546 ../modules/downloads/module.php:1811
|
3977 |
-
msgid "Button - Margin Bottom"
|
3978 |
-
msgstr ""
|
3979 |
-
|
3980 |
-
#: ../modules/downloads/module.php:1570 ../modules/downloads/module.php:1835
|
3981 |
-
#: ../modules/projects/module.php:1518 ../modules/projects/module.php:1783
|
3982 |
-
msgid "Button Icon - Margin Right"
|
3983 |
-
msgstr ""
|
3984 |
-
|
3985 |
-
#: ../modules/downloads/module.php:1582 ../modules/downloads/module.php:1847
|
3986 |
-
#: ../modules/galleries/module.php:694
|
3987 |
-
msgid "Count - Font Size"
|
3988 |
-
msgstr ""
|
3989 |
-
|
3990 |
-
#: ../modules/downloads/module.php:2267 ../modules/downloads/module.php:2340
|
3991 |
-
#, php-format
|
3992 |
-
msgid "Downloaded %d times."
|
3993 |
-
msgstr ""
|
3994 |
-
|
3995 |
-
#: ../modules/downloads/module.php:2371
|
3996 |
-
msgid ""
|
3997 |
-
"You do not have downloads at the moment. Go to <strong>WP Admin → "
|
3998 |
-
"Downloads</strong> to add some."
|
3999 |
-
msgstr ""
|
4000 |
-
|
4001 |
-
#: ../modules/galleries/functions.php:26 ../modules/galleries/module.php:16
|
4002 |
-
msgid "Galleries"
|
4003 |
-
msgstr ""
|
4004 |
-
|
4005 |
-
#: ../modules/galleries/functions.php:27 ../modules/galleries/functions.php:28
|
4006 |
-
#: ../modules/galleries/functions.php:29
|
4007 |
-
msgid "Add Gallery"
|
4008 |
-
msgstr ""
|
4009 |
-
|
4010 |
-
#: ../modules/galleries/functions.php:31
|
4011 |
-
msgid "Edit Gallery"
|
4012 |
-
msgstr ""
|
4013 |
-
|
4014 |
-
#: ../modules/galleries/functions.php:32
|
4015 |
-
msgid "New Gallery"
|
4016 |
-
msgstr ""
|
4017 |
-
|
4018 |
-
#: ../modules/galleries/functions.php:33 ../modules/galleries/functions.php:34
|
4019 |
-
msgid "View Gallery"
|
4020 |
-
msgstr ""
|
4021 |
-
|
4022 |
-
#: ../modules/galleries/functions.php:35
|
4023 |
-
msgid "Search Gallery"
|
4024 |
-
msgstr ""
|
4025 |
-
|
4026 |
-
#: ../modules/galleries/functions.php:36
|
4027 |
-
msgid "No Gallery found"
|
4028 |
-
msgstr ""
|
4029 |
-
|
4030 |
-
#: ../modules/galleries/functions.php:37
|
4031 |
-
msgid "No Gallery found in Trash"
|
4032 |
-
msgstr ""
|
4033 |
-
|
4034 |
-
#: ../modules/galleries/functions.php:38
|
4035 |
-
msgid "Parent Gallery"
|
4036 |
-
msgstr ""
|
4037 |
-
|
4038 |
-
#: ../modules/galleries/module.php:175
|
4039 |
-
msgid "Thumbnail - Link Behaviour"
|
4040 |
-
msgstr ""
|
4041 |
-
|
4042 |
-
#: ../modules/galleries/module.php:181 ../modules/galleries/module.php:198
|
4043 |
-
msgid "Normal"
|
4044 |
-
msgstr ""
|
4045 |
-
|
4046 |
-
#: ../modules/galleries/module.php:185 ../modules/galleries/module.php:202
|
4047 |
-
#: ../modules/image/module.php:56 ../modules/tp-thumbnail/module.php:133
|
4048 |
-
msgid "Lightbox"
|
4049 |
-
msgstr ""
|
4050 |
-
|
4051 |
-
#: ../modules/galleries/module.php:189 ../modules/galleries/module.php:206
|
4052 |
-
msgid "other"
|
4053 |
-
msgstr ""
|
4054 |
-
|
4055 |
-
#: ../modules/galleries/module.php:192
|
4056 |
-
msgid "Title - Link Behaviour"
|
4057 |
-
msgstr ""
|
4058 |
-
|
4059 |
-
#: ../modules/galleries/module.php:251 ../modules/galleries/module.php:1143
|
4060 |
-
#: ../modules/galleries/module.php:1154 ../modules/separator/module.php:13
|
4061 |
-
#: ../modules/woocommerce/module.php:218
|
4062 |
-
#: ../modules/woocommerce/module.php:1319
|
4063 |
-
#: ../modules/woocommerce/module.php:1330
|
4064 |
-
msgid "Separator"
|
4065 |
-
msgstr ""
|
4066 |
-
|
4067 |
-
#: ../modules/galleries/module.php:627 ../modules/woocommerce/module.php:655
|
4068 |
-
msgid "Opacity"
|
4069 |
-
msgstr ""
|
4070 |
-
|
4071 |
-
#: ../modules/galleries/module.php:671 ../modules/testimonials/module.php:774
|
4072 |
-
#: ../modules/woocommerce/module.php:669
|
4073 |
-
msgid "Padding"
|
4074 |
-
msgstr ""
|
4075 |
-
|
4076 |
-
#: ../modules/galleries/module.php:683
|
4077 |
-
msgid "Count - Color"
|
4078 |
-
msgstr ""
|
4079 |
-
|
4080 |
-
#: ../modules/galleries/module.php:706
|
4081 |
-
msgid "Count - Font Weight"
|
4082 |
-
msgstr ""
|
4083 |
-
|
4084 |
-
#: ../modules/galleries/module.php:721
|
4085 |
-
msgid "Count - Font Family"
|
4086 |
-
msgstr ""
|
4087 |
-
|
4088 |
-
#: ../modules/galleries/module.php:732
|
4089 |
-
msgid "Count - Margin Bottom"
|
4090 |
-
msgstr ""
|
4091 |
-
|
4092 |
-
#: ../modules/galleries/module.php:752
|
4093 |
-
msgid "Text - Color"
|
4094 |
-
msgstr ""
|
4095 |
-
|
4096 |
-
#: ../modules/galleries/module.php:763 ../modules/image/module.php:418
|
4097 |
-
#: ../modules/image/module.php:513
|
4098 |
-
msgid "Text - Font Size"
|
4099 |
-
msgstr ""
|
4100 |
-
|
4101 |
-
#: ../modules/galleries/module.php:775
|
4102 |
-
msgid "Text - Font Weight"
|
4103 |
-
msgstr ""
|
4104 |
-
|
4105 |
-
#: ../modules/galleries/module.php:790
|
4106 |
-
msgid "Text - Font Family"
|
4107 |
-
msgstr ""
|
4108 |
-
|
4109 |
-
#: ../modules/galleries/module.php:1285 ../modules/galleries/module.php:1525
|
4110 |
-
#: ../modules/woocommerce/module.php:1488
|
4111 |
-
#: ../modules/woocommerce/module.php:1765
|
4112 |
-
msgid "Row Separator - Height"
|
4113 |
-
msgstr ""
|
4114 |
-
|
4115 |
-
#: ../modules/galleries/module.php:1335 ../modules/galleries/module.php:1575
|
4116 |
-
msgid "Count Margin"
|
4117 |
-
msgstr ""
|
4118 |
-
|
4119 |
-
#: ../modules/galleries/module.php:1347 ../modules/galleries/module.php:1587
|
4120 |
-
msgid "Count Padding"
|
4121 |
-
msgstr ""
|
4122 |
-
|
4123 |
-
#: ../modules/galleries/module.php:1359 ../modules/galleries/module.php:1599
|
4124 |
-
msgid "Count Num - Font Size"
|
4125 |
-
msgstr ""
|
4126 |
-
|
4127 |
-
#: ../modules/galleries/module.php:1371 ../modules/galleries/module.php:1611
|
4128 |
-
msgid "Count Num - Margin Bottom"
|
4129 |
-
msgstr ""
|
4130 |
-
|
4131 |
-
#: ../modules/galleries/module.php:1383 ../modules/galleries/module.php:1623
|
4132 |
-
msgid "Count Text - Font Size"
|
4133 |
-
msgstr ""
|
4134 |
-
|
4135 |
-
#: ../modules/galleries/module.php:1455 ../modules/galleries/module.php:1695
|
4136 |
-
#: ../modules/woocommerce/module.php:1694
|
4137 |
-
#: ../modules/woocommerce/module.php:1971
|
4138 |
-
msgid "Separator - Margin Bottom"
|
4139 |
-
msgstr ""
|
4140 |
-
|
4141 |
-
#: ../modules/galleries/module.php:2224
|
4142 |
-
msgid ""
|
4143 |
-
"You do not have any galleries at the moment. Go to <strong>WP Admin → "
|
4144 |
-
"Galleries</strong> to add some."
|
4145 |
-
msgstr ""
|
4146 |
-
|
4147 |
-
#: ../modules/html/module.php:13
|
4148 |
-
msgid "HTML"
|
4149 |
-
msgstr ""
|
4150 |
-
|
4151 |
-
#: ../modules/html/module.php:24
|
4152 |
-
msgid "HTML/Shortcode"
|
4153 |
-
msgstr ""
|
4154 |
-
|
4155 |
-
#: ../modules/html/module.php:36 ../modules/text-simple/module.php:36
|
4156 |
-
#: ../modules/tp-content/module.php:28
|
4157 |
-
msgid "Enable/Disable Custom CSS"
|
4158 |
-
msgstr ""
|
4159 |
-
|
4160 |
-
#: ../modules/html/module.php:275 ../modules/html/module.php:286
|
4161 |
-
#: ../modules/html/module.php:298 ../modules/html/module.php:313
|
4162 |
-
#: ../modules/html/module.php:324 ../modules/html/module.php:336
|
4163 |
-
#: ../modules/html/module.php:348 ../modules/tp-content/module.php:267
|
4164 |
-
#: ../modules/tp-content/module.php:278 ../modules/tp-content/module.php:290
|
4165 |
-
#: ../modules/tp-content/module.php:305 ../modules/tp-content/module.php:316
|
4166 |
-
#: ../modules/tp-content/module.php:328 ../modules/tp-content/module.php:340
|
4167 |
-
msgid "H1"
|
4168 |
-
msgstr ""
|
4169 |
-
|
4170 |
-
#: ../modules/html/module.php:382 ../modules/html/module.php:393
|
4171 |
-
#: ../modules/html/module.php:405 ../modules/html/module.php:420
|
4172 |
-
#: ../modules/html/module.php:431 ../modules/html/module.php:443
|
4173 |
-
#: ../modules/html/module.php:455 ../modules/text-simple/module.php:505
|
4174 |
-
#: ../modules/text-simple/module.php:516 ../modules/text-simple/module.php:528
|
4175 |
-
#: ../modules/text-simple/module.php:557 ../modules/text-simple/module.php:569
|
4176 |
-
#: ../modules/text-simple/module.php:581 ../modules/text-simple/module.php:592
|
4177 |
-
#: ../modules/text-simple/module.php:603 ../modules/text-simple/module.php:615
|
4178 |
-
#: ../modules/text-simple/module.php:630 ../modules/text-simple/module.php:641
|
4179 |
-
#: ../modules/text-simple/module.php:653 ../modules/text-simple/module.php:666
|
4180 |
-
#: ../modules/text-simple/module.php:678 ../modules/text-simple/module.php:689
|
4181 |
-
#: ../modules/tp-content/module.php:374 ../modules/tp-content/module.php:385
|
4182 |
-
#: ../modules/tp-content/module.php:397 ../modules/tp-content/module.php:412
|
4183 |
-
#: ../modules/tp-content/module.php:423 ../modules/tp-content/module.php:435
|
4184 |
-
msgid "H2"
|
4185 |
-
msgstr ""
|
4186 |
-
|
4187 |
-
#: ../modules/html/module.php:489 ../modules/html/module.php:500
|
4188 |
-
#: ../modules/html/module.php:512 ../modules/html/module.php:527
|
4189 |
-
#: ../modules/html/module.php:538 ../modules/html/module.php:550
|
4190 |
-
#: ../modules/html/module.php:562 ../modules/tp-content/module.php:469
|
4191 |
-
#: ../modules/tp-content/module.php:480 ../modules/tp-content/module.php:492
|
4192 |
-
#: ../modules/tp-content/module.php:507 ../modules/tp-content/module.php:518
|
4193 |
-
#: ../modules/tp-content/module.php:530
|
4194 |
-
msgid "H3"
|
4195 |
-
msgstr ""
|
4196 |
-
|
4197 |
-
#: ../modules/html/module.php:596 ../modules/html/module.php:607
|
4198 |
-
#: ../modules/html/module.php:619 ../modules/html/module.php:634
|
4199 |
-
#: ../modules/html/module.php:645 ../modules/html/module.php:669
|
4200 |
-
#: ../modules/text-simple/module.php:941 ../modules/text-simple/module.php:952
|
4201 |
-
#: ../modules/text-simple/module.php:964 ../modules/text-simple/module.php:993
|
4202 |
-
#: ../modules/text-simple/module.php:1005
|
4203 |
-
#: ../modules/text-simple/module.php:1017
|
4204 |
-
#: ../modules/text-simple/module.php:1028
|
4205 |
-
#: ../modules/text-simple/module.php:1039
|
4206 |
-
#: ../modules/text-simple/module.php:1051
|
4207 |
-
#: ../modules/text-simple/module.php:1066
|
4208 |
-
#: ../modules/text-simple/module.php:1077
|
4209 |
-
#: ../modules/text-simple/module.php:1089
|
4210 |
-
#: ../modules/text-simple/module.php:1102
|
4211 |
-
#: ../modules/text-simple/module.php:1114
|
4212 |
-
#: ../modules/text-simple/module.php:1125 ../modules/tp-content/module.php:564
|
4213 |
-
#: ../modules/tp-content/module.php:575 ../modules/tp-content/module.php:587
|
4214 |
-
#: ../modules/tp-content/module.php:602 ../modules/tp-content/module.php:613
|
4215 |
-
#: ../modules/tp-content/module.php:625
|
4216 |
-
msgid "h4"
|
4217 |
-
msgstr ""
|
4218 |
-
|
4219 |
-
#: ../modules/html/module.php:657
|
4220 |
-
msgid "H4"
|
4221 |
-
msgstr ""
|
4222 |
-
|
4223 |
-
#: ../modules/html/module.php:703 ../modules/html/module.php:714
|
4224 |
-
#: ../modules/html/module.php:726 ../modules/html/module.php:741
|
4225 |
-
#: ../modules/html/module.php:752 ../modules/html/module.php:776
|
4226 |
-
#: ../modules/text-simple/module.php:1159
|
4227 |
-
#: ../modules/text-simple/module.php:1170
|
4228 |
-
#: ../modules/text-simple/module.php:1182
|
4229 |
-
#: ../modules/text-simple/module.php:1211
|
4230 |
-
#: ../modules/text-simple/module.php:1223
|
4231 |
-
#: ../modules/text-simple/module.php:1235
|
4232 |
-
#: ../modules/text-simple/module.php:1246
|
4233 |
-
#: ../modules/text-simple/module.php:1257
|
4234 |
-
#: ../modules/text-simple/module.php:1269
|
4235 |
-
#: ../modules/text-simple/module.php:1284
|
4236 |
-
#: ../modules/text-simple/module.php:1295
|
4237 |
-
#: ../modules/text-simple/module.php:1307
|
4238 |
-
#: ../modules/text-simple/module.php:1320
|
4239 |
-
#: ../modules/text-simple/module.php:1332
|
4240 |
-
#: ../modules/text-simple/module.php:1343 ../modules/tp-content/module.php:659
|
4241 |
-
#: ../modules/tp-content/module.php:670 ../modules/tp-content/module.php:682
|
4242 |
-
#: ../modules/tp-content/module.php:697 ../modules/tp-content/module.php:708
|
4243 |
-
#: ../modules/tp-content/module.php:720
|
4244 |
-
msgid "h5"
|
4245 |
-
msgstr ""
|
4246 |
-
|
4247 |
-
#: ../modules/html/module.php:764
|
4248 |
-
msgid "H5"
|
4249 |
-
msgstr ""
|
4250 |
-
|
4251 |
-
#: ../modules/html/module.php:810 ../modules/html/module.php:821
|
4252 |
-
#: ../modules/html/module.php:833 ../modules/html/module.php:848
|
4253 |
-
#: ../modules/html/module.php:859 ../modules/html/module.php:883
|
4254 |
-
#: ../modules/text-simple/module.php:1377
|
4255 |
-
#: ../modules/text-simple/module.php:1388
|
4256 |
-
#: ../modules/text-simple/module.php:1400
|
4257 |
-
#: ../modules/text-simple/module.php:1429
|
4258 |
-
#: ../modules/text-simple/module.php:1441
|
4259 |
-
#: ../modules/text-simple/module.php:1453
|
4260 |
-
#: ../modules/text-simple/module.php:1464
|
4261 |
-
#: ../modules/text-simple/module.php:1475
|
4262 |
-
#: ../modules/text-simple/module.php:1487
|
4263 |
-
#: ../modules/text-simple/module.php:1502
|
4264 |
-
#: ../modules/text-simple/module.php:1513
|
4265 |
-
#: ../modules/text-simple/module.php:1525
|
4266 |
-
#: ../modules/text-simple/module.php:1538
|
4267 |
-
#: ../modules/text-simple/module.php:1550
|
4268 |
-
#: ../modules/text-simple/module.php:1561 ../modules/tp-content/module.php:754
|
4269 |
-
#: ../modules/tp-content/module.php:765 ../modules/tp-content/module.php:777
|
4270 |
-
#: ../modules/tp-content/module.php:792 ../modules/tp-content/module.php:803
|
4271 |
-
#: ../modules/tp-content/module.php:815
|
4272 |
-
msgid "h6"
|
4273 |
-
msgstr ""
|
4274 |
-
|
4275 |
-
#: ../modules/html/module.php:871
|
4276 |
-
msgid "H6"
|
4277 |
-
msgstr ""
|
4278 |
-
|
4279 |
-
#: ../modules/html/module.php:909 ../modules/text-simple/module.php:1587
|
4280 |
-
#: ../modules/tp-content/module.php:841
|
4281 |
-
msgid "Link Color"
|
4282 |
-
msgstr ""
|
4283 |
-
|
4284 |
-
#: ../modules/html/module.php:917 ../modules/html/module.php:928
|
4285 |
-
#: ../modules/text-simple/module.php:1595
|
4286 |
-
#: ../modules/text-simple/module.php:1606 ../modules/tp-content/module.php:849
|
4287 |
-
#: ../modules/tp-content/module.php:860
|
4288 |
-
msgid "links"
|
4289 |
-
msgstr ""
|
4290 |
-
|
4291 |
-
#: ../modules/html/module.php:920 ../modules/text-simple/module.php:1598
|
4292 |
-
#: ../modules/tp-content/module.php:852
|
4293 |
-
msgid "Link - Hover Color"
|
4294 |
-
msgstr ""
|
4295 |
-
|
4296 |
-
#: ../modules/html/module.php:1014 ../modules/html/module.php:1279
|
4297 |
-
#: ../modules/text-simple/module.php:2207
|
4298 |
-
#: ../modules/text-simple/module.php:2508 ../modules/tp-content/module.php:946
|
4299 |
-
#: ../modules/tp-content/module.php:1149
|
4300 |
-
msgid "H2 - Font Size"
|
4301 |
-
msgstr ""
|
4302 |
-
|
4303 |
-
#: ../modules/html/module.php:1026 ../modules/html/module.php:1291
|
4304 |
-
#: ../modules/text-simple/module.php:2219
|
4305 |
-
#: ../modules/text-simple/module.php:2520 ../modules/tp-content/module.php:958
|
4306 |
-
#: ../modules/tp-content/module.php:1161
|
4307 |
-
msgid "H2 - Line Height"
|
4308 |
-
msgstr ""
|
4309 |
-
|
4310 |
-
#: ../modules/html/module.php:1038 ../modules/html/module.php:1303
|
4311 |
-
#: ../modules/text-simple/module.php:2231
|
4312 |
-
#: ../modules/text-simple/module.php:2532
|
4313 |
-
msgid "H2 - Margin Bottom"
|
4314 |
-
msgstr ""
|
4315 |
-
|
4316 |
-
#: ../modules/html/module.php:1050 ../modules/html/module.php:1315
|
4317 |
-
#: ../modules/text-simple/module.php:2243
|
4318 |
-
#: ../modules/text-simple/module.php:2544 ../modules/tp-content/module.php:970
|
4319 |
-
#: ../modules/tp-content/module.php:1173
|
4320 |
-
msgid "H3 - Font Size"
|
4321 |
-
msgstr ""
|
4322 |
-
|
4323 |
-
#: ../modules/html/module.php:1062 ../modules/html/module.php:1327
|
4324 |
-
#: ../modules/text-simple/module.php:2255
|
4325 |
-
#: ../modules/text-simple/module.php:2556 ../modules/tp-content/module.php:982
|
4326 |
-
#: ../modules/tp-content/module.php:1185
|
4327 |
-
msgid "H3 - Line Height"
|
4328 |
-
msgstr ""
|
4329 |
-
|
4330 |
-
#: ../modules/html/module.php:1074 ../modules/html/module.php:1339
|
4331 |
-
#: ../modules/text-simple/module.php:2267
|
4332 |
-
#: ../modules/text-simple/module.php:2568
|
4333 |
-
msgid "H3 - Margin Bottom"
|
4334 |
-
msgstr ""
|
4335 |
-
|
4336 |
-
#: ../modules/html/module.php:1086 ../modules/html/module.php:1351
|
4337 |
-
#: ../modules/text-simple/module.php:2279
|
4338 |
-
#: ../modules/text-simple/module.php:2580 ../modules/tp-content/module.php:994
|
4339 |
-
#: ../modules/tp-content/module.php:1197
|
4340 |
-
msgid "H4 - Font Size"
|
4341 |
-
msgstr ""
|
4342 |
-
|
4343 |
-
#: ../modules/html/module.php:1098 ../modules/html/module.php:1363
|
4344 |
-
#: ../modules/text-simple/module.php:2291
|
4345 |
-
#: ../modules/text-simple/module.php:2592
|
4346 |
-
#: ../modules/tp-content/module.php:1006 ../modules/tp-content/module.php:1209
|
4347 |
-
msgid "H4 - Line Height"
|
4348 |
-
msgstr ""
|
4349 |
-
|
4350 |
-
#: ../modules/html/module.php:1110 ../modules/html/module.php:1375
|
4351 |
-
#: ../modules/text-simple/module.php:2303
|
4352 |
-
#: ../modules/text-simple/module.php:2604
|
4353 |
-
msgid "H4 - Margin Bottom"
|
4354 |
-
msgstr ""
|
4355 |
-
|
4356 |
-
#: ../modules/html/module.php:1122 ../modules/html/module.php:1387
|
4357 |
-
#: ../modules/text-simple/module.php:2315
|
4358 |
-
#: ../modules/text-simple/module.php:2616
|
4359 |
-
#: ../modules/tp-content/module.php:1018 ../modules/tp-content/module.php:1221
|
4360 |
-
msgid "H5 - Font Size"
|
4361 |
-
msgstr ""
|
4362 |
-
|
4363 |
-
#: ../modules/html/module.php:1134 ../modules/html/module.php:1399
|
4364 |
-
#: ../modules/text-simple/module.php:2327
|
4365 |
-
#: ../modules/text-simple/module.php:2628
|
4366 |
-
#: ../modules/tp-content/module.php:1030 ../modules/tp-content/module.php:1233
|
4367 |
-
msgid "H5 - Line Height"
|
4368 |
-
msgstr ""
|
4369 |
-
|
4370 |
-
#: ../modules/html/module.php:1146 ../modules/html/module.php:1411
|
4371 |
-
#: ../modules/text-simple/module.php:2339
|
4372 |
-
#: ../modules/text-simple/module.php:2640
|
4373 |
-
msgid "H5 - Margin Bottom"
|
4374 |
-
msgstr ""
|
4375 |
-
|
4376 |
-
#: ../modules/html/module.php:1158 ../modules/html/module.php:1423
|
4377 |
-
#: ../modules/text-simple/module.php:2351
|
4378 |
-
#: ../modules/text-simple/module.php:2652
|
4379 |
-
#: ../modules/tp-content/module.php:1042 ../modules/tp-content/module.php:1245
|
4380 |
-
msgid "H6 - Font Size"
|
4381 |
-
msgstr ""
|
4382 |
-
|
4383 |
-
#: ../modules/html/module.php:1170 ../modules/html/module.php:1435
|
4384 |
-
#: ../modules/text-simple/module.php:2363
|
4385 |
-
#: ../modules/text-simple/module.php:2664
|
4386 |
-
#: ../modules/tp-content/module.php:1054 ../modules/tp-content/module.php:1257
|
4387 |
-
msgid "H6 - Line Height"
|
4388 |
-
msgstr ""
|
4389 |
-
|
4390 |
-
#: ../modules/html/module.php:1182 ../modules/html/module.php:1447
|
4391 |
-
#: ../modules/text-simple/module.php:2375
|
4392 |
-
#: ../modules/text-simple/module.php:2676
|
4393 |
-
msgid "H6 - Margin Bottom"
|
4394 |
-
msgstr ""
|
4395 |
-
|
4396 |
-
#: ../modules/image/module.php:13 ../modules/image/module.php:32
|
4397 |
-
msgid "Image"
|
4398 |
-
msgstr ""
|
4399 |
-
|
4400 |
-
#: ../modules/image/module.php:24
|
4401 |
-
msgid "CT"
|
4402 |
-
msgstr ""
|
4403 |
-
|
4404 |
-
#: ../modules/image/module.php:26
|
4405 |
-
msgid "This is just some placeholder text. Click to edit it."
|
4406 |
-
msgstr ""
|
4407 |
-
|
4408 |
-
#: ../modules/image/module.php:38
|
4409 |
-
msgid "Link Type"
|
4410 |
-
msgstr ""
|
4411 |
-
|
4412 |
-
#: ../modules/image/module.php:44 ../modules/text-simple/module.php:1761
|
4413 |
-
#: ../modules/widgets/module.php:666
|
4414 |
-
msgid "None"
|
4415 |
-
msgstr ""
|
4416 |
-
|
4417 |
-
#: ../modules/image/module.php:48
|
4418 |
-
msgid "URL - Same Tab"
|
4419 |
-
msgstr ""
|
4420 |
-
|
4421 |
-
#: ../modules/image/module.php:52
|
4422 |
-
msgid "URL - New Tab"
|
4423 |
-
msgstr ""
|
4424 |
-
|
4425 |
-
#: ../modules/image/module.php:62
|
4426 |
-
msgid "Link - URL"
|
4427 |
-
msgstr ""
|
4428 |
-
|
4429 |
-
#: ../modules/image/module.php:68
|
4430 |
-
msgid "Link - Lightbox Image"
|
4431 |
-
msgstr ""
|
4432 |
-
|
4433 |
-
#: ../modules/image/module.php:74
|
4434 |
-
msgid "Custom Text"
|
4435 |
-
msgstr ""
|
4436 |
-
|
4437 |
-
#: ../modules/image/module.php:102
|
4438 |
-
msgid "Image - ALT attribute"
|
4439 |
-
msgstr ""
|
4440 |
-
|
4441 |
-
#: ../modules/image/module.php:109
|
4442 |
-
msgid "Image - TITLE attribute"
|
4443 |
-
msgstr ""
|
4444 |
-
|
4445 |
-
#: ../modules/image/module.php:265 ../modules/image/module.php:294
|
4446 |
-
#: ../modules/image/module.php:305 ../modules/image/module.php:317
|
4447 |
-
#: ../modules/image/module.php:332 ../modules/image/module.php:343
|
4448 |
-
#: ../modules/image/module.php:356
|
4449 |
-
msgid "custom text"
|
4450 |
-
msgstr ""
|
4451 |
-
|
4452 |
-
#: ../modules/image/module.php:347 ../modules/infobox/module.php:425
|
4453 |
-
#: ../modules/infobox/module.php:816 ../modules/notification/module.php:304
|
4454 |
-
#: ../modules/testimonials/module.php:644
|
4455 |
-
#: ../modules/testimonials/module.php:866
|
4456 |
-
msgid "Margin Top"
|
4457 |
-
msgstr ""
|
4458 |
-
|
4459 |
-
#: ../modules/image/module.php:430 ../modules/image/module.php:525
|
4460 |
-
msgid "Text - Line Height"
|
4461 |
-
msgstr ""
|
4462 |
-
|
4463 |
-
#: ../modules/image/module.php:442 ../modules/image/module.php:537
|
4464 |
-
msgid "Text - Margin Top"
|
4465 |
-
msgstr ""
|
4466 |
-
|
4467 |
-
#: ../modules/image/module.php:594
|
4468 |
-
msgid "No image has been set yet, edit the module to set one."
|
4469 |
-
msgstr ""
|
4470 |
-
|
4471 |
-
#: ../modules/infobox/module.php:13
|
4472 |
-
msgid "Info Box"
|
4473 |
-
msgstr ""
|
4474 |
-
|
4475 |
-
#: ../modules/infobox/module.php:24
|
4476 |
-
msgid "Button Link"
|
4477 |
-
msgstr ""
|
4478 |
-
|
4479 |
-
#: ../modules/infobox/module.php:459 ../modules/progress-bars/module.php:287
|
4480 |
-
msgid "Above"
|
4481 |
-
msgstr ""
|
4482 |
-
|
4483 |
-
#: ../modules/infobox/module.php:463
|
4484 |
-
msgid "Aside"
|
4485 |
-
msgstr ""
|
4486 |
-
|
4487 |
-
#: ../modules/infobox/module.php:471 ../modules/social/module.php:312
|
4488 |
-
#: ../modules/social/module.php:383 ../modules/tp-staff-social/module.php:223
|
4489 |
-
#: ../modules/tp-staff-social/module.php:294
|
4490 |
-
msgid "Size ( Wrapper )"
|
4491 |
-
msgstr ""
|
4492 |
-
|
4493 |
-
#: ../modules/infobox/module.php:485 ../modules/social/module.php:324
|
4494 |
-
#: ../modules/social/module.php:395 ../modules/tp-staff-social/module.php:235
|
4495 |
-
#: ../modules/tp-staff-social/module.php:306
|
4496 |
-
msgid "Size ( Icon )"
|
4497 |
-
msgstr ""
|
4498 |
-
|
4499 |
-
#: ../modules/infobox/module.php:846
|
4500 |
-
msgid "Right of content"
|
4501 |
-
msgstr ""
|
4502 |
-
|
4503 |
-
#: ../modules/infobox/module.php:850
|
4504 |
-
msgid "Bellow content"
|
4505 |
-
msgstr ""
|
4506 |
-
|
4507 |
-
#: ../modules/infobox/module.php:934
|
4508 |
-
msgid "Button Title"
|
4509 |
-
msgstr ""
|
4510 |
-
|
4511 |
-
#: ../modules/infobox/module.php:1015 ../modules/infobox/module.php:1286
|
4512 |
-
msgid "Icon - Margin Top"
|
4513 |
-
msgstr ""
|
4514 |
-
|
4515 |
-
#: ../modules/infobox/module.php:1043 ../modules/infobox/module.php:1314
|
4516 |
-
#: ../modules/notification/module.php:462
|
4517 |
-
#: ../modules/notification/module.php:569
|
4518 |
-
msgid "Icon - Size ( Wrapper )"
|
4519 |
-
msgstr ""
|
4520 |
-
|
4521 |
-
#: ../modules/infobox/module.php:1057 ../modules/infobox/module.php:1328
|
4522 |
-
msgid "Icon - Size ( Icon )"
|
4523 |
-
msgstr ""
|
4524 |
-
|
4525 |
-
#: ../modules/infobox/module.php:1129 ../modules/infobox/module.php:1400
|
4526 |
-
msgid "Content - Margin Bottom"
|
4527 |
-
msgstr ""
|
4528 |
-
|
4529 |
-
#: ../modules/infobox/module.php:1153 ../modules/infobox/module.php:1424
|
4530 |
-
msgid "Button - Margin Top"
|
4531 |
-
msgstr ""
|
4532 |
-
|
4533 |
-
#: ../modules/infobox/module.php:1165 ../modules/infobox/module.php:1436
|
4534 |
-
msgid "Button - Margin Right"
|
4535 |
-
msgstr ""
|
4536 |
-
|
4537 |
-
#: ../modules/notification/module.php:13
|
4538 |
-
msgid "Notification"
|
4539 |
-
msgstr ""
|
4540 |
-
|
4541 |
-
#: ../modules/notification/module.php:136 ../modules/tabs/module.php:859
|
4542 |
-
msgid "This is just placeholder text."
|
4543 |
-
msgstr ""
|
4544 |
-
|
4545 |
-
#: ../modules/notification/module.php:140
|
4546 |
-
#: ../modules/notification/module.php:151
|
4547 |
-
#: ../modules/notification/module.php:162
|
4548 |
-
#: ../modules/notification/module.php:174
|
4549 |
-
#: ../modules/notification/module.php:189
|
4550 |
-
#: ../modules/notification/module.php:201
|
4551 |
-
msgid "text"
|
4552 |
-
msgstr ""
|
4553 |
-
|
4554 |
-
#: ../modules/notification/module.php:215
|
4555 |
-
#: ../modules/notification/module.php:226
|
4556 |
-
#: ../modules/notification/module.php:237
|
4557 |
-
#: ../modules/notification/module.php:248
|
4558 |
-
#: ../modules/notification/module.php:259
|
4559 |
-
#: ../modules/notification/module.php:289
|
4560 |
-
#: ../modules/notification/module.php:300
|
4561 |
-
#: ../modules/notification/module.php:312
|
4562 |
-
#: ../modules/notification/module.php:325
|
4563 |
-
#: ../modules/notification/module.php:339
|
4564 |
-
#: ../modules/notification/module.php:353
|
4565 |
-
#: ../modules/notification/module.php:364
|
4566 |
-
#: ../modules/notification/module.php:376
|
4567 |
-
msgid "close"
|
4568 |
-
msgstr ""
|
4569 |
-
|
4570 |
-
#: ../modules/notification/module.php:330
|
4571 |
-
#: ../modules/progress-bars/module.php:426 ../modules/social/module.php:218
|
4572 |
-
#: ../modules/social/module.php:265 ../modules/testimonials/module.php:786
|
4573 |
-
#: ../modules/tp-gallery-slider/module.php:470
|
4574 |
-
#: ../modules/tp-staff-social/module.php:129
|
4575 |
-
#: ../modules/tp-staff-social/module.php:176
|
4576 |
-
msgid "Size"
|
4577 |
-
msgstr ""
|
4578 |
-
|
4579 |
-
#: ../modules/notification/module.php:356
|
4580 |
-
msgid "Icon - Color - Hover"
|
4581 |
-
msgstr ""
|
4582 |
-
|
4583 |
-
#: ../modules/notification/module.php:367 ../modules/staff/module.php:674
|
4584 |
-
msgid "Icon - Size"
|
4585 |
-
msgstr ""
|
4586 |
-
|
4587 |
-
#: ../modules/notification/module.php:474
|
4588 |
-
#: ../modules/notification/module.php:581
|
4589 |
-
msgid "Icom - Size ( Icon )"
|
4590 |
-
msgstr ""
|
4591 |
-
|
4592 |
-
#: ../modules/partners/functions.php:11 ../modules/partners/module.php:16
|
4593 |
-
msgid "Partners"
|
4594 |
-
msgstr ""
|
4595 |
-
|
4596 |
-
#: ../modules/partners/functions.php:12
|
4597 |
-
msgid "Partner"
|
4598 |
-
msgstr ""
|
4599 |
-
|
4600 |
-
#: ../modules/partners/functions.php:13 ../modules/partners/functions.php:14
|
4601 |
-
msgid "Add Partner"
|
4602 |
-
msgstr ""
|
4603 |
-
|
4604 |
-
#: ../modules/partners/functions.php:16
|
4605 |
-
msgid "Edit Partner"
|
4606 |
-
msgstr ""
|
4607 |
-
|
4608 |
-
#: ../modules/partners/functions.php:17
|
4609 |
-
msgid "New Partner"
|
4610 |
-
msgstr ""
|
4611 |
-
|
4612 |
-
#: ../modules/partners/functions.php:18 ../modules/partners/functions.php:19
|
4613 |
-
msgid "View Partner"
|
4614 |
-
msgstr ""
|
4615 |
-
|
4616 |
-
#: ../modules/partners/functions.php:20
|
4617 |
-
msgid "Search Partner"
|
4618 |
-
msgstr ""
|
4619 |
-
|
4620 |
-
#: ../modules/partners/functions.php:21
|
4621 |
-
msgid "No Partner found"
|
4622 |
-
msgstr ""
|
4623 |
-
|
4624 |
-
#: ../modules/partners/functions.php:22
|
4625 |
-
msgid "No Partner found in Trash"
|
4626 |
-
msgstr ""
|
4627 |
-
|
4628 |
-
#: ../modules/partners/functions.php:23
|
4629 |
-
msgid "Parent Partner"
|
4630 |
-
msgstr ""
|
4631 |
-
|
4632 |
-
#: ../modules/partners/module.php:1633
|
4633 |
-
msgid ""
|
4634 |
-
"You do not have any partners at the moment. Go to <strong>WP Admin → "
|
4635 |
-
"Partners</strong> to add some."
|
4636 |
-
msgstr ""
|
4637 |
-
|
4638 |
-
#: ../modules/posts/module.php:13
|
4639 |
-
msgid "Posts"
|
4640 |
-
msgstr ""
|
4641 |
-
|
4642 |
-
#: ../modules/posts/module.php:2519
|
4643 |
-
msgid "You do not have any posts of that post type at the moment."
|
4644 |
-
msgstr ""
|
4645 |
-
|
4646 |
-
#: ../modules/progress-bars/module.php:13
|
4647 |
-
msgid "Progress Bar"
|
4648 |
-
msgstr ""
|
4649 |
-
|
4650 |
-
#: ../modules/progress-bars/module.php:24
|
4651 |
-
msgid "Label"
|
4652 |
-
msgstr ""
|
4653 |
-
|
4654 |
-
#: ../modules/progress-bars/module.php:37
|
4655 |
-
msgid "Amount"
|
4656 |
-
msgstr ""
|
4657 |
-
|
4658 |
-
#: ../modules/progress-bars/module.php:48
|
4659 |
-
#: ../modules/tp-gallery-slider/module.php:24
|
4660 |
-
msgid "Animation"
|
4661 |
-
msgstr ""
|
4662 |
-
|
4663 |
-
#: ../modules/progress-bars/module.php:58
|
4664 |
-
msgid "Enabled "
|
4665 |
-
msgstr ""
|
4666 |
-
|
4667 |
-
#: ../modules/progress-bars/module.php:65
|
4668 |
-
msgid "Animation Speed ( miliseconds )"
|
4669 |
-
msgstr ""
|
4670 |
-
|
4671 |
-
#: ../modules/progress-bars/module.php:291
|
4672 |
-
msgid "Inside "
|
4673 |
-
msgstr ""
|
4674 |
-
|
4675 |
-
#: ../modules/progress-bars/module.php:312
|
4676 |
-
#: ../modules/progress-bars/module.php:323
|
4677 |
-
#: ../modules/progress-bars/module.php:335
|
4678 |
-
#: ../modules/progress-bars/module.php:364
|
4679 |
-
#: ../modules/progress-bars/module.php:376
|
4680 |
-
#: ../modules/progress-bars/module.php:387
|
4681 |
-
#: ../modules/progress-bars/module.php:399
|
4682 |
-
#: ../modules/progress-bars/module.php:411
|
4683 |
-
#: ../modules/progress-bars/module.php:423
|
4684 |
-
#: ../modules/progress-bars/module.php:435
|
4685 |
-
msgid "bar"
|
4686 |
-
msgstr ""
|
4687 |
-
|
4688 |
-
#: ../modules/progress-bars/module.php:545
|
4689 |
-
#: ../modules/progress-bars/module.php:700
|
4690 |
-
msgid "Bar - Margin Bottom"
|
4691 |
-
msgstr ""
|
4692 |
-
|
4693 |
-
#: ../modules/progress-bars/module.php:557
|
4694 |
-
#: ../modules/progress-bars/module.php:712
|
4695 |
-
msgid "Bar - Padding Vertical"
|
4696 |
-
msgstr ""
|
4697 |
-
|
4698 |
-
#: ../modules/progress-bars/module.php:569
|
4699 |
-
#: ../modules/progress-bars/module.php:724
|
4700 |
-
msgid "Bar - Padding Horizontal"
|
4701 |
-
msgstr ""
|
4702 |
-
|
4703 |
-
#: ../modules/progress-bars/module.php:581
|
4704 |
-
#: ../modules/progress-bars/module.php:736
|
4705 |
-
msgid "Bar - Size"
|
4706 |
-
msgstr ""
|
4707 |
-
|
4708 |
-
#: ../modules/projects/functions.php:11 ../modules/projects/module.php:16
|
4709 |
-
msgid "Projects"
|
4710 |
-
msgstr ""
|
4711 |
-
|
4712 |
-
#: ../modules/projects/functions.php:12
|
4713 |
-
msgid "Project"
|
4714 |
-
msgstr ""
|
4715 |
-
|
4716 |
-
#: ../modules/projects/functions.php:13 ../modules/projects/functions.php:14
|
4717 |
-
msgid "Add Project"
|
4718 |
-
msgstr ""
|
4719 |
-
|
4720 |
-
#: ../modules/projects/functions.php:16
|
4721 |
-
msgid "Edit Project"
|
4722 |
-
msgstr ""
|
4723 |
-
|
4724 |
-
#: ../modules/projects/functions.php:17
|
4725 |
-
msgid "New Project"
|
4726 |
-
msgstr ""
|
4727 |
-
|
4728 |
-
#: ../modules/projects/functions.php:18 ../modules/projects/functions.php:19
|
4729 |
-
msgid "View Project"
|
4730 |
-
msgstr ""
|
4731 |
-
|
4732 |
-
#: ../modules/projects/functions.php:20
|
4733 |
-
msgid "Search Project"
|
4734 |
-
msgstr ""
|
4735 |
-
|
4736 |
-
#: ../modules/projects/functions.php:21
|
4737 |
-
msgid "No Project found"
|
4738 |
-
msgstr ""
|
4739 |
-
|
4740 |
-
#: ../modules/projects/functions.php:22
|
4741 |
-
msgid "No Project found in Trash"
|
4742 |
-
msgstr ""
|
4743 |
-
|
4744 |
-
#: ../modules/projects/functions.php:23
|
4745 |
-
msgid "Parent Project"
|
4746 |
-
msgstr ""
|
4747 |
-
|
4748 |
-
#: ../modules/projects/module.php:929
|
4749 |
-
msgid "Border Top Color"
|
4750 |
-
msgstr ""
|
4751 |
-
|
4752 |
-
#: ../modules/projects/module.php:940
|
4753 |
-
msgid "Border Top Width"
|
4754 |
-
msgstr ""
|
4755 |
-
|
4756 |
-
#: ../modules/projects/module.php:952
|
4757 |
-
msgid "Border Top Style"
|
4758 |
-
msgstr ""
|
4759 |
-
|
4760 |
-
#: ../modules/projects/module.php:1058 ../modules/testimonials/module.php:552
|
4761 |
-
#: ../modules/tp-comments/module.php:337
|
4762 |
-
msgid "Padding Top"
|
4763 |
-
msgstr ""
|
4764 |
-
|
4765 |
-
#: ../modules/projects/module.php:1410 ../modules/projects/module.php:1675
|
4766 |
-
msgid "Categories - Font Size"
|
4767 |
-
msgstr ""
|
4768 |
-
|
4769 |
-
#: ../modules/projects/module.php:1422 ../modules/projects/module.php:1687
|
4770 |
-
msgid "Categories - Line Height"
|
4771 |
-
msgstr ""
|
4772 |
-
|
4773 |
-
#: ../modules/projects/module.php:1434 ../modules/projects/module.php:1699
|
4774 |
-
msgid "Categories - Margin Bottom"
|
4775 |
-
msgstr ""
|
4776 |
-
|
4777 |
-
#: ../modules/projects/module.php:2289
|
4778 |
-
msgid ""
|
4779 |
-
"You do not have any projects at the moment. Go to <strong>WP Admin → "
|
4780 |
-
"Projects</strong> to add some."
|
4781 |
-
msgstr ""
|
4782 |
-
|
4783 |
-
#: ../modules/separator/module.php:24 ../modules/tabs/module.php:131
|
4784 |
-
#: ../modules/tabs/module.php:394
|
4785 |
-
msgid " Color"
|
4786 |
-
msgstr ""
|
4787 |
-
|
4788 |
-
#: ../modules/separator/module.php:72
|
4789 |
-
msgid "Thickness"
|
4790 |
-
msgstr ""
|
4791 |
-
|
4792 |
-
#: ../modules/separator/module.php:180
|
4793 |
-
msgid "TRANSPARENT SEPARATOR"
|
4794 |
-
msgstr ""
|
4795 |
-
|
4796 |
-
#: ../modules/sliders/module.php:13
|
4797 |
-
msgid "Slider (Revolution)"
|
4798 |
-
msgstr ""
|
4799 |
-
|
4800 |
-
#: ../modules/sliders/module.php:28
|
4801 |
-
msgid "-- Select --"
|
4802 |
-
msgstr ""
|
4803 |
-
|
4804 |
-
#: ../modules/sliders/module.php:45
|
4805 |
-
msgid "Revolution Slider"
|
4806 |
-
msgstr ""
|
4807 |
-
|
4808 |
-
#: ../modules/sliders/module.php:76
|
4809 |
-
msgid ""
|
4810 |
-
"Click the cog icon on the right of this box to choose which slider to show."
|
4811 |
-
msgstr ""
|
4812 |
-
|
4813 |
-
#: ../modules/social/module.php:13 ../modules/staff/module.php:519
|
4814 |
-
#: ../modules/staff/module.php:548 ../modules/staff/module.php:559
|
4815 |
-
#: ../modules/staff/module.php:571 ../modules/staff/module.php:600
|
4816 |
-
#: ../modules/staff/module.php:611 ../modules/staff/module.php:623
|
4817 |
-
#: ../modules/staff/module.php:636 ../modules/staff/module.php:648
|
4818 |
-
#: ../modules/staff/module.php:660 ../modules/staff/module.php:671
|
4819 |
-
#: ../modules/staff/module.php:682
|
4820 |
-
msgid "Social"
|
4821 |
-
msgstr ""
|
4822 |
-
|
4823 |
-
#: ../modules/social/module.php:28
|
4824 |
-
msgid "Twitter"
|
4825 |
-
msgstr ""
|
4826 |
-
|
4827 |
-
#: ../modules/social/module.php:34
|
4828 |
-
msgid "Facebook"
|
4829 |
-
msgstr ""
|
4830 |
-
|
4831 |
-
#: ../modules/social/module.php:40
|
4832 |
-
msgid "Youtube"
|
4833 |
-
msgstr ""
|
4834 |
-
|
4835 |
-
#: ../modules/social/module.php:46
|
4836 |
-
msgid "Vimeo"
|
4837 |
-
msgstr ""
|
4838 |
-
|
4839 |
-
#: ../modules/social/module.php:52
|
4840 |
-
msgid "Tumblr"
|
4841 |
-
msgstr ""
|
4842 |
-
|
4843 |
-
#: ../modules/social/module.php:58
|
4844 |
-
msgid "Pinterest"
|
4845 |
-
msgstr ""
|
4846 |
-
|
4847 |
-
#: ../modules/social/module.php:64
|
4848 |
-
msgid "LinkedIn"
|
4849 |
-
msgstr ""
|
4850 |
-
|
4851 |
-
#: ../modules/social/module.php:70
|
4852 |
-
msgid "Instagram"
|
4853 |
-
msgstr ""
|
4854 |
-
|
4855 |
-
#: ../modules/social/module.php:76
|
4856 |
-
msgid "GitHub"
|
4857 |
-
msgstr ""
|
4858 |
-
|
4859 |
-
#: ../modules/social/module.php:82
|
4860 |
-
msgid "Google Plus"
|
4861 |
-
msgstr ""
|
4862 |
-
|
4863 |
-
#: ../modules/social/module.php:88
|
4864 |
-
msgid "Dribbble"
|
4865 |
-
msgstr ""
|
4866 |
-
|
4867 |
-
#: ../modules/social/module.php:94
|
4868 |
-
msgid "Dropbox"
|
4869 |
-
msgstr ""
|
4870 |
-
|
4871 |
-
#: ../modules/social/module.php:100
|
4872 |
-
msgid "Flickr"
|
4873 |
-
msgstr ""
|
4874 |
-
|
4875 |
-
#: ../modules/social/module.php:106
|
4876 |
-
msgid "FourSquare"
|
4877 |
-
msgstr ""
|
4878 |
-
|
4879 |
-
#: ../modules/social/module.php:229 ../modules/social/module.php:336
|
4880 |
-
#: ../modules/social/module.php:407 ../modules/text-simple/module.php:1788
|
4881 |
-
#: ../modules/tp-gallery-slider/module.php:482
|
4882 |
-
#: ../modules/tp-meta/module.php:70 ../modules/tp-staff-social/module.php:140
|
4883 |
-
#: ../modules/tp-staff-social/module.php:247
|
4884 |
-
#: ../modules/tp-staff-social/module.php:318 ../modules/widgets/module.php:300
|
4885 |
-
msgid "Spacing"
|
4886 |
-
msgstr ""
|
4887 |
-
|
4888 |
-
#: ../modules/staff/functions.php:50 ../modules/staff/module.php:16
|
4889 |
-
msgid "Staff"
|
4890 |
-
msgstr ""
|
4891 |
-
|
4892 |
-
#: ../modules/staff/functions.php:51
|
4893 |
-
msgid "Staff Member"
|
4894 |
-
msgstr ""
|
4895 |
-
|
4896 |
-
#: ../modules/staff/functions.php:52
|
4897 |
-
msgid "Add Staff"
|
4898 |
-
msgstr ""
|
4899 |
-
|
4900 |
-
#: ../modules/staff/functions.php:53
|
4901 |
-
msgid "Add Staff Member"
|
4902 |
-
msgstr ""
|
4903 |
-
|
4904 |
-
#: ../modules/staff/functions.php:54
|
4905 |
-
msgid "Edit Staff"
|
4906 |
-
msgstr ""
|
4907 |
-
|
4908 |
-
#: ../modules/staff/functions.php:55
|
4909 |
-
msgid "Edit Staff Member"
|
4910 |
-
msgstr ""
|
4911 |
-
|
4912 |
-
#: ../modules/staff/functions.php:56
|
4913 |
-
msgid "New Staff Member"
|
4914 |
-
msgstr ""
|
4915 |
-
|
4916 |
-
#: ../modules/staff/functions.php:57
|
4917 |
-
msgid "View Staff"
|
4918 |
-
msgstr ""
|
4919 |
-
|
4920 |
-
#: ../modules/staff/functions.php:58
|
4921 |
-
msgid "View Staff Member"
|
4922 |
-
msgstr ""
|
4923 |
-
|
4924 |
-
#: ../modules/staff/functions.php:59
|
4925 |
-
msgid "Search Staff"
|
4926 |
-
msgstr ""
|
4927 |
-
|
4928 |
-
#: ../modules/staff/functions.php:60
|
4929 |
-
msgid "No Staff found"
|
4930 |
-
msgstr ""
|
4931 |
-
|
4932 |
-
#: ../modules/staff/functions.php:61
|
4933 |
-
msgid "No Staff found in Trash"
|
4934 |
-
msgstr ""
|
4935 |
-
|
4936 |
-
#: ../modules/staff/functions.php:62
|
4937 |
-
msgid "Parent Staff Member"
|
4938 |
-
msgstr ""
|
4939 |
-
|
4940 |
-
#: ../modules/staff/module.php:36
|
4941 |
-
msgid "Link"
|
4942 |
-
msgstr ""
|
4943 |
-
|
4944 |
-
#: ../modules/staff/module.php:42
|
4945 |
-
msgid "Link to staff member page"
|
4946 |
-
msgstr ""
|
4947 |
-
|
4948 |
-
#: ../modules/staff/module.php:46
|
4949 |
-
msgid "Do NOT link to staff member page"
|
4950 |
-
msgstr ""
|
4951 |
-
|
4952 |
-
#: ../modules/staff/module.php:174
|
4953 |
-
msgid "Social - Link Behaviour"
|
4954 |
-
msgstr ""
|
4955 |
-
|
4956 |
-
#: ../modules/staff/module.php:180
|
4957 |
-
msgid "Open in same tab"
|
4958 |
-
msgstr ""
|
4959 |
-
|
4960 |
-
#: ../modules/staff/module.php:184
|
4961 |
-
msgid "Open in new tab"
|
4962 |
-
msgstr ""
|
4963 |
-
|
4964 |
-
#: ../modules/staff/module.php:188 ../modules/woocommerce/module.php:1344
|
4965 |
-
#: ../modules/woocommerce/module.php:1355
|
4966 |
-
#: ../modules/woocommerce/module.php:1366
|
4967 |
-
#: ../modules/woocommerce/module.php:1378
|
4968 |
-
#: ../modules/woocommerce/module.php:1393
|
4969 |
-
#: ../modules/woocommerce/module.php:1401
|
4970 |
-
#: ../modules/woocommerce/module.php:1412
|
4971 |
-
#: ../modules/woocommerce/module.php:1423
|
4972 |
-
#: ../modules/woocommerce/module.php:1435
|
4973 |
-
#: ../modules/woocommerce/module.php:1450
|
4974 |
-
msgid "Other"
|
4975 |
-
msgstr ""
|
4976 |
-
|
4977 |
-
#: ../modules/staff/module.php:224
|
4978 |
-
msgid "Social Links"
|
4979 |
-
msgstr ""
|
4980 |
-
|
4981 |
-
#: ../modules/staff/module.php:1323 ../modules/staff/module.php:1576
|
4982 |
-
msgid "Social - Margin Bottom"
|
4983 |
-
msgstr ""
|
4984 |
-
|
4985 |
-
#: ../modules/staff/module.php:1335 ../modules/staff/module.php:1588
|
4986 |
-
msgid "Social - Padding Vertical"
|
4987 |
-
msgstr ""
|
4988 |
-
|
4989 |
-
#: ../modules/staff/module.php:1347 ../modules/staff/module.php:1600
|
4990 |
-
msgid "Social - Padding Horizontal"
|
4991 |
-
msgstr ""
|
4992 |
-
|
4993 |
-
#: ../modules/staff/module.php:1359 ../modules/staff/module.php:1612
|
4994 |
-
msgid "Social Icon - Size"
|
4995 |
-
msgstr ""
|
4996 |
-
|
4997 |
-
#: ../modules/staff/module.php:1431 ../modules/staff/module.php:1684
|
4998 |
-
#: ../modules/testimonials/module.php:1189
|
4999 |
-
#: ../modules/testimonials/module.php:1458
|
5000 |
-
msgid "Position - Font Size"
|
5001 |
-
msgstr ""
|
5002 |
-
|
5003 |
-
#: ../modules/staff/module.php:1443 ../modules/staff/module.php:1696
|
5004 |
-
msgid "Position - Margin Bottom"
|
5005 |
-
msgstr ""
|
5006 |
-
|
5007 |
-
#: ../modules/staff/module.php:1455 ../modules/staff/module.php:1708
|
5008 |
-
msgid "Position - Padding Vertical"
|
5009 |
-
msgstr ""
|
5010 |
-
|
5011 |
-
#: ../modules/staff/module.php:2248
|
5012 |
-
msgid ""
|
5013 |
-
"You do not have staff at the moment. Go to <strong>WP Admin → Staff</"
|
5014 |
-
"strong> to add some."
|
5015 |
-
msgstr ""
|
5016 |
-
|
5017 |
-
#: ../modules/tabs/module.php:13
|
5018 |
-
msgid "Tabs"
|
5019 |
-
msgstr ""
|
5020 |
-
|
5021 |
-
#: ../modules/tabs/module.php:23
|
5022 |
-
msgid "(hidden) Tabs Content"
|
5023 |
-
msgstr ""
|
5024 |
-
|
5025 |
-
#: ../modules/tabs/module.php:31
|
5026 |
-
msgid "(hidden) Tabs Nav"
|
5027 |
-
msgstr ""
|
5028 |
-
|
5029 |
-
#: ../modules/tabs/module.php:52 ../modules/tabs/module.php:63
|
5030 |
-
#: ../modules/tabs/module.php:75 ../modules/tabs/module.php:104
|
5031 |
-
#: ../modules/tabs/module.php:115 ../modules/tabs/module.php:127
|
5032 |
-
#: ../modules/tabs/module.php:139 ../modules/tabs/module.php:150
|
5033 |
-
#: ../modules/tabs/module.php:162 ../modules/tabs/module.php:177
|
5034 |
-
#: ../modules/tabs/module.php:189 ../modules/tabs/module.php:201
|
5035 |
-
#: ../modules/tabs/module.php:213 ../modules/tabs/module.php:227
|
5036 |
-
#: ../modules/tp-gallery-slider/module.php:444
|
5037 |
-
#: ../modules/tp-gallery-slider/module.php:455
|
5038 |
-
#: ../modules/tp-gallery-slider/module.php:466
|
5039 |
-
#: ../modules/tp-gallery-slider/module.php:478
|
5040 |
-
#: ../modules/tp-gallery-slider/module.php:490
|
5041 |
-
msgid "Navigation"
|
5042 |
-
msgstr ""
|
5043 |
-
|
5044 |
-
#: ../modules/tabs/module.php:204
|
5045 |
-
msgid "Spacing - Items"
|
5046 |
-
msgstr ""
|
5047 |
-
|
5048 |
-
#: ../modules/tabs/module.php:218 ../modules/tabs/module.php:616
|
5049 |
-
#: ../modules/tabs/module.php:761
|
5050 |
-
msgid "Spacing - Nav and Content"
|
5051 |
-
msgstr ""
|
5052 |
-
|
5053 |
-
#: ../modules/tabs/module.php:243 ../modules/tabs/module.php:254
|
5054 |
-
#: ../modules/tabs/module.php:265 ../modules/tabs/module.php:294
|
5055 |
-
#: ../modules/tabs/module.php:305
|
5056 |
-
msgid "Navigation Active"
|
5057 |
-
msgstr ""
|
5058 |
-
|
5059 |
-
#: ../modules/tabs/module.php:257 ../modules/woocommerce/module.php:1075
|
5060 |
-
msgid "Border Bottom Color"
|
5061 |
-
msgstr ""
|
5062 |
-
|
5063 |
-
#: ../modules/tabs/module.php:566 ../modules/tabs/module.php:711
|
5064 |
-
msgid "Nav - Font Size"
|
5065 |
-
msgstr ""
|
5066 |
-
|
5067 |
-
#: ../modules/tabs/module.php:578 ../modules/tabs/module.php:723
|
5068 |
-
msgid "Nav - Padding Vertical"
|
5069 |
-
msgstr ""
|
5070 |
-
|
5071 |
-
#: ../modules/tabs/module.php:590 ../modules/tabs/module.php:735
|
5072 |
-
msgid "Nav - Padding Horizontal"
|
5073 |
-
msgstr ""
|
5074 |
-
|
5075 |
-
#: ../modules/tabs/module.php:602 ../modules/tabs/module.php:747
|
5076 |
-
#: ../modules/tp-gallery-slider/module.php:625
|
5077 |
-
#: ../modules/tp-gallery-slider/module.php:768
|
5078 |
-
msgid "Nav - Spacing"
|
5079 |
-
msgstr ""
|
5080 |
-
|
5081 |
-
#: ../modules/tabs/module.php:818
|
5082 |
-
msgid "Click to edit"
|
5083 |
-
msgstr ""
|
5084 |
-
|
5085 |
-
#: ../modules/testimonials/functions.php:26
|
5086 |
-
#: ../modules/testimonials/module.php:16
|
5087 |
-
msgid "Testimonials"
|
5088 |
-
msgstr ""
|
5089 |
-
|
5090 |
-
#: ../modules/testimonials/functions.php:27
|
5091 |
-
msgid "Testimonial"
|
5092 |
-
msgstr ""
|
5093 |
-
|
5094 |
-
#: ../modules/testimonials/functions.php:28
|
5095 |
-
#: ../modules/testimonials/functions.php:29
|
5096 |
-
msgid "Add Testimonial"
|
5097 |
-
msgstr ""
|
5098 |
-
|
5099 |
-
#: ../modules/testimonials/functions.php:31
|
5100 |
-
msgid "Edit Testimonial"
|
5101 |
-
msgstr ""
|
5102 |
-
|
5103 |
-
#: ../modules/testimonials/functions.php:32
|
5104 |
-
msgid "New Testimonial"
|
5105 |
-
msgstr ""
|
5106 |
-
|
5107 |
-
#: ../modules/testimonials/functions.php:33
|
5108 |
-
#: ../modules/testimonials/functions.php:34
|
5109 |
-
msgid "View Testimonial"
|
5110 |
-
msgstr ""
|
5111 |
-
|
5112 |
-
#: ../modules/testimonials/functions.php:35
|
5113 |
-
msgid "Search Testimonials"
|
5114 |
-
msgstr ""
|
5115 |
-
|
5116 |
-
#: ../modules/testimonials/functions.php:36
|
5117 |
-
msgid "No Testimonials found"
|
5118 |
-
msgstr ""
|
5119 |
-
|
5120 |
-
#: ../modules/testimonials/functions.php:37
|
5121 |
-
msgid "No Testimonials found in Trash"
|
5122 |
-
msgstr ""
|
5123 |
-
|
5124 |
-
#: ../modules/testimonials/functions.php:38
|
5125 |
-
msgid "Parent Testimonial"
|
5126 |
-
msgstr ""
|
5127 |
-
|
5128 |
-
#: ../modules/testimonials/module.php:187
|
5129 |
-
msgid "Quote"
|
5130 |
-
msgstr ""
|
5131 |
-
|
5132 |
-
#: ../modules/testimonials/module.php:191 ../modules/tp-meta/module.php:210
|
5133 |
-
#: ../modules/tp-meta/module.php:222 ../modules/tp-meta/module.php:234
|
5134 |
-
msgid "Avatar"
|
5135 |
-
msgstr ""
|
5136 |
-
|
5137 |
-
#: ../modules/testimonials/module.php:195
|
5138 |
-
#: ../modules/tp-comments-form/module.php:1032
|
5139 |
-
msgid "Name"
|
5140 |
-
msgstr ""
|
5141 |
-
|
5142 |
-
#: ../modules/testimonials/module.php:423
|
5143 |
-
#: ../modules/testimonials/module.php:435
|
5144 |
-
#: ../modules/testimonials/module.php:464
|
5145 |
-
#: ../modules/testimonials/module.php:475
|
5146 |
-
#: ../modules/testimonials/module.php:486
|
5147 |
-
#: ../modules/testimonials/module.php:498
|
5148 |
-
#: ../modules/testimonials/module.php:513
|
5149 |
-
#: ../modules/testimonials/module.php:524
|
5150 |
-
#: ../modules/testimonials/module.php:537
|
5151 |
-
#: ../modules/testimonials/module.php:549
|
5152 |
-
#: ../modules/testimonials/module.php:561
|
5153 |
-
#: ../modules/testimonials/module.php:572
|
5154 |
-
msgid "quote"
|
5155 |
-
msgstr ""
|
5156 |
-
|
5157 |
-
#: ../modules/testimonials/module.php:540
|
5158 |
-
#: ../modules/tp-comments/module.php:349 ../modules/widgets/module.php:413
|
5159 |
-
#: ../modules/woocommerce/module.php:1179
|
5160 |
-
msgid "Padding Bottom"
|
5161 |
-
msgstr ""
|
5162 |
-
|
5163 |
-
#: ../modules/testimonials/module.php:603
|
5164 |
-
#: ../modules/testimonials/module.php:641
|
5165 |
-
#: ../modules/testimonials/module.php:653
|
5166 |
-
#: ../modules/testimonials/module.php:665
|
5167 |
-
#: ../modules/testimonials/module.php:678
|
5168 |
-
msgid "author"
|
5169 |
-
msgstr ""
|
5170 |
-
|
5171 |
-
#: ../modules/testimonials/module.php:606
|
5172 |
-
msgid "Inside Bottom"
|
5173 |
-
msgstr ""
|
5174 |
-
|
5175 |
-
#: ../modules/testimonials/module.php:610
|
5176 |
-
msgid "Inside Top"
|
5177 |
-
msgstr ""
|
5178 |
-
|
5179 |
-
#: ../modules/testimonials/module.php:614
|
5180 |
-
msgid "Outside Bottom"
|
5181 |
-
msgstr ""
|
5182 |
-
|
5183 |
-
#: ../modules/testimonials/module.php:618
|
5184 |
-
msgid "Outside Top"
|
5185 |
-
msgstr ""
|
5186 |
-
|
5187 |
-
#: ../modules/testimonials/module.php:656
|
5188 |
-
#: ../modules/text-simple/module.php:1687 ../modules/widgets/module.php:568
|
5189 |
-
msgid "Margin Left"
|
5190 |
-
msgstr ""
|
5191 |
-
|
5192 |
-
#: ../modules/testimonials/module.php:695
|
5193 |
-
#: ../modules/testimonials/module.php:706
|
5194 |
-
#: ../modules/testimonials/module.php:718
|
5195 |
-
#: ../modules/testimonials/module.php:747
|
5196 |
-
#: ../modules/testimonials/module.php:758
|
5197 |
-
#: ../modules/testimonials/module.php:770
|
5198 |
-
#: ../modules/testimonials/module.php:783
|
5199 |
-
#: ../modules/testimonials/module.php:794
|
5200 |
-
msgid "avatar"
|
5201 |
-
msgstr ""
|
5202 |
-
|
5203 |
-
#: ../modules/testimonials/module.php:813
|
5204 |
-
#: ../modules/testimonials/module.php:824
|
5205 |
-
#: ../modules/testimonials/module.php:836
|
5206 |
-
#: ../modules/testimonials/module.php:851
|
5207 |
-
#: ../modules/testimonials/module.php:863
|
5208 |
-
#: ../modules/testimonials/module.php:875
|
5209 |
-
msgid "name"
|
5210 |
-
msgstr ""
|
5211 |
-
|
5212 |
-
#: ../modules/testimonials/module.php:891
|
5213 |
-
#: ../modules/testimonials/module.php:902
|
5214 |
-
#: ../modules/testimonials/module.php:914
|
5215 |
-
#: ../modules/testimonials/module.php:929
|
5216 |
-
msgid "position"
|
5217 |
-
msgstr ""
|
5218 |
-
|
5219 |
-
#: ../modules/testimonials/module.php:1005
|
5220 |
-
#: ../modules/testimonials/module.php:1274
|
5221 |
-
msgid "Quote - Font Size"
|
5222 |
-
msgstr ""
|
5223 |
-
|
5224 |
-
#: ../modules/testimonials/module.php:1017
|
5225 |
-
#: ../modules/testimonials/module.php:1286
|
5226 |
-
msgid "Quote - Line Height"
|
5227 |
-
msgstr ""
|
5228 |
-
|
5229 |
-
#: ../modules/testimonials/module.php:1029
|
5230 |
-
#: ../modules/testimonials/module.php:1298
|
5231 |
-
msgid "Quote - Margin Bottom"
|
5232 |
-
msgstr ""
|
5233 |
-
|
5234 |
-
#: ../modules/testimonials/module.php:1041
|
5235 |
-
#: ../modules/testimonials/module.php:1310
|
5236 |
-
msgid "Quote - Padding Bottom"
|
5237 |
-
msgstr ""
|
5238 |
-
|
5239 |
-
#: ../modules/testimonials/module.php:1053
|
5240 |
-
#: ../modules/testimonials/module.php:1322
|
5241 |
-
msgid "Quote - Padding Top"
|
5242 |
-
msgstr ""
|
5243 |
-
|
5244 |
-
#: ../modules/testimonials/module.php:1065
|
5245 |
-
#: ../modules/testimonials/module.php:1334
|
5246 |
-
msgid "Author - Margin Bottom"
|
5247 |
-
msgstr ""
|
5248 |
-
|
5249 |
-
#: ../modules/testimonials/module.php:1077
|
5250 |
-
#: ../modules/testimonials/module.php:1346
|
5251 |
-
msgid "Author - Margin Top"
|
5252 |
-
msgstr ""
|
5253 |
-
|
5254 |
-
#: ../modules/testimonials/module.php:1089
|
5255 |
-
#: ../modules/testimonials/module.php:1358
|
5256 |
-
msgid "Author - Margin Left"
|
5257 |
-
msgstr ""
|
5258 |
-
|
5259 |
-
#: ../modules/testimonials/module.php:1102
|
5260 |
-
#: ../modules/testimonials/module.php:1371
|
5261 |
-
msgid "Author - Margin Right"
|
5262 |
-
msgstr ""
|
5263 |
-
|
5264 |
-
#: ../modules/testimonials/module.php:1127
|
5265 |
-
#: ../modules/testimonials/module.php:1396
|
5266 |
-
msgid "Avatar - Padding"
|
5267 |
-
msgstr ""
|
5268 |
-
|
5269 |
-
#: ../modules/testimonials/module.php:1153
|
5270 |
-
#: ../modules/testimonials/module.php:1422
|
5271 |
-
msgid "Name - Font Size"
|
5272 |
-
msgstr ""
|
5273 |
-
|
5274 |
-
#: ../modules/testimonials/module.php:1165
|
5275 |
-
#: ../modules/testimonials/module.php:1434
|
5276 |
-
msgid "Name - Margin Bottom"
|
5277 |
-
msgstr ""
|
5278 |
-
|
5279 |
-
#: ../modules/testimonials/module.php:1177
|
5280 |
-
#: ../modules/testimonials/module.php:1446
|
5281 |
-
msgid "Name - Margin Top"
|
5282 |
-
msgstr ""
|
5283 |
-
|
5284 |
-
#: ../modules/testimonials/module.php:1858
|
5285 |
-
msgid ""
|
5286 |
-
"You do not have any testimonials at the moment. Go to <strong>WP Admin "
|
5287 |
-
"→ Testimonials</strong> to add some."
|
5288 |
-
msgstr ""
|
5289 |
-
|
5290 |
-
#: ../modules/text-simple/module.php:25
|
5291 |
-
msgid ""
|
5292 |
-
"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod "
|
5293 |
-
"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, "
|
5294 |
-
"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo "
|
5295 |
-
"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse "
|
5296 |
-
"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat "
|
5297 |
-
"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
|
5298 |
-
msgstr ""
|
5299 |
-
|
5300 |
-
#: ../modules/text-simple/module.php:233
|
5301 |
-
msgid "Margin Bottom ( paragraph )"
|
5302 |
-
msgstr ""
|
5303 |
-
|
5304 |
-
#: ../modules/text-simple/module.php:287 ../modules/text-simple/module.php:298
|
5305 |
-
#: ../modules/text-simple/module.php:310 ../modules/text-simple/module.php:339
|
5306 |
-
#: ../modules/text-simple/module.php:351 ../modules/text-simple/module.php:363
|
5307 |
-
#: ../modules/text-simple/module.php:374 ../modules/text-simple/module.php:385
|
5308 |
-
#: ../modules/text-simple/module.php:397 ../modules/text-simple/module.php:412
|
5309 |
-
#: ../modules/text-simple/module.php:423 ../modules/text-simple/module.php:435
|
5310 |
-
#: ../modules/text-simple/module.php:448 ../modules/text-simple/module.php:460
|
5311 |
-
#: ../modules/text-simple/module.php:471
|
5312 |
-
msgid "h1"
|
5313 |
-
msgstr ""
|
5314 |
-
|
5315 |
-
#: ../modules/text-simple/module.php:723 ../modules/text-simple/module.php:734
|
5316 |
-
#: ../modules/text-simple/module.php:746 ../modules/text-simple/module.php:775
|
5317 |
-
#: ../modules/text-simple/module.php:787 ../modules/text-simple/module.php:799
|
5318 |
-
#: ../modules/text-simple/module.php:810 ../modules/text-simple/module.php:821
|
5319 |
-
#: ../modules/text-simple/module.php:833 ../modules/text-simple/module.php:848
|
5320 |
-
#: ../modules/text-simple/module.php:859 ../modules/text-simple/module.php:871
|
5321 |
-
#: ../modules/text-simple/module.php:884 ../modules/text-simple/module.php:896
|
5322 |
-
#: ../modules/text-simple/module.php:907
|
5323 |
-
msgid "h3"
|
5324 |
-
msgstr ""
|
5325 |
-
|
5326 |
-
#: ../modules/text-simple/module.php:1622
|
5327 |
-
#: ../modules/text-simple/module.php:1633
|
5328 |
-
#: ../modules/text-simple/module.php:1645
|
5329 |
-
#: ../modules/text-simple/module.php:1660
|
5330 |
-
#: ../modules/text-simple/module.php:1671
|
5331 |
-
#: ../modules/text-simple/module.php:1683
|
5332 |
-
#: ../modules/text-simple/module.php:1695
|
5333 |
-
#: ../modules/text-simple/module.php:1782
|
5334 |
-
#: ../modules/text-simple/module.php:1796
|
5335 |
-
#: ../modules/text-simple/module.php:1808
|
5336 |
-
#: ../modules/text-simple/module.php:1819
|
5337 |
-
#: ../modules/text-simple/module.php:1831
|
5338 |
-
#: ../modules/text-simple/module.php:1860
|
5339 |
-
#: ../modules/text-simple/module.php:1872
|
5340 |
-
#: ../modules/text-simple/module.php:1884
|
5341 |
-
#: ../modules/text-simple/module.php:1895
|
5342 |
-
#: ../modules/text-simple/module.php:1908
|
5343 |
-
msgid "lists"
|
5344 |
-
msgstr ""
|
5345 |
-
|
5346 |
-
#: ../modules/text-simple/module.php:1705 ../modules/widgets/module.php:610
|
5347 |
-
msgid "Armenian"
|
5348 |
-
msgstr ""
|
5349 |
-
|
5350 |
-
#: ../modules/text-simple/module.php:1709 ../modules/widgets/module.php:614
|
5351 |
-
msgid "Circle"
|
5352 |
-
msgstr ""
|
5353 |
-
|
5354 |
-
#: ../modules/text-simple/module.php:1713 ../modules/widgets/module.php:618
|
5355 |
-
msgid "cjk-ideographic"
|
5356 |
-
msgstr ""
|
5357 |
-
|
5358 |
-
#: ../modules/text-simple/module.php:1717 ../modules/widgets/module.php:622
|
5359 |
-
msgid "Decimal"
|
5360 |
-
msgstr ""
|
5361 |
-
|
5362 |
-
#: ../modules/text-simple/module.php:1721 ../modules/widgets/module.php:626
|
5363 |
-
msgid "Decimal Leading Zero"
|
5364 |
-
msgstr ""
|
5365 |
-
|
5366 |
-
#: ../modules/text-simple/module.php:1725 ../modules/widgets/module.php:630
|
5367 |
-
msgid "Hebrew"
|
5368 |
-
msgstr ""
|
5369 |
-
|
5370 |
-
#: ../modules/text-simple/module.php:1729 ../modules/widgets/module.php:634
|
5371 |
-
msgid "Hiragana"
|
5372 |
-
msgstr ""
|
5373 |
-
|
5374 |
-
#: ../modules/text-simple/module.php:1733 ../modules/widgets/module.php:638
|
5375 |
-
msgid "Hiragana Iroha"
|
5376 |
-
msgstr ""
|
5377 |
-
|
5378 |
-
#: ../modules/text-simple/module.php:1737 ../modules/widgets/module.php:642
|
5379 |
-
msgid "Katakana"
|
5380 |
-
msgstr ""
|
5381 |
-
|
5382 |
-
#: ../modules/text-simple/module.php:1741 ../modules/widgets/module.php:646
|
5383 |
-
msgid "Katakana Iroha"
|
5384 |
-
msgstr ""
|
5385 |
-
|
5386 |
-
#: ../modules/text-simple/module.php:1745 ../modules/widgets/module.php:650
|
5387 |
-
msgid "Lower Alpha"
|
5388 |
-
msgstr ""
|
5389 |
-
|
5390 |
-
#: ../modules/text-simple/module.php:1749 ../modules/widgets/module.php:654
|
5391 |
-
msgid "Lower Greek"
|
5392 |
-
msgstr ""
|
5393 |
-
|
5394 |
-
#: ../modules/text-simple/module.php:1753 ../modules/widgets/module.php:658
|
5395 |
-
msgid "Lower Latin"
|
5396 |
-
msgstr ""
|
5397 |
-
|
5398 |
-
#: ../modules/text-simple/module.php:1757 ../modules/widgets/module.php:662
|
5399 |
-
msgid "Lower Roman"
|
5400 |
-
msgstr ""
|
5401 |
-
|
5402 |
-
#: ../modules/text-simple/module.php:1765 ../modules/widgets/module.php:670
|
5403 |
-
msgid "Upper Alpha"
|
5404 |
-
msgstr ""
|
5405 |
-
|
5406 |
-
#: ../modules/text-simple/module.php:1769 ../modules/widgets/module.php:674
|
5407 |
-
msgid "Upper Latin"
|
5408 |
-
msgstr ""
|
5409 |
-
|
5410 |
-
#: ../modules/text-simple/module.php:1773 ../modules/widgets/module.php:678
|
5411 |
-
msgid "Upper Roman"
|
5412 |
-
msgstr ""
|
5413 |
-
|
5414 |
-
#: ../modules/text-simple/module.php:1777 ../modules/widgets/module.php:682
|
5415 |
-
msgid "Inherit"
|
5416 |
-
msgstr ""
|
5417 |
-
|
5418 |
-
#: ../modules/text-simple/module.php:1800
|
5419 |
-
msgid "Item - BG Color"
|
5420 |
-
msgstr ""
|
5421 |
-
|
5422 |
-
#: ../modules/text-simple/module.php:1811
|
5423 |
-
msgid "Item - Border Color"
|
5424 |
-
msgstr ""
|
5425 |
-
|
5426 |
-
#: ../modules/text-simple/module.php:1822
|
5427 |
-
msgid "Item - Border Width"
|
5428 |
-
msgstr ""
|
5429 |
-
|
5430 |
-
#: ../modules/text-simple/module.php:1834
|
5431 |
-
msgid "Item - Borders"
|
5432 |
-
msgstr ""
|
5433 |
-
|
5434 |
-
#: ../modules/text-simple/module.php:1863
|
5435 |
-
msgid "Item - Border Radius - Top"
|
5436 |
-
msgstr ""
|
5437 |
-
|
5438 |
-
#: ../modules/text-simple/module.php:1875
|
5439 |
-
msgid "Item - Border Radius - Bottom"
|
5440 |
-
msgstr ""
|
5441 |
-
|
5442 |
-
#: ../modules/text-simple/module.php:1887 ../modules/widgets/module.php:705
|
5443 |
-
msgid "Item - Padding Vertical"
|
5444 |
-
msgstr ""
|
5445 |
-
|
5446 |
-
#: ../modules/text-simple/module.php:1899 ../modules/widgets/module.php:717
|
5447 |
-
msgid "Item - Padding Horizontal"
|
5448 |
-
msgstr ""
|
5449 |
-
|
5450 |
-
#: ../modules/text-simple/module.php:1924
|
5451 |
-
#: ../modules/text-simple/module.php:1935
|
5452 |
-
#: ../modules/text-simple/module.php:1947
|
5453 |
-
#: ../modules/text-simple/module.php:1976
|
5454 |
-
#: ../modules/text-simple/module.php:1988
|
5455 |
-
#: ../modules/text-simple/module.php:1999
|
5456 |
-
#: ../modules/text-simple/module.php:2010
|
5457 |
-
#: ../modules/text-simple/module.php:2022
|
5458 |
-
#: ../modules/text-simple/module.php:2037
|
5459 |
-
#: ../modules/text-simple/module.php:2048
|
5460 |
-
#: ../modules/text-simple/module.php:2061
|
5461 |
-
#: ../modules/text-simple/module.php:2073
|
5462 |
-
#: ../modules/text-simple/module.php:2085
|
5463 |
-
#: ../modules/tp-comments-form/module.php:242
|
5464 |
-
#: ../modules/tp-comments-form/module.php:253
|
5465 |
-
#: ../modules/tp-comments-form/module.php:265
|
5466 |
-
#: ../modules/tp-comments-form/module.php:294
|
5467 |
-
#: ../modules/tp-comments-form/module.php:306
|
5468 |
-
#: ../modules/tp-comments-form/module.php:317
|
5469 |
-
#: ../modules/tp-comments-form/module.php:328
|
5470 |
-
#: ../modules/tp-comments-form/module.php:340
|
5471 |
-
#: ../modules/tp-comments-form/module.php:355
|
5472 |
-
#: ../modules/tp-comments-form/module.php:366
|
5473 |
-
#: ../modules/tp-comments-form/module.php:379
|
5474 |
-
#: ../modules/tp-comments-form/module.php:391
|
5475 |
-
#: ../modules/tp-comments-form/module.php:403
|
5476 |
-
msgid "inputs"
|
5477 |
-
msgstr ""
|
5478 |
-
|
5479 |
-
#: ../modules/text-simple/module.php:2171
|
5480 |
-
#: ../modules/text-simple/module.php:2472
|
5481 |
-
msgid "H1 - Font Size"
|
5482 |
-
msgstr ""
|
5483 |
-
|
5484 |
-
#: ../modules/text-simple/module.php:2183
|
5485 |
-
#: ../modules/text-simple/module.php:2484
|
5486 |
-
msgid "H1 - Line Height"
|
5487 |
-
msgstr ""
|
5488 |
-
|
5489 |
-
#: ../modules/text-simple/module.php:2195
|
5490 |
-
#: ../modules/text-simple/module.php:2496
|
5491 |
-
msgid "H1 - Margin Bottom"
|
5492 |
-
msgstr ""
|
5493 |
-
|
5494 |
-
#: ../modules/tp-comments-form/module.php:13
|
5495 |
-
msgid "Comment Form"
|
5496 |
-
msgstr ""
|
5497 |
-
|
5498 |
-
#: ../modules/tp-comments-form/module.php:108
|
5499 |
-
#: ../modules/tp-comments/module.php:754
|
5500 |
-
msgid "Color - Link"
|
5501 |
-
msgstr ""
|
5502 |
-
|
5503 |
-
#: ../modules/tp-comments-form/module.php:651
|
5504 |
-
#: ../modules/tp-comments-form/module.php:842
|
5505 |
-
msgid "Heading - Font Size"
|
5506 |
-
msgstr ""
|
5507 |
-
|
5508 |
-
#: ../modules/tp-comments-form/module.php:663
|
5509 |
-
#: ../modules/tp-comments-form/module.php:854
|
5510 |
-
msgid "Heading - Line Height"
|
5511 |
-
msgstr ""
|
5512 |
-
|
5513 |
-
#: ../modules/tp-comments-form/module.php:675
|
5514 |
-
#: ../modules/tp-comments-form/module.php:866
|
5515 |
-
msgid "Heading - Margin Bottom"
|
5516 |
-
msgstr ""
|
5517 |
-
|
5518 |
-
#: ../modules/tp-comments-form/module.php:687
|
5519 |
-
#: ../modules/tp-comments-form/module.php:878
|
5520 |
-
msgid "Inputs - Font Size"
|
5521 |
-
msgstr ""
|
5522 |
-
|
5523 |
-
#: ../modules/tp-comments-form/module.php:699
|
5524 |
-
#: ../modules/tp-comments-form/module.php:890
|
5525 |
-
msgid "Inputs - Line Height"
|
5526 |
-
msgstr ""
|
5527 |
-
|
5528 |
-
#: ../modules/tp-comments-form/module.php:711
|
5529 |
-
#: ../modules/tp-comments-form/module.php:902
|
5530 |
-
msgid "Inputs - Margin Bottom"
|
5531 |
-
msgstr ""
|
5532 |
-
|
5533 |
-
#: ../modules/tp-comments-form/module.php:723
|
5534 |
-
#: ../modules/tp-comments-form/module.php:914
|
5535 |
-
msgid "Inputs - Padding Vertical"
|
5536 |
-
msgstr ""
|
5537 |
-
|
5538 |
-
#: ../modules/tp-comments-form/module.php:735
|
5539 |
-
#: ../modules/tp-comments-form/module.php:926
|
5540 |
-
msgid "Inputs - Padding Horizontal"
|
5541 |
-
msgstr ""
|
5542 |
-
|
5543 |
-
#: ../modules/tp-comments-form/module.php:1024
|
5544 |
-
msgid "SUBMIT YOUR COMMENT"
|
5545 |
-
msgstr ""
|
5546 |
-
|
5547 |
-
#: ../modules/tp-comments-form/module.php:1028
|
5548 |
-
msgid "Leave a Comment"
|
5549 |
-
msgstr ""
|
5550 |
-
|
5551 |
-
#: ../modules/tp-comments-form/module.php:1029
|
5552 |
-
#, php-format
|
5553 |
-
msgid "Reply to %s."
|
5554 |
-
msgstr ""
|
5555 |
-
|
5556 |
-
#: ../modules/tp-comments-form/module.php:1030
|
5557 |
-
msgid "Comment"
|
5558 |
-
msgstr ""
|
5559 |
-
|
5560 |
-
#: ../modules/tp-comments-form/module.php:1033
|
5561 |
-
msgid "Email"
|
5562 |
-
msgstr ""
|
5563 |
-
|
5564 |
-
#: ../modules/tp-comments-form/module.php:1034
|
5565 |
-
msgid "Website"
|
5566 |
-
msgstr ""
|
5567 |
-
|
5568 |
-
#: ../modules/tp-comments/functions.php:18
|
5569 |
-
msgid "Pingback:"
|
5570 |
-
msgstr ""
|
5571 |
-
|
5572 |
-
#: ../modules/tp-comments/functions.php:18
|
5573 |
-
msgid "(Edit)"
|
5574 |
-
msgstr ""
|
5575 |
-
|
5576 |
-
#: ../modules/tp-comments/functions.php:44
|
5577 |
-
msgid "Your comment is awaiting moderation."
|
5578 |
-
msgstr ""
|
5579 |
-
|
5580 |
-
#: ../modules/tp-comments/module.php:15 ../modules/tp-meta/module.php:46
|
5581 |
-
msgid "Comments"
|
5582 |
-
msgstr ""
|
5583 |
-
|
5584 |
-
#: ../modules/tp-comments/module.php:142 ../modules/tp-comments/module.php:153
|
5585 |
-
#: ../modules/tp-comments/module.php:165 ../modules/tp-comments/module.php:194
|
5586 |
-
#: ../modules/tp-comments/module.php:206 ../modules/tp-comments/module.php:218
|
5587 |
-
#: ../modules/tp-comments/module.php:230 ../modules/tp-comments/module.php:242
|
5588 |
-
msgid "comment"
|
5589 |
-
msgstr ""
|
5590 |
-
|
5591 |
-
#: ../modules/tp-comments/module.php:258 ../modules/tp-comments/module.php:269
|
5592 |
-
#: ../modules/tp-comments/module.php:281 ../modules/tp-comments/module.php:310
|
5593 |
-
#: ../modules/tp-comments/module.php:322 ../modules/tp-comments/module.php:334
|
5594 |
-
#: ../modules/tp-comments/module.php:346 ../modules/tp-comments/module.php:358
|
5595 |
-
#: ../modules/tp-comments/module.php:370
|
5596 |
-
msgid "comment inner"
|
5597 |
-
msgstr ""
|
5598 |
-
|
5599 |
-
#: ../modules/tp-comments/module.php:386 ../modules/tp-comments/module.php:397
|
5600 |
-
#: ../modules/tp-comments/module.php:409 ../modules/tp-comments/module.php:438
|
5601 |
-
#: ../modules/tp-comments/module.php:450 ../modules/tp-comments/module.php:462
|
5602 |
-
#: ../modules/tp-comments/module.php:474 ../modules/tp-comments/module.php:486
|
5603 |
-
msgid "info"
|
5604 |
-
msgstr ""
|
5605 |
-
|
5606 |
-
#: ../modules/tp-comments/module.php:503 ../modules/tp-comments/module.php:514
|
5607 |
-
#: ../modules/tp-comments/module.php:525 ../modules/tp-comments/module.php:537
|
5608 |
-
#: ../modules/tp-comments/module.php:552
|
5609 |
-
msgid "info - author"
|
5610 |
-
msgstr ""
|
5611 |
-
|
5612 |
-
#: ../modules/tp-comments/module.php:568 ../modules/tp-comments/module.php:579
|
5613 |
-
#: ../modules/tp-comments/module.php:591 ../modules/tp-comments/module.php:606
|
5614 |
-
msgid "info - date"
|
5615 |
-
msgstr ""
|
5616 |
-
|
5617 |
-
#: ../modules/tp-comments/module.php:622 ../modules/tp-comments/module.php:633
|
5618 |
-
#: ../modules/tp-comments/module.php:645 ../modules/tp-comments/module.php:660
|
5619 |
-
msgid "info - reply"
|
5620 |
-
msgstr ""
|
5621 |
-
|
5622 |
-
#: ../modules/tp-comments/module.php:676 ../modules/tp-comments/module.php:687
|
5623 |
-
#: ../modules/tp-comments/module.php:699 ../modules/tp-comments/module.php:728
|
5624 |
-
#: ../modules/tp-comments/module.php:740 ../modules/tp-comments/module.php:751
|
5625 |
-
#: ../modules/tp-comments/module.php:762 ../modules/tp-comments/module.php:773
|
5626 |
-
#: ../modules/tp-comments/module.php:785 ../modules/tp-comments/module.php:800
|
5627 |
-
#: ../modules/tp-comments/module.php:811 ../modules/tp-comments/module.php:824
|
5628 |
-
#: ../modules/tp-comments/module.php:836
|
5629 |
-
msgid "main"
|
5630 |
-
msgstr ""
|
5631 |
-
|
5632 |
-
#: ../modules/tp-comments/module.php:898
|
5633 |
-
#: ../modules/tp-comments/module.php:1161
|
5634 |
-
msgid "Comment - Margin Bottom"
|
5635 |
-
msgstr ""
|
5636 |
-
|
5637 |
-
#: ../modules/tp-comments/module.php:910
|
5638 |
-
#: ../modules/tp-comments/module.php:1173
|
5639 |
-
msgid "Comment - Padding Vertical"
|
5640 |
-
msgstr ""
|
5641 |
-
|
5642 |
-
#: ../modules/tp-comments/module.php:922
|
5643 |
-
#: ../modules/tp-comments/module.php:1185
|
5644 |
-
msgid "Comment - Padding Horizontal"
|
5645 |
-
msgstr ""
|
5646 |
-
|
5647 |
-
#: ../modules/tp-comments/module.php:934
|
5648 |
-
#: ../modules/tp-comments/module.php:1197
|
5649 |
-
msgid "C. Inner - Margin Bottom"
|
5650 |
-
msgstr ""
|
5651 |
-
|
5652 |
-
#: ../modules/tp-comments/module.php:946
|
5653 |
-
#: ../modules/tp-comments/module.php:1209
|
5654 |
-
msgid "C. Inner - Padding Top"
|
5655 |
-
msgstr ""
|
5656 |
-
|
5657 |
-
#: ../modules/tp-comments/module.php:958
|
5658 |
-
#: ../modules/tp-comments/module.php:1221
|
5659 |
-
msgid "C. Inner - Padding Bottom"
|
5660 |
-
msgstr ""
|
5661 |
-
|
5662 |
-
#: ../modules/tp-comments/module.php:970
|
5663 |
-
#: ../modules/tp-comments/module.php:1233
|
5664 |
-
msgid "C. Inner - Padding Horizontal"
|
5665 |
-
msgstr ""
|
5666 |
-
|
5667 |
-
#: ../modules/tp-comments/module.php:982
|
5668 |
-
#: ../modules/tp-comments/module.php:1245
|
5669 |
-
msgid "Info - Margin Bottom"
|
5670 |
-
msgstr ""
|
5671 |
-
|
5672 |
-
#: ../modules/tp-comments/module.php:994
|
5673 |
-
#: ../modules/tp-comments/module.php:1257
|
5674 |
-
msgid "Info - Padding Vertical"
|
5675 |
-
msgstr ""
|
5676 |
-
|
5677 |
-
#: ../modules/tp-comments/module.php:1006
|
5678 |
-
#: ../modules/tp-comments/module.php:1269
|
5679 |
-
msgid "Info - Padding Horizontal"
|
5680 |
-
msgstr ""
|
5681 |
-
|
5682 |
-
#: ../modules/tp-comments/module.php:1018
|
5683 |
-
#: ../modules/tp-comments/module.php:1281
|
5684 |
-
msgid "Info Author- Font Size"
|
5685 |
-
msgstr ""
|
5686 |
-
|
5687 |
-
#: ../modules/tp-comments/module.php:1030
|
5688 |
-
#: ../modules/tp-comments/module.php:1293
|
5689 |
-
msgid "Info Date - Font Size"
|
5690 |
-
msgstr ""
|
5691 |
-
|
5692 |
-
#: ../modules/tp-comments/module.php:1042
|
5693 |
-
#: ../modules/tp-comments/module.php:1305
|
5694 |
-
msgid "Reply - Font Size"
|
5695 |
-
msgstr ""
|
5696 |
-
|
5697 |
-
#: ../modules/tp-comments/module.php:1054
|
5698 |
-
#: ../modules/tp-comments/module.php:1317
|
5699 |
-
msgid "Main - Font Size"
|
5700 |
-
msgstr ""
|
5701 |
-
|
5702 |
-
#: ../modules/tp-comments/module.php:1066
|
5703 |
-
#: ../modules/tp-comments/module.php:1329
|
5704 |
-
msgid "Main - Line Height"
|
5705 |
-
msgstr ""
|
5706 |
-
|
5707 |
-
#: ../modules/tp-comments/module.php:1514
|
5708 |
-
msgid "Comments are closed."
|
5709 |
-
msgstr ""
|
5710 |
-
|
5711 |
-
#: ../modules/tp-content/module.php:13
|
5712 |
-
msgid "The Content"
|
5713 |
-
msgstr ""
|
5714 |
-
|
5715 |
-
#: ../modules/tp-downloads-button/module.php:26
|
5716 |
-
msgid "DOWNLOAD"
|
5717 |
-
msgstr ""
|
5718 |
-
|
5719 |
-
#: ../modules/tp-excerpt/module.php:13
|
5720 |
-
msgid "The Excerpt"
|
5721 |
-
msgstr ""
|
5722 |
-
|
5723 |
-
#: ../modules/tp-excerpt/module.php:151 ../modules/tp-excerpt/module.php:162
|
5724 |
-
#: ../modules/tp-excerpt/module.php:174 ../modules/tp-excerpt/module.php:189
|
5725 |
-
#: ../modules/tp-excerpt/module.php:200 ../modules/tp-excerpt/module.php:212
|
5726 |
-
#: ../modules/tp-title/module.php:151 ../modules/tp-title/module.php:162
|
5727 |
-
#: ../modules/tp-title/module.php:174 ../modules/tp-title/module.php:189
|
5728 |
-
#: ../modules/tp-title/module.php:200 ../modules/tp-title/module.php:212
|
5729 |
-
msgid "Typography"
|
5730 |
-
msgstr ""
|
5731 |
-
|
5732 |
-
#: ../modules/tp-excerpt/module.php:414
|
5733 |
-
msgid ""
|
5734 |
-
"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod "
|
5735 |
-
"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, "
|
5736 |
-
"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo "
|
5737 |
-
"consequat."
|
5738 |
-
msgstr ""
|
5739 |
-
|
5740 |
-
#: ../modules/tp-gallery-slider/module.php:13
|
5741 |
-
msgid "Gallery Slider"
|
5742 |
-
msgstr ""
|
5743 |
-
|
5744 |
-
#: ../modules/tp-gallery-slider/module.php:30
|
5745 |
-
msgid "Fade"
|
5746 |
-
msgstr ""
|
5747 |
-
|
5748 |
-
#: ../modules/tp-gallery-slider/module.php:34
|
5749 |
-
msgid "Fade Up Slide"
|
5750 |
-
msgstr ""
|
5751 |
-
|
5752 |
-
#: ../modules/tp-gallery-slider/module.php:38
|
5753 |
-
msgid "Slide"
|
5754 |
-
msgstr ""
|
5755 |
-
|
5756 |
-
#: ../modules/tp-gallery-slider/module.php:42
|
5757 |
-
msgid "Back Slide"
|
5758 |
-
msgstr ""
|
5759 |
-
|
5760 |
-
#: ../modules/tp-gallery-slider/module.php:46
|
5761 |
-
msgid "Go Down"
|
5762 |
-
msgstr ""
|
5763 |
-
|
5764 |
-
#: ../modules/tp-gallery-slider/module.php:52
|
5765 |
-
msgid "Animation Speed (ms)"
|
5766 |
-
msgstr ""
|
5767 |
-
|
5768 |
-
#: ../modules/tp-gallery-slider/module.php:58
|
5769 |
-
msgid "Autoplay Speed (ms)"
|
5770 |
-
msgstr ""
|
5771 |
-
|
5772 |
-
#: ../modules/tp-gallery-slider/module.php:64
|
5773 |
-
msgid "Flexible Height"
|
5774 |
-
msgstr ""
|
5775 |
-
|
5776 |
-
#: ../modules/tp-gallery-slider/module.php:212
|
5777 |
-
#: ../modules/tp-gallery-slider/module.php:223
|
5778 |
-
#: ../modules/tp-gallery-slider/module.php:235
|
5779 |
-
#: ../modules/tp-gallery-slider/module.php:264
|
5780 |
-
#: ../modules/tp-gallery-slider/module.php:276
|
5781 |
-
#: ../modules/tp-gallery-slider/module.php:288
|
5782 |
-
#: ../modules/tp-gallery-slider/module.php:300
|
5783 |
-
#: ../modules/tp-gallery-slider/module.php:312
|
5784 |
-
msgid "slider"
|
5785 |
-
msgstr ""
|
5786 |
-
|
5787 |
-
#: ../modules/tp-gallery-slider/module.php:328
|
5788 |
-
#: ../modules/tp-gallery-slider/module.php:339
|
5789 |
-
#: ../modules/tp-gallery-slider/module.php:351
|
5790 |
-
#: ../modules/tp-gallery-slider/module.php:380
|
5791 |
-
#: ../modules/tp-gallery-slider/module.php:392
|
5792 |
-
#: ../modules/tp-gallery-slider/module.php:404
|
5793 |
-
#: ../modules/tp-gallery-slider/module.php:416
|
5794 |
-
#: ../modules/tp-gallery-slider/module.php:428
|
5795 |
-
msgid "slider - item"
|
5796 |
-
msgstr ""
|
5797 |
-
|
5798 |
-
#: ../modules/tp-gallery-slider/module.php:447
|
5799 |
-
msgid "Color - Active"
|
5800 |
-
msgstr ""
|
5801 |
-
|
5802 |
-
#: ../modules/tp-gallery-slider/module.php:458
|
5803 |
-
msgid "Margin Vertical"
|
5804 |
-
msgstr ""
|
5805 |
-
|
5806 |
-
#: ../modules/tp-gallery-slider/module.php:553
|
5807 |
-
#: ../modules/tp-gallery-slider/module.php:696
|
5808 |
-
msgid "Slider - Padding Vertical"
|
5809 |
-
msgstr ""
|
5810 |
-
|
5811 |
-
#: ../modules/tp-gallery-slider/module.php:565
|
5812 |
-
#: ../modules/tp-gallery-slider/module.php:708
|
5813 |
-
msgid "Slider - Padding Horizontal"
|
5814 |
-
msgstr ""
|
5815 |
-
|
5816 |
-
#: ../modules/tp-gallery-slider/module.php:577
|
5817 |
-
#: ../modules/tp-gallery-slider/module.php:720
|
5818 |
-
msgid "Slider Item - Padding Vertical"
|
5819 |
-
msgstr ""
|
5820 |
-
|
5821 |
-
#: ../modules/tp-gallery-slider/module.php:589
|
5822 |
-
#: ../modules/tp-gallery-slider/module.php:732
|
5823 |
-
msgid "Slider Item - Padding Horizontal"
|
5824 |
-
msgstr ""
|
5825 |
-
|
5826 |
-
#: ../modules/tp-gallery-slider/module.php:601
|
5827 |
-
#: ../modules/tp-gallery-slider/module.php:744
|
5828 |
-
msgid "Nav - Margin Vertical"
|
5829 |
-
msgstr ""
|
5830 |
-
|
5831 |
-
#: ../modules/tp-gallery-slider/module.php:613
|
5832 |
-
#: ../modules/tp-gallery-slider/module.php:756
|
5833 |
-
msgid "Nav - Size"
|
5834 |
-
msgstr ""
|
5835 |
-
|
5836 |
-
#: ../modules/tp-meta/module.php:30
|
5837 |
-
msgid "Date"
|
5838 |
-
msgstr ""
|
5839 |
-
|
5840 |
-
#: ../modules/tp-meta/module.php:34
|
5841 |
-
msgid "Author"
|
5842 |
-
msgstr ""
|
5843 |
-
|
5844 |
-
#: ../modules/tp-meta/module.php:38
|
5845 |
-
msgid "Category"
|
5846 |
-
msgstr ""
|
5847 |
-
|
5848 |
-
#: ../modules/tp-meta/module.php:53
|
5849 |
-
msgid "Format"
|
5850 |
-
msgstr ""
|
5851 |
-
|
5852 |
-
#: ../modules/tp-meta/module.php:325
|
5853 |
-
msgid "Link - Color - Hover"
|
5854 |
-
msgstr ""
|
5855 |
-
|
5856 |
-
#: ../modules/tp-meta/module.php:491
|
5857 |
-
msgid "No Comments"
|
5858 |
-
msgstr ""
|
5859 |
-
|
5860 |
-
#: ../modules/tp-meta/module.php:493
|
5861 |
-
msgid " Comments"
|
5862 |
-
msgstr ""
|
5863 |
-
|
5864 |
-
#: ../modules/tp-meta/module.php:495
|
5865 |
-
msgid "1 Comment"
|
5866 |
-
msgstr ""
|
5867 |
-
|
5868 |
-
#: ../modules/tp-meta/module.php:526
|
5869 |
-
msgid "John Doe"
|
5870 |
-
msgstr ""
|
5871 |
-
|
5872 |
-
#: ../modules/tp-meta/module.php:540
|
5873 |
-
msgid "Category One"
|
5874 |
-
msgstr ""
|
5875 |
-
|
5876 |
-
#: ../modules/tp-meta/module.php:540
|
5877 |
-
msgid "Category Two"
|
5878 |
-
msgstr ""
|
5879 |
-
|
5880 |
-
#: ../modules/tp-meta/module.php:567
|
5881 |
-
msgid "One"
|
5882 |
-
msgstr ""
|
5883 |
-
|
5884 |
-
#: ../modules/tp-meta/module.php:567
|
5885 |
-
msgid "Two"
|
5886 |
-
msgstr ""
|
5887 |
-
|
5888 |
-
#: ../modules/tp-meta/module.php:567
|
5889 |
-
msgid "Three"
|
5890 |
-
msgstr ""
|
5891 |
-
|
5892 |
-
#: ../modules/tp-meta/module.php:594
|
5893 |
-
msgid "10 Comments"
|
5894 |
-
msgstr ""
|
5895 |
-
|
5896 |
-
#: ../modules/tp-staff-social/module.php:13
|
5897 |
-
msgid "Staff Social"
|
5898 |
-
msgstr ""
|
5899 |
-
|
5900 |
-
#: ../modules/widgets/module.php:16 ../modules/widgets/module.php:51
|
5901 |
-
msgid "Widgets"
|
5902 |
-
msgstr ""
|
5903 |
-
|
5904 |
-
#: ../modules/widgets/module.php:28
|
5905 |
-
msgid "Choose sidebar"
|
5906 |
-
msgstr ""
|
5907 |
-
|
5908 |
-
#: ../modules/widgets/module.php:58
|
5909 |
-
msgid "Widgets Per Row"
|
5910 |
-
msgstr ""
|
5911 |
-
|
5912 |
-
#: ../modules/widgets/module.php:197 ../modules/widgets/module.php:208
|
5913 |
-
#: ../modules/widgets/module.php:220 ../modules/widgets/module.php:249
|
5914 |
-
#: ../modules/widgets/module.php:261 ../modules/widgets/module.php:273
|
5915 |
-
#: ../modules/widgets/module.php:285 ../modules/widgets/module.php:297
|
5916 |
-
#: ../modules/widgets/module.php:309
|
5917 |
-
msgid "widget"
|
5918 |
-
msgstr ""
|
5919 |
-
|
5920 |
-
#: ../modules/widgets/module.php:533
|
5921 |
-
msgid "Separator Color"
|
5922 |
-
msgstr ""
|
5923 |
-
|
5924 |
-
#: ../modules/widgets/module.php:541 ../modules/widgets/module.php:553
|
5925 |
-
#: ../modules/widgets/module.php:564 ../modules/widgets/module.php:576
|
5926 |
-
#: ../modules/widgets/module.php:588 ../modules/widgets/module.php:601
|
5927 |
-
#: ../modules/widgets/module.php:687 ../modules/widgets/module.php:701
|
5928 |
-
#: ../modules/widgets/module.php:713 ../modules/widgets/module.php:726
|
5929 |
-
msgid "content lists"
|
5930 |
-
msgstr ""
|
5931 |
-
|
5932 |
-
#: ../modules/widgets/module.php:544
|
5933 |
-
msgid "Separator Width"
|
5934 |
-
msgstr ""
|
5935 |
-
|
5936 |
-
#: ../modules/widgets/module.php:693
|
5937 |
-
msgid "Item - Margin Bottom"
|
5938 |
-
msgstr ""
|
5939 |
-
|
5940 |
-
#: ../modules/widgets/module.php:790 ../modules/widgets/module.php:946
|
5941 |
-
msgid "Widget - Padding Vertical"
|
5942 |
-
msgstr ""
|
5943 |
-
|
5944 |
-
#: ../modules/widgets/module.php:802 ../modules/widgets/module.php:958
|
5945 |
-
msgid "Widget - Padding Horizontal"
|
5946 |
-
msgstr ""
|
5947 |
-
|
5948 |
-
#: ../modules/widgets/module.php:850 ../modules/widgets/module.php:1006
|
5949 |
-
msgid "Title - Padding Bottom"
|
5950 |
-
msgstr ""
|
5951 |
-
|
5952 |
-
#: ../modules/widgets/module.php:1074
|
5953 |
-
msgid ""
|
5954 |
-
"The sidebar you have chosen is empty. Click the refresh icon on the right "
|
5955 |
-
"when you add a widget."
|
5956 |
-
msgstr ""
|
5957 |
-
|
5958 |
-
#: ../modules/widgets/module.php:1082
|
5959 |
-
msgid ""
|
5960 |
-
"Click the cog icon on the right of this box to choose which sidebar to show."
|
5961 |
-
msgstr ""
|
5962 |
-
|
5963 |
-
#: ../modules/woocommerce/module.php:13
|
5964 |
-
msgid "Products ( Woo )"
|
5965 |
-
msgstr ""
|
5966 |
-
|
5967 |
-
#: ../modules/woocommerce/module.php:137 ../modules/woocommerce/module.php:210
|
5968 |
-
#: ../modules/woocommerce/module.php:527 ../modules/woocommerce/module.php:538
|
5969 |
-
#: ../modules/woocommerce/module.php:550 ../modules/woocommerce/module.php:579
|
5970 |
-
#: ../modules/woocommerce/module.php:590 ../modules/woocommerce/module.php:602
|
5971 |
-
#: ../modules/woocommerce/module.php:613 ../modules/woocommerce/module.php:625
|
5972 |
-
#: ../modules/woocommerce/module.php:640 ../modules/woocommerce/module.php:651
|
5973 |
-
#: ../modules/woocommerce/module.php:663 ../modules/woocommerce/module.php:677
|
5974 |
-
#: ../modules/woocommerce/module.php:686
|
5975 |
-
msgid "Price"
|
5976 |
-
msgstr ""
|
5977 |
-
|
5978 |
-
#: ../modules/woocommerce/module.php:226
|
5979 |
-
#: ../modules/woocommerce/module.php:1233
|
5980 |
-
#: ../modules/woocommerce/module.php:1244
|
5981 |
-
#: ../modules/woocommerce/module.php:1255
|
5982 |
-
#: ../modules/woocommerce/module.php:1267
|
5983 |
-
#: ../modules/woocommerce/module.php:1282
|
5984 |
-
#: ../modules/woocommerce/module.php:1293
|
5985 |
-
msgid "Price Secondary"
|
5986 |
-
msgstr ""
|
5987 |
-
|
5988 |
-
#: ../modules/woocommerce/module.php:230
|
5989 |
-
msgid "Add to cart"
|
5990 |
-
msgstr ""
|
5991 |
-
|
5992 |
-
#: ../modules/woocommerce/module.php:234
|
5993 |
-
msgid "Details"
|
5994 |
-
msgstr ""
|
5995 |
-
|
5996 |
-
#: ../modules/woocommerce/module.php:1086
|
5997 |
-
msgid "Border Bottom Width"
|
5998 |
-
msgstr ""
|
5999 |
-
|
6000 |
-
#: ../modules/woocommerce/module.php:1236
|
6001 |
-
msgid "Color ( Non-discount price )"
|
6002 |
-
msgstr ""
|
6003 |
-
|
6004 |
-
#: ../modules/woocommerce/module.php:1339
|
6005 |
-
msgid "Add to cart - Text"
|
6006 |
-
msgstr ""
|
6007 |
-
|
6008 |
-
#: ../modules/woocommerce/module.php:1347
|
6009 |
-
msgid "Add to cart - Color"
|
6010 |
-
msgstr ""
|
6011 |
-
|
6012 |
-
#: ../modules/woocommerce/module.php:1358
|
6013 |
-
#: ../modules/woocommerce/module.php:1706
|
6014 |
-
#: ../modules/woocommerce/module.php:1983
|
6015 |
-
msgid "Add to cart - Font Size"
|
6016 |
-
msgstr ""
|
6017 |
-
|
6018 |
-
#: ../modules/woocommerce/module.php:1370
|
6019 |
-
msgid "Add to cart - Font Weight"
|
6020 |
-
msgstr ""
|
6021 |
-
|
6022 |
-
#: ../modules/woocommerce/module.php:1385
|
6023 |
-
msgid "Add to cart - Font Family"
|
6024 |
-
msgstr ""
|
6025 |
-
|
6026 |
-
#: ../modules/woocommerce/module.php:1396
|
6027 |
-
msgid "Details - Text"
|
6028 |
-
msgstr ""
|
6029 |
-
|
6030 |
-
#: ../modules/woocommerce/module.php:1404
|
6031 |
-
msgid "Details - Color"
|
6032 |
-
msgstr ""
|
6033 |
-
|
6034 |
-
#: ../modules/woocommerce/module.php:1415
|
6035 |
-
#: ../modules/woocommerce/module.php:1718
|
6036 |
-
#: ../modules/woocommerce/module.php:1995
|
6037 |
-
msgid "Details - Font Size"
|
6038 |
-
msgstr ""
|
6039 |
-
|
6040 |
-
#: ../modules/woocommerce/module.php:1427
|
6041 |
-
msgid "Details - Font Weight"
|
6042 |
-
msgstr ""
|
6043 |
-
|
6044 |
-
#: ../modules/woocommerce/module.php:1442
|
6045 |
-
msgid "Details - Font Family"
|
6046 |
-
msgstr ""
|
6047 |
-
|
6048 |
-
#: ../modules/woocommerce/module.php:1526
|
6049 |
-
#: ../modules/woocommerce/module.php:1803
|
6050 |
-
msgid "Price - Font Size"
|
6051 |
-
msgstr ""
|
6052 |
-
|
6053 |
-
#: ../modules/woocommerce/module.php:1538
|
6054 |
-
#: ../modules/woocommerce/module.php:1815
|
6055 |
-
msgid "Price - Margin"
|
6056 |
-
msgstr ""
|
6057 |
-
|
6058 |
-
#: ../modules/woocommerce/module.php:1550
|
6059 |
-
#: ../modules/woocommerce/module.php:1827
|
6060 |
-
msgid "Price - Padding"
|
6061 |
-
msgstr ""
|
6062 |
-
|
6063 |
-
#: ../modules/woocommerce/module.php:1622
|
6064 |
-
#: ../modules/woocommerce/module.php:1899
|
6065 |
-
msgid "Title - Margin Horizontal"
|
6066 |
-
msgstr ""
|
6067 |
-
|
6068 |
-
#: ../modules/woocommerce/module.php:1670
|
6069 |
-
#: ../modules/woocommerce/module.php:1947
|
6070 |
-
msgid "Excerpt - Padding Bottom"
|
6071 |
-
msgstr ""
|
6072 |
-
|
6073 |
-
#: ../modules/woocommerce/module.php:1682
|
6074 |
-
#: ../modules/woocommerce/module.php:1959
|
6075 |
-
msgid "Price 2nd - Font Size"
|
6076 |
-
msgstr ""
|
6077 |
-
|
6078 |
-
#: ../modules/woocommerce/module.php:2504
|
6079 |
-
msgid ""
|
6080 |
-
"You do not have products at the moment. Go to <strong>WP Admin → "
|
6081 |
-
"Products</strong> to add some."
|
6082 |
-
msgstr ""
|
6083 |
-
|
6084 |
-
#: ../modules/woocommerce/module.php:2512
|
6085 |
-
msgid ""
|
6086 |
-
"You do not have WooCommerce installed at the moment. You need to install it "
|
6087 |
-
"to use this module."
|
6088 |
-
msgstr ""
|
6089 |
-
|
6090 |
-
#: ../wp-updates-plugin.php:86
|
6091 |
-
msgid ""
|
6092 |
-
"An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
|
6093 |
-
"\" onclick=\"document.location.reload(); return false;\">Try again</a>"
|
6094 |
-
msgstr ""
|
6095 |
-
|
6096 |
-
#: ../wp-updates-plugin.php:90
|
6097 |
-
msgid "An unknown error occurred"
|
6098 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
modules/blog/module.php
CHANGED
@@ -2665,9 +2665,13 @@ class DSLC_Blog extends DSLC_Module {
|
|
2665 |
'posts_per_page' => $options['amount'],
|
2666 |
'order' => $options['order'],
|
2667 |
'orderby' => $options['orderby'],
|
2668 |
-
'offset' => $query_offset
|
2669 |
);
|
2670 |
|
|
|
|
|
|
|
|
|
|
|
2671 |
if ( defined('DOING_AJAX') && DOING_AJAX ) {
|
2672 |
$args['post_status'] = array( 'publish', 'private' );
|
2673 |
}
|
2665 |
'posts_per_page' => $options['amount'],
|
2666 |
'order' => $options['order'],
|
2667 |
'orderby' => $options['orderby'],
|
|
|
2668 |
);
|
2669 |
|
2670 |
+
// Add offset
|
2671 |
+
if ( $query_offset > 0 ) {
|
2672 |
+
$args['offset'] = $query_offset;
|
2673 |
+
}
|
2674 |
+
|
2675 |
if ( defined('DOING_AJAX') && DOING_AJAX ) {
|
2676 |
$args['post_status'] = array( 'publish', 'private' );
|
2677 |
}
|
modules/downloads/module.php
CHANGED
@@ -2071,9 +2071,13 @@ class DSLC_Downloads extends DSLC_Module {
|
|
2071 |
'posts_per_page' => $options['amount'],
|
2072 |
'order' => $options['order'],
|
2073 |
'orderby' => $options['orderby'],
|
2074 |
-
'offset' => $query_offset
|
2075 |
);
|
2076 |
|
|
|
|
|
|
|
|
|
|
|
2077 |
if ( defined('DOING_AJAX') && DOING_AJAX ) {
|
2078 |
$args['post_status'] = array( 'publish', 'private' );
|
2079 |
}
|
2071 |
'posts_per_page' => $options['amount'],
|
2072 |
'order' => $options['order'],
|
2073 |
'orderby' => $options['orderby'],
|
|
|
2074 |
);
|
2075 |
|
2076 |
+
// Add offset
|
2077 |
+
if ( $query_offset > 0 ) {
|
2078 |
+
$args['offset'] = $query_offset;
|
2079 |
+
}
|
2080 |
+
|
2081 |
if ( defined('DOING_AJAX') && DOING_AJAX ) {
|
2082 |
$args['post_status'] = array( 'publish', 'private' );
|
2083 |
}
|
modules/galleries/module.php
CHANGED
@@ -2192,9 +2192,13 @@ class DSLC_Galleries extends DSLC_Module {
|
|
2192 |
'posts_per_page' => $options['amount'],
|
2193 |
'order' => $options['order'],
|
2194 |
'orderby' => $options['orderby'],
|
2195 |
-
'offset' => $query_offset
|
2196 |
);
|
2197 |
|
|
|
|
|
|
|
|
|
|
|
2198 |
if ( defined('DOING_AJAX') && DOING_AJAX ) {
|
2199 |
$args['post_status'] = array( 'publish', 'private' );
|
2200 |
}
|
2192 |
'posts_per_page' => $options['amount'],
|
2193 |
'order' => $options['order'],
|
2194 |
'orderby' => $options['orderby'],
|
|
|
2195 |
);
|
2196 |
|
2197 |
+
// Add offset
|
2198 |
+
if ( $query_offset > 0 ) {
|
2199 |
+
$args['offset'] = $query_offset;
|
2200 |
+
}
|
2201 |
+
|
2202 |
if ( defined('DOING_AJAX') && DOING_AJAX ) {
|
2203 |
$args['post_status'] = array( 'publish', 'private' );
|
2204 |
}
|
modules/partners/module.php
CHANGED
@@ -1359,9 +1359,13 @@ class DSLC_Partners extends DSLC_Module {
|
|
1359 |
'posts_per_page' => $options['amount'],
|
1360 |
'order' => $options['order'],
|
1361 |
'orderby' => $options['orderby'],
|
1362 |
-
'offset' => $query_offset
|
1363 |
);
|
1364 |
|
|
|
|
|
|
|
|
|
|
|
1365 |
if ( defined('DOING_AJAX') && DOING_AJAX ) {
|
1366 |
$args['post_status'] = array( 'publish', 'private' );
|
1367 |
}
|
1359 |
'posts_per_page' => $options['amount'],
|
1360 |
'order' => $options['order'],
|
1361 |
'orderby' => $options['orderby'],
|
|
|
1362 |
);
|
1363 |
|
1364 |
+
// Add offset
|
1365 |
+
if ( $query_offset > 0 ) {
|
1366 |
+
$args['offset'] = $query_offset;
|
1367 |
+
}
|
1368 |
+
|
1369 |
if ( defined('DOING_AJAX') && DOING_AJAX ) {
|
1370 |
$args['post_status'] = array( 'publish', 'private' );
|
1371 |
}
|
modules/posts/module.php
CHANGED
@@ -2243,9 +2243,13 @@ class DSLC_Posts extends DSLC_Module {
|
|
2243 |
'posts_per_page' => $options['amount'],
|
2244 |
'order' => $options['order'],
|
2245 |
'orderby' => $options['orderby'],
|
2246 |
-
'offset' => $query_offset
|
2247 |
);
|
2248 |
|
|
|
|
|
|
|
|
|
|
|
2249 |
if ( defined('DOING_AJAX') && DOING_AJAX ) {
|
2250 |
$args['post_status'] = array( 'publish', 'private' );
|
2251 |
}
|
2243 |
'posts_per_page' => $options['amount'],
|
2244 |
'order' => $options['order'],
|
2245 |
'orderby' => $options['orderby'],
|
|
|
2246 |
);
|
2247 |
|
2248 |
+
// Add offset
|
2249 |
+
if ( $query_offset > 0 ) {
|
2250 |
+
$args['offset'] = $query_offset;
|
2251 |
+
}
|
2252 |
+
|
2253 |
if ( defined('DOING_AJAX') && DOING_AJAX ) {
|
2254 |
$args['post_status'] = array( 'publish', 'private' );
|
2255 |
}
|
modules/projects/module.php
CHANGED
@@ -2050,9 +2050,13 @@ class DSLC_Projects extends DSLC_Module {
|
|
2050 |
'posts_per_page' => $options['amount'],
|
2051 |
'order' => $options['order'],
|
2052 |
'orderby' => $options['orderby'],
|
2053 |
-
'offset' => $query_offset
|
2054 |
);
|
2055 |
|
|
|
|
|
|
|
|
|
|
|
2056 |
if ( defined('DOING_AJAX') && DOING_AJAX ) {
|
2057 |
$args['post_status'] = array( 'publish', 'private' );
|
2058 |
}
|
2050 |
'posts_per_page' => $options['amount'],
|
2051 |
'order' => $options['order'],
|
2052 |
'orderby' => $options['orderby'],
|
|
|
2053 |
);
|
2054 |
|
2055 |
+
// Add offset
|
2056 |
+
if ( $query_offset > 0 ) {
|
2057 |
+
$args['offset'] = $query_offset;
|
2058 |
+
}
|
2059 |
+
|
2060 |
if ( defined('DOING_AJAX') && DOING_AJAX ) {
|
2061 |
$args['post_status'] = array( 'publish', 'private' );
|
2062 |
}
|
modules/staff/module.php
CHANGED
@@ -1881,9 +1881,13 @@ class DSLC_Staff extends DSLC_Module {
|
|
1881 |
'posts_per_page' => $options['amount'],
|
1882 |
'order' => $options['order'],
|
1883 |
'orderby' => $options['orderby'],
|
1884 |
-
'offset' => $query_offset
|
1885 |
);
|
1886 |
|
|
|
|
|
|
|
|
|
|
|
1887 |
if ( defined('DOING_AJAX') && DOING_AJAX ) {
|
1888 |
$args['post_status'] = array( 'publish', 'private' );
|
1889 |
}
|
1881 |
'posts_per_page' => $options['amount'],
|
1882 |
'order' => $options['order'],
|
1883 |
'orderby' => $options['orderby'],
|
|
|
1884 |
);
|
1885 |
|
1886 |
+
// Add offset
|
1887 |
+
if ( $query_offset > 0 ) {
|
1888 |
+
$args['offset'] = $query_offset;
|
1889 |
+
}
|
1890 |
+
|
1891 |
if ( defined('DOING_AJAX') && DOING_AJAX ) {
|
1892 |
$args['post_status'] = array( 'publish', 'private' );
|
1893 |
}
|
modules/testimonials/module.php
CHANGED
@@ -1692,9 +1692,13 @@ class DSLC_Testimonials extends DSLC_Module {
|
|
1692 |
'posts_per_page' => $options['amount'],
|
1693 |
'order' => $options['order'],
|
1694 |
'orderby' => $options['orderby'],
|
1695 |
-
'offset' => $query_offset
|
1696 |
);
|
1697 |
|
|
|
|
|
|
|
|
|
|
|
1698 |
if ( defined('DOING_AJAX') && DOING_AJAX ) {
|
1699 |
$args['post_status'] = array( 'publish', 'private' );
|
1700 |
}
|
1692 |
'posts_per_page' => $options['amount'],
|
1693 |
'order' => $options['order'],
|
1694 |
'orderby' => $options['orderby'],
|
|
|
1695 |
);
|
1696 |
|
1697 |
+
// Add offset
|
1698 |
+
if ( $query_offset > 0 ) {
|
1699 |
+
$args['offset'] = $query_offset;
|
1700 |
+
}
|
1701 |
+
|
1702 |
if ( defined('DOING_AJAX') && DOING_AJAX ) {
|
1703 |
$args['post_status'] = array( 'publish', 'private' );
|
1704 |
}
|
modules/tp-thumbnail/module.php
CHANGED
@@ -365,7 +365,7 @@ class DSLC_TP_Thumbnail extends DSLC_Module {
|
|
365 |
<a href="<?php $thumb = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'full' ); echo $thumb[0]; ?>" class="dslc-lightbox-image">
|
366 |
<?php endif; ?>
|
367 |
<?php if ( $manual_resize ) : ?>
|
368 |
-
<img src="<?php $res_img = dslc_aq_resize( $thumb_url, $resize_width, $resize_height, true ); echo $res_img; ?>" />
|
369 |
<?php else : ?>
|
370 |
<?php the_post_thumbnail( 'full' ); ?>
|
371 |
<?php endif; ?>
|
365 |
<a href="<?php $thumb = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'full' ); echo $thumb[0]; ?>" class="dslc-lightbox-image">
|
366 |
<?php endif; ?>
|
367 |
<?php if ( $manual_resize ) : ?>
|
368 |
+
<img src="<?php $res_img = dslc_aq_resize( $thumb_url, $resize_width, $resize_height, true ); echo $res_img; ?>" alt="<?php echo dslc_get_attachment_alt( get_post_thumbnail_id() ); ?>" />
|
369 |
<?php else : ?>
|
370 |
<?php the_post_thumbnail( 'full' ); ?>
|
371 |
<?php endif; ?>
|
modules/woocommerce/module.php
CHANGED
@@ -2214,9 +2214,13 @@ class DSLC_WooCommerce_Products extends DSLC_Module {
|
|
2214 |
'posts_per_page' => $options['amount'],
|
2215 |
'order' => $options['order'],
|
2216 |
'orderby' => $options['orderby'],
|
2217 |
-
'offset' => $query_offset
|
2218 |
);
|
2219 |
|
|
|
|
|
|
|
|
|
|
|
2220 |
if ( defined('DOING_AJAX') && DOING_AJAX ) {
|
2221 |
$args['post_status'] = array( 'publish', 'private' );
|
2222 |
}
|
2214 |
'posts_per_page' => $options['amount'],
|
2215 |
'order' => $options['order'],
|
2216 |
'orderby' => $options['orderby'],
|
|
|
2217 |
);
|
2218 |
|
2219 |
+
// Add offset
|
2220 |
+
if ( $query_offset > 0 ) {
|
2221 |
+
$args['offset'] = $query_offset;
|
2222 |
+
}
|
2223 |
+
|
2224 |
if ( defined('DOING_AJAX') && DOING_AJAX ) {
|
2225 |
$args['post_status'] = array( 'publish', 'private' );
|
2226 |
}
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: LiveComposer
|
3 |
Tags: page builder, page, modules, front-end, builder, live, composer
|
4 |
Requires at least: 3.9
|
5 |
-
Tested up to: 4.
|
6 |
-
Stable tag: 1.0.6
|
7 |
License: GPLv3
|
8 |
|
9 |
Live Composer is a front-end WordPress page builder plugin. But with the free "blank" theme you can build a whole website.
|
@@ -45,6 +45,10 @@ In most of the cases this is because the homepage is not a real WordPress page,
|
|
45 |
|
46 |
== Changelog ==
|
47 |
|
|
|
|
|
|
|
|
|
48 |
= 1.0.6 - November 24th 2015 =
|
49 |
|
50 |
[Check out the blog post about 1.0.6 release](http://livecomposerplugin.com/blog/version-1-0-6-released/)
|
2 |
Contributors: LiveComposer
|
3 |
Tags: page builder, page, modules, front-end, builder, live, composer
|
4 |
Requires at least: 3.9
|
5 |
+
Tested up to: 4.4
|
6 |
+
Stable tag: 1.0.6.1
|
7 |
License: GPLv3
|
8 |
|
9 |
Live Composer is a front-end WordPress page builder plugin. But with the free "blank" theme you can build a whole website.
|
45 |
|
46 |
== Changelog ==
|
47 |
|
48 |
+
= 1.0.6.1 - December 15th 2015 =
|
49 |
+
|
50 |
+
[Check out the blog post about 1.0.6.1 release](http://livecomposerplugin.com/blog/version-1-0-6-1-released/)
|
51 |
+
|
52 |
= 1.0.6 - November 24th 2015 =
|
53 |
|
54 |
[Check out the blog post about 1.0.6 release](http://livecomposerplugin.com/blog/version-1-0-6-released/)
|