Version Description
Download this release
Release Info
Developer | averta |
Plugin | Premium Portfolio Features for Phlox theme |
Version | 2.0.0 |
Comparing to | |
See all releases |
Code changes from version 1.9.8 to 2.0.0
- README.txt +9 -5
- admin/includes/metaboxes/metabox-fields-portfolio.php +24 -0
- auxin-portfolio.php +2 -2
- includes/define.php +1 -1
- includes/elements/recent-portfolios-grid-carousel.php +1 -1
- includes/elements/recent-portfolios-tile-carousel.php +1 -1
- includes/general-hooks.php +128 -16
- languages/auxin-portfolio.pot +314 -285
- public/assets/js/portfolio.js +1 -1
README.txt
CHANGED
@@ -6,8 +6,8 @@ License URI: http://www.gnu.org/licenses/gpl.html
|
|
6 |
Tags: phlox, gallery, elementor, siteorigin, portfolio, averta, auxin, fullwidth, masonry, timeline, projects, showcase, minimal, wix, flat
|
7 |
Requires PHP: 5.4
|
8 |
Requires at least: 4.6
|
9 |
-
Tested up to: 5.4.
|
10 |
-
Stable tag:
|
11 |
License: GPLv3
|
12 |
License URI: http://www.gnu.org/licenses/gpl.html
|
13 |
|
@@ -136,6 +136,11 @@ Bugs can be reported in our [support forums](http://support.averta.net/en/item/p
|
|
136 |
|
137 |
== Changelog ==
|
138 |
|
|
|
|
|
|
|
|
|
|
|
139 |
= Version 1.8.6 / (10.02.2020) =
|
140 |
- [Fix]: Adding Gutenburg support for portfolio single pages.
|
141 |
|
@@ -245,6 +250,5 @@ Bugs can be reported in our [support forums](http://support.averta.net/en/item/p
|
|
245 |
|
246 |
== Upgrade Notice ==
|
247 |
|
248 |
-
=
|
249 |
-
- [
|
250 |
-
- [Fix]: Minor bugs fixed.
|
6 |
Tags: phlox, gallery, elementor, siteorigin, portfolio, averta, auxin, fullwidth, masonry, timeline, projects, showcase, minimal, wix, flat
|
7 |
Requires PHP: 5.4
|
8 |
Requires at least: 4.6
|
9 |
+
Tested up to: 5.4.3
|
10 |
+
Stable tag: 2.0.0
|
11 |
License: GPLv3
|
12 |
License URI: http://www.gnu.org/licenses/gpl.html
|
13 |
|
136 |
|
137 |
== Changelog ==
|
138 |
|
139 |
+
= Version 2.0.0 / (11.05.2020) =
|
140 |
+
- [New]: New option for changing the character limit of last breadcrumb text added.
|
141 |
+
- [New]: New meta options for single portfolio page about customizing header template added.
|
142 |
+
- [Fix]: Minor bugs fixed.
|
143 |
+
|
144 |
= Version 1.8.6 / (10.02.2020) =
|
145 |
- [Fix]: Adding Gutenburg support for portfolio single pages.
|
146 |
|
250 |
|
251 |
== Upgrade Notice ==
|
252 |
|
253 |
+
= 2.0.0 =
|
254 |
+
- [New]: New meta options for single portfolio page about customizing header template added.
|
|
admin/includes/metaboxes/metabox-fields-portfolio.php
CHANGED
@@ -24,11 +24,35 @@ function auxin_push_metabox_models_portfolio( $models ){
|
|
24 |
locate_template( AUXIN_CON . 'admin/metaboxes/metabox-fields-general-title-setting.php' , true, true );
|
25 |
locate_template( AUXIN_CON . 'admin/metaboxes/metabox-fields-general-advanced.php' , true, true );
|
26 |
locate_template( AUXIN_CON . 'admin/metaboxes/metabox-fields-general-layout.php' , true, true );
|
|
|
|
|
|
|
|
|
27 |
|
28 |
include_once( 'metabox-fields-portfolio-metadata.php' );
|
29 |
include_once( 'metabox-fields-portfolio-related.php' );
|
30 |
|
31 |
// Attach general common metabox models to hub
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
$models[] = array(
|
33 |
'model' => auxin_metabox_fields_general_layout(),
|
34 |
'priority' => 10
|
24 |
locate_template( AUXIN_CON . 'admin/metaboxes/metabox-fields-general-title-setting.php' , true, true );
|
25 |
locate_template( AUXIN_CON . 'admin/metaboxes/metabox-fields-general-advanced.php' , true, true );
|
26 |
locate_template( AUXIN_CON . 'admin/metaboxes/metabox-fields-general-layout.php' , true, true );
|
27 |
+
include_once( AUXELS_DIR . '/admin/includes/metaboxes/metabox-fields-general-header-template.php' );
|
28 |
+
include_once( AUXELS_DIR . '/admin/includes/metaboxes/metabox-fields-general-header-template-settings.php' );
|
29 |
+
include_once( AUXELS_DIR . '/admin/includes/metaboxes/metabox-fields-general-footer-template.php' );
|
30 |
+
include_once( AUXELS_DIR . '/admin/includes/metaboxes/metabox-fields-general-footer-template-settings.php' );
|
31 |
|
32 |
include_once( 'metabox-fields-portfolio-metadata.php' );
|
33 |
include_once( 'metabox-fields-portfolio-related.php' );
|
34 |
|
35 |
// Attach general common metabox models to hub
|
36 |
+
$models[] = array(
|
37 |
+
'model' => auxin_metabox_fields_header_templates(),
|
38 |
+
'priority' => 10
|
39 |
+
);
|
40 |
+
|
41 |
+
$models[] = array(
|
42 |
+
'model' => auxin_metabox_fields_header_templates_settings(),
|
43 |
+
'priority' => 10
|
44 |
+
);
|
45 |
+
|
46 |
+
$models[] = array(
|
47 |
+
'model' => auxin_metabox_fields_footer_templates(),
|
48 |
+
'priority' => 10
|
49 |
+
);
|
50 |
+
|
51 |
+
$models[] = array(
|
52 |
+
'model' => auxin_metabox_fields_footer_templates_settings(),
|
53 |
+
'priority' => 10
|
54 |
+
);
|
55 |
+
|
56 |
$models[] = array(
|
57 |
'model' => auxin_metabox_fields_general_layout(),
|
58 |
'priority' => 10
|
auxin-portfolio.php
CHANGED
@@ -12,14 +12,14 @@
|
|
12 |
* Plugin Name: Phlox Portfolio
|
13 |
* Plugin URI: http://phlox.pro/
|
14 |
* Description: Showcase your projects beautifully in Phlox theme
|
15 |
-
* Version:
|
16 |
* Author: averta
|
17 |
* Author URI: http://averta.net
|
18 |
* License: GPL2
|
19 |
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
20 |
* Text Domain: auxin-portfolio
|
21 |
* Domain Path: /languages
|
22 |
-
* Tested up to: 5.
|
23 |
*/
|
24 |
|
25 |
// If this file is called directly, abort.
|
12 |
* Plugin Name: Phlox Portfolio
|
13 |
* Plugin URI: http://phlox.pro/
|
14 |
* Description: Showcase your projects beautifully in Phlox theme
|
15 |
+
* Version: 2.0.0
|
16 |
* Author: averta
|
17 |
* Author URI: http://averta.net
|
18 |
* License: GPL2
|
19 |
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
20 |
* Text Domain: auxin-portfolio
|
21 |
* Domain Path: /languages
|
22 |
+
* Tested up to: 5.4.3
|
23 |
*/
|
24 |
|
25 |
// If this file is called directly, abort.
|
includes/define.php
CHANGED
@@ -15,7 +15,7 @@ if( ! defined( 'THEME_NAME' ) ){
|
|
15 |
|
16 |
|
17 |
|
18 |
-
define( 'AUXPFO_VERSION' , '
|
19 |
|
20 |
define( 'AUXPFO_SLUG' , 'auxin-portfolio' );
|
21 |
|
15 |
|
16 |
|
17 |
|
18 |
+
define( 'AUXPFO_VERSION' , '2.0.0' );
|
19 |
|
20 |
define( 'AUXPFO_SLUG' , 'auxin-portfolio' );
|
21 |
|
includes/elements/recent-portfolios-grid-carousel.php
CHANGED
@@ -131,7 +131,7 @@ function auxin_widget_recent_portfolios_grid_carousel_callback( $atts, $shortcod
|
|
131 |
$items_classes = '';
|
132 |
$column_class = '';
|
133 |
$phone_break_point = 767;
|
134 |
-
$tablet_break_point =
|
135 |
|
136 |
// widget header ------------------------------
|
137 |
echo $result['widget_header'];
|
131 |
$items_classes = '';
|
132 |
$column_class = '';
|
133 |
$phone_break_point = 767;
|
134 |
+
$tablet_break_point = 1025;
|
135 |
|
136 |
// widget header ------------------------------
|
137 |
echo $result['widget_header'];
|
includes/elements/recent-portfolios-tile-carousel.php
CHANGED
@@ -515,7 +515,7 @@ function auxin_widget_recent_portfolios_tiles_carousel_callback( $atts, $shortco
|
|
515 |
echo $result['widget_title'];
|
516 |
|
517 |
$phone_break_point = 767;
|
518 |
-
$tablet_break_point =
|
519 |
|
520 |
$show_comments = true; // shows comments icon
|
521 |
$post_counter = 0;
|
515 |
echo $result['widget_title'];
|
516 |
|
517 |
$phone_break_point = 767;
|
518 |
+
$tablet_break_point = 1025;
|
519 |
|
520 |
$show_comments = true; // shows comments icon
|
521 |
$post_counter = 0;
|
includes/general-hooks.php
CHANGED
@@ -278,6 +278,33 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
|
|
278 |
'default' => '1',
|
279 |
'type' => 'switch'
|
280 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
$options[] = array(
|
282 |
'title' => __( 'Share Button Icon', 'auxin-portfolio' ),
|
283 |
'id' => 'portfolio_single_share_button_icon',
|
@@ -295,13 +322,18 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
|
|
295 |
'id' => 'show_portfolio_single_share',
|
296 |
'value' => array('1'),
|
297 |
'operator'=> ''
|
298 |
-
|
|
|
|
|
|
|
|
|
|
|
299 |
)
|
300 |
);
|
301 |
|
302 |
$options[] = array(
|
303 |
'title' => __( 'Icon Color', 'auxin-portfolio' ),
|
304 |
-
'description' => __( '
|
305 |
'id' => 'portfolio_single_share_button_icon_color',
|
306 |
'section' => 'portfolio-section-single',
|
307 |
'transport' => 'postMessage',
|
@@ -323,13 +355,18 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
|
|
323 |
'id' => 'show_portfolio_single_share',
|
324 |
'value' => array('1'),
|
325 |
'operator'=> ''
|
326 |
-
|
|
|
|
|
|
|
|
|
|
|
327 |
)
|
328 |
);
|
329 |
|
330 |
$options[] = array(
|
331 |
'title' => __( 'Icon Hover Color', 'auxin-portfolio' ),
|
332 |
-
'description' => __( '
|
333 |
'id' => 'portfolio_single_share_button_icon_hover_color',
|
334 |
'section' => 'portfolio-section-single',
|
335 |
'transport' => 'postMessage',
|
@@ -351,7 +388,12 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
|
|
351 |
'id' => 'show_portfolio_single_share',
|
352 |
'value' => array('1'),
|
353 |
'operator'=> ''
|
354 |
-
|
|
|
|
|
|
|
|
|
|
|
355 |
)
|
356 |
);
|
357 |
|
@@ -371,7 +413,12 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
|
|
371 |
'id' => 'show_portfolio_single_share',
|
372 |
'value' => array('1'),
|
373 |
'operator'=> ''
|
374 |
-
|
|
|
|
|
|
|
|
|
|
|
375 |
),
|
376 |
'style_callback' => function( $value = null ){
|
377 |
if( ! $value ){
|
@@ -402,7 +449,12 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
|
|
402 |
'id' => 'show_portfolio_single_share',
|
403 |
'value' => array('1'),
|
404 |
'operator'=> ''
|
405 |
-
|
|
|
|
|
|
|
|
|
|
|
406 |
),
|
407 |
);
|
408 |
|
@@ -431,6 +483,32 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
|
|
431 |
'type' => 'switch'
|
432 |
);
|
433 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
434 |
$options[] = array(
|
435 |
'title' => __( 'Like Icon', 'auxin-portfolio' ),
|
436 |
'id' => 'portfolio_single_like_icon',
|
@@ -448,7 +526,12 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
|
|
448 |
'id' => 'show_portfolio_single_like',
|
449 |
'value' => array('1'),
|
450 |
'operator'=> ''
|
451 |
-
|
|
|
|
|
|
|
|
|
|
|
452 |
)
|
453 |
);
|
454 |
|
@@ -476,7 +559,12 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
|
|
476 |
'id' => 'show_portfolio_single_like',
|
477 |
'value' => array('1'),
|
478 |
'operator'=> ''
|
479 |
-
|
|
|
|
|
|
|
|
|
|
|
480 |
)
|
481 |
);
|
482 |
|
@@ -504,7 +592,12 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
|
|
504 |
'id' => 'show_portfolio_single_like',
|
505 |
'value' => array('1'),
|
506 |
'operator'=> ''
|
507 |
-
|
|
|
|
|
|
|
|
|
|
|
508 |
)
|
509 |
);
|
510 |
|
@@ -524,7 +617,12 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
|
|
524 |
'id' => 'show_portfolio_single_like',
|
525 |
'value' => array('1'),
|
526 |
'operator'=> ''
|
527 |
-
|
|
|
|
|
|
|
|
|
|
|
528 |
),
|
529 |
'style_callback' => function( $value = null ){
|
530 |
if( ! $value ){
|
@@ -555,7 +653,12 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
|
|
555 |
'id' => 'show_portfolio_single_like',
|
556 |
'value' => array('1'),
|
557 |
'operator'=> ''
|
558 |
-
|
|
|
|
|
|
|
|
|
|
|
559 |
),
|
560 |
);
|
561 |
}
|
@@ -3464,8 +3567,15 @@ if ( auxin_is_plugin_active( 'wp-ulike/wp-ulike.php' ) ) {
|
|
3464 |
// Portfolio single ------------------------------------------------------------
|
3465 |
|
3466 |
function auxpfo_change_like_icon ( $args ) {
|
3467 |
-
$
|
3468 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3469 |
return $args;
|
3470 |
}
|
3471 |
|
@@ -3478,7 +3588,7 @@ function auxpfo_add_single_portfolio_actions( $show_like_btn, $show_share_btn ){
|
|
3478 |
|
3479 |
if( function_exists( 'wp_ulike' ) && $show_like_btn ){
|
3480 |
add_filter( 'wp_ulike_add_templates_args', 'auxpfo_change_like_icon', 1, 1 );
|
3481 |
-
wp_ulike( 'get', array( 'style' => 'wpulike-heart', '
|
3482 |
remove_filter( 'wp_ulike_add_templates_args', 'auxpfo_change_like_icon', 1 );
|
3483 |
}
|
3484 |
if( $show_share_btn ) {
|
@@ -3486,7 +3596,9 @@ function auxpfo_add_single_portfolio_actions( $show_like_btn, $show_share_btn ){
|
|
3486 |
<?php $share_icon = auxin_get_option( 'portfolio_single_share_button_icon', 'auxicon-share' ) ; ?>
|
3487 |
<div class="aux-single-portfolio-share">
|
3488 |
<div class="aux-tooltip-socials aux-tooltip-dark aux-socials aux-icon-left aux-medium">
|
3489 |
-
|
|
|
|
|
3490 |
<span class="aux-text"><?php _e( 'Share', 'auxin-portfolio' ); ?></span>
|
3491 |
</div>
|
3492 |
</div>
|
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' ),
|
285 |
+
'id' => 'portfolio_single_share_button_type',
|
286 |
+
'section' => 'portfolio-section-single',
|
287 |
+
'transport' => 'postMessage',
|
288 |
+
'type' => 'select',
|
289 |
+
'choices' => array(
|
290 |
+
'icon' => __( 'Icon', 'auxin-portfolio' ),
|
291 |
+
'text' => __( 'Text', 'auxin-portfolio' )
|
292 |
+
),
|
293 |
+
'dependency' => array(
|
294 |
+
array(
|
295 |
+
'id' => 'show_portfolio_single_share_like_section',
|
296 |
+
'value' => array('1'),
|
297 |
+
'operator'=> ''
|
298 |
+
),
|
299 |
+
array(
|
300 |
+
'id' => 'show_portfolio_single_share',
|
301 |
+
'value' => array('1'),
|
302 |
+
'operator'=> ''
|
303 |
+
)
|
304 |
+
),
|
305 |
+
'default' => 'icon',
|
306 |
+
);
|
307 |
+
|
308 |
$options[] = array(
|
309 |
'title' => __( 'Share Button Icon', 'auxin-portfolio' ),
|
310 |
'id' => 'portfolio_single_share_button_icon',
|
322 |
'id' => 'show_portfolio_single_share',
|
323 |
'value' => array('1'),
|
324 |
'operator'=> ''
|
325 |
+
),
|
326 |
+
array(
|
327 |
+
'id' => 'portfolio_single_share_button_type',
|
328 |
+
'value' => array('icon'),
|
329 |
+
'operator'=> ''
|
330 |
+
)
|
331 |
)
|
332 |
);
|
333 |
|
334 |
$options[] = array(
|
335 |
'title' => __( 'Icon Color', 'auxin-portfolio' ),
|
336 |
+
'description' => __( 'Share icon color','auxin-portfolio' ),
|
337 |
'id' => 'portfolio_single_share_button_icon_color',
|
338 |
'section' => 'portfolio-section-single',
|
339 |
'transport' => 'postMessage',
|
355 |
'id' => 'show_portfolio_single_share',
|
356 |
'value' => array('1'),
|
357 |
'operator'=> ''
|
358 |
+
),
|
359 |
+
array(
|
360 |
+
'id' => 'portfolio_single_share_button_type',
|
361 |
+
'value' => array('icon'),
|
362 |
+
'operator'=> ''
|
363 |
+
)
|
364 |
)
|
365 |
);
|
366 |
|
367 |
$options[] = array(
|
368 |
'title' => __( 'Icon Hover Color', 'auxin-portfolio' ),
|
369 |
+
'description' => __( 'Share icon hover color','auxin-portfolio' ),
|
370 |
'id' => 'portfolio_single_share_button_icon_hover_color',
|
371 |
'section' => 'portfolio-section-single',
|
372 |
'transport' => 'postMessage',
|
388 |
'id' => 'show_portfolio_single_share',
|
389 |
'value' => array('1'),
|
390 |
'operator'=> ''
|
391 |
+
),
|
392 |
+
array(
|
393 |
+
'id' => 'portfolio_single_share_button_type',
|
394 |
+
'value' => array('icon'),
|
395 |
+
'operator'=> ''
|
396 |
+
)
|
397 |
)
|
398 |
);
|
399 |
|
413 |
'id' => 'show_portfolio_single_share',
|
414 |
'value' => array('1'),
|
415 |
'operator'=> ''
|
416 |
+
),
|
417 |
+
array(
|
418 |
+
'id' => 'portfolio_single_share_button_type',
|
419 |
+
'value' => array('icon'),
|
420 |
+
'operator'=> ''
|
421 |
+
)
|
422 |
),
|
423 |
'style_callback' => function( $value = null ){
|
424 |
if( ! $value ){
|
449 |
'id' => 'show_portfolio_single_share',
|
450 |
'value' => array('1'),
|
451 |
'operator'=> ''
|
452 |
+
),
|
453 |
+
array(
|
454 |
+
'id' => 'portfolio_single_share_button_type',
|
455 |
+
'value' => array('icon'),
|
456 |
+
'operator'=> ''
|
457 |
+
)
|
458 |
),
|
459 |
);
|
460 |
|
483 |
'type' => 'switch'
|
484 |
);
|
485 |
|
486 |
+
$options[] = array(
|
487 |
+
'title' => __( 'Like Type', 'auxin-portfolio' ),
|
488 |
+
'description' => __( 'Enable it to display text instead of icon.', 'auxin-portfolio' ),
|
489 |
+
'id' => 'portfolio_single_like_button_type',
|
490 |
+
'section' => 'portfolio-section-single',
|
491 |
+
'transport' => 'postMessage',
|
492 |
+
'type' => 'select',
|
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',
|
500 |
+
'value' => array('1'),
|
501 |
+
'operator'=> ''
|
502 |
+
),
|
503 |
+
array(
|
504 |
+
'id' => 'show_portfolio_single_like',
|
505 |
+
'value' => array('1'),
|
506 |
+
'operator'=> ''
|
507 |
+
)
|
508 |
+
),
|
509 |
+
'default' => 'icon',
|
510 |
+
);
|
511 |
+
|
512 |
$options[] = array(
|
513 |
'title' => __( 'Like Icon', 'auxin-portfolio' ),
|
514 |
'id' => 'portfolio_single_like_icon',
|
526 |
'id' => 'show_portfolio_single_like',
|
527 |
'value' => array('1'),
|
528 |
'operator'=> ''
|
529 |
+
),
|
530 |
+
array(
|
531 |
+
'id' => 'portfolio_single_like_button_type',
|
532 |
+
'value' => array('icon'),
|
533 |
+
'operator'=> ''
|
534 |
+
)
|
535 |
)
|
536 |
);
|
537 |
|
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 |
|
592 |
'id' => 'show_portfolio_single_like',
|
593 |
'value' => array('1'),
|
594 |
'operator'=> ''
|
595 |
+
),
|
596 |
+
array(
|
597 |
+
'id' => 'portfolio_single_like_button_type',
|
598 |
+
'value' => array('icon'),
|
599 |
+
'operator'=> ''
|
600 |
+
)
|
601 |
)
|
602 |
);
|
603 |
|
617 |
'id' => 'show_portfolio_single_like',
|
618 |
'value' => array('1'),
|
619 |
'operator'=> ''
|
620 |
+
),
|
621 |
+
array(
|
622 |
+
'id' => 'portfolio_single_like_button_type',
|
623 |
+
'value' => array('icon'),
|
624 |
+
'operator'=> ''
|
625 |
+
)
|
626 |
),
|
627 |
'style_callback' => function( $value = null ){
|
628 |
if( ! $value ){
|
653 |
'id' => 'show_portfolio_single_like',
|
654 |
'value' => array('1'),
|
655 |
'operator'=> ''
|
656 |
+
),
|
657 |
+
array(
|
658 |
+
'id' => 'portfolio_single_like_button_type',
|
659 |
+
'value' => array('icon'),
|
660 |
+
'operator'=> ''
|
661 |
+
)
|
662 |
),
|
663 |
);
|
664 |
}
|
3567 |
// Portfolio single ------------------------------------------------------------
|
3568 |
|
3569 |
function auxpfo_change_like_icon ( $args ) {
|
3570 |
+
$like_class = ( 'icon' == $like_type = auxin_get_option( 'portfolio_single_like_button_type', 'icon' ) ) ? ' aux-icon ' . auxin_get_option( 'portfolio_single_like_icon', 'auxicon-heart-2' ) : 'aux-has-text';
|
3571 |
+
|
3572 |
+
$args['button_class'] .= ' ' . $like_class;
|
3573 |
+
if ( $like_type == 'text' ) {
|
3574 |
+
$args['button_type'] = 'text';
|
3575 |
+
$args['button_text'] = __( 'Like', THEME_DOMAIN );
|
3576 |
+
} else {
|
3577 |
+
$args['button_type'] = 'image';
|
3578 |
+
}
|
3579 |
return $args;
|
3580 |
}
|
3581 |
|
3588 |
|
3589 |
if( function_exists( 'wp_ulike' ) && $show_like_btn ){
|
3590 |
add_filter( 'wp_ulike_add_templates_args', 'auxpfo_change_like_icon', 1, 1 );
|
3591 |
+
wp_ulike( 'get', array( 'style' => 'wpulike-heart', 'wrapper_class' => 'aux-wpulike aux-wpulike-portfolio' ) );
|
3592 |
remove_filter( 'wp_ulike_add_templates_args', 'auxpfo_change_like_icon', 1 );
|
3593 |
}
|
3594 |
if( $show_share_btn ) {
|
3596 |
<?php $share_icon = auxin_get_option( 'portfolio_single_share_button_icon', 'auxicon-share' ) ; ?>
|
3597 |
<div class="aux-single-portfolio-share">
|
3598 |
<div class="aux-tooltip-socials aux-tooltip-dark aux-socials aux-icon-left aux-medium">
|
3599 |
+
<?php if ( auxin_get_option( 'portfolio_single_share_button_type', 'icon' ) == 'icon' ) { ?>
|
3600 |
+
<span class="aux-icon <?php echo esc_attr( $share_icon );?>"></span>
|
3601 |
+
<?php } ?>
|
3602 |
<span class="aux-text"><?php _e( 'Share', 'auxin-portfolio' ); ?></span>
|
3603 |
</div>
|
3604 |
</div>
|
languages/auxin-portfolio.pot
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
# Averta Copyright (c) {2020}
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
-
"Project-Id-Version: Phlox Portfolio
|
5 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
6 |
-
"POT-Creation-Date: 2020-
|
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 |
|
@@ -901,7 +901,7 @@ msgstr ""
|
|
901 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:190
|
902 |
#: includes/elements/elementor/recent-portfolios-grid.php:187
|
903 |
#: includes/elements/elementor/recent-portfolios-masonry.php:186
|
904 |
-
#: includes/elements/recent-portfolios.php:766 includes/general-hooks.php:
|
905 |
msgid "Display like button"
|
906 |
msgstr ""
|
907 |
|
@@ -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 |
|
@@ -988,7 +988,8 @@ msgstr ""
|
|
988 |
#: includes/elements/elementor/recent-portfolios-grid.php:742
|
989 |
#: includes/elements/elementor/recent-portfolios-masonry.php:609
|
990 |
#: includes/elements/elementor/recent-portfolios-tile.php:627
|
991 |
-
#: includes/elements/recent-portfolios.php:647
|
|
|
992 |
msgid "Text"
|
993 |
msgstr ""
|
994 |
|
@@ -1297,7 +1298,7 @@ msgstr ""
|
|
1297 |
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:414
|
1298 |
#: includes/elements/elementor/recent-portfolios-tile.php:315
|
1299 |
#: includes/elements/recent-portfolios-tile-carousel.php:163
|
1300 |
-
#: includes/elements/recent-portfolios.php:119 includes/general-hooks.php:
|
1301 |
msgid "Author"
|
1302 |
msgstr ""
|
1303 |
|
@@ -1431,34 +1432,34 @@ msgstr ""
|
|
1431 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:584
|
1432 |
#: includes/elements/elementor/recent-portfolios-grid.php:772
|
1433 |
#: includes/elements/elementor/recent-portfolios-masonry.php:651
|
1434 |
-
#: includes/elements/recent-portfolios.php:661 includes/general-hooks.php:
|
1435 |
-
#: includes/general-hooks.php:
|
1436 |
msgid "Space"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:585
|
1440 |
#: includes/elements/elementor/recent-portfolios-grid.php:773
|
1441 |
#: includes/elements/elementor/recent-portfolios-masonry.php:652
|
1442 |
-
#: includes/elements/recent-portfolios.php:662 includes/general-hooks.php:
|
1443 |
-
#: includes/general-hooks.php:
|
1444 |
msgid "Specifies horizontal space between items (pixel)."
|
1445 |
msgstr ""
|
1446 |
|
1447 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:597
|
1448 |
#: includes/elements/elementor/recent-portfolios-grid.php:785
|
1449 |
-
#: includes/elements/recent-portfolios.php:293 includes/general-hooks.php:
|
1450 |
msgid "Image aspect ratio"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:601
|
1454 |
-
#: includes/elements/recent-portfolios.php:301 includes/general-hooks.php:
|
1455 |
-
#: includes/general-hooks.php:
|
1456 |
msgid "Horizontal 4:3"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:602
|
1460 |
-
#: includes/elements/recent-portfolios.php:302 includes/general-hooks.php:
|
1461 |
-
#: includes/general-hooks.php:
|
1462 |
msgid "Horizontal 16:9"
|
1463 |
msgstr ""
|
1464 |
|
@@ -1497,24 +1498,24 @@ msgstr ""
|
|
1497 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:634
|
1498 |
#: includes/elements/elementor/recent-portfolios-grid.php:822
|
1499 |
#: includes/elements/elementor/recent-portfolios-masonry.php:687
|
1500 |
-
#: includes/elements/recent-portfolios.php:332 includes/general-hooks.php:
|
1501 |
-
#: includes/general-hooks.php:
|
1502 |
msgid "No animation"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:638
|
1506 |
#: includes/elements/elementor/recent-portfolios-grid.php:826
|
1507 |
#: includes/elements/elementor/recent-portfolios-masonry.php:691
|
1508 |
-
#: includes/elements/recent-portfolios.php:336 includes/general-hooks.php:
|
1509 |
-
#: includes/general-hooks.php:
|
1510 |
msgid "Classic with lightbox style 1"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:642
|
1514 |
#: includes/elements/elementor/recent-portfolios-grid.php:830
|
1515 |
#: includes/elements/elementor/recent-portfolios-masonry.php:695
|
1516 |
-
#: includes/elements/recent-portfolios.php:340 includes/general-hooks.php:
|
1517 |
-
#: includes/general-hooks.php:
|
1518 |
msgid "Classic with lightbox style 2"
|
1519 |
msgstr ""
|
1520 |
|
@@ -1525,9 +1526,9 @@ msgstr ""
|
|
1525 |
#: includes/elements/elementor/recent-portfolios-tile.php:663
|
1526 |
#: includes/elements/recent-portfolios-tile-carousel.php:103
|
1527 |
#: includes/elements/recent-portfolios.php:344
|
1528 |
-
#: includes/elements/recent-portfolios.php:412 includes/general-hooks.php:
|
1529 |
-
#: includes/general-hooks.php:
|
1530 |
-
#: includes/general-hooks.php:
|
1531 |
msgid "Overlay title style 1"
|
1532 |
msgstr ""
|
1533 |
|
@@ -1538,9 +1539,9 @@ msgstr ""
|
|
1538 |
#: includes/elements/elementor/recent-portfolios-tile.php:667
|
1539 |
#: includes/elements/recent-portfolios-tile-carousel.php:107
|
1540 |
#: includes/elements/recent-portfolios.php:348
|
1541 |
-
#: includes/elements/recent-portfolios.php:413 includes/general-hooks.php:
|
1542 |
-
#: includes/general-hooks.php:
|
1543 |
-
#: includes/general-hooks.php:
|
1544 |
msgid "Overlay title style 2"
|
1545 |
msgstr ""
|
1546 |
|
@@ -1551,9 +1552,9 @@ msgstr ""
|
|
1551 |
#: includes/elements/elementor/recent-portfolios-tile.php:671
|
1552 |
#: includes/elements/recent-portfolios-tile-carousel.php:111
|
1553 |
#: includes/elements/recent-portfolios.php:352
|
1554 |
-
#: includes/elements/recent-portfolios.php:414 includes/general-hooks.php:
|
1555 |
-
#: includes/general-hooks.php:
|
1556 |
-
#: includes/general-hooks.php:
|
1557 |
msgid "Overlay title with lightbox style 1"
|
1558 |
msgstr ""
|
1559 |
|
@@ -1564,9 +1565,9 @@ msgstr ""
|
|
1564 |
#: includes/elements/elementor/recent-portfolios-tile.php:675
|
1565 |
#: includes/elements/recent-portfolios-tile-carousel.php:115
|
1566 |
#: includes/elements/recent-portfolios.php:356
|
1567 |
-
#: includes/elements/recent-portfolios.php:415 includes/general-hooks.php:
|
1568 |
-
#: includes/general-hooks.php:
|
1569 |
-
#: includes/general-hooks.php:
|
1570 |
msgid "Overlay title with lightbox style 2"
|
1571 |
msgstr ""
|
1572 |
|
@@ -1767,7 +1768,7 @@ msgstr ""
|
|
1767 |
#: includes/elements/elementor/recent-portfolios-grid.php:418
|
1768 |
#: includes/elements/elementor/recent-portfolios-masonry.php:418
|
1769 |
#: includes/elements/elementor/recent-portfolios-tile.php:436
|
1770 |
-
#: includes/elements/recent-portfolios.php:467 includes/general-hooks.php:
|
1771 |
msgid "Right"
|
1772 |
msgstr ""
|
1773 |
|
@@ -1950,8 +1951,8 @@ msgstr ""
|
|
1950 |
|
1951 |
#: includes/elements/elementor/recent-portfolios-grid.php:1180
|
1952 |
#: includes/elements/elementor/recent-portfolios-masonry.php:1013
|
1953 |
-
#: includes/elements/recent-portfolios.php:380 includes/general-hooks.php:
|
1954 |
-
#: includes/general-hooks.php:
|
1955 |
msgid "Entry Box Border Color"
|
1956 |
msgstr ""
|
1957 |
|
@@ -2144,13 +2145,13 @@ msgstr ""
|
|
2144 |
msgid "Different layout types of appearing items."
|
2145 |
msgstr ""
|
2146 |
|
2147 |
-
#: includes/elements/recent-portfolios.php:221 includes/general-hooks.php:
|
2148 |
-
#: includes/general-hooks.php:
|
2149 |
msgid "Masonry"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#: includes/elements/recent-portfolios.php:225 includes/general-hooks.php:
|
2153 |
-
#: includes/general-hooks.php:
|
2154 |
msgid "Tiles"
|
2155 |
msgstr ""
|
2156 |
|
@@ -2158,13 +2159,13 @@ msgstr ""
|
|
2158 |
msgid "Post Tile styles"
|
2159 |
msgstr ""
|
2160 |
|
2161 |
-
#: includes/elements/recent-portfolios.php:303 includes/general-hooks.php:
|
2162 |
-
#: includes/general-hooks.php:
|
2163 |
msgid "Square 1:1"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#: includes/elements/recent-portfolios.php:304 includes/general-hooks.php:
|
2167 |
-
#: includes/general-hooks.php:
|
2168 |
msgid "Vertical 3:4"
|
2169 |
msgstr ""
|
2170 |
|
@@ -2172,8 +2173,8 @@ msgstr ""
|
|
2172 |
msgid "Portfolio hover type"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
-
#: includes/elements/recent-portfolios.php:362 includes/general-hooks.php:
|
2176 |
-
#: includes/general-hooks.php:
|
2177 |
msgid "Entry Box Background Color"
|
2178 |
msgstr ""
|
2179 |
|
@@ -2222,7 +2223,7 @@ msgstr ""
|
|
2222 |
msgid "Single Portfolio"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#: includes/general-hooks.php:50 includes/general-hooks.php:
|
2226 |
msgid "Preview a Single Portfolio Page"
|
2227 |
msgstr ""
|
2228 |
|
@@ -2234,35 +2235,35 @@ msgstr ""
|
|
2234 |
msgid "Specifies single portfolio template."
|
2235 |
msgstr ""
|
2236 |
|
2237 |
-
#: includes/general-hooks.php:108 includes/general-hooks.php:
|
2238 |
msgid "Custom Max Width"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
-
#: includes/general-hooks.php:109 includes/general-hooks.php:
|
2242 |
msgid "Specifies the maximum width of website."
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#: includes/general-hooks.php:116 includes/general-hooks.php:
|
2246 |
msgid "Default Site Max Width"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#: includes/general-hooks.php:117 includes/general-hooks.php:
|
2250 |
msgid "1000 Pixels"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#: includes/general-hooks.php:118 includes/general-hooks.php:
|
2254 |
msgid "1200 Pixels"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#: includes/general-hooks.php:119 includes/general-hooks.php:
|
2258 |
msgid "1400 Pixels"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
-
#: includes/general-hooks.php:120 includes/general-hooks.php:
|
2262 |
msgid "1600 Pixels"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#: includes/general-hooks.php:121 includes/general-hooks.php:
|
2266 |
msgid "1900 Pixels"
|
2267 |
msgstr ""
|
2268 |
|
@@ -2298,739 +2299,767 @@ msgstr ""
|
|
2298 |
msgid "Enable it to display the share button."
|
2299 |
msgstr ""
|
2300 |
|
2301 |
-
#: includes/general-hooks.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2302 |
msgid "Share Button Icon"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#: includes/general-hooks.php:
|
2306 |
msgid "Icon Color"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
-
#: includes/general-hooks.php:
|
2310 |
-
msgid "
|
2311 |
msgstr ""
|
2312 |
|
2313 |
-
#: includes/general-hooks.php:
|
2314 |
msgid "Icon Hover Color"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
-
#: includes/general-hooks.php:
|
2318 |
-
msgid "
|
2319 |
msgstr ""
|
2320 |
|
2321 |
-
#: includes/general-hooks.php:
|
2322 |
msgid "Share Button Icon Size"
|
2323 |
msgstr ""
|
2324 |
|
2325 |
-
#: includes/general-hooks.php:
|
2326 |
msgid "Share Button Margin"
|
2327 |
msgstr ""
|
2328 |
|
2329 |
-
#: includes/general-hooks.php:
|
2330 |
msgid ""
|
2331 |
"Enable it to display the like button. Please note that you should have "
|
2332 |
"\"ulike\" plugin installed for this feature."
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: includes/general-hooks.php:
|
|
|
|
|
|
|
|
|
2336 |
msgid "Like Icon"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: includes/general-hooks.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2340 |
msgid "Like Button Icon Size"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
-
#: includes/general-hooks.php:
|
2344 |
msgid "Like Button Margin"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: includes/general-hooks.php:
|
2348 |
msgid "Next Portfolio Label"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#: includes/general-hooks.php:
|
2352 |
msgid "Specifies the word after next and previous navigation."
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
#: includes/general-hooks.php:
|
2356 |
msgid "Previous Portfolio Label"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
-
#: includes/general-hooks.php:
|
2360 |
msgid "Portfolio Title"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
-
#: includes/general-hooks.php:
|
2364 |
msgid "Display Title Bar Section"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
-
#: includes/general-hooks.php:
|
2368 |
msgid "Enable it to show the title section."
|
2369 |
msgstr ""
|
2370 |
|
2371 |
-
#: includes/general-hooks.php:
|
2372 |
msgid "Layout presets"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: includes/general-hooks.php:
|
2376 |
msgid "Title bar with light overlay which is aligned center"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: includes/general-hooks.php:
|
2380 |
msgid "Fullscreen title bar with light overlay on background"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
#: includes/general-hooks.php:
|
2384 |
msgid "Fullscreen title bar with dark overlay on background"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: includes/general-hooks.php:
|
2388 |
msgid "Fullscreen title bar with border around the title"
|
2389 |
msgstr ""
|
2390 |
|
2391 |
-
#: includes/general-hooks.php:
|
2392 |
msgid "Fullscreen title bar with dark box around the title"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: includes/general-hooks.php:
|
2396 |
msgid "Title aligned left with dark overlay on background"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: includes/general-hooks.php:
|
2400 |
msgid "Tile overlaps the title area section and is aligned center"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: includes/general-hooks.php:
|
2404 |
msgid "Enable advanced setting"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: includes/general-hooks.php:
|
2408 |
msgid "Enable it to customize preset layouts."
|
2409 |
msgstr ""
|
2410 |
|
2411 |
-
#: includes/general-hooks.php:
|
2412 |
msgid "Content Width"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: includes/general-hooks.php:
|
2416 |
msgid "Boxed"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
-
#: includes/general-hooks.php:
|
2420 |
msgid "Full Width Content with Space on Sides"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: includes/general-hooks.php:
|
2424 |
msgid "Full Width Content"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
-
#: includes/general-hooks.php:
|
2428 |
msgid "Title Section Height"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#: includes/general-hooks.php:
|
2432 |
msgid "Auto Height"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
-
#: includes/general-hooks.php:
|
2436 |
msgid "Full Height"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
-
#: includes/general-hooks.php:
|
2440 |
msgid "Vertical Position"
|
2441 |
msgstr ""
|
2442 |
|
2443 |
-
#: includes/general-hooks.php:
|
2444 |
msgid "Specifies vertical alignment of title and subtitle."
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#: includes/general-hooks.php:
|
2448 |
msgid ""
|
2449 |
"Note: Parallax feature in not available for \"Bottom Overlap\" vertical "
|
2450 |
"mode."
|
2451 |
msgstr ""
|
2452 |
|
2453 |
-
#: includes/general-hooks.php:
|
2454 |
msgid "Top"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
-
#: includes/general-hooks.php:
|
2458 |
msgid "Middle"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
-
#: includes/general-hooks.php:
|
2462 |
msgid "Bottom"
|
2463 |
msgstr ""
|
2464 |
|
2465 |
-
#: includes/general-hooks.php:
|
2466 |
msgid "Bottom Overlap"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
-
#: includes/general-hooks.php:
|
2470 |
msgid "Scroll Down Arrow"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
-
#: includes/general-hooks.php:
|
2474 |
msgid "This option only applies if section height is \"Full Height\"."
|
2475 |
msgstr ""
|
2476 |
|
2477 |
-
#: includes/general-hooks.php:
|
2478 |
msgid "Round"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
-
#: includes/general-hooks.php:
|
2482 |
msgid "Display Titles"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
-
#: includes/general-hooks.php:
|
2486 |
msgid "Enable it to display title/subtitle in title section."
|
2487 |
msgstr ""
|
2488 |
|
2489 |
-
#: includes/general-hooks.php:
|
2490 |
msgid "Border for Heading"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
-
#: includes/general-hooks.php:
|
2494 |
msgid "Enable it to display a border around the title and subtitle area."
|
2495 |
msgstr ""
|
2496 |
|
2497 |
-
#: includes/general-hooks.php:
|
2498 |
msgid "Boxed Title"
|
2499 |
msgstr ""
|
2500 |
|
2501 |
-
#: includes/general-hooks.php:
|
2502 |
msgid "Enable it to wrap the title and subtitle in a box with background color."
|
2503 |
msgstr ""
|
2504 |
|
2505 |
-
#: includes/general-hooks.php:
|
2506 |
msgid "Title Box Custom Color"
|
2507 |
msgstr ""
|
2508 |
|
2509 |
-
#: includes/general-hooks.php:
|
2510 |
msgid ""
|
2511 |
"Specifies a custom background color for the box around the title and "
|
2512 |
"subtitle."
|
2513 |
msgstr ""
|
2514 |
|
2515 |
-
#: includes/general-hooks.php:
|
2516 |
msgid "Display Post Meta"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#: includes/general-hooks.php:
|
2520 |
msgid "Enable it to display post meta information on title section."
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: includes/general-hooks.php:
|
2524 |
msgid "Display Breadcrumb"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#: includes/general-hooks.php:
|
2528 |
msgid "Enable it to display breadcrumb on title section."
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: includes/general-hooks.php:
|
2532 |
msgid "Border for Breadcrumb"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
-
#: includes/general-hooks.php:
|
2536 |
msgid "Enable it to display border around breadcrumb."
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
#: includes/general-hooks.php:
|
2540 |
msgid "Breadcrumb Separator Icon"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
#: includes/general-hooks.php:
|
2544 |
msgid "Text Align"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: includes/general-hooks.php:
|
2548 |
msgid "Overlay Color"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: includes/general-hooks.php:
|
2552 |
msgid ""
|
2553 |
"The color that overlay on the background. Please note that color should "
|
2554 |
"have transparency."
|
2555 |
msgstr ""
|
2556 |
|
2557 |
-
#: includes/general-hooks.php:
|
2558 |
msgid "Overlay Pattern"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
#: includes/general-hooks.php:
|
2562 |
msgid "Hash"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
-
#: includes/general-hooks.php:
|
2566 |
msgid "Overlay Pattern Opacity"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
-
#: includes/general-hooks.php:
|
2570 |
msgid "Color Mode"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
-
#: includes/general-hooks.php:
|
2574 |
msgid "Enable Title Background"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#: includes/general-hooks.php:
|
2578 |
msgid "Enable it to display custom background for title section."
|
2579 |
msgstr ""
|
2580 |
|
2581 |
-
#: includes/general-hooks.php:
|
2582 |
msgid "Enable Parallax Effect"
|
2583 |
msgstr ""
|
2584 |
|
2585 |
-
#: includes/general-hooks.php:
|
2586 |
msgid "Enable it to have parallax background effect on this section."
|
2587 |
msgstr ""
|
2588 |
|
2589 |
-
#: includes/general-hooks.php:
|
2590 |
msgid ""
|
2591 |
"Note: Parallax feature in not available for \"Bottom Overlap\" mode for "
|
2592 |
"\"Vertical Position\" option."
|
2593 |
msgstr ""
|
2594 |
|
2595 |
-
#: includes/general-hooks.php:
|
2596 |
msgid "Background Color"
|
2597 |
msgstr ""
|
2598 |
|
2599 |
-
#: includes/general-hooks.php:
|
2600 |
msgid "Specifies a background color for title bar."
|
2601 |
msgstr ""
|
2602 |
|
2603 |
-
#: includes/general-hooks.php:
|
2604 |
msgid "Background Size"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
-
#: includes/general-hooks.php:
|
2608 |
msgid "Specifies the background size."
|
2609 |
msgstr ""
|
2610 |
|
2611 |
-
#: includes/general-hooks.php:
|
2612 |
msgid "Auto"
|
2613 |
msgstr ""
|
2614 |
|
2615 |
-
#: includes/general-hooks.php:
|
2616 |
msgid "Contain"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
-
#: includes/general-hooks.php:
|
2620 |
msgid "Cover"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
-
#: includes/general-hooks.php:
|
2624 |
msgid "Background Image"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
-
#: includes/general-hooks.php:
|
2628 |
msgid "Specifies a background image for title bar."
|
2629 |
msgstr ""
|
2630 |
|
2631 |
-
#: includes/general-hooks.php:
|
2632 |
msgid "Background Video MP4"
|
2633 |
msgstr ""
|
2634 |
|
2635 |
-
#: includes/general-hooks.php:
|
2636 |
-
#: includes/general-hooks.php:
|
2637 |
msgid ""
|
2638 |
"You can upload custom video for title background</br>Note: if you set "
|
2639 |
"custom image, default image backgrounds will be ignored."
|
2640 |
msgstr ""
|
2641 |
|
2642 |
-
#: includes/general-hooks.php:
|
2643 |
msgid "Background Video Ogg"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
-
#: includes/general-hooks.php:
|
2647 |
msgid "Background Video WebM"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
-
#: includes/general-hooks.php:
|
2651 |
msgid "Related Portfolios"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
-
#: includes/general-hooks.php:
|
2655 |
msgid "Setting for Related Portfolios Section in Single Page"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
-
#: includes/general-hooks.php:
|
2659 |
msgid "Enable it to display related portfolios section on single portfolio page."
|
2660 |
msgstr ""
|
2661 |
|
2662 |
-
#: includes/general-hooks.php:
|
2663 |
msgid "Title Typography"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
-
#: includes/general-hooks.php:
|
2667 |
msgid "Related Projects/Works"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
-
#: includes/general-hooks.php:
|
2671 |
msgid "Label Typography"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
-
#: includes/general-hooks.php:
|
2675 |
msgid "Category Terms Typography"
|
2676 |
msgstr ""
|
2677 |
|
2678 |
-
#: includes/general-hooks.php:
|
2679 |
msgid "Hide it"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
-
#: includes/general-hooks.php:
|
2683 |
msgid "Browse All Projects"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
-
#: includes/general-hooks.php:
|
2687 |
msgid "Button Typography"
|
2688 |
msgstr ""
|
2689 |
|
2690 |
-
#: includes/general-hooks.php:
|
2691 |
msgid "Button Background"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
-
#: includes/general-hooks.php:
|
2695 |
msgid "Portfolio Page"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
-
#: includes/general-hooks.php:
|
2699 |
msgid "Preview Portfolio Page"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
-
#: includes/general-hooks.php:
|
2703 |
msgid "Custom Page For Archive"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#: includes/general-hooks.php:
|
2707 |
msgid "Enable this option to select custom page for archive page"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
-
#: includes/general-hooks.php:
|
2711 |
msgid "Select Page"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: includes/general-hooks.php:
|
2715 |
msgid "Portfolio Template"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
-
#: includes/general-hooks.php:
|
2719 |
msgid "Choose your portfolio template."
|
2720 |
msgstr ""
|
2721 |
|
2722 |
-
#: includes/general-hooks.php:
|
2723 |
msgid "Land"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
-
#: includes/general-hooks.php:
|
2727 |
msgid "Image Aspect Ratio"
|
2728 |
msgstr ""
|
2729 |
|
2730 |
-
#: includes/general-hooks.php:
|
2731 |
msgid "Portfolio Hover Type"
|
2732 |
msgstr ""
|
2733 |
|
2734 |
-
#: includes/general-hooks.php:
|
2735 |
-
#: includes/general-hooks.php:
|
2736 |
msgid "Hover over images to see the animation."
|
2737 |
msgstr ""
|
2738 |
|
2739 |
-
#: includes/general-hooks.php:
|
2740 |
msgid "Tile Portfolio Item Type"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
-
#: includes/general-hooks.php:
|
2744 |
msgid "Number of Columns in Tablet"
|
2745 |
msgstr ""
|
2746 |
|
2747 |
-
#: includes/general-hooks.php:
|
2748 |
msgid "Number of Columns in Mobile"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
-
#: includes/general-hooks.php:
|
2752 |
msgid "Display Like Button"
|
2753 |
msgstr ""
|
2754 |
|
2755 |
-
#: includes/general-hooks.php:
|
2756 |
msgid ""
|
2757 |
"Enable it to display %s like button%s on portfolio portfolios. Please note "
|
2758 |
"WP Ulike plugin needs to be activaited to use this option."
|
2759 |
msgstr ""
|
2760 |
|
2761 |
-
#: includes/general-hooks.php:
|
2762 |
msgid "Enable Entry Box Coloring"
|
2763 |
msgstr ""
|
2764 |
|
2765 |
-
#: includes/general-hooks.php:
|
2766 |
msgid "Specifies the border/background color for entry box."
|
2767 |
msgstr ""
|
2768 |
|
2769 |
-
#: includes/general-hooks.php:
|
2770 |
msgid "Specifies the background color for entry box."
|
2771 |
msgstr ""
|
2772 |
|
2773 |
-
#: includes/general-hooks.php:
|
2774 |
msgid "Specifies the border color for entry box."
|
2775 |
msgstr ""
|
2776 |
|
2777 |
-
#: includes/general-hooks.php:
|
2778 |
msgid "Portfolio Sidebar Position"
|
2779 |
msgstr ""
|
2780 |
|
2781 |
-
#: includes/general-hooks.php:
|
2782 |
msgid "Specifies the position of sidebar on portfolio page."
|
2783 |
msgstr ""
|
2784 |
|
2785 |
-
#: includes/general-hooks.php:
|
2786 |
msgid "No Sidebar"
|
2787 |
msgstr ""
|
2788 |
|
2789 |
-
#: includes/general-hooks.php:
|
2790 |
msgid "Right Sidebar"
|
2791 |
msgstr ""
|
2792 |
|
2793 |
-
#: includes/general-hooks.php:
|
2794 |
msgid "Left Sidebar"
|
2795 |
msgstr ""
|
2796 |
|
2797 |
-
#: includes/general-hooks.php:
|
2798 |
msgid "Left Left Sidebar"
|
2799 |
msgstr ""
|
2800 |
|
2801 |
-
#: includes/general-hooks.php:
|
2802 |
msgid "Right Right Sidebar"
|
2803 |
msgstr ""
|
2804 |
|
2805 |
-
#: includes/general-hooks.php:
|
2806 |
msgid "Left Right Sidebar"
|
2807 |
msgstr ""
|
2808 |
|
2809 |
-
#: includes/general-hooks.php:
|
2810 |
msgid "Right Left Sidebar"
|
2811 |
msgstr ""
|
2812 |
|
2813 |
-
#: includes/general-hooks.php:
|
2814 |
msgid "Portfolio Sidebar Style"
|
2815 |
msgstr ""
|
2816 |
|
2817 |
-
#: includes/general-hooks.php:
|
2818 |
msgid "Specifies the style of sidebar on portfolio page."
|
2819 |
msgstr ""
|
2820 |
|
2821 |
-
#: includes/general-hooks.php:
|
2822 |
msgid "Simple"
|
2823 |
msgstr ""
|
2824 |
|
2825 |
-
#: includes/general-hooks.php:
|
2826 |
msgid "Bordered Sidebar"
|
2827 |
msgstr ""
|
2828 |
|
2829 |
-
#: includes/general-hooks.php:
|
2830 |
msgid "Overlap Background"
|
2831 |
msgstr ""
|
2832 |
|
2833 |
-
#: includes/general-hooks.php:
|
2834 |
msgid "Number of Portfolios Per Page"
|
2835 |
msgstr ""
|
2836 |
|
2837 |
-
#: includes/general-hooks.php:
|
2838 |
msgid "Specifies the number of portfolios items to show on each page."
|
2839 |
msgstr ""
|
2840 |
|
2841 |
-
#: includes/general-hooks.php:
|
2842 |
msgid "Display Title Bar?"
|
2843 |
msgstr ""
|
2844 |
|
2845 |
-
#: includes/general-hooks.php:
|
2846 |
msgid ""
|
2847 |
"Specifies whether to display the title bar at top of portfolio archive page "
|
2848 |
"or not."
|
2849 |
msgstr ""
|
2850 |
|
2851 |
-
#: includes/general-hooks.php:
|
2852 |
msgid "Display Breadcrumb?"
|
2853 |
msgstr ""
|
2854 |
|
2855 |
-
#: includes/general-hooks.php:
|
2856 |
msgid ""
|
2857 |
"Specifies whether to display the breadcrumb in title bar of portfolio "
|
2858 |
"archive page or not."
|
2859 |
msgstr ""
|
2860 |
|
2861 |
-
#: includes/general-hooks.php:
|
2862 |
msgid "Display Title?"
|
2863 |
msgstr ""
|
2864 |
|
2865 |
-
#: includes/general-hooks.php:
|
2866 |
msgid ""
|
2867 |
"Specifies whether to display the title in title bar of portfolio archive "
|
2868 |
"page or not."
|
2869 |
msgstr ""
|
2870 |
|
2871 |
-
#: includes/general-hooks.php:
|
2872 |
msgid "Custom Title"
|
2873 |
msgstr ""
|
2874 |
|
2875 |
-
#: includes/general-hooks.php:
|
2876 |
msgid "Custom Breadcrumb Label"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: includes/general-hooks.php:
|
2880 |
msgid "Portfolio Category & tag"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
-
#: includes/general-hooks.php:
|
2884 |
msgid "Portfolio Category & tag page Setting"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
-
#: includes/general-hooks.php:
|
2888 |
msgid "Taxonomy Page Template"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
-
#: includes/general-hooks.php:
|
2892 |
msgid "Taxonomy Page Sidebar Position"
|
2893 |
msgstr ""
|
2894 |
|
2895 |
-
#: includes/general-hooks.php:
|
2896 |
msgid "Sidebar Style"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: includes/general-hooks.php:
|
2900 |
msgid "Specifies the style of sidebar on category & tag page."
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: includes/general-hooks.php:
|
2904 |
msgid "Portfolio MetaData"
|
2905 |
msgstr ""
|
2906 |
|
2907 |
-
#: includes/general-hooks.php:
|
2908 |
msgid "Portfolio MetaData Setting"
|
2909 |
msgstr ""
|
2910 |
|
2911 |
-
#: includes/general-hooks.php:
|
2912 |
msgid "Label for Launch Project Button"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
-
#: includes/general-hooks.php:
|
2916 |
msgid "Specify a label for launch project button."
|
2917 |
msgstr ""
|
2918 |
|
2919 |
-
#: includes/general-hooks.php:
|
2920 |
msgid "Launch Project"
|
2921 |
msgstr ""
|
2922 |
|
2923 |
-
#: includes/general-hooks.php:
|
2924 |
msgid "Portfolio MetaDatas"
|
2925 |
msgstr ""
|
2926 |
|
2927 |
-
#: includes/general-hooks.php:
|
2928 |
msgid ""
|
2929 |
"Specify the number of fields and the label of each one for portfolio "
|
2930 |
"metadatas"
|
2931 |
msgstr ""
|
2932 |
|
2933 |
-
#: includes/general-hooks.php:
|
2934 |
msgid "Project URL"
|
2935 |
msgstr ""
|
2936 |
|
2937 |
-
#: includes/general-hooks.php:
|
2938 |
msgid "Client"
|
2939 |
msgstr ""
|
2940 |
|
2941 |
-
#: includes/general-hooks.php:
|
2942 |
msgid "Release Date"
|
2943 |
msgstr ""
|
2944 |
|
2945 |
-
#: includes/general-hooks.php:
|
2946 |
msgid "Custom Field 1"
|
2947 |
msgstr ""
|
2948 |
|
2949 |
-
#: includes/general-hooks.php:
|
2950 |
msgid "Custom Field 2"
|
2951 |
msgstr ""
|
2952 |
|
2953 |
-
#: includes/general-hooks.php:
|
2954 |
msgid "Custom Field 3"
|
2955 |
msgstr ""
|
2956 |
|
2957 |
-
#: includes/general-hooks.php:
|
2958 |
msgid "Custom Field 4"
|
2959 |
msgstr ""
|
2960 |
|
2961 |
-
#: includes/general-hooks.php:
|
2962 |
msgid "Custom Field 5"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
-
#: includes/general-hooks.php:
|
2966 |
msgid "Custom Field 6"
|
2967 |
msgstr ""
|
2968 |
|
2969 |
-
#: includes/general-hooks.php:
|
2970 |
msgid "Custom Field 7"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
-
#: includes/general-hooks.php:
|
2974 |
msgid "Custom Field 8"
|
2975 |
msgstr ""
|
2976 |
|
2977 |
-
#: includes/general-hooks.php:
|
2978 |
msgid "Custom Field 9"
|
2979 |
msgstr ""
|
2980 |
|
2981 |
-
#: includes/general-hooks.php:
|
2982 |
msgid "Custom Field 10"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
-
#: includes/general-hooks.php:
|
2986 |
msgid "Custom Field 11"
|
2987 |
msgstr ""
|
2988 |
|
2989 |
-
#: includes/general-hooks.php:
|
2990 |
msgid "Custom Field 12"
|
2991 |
msgstr ""
|
2992 |
|
2993 |
-
#: includes/general-hooks.php:
|
2994 |
msgid "Single Portfolio Appearance"
|
2995 |
msgstr ""
|
2996 |
|
2997 |
-
#: includes/general-hooks.php:
|
2998 |
msgid "Content"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
-
#: includes/general-hooks.php:
|
3002 |
msgid "Overview Content"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
-
#: includes/general-hooks.php:
|
3006 |
msgid "Meta"
|
3007 |
msgstr ""
|
3008 |
|
3009 |
-
#: includes/general-hooks.php:
|
3010 |
msgid "Meta Terms"
|
3011 |
msgstr ""
|
3012 |
|
3013 |
-
#: includes/general-hooks.php:
|
3014 |
msgid "Launch Button"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
-
#: includes/general-hooks.php:
|
3018 |
msgid "Launch Button Background"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
-
#: includes/general-hooks.php:
|
3022 |
msgid "Portfolio Options"
|
3023 |
msgstr ""
|
3024 |
|
3025 |
-
#: includes/general-hooks.php:
|
3026 |
msgid "Likes"
|
3027 |
msgstr ""
|
3028 |
|
3029 |
-
#: includes/general-hooks.php:
|
|
|
|
|
|
|
|
|
3030 |
msgid "Share"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
-
#: includes/general-hooks.php:
|
3034 |
msgid "Related Projects"
|
3035 |
msgstr ""
|
3036 |
|
1 |
# Averta Copyright (c) {2020}
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
+
"Project-Id-Version: Phlox Portfolio 2.0.0\n"
|
5 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
6 |
+
"POT-Creation-Date: 2020-07-06 07:06:54+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:3432
|
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:831
|
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:1448
|
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:1452
|
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:1594
|
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:1595
|
233 |
msgid "Light"
|
234 |
msgstr ""
|
235 |
|
246 |
msgstr ""
|
247 |
|
248 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:219
|
249 |
+
#: includes/general-hooks.php:667
|
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:668
|
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:685
|
260 |
msgid "Classic Project Navigation"
|
261 |
msgstr ""
|
262 |
|
263 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:239
|
264 |
+
#: includes/general-hooks.php:689
|
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:681
|
270 |
msgid "Minimal (default)"
|
271 |
msgstr ""
|
272 |
|
273 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:247
|
274 |
+
#: includes/general-hooks.php:693
|
275 |
msgid "Thumbnail with Arrow"
|
276 |
msgstr ""
|
277 |
|
278 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:251
|
279 |
+
#: includes/general-hooks.php:697
|
280 |
msgid "Thumbnail without Arrow"
|
281 |
msgstr ""
|
282 |
|
283 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:255
|
284 |
+
#: includes/general-hooks.php:701
|
285 |
msgid "Navigation with Light Background"
|
286 |
msgstr ""
|
287 |
|
288 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:259
|
289 |
+
#: includes/general-hooks.php:705
|
290 |
msgid "Navigation with Dark Background"
|
291 |
msgstr ""
|
292 |
|
293 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:263
|
294 |
+
#: includes/general-hooks.php:709
|
295 |
msgid "Sticky Thumbnail with Arrow"
|
296 |
msgstr ""
|
297 |
|
298 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:267
|
299 |
+
#: includes/general-hooks.php:713
|
300 |
msgid "Modern"
|
301 |
msgstr ""
|
302 |
|
303 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:276
|
304 |
+
#: includes/general-hooks.php:758
|
305 |
msgid "Next & Previous Button Link"
|
306 |
msgstr ""
|
307 |
|
308 |
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:277
|
309 |
+
#: includes/general-hooks.php:759
|
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:1901
|
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:1929
|
367 |
msgid "Label of Related Section"
|
368 |
msgstr ""
|
369 |
|
370 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:37
|
371 |
+
#: includes/general-hooks.php:1930
|
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:1987
|
377 |
msgid "Related Items Type"
|
378 |
msgstr ""
|
379 |
|
380 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:52
|
381 |
+
#: includes/general-hooks.php:1988
|
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:2305
|
387 |
+
#: includes/general-hooks.php:3009
|
388 |
msgid "Grid"
|
389 |
msgstr ""
|
390 |
|
396 |
msgstr ""
|
397 |
|
398 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:71
|
399 |
+
#: includes/general-hooks.php:2008 includes/general-hooks.php:2486
|
400 |
+
#: includes/general-hooks.php:3181
|
401 |
msgid "Number of Columns"
|
402 |
msgstr ""
|
403 |
|
404 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:92
|
405 |
+
#: includes/general-hooks.php:2028
|
406 |
msgid "Align Center"
|
407 |
msgstr ""
|
408 |
|
409 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:93
|
410 |
+
#: includes/general-hooks.php:2029
|
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:2046
|
416 |
msgid "Full Width Related Section"
|
417 |
msgstr ""
|
418 |
|
419 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:113
|
420 |
+
#: includes/general-hooks.php:2047
|
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:2064
|
426 |
msgid "Snap Related Items"
|
427 |
msgstr ""
|
428 |
|
429 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:133
|
430 |
+
#: includes/general-hooks.php:2065
|
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:2082
|
436 |
msgid "Display Portfolio Categories"
|
437 |
msgstr ""
|
438 |
|
439 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:153
|
440 |
+
#: includes/general-hooks.php:2083
|
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:2121
|
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:2122
|
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:2139
|
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:2140
|
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:2146
|
471 |
msgid "Archive page"
|
472 |
msgstr ""
|
473 |
|
474 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:212
|
475 |
+
#: includes/general-hooks.php:2147
|
476 |
msgid "Custom URL"
|
477 |
msgstr ""
|
478 |
|
479 |
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:217
|
480 |
+
#: includes/general-hooks.php:2165
|
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:2166
|
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:2191
|
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:2192
|
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:2979
|
571 |
msgid "Portfolio"
|
572 |
msgstr ""
|
573 |
|
901 |
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:190
|
902 |
#: includes/elements/elementor/recent-portfolios-grid.php:187
|
903 |
#: includes/elements/elementor/recent-portfolios-masonry.php:186
|
904 |
+
#: includes/elements/recent-portfolios.php:766 includes/general-hooks.php:463
|
905 |
msgid "Display like button"
|
906 |
msgstr ""
|
907 |
|
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:1147
|
971 |
+
#: includes/general-hooks.php:1520
|
972 |
msgid "None"
|
973 |
msgstr ""
|
974 |
|
988 |
#: includes/elements/elementor/recent-portfolios-grid.php:742
|
989 |
#: includes/elements/elementor/recent-portfolios-masonry.php:609
|
990 |
#: includes/elements/elementor/recent-portfolios-tile.php:627
|
991 |
+
#: includes/elements/recent-portfolios.php:647 includes/general-hooks.php:291
|
992 |
+
#: includes/general-hooks.php:495
|
993 |
msgid "Text"
|
994 |
msgstr ""
|
995 |
|
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:3395
|
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:2460
|
1436 |
+
#: includes/general-hooks.php:3157
|
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:2461
|
1444 |
+
#: includes/general-hooks.php:3158
|
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:1964
|
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:1977
|
1456 |
+
#: includes/general-hooks.php:2339 includes/general-hooks.php:3043
|
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:1978
|
1462 |
+
#: includes/general-hooks.php:2340 includes/general-hooks.php:3044
|
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:2371
|
1502 |
+
#: includes/general-hooks.php:3075
|
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:2376
|
1510 |
+
#: includes/general-hooks.php:3079
|
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:2381
|
1518 |
+
#: includes/general-hooks.php:3083
|
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:2386
|
1530 |
+
#: includes/general-hooks.php:2432 includes/general-hooks.php:3087
|
1531 |
+
#: includes/general-hooks.php:3129
|
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:2391
|
1543 |
+
#: includes/general-hooks.php:2436 includes/general-hooks.php:3091
|
1544 |
+
#: includes/general-hooks.php:3133
|
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:2396
|
1556 |
+
#: includes/general-hooks.php:2440 includes/general-hooks.php:3095
|
1557 |
+
#: includes/general-hooks.php:3137
|
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:2401
|
1569 |
+
#: includes/general-hooks.php:2444 includes/general-hooks.php:3099
|
1570 |
+
#: includes/general-hooks.php:3141
|
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:1456
|
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:2672
|
1955 |
+
#: includes/general-hooks.php:2751
|
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:2309
|
2149 |
+
#: includes/general-hooks.php:3013
|
2150 |
msgid "Masonry"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
+
#: includes/elements/recent-portfolios.php:225 includes/general-hooks.php:2313
|
2154 |
+
#: includes/general-hooks.php:3017
|
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:1979
|
2163 |
+
#: includes/general-hooks.php:2341 includes/general-hooks.php:3045
|
2164 |
msgid "Square 1:1"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
+
#: includes/elements/recent-portfolios.php:304 includes/general-hooks.php:1980
|
2168 |
+
#: includes/general-hooks.php:2342 includes/general-hooks.php:3046
|
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:2639
|
2177 |
+
#: includes/general-hooks.php:2723
|
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:786
|
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:2514
|
2239 |
msgid "Custom Max Width"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: includes/general-hooks.php:109 includes/general-hooks.php:2515
|
2243 |
msgid "Specifies the maximum width of website."
|
2244 |
msgstr ""
|
2245 |
|
2246 |
+
#: includes/general-hooks.php:116 includes/general-hooks.php:2522
|
2247 |
msgid "Default Site Max Width"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
+
#: includes/general-hooks.php:117 includes/general-hooks.php:2523
|
2251 |
msgid "1000 Pixels"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
+
#: includes/general-hooks.php:118 includes/general-hooks.php:2524
|
2255 |
msgid "1200 Pixels"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: includes/general-hooks.php:119 includes/general-hooks.php:2525
|
2259 |
msgid "1400 Pixels"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: includes/general-hooks.php:120 includes/general-hooks.php:2526
|
2263 |
msgid "1600 Pixels"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: includes/general-hooks.php:121 includes/general-hooks.php:2527
|
2267 |
msgid "1900 Pixels"
|
2268 |
msgstr ""
|
2269 |
|
2299 |
msgid "Enable it to display the share button."
|
2300 |
msgstr ""
|
2301 |
|
2302 |
+
#: includes/general-hooks.php:283
|
2303 |
+
msgid "Share Type"
|
2304 |
+
msgstr ""
|
2305 |
+
|
2306 |
+
#: includes/general-hooks.php:284 includes/general-hooks.php:488
|
2307 |
+
msgid "Enable it to display text instead of icon."
|
2308 |
+
msgstr ""
|
2309 |
+
|
2310 |
+
#: includes/general-hooks.php:290 includes/general-hooks.php:494
|
2311 |
+
msgid "Icon"
|
2312 |
+
msgstr ""
|
2313 |
+
|
2314 |
+
#: includes/general-hooks.php:309
|
2315 |
msgid "Share Button Icon"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: includes/general-hooks.php:335 includes/general-hooks.php:539
|
2319 |
msgid "Icon Color"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: includes/general-hooks.php:336
|
2323 |
+
msgid "Share icon color"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
+
#: includes/general-hooks.php:368 includes/general-hooks.php:572
|
2327 |
msgid "Icon Hover Color"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
+
#: includes/general-hooks.php:369
|
2331 |
+
msgid "Share icon hover color"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
+
#: includes/general-hooks.php:401
|
2335 |
msgid "Share Button Icon Size"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
+
#: includes/general-hooks.php:435
|
2339 |
msgid "Share Button Margin"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
+
#: includes/general-hooks.php:464
|
2343 |
msgid ""
|
2344 |
"Enable it to display the like button. Please note that you should have "
|
2345 |
"\"ulike\" plugin installed for this feature."
|
2346 |
msgstr ""
|
2347 |
|
2348 |
+
#: includes/general-hooks.php:487
|
2349 |
+
msgid "Like Type"
|
2350 |
+
msgstr ""
|
2351 |
+
|
2352 |
+
#: includes/general-hooks.php:513
|
2353 |
msgid "Like Icon"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
+
#: includes/general-hooks.php:540
|
2357 |
+
msgid "Like icon color"
|
2358 |
+
msgstr ""
|
2359 |
+
|
2360 |
+
#: includes/general-hooks.php:573
|
2361 |
+
msgid "Like icon hover color"
|
2362 |
+
msgstr ""
|
2363 |
+
|
2364 |
+
#: includes/general-hooks.php:605
|
2365 |
msgid "Like Button Icon Size"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
+
#: includes/general-hooks.php:639
|
2369 |
msgid "Like Button Margin"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
+
#: includes/general-hooks.php:722
|
2373 |
msgid "Next Portfolio Label"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
+
#: includes/general-hooks.php:723 includes/general-hooks.php:741
|
2377 |
msgid "Specifies the word after next and previous navigation."
|
2378 |
msgstr ""
|
2379 |
|
2380 |
+
#: includes/general-hooks.php:740
|
2381 |
msgid "Previous Portfolio Label"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
+
#: includes/general-hooks.php:785
|
2385 |
msgid "Portfolio Title"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
+
#: includes/general-hooks.php:791
|
2389 |
msgid "Display Title Bar Section"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
+
#: includes/general-hooks.php:792
|
2393 |
msgid "Enable it to show the title section."
|
2394 |
msgstr ""
|
2395 |
|
2396 |
+
#: includes/general-hooks.php:808
|
2397 |
msgid "Layout presets"
|
2398 |
msgstr ""
|
2399 |
|
2400 |
+
#: includes/general-hooks.php:850
|
2401 |
msgid "Title bar with light overlay which is aligned center"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
+
#: includes/general-hooks.php:868
|
2405 |
msgid "Fullscreen title bar with light overlay on background"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: includes/general-hooks.php:886
|
2409 |
msgid "Fullscreen title bar with dark overlay on background"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: includes/general-hooks.php:904
|
2413 |
msgid "Fullscreen title bar with border around the title"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: includes/general-hooks.php:922
|
2417 |
msgid "Fullscreen title bar with dark box around the title"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
+
#: includes/general-hooks.php:940
|
2421 |
msgid "Title aligned left with dark overlay on background"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
+
#: includes/general-hooks.php:958
|
2425 |
msgid "Tile overlaps the title area section and is aligned center"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
+
#: includes/general-hooks.php:979
|
2429 |
msgid "Enable advanced setting"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
+
#: includes/general-hooks.php:980
|
2433 |
msgid "Enable it to customize preset layouts."
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: includes/general-hooks.php:1003
|
2437 |
msgid "Content Width"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: includes/general-hooks.php:1023
|
2441 |
msgid "Boxed"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
+
#: includes/general-hooks.php:1027
|
2445 |
msgid "Full Width Content with Space on Sides"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
+
#: includes/general-hooks.php:1031
|
2449 |
msgid "Full Width Content"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
+
#: includes/general-hooks.php:1040
|
2453 |
msgid "Title Section Height"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
+
#: includes/general-hooks.php:1067
|
2457 |
msgid "Auto Height"
|
2458 |
msgstr ""
|
2459 |
|
2460 |
+
#: includes/general-hooks.php:1068
|
2461 |
msgid "Full Height"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
+
#: includes/general-hooks.php:1073
|
2465 |
msgid "Vertical Position"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
+
#: includes/general-hooks.php:1074
|
2469 |
msgid "Specifies vertical alignment of title and subtitle."
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: includes/general-hooks.php:1075
|
2473 |
msgid ""
|
2474 |
"Note: Parallax feature in not available for \"Bottom Overlap\" vertical "
|
2475 |
"mode."
|
2476 |
msgstr ""
|
2477 |
|
2478 |
+
#: includes/general-hooks.php:1101
|
2479 |
msgid "Top"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
+
#: includes/general-hooks.php:1102
|
2483 |
msgid "Middle"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
+
#: includes/general-hooks.php:1103
|
2487 |
msgid "Bottom"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: includes/general-hooks.php:1104
|
2491 |
msgid "Bottom Overlap"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: includes/general-hooks.php:1109
|
2495 |
msgid "Scroll Down Arrow"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: includes/general-hooks.php:1110
|
2499 |
msgid "This option only applies if section height is \"Full Height\"."
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: includes/general-hooks.php:1151
|
2503 |
msgid "Round"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: includes/general-hooks.php:1158
|
2507 |
msgid "Display Titles"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: includes/general-hooks.php:1159
|
2511 |
msgid "Enable it to display title/subtitle in title section."
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: includes/general-hooks.php:1187
|
2515 |
msgid "Border for Heading"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: includes/general-hooks.php:1188
|
2519 |
msgid "Enable it to display a border around the title and subtitle area."
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: includes/general-hooks.php:1221
|
2523 |
msgid "Boxed Title"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
+
#: includes/general-hooks.php:1222
|
2527 |
msgid "Enable it to wrap the title and subtitle in a box with background color."
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: includes/general-hooks.php:1255
|
2531 |
msgid "Title Box Custom Color"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
+
#: includes/general-hooks.php:1256
|
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:1294
|
2541 |
msgid "Display Post Meta"
|
2542 |
msgstr ""
|
2543 |
|
2544 |
+
#: includes/general-hooks.php:1295
|
2545 |
msgid "Enable it to display post meta information on title section."
|
2546 |
msgstr ""
|
2547 |
|
2548 |
+
#: includes/general-hooks.php:1323
|
2549 |
msgid "Display Breadcrumb"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
+
#: includes/general-hooks.php:1324
|
2553 |
msgid "Enable it to display breadcrumb on title section."
|
2554 |
msgstr ""
|
2555 |
|
2556 |
+
#: includes/general-hooks.php:1352
|
2557 |
msgid "Border for Breadcrumb"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
+
#: includes/general-hooks.php:1353
|
2561 |
msgid "Enable it to display border around breadcrumb."
|
2562 |
msgstr ""
|
2563 |
|
2564 |
+
#: includes/general-hooks.php:1386
|
2565 |
msgid "Breadcrumb Separator Icon"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
+
#: includes/general-hooks.php:1420
|
2569 |
msgid "Text Align"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
+
#: includes/general-hooks.php:1463
|
2573 |
msgid "Overlay Color"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: includes/general-hooks.php:1464
|
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:1492
|
2583 |
msgid "Overlay Pattern"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: includes/general-hooks.php:1524
|
2587 |
msgid "Hash"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: includes/general-hooks.php:1531
|
2591 |
msgid "Overlay Pattern Opacity"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: includes/general-hooks.php:1567
|
2595 |
msgid "Color Mode"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: includes/general-hooks.php:1602
|
2599 |
msgid "Enable Title Background"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: includes/general-hooks.php:1603
|
2603 |
msgid "Enable it to display custom background for title section."
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: includes/general-hooks.php:1631
|
2607 |
msgid "Enable Parallax Effect"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: includes/general-hooks.php:1632
|
2611 |
msgid "Enable it to have parallax background effect on this section."
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: includes/general-hooks.php:1633
|
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:1666
|
2621 |
msgid "Background Color"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
+
#: includes/general-hooks.php:1667
|
2625 |
msgid "Specifies a background color for title bar."
|
2626 |
msgstr ""
|
2627 |
|
2628 |
+
#: includes/general-hooks.php:1701
|
2629 |
msgid "Background Size"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
+
#: includes/general-hooks.php:1702
|
2633 |
msgid "Specifies the background size."
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: includes/general-hooks.php:1734
|
2637 |
msgid "Auto"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: includes/general-hooks.php:1738
|
2641 |
msgid "Contain"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
+
#: includes/general-hooks.php:1742
|
2645 |
msgid "Cover"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
+
#: includes/general-hooks.php:1750
|
2649 |
msgid "Background Image"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
+
#: includes/general-hooks.php:1751
|
2653 |
msgid "Specifies a background image for title bar."
|
2654 |
msgstr ""
|
2655 |
|
2656 |
+
#: includes/general-hooks.php:1785
|
2657 |
msgid "Background Video MP4"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
+
#: includes/general-hooks.php:1786 includes/general-hooks.php:1821
|
2661 |
+
#: includes/general-hooks.php:1856
|
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:1820
|
2668 |
msgid "Background Video Ogg"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
+
#: includes/general-hooks.php:1855
|
2672 |
msgid "Background Video WebM"
|
2673 |
msgstr ""
|
2674 |
|
2675 |
+
#: includes/general-hooks.php:1895
|
2676 |
msgid "Related Portfolios"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
+
#: includes/general-hooks.php:1896
|
2680 |
msgid "Setting for Related Portfolios Section in Single Page"
|
2681 |
msgstr ""
|
2682 |
|
2683 |
+
#: includes/general-hooks.php:1902
|
2684 |
msgid "Enable it to display related portfolios section on single portfolio page."
|
2685 |
msgstr ""
|
2686 |
|
2687 |
+
#: includes/general-hooks.php:1913
|
2688 |
msgid "Title Typography"
|
2689 |
msgstr ""
|
2690 |
|
2691 |
+
#: includes/general-hooks.php:1942
|
2692 |
msgid "Related Projects/Works"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
+
#: includes/general-hooks.php:1947
|
2696 |
msgid "Label Typography"
|
2697 |
msgstr ""
|
2698 |
|
2699 |
+
#: includes/general-hooks.php:2100
|
2700 |
msgid "Category Terms Typography"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
+
#: includes/general-hooks.php:2145
|
2704 |
msgid "Hide it"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
+
#: includes/general-hooks.php:2213
|
2708 |
msgid "Browse All Projects"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
+
#: includes/general-hooks.php:2217
|
2712 |
msgid "Button Typography"
|
2713 |
msgstr ""
|
2714 |
|
2715 |
+
#: includes/general-hooks.php:2238
|
2716 |
msgid "Button Background"
|
2717 |
msgstr ""
|
2718 |
|
2719 |
+
#: includes/general-hooks.php:2264
|
2720 |
msgid "Portfolio Page"
|
2721 |
msgstr ""
|
2722 |
|
2723 |
+
#: includes/general-hooks.php:2265
|
2724 |
msgid "Preview Portfolio Page"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
+
#: includes/general-hooks.php:2270
|
2728 |
msgid "Custom Page For Archive"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
+
#: includes/general-hooks.php:2271
|
2732 |
msgid "Enable this option to select custom page for archive page"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
+
#: includes/general-hooks.php:2280
|
2736 |
msgid "Select Page"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
+
#: includes/general-hooks.php:2296
|
2740 |
msgid "Portfolio Template"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
+
#: includes/general-hooks.php:2297
|
2744 |
msgid "Choose your portfolio template."
|
2745 |
msgstr ""
|
2746 |
|
2747 |
+
#: includes/general-hooks.php:2317 includes/general-hooks.php:3021
|
2748 |
msgid "Land"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
+
#: includes/general-hooks.php:2326 includes/general-hooks.php:3030
|
2752 |
msgid "Image Aspect Ratio"
|
2753 |
msgstr ""
|
2754 |
|
2755 |
+
#: includes/general-hooks.php:2356 includes/general-hooks.php:3060
|
2756 |
msgid "Portfolio Hover Type"
|
2757 |
msgstr ""
|
2758 |
|
2759 |
+
#: includes/general-hooks.php:2357 includes/general-hooks.php:2419
|
2760 |
+
#: includes/general-hooks.php:3061 includes/general-hooks.php:3116
|
2761 |
msgid "Hover over images to see the animation."
|
2762 |
msgstr ""
|
2763 |
|
2764 |
+
#: includes/general-hooks.php:2418 includes/general-hooks.php:3115
|
2765 |
msgid "Tile Portfolio Item Type"
|
2766 |
msgstr ""
|
2767 |
|
2768 |
+
#: includes/general-hooks.php:2534 includes/general-hooks.php:3209
|
2769 |
msgid "Number of Columns in Tablet"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
+
#: includes/general-hooks.php:2563 includes/general-hooks.php:3238
|
2773 |
msgid "Number of Columns in Mobile"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
+
#: includes/general-hooks.php:2591 includes/general-hooks.php:3266
|
2777 |
msgid "Display Like Button"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
+
#: includes/general-hooks.php:2592 includes/general-hooks.php:3267
|
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:2616 includes/general-hooks.php:2705
|
2787 |
msgid "Enable Entry Box Coloring"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
+
#: includes/general-hooks.php:2617 includes/general-hooks.php:2706
|
2791 |
msgid "Specifies the border/background color for entry box."
|
2792 |
msgstr ""
|
2793 |
|
2794 |
+
#: includes/general-hooks.php:2641 includes/general-hooks.php:2725
|
2795 |
msgid "Specifies the background color for entry box."
|
2796 |
msgstr ""
|
2797 |
|
2798 |
+
#: includes/general-hooks.php:2674 includes/general-hooks.php:2753
|
2799 |
msgid "Specifies the border color for entry box."
|
2800 |
msgstr ""
|
2801 |
|
2802 |
+
#: includes/general-hooks.php:2779
|
2803 |
msgid "Portfolio Sidebar Position"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
+
#: includes/general-hooks.php:2780
|
2807 |
msgid "Specifies the position of sidebar on portfolio page."
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: includes/general-hooks.php:2786 includes/general-hooks.php:3300
|
2811 |
msgid "No Sidebar"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
+
#: includes/general-hooks.php:2790 includes/general-hooks.php:3304
|
2815 |
msgid "Right Sidebar"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
+
#: includes/general-hooks.php:2794 includes/general-hooks.php:3308
|
2819 |
msgid "Left Sidebar"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
+
#: includes/general-hooks.php:2798 includes/general-hooks.php:3312
|
2823 |
msgid "Left Left Sidebar"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
+
#: includes/general-hooks.php:2802 includes/general-hooks.php:3316
|
2827 |
msgid "Right Right Sidebar"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
+
#: includes/general-hooks.php:2806 includes/general-hooks.php:3320
|
2831 |
msgid "Left Right Sidebar"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
+
#: includes/general-hooks.php:2810 includes/general-hooks.php:3324
|
2835 |
msgid "Right Left Sidebar"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
+
#: includes/general-hooks.php:2822
|
2839 |
msgid "Portfolio Sidebar Style"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
+
#: includes/general-hooks.php:2823
|
2843 |
msgid "Specifies the style of sidebar on portfolio page."
|
2844 |
msgstr ""
|
2845 |
|
2846 |
+
#: includes/general-hooks.php:2837 includes/general-hooks.php:3347
|
2847 |
msgid "Simple"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
+
#: includes/general-hooks.php:2841 includes/general-hooks.php:3351
|
2851 |
msgid "Bordered Sidebar"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
+
#: includes/general-hooks.php:2845 includes/general-hooks.php:3355
|
2855 |
msgid "Overlap Background"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
+
#: includes/general-hooks.php:2854
|
2859 |
msgid "Number of Portfolios Per Page"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
+
#: includes/general-hooks.php:2855
|
2863 |
msgid "Specifies the number of portfolios items to show on each page."
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: includes/general-hooks.php:2873
|
2867 |
msgid "Display Title Bar?"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
+
#: includes/general-hooks.php:2874
|
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:2892
|
2877 |
msgid "Display Breadcrumb?"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
+
#: includes/general-hooks.php:2893
|
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:2915
|
2887 |
msgid "Display Title?"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
+
#: includes/general-hooks.php:2916
|
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:2938
|
2897 |
msgid "Custom Title"
|
2898 |
msgstr ""
|
2899 |
|
2900 |
+
#: includes/general-hooks.php:2961
|
2901 |
msgid "Custom Breadcrumb Label"
|
2902 |
msgstr ""
|
2903 |
|
2904 |
+
#: includes/general-hooks.php:2988
|
2905 |
msgid "Portfolio Category & tag"
|
2906 |
msgstr ""
|
2907 |
|
2908 |
+
#: includes/general-hooks.php:2989
|
2909 |
msgid "Portfolio Category & tag page Setting"
|
2910 |
msgstr ""
|
2911 |
|
2912 |
+
#: includes/general-hooks.php:2993
|
2913 |
msgid "Taxonomy Page Template"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
+
#: includes/general-hooks.php:3292
|
2917 |
msgid "Taxonomy Page Sidebar Position"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
+
#: includes/general-hooks.php:3333
|
2921 |
msgid "Sidebar Style"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: includes/general-hooks.php:3334
|
2925 |
msgid "Specifies the style of sidebar on category & tag page."
|
2926 |
msgstr ""
|
2927 |
|
2928 |
+
#: includes/general-hooks.php:3368
|
2929 |
msgid "Portfolio MetaData"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
+
#: includes/general-hooks.php:3369
|
2933 |
msgid "Portfolio MetaData Setting"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
+
#: includes/general-hooks.php:3373
|
2937 |
msgid "Label for Launch Project Button"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
+
#: includes/general-hooks.php:3374
|
2941 |
msgid "Specify a label for launch project button."
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: includes/general-hooks.php:3381
|
2945 |
msgid "Launch Project"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: includes/general-hooks.php:3385
|
2949 |
msgid "Portfolio MetaDatas"
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: includes/general-hooks.php:3386
|
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:3392
|
2959 |
msgid "Project URL"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: includes/general-hooks.php:3393
|
2963 |
msgid "Client"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
+
#: includes/general-hooks.php:3394
|
2967 |
msgid "Release Date"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
+
#: includes/general-hooks.php:3396
|
2971 |
msgid "Custom Field 1"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
+
#: includes/general-hooks.php:3397
|
2975 |
msgid "Custom Field 2"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
+
#: includes/general-hooks.php:3398
|
2979 |
msgid "Custom Field 3"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
#: includes/general-hooks.php:3399
|
2983 |
msgid "Custom Field 4"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: includes/general-hooks.php:3400
|
2987 |
msgid "Custom Field 5"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
+
#: includes/general-hooks.php:3401
|
2991 |
msgid "Custom Field 6"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: includes/general-hooks.php:3402
|
2995 |
msgid "Custom Field 7"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: includes/general-hooks.php:3403
|
2999 |
msgid "Custom Field 8"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
+
#: includes/general-hooks.php:3404
|
3003 |
msgid "Custom Field 9"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
+
#: includes/general-hooks.php:3405
|
3007 |
msgid "Custom Field 10"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
+
#: includes/general-hooks.php:3406
|
3011 |
msgid "Custom Field 11"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
+
#: includes/general-hooks.php:3407
|
3015 |
msgid "Custom Field 12"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
+
#: includes/general-hooks.php:3418 includes/general-hooks.php:3419
|
3019 |
msgid "Single Portfolio Appearance"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
+
#: includes/general-hooks.php:3423
|
3023 |
msgid "Content"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
+
#: includes/general-hooks.php:3441
|
3027 |
msgid "Overview Content"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
+
#: includes/general-hooks.php:3450
|
3031 |
msgid "Meta"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
+
#: includes/general-hooks.php:3459
|
3035 |
msgid "Meta Terms"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
+
#: includes/general-hooks.php:3468
|
3039 |
msgid "Launch Button"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
+
#: includes/general-hooks.php:3477
|
3043 |
msgid "Launch Button Background"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
+
#: includes/general-hooks.php:3522
|
3047 |
msgid "Portfolio Options"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
+
#: includes/general-hooks.php:3543
|
3051 |
msgid "Likes"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
+
#: includes/general-hooks.php:3575
|
3055 |
+
msgid "Like"
|
3056 |
+
msgstr ""
|
3057 |
+
|
3058 |
+
#: includes/general-hooks.php:3602
|
3059 |
msgid "Share"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
+
#: includes/general-hooks.php:3641 public/includes/templates-post.php:19
|
3063 |
msgid "Related Projects"
|
3064 |
msgstr ""
|
3065 |
|
public/assets/js/portfolio.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/*!
|
2 |
* All required plugins
|
3 |
* http://averta.net/phlox/
|
4 |
*/
|
1 |
+
/*! 2.0.0
|
2 |
* All required plugins
|
3 |
* http://averta.net/phlox/
|
4 |
*/
|