Version Description
Download this release
Release Info
Developer | averta |
Plugin | Premium Portfolio Features for Phlox theme |
Version | 2.0.1 |
Comparing to | |
See all releases |
Code changes from version 2.0.0 to 2.0.1
- README.txt +1 -1
- auxin-portfolio.php +1 -1
- includes/define.php +1 -1
- includes/general-hooks.php +37 -4
- languages/auxin-portfolio.pot +285 -277
- public/assets/js/portfolio.js +1 -1
README.txt
CHANGED
@@ -7,7 +7,7 @@ Tags: phlox, gallery, elementor, siteorigin, portfolio, averta, auxin, fullwidth
|
|
7 |
Requires PHP: 5.4
|
8 |
Requires at least: 4.6
|
9 |
Tested up to: 5.4.3
|
10 |
-
Stable tag: 2.0.
|
11 |
License: GPLv3
|
12 |
License URI: http://www.gnu.org/licenses/gpl.html
|
13 |
|
7 |
Requires PHP: 5.4
|
8 |
Requires at least: 4.6
|
9 |
Tested up to: 5.4.3
|
10 |
+
Stable tag: 2.0.1
|
11 |
License: GPLv3
|
12 |
License URI: http://www.gnu.org/licenses/gpl.html
|
13 |
|
auxin-portfolio.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
* Plugin Name: Phlox Portfolio
|
13 |
* Plugin URI: http://phlox.pro/
|
14 |
* Description: Showcase your projects beautifully in Phlox theme
|
15 |
-
* Version: 2.0.
|
16 |
* Author: averta
|
17 |
* Author URI: http://averta.net
|
18 |
* License: GPL2
|
12 |
* Plugin Name: Phlox Portfolio
|
13 |
* Plugin URI: http://phlox.pro/
|
14 |
* Description: Showcase your projects beautifully in Phlox theme
|
15 |
+
* Version: 2.0.1
|
16 |
* Author: averta
|
17 |
* Author URI: http://averta.net
|
18 |
* License: GPL2
|
includes/define.php
CHANGED
@@ -15,7 +15,7 @@ if( ! defined( 'THEME_NAME' ) ){
|
|
15 |
|
16 |
|
17 |
|
18 |
-
define( 'AUXPFO_VERSION' , '2.0.
|
19 |
|
20 |
define( 'AUXPFO_SLUG' , 'auxin-portfolio' );
|
21 |
|
15 |
|
16 |
|
17 |
|
18 |
+
define( 'AUXPFO_VERSION' , '2.0.1' );
|
19 |
|
20 |
define( 'AUXPFO_SLUG' , 'auxin-portfolio' );
|
21 |
|
includes/general-hooks.php
CHANGED
@@ -278,7 +278,7 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
|
|
278 |
'default' => '1',
|
279 |
'type' => 'switch'
|
280 |
);
|
281 |
-
|
282 |
$options[] = array(
|
283 |
'title' => __( 'Share Type', 'auxin-portfolio' ),
|
284 |
'description' => __( 'Enable it to display text instead of icon.', 'auxin-portfolio' ),
|
@@ -493,7 +493,7 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
|
|
493 |
'choices' => array(
|
494 |
'icon' => __( 'Icon', 'auxin-portfolio' ),
|
495 |
'text' => __( 'Text', 'auxin-portfolio' )
|
496 |
-
),
|
497 |
'dependency' => array(
|
498 |
array(
|
499 |
'id' => 'show_portfolio_single_share_like_section',
|
@@ -536,7 +536,7 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
|
|
536 |
);
|
537 |
|
538 |
$options[] = array(
|
539 |
-
'title' => __( 'Icon Color', 'auxin-portfolio' ),
|
540 |
'description' => __( 'Like icon color','auxin-portfolio' ),
|
541 |
'id' => 'portfolio_single_like_icon_color',
|
542 |
'section' => 'portfolio-section-single',
|
@@ -547,7 +547,40 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
|
|
547 |
if( ! $value ){
|
548 |
$value = esc_attr( auxin_get_option( 'portfolio_single_like_icon_color' ) );
|
549 |
}
|
550 |
-
return $value ? ".single-portfolio .
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
551 |
},
|
552 |
'dependency' => array(
|
553 |
array(
|
278 |
'default' => '1',
|
279 |
'type' => 'switch'
|
280 |
);
|
281 |
+
|
282 |
$options[] = array(
|
283 |
'title' => __( 'Share Type', 'auxin-portfolio' ),
|
284 |
'description' => __( 'Enable it to display text instead of icon.', 'auxin-portfolio' ),
|
493 |
'choices' => array(
|
494 |
'icon' => __( 'Icon', 'auxin-portfolio' ),
|
495 |
'text' => __( 'Text', 'auxin-portfolio' )
|
496 |
+
),
|
497 |
'dependency' => array(
|
498 |
array(
|
499 |
'id' => 'show_portfolio_single_share_like_section',
|
536 |
);
|
537 |
|
538 |
$options[] = array(
|
539 |
+
'title' => __( 'Icon Liked Color', 'auxin-portfolio' ),
|
540 |
'description' => __( 'Like icon color','auxin-portfolio' ),
|
541 |
'id' => 'portfolio_single_like_icon_color',
|
542 |
'section' => 'portfolio-section-single',
|
547 |
if( ! $value ){
|
548 |
$value = esc_attr( auxin_get_option( 'portfolio_single_like_icon_color' ) );
|
549 |
}
|
550 |
+
return $value ? ".single-portfolio .wp_ulike_is_liked button::before { color:{$value}; }" : '';
|
551 |
+
},
|
552 |
+
'dependency' => array(
|
553 |
+
array(
|
554 |
+
'id' => 'show_portfolio_single_share_like_section',
|
555 |
+
'value' => array('1'),
|
556 |
+
'operator'=> ''
|
557 |
+
),
|
558 |
+
array(
|
559 |
+
'id' => 'show_portfolio_single_like',
|
560 |
+
'value' => array('1'),
|
561 |
+
'operator'=> ''
|
562 |
+
),
|
563 |
+
array(
|
564 |
+
'id' => 'portfolio_single_like_button_type',
|
565 |
+
'value' => array('icon'),
|
566 |
+
'operator'=> ''
|
567 |
+
)
|
568 |
+
)
|
569 |
+
);
|
570 |
+
|
571 |
+
$options[] = array(
|
572 |
+
'title' => __( 'Icon Not Liked Color', 'auxin-portfolio' ),
|
573 |
+
'description' => __( 'Like icon color','auxin-portfolio' ),
|
574 |
+
'id' => 'portfolio_single_not_like_icon_color',
|
575 |
+
'section' => 'portfolio-section-single',
|
576 |
+
'transport' => 'postMessage',
|
577 |
+
'type' => 'color',
|
578 |
+
'default' => '',
|
579 |
+
'style_callback' => function( $value = null ){
|
580 |
+
if( ! $value ){
|
581 |
+
$value = esc_attr( auxin_get_option( 'portfolio_single_not_like_icon_color' ) );
|
582 |
+
}
|
583 |
+
return $value ? ".single-portfolio .wp_ulike_is_unliked button::before { color:{$value}; }" : '';
|
584 |
},
|
585 |
'dependency' => array(
|
586 |
array(
|
languages/auxin-portfolio.pot
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
# Averta Copyright (c) {2020}
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
-
"Project-Id-Version: Phlox Portfolio 2.0.
|
5 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
6 |
-
"POT-Creation-Date: 2020-07-
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=utf-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -56,7 +56,7 @@ msgid "Specifies a short description about the project."
|
|
56 |
msgstr ""
|
57 |
|
58 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:52
|
59 |
-
#: includes/general-hooks.php:
|
60 |
msgid "Overview Title"
|
61 |
msgstr ""
|
62 |
|
@@ -79,7 +79,7 @@ msgstr ""
|
|
79 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:231
|
80 |
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:152
|
81 |
#: includes/elements/elementor/recent-portfolios-tile.php:150
|
82 |
-
#: includes/elements/recent-portfolios.php:254 includes/general-hooks.php:
|
83 |
msgid "Default"
|
84 |
msgstr ""
|
85 |
|
@@ -88,7 +88,7 @@ msgstr ""
|
|
88 |
#: includes/elements/elementor/recent-portfolios-masonry.php:410
|
89 |
#: includes/elements/elementor/recent-portfolios-tile.php:428
|
90 |
#: includes/elements/recent-portfolios.php:459 includes/general-hooks.php:137
|
91 |
-
#: includes/general-hooks.php:
|
92 |
msgid "Left"
|
93 |
msgstr ""
|
94 |
|
@@ -97,7 +97,7 @@ msgstr ""
|
|
97 |
#: includes/elements/elementor/recent-portfolios-masonry.php:414
|
98 |
#: includes/elements/elementor/recent-portfolios-tile.php:432
|
99 |
#: includes/elements/recent-portfolios.php:463 includes/general-hooks.php:141
|
100 |
-
#: includes/general-hooks.php:
|
101 |
msgid "Center"
|
102 |
msgstr ""
|
103 |
|
@@ -223,13 +223,13 @@ msgstr ""
|
|
223 |
|
224 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:173
|
225 |
#: includes/elements/recent-portfolios-tile-carousel.php:285
|
226 |
-
#: includes/general-hooks.php:
|
227 |
msgid "Dark"
|
228 |
msgstr ""
|
229 |
|
230 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:174
|
231 |
#: includes/elements/recent-portfolios-tile-carousel.php:286
|
232 |
-
#: includes/general-hooks.php:
|
233 |
msgid "Light"
|
234 |
msgstr ""
|
235 |
|
@@ -246,67 +246,67 @@ msgid ""
|
|
246 |
msgstr ""
|
247 |
|
248 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:219
|
249 |
-
#: includes/general-hooks.php:
|
250 |
msgid "Skin for Next & Previous Links"
|
251 |
msgstr ""
|
252 |
|
253 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:220
|
254 |
-
#: includes/general-hooks.php:
|
255 |
msgid "Specifies the skin for next and previous navigation block."
|
256 |
msgstr ""
|
257 |
|
258 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:235
|
259 |
-
#: includes/general-hooks.php:
|
260 |
msgid "Classic Project Navigation"
|
261 |
msgstr ""
|
262 |
|
263 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:239
|
264 |
-
#: includes/general-hooks.php:
|
265 |
msgid "Classic Project Navigation Without Title"
|
266 |
msgstr ""
|
267 |
|
268 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:243
|
269 |
-
#: includes/general-hooks.php:
|
270 |
msgid "Minimal (default)"
|
271 |
msgstr ""
|
272 |
|
273 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:247
|
274 |
-
#: includes/general-hooks.php:
|
275 |
msgid "Thumbnail with Arrow"
|
276 |
msgstr ""
|
277 |
|
278 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:251
|
279 |
-
#: includes/general-hooks.php:
|
280 |
msgid "Thumbnail without Arrow"
|
281 |
msgstr ""
|
282 |
|
283 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:255
|
284 |
-
#: includes/general-hooks.php:
|
285 |
msgid "Navigation with Light Background"
|
286 |
msgstr ""
|
287 |
|
288 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:259
|
289 |
-
#: includes/general-hooks.php:
|
290 |
msgid "Navigation with Dark Background"
|
291 |
msgstr ""
|
292 |
|
293 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:263
|
294 |
-
#: includes/general-hooks.php:
|
295 |
msgid "Sticky Thumbnail with Arrow"
|
296 |
msgstr ""
|
297 |
|
298 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:267
|
299 |
-
#: includes/general-hooks.php:
|
300 |
msgid "Modern"
|
301 |
msgstr ""
|
302 |
|
303 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:276
|
304 |
-
#: includes/general-hooks.php:
|
305 |
msgid "Next & Previous Button Link"
|
306 |
msgstr ""
|
307 |
|
308 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:277
|
309 |
-
#: includes/general-hooks.php:
|
310 |
msgid ""
|
311 |
"Specifies the link of button in next and previous navigation. leave it "
|
312 |
"blank to use default portfolio archive link"
|
@@ -354,7 +354,7 @@ msgid "Related Portfolio"
|
|
354 |
msgstr ""
|
355 |
|
356 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:22
|
357 |
-
#: includes/general-hooks.php:
|
358 |
msgid "Display Related Portfolios"
|
359 |
msgstr ""
|
360 |
|
@@ -363,28 +363,28 @@ msgid "Enable it to display related porfolios section on single portfolio page."
|
|
363 |
msgstr ""
|
364 |
|
365 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:36
|
366 |
-
#: includes/general-hooks.php:
|
367 |
msgid "Label of Related Section"
|
368 |
msgstr ""
|
369 |
|
370 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:37
|
371 |
-
#: includes/general-hooks.php:
|
372 |
msgid "Specifies the label of related items section."
|
373 |
msgstr ""
|
374 |
|
375 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:51
|
376 |
-
#: includes/general-hooks.php:
|
377 |
msgid "Related Items Type"
|
378 |
msgstr ""
|
379 |
|
380 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:52
|
381 |
-
#: includes/general-hooks.php:
|
382 |
msgid "Specifies the appearance type for related portfolio element."
|
383 |
msgstr ""
|
384 |
|
385 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:65
|
386 |
-
#: includes/elements/recent-portfolios.php:217 includes/general-hooks.php:
|
387 |
-
#: includes/general-hooks.php:
|
388 |
msgid "Grid"
|
389 |
msgstr ""
|
390 |
|
@@ -396,70 +396,70 @@ msgid "Carousel"
|
|
396 |
msgstr ""
|
397 |
|
398 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:71
|
399 |
-
#: includes/general-hooks.php:
|
400 |
-
#: includes/general-hooks.php:
|
401 |
msgid "Number of Columns"
|
402 |
msgstr ""
|
403 |
|
404 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:92
|
405 |
-
#: includes/general-hooks.php:
|
406 |
msgid "Align Center"
|
407 |
msgstr ""
|
408 |
|
409 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:93
|
410 |
-
#: includes/general-hooks.php:
|
411 |
msgid "Enable it to make related portfolios section text center."
|
412 |
msgstr ""
|
413 |
|
414 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:112
|
415 |
-
#: includes/general-hooks.php:
|
416 |
msgid "Full Width Related Section"
|
417 |
msgstr ""
|
418 |
|
419 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:113
|
420 |
-
#: includes/general-hooks.php:
|
421 |
msgid "Enable it to make related portfolios section full width."
|
422 |
msgstr ""
|
423 |
|
424 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:132
|
425 |
-
#: includes/general-hooks.php:
|
426 |
msgid "Snap Related Items"
|
427 |
msgstr ""
|
428 |
|
429 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:133
|
430 |
-
#: includes/general-hooks.php:
|
431 |
msgid "Enable it to remove space between related portfolio items."
|
432 |
msgstr ""
|
433 |
|
434 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:152
|
435 |
-
#: includes/general-hooks.php:
|
436 |
msgid "Display Portfolio Categories"
|
437 |
msgstr ""
|
438 |
|
439 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:153
|
440 |
-
#: includes/general-hooks.php:
|
441 |
msgid ""
|
442 |
"Enable it to display the categories of each portfolio item in related "
|
443 |
"portfolios section."
|
444 |
msgstr ""
|
445 |
|
446 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:172
|
447 |
-
#: includes/general-hooks.php:
|
448 |
msgid "Display The Button Under Related Items"
|
449 |
msgstr ""
|
450 |
|
451 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:173
|
452 |
-
#: includes/general-hooks.php:
|
453 |
msgid "You can specific to show the button under related items"
|
454 |
msgstr ""
|
455 |
|
456 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:192
|
457 |
-
#: includes/general-hooks.php:
|
458 |
msgid "Link the Button Under Related Items To"
|
459 |
msgstr ""
|
460 |
|
461 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:193
|
462 |
-
#: includes/general-hooks.php:
|
463 |
msgid ""
|
464 |
"Whether to display a button bellow related items section in order to direct "
|
465 |
"visitors to portfolio archive page or not. You can link the button to the "
|
@@ -467,32 +467,32 @@ msgid ""
|
|
467 |
msgstr ""
|
468 |
|
469 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:211
|
470 |
-
#: includes/general-hooks.php:
|
471 |
msgid "Archive page"
|
472 |
msgstr ""
|
473 |
|
474 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:212
|
475 |
-
#: includes/general-hooks.php:
|
476 |
msgid "Custom URL"
|
477 |
msgstr ""
|
478 |
|
479 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:217
|
480 |
-
#: includes/general-hooks.php:
|
481 |
msgid "Custom Link for Related Items Button"
|
482 |
msgstr ""
|
483 |
|
484 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:218
|
485 |
-
#: includes/general-hooks.php:
|
486 |
msgid "A custom link for the button under related items section."
|
487 |
msgstr ""
|
488 |
|
489 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:242
|
490 |
-
#: includes/general-hooks.php:
|
491 |
msgid "Custom label for Related Items Button"
|
492 |
msgstr ""
|
493 |
|
494 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:243
|
495 |
-
#: includes/general-hooks.php:
|
496 |
msgid "A custom label for the button under related items section."
|
497 |
msgstr ""
|
498 |
|
@@ -567,7 +567,7 @@ msgid ""
|
|
567 |
msgstr ""
|
568 |
|
569 |
#: includes/classes/class-auxpfo-post-type-portfolio.php:53
|
570 |
-
#: includes/general-hooks.php:39 includes/general-hooks.php:
|
571 |
msgid "Portfolio"
|
572 |
msgstr ""
|
573 |
|
@@ -967,8 +967,8 @@ msgstr ""
|
|
967 |
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:259
|
968 |
#: includes/elements/elementor/recent-portfolios-tile.php:597
|
969 |
#: includes/elements/recent-portfolios-tile-carousel.php:300
|
970 |
-
#: includes/elements/recent-portfolios.php:621 includes/general-hooks.php:
|
971 |
-
#: includes/general-hooks.php:
|
972 |
msgid "None"
|
973 |
msgstr ""
|
974 |
|
@@ -1298,7 +1298,7 @@ msgstr ""
|
|
1298 |
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:414
|
1299 |
#: includes/elements/elementor/recent-portfolios-tile.php:315
|
1300 |
#: includes/elements/recent-portfolios-tile-carousel.php:163
|
1301 |
-
#: includes/elements/recent-portfolios.php:119 includes/general-hooks.php:
|
1302 |
msgid "Author"
|
1303 |
msgstr ""
|
1304 |
|
@@ -1432,34 +1432,34 @@ msgstr ""
|
|
1432 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:584
|
1433 |
#: includes/elements/elementor/recent-portfolios-grid.php:772
|
1434 |
#: includes/elements/elementor/recent-portfolios-masonry.php:651
|
1435 |
-
#: includes/elements/recent-portfolios.php:661 includes/general-hooks.php:
|
1436 |
-
#: includes/general-hooks.php:
|
1437 |
msgid "Space"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:585
|
1441 |
#: includes/elements/elementor/recent-portfolios-grid.php:773
|
1442 |
#: includes/elements/elementor/recent-portfolios-masonry.php:652
|
1443 |
-
#: includes/elements/recent-portfolios.php:662 includes/general-hooks.php:
|
1444 |
-
#: includes/general-hooks.php:
|
1445 |
msgid "Specifies horizontal space between items (pixel)."
|
1446 |
msgstr ""
|
1447 |
|
1448 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:597
|
1449 |
#: includes/elements/elementor/recent-portfolios-grid.php:785
|
1450 |
-
#: includes/elements/recent-portfolios.php:293 includes/general-hooks.php:
|
1451 |
msgid "Image aspect ratio"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:601
|
1455 |
-
#: includes/elements/recent-portfolios.php:301 includes/general-hooks.php:
|
1456 |
-
#: includes/general-hooks.php:
|
1457 |
msgid "Horizontal 4:3"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:602
|
1461 |
-
#: includes/elements/recent-portfolios.php:302 includes/general-hooks.php:
|
1462 |
-
#: includes/general-hooks.php:
|
1463 |
msgid "Horizontal 16:9"
|
1464 |
msgstr ""
|
1465 |
|
@@ -1498,24 +1498,24 @@ msgstr ""
|
|
1498 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:634
|
1499 |
#: includes/elements/elementor/recent-portfolios-grid.php:822
|
1500 |
#: includes/elements/elementor/recent-portfolios-masonry.php:687
|
1501 |
-
#: includes/elements/recent-portfolios.php:332 includes/general-hooks.php:
|
1502 |
-
#: includes/general-hooks.php:
|
1503 |
msgid "No animation"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:638
|
1507 |
#: includes/elements/elementor/recent-portfolios-grid.php:826
|
1508 |
#: includes/elements/elementor/recent-portfolios-masonry.php:691
|
1509 |
-
#: includes/elements/recent-portfolios.php:336 includes/general-hooks.php:
|
1510 |
-
#: includes/general-hooks.php:
|
1511 |
msgid "Classic with lightbox style 1"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:642
|
1515 |
#: includes/elements/elementor/recent-portfolios-grid.php:830
|
1516 |
#: includes/elements/elementor/recent-portfolios-masonry.php:695
|
1517 |
-
#: includes/elements/recent-portfolios.php:340 includes/general-hooks.php:
|
1518 |
-
#: includes/general-hooks.php:
|
1519 |
msgid "Classic with lightbox style 2"
|
1520 |
msgstr ""
|
1521 |
|
@@ -1526,9 +1526,9 @@ msgstr ""
|
|
1526 |
#: includes/elements/elementor/recent-portfolios-tile.php:663
|
1527 |
#: includes/elements/recent-portfolios-tile-carousel.php:103
|
1528 |
#: includes/elements/recent-portfolios.php:344
|
1529 |
-
#: includes/elements/recent-portfolios.php:412 includes/general-hooks.php:
|
1530 |
-
#: includes/general-hooks.php:
|
1531 |
-
#: includes/general-hooks.php:
|
1532 |
msgid "Overlay title style 1"
|
1533 |
msgstr ""
|
1534 |
|
@@ -1539,9 +1539,9 @@ msgstr ""
|
|
1539 |
#: includes/elements/elementor/recent-portfolios-tile.php:667
|
1540 |
#: includes/elements/recent-portfolios-tile-carousel.php:107
|
1541 |
#: includes/elements/recent-portfolios.php:348
|
1542 |
-
#: includes/elements/recent-portfolios.php:413 includes/general-hooks.php:
|
1543 |
-
#: includes/general-hooks.php:
|
1544 |
-
#: includes/general-hooks.php:
|
1545 |
msgid "Overlay title style 2"
|
1546 |
msgstr ""
|
1547 |
|
@@ -1552,9 +1552,9 @@ msgstr ""
|
|
1552 |
#: includes/elements/elementor/recent-portfolios-tile.php:671
|
1553 |
#: includes/elements/recent-portfolios-tile-carousel.php:111
|
1554 |
#: includes/elements/recent-portfolios.php:352
|
1555 |
-
#: includes/elements/recent-portfolios.php:414 includes/general-hooks.php:
|
1556 |
-
#: includes/general-hooks.php:
|
1557 |
-
#: includes/general-hooks.php:
|
1558 |
msgid "Overlay title with lightbox style 1"
|
1559 |
msgstr ""
|
1560 |
|
@@ -1565,9 +1565,9 @@ msgstr ""
|
|
1565 |
#: includes/elements/elementor/recent-portfolios-tile.php:675
|
1566 |
#: includes/elements/recent-portfolios-tile-carousel.php:115
|
1567 |
#: includes/elements/recent-portfolios.php:356
|
1568 |
-
#: includes/elements/recent-portfolios.php:415 includes/general-hooks.php:
|
1569 |
-
#: includes/general-hooks.php:
|
1570 |
-
#: includes/general-hooks.php:
|
1571 |
msgid "Overlay title with lightbox style 2"
|
1572 |
msgstr ""
|
1573 |
|
@@ -1768,7 +1768,7 @@ msgstr ""
|
|
1768 |
#: includes/elements/elementor/recent-portfolios-grid.php:418
|
1769 |
#: includes/elements/elementor/recent-portfolios-masonry.php:418
|
1770 |
#: includes/elements/elementor/recent-portfolios-tile.php:436
|
1771 |
-
#: includes/elements/recent-portfolios.php:467 includes/general-hooks.php:
|
1772 |
msgid "Right"
|
1773 |
msgstr ""
|
1774 |
|
@@ -1951,8 +1951,8 @@ msgstr ""
|
|
1951 |
|
1952 |
#: includes/elements/elementor/recent-portfolios-grid.php:1180
|
1953 |
#: includes/elements/elementor/recent-portfolios-masonry.php:1013
|
1954 |
-
#: includes/elements/recent-portfolios.php:380 includes/general-hooks.php:
|
1955 |
-
#: includes/general-hooks.php:
|
1956 |
msgid "Entry Box Border Color"
|
1957 |
msgstr ""
|
1958 |
|
@@ -2145,13 +2145,13 @@ msgstr ""
|
|
2145 |
msgid "Different layout types of appearing items."
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#: includes/elements/recent-portfolios.php:221 includes/general-hooks.php:
|
2149 |
-
#: includes/general-hooks.php:
|
2150 |
msgid "Masonry"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
-
#: includes/elements/recent-portfolios.php:225 includes/general-hooks.php:
|
2154 |
-
#: includes/general-hooks.php:
|
2155 |
msgid "Tiles"
|
2156 |
msgstr ""
|
2157 |
|
@@ -2159,13 +2159,13 @@ msgstr ""
|
|
2159 |
msgid "Post Tile styles"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: includes/elements/recent-portfolios.php:303 includes/general-hooks.php:
|
2163 |
-
#: includes/general-hooks.php:
|
2164 |
msgid "Square 1:1"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
-
#: includes/elements/recent-portfolios.php:304 includes/general-hooks.php:
|
2168 |
-
#: includes/general-hooks.php:
|
2169 |
msgid "Vertical 3:4"
|
2170 |
msgstr ""
|
2171 |
|
@@ -2173,8 +2173,8 @@ msgstr ""
|
|
2173 |
msgid "Portfolio hover type"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
-
#: includes/elements/recent-portfolios.php:362 includes/general-hooks.php:
|
2177 |
-
#: includes/general-hooks.php:
|
2178 |
msgid "Entry Box Background Color"
|
2179 |
msgstr ""
|
2180 |
|
@@ -2223,7 +2223,7 @@ msgstr ""
|
|
2223 |
msgid "Single Portfolio"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
-
#: includes/general-hooks.php:50 includes/general-hooks.php:
|
2227 |
msgid "Preview a Single Portfolio Page"
|
2228 |
msgstr ""
|
2229 |
|
@@ -2235,35 +2235,35 @@ msgstr ""
|
|
2235 |
msgid "Specifies single portfolio template."
|
2236 |
msgstr ""
|
2237 |
|
2238 |
-
#: includes/general-hooks.php:108 includes/general-hooks.php:
|
2239 |
msgid "Custom Max Width"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
-
#: includes/general-hooks.php:109 includes/general-hooks.php:
|
2243 |
msgid "Specifies the maximum width of website."
|
2244 |
msgstr ""
|
2245 |
|
2246 |
-
#: includes/general-hooks.php:116 includes/general-hooks.php:
|
2247 |
msgid "Default Site Max Width"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
-
#: includes/general-hooks.php:117 includes/general-hooks.php:
|
2251 |
msgid "1000 Pixels"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
-
#: includes/general-hooks.php:118 includes/general-hooks.php:
|
2255 |
msgid "1200 Pixels"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
-
#: includes/general-hooks.php:119 includes/general-hooks.php:
|
2259 |
msgid "1400 Pixels"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
-
#: includes/general-hooks.php:120 includes/general-hooks.php:
|
2263 |
msgid "1600 Pixels"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
-
#: includes/general-hooks.php:121 includes/general-hooks.php:
|
2267 |
msgid "1900 Pixels"
|
2268 |
msgstr ""
|
2269 |
|
@@ -2315,7 +2315,7 @@ msgstr ""
|
|
2315 |
msgid "Share Button Icon"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: includes/general-hooks.php:335
|
2319 |
msgid "Icon Color"
|
2320 |
msgstr ""
|
2321 |
|
@@ -2323,7 +2323,7 @@ msgstr ""
|
|
2323 |
msgid "Share icon color"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#: includes/general-hooks.php:368 includes/general-hooks.php:
|
2327 |
msgid "Icon Hover Color"
|
2328 |
msgstr ""
|
2329 |
|
@@ -2353,713 +2353,721 @@ msgstr ""
|
|
2353 |
msgid "Like Icon"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
-
#: includes/general-hooks.php:
|
|
|
|
|
|
|
|
|
2357 |
msgid "Like icon color"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
-
#: includes/general-hooks.php:
|
|
|
|
|
|
|
|
|
2361 |
msgid "Like icon hover color"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
-
#: includes/general-hooks.php:
|
2365 |
msgid "Like Button Icon Size"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
-
#: includes/general-hooks.php:
|
2369 |
msgid "Like Button Margin"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
-
#: includes/general-hooks.php:
|
2373 |
msgid "Next Portfolio Label"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
-
#: includes/general-hooks.php:
|
2377 |
msgid "Specifies the word after next and previous navigation."
|
2378 |
msgstr ""
|
2379 |
|
2380 |
-
#: includes/general-hooks.php:
|
2381 |
msgid "Previous Portfolio Label"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
-
#: includes/general-hooks.php:
|
2385 |
msgid "Portfolio Title"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
-
#: includes/general-hooks.php:
|
2389 |
msgid "Display Title Bar Section"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
-
#: includes/general-hooks.php:
|
2393 |
msgid "Enable it to show the title section."
|
2394 |
msgstr ""
|
2395 |
|
2396 |
-
#: includes/general-hooks.php:
|
2397 |
msgid "Layout presets"
|
2398 |
msgstr ""
|
2399 |
|
2400 |
-
#: includes/general-hooks.php:
|
2401 |
msgid "Title bar with light overlay which is aligned center"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
-
#: includes/general-hooks.php:
|
2405 |
msgid "Fullscreen title bar with light overlay on background"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
-
#: includes/general-hooks.php:
|
2409 |
msgid "Fullscreen title bar with dark overlay on background"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
-
#: includes/general-hooks.php:
|
2413 |
msgid "Fullscreen title bar with border around the title"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
-
#: includes/general-hooks.php:
|
2417 |
msgid "Fullscreen title bar with dark box around the title"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
-
#: includes/general-hooks.php:
|
2421 |
msgid "Title aligned left with dark overlay on background"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
-
#: includes/general-hooks.php:
|
2425 |
msgid "Tile overlaps the title area section and is aligned center"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
-
#: includes/general-hooks.php:
|
2429 |
msgid "Enable advanced setting"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#: includes/general-hooks.php:
|
2433 |
msgid "Enable it to customize preset layouts."
|
2434 |
msgstr ""
|
2435 |
|
2436 |
-
#: includes/general-hooks.php:
|
2437 |
msgid "Content Width"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
-
#: includes/general-hooks.php:
|
2441 |
msgid "Boxed"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
-
#: includes/general-hooks.php:
|
2445 |
msgid "Full Width Content with Space on Sides"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
-
#: includes/general-hooks.php:
|
2449 |
msgid "Full Width Content"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
-
#: includes/general-hooks.php:
|
2453 |
msgid "Title Section Height"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
-
#: includes/general-hooks.php:
|
2457 |
msgid "Auto Height"
|
2458 |
msgstr ""
|
2459 |
|
2460 |
-
#: includes/general-hooks.php:
|
2461 |
msgid "Full Height"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
-
#: includes/general-hooks.php:
|
2465 |
msgid "Vertical Position"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
-
#: includes/general-hooks.php:
|
2469 |
msgid "Specifies vertical alignment of title and subtitle."
|
2470 |
msgstr ""
|
2471 |
|
2472 |
-
#: includes/general-hooks.php:
|
2473 |
msgid ""
|
2474 |
"Note: Parallax feature in not available for \"Bottom Overlap\" vertical "
|
2475 |
"mode."
|
2476 |
msgstr ""
|
2477 |
|
2478 |
-
#: includes/general-hooks.php:
|
2479 |
msgid "Top"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
-
#: includes/general-hooks.php:
|
2483 |
msgid "Middle"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
-
#: includes/general-hooks.php:
|
2487 |
msgid "Bottom"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
-
#: includes/general-hooks.php:
|
2491 |
msgid "Bottom Overlap"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
-
#: includes/general-hooks.php:
|
2495 |
msgid "Scroll Down Arrow"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#: includes/general-hooks.php:
|
2499 |
msgid "This option only applies if section height is \"Full Height\"."
|
2500 |
msgstr ""
|
2501 |
|
2502 |
-
#: includes/general-hooks.php:
|
2503 |
msgid "Round"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
-
#: includes/general-hooks.php:
|
2507 |
msgid "Display Titles"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
-
#: includes/general-hooks.php:
|
2511 |
msgid "Enable it to display title/subtitle in title section."
|
2512 |
msgstr ""
|
2513 |
|
2514 |
-
#: includes/general-hooks.php:
|
2515 |
msgid "Border for Heading"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
-
#: includes/general-hooks.php:
|
2519 |
msgid "Enable it to display a border around the title and subtitle area."
|
2520 |
msgstr ""
|
2521 |
|
2522 |
-
#: includes/general-hooks.php:
|
2523 |
msgid "Boxed Title"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
-
#: includes/general-hooks.php:
|
2527 |
msgid "Enable it to wrap the title and subtitle in a box with background color."
|
2528 |
msgstr ""
|
2529 |
|
2530 |
-
#: includes/general-hooks.php:
|
2531 |
msgid "Title Box Custom Color"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
-
#: includes/general-hooks.php:
|
2535 |
msgid ""
|
2536 |
"Specifies a custom background color for the box around the title and "
|
2537 |
"subtitle."
|
2538 |
msgstr ""
|
2539 |
|
2540 |
-
#: includes/general-hooks.php:
|
2541 |
msgid "Display Post Meta"
|
2542 |
msgstr ""
|
2543 |
|
2544 |
-
#: includes/general-hooks.php:
|
2545 |
msgid "Enable it to display post meta information on title section."
|
2546 |
msgstr ""
|
2547 |
|
2548 |
-
#: includes/general-hooks.php:
|
2549 |
msgid "Display Breadcrumb"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
-
#: includes/general-hooks.php:
|
2553 |
msgid "Enable it to display breadcrumb on title section."
|
2554 |
msgstr ""
|
2555 |
|
2556 |
-
#: includes/general-hooks.php:
|
2557 |
msgid "Border for Breadcrumb"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
-
#: includes/general-hooks.php:
|
2561 |
msgid "Enable it to display border around breadcrumb."
|
2562 |
msgstr ""
|
2563 |
|
2564 |
-
#: includes/general-hooks.php:
|
2565 |
msgid "Breadcrumb Separator Icon"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
-
#: includes/general-hooks.php:
|
2569 |
msgid "Text Align"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
-
#: includes/general-hooks.php:
|
2573 |
msgid "Overlay Color"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
-
#: includes/general-hooks.php:
|
2577 |
msgid ""
|
2578 |
"The color that overlay on the background. Please note that color should "
|
2579 |
"have transparency."
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: includes/general-hooks.php:
|
2583 |
msgid "Overlay Pattern"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: includes/general-hooks.php:
|
2587 |
msgid "Hash"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#: includes/general-hooks.php:
|
2591 |
msgid "Overlay Pattern Opacity"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
-
#: includes/general-hooks.php:
|
2595 |
msgid "Color Mode"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
-
#: includes/general-hooks.php:
|
2599 |
msgid "Enable Title Background"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
#: includes/general-hooks.php:
|
2603 |
msgid "Enable it to display custom background for title section."
|
2604 |
msgstr ""
|
2605 |
|
2606 |
-
#: includes/general-hooks.php:
|
2607 |
msgid "Enable Parallax Effect"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
-
#: includes/general-hooks.php:
|
2611 |
msgid "Enable it to have parallax background effect on this section."
|
2612 |
msgstr ""
|
2613 |
|
2614 |
-
#: includes/general-hooks.php:
|
2615 |
msgid ""
|
2616 |
"Note: Parallax feature in not available for \"Bottom Overlap\" mode for "
|
2617 |
"\"Vertical Position\" option."
|
2618 |
msgstr ""
|
2619 |
|
2620 |
-
#: includes/general-hooks.php:
|
2621 |
msgid "Background Color"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
-
#: includes/general-hooks.php:
|
2625 |
msgid "Specifies a background color for title bar."
|
2626 |
msgstr ""
|
2627 |
|
2628 |
-
#: includes/general-hooks.php:
|
2629 |
msgid "Background Size"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
-
#: includes/general-hooks.php:
|
2633 |
msgid "Specifies the background size."
|
2634 |
msgstr ""
|
2635 |
|
2636 |
-
#: includes/general-hooks.php:
|
2637 |
msgid "Auto"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
-
#: includes/general-hooks.php:
|
2641 |
msgid "Contain"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
-
#: includes/general-hooks.php:
|
2645 |
msgid "Cover"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
-
#: includes/general-hooks.php:
|
2649 |
msgid "Background Image"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
-
#: includes/general-hooks.php:
|
2653 |
msgid "Specifies a background image for title bar."
|
2654 |
msgstr ""
|
2655 |
|
2656 |
-
#: includes/general-hooks.php:
|
2657 |
msgid "Background Video MP4"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
-
#: includes/general-hooks.php:
|
2661 |
-
#: includes/general-hooks.php:
|
2662 |
msgid ""
|
2663 |
"You can upload custom video for title background</br>Note: if you set "
|
2664 |
"custom image, default image backgrounds will be ignored."
|
2665 |
msgstr ""
|
2666 |
|
2667 |
-
#: includes/general-hooks.php:
|
2668 |
msgid "Background Video Ogg"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
-
#: includes/general-hooks.php:
|
2672 |
msgid "Background Video WebM"
|
2673 |
msgstr ""
|
2674 |
|
2675 |
-
#: includes/general-hooks.php:
|
2676 |
msgid "Related Portfolios"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
-
#: includes/general-hooks.php:
|
2680 |
msgid "Setting for Related Portfolios Section in Single Page"
|
2681 |
msgstr ""
|
2682 |
|
2683 |
-
#: includes/general-hooks.php:
|
2684 |
msgid "Enable it to display related portfolios section on single portfolio page."
|
2685 |
msgstr ""
|
2686 |
|
2687 |
-
#: includes/general-hooks.php:
|
2688 |
msgid "Title Typography"
|
2689 |
msgstr ""
|
2690 |
|
2691 |
-
#: includes/general-hooks.php:
|
2692 |
msgid "Related Projects/Works"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
-
#: includes/general-hooks.php:
|
2696 |
msgid "Label Typography"
|
2697 |
msgstr ""
|
2698 |
|
2699 |
-
#: includes/general-hooks.php:
|
2700 |
msgid "Category Terms Typography"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
-
#: includes/general-hooks.php:
|
2704 |
msgid "Hide it"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
-
#: includes/general-hooks.php:
|
2708 |
msgid "Browse All Projects"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
-
#: includes/general-hooks.php:
|
2712 |
msgid "Button Typography"
|
2713 |
msgstr ""
|
2714 |
|
2715 |
-
#: includes/general-hooks.php:
|
2716 |
msgid "Button Background"
|
2717 |
msgstr ""
|
2718 |
|
2719 |
-
#: includes/general-hooks.php:
|
2720 |
msgid "Portfolio Page"
|
2721 |
msgstr ""
|
2722 |
|
2723 |
-
#: includes/general-hooks.php:
|
2724 |
msgid "Preview Portfolio Page"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
-
#: includes/general-hooks.php:
|
2728 |
msgid "Custom Page For Archive"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
-
#: includes/general-hooks.php:
|
2732 |
msgid "Enable this option to select custom page for archive page"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
-
#: includes/general-hooks.php:
|
2736 |
msgid "Select Page"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
-
#: includes/general-hooks.php:
|
2740 |
msgid "Portfolio Template"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
-
#: includes/general-hooks.php:
|
2744 |
msgid "Choose your portfolio template."
|
2745 |
msgstr ""
|
2746 |
|
2747 |
-
#: includes/general-hooks.php:
|
2748 |
msgid "Land"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
-
#: includes/general-hooks.php:
|
2752 |
msgid "Image Aspect Ratio"
|
2753 |
msgstr ""
|
2754 |
|
2755 |
-
#: includes/general-hooks.php:
|
2756 |
msgid "Portfolio Hover Type"
|
2757 |
msgstr ""
|
2758 |
|
2759 |
-
#: includes/general-hooks.php:
|
2760 |
-
#: includes/general-hooks.php:
|
2761 |
msgid "Hover over images to see the animation."
|
2762 |
msgstr ""
|
2763 |
|
2764 |
-
#: includes/general-hooks.php:
|
2765 |
msgid "Tile Portfolio Item Type"
|
2766 |
msgstr ""
|
2767 |
|
2768 |
-
#: includes/general-hooks.php:
|
2769 |
msgid "Number of Columns in Tablet"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
-
#: includes/general-hooks.php:
|
2773 |
msgid "Number of Columns in Mobile"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
-
#: includes/general-hooks.php:
|
2777 |
msgid "Display Like Button"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
-
#: includes/general-hooks.php:
|
2781 |
msgid ""
|
2782 |
"Enable it to display %s like button%s on portfolio portfolios. Please note "
|
2783 |
"WP Ulike plugin needs to be activaited to use this option."
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#: includes/general-hooks.php:
|
2787 |
msgid "Enable Entry Box Coloring"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
-
#: includes/general-hooks.php:
|
2791 |
msgid "Specifies the border/background color for entry box."
|
2792 |
msgstr ""
|
2793 |
|
2794 |
-
#: includes/general-hooks.php:
|
2795 |
msgid "Specifies the background color for entry box."
|
2796 |
msgstr ""
|
2797 |
|
2798 |
-
#: includes/general-hooks.php:
|
2799 |
msgid "Specifies the border color for entry box."
|
2800 |
msgstr ""
|
2801 |
|
2802 |
-
#: includes/general-hooks.php:
|
2803 |
msgid "Portfolio Sidebar Position"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
-
#: includes/general-hooks.php:
|
2807 |
msgid "Specifies the position of sidebar on portfolio page."
|
2808 |
msgstr ""
|
2809 |
|
2810 |
-
#: includes/general-hooks.php:
|
2811 |
msgid "No Sidebar"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
-
#: includes/general-hooks.php:
|
2815 |
msgid "Right Sidebar"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
-
#: includes/general-hooks.php:
|
2819 |
msgid "Left Sidebar"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
-
#: includes/general-hooks.php:
|
2823 |
msgid "Left Left Sidebar"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
-
#: includes/general-hooks.php:
|
2827 |
msgid "Right Right Sidebar"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
-
#: includes/general-hooks.php:
|
2831 |
msgid "Left Right Sidebar"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
-
#: includes/general-hooks.php:
|
2835 |
msgid "Right Left Sidebar"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
-
#: includes/general-hooks.php:
|
2839 |
msgid "Portfolio Sidebar Style"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
-
#: includes/general-hooks.php:
|
2843 |
msgid "Specifies the style of sidebar on portfolio page."
|
2844 |
msgstr ""
|
2845 |
|
2846 |
-
#: includes/general-hooks.php:
|
2847 |
msgid "Simple"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
-
#: includes/general-hooks.php:
|
2851 |
msgid "Bordered Sidebar"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
-
#: includes/general-hooks.php:
|
2855 |
msgid "Overlap Background"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
-
#: includes/general-hooks.php:
|
2859 |
msgid "Number of Portfolios Per Page"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
-
#: includes/general-hooks.php:
|
2863 |
msgid "Specifies the number of portfolios items to show on each page."
|
2864 |
msgstr ""
|
2865 |
|
2866 |
-
#: includes/general-hooks.php:
|
2867 |
msgid "Display Title Bar?"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
-
#: includes/general-hooks.php:
|
2871 |
msgid ""
|
2872 |
"Specifies whether to display the title bar at top of portfolio archive page "
|
2873 |
"or not."
|
2874 |
msgstr ""
|
2875 |
|
2876 |
-
#: includes/general-hooks.php:
|
2877 |
msgid "Display Breadcrumb?"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
-
#: includes/general-hooks.php:
|
2881 |
msgid ""
|
2882 |
"Specifies whether to display the breadcrumb in title bar of portfolio "
|
2883 |
"archive page or not."
|
2884 |
msgstr ""
|
2885 |
|
2886 |
-
#: includes/general-hooks.php:
|
2887 |
msgid "Display Title?"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
-
#: includes/general-hooks.php:
|
2891 |
msgid ""
|
2892 |
"Specifies whether to display the title in title bar of portfolio archive "
|
2893 |
"page or not."
|
2894 |
msgstr ""
|
2895 |
|
2896 |
-
#: includes/general-hooks.php:
|
2897 |
msgid "Custom Title"
|
2898 |
msgstr ""
|
2899 |
|
2900 |
-
#: includes/general-hooks.php:
|
2901 |
msgid "Custom Breadcrumb Label"
|
2902 |
msgstr ""
|
2903 |
|
2904 |
-
#: includes/general-hooks.php:
|
2905 |
msgid "Portfolio Category & tag"
|
2906 |
msgstr ""
|
2907 |
|
2908 |
-
#: includes/general-hooks.php:
|
2909 |
msgid "Portfolio Category & tag page Setting"
|
2910 |
msgstr ""
|
2911 |
|
2912 |
-
#: includes/general-hooks.php:
|
2913 |
msgid "Taxonomy Page Template"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
-
#: includes/general-hooks.php:
|
2917 |
msgid "Taxonomy Page Sidebar Position"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
-
#: includes/general-hooks.php:
|
2921 |
msgid "Sidebar Style"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
-
#: includes/general-hooks.php:
|
2925 |
msgid "Specifies the style of sidebar on category & tag page."
|
2926 |
msgstr ""
|
2927 |
|
2928 |
-
#: includes/general-hooks.php:
|
2929 |
msgid "Portfolio MetaData"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
-
#: includes/general-hooks.php:
|
2933 |
msgid "Portfolio MetaData Setting"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
-
#: includes/general-hooks.php:
|
2937 |
msgid "Label for Launch Project Button"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
-
#: includes/general-hooks.php:
|
2941 |
msgid "Specify a label for launch project button."
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: includes/general-hooks.php:
|
2945 |
msgid "Launch Project"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: includes/general-hooks.php:
|
2949 |
msgid "Portfolio MetaDatas"
|
2950 |
msgstr ""
|
2951 |
|
2952 |
-
#: includes/general-hooks.php:
|
2953 |
msgid ""
|
2954 |
"Specify the number of fields and the label of each one for portfolio "
|
2955 |
"metadatas"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: includes/general-hooks.php:
|
2959 |
msgid "Project URL"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
-
#: includes/general-hooks.php:
|
2963 |
msgid "Client"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
-
#: includes/general-hooks.php:
|
2967 |
msgid "Release Date"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
-
#: includes/general-hooks.php:
|
2971 |
msgid "Custom Field 1"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: includes/general-hooks.php:
|
2975 |
msgid "Custom Field 2"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: includes/general-hooks.php:
|
2979 |
msgid "Custom Field 3"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: includes/general-hooks.php:
|
2983 |
msgid "Custom Field 4"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
-
#: includes/general-hooks.php:
|
2987 |
msgid "Custom Field 5"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
-
#: includes/general-hooks.php:
|
2991 |
msgid "Custom Field 6"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
-
#: includes/general-hooks.php:
|
2995 |
msgid "Custom Field 7"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
-
#: includes/general-hooks.php:
|
2999 |
msgid "Custom Field 8"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
-
#: includes/general-hooks.php:
|
3003 |
msgid "Custom Field 9"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
-
#: includes/general-hooks.php:
|
3007 |
msgid "Custom Field 10"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
-
#: includes/general-hooks.php:
|
3011 |
msgid "Custom Field 11"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
-
#: includes/general-hooks.php:
|
3015 |
msgid "Custom Field 12"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
-
#: includes/general-hooks.php:
|
3019 |
msgid "Single Portfolio Appearance"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
-
#: includes/general-hooks.php:
|
3023 |
msgid "Content"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
-
#: includes/general-hooks.php:
|
3027 |
msgid "Overview Content"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
-
#: includes/general-hooks.php:
|
3031 |
msgid "Meta"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
-
#: includes/general-hooks.php:
|
3035 |
msgid "Meta Terms"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
-
#: includes/general-hooks.php:
|
3039 |
msgid "Launch Button"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
-
#: includes/general-hooks.php:
|
3043 |
msgid "Launch Button Background"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
-
#: includes/general-hooks.php:
|
3047 |
msgid "Portfolio Options"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
-
#: includes/general-hooks.php:
|
3051 |
msgid "Likes"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
-
#: includes/general-hooks.php:
|
3055 |
msgid "Like"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
-
#: includes/general-hooks.php:
|
3059 |
msgid "Share"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
-
#: includes/general-hooks.php:
|
3063 |
msgid "Related Projects"
|
3064 |
msgstr ""
|
3065 |
|
1 |
# Averta Copyright (c) {2020}
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
+
"Project-Id-Version: Phlox Portfolio 2.0.1\n"
|
5 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
6 |
+
"POT-Creation-Date: 2020-07-12 10:46:03+00:00\n"
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=utf-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
56 |
msgstr ""
|
57 |
|
58 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:52
|
59 |
+
#: includes/general-hooks.php:3465
|
60 |
msgid "Overview Title"
|
61 |
msgstr ""
|
62 |
|
79 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:231
|
80 |
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:152
|
81 |
#: includes/elements/elementor/recent-portfolios-tile.php:150
|
82 |
+
#: includes/elements/recent-portfolios.php:254 includes/general-hooks.php:864
|
83 |
msgid "Default"
|
84 |
msgstr ""
|
85 |
|
88 |
#: includes/elements/elementor/recent-portfolios-masonry.php:410
|
89 |
#: includes/elements/elementor/recent-portfolios-tile.php:428
|
90 |
#: includes/elements/recent-portfolios.php:459 includes/general-hooks.php:137
|
91 |
+
#: includes/general-hooks.php:1481
|
92 |
msgid "Left"
|
93 |
msgstr ""
|
94 |
|
97 |
#: includes/elements/elementor/recent-portfolios-masonry.php:414
|
98 |
#: includes/elements/elementor/recent-portfolios-tile.php:432
|
99 |
#: includes/elements/recent-portfolios.php:463 includes/general-hooks.php:141
|
100 |
+
#: includes/general-hooks.php:1485
|
101 |
msgid "Center"
|
102 |
msgstr ""
|
103 |
|
223 |
|
224 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:173
|
225 |
#: includes/elements/recent-portfolios-tile-carousel.php:285
|
226 |
+
#: includes/general-hooks.php:1627
|
227 |
msgid "Dark"
|
228 |
msgstr ""
|
229 |
|
230 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:174
|
231 |
#: includes/elements/recent-portfolios-tile-carousel.php:286
|
232 |
+
#: includes/general-hooks.php:1628
|
233 |
msgid "Light"
|
234 |
msgstr ""
|
235 |
|
246 |
msgstr ""
|
247 |
|
248 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:219
|
249 |
+
#: includes/general-hooks.php:700
|
250 |
msgid "Skin for Next & Previous Links"
|
251 |
msgstr ""
|
252 |
|
253 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:220
|
254 |
+
#: includes/general-hooks.php:701
|
255 |
msgid "Specifies the skin for next and previous navigation block."
|
256 |
msgstr ""
|
257 |
|
258 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:235
|
259 |
+
#: includes/general-hooks.php:718
|
260 |
msgid "Classic Project Navigation"
|
261 |
msgstr ""
|
262 |
|
263 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:239
|
264 |
+
#: includes/general-hooks.php:722
|
265 |
msgid "Classic Project Navigation Without Title"
|
266 |
msgstr ""
|
267 |
|
268 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:243
|
269 |
+
#: includes/general-hooks.php:714
|
270 |
msgid "Minimal (default)"
|
271 |
msgstr ""
|
272 |
|
273 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:247
|
274 |
+
#: includes/general-hooks.php:726
|
275 |
msgid "Thumbnail with Arrow"
|
276 |
msgstr ""
|
277 |
|
278 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:251
|
279 |
+
#: includes/general-hooks.php:730
|
280 |
msgid "Thumbnail without Arrow"
|
281 |
msgstr ""
|
282 |
|
283 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:255
|
284 |
+
#: includes/general-hooks.php:734
|
285 |
msgid "Navigation with Light Background"
|
286 |
msgstr ""
|
287 |
|
288 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:259
|
289 |
+
#: includes/general-hooks.php:738
|
290 |
msgid "Navigation with Dark Background"
|
291 |
msgstr ""
|
292 |
|
293 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:263
|
294 |
+
#: includes/general-hooks.php:742
|
295 |
msgid "Sticky Thumbnail with Arrow"
|
296 |
msgstr ""
|
297 |
|
298 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:267
|
299 |
+
#: includes/general-hooks.php:746
|
300 |
msgid "Modern"
|
301 |
msgstr ""
|
302 |
|
303 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:276
|
304 |
+
#: includes/general-hooks.php:791
|
305 |
msgid "Next & Previous Button Link"
|
306 |
msgstr ""
|
307 |
|
308 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:277
|
309 |
+
#: includes/general-hooks.php:792
|
310 |
msgid ""
|
311 |
"Specifies the link of button in next and previous navigation. leave it "
|
312 |
"blank to use default portfolio archive link"
|
354 |
msgstr ""
|
355 |
|
356 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:22
|
357 |
+
#: includes/general-hooks.php:1934
|
358 |
msgid "Display Related Portfolios"
|
359 |
msgstr ""
|
360 |
|
363 |
msgstr ""
|
364 |
|
365 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:36
|
366 |
+
#: includes/general-hooks.php:1962
|
367 |
msgid "Label of Related Section"
|
368 |
msgstr ""
|
369 |
|
370 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:37
|
371 |
+
#: includes/general-hooks.php:1963
|
372 |
msgid "Specifies the label of related items section."
|
373 |
msgstr ""
|
374 |
|
375 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:51
|
376 |
+
#: includes/general-hooks.php:2020
|
377 |
msgid "Related Items Type"
|
378 |
msgstr ""
|
379 |
|
380 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:52
|
381 |
+
#: includes/general-hooks.php:2021
|
382 |
msgid "Specifies the appearance type for related portfolio element."
|
383 |
msgstr ""
|
384 |
|
385 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:65
|
386 |
+
#: includes/elements/recent-portfolios.php:217 includes/general-hooks.php:2338
|
387 |
+
#: includes/general-hooks.php:3042
|
388 |
msgid "Grid"
|
389 |
msgstr ""
|
390 |
|
396 |
msgstr ""
|
397 |
|
398 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:71
|
399 |
+
#: includes/general-hooks.php:2041 includes/general-hooks.php:2519
|
400 |
+
#: includes/general-hooks.php:3214
|
401 |
msgid "Number of Columns"
|
402 |
msgstr ""
|
403 |
|
404 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:92
|
405 |
+
#: includes/general-hooks.php:2061
|
406 |
msgid "Align Center"
|
407 |
msgstr ""
|
408 |
|
409 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:93
|
410 |
+
#: includes/general-hooks.php:2062
|
411 |
msgid "Enable it to make related portfolios section text center."
|
412 |
msgstr ""
|
413 |
|
414 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:112
|
415 |
+
#: includes/general-hooks.php:2079
|
416 |
msgid "Full Width Related Section"
|
417 |
msgstr ""
|
418 |
|
419 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:113
|
420 |
+
#: includes/general-hooks.php:2080
|
421 |
msgid "Enable it to make related portfolios section full width."
|
422 |
msgstr ""
|
423 |
|
424 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:132
|
425 |
+
#: includes/general-hooks.php:2097
|
426 |
msgid "Snap Related Items"
|
427 |
msgstr ""
|
428 |
|
429 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:133
|
430 |
+
#: includes/general-hooks.php:2098
|
431 |
msgid "Enable it to remove space between related portfolio items."
|
432 |
msgstr ""
|
433 |
|
434 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:152
|
435 |
+
#: includes/general-hooks.php:2115
|
436 |
msgid "Display Portfolio Categories"
|
437 |
msgstr ""
|
438 |
|
439 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:153
|
440 |
+
#: includes/general-hooks.php:2116
|
441 |
msgid ""
|
442 |
"Enable it to display the categories of each portfolio item in related "
|
443 |
"portfolios section."
|
444 |
msgstr ""
|
445 |
|
446 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:172
|
447 |
+
#: includes/general-hooks.php:2154
|
448 |
msgid "Display The Button Under Related Items"
|
449 |
msgstr ""
|
450 |
|
451 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:173
|
452 |
+
#: includes/general-hooks.php:2155
|
453 |
msgid "You can specific to show the button under related items"
|
454 |
msgstr ""
|
455 |
|
456 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:192
|
457 |
+
#: includes/general-hooks.php:2172
|
458 |
msgid "Link the Button Under Related Items To"
|
459 |
msgstr ""
|
460 |
|
461 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:193
|
462 |
+
#: includes/general-hooks.php:2173
|
463 |
msgid ""
|
464 |
"Whether to display a button bellow related items section in order to direct "
|
465 |
"visitors to portfolio archive page or not. You can link the button to the "
|
467 |
msgstr ""
|
468 |
|
469 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:211
|
470 |
+
#: includes/general-hooks.php:2179
|
471 |
msgid "Archive page"
|
472 |
msgstr ""
|
473 |
|
474 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:212
|
475 |
+
#: includes/general-hooks.php:2180
|
476 |
msgid "Custom URL"
|
477 |
msgstr ""
|
478 |
|
479 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:217
|
480 |
+
#: includes/general-hooks.php:2198
|
481 |
msgid "Custom Link for Related Items Button"
|
482 |
msgstr ""
|
483 |
|
484 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:218
|
485 |
+
#: includes/general-hooks.php:2199
|
486 |
msgid "A custom link for the button under related items section."
|
487 |
msgstr ""
|
488 |
|
489 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:242
|
490 |
+
#: includes/general-hooks.php:2224
|
491 |
msgid "Custom label for Related Items Button"
|
492 |
msgstr ""
|
493 |
|
494 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:243
|
495 |
+
#: includes/general-hooks.php:2225
|
496 |
msgid "A custom label for the button under related items section."
|
497 |
msgstr ""
|
498 |
|
567 |
msgstr ""
|
568 |
|
569 |
#: includes/classes/class-auxpfo-post-type-portfolio.php:53
|
570 |
+
#: includes/general-hooks.php:39 includes/general-hooks.php:3012
|
571 |
msgid "Portfolio"
|
572 |
msgstr ""
|
573 |
|
967 |
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:259
|
968 |
#: includes/elements/elementor/recent-portfolios-tile.php:597
|
969 |
#: includes/elements/recent-portfolios-tile-carousel.php:300
|
970 |
+
#: includes/elements/recent-portfolios.php:621 includes/general-hooks.php:1180
|
971 |
+
#: includes/general-hooks.php:1553
|
972 |
msgid "None"
|
973 |
msgstr ""
|
974 |
|
1298 |
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:414
|
1299 |
#: includes/elements/elementor/recent-portfolios-tile.php:315
|
1300 |
#: includes/elements/recent-portfolios-tile-carousel.php:163
|
1301 |
+
#: includes/elements/recent-portfolios.php:119 includes/general-hooks.php:3428
|
1302 |
msgid "Author"
|
1303 |
msgstr ""
|
1304 |
|
1432 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:584
|
1433 |
#: includes/elements/elementor/recent-portfolios-grid.php:772
|
1434 |
#: includes/elements/elementor/recent-portfolios-masonry.php:651
|
1435 |
+
#: includes/elements/recent-portfolios.php:661 includes/general-hooks.php:2493
|
1436 |
+
#: includes/general-hooks.php:3190
|
1437 |
msgid "Space"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:585
|
1441 |
#: includes/elements/elementor/recent-portfolios-grid.php:773
|
1442 |
#: includes/elements/elementor/recent-portfolios-masonry.php:652
|
1443 |
+
#: includes/elements/recent-portfolios.php:662 includes/general-hooks.php:2494
|
1444 |
+
#: includes/general-hooks.php:3191
|
1445 |
msgid "Specifies horizontal space between items (pixel)."
|
1446 |
msgstr ""
|
1447 |
|
1448 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:597
|
1449 |
#: includes/elements/elementor/recent-portfolios-grid.php:785
|
1450 |
+
#: includes/elements/recent-portfolios.php:293 includes/general-hooks.php:1997
|
1451 |
msgid "Image aspect ratio"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:601
|
1455 |
+
#: includes/elements/recent-portfolios.php:301 includes/general-hooks.php:2010
|
1456 |
+
#: includes/general-hooks.php:2372 includes/general-hooks.php:3076
|
1457 |
msgid "Horizontal 4:3"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:602
|
1461 |
+
#: includes/elements/recent-portfolios.php:302 includes/general-hooks.php:2011
|
1462 |
+
#: includes/general-hooks.php:2373 includes/general-hooks.php:3077
|
1463 |
msgid "Horizontal 16:9"
|
1464 |
msgstr ""
|
1465 |
|
1498 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:634
|
1499 |
#: includes/elements/elementor/recent-portfolios-grid.php:822
|
1500 |
#: includes/elements/elementor/recent-portfolios-masonry.php:687
|
1501 |
+
#: includes/elements/recent-portfolios.php:332 includes/general-hooks.php:2404
|
1502 |
+
#: includes/general-hooks.php:3108
|
1503 |
msgid "No animation"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:638
|
1507 |
#: includes/elements/elementor/recent-portfolios-grid.php:826
|
1508 |
#: includes/elements/elementor/recent-portfolios-masonry.php:691
|
1509 |
+
#: includes/elements/recent-portfolios.php:336 includes/general-hooks.php:2409
|
1510 |
+
#: includes/general-hooks.php:3112
|
1511 |
msgid "Classic with lightbox style 1"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:642
|
1515 |
#: includes/elements/elementor/recent-portfolios-grid.php:830
|
1516 |
#: includes/elements/elementor/recent-portfolios-masonry.php:695
|
1517 |
+
#: includes/elements/recent-portfolios.php:340 includes/general-hooks.php:2414
|
1518 |
+
#: includes/general-hooks.php:3116
|
1519 |
msgid "Classic with lightbox style 2"
|
1520 |
msgstr ""
|
1521 |
|
1526 |
#: includes/elements/elementor/recent-portfolios-tile.php:663
|
1527 |
#: includes/elements/recent-portfolios-tile-carousel.php:103
|
1528 |
#: includes/elements/recent-portfolios.php:344
|
1529 |
+
#: includes/elements/recent-portfolios.php:412 includes/general-hooks.php:2419
|
1530 |
+
#: includes/general-hooks.php:2465 includes/general-hooks.php:3120
|
1531 |
+
#: includes/general-hooks.php:3162
|
1532 |
msgid "Overlay title style 1"
|
1533 |
msgstr ""
|
1534 |
|
1539 |
#: includes/elements/elementor/recent-portfolios-tile.php:667
|
1540 |
#: includes/elements/recent-portfolios-tile-carousel.php:107
|
1541 |
#: includes/elements/recent-portfolios.php:348
|
1542 |
+
#: includes/elements/recent-portfolios.php:413 includes/general-hooks.php:2424
|
1543 |
+
#: includes/general-hooks.php:2469 includes/general-hooks.php:3124
|
1544 |
+
#: includes/general-hooks.php:3166
|
1545 |
msgid "Overlay title style 2"
|
1546 |
msgstr ""
|
1547 |
|
1552 |
#: includes/elements/elementor/recent-portfolios-tile.php:671
|
1553 |
#: includes/elements/recent-portfolios-tile-carousel.php:111
|
1554 |
#: includes/elements/recent-portfolios.php:352
|
1555 |
+
#: includes/elements/recent-portfolios.php:414 includes/general-hooks.php:2429
|
1556 |
+
#: includes/general-hooks.php:2473 includes/general-hooks.php:3128
|
1557 |
+
#: includes/general-hooks.php:3170
|
1558 |
msgid "Overlay title with lightbox style 1"
|
1559 |
msgstr ""
|
1560 |
|
1565 |
#: includes/elements/elementor/recent-portfolios-tile.php:675
|
1566 |
#: includes/elements/recent-portfolios-tile-carousel.php:115
|
1567 |
#: includes/elements/recent-portfolios.php:356
|
1568 |
+
#: includes/elements/recent-portfolios.php:415 includes/general-hooks.php:2434
|
1569 |
+
#: includes/general-hooks.php:2477 includes/general-hooks.php:3132
|
1570 |
+
#: includes/general-hooks.php:3174
|
1571 |
msgid "Overlay title with lightbox style 2"
|
1572 |
msgstr ""
|
1573 |
|
1768 |
#: includes/elements/elementor/recent-portfolios-grid.php:418
|
1769 |
#: includes/elements/elementor/recent-portfolios-masonry.php:418
|
1770 |
#: includes/elements/elementor/recent-portfolios-tile.php:436
|
1771 |
+
#: includes/elements/recent-portfolios.php:467 includes/general-hooks.php:1489
|
1772 |
msgid "Right"
|
1773 |
msgstr ""
|
1774 |
|
1951 |
|
1952 |
#: includes/elements/elementor/recent-portfolios-grid.php:1180
|
1953 |
#: includes/elements/elementor/recent-portfolios-masonry.php:1013
|
1954 |
+
#: includes/elements/recent-portfolios.php:380 includes/general-hooks.php:2705
|
1955 |
+
#: includes/general-hooks.php:2784
|
1956 |
msgid "Entry Box Border Color"
|
1957 |
msgstr ""
|
1958 |
|
2145 |
msgid "Different layout types of appearing items."
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: includes/elements/recent-portfolios.php:221 includes/general-hooks.php:2342
|
2149 |
+
#: includes/general-hooks.php:3046
|
2150 |
msgid "Masonry"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
+
#: includes/elements/recent-portfolios.php:225 includes/general-hooks.php:2346
|
2154 |
+
#: includes/general-hooks.php:3050
|
2155 |
msgid "Tiles"
|
2156 |
msgstr ""
|
2157 |
|
2159 |
msgid "Post Tile styles"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: includes/elements/recent-portfolios.php:303 includes/general-hooks.php:2012
|
2163 |
+
#: includes/general-hooks.php:2374 includes/general-hooks.php:3078
|
2164 |
msgid "Square 1:1"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
+
#: includes/elements/recent-portfolios.php:304 includes/general-hooks.php:2013
|
2168 |
+
#: includes/general-hooks.php:2375 includes/general-hooks.php:3079
|
2169 |
msgid "Vertical 3:4"
|
2170 |
msgstr ""
|
2171 |
|
2173 |
msgid "Portfolio hover type"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: includes/elements/recent-portfolios.php:362 includes/general-hooks.php:2672
|
2177 |
+
#: includes/general-hooks.php:2756
|
2178 |
msgid "Entry Box Background Color"
|
2179 |
msgstr ""
|
2180 |
|
2223 |
msgid "Single Portfolio"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: includes/general-hooks.php:50 includes/general-hooks.php:819
|
2227 |
msgid "Preview a Single Portfolio Page"
|
2228 |
msgstr ""
|
2229 |
|
2235 |
msgid "Specifies single portfolio template."
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: includes/general-hooks.php:108 includes/general-hooks.php:2547
|
2239 |
msgid "Custom Max Width"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: includes/general-hooks.php:109 includes/general-hooks.php:2548
|
2243 |
msgid "Specifies the maximum width of website."
|
2244 |
msgstr ""
|
2245 |
|
2246 |
+
#: includes/general-hooks.php:116 includes/general-hooks.php:2555
|
2247 |
msgid "Default Site Max Width"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
+
#: includes/general-hooks.php:117 includes/general-hooks.php:2556
|
2251 |
msgid "1000 Pixels"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
+
#: includes/general-hooks.php:118 includes/general-hooks.php:2557
|
2255 |
msgid "1200 Pixels"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: includes/general-hooks.php:119 includes/general-hooks.php:2558
|
2259 |
msgid "1400 Pixels"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: includes/general-hooks.php:120 includes/general-hooks.php:2559
|
2263 |
msgid "1600 Pixels"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: includes/general-hooks.php:121 includes/general-hooks.php:2560
|
2267 |
msgid "1900 Pixels"
|
2268 |
msgstr ""
|
2269 |
|
2315 |
msgid "Share Button Icon"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: includes/general-hooks.php:335
|
2319 |
msgid "Icon Color"
|
2320 |
msgstr ""
|
2321 |
|
2323 |
msgid "Share icon color"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
+
#: includes/general-hooks.php:368 includes/general-hooks.php:605
|
2327 |
msgid "Icon Hover Color"
|
2328 |
msgstr ""
|
2329 |
|
2353 |
msgid "Like Icon"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
+
#: includes/general-hooks.php:539
|
2357 |
+
msgid "Icon Liked Color"
|
2358 |
+
msgstr ""
|
2359 |
+
|
2360 |
+
#: includes/general-hooks.php:540 includes/general-hooks.php:573
|
2361 |
msgid "Like icon color"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
+
#: includes/general-hooks.php:572
|
2365 |
+
msgid "Icon Not Liked Color"
|
2366 |
+
msgstr ""
|
2367 |
+
|
2368 |
+
#: includes/general-hooks.php:606
|
2369 |
msgid "Like icon hover color"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
+
#: includes/general-hooks.php:638
|
2373 |
msgid "Like Button Icon Size"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
+
#: includes/general-hooks.php:672
|
2377 |
msgid "Like Button Margin"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
+
#: includes/general-hooks.php:755
|
2381 |
msgid "Next Portfolio Label"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
+
#: includes/general-hooks.php:756 includes/general-hooks.php:774
|
2385 |
msgid "Specifies the word after next and previous navigation."
|
2386 |
msgstr ""
|
2387 |
|
2388 |
+
#: includes/general-hooks.php:773
|
2389 |
msgid "Previous Portfolio Label"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
+
#: includes/general-hooks.php:818
|
2393 |
msgid "Portfolio Title"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
+
#: includes/general-hooks.php:824
|
2397 |
msgid "Display Title Bar Section"
|
2398 |
msgstr ""
|
2399 |
|
2400 |
+
#: includes/general-hooks.php:825
|
2401 |
msgid "Enable it to show the title section."
|
2402 |
msgstr ""
|
2403 |
|
2404 |
+
#: includes/general-hooks.php:841
|
2405 |
msgid "Layout presets"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: includes/general-hooks.php:883
|
2409 |
msgid "Title bar with light overlay which is aligned center"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: includes/general-hooks.php:901
|
2413 |
msgid "Fullscreen title bar with light overlay on background"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: includes/general-hooks.php:919
|
2417 |
msgid "Fullscreen title bar with dark overlay on background"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
+
#: includes/general-hooks.php:937
|
2421 |
msgid "Fullscreen title bar with border around the title"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
+
#: includes/general-hooks.php:955
|
2425 |
msgid "Fullscreen title bar with dark box around the title"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
+
#: includes/general-hooks.php:973
|
2429 |
msgid "Title aligned left with dark overlay on background"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
+
#: includes/general-hooks.php:991
|
2433 |
msgid "Tile overlaps the title area section and is aligned center"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: includes/general-hooks.php:1012
|
2437 |
msgid "Enable advanced setting"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: includes/general-hooks.php:1013
|
2441 |
msgid "Enable it to customize preset layouts."
|
2442 |
msgstr ""
|
2443 |
|
2444 |
+
#: includes/general-hooks.php:1036
|
2445 |
msgid "Content Width"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
+
#: includes/general-hooks.php:1056
|
2449 |
msgid "Boxed"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
+
#: includes/general-hooks.php:1060
|
2453 |
msgid "Full Width Content with Space on Sides"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
+
#: includes/general-hooks.php:1064
|
2457 |
msgid "Full Width Content"
|
2458 |
msgstr ""
|
2459 |
|
2460 |
+
#: includes/general-hooks.php:1073
|
2461 |
msgid "Title Section Height"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
+
#: includes/general-hooks.php:1100
|
2465 |
msgid "Auto Height"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
+
#: includes/general-hooks.php:1101
|
2469 |
msgid "Full Height"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: includes/general-hooks.php:1106
|
2473 |
msgid "Vertical Position"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: includes/general-hooks.php:1107
|
2477 |
msgid "Specifies vertical alignment of title and subtitle."
|
2478 |
msgstr ""
|
2479 |
|
2480 |
+
#: includes/general-hooks.php:1108
|
2481 |
msgid ""
|
2482 |
"Note: Parallax feature in not available for \"Bottom Overlap\" vertical "
|
2483 |
"mode."
|
2484 |
msgstr ""
|
2485 |
|
2486 |
+
#: includes/general-hooks.php:1134
|
2487 |
msgid "Top"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: includes/general-hooks.php:1135
|
2491 |
msgid "Middle"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: includes/general-hooks.php:1136
|
2495 |
msgid "Bottom"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: includes/general-hooks.php:1137
|
2499 |
msgid "Bottom Overlap"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: includes/general-hooks.php:1142
|
2503 |
msgid "Scroll Down Arrow"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: includes/general-hooks.php:1143
|
2507 |
msgid "This option only applies if section height is \"Full Height\"."
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: includes/general-hooks.php:1184
|
2511 |
msgid "Round"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: includes/general-hooks.php:1191
|
2515 |
msgid "Display Titles"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: includes/general-hooks.php:1192
|
2519 |
msgid "Enable it to display title/subtitle in title section."
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: includes/general-hooks.php:1220
|
2523 |
msgid "Border for Heading"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
+
#: includes/general-hooks.php:1221
|
2527 |
msgid "Enable it to display a border around the title and subtitle area."
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: includes/general-hooks.php:1254
|
2531 |
msgid "Boxed Title"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
+
#: includes/general-hooks.php:1255
|
2535 |
msgid "Enable it to wrap the title and subtitle in a box with background color."
|
2536 |
msgstr ""
|
2537 |
|
2538 |
+
#: includes/general-hooks.php:1288
|
2539 |
msgid "Title Box Custom Color"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
+
#: includes/general-hooks.php:1289
|
2543 |
msgid ""
|
2544 |
"Specifies a custom background color for the box around the title and "
|
2545 |
"subtitle."
|
2546 |
msgstr ""
|
2547 |
|
2548 |
+
#: includes/general-hooks.php:1327
|
2549 |
msgid "Display Post Meta"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
+
#: includes/general-hooks.php:1328
|
2553 |
msgid "Enable it to display post meta information on title section."
|
2554 |
msgstr ""
|
2555 |
|
2556 |
+
#: includes/general-hooks.php:1356
|
2557 |
msgid "Display Breadcrumb"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
+
#: includes/general-hooks.php:1357
|
2561 |
msgid "Enable it to display breadcrumb on title section."
|
2562 |
msgstr ""
|
2563 |
|
2564 |
+
#: includes/general-hooks.php:1385
|
2565 |
msgid "Border for Breadcrumb"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
+
#: includes/general-hooks.php:1386
|
2569 |
msgid "Enable it to display border around breadcrumb."
|
2570 |
msgstr ""
|
2571 |
|
2572 |
+
#: includes/general-hooks.php:1419
|
2573 |
msgid "Breadcrumb Separator Icon"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: includes/general-hooks.php:1453
|
2577 |
msgid "Text Align"
|
2578 |
msgstr ""
|
2579 |
|
2580 |
+
#: includes/general-hooks.php:1496
|
2581 |
msgid "Overlay Color"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: includes/general-hooks.php:1497
|
2585 |
msgid ""
|
2586 |
"The color that overlay on the background. Please note that color should "
|
2587 |
"have transparency."
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: includes/general-hooks.php:1525
|
2591 |
msgid "Overlay Pattern"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: includes/general-hooks.php:1557
|
2595 |
msgid "Hash"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: includes/general-hooks.php:1564
|
2599 |
msgid "Overlay Pattern Opacity"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: includes/general-hooks.php:1600
|
2603 |
msgid "Color Mode"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: includes/general-hooks.php:1635
|
2607 |
msgid "Enable Title Background"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: includes/general-hooks.php:1636
|
2611 |
msgid "Enable it to display custom background for title section."
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: includes/general-hooks.php:1664
|
2615 |
msgid "Enable Parallax Effect"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: includes/general-hooks.php:1665
|
2619 |
msgid "Enable it to have parallax background effect on this section."
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: includes/general-hooks.php:1666
|
2623 |
msgid ""
|
2624 |
"Note: Parallax feature in not available for \"Bottom Overlap\" mode for "
|
2625 |
"\"Vertical Position\" option."
|
2626 |
msgstr ""
|
2627 |
|
2628 |
+
#: includes/general-hooks.php:1699
|
2629 |
msgid "Background Color"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
+
#: includes/general-hooks.php:1700
|
2633 |
msgid "Specifies a background color for title bar."
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: includes/general-hooks.php:1734
|
2637 |
msgid "Background Size"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: includes/general-hooks.php:1735
|
2641 |
msgid "Specifies the background size."
|
2642 |
msgstr ""
|
2643 |
|
2644 |
+
#: includes/general-hooks.php:1767
|
2645 |
msgid "Auto"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
+
#: includes/general-hooks.php:1771
|
2649 |
msgid "Contain"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
+
#: includes/general-hooks.php:1775
|
2653 |
msgid "Cover"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
+
#: includes/general-hooks.php:1783
|
2657 |
msgid "Background Image"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
+
#: includes/general-hooks.php:1784
|
2661 |
msgid "Specifies a background image for title bar."
|
2662 |
msgstr ""
|
2663 |
|
2664 |
+
#: includes/general-hooks.php:1818
|
2665 |
msgid "Background Video MP4"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
+
#: includes/general-hooks.php:1819 includes/general-hooks.php:1854
|
2669 |
+
#: includes/general-hooks.php:1889
|
2670 |
msgid ""
|
2671 |
"You can upload custom video for title background</br>Note: if you set "
|
2672 |
"custom image, default image backgrounds will be ignored."
|
2673 |
msgstr ""
|
2674 |
|
2675 |
+
#: includes/general-hooks.php:1853
|
2676 |
msgid "Background Video Ogg"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
+
#: includes/general-hooks.php:1888
|
2680 |
msgid "Background Video WebM"
|
2681 |
msgstr ""
|
2682 |
|
2683 |
+
#: includes/general-hooks.php:1928
|
2684 |
msgid "Related Portfolios"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
+
#: includes/general-hooks.php:1929
|
2688 |
msgid "Setting for Related Portfolios Section in Single Page"
|
2689 |
msgstr ""
|
2690 |
|
2691 |
+
#: includes/general-hooks.php:1935
|
2692 |
msgid "Enable it to display related portfolios section on single portfolio page."
|
2693 |
msgstr ""
|
2694 |
|
2695 |
+
#: includes/general-hooks.php:1946
|
2696 |
msgid "Title Typography"
|
2697 |
msgstr ""
|
2698 |
|
2699 |
+
#: includes/general-hooks.php:1975
|
2700 |
msgid "Related Projects/Works"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
+
#: includes/general-hooks.php:1980
|
2704 |
msgid "Label Typography"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
+
#: includes/general-hooks.php:2133
|
2708 |
msgid "Category Terms Typography"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
+
#: includes/general-hooks.php:2178
|
2712 |
msgid "Hide it"
|
2713 |
msgstr ""
|
2714 |
|
2715 |
+
#: includes/general-hooks.php:2246
|
2716 |
msgid "Browse All Projects"
|
2717 |
msgstr ""
|
2718 |
|
2719 |
+
#: includes/general-hooks.php:2250
|
2720 |
msgid "Button Typography"
|
2721 |
msgstr ""
|
2722 |
|
2723 |
+
#: includes/general-hooks.php:2271
|
2724 |
msgid "Button Background"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
+
#: includes/general-hooks.php:2297
|
2728 |
msgid "Portfolio Page"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
+
#: includes/general-hooks.php:2298
|
2732 |
msgid "Preview Portfolio Page"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
+
#: includes/general-hooks.php:2303
|
2736 |
msgid "Custom Page For Archive"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
+
#: includes/general-hooks.php:2304
|
2740 |
msgid "Enable this option to select custom page for archive page"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
+
#: includes/general-hooks.php:2313
|
2744 |
msgid "Select Page"
|
2745 |
msgstr ""
|
2746 |
|
2747 |
+
#: includes/general-hooks.php:2329
|
2748 |
msgid "Portfolio Template"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
+
#: includes/general-hooks.php:2330
|
2752 |
msgid "Choose your portfolio template."
|
2753 |
msgstr ""
|
2754 |
|
2755 |
+
#: includes/general-hooks.php:2350 includes/general-hooks.php:3054
|
2756 |
msgid "Land"
|
2757 |
msgstr ""
|
2758 |
|
2759 |
+
#: includes/general-hooks.php:2359 includes/general-hooks.php:3063
|
2760 |
msgid "Image Aspect Ratio"
|
2761 |
msgstr ""
|
2762 |
|
2763 |
+
#: includes/general-hooks.php:2389 includes/general-hooks.php:3093
|
2764 |
msgid "Portfolio Hover Type"
|
2765 |
msgstr ""
|
2766 |
|
2767 |
+
#: includes/general-hooks.php:2390 includes/general-hooks.php:2452
|
2768 |
+
#: includes/general-hooks.php:3094 includes/general-hooks.php:3149
|
2769 |
msgid "Hover over images to see the animation."
|
2770 |
msgstr ""
|
2771 |
|
2772 |
+
#: includes/general-hooks.php:2451 includes/general-hooks.php:3148
|
2773 |
msgid "Tile Portfolio Item Type"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
+
#: includes/general-hooks.php:2567 includes/general-hooks.php:3242
|
2777 |
msgid "Number of Columns in Tablet"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
+
#: includes/general-hooks.php:2596 includes/general-hooks.php:3271
|
2781 |
msgid "Number of Columns in Mobile"
|
2782 |
msgstr ""
|
2783 |
|
2784 |
+
#: includes/general-hooks.php:2624 includes/general-hooks.php:3299
|
2785 |
msgid "Display Like Button"
|
2786 |
msgstr ""
|
2787 |
|
2788 |
+
#: includes/general-hooks.php:2625 includes/general-hooks.php:3300
|
2789 |
msgid ""
|
2790 |
"Enable it to display %s like button%s on portfolio portfolios. Please note "
|
2791 |
"WP Ulike plugin needs to be activaited to use this option."
|
2792 |
msgstr ""
|
2793 |
|
2794 |
+
#: includes/general-hooks.php:2649 includes/general-hooks.php:2738
|
2795 |
msgid "Enable Entry Box Coloring"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
+
#: includes/general-hooks.php:2650 includes/general-hooks.php:2739
|
2799 |
msgid "Specifies the border/background color for entry box."
|
2800 |
msgstr ""
|
2801 |
|
2802 |
+
#: includes/general-hooks.php:2674 includes/general-hooks.php:2758
|
2803 |
msgid "Specifies the background color for entry box."
|
2804 |
msgstr ""
|
2805 |
|
2806 |
+
#: includes/general-hooks.php:2707 includes/general-hooks.php:2786
|
2807 |
msgid "Specifies the border color for entry box."
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: includes/general-hooks.php:2812
|
2811 |
msgid "Portfolio Sidebar Position"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
+
#: includes/general-hooks.php:2813
|
2815 |
msgid "Specifies the position of sidebar on portfolio page."
|
2816 |
msgstr ""
|
2817 |
|
2818 |
+
#: includes/general-hooks.php:2819 includes/general-hooks.php:3333
|
2819 |
msgid "No Sidebar"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
+
#: includes/general-hooks.php:2823 includes/general-hooks.php:3337
|
2823 |
msgid "Right Sidebar"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
+
#: includes/general-hooks.php:2827 includes/general-hooks.php:3341
|
2827 |
msgid "Left Sidebar"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
+
#: includes/general-hooks.php:2831 includes/general-hooks.php:3345
|
2831 |
msgid "Left Left Sidebar"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
+
#: includes/general-hooks.php:2835 includes/general-hooks.php:3349
|
2835 |
msgid "Right Right Sidebar"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
+
#: includes/general-hooks.php:2839 includes/general-hooks.php:3353
|
2839 |
msgid "Left Right Sidebar"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
+
#: includes/general-hooks.php:2843 includes/general-hooks.php:3357
|
2843 |
msgid "Right Left Sidebar"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
+
#: includes/general-hooks.php:2855
|
2847 |
msgid "Portfolio Sidebar Style"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
+
#: includes/general-hooks.php:2856
|
2851 |
msgid "Specifies the style of sidebar on portfolio page."
|
2852 |
msgstr ""
|
2853 |
|
2854 |
+
#: includes/general-hooks.php:2870 includes/general-hooks.php:3380
|
2855 |
msgid "Simple"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
+
#: includes/general-hooks.php:2874 includes/general-hooks.php:3384
|
2859 |
msgid "Bordered Sidebar"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
+
#: includes/general-hooks.php:2878 includes/general-hooks.php:3388
|
2863 |
msgid "Overlap Background"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: includes/general-hooks.php:2887
|
2867 |
msgid "Number of Portfolios Per Page"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
+
#: includes/general-hooks.php:2888
|
2871 |
msgid "Specifies the number of portfolios items to show on each page."
|
2872 |
msgstr ""
|
2873 |
|
2874 |
+
#: includes/general-hooks.php:2906
|
2875 |
msgid "Display Title Bar?"
|
2876 |
msgstr ""
|
2877 |
|
2878 |
+
#: includes/general-hooks.php:2907
|
2879 |
msgid ""
|
2880 |
"Specifies whether to display the title bar at top of portfolio archive page "
|
2881 |
"or not."
|
2882 |
msgstr ""
|
2883 |
|
2884 |
+
#: includes/general-hooks.php:2925
|
2885 |
msgid "Display Breadcrumb?"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
+
#: includes/general-hooks.php:2926
|
2889 |
msgid ""
|
2890 |
"Specifies whether to display the breadcrumb in title bar of portfolio "
|
2891 |
"archive page or not."
|
2892 |
msgstr ""
|
2893 |
|
2894 |
+
#: includes/general-hooks.php:2948
|
2895 |
msgid "Display Title?"
|
2896 |
msgstr ""
|
2897 |
|
2898 |
+
#: includes/general-hooks.php:2949
|
2899 |
msgid ""
|
2900 |
"Specifies whether to display the title in title bar of portfolio archive "
|
2901 |
"page or not."
|
2902 |
msgstr ""
|
2903 |
|
2904 |
+
#: includes/general-hooks.php:2971
|
2905 |
msgid "Custom Title"
|
2906 |
msgstr ""
|
2907 |
|
2908 |
+
#: includes/general-hooks.php:2994
|
2909 |
msgid "Custom Breadcrumb Label"
|
2910 |
msgstr ""
|
2911 |
|
2912 |
+
#: includes/general-hooks.php:3021
|
2913 |
msgid "Portfolio Category & tag"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
+
#: includes/general-hooks.php:3022
|
2917 |
msgid "Portfolio Category & tag page Setting"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
+
#: includes/general-hooks.php:3026
|
2921 |
msgid "Taxonomy Page Template"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: includes/general-hooks.php:3325
|
2925 |
msgid "Taxonomy Page Sidebar Position"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
+
#: includes/general-hooks.php:3366
|
2929 |
msgid "Sidebar Style"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
+
#: includes/general-hooks.php:3367
|
2933 |
msgid "Specifies the style of sidebar on category & tag page."
|
2934 |
msgstr ""
|
2935 |
|
2936 |
+
#: includes/general-hooks.php:3401
|
2937 |
msgid "Portfolio MetaData"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
+
#: includes/general-hooks.php:3402
|
2941 |
msgid "Portfolio MetaData Setting"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: includes/general-hooks.php:3406
|
2945 |
msgid "Label for Launch Project Button"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: includes/general-hooks.php:3407
|
2949 |
msgid "Specify a label for launch project button."
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: includes/general-hooks.php:3414
|
2953 |
msgid "Launch Project"
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: includes/general-hooks.php:3418
|
2957 |
msgid "Portfolio MetaDatas"
|
2958 |
msgstr ""
|
2959 |
|
2960 |
+
#: includes/general-hooks.php:3419
|
2961 |
msgid ""
|
2962 |
"Specify the number of fields and the label of each one for portfolio "
|
2963 |
"metadatas"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
+
#: includes/general-hooks.php:3425
|
2967 |
msgid "Project URL"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
+
#: includes/general-hooks.php:3426
|
2971 |
msgid "Client"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
+
#: includes/general-hooks.php:3427
|
2975 |
msgid "Release Date"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
+
#: includes/general-hooks.php:3429
|
2979 |
msgid "Custom Field 1"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
#: includes/general-hooks.php:3430
|
2983 |
msgid "Custom Field 2"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: includes/general-hooks.php:3431
|
2987 |
msgid "Custom Field 3"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
+
#: includes/general-hooks.php:3432
|
2991 |
msgid "Custom Field 4"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: includes/general-hooks.php:3433
|
2995 |
msgid "Custom Field 5"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: includes/general-hooks.php:3434
|
2999 |
msgid "Custom Field 6"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
+
#: includes/general-hooks.php:3435
|
3003 |
msgid "Custom Field 7"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
+
#: includes/general-hooks.php:3436
|
3007 |
msgid "Custom Field 8"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
+
#: includes/general-hooks.php:3437
|
3011 |
msgid "Custom Field 9"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
+
#: includes/general-hooks.php:3438
|
3015 |
msgid "Custom Field 10"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
+
#: includes/general-hooks.php:3439
|
3019 |
msgid "Custom Field 11"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
+
#: includes/general-hooks.php:3440
|
3023 |
msgid "Custom Field 12"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
+
#: includes/general-hooks.php:3451 includes/general-hooks.php:3452
|
3027 |
msgid "Single Portfolio Appearance"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
+
#: includes/general-hooks.php:3456
|
3031 |
msgid "Content"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
+
#: includes/general-hooks.php:3474
|
3035 |
msgid "Overview Content"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
+
#: includes/general-hooks.php:3483
|
3039 |
msgid "Meta"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
+
#: includes/general-hooks.php:3492
|
3043 |
msgid "Meta Terms"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
+
#: includes/general-hooks.php:3501
|
3047 |
msgid "Launch Button"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
+
#: includes/general-hooks.php:3510
|
3051 |
msgid "Launch Button Background"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
+
#: includes/general-hooks.php:3555
|
3055 |
msgid "Portfolio Options"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
+
#: includes/general-hooks.php:3576
|
3059 |
msgid "Likes"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
+
#: includes/general-hooks.php:3608
|
3063 |
msgid "Like"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
+
#: includes/general-hooks.php:3635
|
3067 |
msgid "Share"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
+
#: includes/general-hooks.php:3674 public/includes/templates-post.php:19
|
3071 |
msgid "Related Projects"
|
3072 |
msgstr ""
|
3073 |
|
public/assets/js/portfolio.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/*! 2.0.
|
2 |
* All required plugins
|
3 |
* http://averta.net/phlox/
|
4 |
*/
|
1 |
+
/*! 2.0.1
|
2 |
* All required plugins
|
3 |
* http://averta.net/phlox/
|
4 |
*/
|