Premium Portfolio Features for Phlox theme - Version 1.9.5

Version Description

Download this release

Release Info

Developer averta
Plugin Icon 128x128 Premium Portfolio Features for Phlox theme
Version 1.9.5
Comparing to
See all releases

Code changes from version 1.9.4 to 1.9.5

README.txt CHANGED
@@ -7,7 +7,7 @@ Tags: phlox, gallery, elementor, siteorigin, portfolio, averta, auxin, fullwidth
7
  Requires PHP: 5.4
8
  Requires at least: 4.6
9
  Tested up to: 5.3.4
10
- Stable tag: 1.9.4
11
  License: GPLv3
12
  License URI: http://www.gnu.org/licenses/gpl.html
13
 
7
  Requires PHP: 5.4
8
  Requires at least: 4.6
9
  Tested up to: 5.3.4
10
+ Stable tag: 1.9.5
11
  License: GPLv3
12
  License URI: http://www.gnu.org/licenses/gpl.html
13
 
auxin-portfolio.php CHANGED
@@ -12,7 +12,7 @@
12
  * Plugin Name: Phlox Portfolio
13
  * Plugin URI: http://phlox.pro/
14
  * Description: Showcase your projects beautifully in Phlox theme
15
- * Version: 1.9.4
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * License: GPL2
12
  * Plugin Name: Phlox Portfolio
13
  * Plugin URI: http://phlox.pro/
14
  * Description: Showcase your projects beautifully in Phlox theme
15
+ * Version: 1.9.5
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * License: GPL2
includes/define.php CHANGED
@@ -15,7 +15,7 @@ if( ! defined( 'THEME_NAME' ) ){
15
 
16
 
17
 
18
- define( 'AUXPFO_VERSION' , '1.9.4' );
19
 
20
  define( 'AUXPFO_SLUG' , 'auxin-portfolio' );
21
 
15
 
16
 
17
 
18
+ define( 'AUXPFO_VERSION' , '1.9.5' );
19
 
20
  define( 'AUXPFO_SLUG' , 'auxin-portfolio' );
21
 
includes/general-hooks.php CHANGED
@@ -299,6 +299,62 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
299
  )
300
  );
301
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
302
  $options[] = array(
303
  'title' => __( 'Share Button Icon Size', 'auxin-portfolio' ),
304
  'id' => 'portfolio_single_share_button_icon_size',
@@ -319,7 +375,7 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
319
  ),
320
  'style_callback' => function( $value = null ){
321
  if( ! $value ){
322
- $value = esc_attr( auxin_get_option( 'blog_post_share_button_icon_size' ) );
323
  }
324
  if( ! is_numeric( $value ) ){
325
  $value = 10;
@@ -395,7 +451,63 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
395
  )
396
  )
397
  );
398
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
399
  $options[] = array(
400
  'title' => __( 'Like Button Icon Size', 'auxin-portfolio' ),
401
  'id' => 'portfolio_single_like_icon_size',
@@ -424,7 +536,7 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
424
  return $value ? ".single-portfolio .wp_ulike_general_class button::before { font-size:{$value}px; }" : '';
425
  }
426
  );
427
-
428
  $options[] = array(
429
  'title' => __( 'Like Button Margin', 'auxin-portfolio' ),
430
  'id' => 'portfolio_single_like_margin',
@@ -3354,7 +3466,7 @@ if ( auxin_is_plugin_active( 'wp-ulike/wp-ulike.php' ) ) {
3354
  function auxpfo_change_like_icon ( $args ) {
3355
  $like_icon = ' aux-icon ' . auxin_get_option( 'portfolio_single_like_icon', 'auxicon-heart-2' );
3356
  $args['button_class'] .= $like_icon;
3357
- return $args;
3358
  }
3359
 
3360
  /**
@@ -3365,7 +3477,7 @@ function auxpfo_change_like_icon ( $args ) {
3365
  function auxpfo_add_single_portfolio_actions( $show_like_btn, $show_share_btn ){
3366
 
3367
  if( function_exists( 'wp_ulike' ) && $show_like_btn ){
3368
- add_filter( 'wp_ulike_add_templates_args', 'auxpfo_change_like_icon', 1, 1 );
3369
  wp_ulike( 'get', array( 'style' => 'wpulike-heart', 'button_type' => 'image', 'wrapper_class' => 'aux-wpulike aux-wpulike-portfolio' ) );
3370
  remove_filter( 'wp_ulike_add_templates_args', 'auxpfo_change_like_icon', 1 );
3371
  }
299
  )
300
  );
301
 
302
+ $options[] = array(
303
+ 'title' => __( 'Icon Color', 'auxin-portfolio' ),
304
+ 'description' => __( 'Like icon color','auxin-portfolio' ),
305
+ 'id' => 'portfolio_single_share_button_icon_color',
306
+ 'section' => 'portfolio-section-single',
307
+ 'transport' => 'postMessage',
308
+ 'type' => 'color',
309
+ 'default' => '',
310
+ 'style_callback' => function( $value = null ){
311
+ if( ! $value ){
312
+ $value = esc_attr( auxin_get_option( 'portfolio_single_share_button_icon_color' ) );
313
+ }
314
+ return $value ? ".single-portfolio .aux-single-portfolio-share span::before { color:{$value}; }" : '';
315
+ },
316
+ 'dependency' => array(
317
+ array(
318
+ 'id' => 'show_portfolio_single_share_like_section',
319
+ 'value' => array('1'),
320
+ 'operator'=> ''
321
+ ),
322
+ array(
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' => __( 'Like icon hover color','auxin-portfolio' ),
333
+ 'id' => 'portfolio_single_share_button_icon_hover_color',
334
+ 'section' => 'portfolio-section-single',
335
+ 'transport' => 'postMessage',
336
+ 'type' => 'color',
337
+ 'default' => '',
338
+ 'style_callback' => function( $value = null ){
339
+ if( ! $value ){
340
+ $value = esc_attr( auxin_get_option( 'portfolio_single_share_button_icon_hover_color' ) );
341
+ }
342
+ return $value ? ".single-portfolio .aux-single-portfolio-share span:hover::before { color:{$value}; }" : '';
343
+ },
344
+ 'dependency' => array(
345
+ array(
346
+ 'id' => 'show_portfolio_single_share_like_section',
347
+ 'value' => array('1'),
348
+ 'operator'=> ''
349
+ ),
350
+ array(
351
+ 'id' => 'show_portfolio_single_share',
352
+ 'value' => array('1'),
353
+ 'operator'=> ''
354
+ )
355
+ )
356
+ );
357
+
358
  $options[] = array(
359
  'title' => __( 'Share Button Icon Size', 'auxin-portfolio' ),
360
  'id' => 'portfolio_single_share_button_icon_size',
375
  ),
376
  'style_callback' => function( $value = null ){
377
  if( ! $value ){
378
+ $value = esc_attr( auxin_get_option( 'portfolio_single_share_button_icon_size' ) );
379
  }
380
  if( ! is_numeric( $value ) ){
381
  $value = 10;
451
  )
452
  )
453
  );
454
+
455
+ $options[] = array(
456
+ 'title' => __( 'Icon Color', 'auxin-portfolio' ),
457
+ 'description' => __( 'Like icon color','auxin-portfolio' ),
458
+ 'id' => 'portfolio_single_like_icon_color',
459
+ 'section' => 'portfolio-section-single',
460
+ 'transport' => 'postMessage',
461
+ 'type' => 'color',
462
+ 'default' => '',
463
+ 'style_callback' => function( $value = null ){
464
+ if( ! $value ){
465
+ $value = esc_attr( auxin_get_option( 'portfolio_single_like_icon_color' ) );
466
+ }
467
+ return $value ? ".single-portfolio .wp_ulike_general_class button::before { color:{$value}; }" : '';
468
+ },
469
+ 'dependency' => array(
470
+ array(
471
+ 'id' => 'show_portfolio_single_share_like_section',
472
+ 'value' => array('1'),
473
+ 'operator'=> ''
474
+ ),
475
+ array(
476
+ 'id' => 'show_portfolio_single_like',
477
+ 'value' => array('1'),
478
+ 'operator'=> ''
479
+ )
480
+ )
481
+ );
482
+
483
+ $options[] = array(
484
+ 'title' => __( 'Icon Hover Color', 'auxin-portfolio' ),
485
+ 'description' => __( 'Like icon hover color','auxin-portfolio' ),
486
+ 'id' => 'portfolio_single_like_icon_hover_color',
487
+ 'section' => 'portfolio-section-single',
488
+ 'transport' => 'postMessage',
489
+ 'type' => 'color',
490
+ 'default' => '',
491
+ 'style_callback' => function( $value = null ){
492
+ if( ! $value ){
493
+ $value = esc_attr( auxin_get_option( 'portfolio_single_like_icon_hover_color' ) );
494
+ }
495
+ return $value ? ".single-portfolio .wp_ulike_general_class button:hover::before { color:{$value}; }" : '';
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
+ );
510
+
511
  $options[] = array(
512
  'title' => __( 'Like Button Icon Size', 'auxin-portfolio' ),
513
  'id' => 'portfolio_single_like_icon_size',
536
  return $value ? ".single-portfolio .wp_ulike_general_class button::before { font-size:{$value}px; }" : '';
537
  }
538
  );
539
+
540
  $options[] = array(
541
  'title' => __( 'Like Button Margin', 'auxin-portfolio' ),
542
  'id' => 'portfolio_single_like_margin',
3466
  function auxpfo_change_like_icon ( $args ) {
3467
  $like_icon = ' aux-icon ' . auxin_get_option( 'portfolio_single_like_icon', 'auxicon-heart-2' );
3468
  $args['button_class'] .= $like_icon;
3469
+ return $args;
3470
  }
3471
 
3472
  /**
3477
  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', 'button_type' => 'image', 'wrapper_class' => 'aux-wpulike aux-wpulike-portfolio' ) );
3482
  remove_filter( 'wp_ulike_add_templates_args', 'auxpfo_change_like_icon', 1 );
3483
  }
languages/auxin-portfolio.pot CHANGED
@@ -1,9 +1,9 @@
1
  # Averta Copyright (c) {2020}
2
  msgid ""
3
  msgstr ""
4
- "Project-Id-Version: Phlox Portfolio 1.9.4\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
- "POT-Creation-Date: 2020-04-11 05:18:02+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,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:3217
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:616
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:1233
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:1237
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:1379
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:1380
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:452
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:453
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:470
260
  msgid "Classic Project Navigation"
261
  msgstr ""
262
 
263
  #: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:239
264
- #: includes/general-hooks.php:474
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:466
270
  msgid "Minimal (default)"
271
  msgstr ""
272
 
273
  #: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:247
274
- #: includes/general-hooks.php:478
275
  msgid "Thumbnail with Arrow"
276
  msgstr ""
277
 
278
  #: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:251
279
- #: includes/general-hooks.php:482
280
  msgid "Thumbnail without Arrow"
281
  msgstr ""
282
 
283
  #: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:255
284
- #: includes/general-hooks.php:486
285
  msgid "Navigation with Light Background"
286
  msgstr ""
287
 
288
  #: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:259
289
- #: includes/general-hooks.php:490
290
  msgid "Navigation with Dark Background"
291
  msgstr ""
292
 
293
  #: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:263
294
- #: includes/general-hooks.php:494
295
  msgid "Sticky Thumbnail with Arrow"
296
  msgstr ""
297
 
298
  #: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:267
299
- #: includes/general-hooks.php:498
300
  msgid "Modern"
301
  msgstr ""
302
 
303
  #: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:276
304
- #: includes/general-hooks.php:543
305
  msgid "Next & Previous Button Link"
306
  msgstr ""
307
 
308
  #: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:277
309
- #: includes/general-hooks.php:544
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:1686
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:1714
367
  msgid "Label of Related Section"
368
  msgstr ""
369
 
370
  #: admin/includes/metaboxes/metabox-fields-portfolio-related.php:37
371
- #: includes/general-hooks.php:1715
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:1772
377
  msgid "Related Items Type"
378
  msgstr ""
379
 
380
  #: admin/includes/metaboxes/metabox-fields-portfolio-related.php:52
381
- #: includes/general-hooks.php:1773
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:2090
387
- #: includes/general-hooks.php:2794
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:1793 includes/general-hooks.php:2271
400
- #: includes/general-hooks.php:2966
401
  msgid "Number of Columns"
402
  msgstr ""
403
 
404
  #: admin/includes/metaboxes/metabox-fields-portfolio-related.php:92
405
- #: includes/general-hooks.php:1813
406
  msgid "Align Center"
407
  msgstr ""
408
 
409
  #: admin/includes/metaboxes/metabox-fields-portfolio-related.php:93
410
- #: includes/general-hooks.php:1814
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:1831
416
  msgid "Full Width Related Section"
417
  msgstr ""
418
 
419
  #: admin/includes/metaboxes/metabox-fields-portfolio-related.php:113
420
- #: includes/general-hooks.php:1832
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:1849
426
  msgid "Snap Related Items"
427
  msgstr ""
428
 
429
  #: admin/includes/metaboxes/metabox-fields-portfolio-related.php:133
430
- #: includes/general-hooks.php:1850
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:1867
436
  msgid "Display Portfolio Categories"
437
  msgstr ""
438
 
439
  #: admin/includes/metaboxes/metabox-fields-portfolio-related.php:153
440
- #: includes/general-hooks.php:1868
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:1906
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:1907
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:1924
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:1925
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:1931
471
  msgid "Archive page"
472
  msgstr ""
473
 
474
  #: admin/includes/metaboxes/metabox-fields-portfolio-related.php:212
475
- #: includes/general-hooks.php:1932
476
  msgid "Custom URL"
477
  msgstr ""
478
 
479
  #: admin/includes/metaboxes/metabox-fields-portfolio-related.php:217
480
- #: includes/general-hooks.php:1950
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:1951
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:1976
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:1977
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:2764
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:355
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:932
971
- #: includes/general-hooks.php:1305
972
  msgid "None"
973
  msgstr ""
974
 
@@ -1297,7 +1297,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:3180
1301
  msgid "Author"
1302
  msgstr ""
1303
 
@@ -1431,34 +1431,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:2245
1435
- #: includes/general-hooks.php:2942
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:2246
1443
- #: includes/general-hooks.php:2943
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:1749
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:1762
1455
- #: includes/general-hooks.php:2124 includes/general-hooks.php:2828
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:1763
1461
- #: includes/general-hooks.php:2125 includes/general-hooks.php:2829
1462
  msgid "Horizontal 16:9"
1463
  msgstr ""
1464
 
@@ -1497,24 +1497,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:2156
1501
- #: includes/general-hooks.php:2860
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:2161
1509
- #: includes/general-hooks.php:2864
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:2166
1517
- #: includes/general-hooks.php:2868
1518
  msgid "Classic with lightbox style 2"
1519
  msgstr ""
1520
 
@@ -1525,9 +1525,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:2171
1529
- #: includes/general-hooks.php:2217 includes/general-hooks.php:2872
1530
- #: includes/general-hooks.php:2914
1531
  msgid "Overlay title style 1"
1532
  msgstr ""
1533
 
@@ -1538,9 +1538,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:2176
1542
- #: includes/general-hooks.php:2221 includes/general-hooks.php:2876
1543
- #: includes/general-hooks.php:2918
1544
  msgid "Overlay title style 2"
1545
  msgstr ""
1546
 
@@ -1551,9 +1551,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:2181
1555
- #: includes/general-hooks.php:2225 includes/general-hooks.php:2880
1556
- #: includes/general-hooks.php:2922
1557
  msgid "Overlay title with lightbox style 1"
1558
  msgstr ""
1559
 
@@ -1564,9 +1564,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:2186
1568
- #: includes/general-hooks.php:2229 includes/general-hooks.php:2884
1569
- #: includes/general-hooks.php:2926
1570
  msgid "Overlay title with lightbox style 2"
1571
  msgstr ""
1572
 
@@ -1767,7 +1767,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:1241
1771
  msgid "Right"
1772
  msgstr ""
1773
 
@@ -1950,8 +1950,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:2457
1954
- #: includes/general-hooks.php:2536
1955
  msgid "Entry Box Border Color"
1956
  msgstr ""
1957
 
@@ -2144,13 +2144,13 @@ msgstr ""
2144
  msgid "Different layout types of appearing items."
2145
  msgstr ""
2146
 
2147
- #: includes/elements/recent-portfolios.php:221 includes/general-hooks.php:2094
2148
- #: includes/general-hooks.php:2798
2149
  msgid "Masonry"
2150
  msgstr ""
2151
 
2152
- #: includes/elements/recent-portfolios.php:225 includes/general-hooks.php:2098
2153
- #: includes/general-hooks.php:2802
2154
  msgid "Tiles"
2155
  msgstr ""
2156
 
@@ -2158,13 +2158,13 @@ msgstr ""
2158
  msgid "Post Tile styles"
2159
  msgstr ""
2160
 
2161
- #: includes/elements/recent-portfolios.php:303 includes/general-hooks.php:1764
2162
- #: includes/general-hooks.php:2126 includes/general-hooks.php:2830
2163
  msgid "Square 1:1"
2164
  msgstr ""
2165
 
2166
- #: includes/elements/recent-portfolios.php:304 includes/general-hooks.php:1765
2167
- #: includes/general-hooks.php:2127 includes/general-hooks.php:2831
2168
  msgid "Vertical 3:4"
2169
  msgstr ""
2170
 
@@ -2172,8 +2172,8 @@ msgstr ""
2172
  msgid "Portfolio hover type"
2173
  msgstr ""
2174
 
2175
- #: includes/elements/recent-portfolios.php:362 includes/general-hooks.php:2424
2176
- #: includes/general-hooks.php:2508
2177
  msgid "Entry Box Background Color"
2178
  msgstr ""
2179
 
@@ -2222,7 +2222,7 @@ msgstr ""
2222
  msgid "Single Portfolio"
2223
  msgstr ""
2224
 
2225
- #: includes/general-hooks.php:50 includes/general-hooks.php:571
2226
  msgid "Preview a Single Portfolio Page"
2227
  msgstr ""
2228
 
@@ -2234,35 +2234,35 @@ msgstr ""
2234
  msgid "Specifies single portfolio template."
2235
  msgstr ""
2236
 
2237
- #: includes/general-hooks.php:108 includes/general-hooks.php:2299
2238
  msgid "Custom Max Width"
2239
  msgstr ""
2240
 
2241
- #: includes/general-hooks.php:109 includes/general-hooks.php:2300
2242
  msgid "Specifies the maximum width of website."
2243
  msgstr ""
2244
 
2245
- #: includes/general-hooks.php:116 includes/general-hooks.php:2307
2246
  msgid "Default Site Max Width"
2247
  msgstr ""
2248
 
2249
- #: includes/general-hooks.php:117 includes/general-hooks.php:2308
2250
  msgid "1000 Pixels"
2251
  msgstr ""
2252
 
2253
- #: includes/general-hooks.php:118 includes/general-hooks.php:2309
2254
  msgid "1200 Pixels"
2255
  msgstr ""
2256
 
2257
- #: includes/general-hooks.php:119 includes/general-hooks.php:2310
2258
  msgid "1400 Pixels"
2259
  msgstr ""
2260
 
2261
- #: includes/general-hooks.php:120 includes/general-hooks.php:2311
2262
  msgid "1600 Pixels"
2263
  msgstr ""
2264
 
2265
- #: includes/general-hooks.php:121 includes/general-hooks.php:2312
2266
  msgid "1900 Pixels"
2267
  msgstr ""
2268
 
@@ -2302,719 +2302,735 @@ msgstr ""
2302
  msgid "Share Button Icon"
2303
  msgstr ""
2304
 
2305
- #: includes/general-hooks.php:303
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2306
  msgid "Share Button Icon Size"
2307
  msgstr ""
2308
 
2309
- #: includes/general-hooks.php:332
2310
  msgid "Share Button Margin"
2311
  msgstr ""
2312
 
2313
- #: includes/general-hooks.php:356
2314
  msgid ""
2315
  "Enable it to display the like button. Please note that you should have "
2316
  "\"ulike\" plugin installed for this feature."
2317
  msgstr ""
2318
 
2319
- #: includes/general-hooks.php:379
2320
  msgid "Like Icon"
2321
  msgstr ""
2322
 
2323
- #: includes/general-hooks.php:400
2324
  msgid "Like Button Icon Size"
2325
  msgstr ""
2326
 
2327
- #: includes/general-hooks.php:429
2328
  msgid "Like Button Margin"
2329
  msgstr ""
2330
 
2331
- #: includes/general-hooks.php:507
2332
  msgid "Next Portfolio Label"
2333
  msgstr ""
2334
 
2335
- #: includes/general-hooks.php:508 includes/general-hooks.php:526
2336
  msgid "Specifies the word after next and previous navigation."
2337
  msgstr ""
2338
 
2339
- #: includes/general-hooks.php:525
2340
  msgid "Previous Portfolio Label"
2341
  msgstr ""
2342
 
2343
- #: includes/general-hooks.php:570
2344
  msgid "Portfolio Title"
2345
  msgstr ""
2346
 
2347
- #: includes/general-hooks.php:576
2348
  msgid "Display Title Bar Section"
2349
  msgstr ""
2350
 
2351
- #: includes/general-hooks.php:577
2352
  msgid "Enable it to show the title section."
2353
  msgstr ""
2354
 
2355
- #: includes/general-hooks.php:593
2356
  msgid "Layout presets"
2357
  msgstr ""
2358
 
2359
- #: includes/general-hooks.php:635
2360
  msgid "Title bar with light overlay which is aligned center"
2361
  msgstr ""
2362
 
2363
- #: includes/general-hooks.php:653
2364
  msgid "Fullscreen title bar with light overlay on background"
2365
  msgstr ""
2366
 
2367
- #: includes/general-hooks.php:671
2368
  msgid "Fullscreen title bar with dark overlay on background"
2369
  msgstr ""
2370
 
2371
- #: includes/general-hooks.php:689
2372
  msgid "Fullscreen title bar with border around the title"
2373
  msgstr ""
2374
 
2375
- #: includes/general-hooks.php:707
2376
  msgid "Fullscreen title bar with dark box around the title"
2377
  msgstr ""
2378
 
2379
- #: includes/general-hooks.php:725
2380
  msgid "Title aligned left with dark overlay on background"
2381
  msgstr ""
2382
 
2383
- #: includes/general-hooks.php:743
2384
  msgid "Tile overlaps the title area section and is aligned center"
2385
  msgstr ""
2386
 
2387
- #: includes/general-hooks.php:764
2388
  msgid "Enable advanced setting"
2389
  msgstr ""
2390
 
2391
- #: includes/general-hooks.php:765
2392
  msgid "Enable it to customize preset layouts."
2393
  msgstr ""
2394
 
2395
- #: includes/general-hooks.php:788
2396
  msgid "Content Width"
2397
  msgstr ""
2398
 
2399
- #: includes/general-hooks.php:808
2400
  msgid "Boxed"
2401
  msgstr ""
2402
 
2403
- #: includes/general-hooks.php:812
2404
  msgid "Full Width Content with Space on Sides"
2405
  msgstr ""
2406
 
2407
- #: includes/general-hooks.php:816
2408
  msgid "Full Width Content"
2409
  msgstr ""
2410
 
2411
- #: includes/general-hooks.php:825
2412
  msgid "Title Section Height"
2413
  msgstr ""
2414
 
2415
- #: includes/general-hooks.php:852
2416
  msgid "Auto Height"
2417
  msgstr ""
2418
 
2419
- #: includes/general-hooks.php:853
2420
  msgid "Full Height"
2421
  msgstr ""
2422
 
2423
- #: includes/general-hooks.php:858
2424
  msgid "Vertical Position"
2425
  msgstr ""
2426
 
2427
- #: includes/general-hooks.php:859
2428
  msgid "Specifies vertical alignment of title and subtitle."
2429
  msgstr ""
2430
 
2431
- #: includes/general-hooks.php:860
2432
  msgid ""
2433
  "Note: Parallax feature in not available for \"Bottom Overlap\" vertical "
2434
  "mode."
2435
  msgstr ""
2436
 
2437
- #: includes/general-hooks.php:886
2438
  msgid "Top"
2439
  msgstr ""
2440
 
2441
- #: includes/general-hooks.php:887
2442
  msgid "Middle"
2443
  msgstr ""
2444
 
2445
- #: includes/general-hooks.php:888
2446
  msgid "Bottom"
2447
  msgstr ""
2448
 
2449
- #: includes/general-hooks.php:889
2450
  msgid "Bottom Overlap"
2451
  msgstr ""
2452
 
2453
- #: includes/general-hooks.php:894
2454
  msgid "Scroll Down Arrow"
2455
  msgstr ""
2456
 
2457
- #: includes/general-hooks.php:895
2458
  msgid "This option only applies if section height is \"Full Height\"."
2459
  msgstr ""
2460
 
2461
- #: includes/general-hooks.php:936
2462
  msgid "Round"
2463
  msgstr ""
2464
 
2465
- #: includes/general-hooks.php:943
2466
  msgid "Display Titles"
2467
  msgstr ""
2468
 
2469
- #: includes/general-hooks.php:944
2470
  msgid "Enable it to display title/subtitle in title section."
2471
  msgstr ""
2472
 
2473
- #: includes/general-hooks.php:972
2474
  msgid "Border for Heading"
2475
  msgstr ""
2476
 
2477
- #: includes/general-hooks.php:973
2478
  msgid "Enable it to display a border around the title and subtitle area."
2479
  msgstr ""
2480
 
2481
- #: includes/general-hooks.php:1006
2482
  msgid "Boxed Title"
2483
  msgstr ""
2484
 
2485
- #: includes/general-hooks.php:1007
2486
  msgid "Enable it to wrap the title and subtitle in a box with background color."
2487
  msgstr ""
2488
 
2489
- #: includes/general-hooks.php:1040
2490
  msgid "Title Box Custom Color"
2491
  msgstr ""
2492
 
2493
- #: includes/general-hooks.php:1041
2494
  msgid ""
2495
  "Specifies a custom background color for the box around the title and "
2496
  "subtitle."
2497
  msgstr ""
2498
 
2499
- #: includes/general-hooks.php:1079
2500
  msgid "Display Post Meta"
2501
  msgstr ""
2502
 
2503
- #: includes/general-hooks.php:1080
2504
  msgid "Enable it to display post meta information on title section."
2505
  msgstr ""
2506
 
2507
- #: includes/general-hooks.php:1108
2508
  msgid "Display Breadcrumb"
2509
  msgstr ""
2510
 
2511
- #: includes/general-hooks.php:1109
2512
  msgid "Enable it to display breadcrumb on title section."
2513
  msgstr ""
2514
 
2515
- #: includes/general-hooks.php:1137
2516
  msgid "Border for Breadcrumb"
2517
  msgstr ""
2518
 
2519
- #: includes/general-hooks.php:1138
2520
  msgid "Enable it to display border around breadcrumb."
2521
  msgstr ""
2522
 
2523
- #: includes/general-hooks.php:1171
2524
  msgid "Breadcrumb Separator Icon"
2525
  msgstr ""
2526
 
2527
- #: includes/general-hooks.php:1205
2528
  msgid "Text Align"
2529
  msgstr ""
2530
 
2531
- #: includes/general-hooks.php:1248
2532
  msgid "Overlay Color"
2533
  msgstr ""
2534
 
2535
- #: includes/general-hooks.php:1249
2536
  msgid ""
2537
  "The color that overlay on the background. Please note that color should "
2538
  "have transparency."
2539
  msgstr ""
2540
 
2541
- #: includes/general-hooks.php:1277
2542
  msgid "Overlay Pattern"
2543
  msgstr ""
2544
 
2545
- #: includes/general-hooks.php:1309
2546
  msgid "Hash"
2547
  msgstr ""
2548
 
2549
- #: includes/general-hooks.php:1316
2550
  msgid "Overlay Pattern Opacity"
2551
  msgstr ""
2552
 
2553
- #: includes/general-hooks.php:1352
2554
  msgid "Color Mode"
2555
  msgstr ""
2556
 
2557
- #: includes/general-hooks.php:1387
2558
  msgid "Enable Title Background"
2559
  msgstr ""
2560
 
2561
- #: includes/general-hooks.php:1388
2562
  msgid "Enable it to display custom background for title section."
2563
  msgstr ""
2564
 
2565
- #: includes/general-hooks.php:1416
2566
  msgid "Enable Parallax Effect"
2567
  msgstr ""
2568
 
2569
- #: includes/general-hooks.php:1417
2570
  msgid "Enable it to have parallax background effect on this section."
2571
  msgstr ""
2572
 
2573
- #: includes/general-hooks.php:1418
2574
  msgid ""
2575
  "Note: Parallax feature in not available for \"Bottom Overlap\" mode for "
2576
  "\"Vertical Position\" option."
2577
  msgstr ""
2578
 
2579
- #: includes/general-hooks.php:1451
2580
  msgid "Background Color"
2581
  msgstr ""
2582
 
2583
- #: includes/general-hooks.php:1452
2584
  msgid "Specifies a background color for title bar."
2585
  msgstr ""
2586
 
2587
- #: includes/general-hooks.php:1486
2588
  msgid "Background Size"
2589
  msgstr ""
2590
 
2591
- #: includes/general-hooks.php:1487
2592
  msgid "Specifies the background size."
2593
  msgstr ""
2594
 
2595
- #: includes/general-hooks.php:1519
2596
  msgid "Auto"
2597
  msgstr ""
2598
 
2599
- #: includes/general-hooks.php:1523
2600
  msgid "Contain"
2601
  msgstr ""
2602
 
2603
- #: includes/general-hooks.php:1527
2604
  msgid "Cover"
2605
  msgstr ""
2606
 
2607
- #: includes/general-hooks.php:1535
2608
  msgid "Background Image"
2609
  msgstr ""
2610
 
2611
- #: includes/general-hooks.php:1536
2612
  msgid "Specifies a background image for title bar."
2613
  msgstr ""
2614
 
2615
- #: includes/general-hooks.php:1570
2616
  msgid "Background Video MP4"
2617
  msgstr ""
2618
 
2619
- #: includes/general-hooks.php:1571 includes/general-hooks.php:1606
2620
- #: includes/general-hooks.php:1641
2621
  msgid ""
2622
  "You can upload custom video for title background</br>Note: if you set "
2623
  "custom image, default image backgrounds will be ignored."
2624
  msgstr ""
2625
 
2626
- #: includes/general-hooks.php:1605
2627
  msgid "Background Video Ogg"
2628
  msgstr ""
2629
 
2630
- #: includes/general-hooks.php:1640
2631
  msgid "Background Video WebM"
2632
  msgstr ""
2633
 
2634
- #: includes/general-hooks.php:1680
2635
  msgid "Related Portfolios"
2636
  msgstr ""
2637
 
2638
- #: includes/general-hooks.php:1681
2639
  msgid "Setting for Related Portfolios Section in Single Page"
2640
  msgstr ""
2641
 
2642
- #: includes/general-hooks.php:1687
2643
  msgid "Enable it to display related portfolios section on single portfolio page."
2644
  msgstr ""
2645
 
2646
- #: includes/general-hooks.php:1698
2647
  msgid "Title Typography"
2648
  msgstr ""
2649
 
2650
- #: includes/general-hooks.php:1727
2651
  msgid "Related Projects/Works"
2652
  msgstr ""
2653
 
2654
- #: includes/general-hooks.php:1732
2655
  msgid "Label Typography"
2656
  msgstr ""
2657
 
2658
- #: includes/general-hooks.php:1885
2659
  msgid "Category Terms Typography"
2660
  msgstr ""
2661
 
2662
- #: includes/general-hooks.php:1930
2663
  msgid "Hide it"
2664
  msgstr ""
2665
 
2666
- #: includes/general-hooks.php:1998
2667
  msgid "Browse All Projects"
2668
  msgstr ""
2669
 
2670
- #: includes/general-hooks.php:2002
2671
  msgid "Button Typography"
2672
  msgstr ""
2673
 
2674
- #: includes/general-hooks.php:2023
2675
  msgid "Button Background"
2676
  msgstr ""
2677
 
2678
- #: includes/general-hooks.php:2049
2679
  msgid "Portfolio Page"
2680
  msgstr ""
2681
 
2682
- #: includes/general-hooks.php:2050
2683
  msgid "Preview Portfolio Page"
2684
  msgstr ""
2685
 
2686
- #: includes/general-hooks.php:2055
2687
  msgid "Custom Page For Archive"
2688
  msgstr ""
2689
 
2690
- #: includes/general-hooks.php:2056
2691
  msgid "Enable this option to select custom page for archive page"
2692
  msgstr ""
2693
 
2694
- #: includes/general-hooks.php:2065
2695
  msgid "Select Page"
2696
  msgstr ""
2697
 
2698
- #: includes/general-hooks.php:2081
2699
  msgid "Portfolio Template"
2700
  msgstr ""
2701
 
2702
- #: includes/general-hooks.php:2082
2703
  msgid "Choose your portfolio template."
2704
  msgstr ""
2705
 
2706
- #: includes/general-hooks.php:2102 includes/general-hooks.php:2806
2707
  msgid "Land"
2708
  msgstr ""
2709
 
2710
- #: includes/general-hooks.php:2111 includes/general-hooks.php:2815
2711
  msgid "Image Aspect Ratio"
2712
  msgstr ""
2713
 
2714
- #: includes/general-hooks.php:2141 includes/general-hooks.php:2845
2715
  msgid "Portfolio Hover Type"
2716
  msgstr ""
2717
 
2718
- #: includes/general-hooks.php:2142 includes/general-hooks.php:2204
2719
- #: includes/general-hooks.php:2846 includes/general-hooks.php:2901
2720
  msgid "Hover over images to see the animation."
2721
  msgstr ""
2722
 
2723
- #: includes/general-hooks.php:2203 includes/general-hooks.php:2900
2724
  msgid "Tile Portfolio Item Type"
2725
  msgstr ""
2726
 
2727
- #: includes/general-hooks.php:2319 includes/general-hooks.php:2994
2728
  msgid "Number of Columns in Tablet"
2729
  msgstr ""
2730
 
2731
- #: includes/general-hooks.php:2348 includes/general-hooks.php:3023
2732
  msgid "Number of Columns in Mobile"
2733
  msgstr ""
2734
 
2735
- #: includes/general-hooks.php:2376 includes/general-hooks.php:3051
2736
  msgid "Display Like Button"
2737
  msgstr ""
2738
 
2739
- #: includes/general-hooks.php:2377 includes/general-hooks.php:3052
2740
  msgid ""
2741
  "Enable it to display %s like button%s on portfolio portfolios. Please note "
2742
  "WP Ulike plugin needs to be activaited to use this option."
2743
  msgstr ""
2744
 
2745
- #: includes/general-hooks.php:2401 includes/general-hooks.php:2490
2746
  msgid "Enable Entry Box Coloring"
2747
  msgstr ""
2748
 
2749
- #: includes/general-hooks.php:2402 includes/general-hooks.php:2491
2750
  msgid "Specifies the border/background color for entry box."
2751
  msgstr ""
2752
 
2753
- #: includes/general-hooks.php:2426 includes/general-hooks.php:2510
2754
  msgid "Specifies the background color for entry box."
2755
  msgstr ""
2756
 
2757
- #: includes/general-hooks.php:2459 includes/general-hooks.php:2538
2758
  msgid "Specifies the border color for entry box."
2759
  msgstr ""
2760
 
2761
- #: includes/general-hooks.php:2564
2762
  msgid "Portfolio Sidebar Position"
2763
  msgstr ""
2764
 
2765
- #: includes/general-hooks.php:2565
2766
  msgid "Specifies the position of sidebar on portfolio page."
2767
  msgstr ""
2768
 
2769
- #: includes/general-hooks.php:2571 includes/general-hooks.php:3085
2770
  msgid "No Sidebar"
2771
  msgstr ""
2772
 
2773
- #: includes/general-hooks.php:2575 includes/general-hooks.php:3089
2774
  msgid "Right Sidebar"
2775
  msgstr ""
2776
 
2777
- #: includes/general-hooks.php:2579 includes/general-hooks.php:3093
2778
  msgid "Left Sidebar"
2779
  msgstr ""
2780
 
2781
- #: includes/general-hooks.php:2583 includes/general-hooks.php:3097
2782
  msgid "Left Left Sidebar"
2783
  msgstr ""
2784
 
2785
- #: includes/general-hooks.php:2587 includes/general-hooks.php:3101
2786
  msgid "Right Right Sidebar"
2787
  msgstr ""
2788
 
2789
- #: includes/general-hooks.php:2591 includes/general-hooks.php:3105
2790
  msgid "Left Right Sidebar"
2791
  msgstr ""
2792
 
2793
- #: includes/general-hooks.php:2595 includes/general-hooks.php:3109
2794
  msgid "Right Left Sidebar"
2795
  msgstr ""
2796
 
2797
- #: includes/general-hooks.php:2607
2798
  msgid "Portfolio Sidebar Style"
2799
  msgstr ""
2800
 
2801
- #: includes/general-hooks.php:2608
2802
  msgid "Specifies the style of sidebar on portfolio page."
2803
  msgstr ""
2804
 
2805
- #: includes/general-hooks.php:2622 includes/general-hooks.php:3132
2806
  msgid "Simple"
2807
  msgstr ""
2808
 
2809
- #: includes/general-hooks.php:2626 includes/general-hooks.php:3136
2810
  msgid "Bordered Sidebar"
2811
  msgstr ""
2812
 
2813
- #: includes/general-hooks.php:2630 includes/general-hooks.php:3140
2814
  msgid "Overlap Background"
2815
  msgstr ""
2816
 
2817
- #: includes/general-hooks.php:2639
2818
  msgid "Number of Portfolios Per Page"
2819
  msgstr ""
2820
 
2821
- #: includes/general-hooks.php:2640
2822
  msgid "Specifies the number of portfolios items to show on each page."
2823
  msgstr ""
2824
 
2825
- #: includes/general-hooks.php:2658
2826
  msgid "Display Title Bar?"
2827
  msgstr ""
2828
 
2829
- #: includes/general-hooks.php:2659
2830
  msgid ""
2831
  "Specifies whether to display the title bar at top of portfolio archive page "
2832
  "or not."
2833
  msgstr ""
2834
 
2835
- #: includes/general-hooks.php:2677
2836
  msgid "Display Breadcrumb?"
2837
  msgstr ""
2838
 
2839
- #: includes/general-hooks.php:2678
2840
  msgid ""
2841
  "Specifies whether to display the breadcrumb in title bar of portfolio "
2842
  "archive page or not."
2843
  msgstr ""
2844
 
2845
- #: includes/general-hooks.php:2700
2846
  msgid "Display Title?"
2847
  msgstr ""
2848
 
2849
- #: includes/general-hooks.php:2701
2850
  msgid ""
2851
  "Specifies whether to display the title in title bar of portfolio archive "
2852
  "page or not."
2853
  msgstr ""
2854
 
2855
- #: includes/general-hooks.php:2723
2856
  msgid "Custom Title"
2857
  msgstr ""
2858
 
2859
- #: includes/general-hooks.php:2746
2860
  msgid "Custom Breadcrumb Label"
2861
  msgstr ""
2862
 
2863
- #: includes/general-hooks.php:2773
2864
  msgid "Portfolio Category & tag"
2865
  msgstr ""
2866
 
2867
- #: includes/general-hooks.php:2774
2868
  msgid "Portfolio Category & tag page Setting"
2869
  msgstr ""
2870
 
2871
- #: includes/general-hooks.php:2778
2872
  msgid "Taxonomy Page Template"
2873
  msgstr ""
2874
 
2875
- #: includes/general-hooks.php:3077
2876
  msgid "Taxonomy Page Sidebar Position"
2877
  msgstr ""
2878
 
2879
- #: includes/general-hooks.php:3118
2880
  msgid "Sidebar Style"
2881
  msgstr ""
2882
 
2883
- #: includes/general-hooks.php:3119
2884
  msgid "Specifies the style of sidebar on category & tag page."
2885
  msgstr ""
2886
 
2887
- #: includes/general-hooks.php:3153
2888
  msgid "Portfolio MetaData"
2889
  msgstr ""
2890
 
2891
- #: includes/general-hooks.php:3154
2892
  msgid "Portfolio MetaData Setting"
2893
  msgstr ""
2894
 
2895
- #: includes/general-hooks.php:3158
2896
  msgid "Label for Launch Project Button"
2897
  msgstr ""
2898
 
2899
- #: includes/general-hooks.php:3159
2900
  msgid "Specify a label for launch project button."
2901
  msgstr ""
2902
 
2903
- #: includes/general-hooks.php:3166
2904
  msgid "Launch Project"
2905
  msgstr ""
2906
 
2907
- #: includes/general-hooks.php:3170
2908
  msgid "Portfolio MetaDatas"
2909
  msgstr ""
2910
 
2911
- #: includes/general-hooks.php:3171
2912
  msgid ""
2913
  "Specify the number of fields and the label of each one for portfolio "
2914
  "metadatas"
2915
  msgstr ""
2916
 
2917
- #: includes/general-hooks.php:3177
2918
  msgid "Project URL"
2919
  msgstr ""
2920
 
2921
- #: includes/general-hooks.php:3178
2922
  msgid "Client"
2923
  msgstr ""
2924
 
2925
- #: includes/general-hooks.php:3179
2926
  msgid "Release Date"
2927
  msgstr ""
2928
 
2929
- #: includes/general-hooks.php:3181
2930
  msgid "Custom Field 1"
2931
  msgstr ""
2932
 
2933
- #: includes/general-hooks.php:3182
2934
  msgid "Custom Field 2"
2935
  msgstr ""
2936
 
2937
- #: includes/general-hooks.php:3183
2938
  msgid "Custom Field 3"
2939
  msgstr ""
2940
 
2941
- #: includes/general-hooks.php:3184
2942
  msgid "Custom Field 4"
2943
  msgstr ""
2944
 
2945
- #: includes/general-hooks.php:3185
2946
  msgid "Custom Field 5"
2947
  msgstr ""
2948
 
2949
- #: includes/general-hooks.php:3186
2950
  msgid "Custom Field 6"
2951
  msgstr ""
2952
 
2953
- #: includes/general-hooks.php:3187
2954
  msgid "Custom Field 7"
2955
  msgstr ""
2956
 
2957
- #: includes/general-hooks.php:3188
2958
  msgid "Custom Field 8"
2959
  msgstr ""
2960
 
2961
- #: includes/general-hooks.php:3189
2962
  msgid "Custom Field 9"
2963
  msgstr ""
2964
 
2965
- #: includes/general-hooks.php:3190
2966
  msgid "Custom Field 10"
2967
  msgstr ""
2968
 
2969
- #: includes/general-hooks.php:3191
2970
  msgid "Custom Field 11"
2971
  msgstr ""
2972
 
2973
- #: includes/general-hooks.php:3192
2974
  msgid "Custom Field 12"
2975
  msgstr ""
2976
 
2977
- #: includes/general-hooks.php:3203 includes/general-hooks.php:3204
2978
  msgid "Single Portfolio Appearance"
2979
  msgstr ""
2980
 
2981
- #: includes/general-hooks.php:3208
2982
  msgid "Content"
2983
  msgstr ""
2984
 
2985
- #: includes/general-hooks.php:3226
2986
  msgid "Overview Content"
2987
  msgstr ""
2988
 
2989
- #: includes/general-hooks.php:3235
2990
  msgid "Meta"
2991
  msgstr ""
2992
 
2993
- #: includes/general-hooks.php:3244
2994
  msgid "Meta Terms"
2995
  msgstr ""
2996
 
2997
- #: includes/general-hooks.php:3253
2998
  msgid "Launch Button"
2999
  msgstr ""
3000
 
3001
- #: includes/general-hooks.php:3262
3002
  msgid "Launch Button Background"
3003
  msgstr ""
3004
 
3005
- #: includes/general-hooks.php:3307
3006
  msgid "Portfolio Options"
3007
  msgstr ""
3008
 
3009
- #: includes/general-hooks.php:3328
3010
  msgid "Likes"
3011
  msgstr ""
3012
 
3013
- #: includes/general-hooks.php:3378
3014
  msgid "Share"
3015
  msgstr ""
3016
 
3017
- #: includes/general-hooks.php:3417 public/includes/templates-post.php:19
3018
  msgid "Related Projects"
3019
  msgstr ""
3020
 
1
  # Averta Copyright (c) {2020}
2
  msgid ""
3
  msgstr ""
4
+ "Project-Id-Version: Phlox Portfolio 1.9.5\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
+ "POT-Creation-Date: 2020-04-26 07:41:35+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:3329
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:728
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:1345
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:1349
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:1491
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:1492
233
  msgid "Light"
234
  msgstr ""
235
 
246
  msgstr ""
247
 
248
  #: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:219
249
+ #: includes/general-hooks.php:564
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:565
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:582
260
  msgid "Classic Project Navigation"
261
  msgstr ""
262
 
263
  #: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:239
264
+ #: includes/general-hooks.php:586
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:578
270
  msgid "Minimal (default)"
271
  msgstr ""
272
 
273
  #: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:247
274
+ #: includes/general-hooks.php:590
275
  msgid "Thumbnail with Arrow"
276
  msgstr ""
277
 
278
  #: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:251
279
+ #: includes/general-hooks.php:594
280
  msgid "Thumbnail without Arrow"
281
  msgstr ""
282
 
283
  #: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:255
284
+ #: includes/general-hooks.php:598
285
  msgid "Navigation with Light Background"
286
  msgstr ""
287
 
288
  #: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:259
289
+ #: includes/general-hooks.php:602
290
  msgid "Navigation with Dark Background"
291
  msgstr ""
292
 
293
  #: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:263
294
+ #: includes/general-hooks.php:606
295
  msgid "Sticky Thumbnail with Arrow"
296
  msgstr ""
297
 
298
  #: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:267
299
+ #: includes/general-hooks.php:610
300
  msgid "Modern"
301
  msgstr ""
302
 
303
  #: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:276
304
+ #: includes/general-hooks.php:655
305
  msgid "Next & Previous Button Link"
306
  msgstr ""
307
 
308
  #: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:277
309
+ #: includes/general-hooks.php:656
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:1798
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:1826
367
  msgid "Label of Related Section"
368
  msgstr ""
369
 
370
  #: admin/includes/metaboxes/metabox-fields-portfolio-related.php:37
371
+ #: includes/general-hooks.php:1827
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:1884
377
  msgid "Related Items Type"
378
  msgstr ""
379
 
380
  #: admin/includes/metaboxes/metabox-fields-portfolio-related.php:52
381
+ #: includes/general-hooks.php:1885
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:2202
387
+ #: includes/general-hooks.php:2906
388
  msgid "Grid"
389
  msgstr ""
390
 
396
  msgstr ""
397
 
398
  #: admin/includes/metaboxes/metabox-fields-portfolio-related.php:71
399
+ #: includes/general-hooks.php:1905 includes/general-hooks.php:2383
400
+ #: includes/general-hooks.php:3078
401
  msgid "Number of Columns"
402
  msgstr ""
403
 
404
  #: admin/includes/metaboxes/metabox-fields-portfolio-related.php:92
405
+ #: includes/general-hooks.php:1925
406
  msgid "Align Center"
407
  msgstr ""
408
 
409
  #: admin/includes/metaboxes/metabox-fields-portfolio-related.php:93
410
+ #: includes/general-hooks.php:1926
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:1943
416
  msgid "Full Width Related Section"
417
  msgstr ""
418
 
419
  #: admin/includes/metaboxes/metabox-fields-portfolio-related.php:113
420
+ #: includes/general-hooks.php:1944
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:1961
426
  msgid "Snap Related Items"
427
  msgstr ""
428
 
429
  #: admin/includes/metaboxes/metabox-fields-portfolio-related.php:133
430
+ #: includes/general-hooks.php:1962
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:1979
436
  msgid "Display Portfolio Categories"
437
  msgstr ""
438
 
439
  #: admin/includes/metaboxes/metabox-fields-portfolio-related.php:153
440
+ #: includes/general-hooks.php:1980
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:2018
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:2019
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:2036
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:2037
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:2043
471
  msgid "Archive page"
472
  msgstr ""
473
 
474
  #: admin/includes/metaboxes/metabox-fields-portfolio-related.php:212
475
+ #: includes/general-hooks.php:2044
476
  msgid "Custom URL"
477
  msgstr ""
478
 
479
  #: admin/includes/metaboxes/metabox-fields-portfolio-related.php:217
480
+ #: includes/general-hooks.php:2062
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:2063
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:2088
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:2089
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:2876
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:411
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:1044
971
+ #: includes/general-hooks.php:1417
972
  msgid "None"
973
  msgstr ""
974
 
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:3292
1301
  msgid "Author"
1302
  msgstr ""
1303
 
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:2357
1435
+ #: includes/general-hooks.php:3054
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:2358
1443
+ #: includes/general-hooks.php:3055
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:1861
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:1874
1455
+ #: includes/general-hooks.php:2236 includes/general-hooks.php:2940
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:1875
1461
+ #: includes/general-hooks.php:2237 includes/general-hooks.php:2941
1462
  msgid "Horizontal 16:9"
1463
  msgstr ""
1464
 
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:2268
1501
+ #: includes/general-hooks.php:2972
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:2273
1509
+ #: includes/general-hooks.php:2976
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:2278
1517
+ #: includes/general-hooks.php:2980
1518
  msgid "Classic with lightbox style 2"
1519
  msgstr ""
1520
 
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:2283
1529
+ #: includes/general-hooks.php:2329 includes/general-hooks.php:2984
1530
+ #: includes/general-hooks.php:3026
1531
  msgid "Overlay title style 1"
1532
  msgstr ""
1533
 
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:2288
1542
+ #: includes/general-hooks.php:2333 includes/general-hooks.php:2988
1543
+ #: includes/general-hooks.php:3030
1544
  msgid "Overlay title style 2"
1545
  msgstr ""
1546
 
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:2293
1555
+ #: includes/general-hooks.php:2337 includes/general-hooks.php:2992
1556
+ #: includes/general-hooks.php:3034
1557
  msgid "Overlay title with lightbox style 1"
1558
  msgstr ""
1559
 
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:2298
1568
+ #: includes/general-hooks.php:2341 includes/general-hooks.php:2996
1569
+ #: includes/general-hooks.php:3038
1570
  msgid "Overlay title with lightbox style 2"
1571
  msgstr ""
1572
 
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:1353
1771
  msgid "Right"
1772
  msgstr ""
1773
 
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:2569
1954
+ #: includes/general-hooks.php:2648
1955
  msgid "Entry Box Border Color"
1956
  msgstr ""
1957
 
2144
  msgid "Different layout types of appearing items."
2145
  msgstr ""
2146
 
2147
+ #: includes/elements/recent-portfolios.php:221 includes/general-hooks.php:2206
2148
+ #: includes/general-hooks.php:2910
2149
  msgid "Masonry"
2150
  msgstr ""
2151
 
2152
+ #: includes/elements/recent-portfolios.php:225 includes/general-hooks.php:2210
2153
+ #: includes/general-hooks.php:2914
2154
  msgid "Tiles"
2155
  msgstr ""
2156
 
2158
  msgid "Post Tile styles"
2159
  msgstr ""
2160
 
2161
+ #: includes/elements/recent-portfolios.php:303 includes/general-hooks.php:1876
2162
+ #: includes/general-hooks.php:2238 includes/general-hooks.php:2942
2163
  msgid "Square 1:1"
2164
  msgstr ""
2165
 
2166
+ #: includes/elements/recent-portfolios.php:304 includes/general-hooks.php:1877
2167
+ #: includes/general-hooks.php:2239 includes/general-hooks.php:2943
2168
  msgid "Vertical 3:4"
2169
  msgstr ""
2170
 
2172
  msgid "Portfolio hover type"
2173
  msgstr ""
2174
 
2175
+ #: includes/elements/recent-portfolios.php:362 includes/general-hooks.php:2536
2176
+ #: includes/general-hooks.php:2620
2177
  msgid "Entry Box Background Color"
2178
  msgstr ""
2179
 
2222
  msgid "Single Portfolio"
2223
  msgstr ""
2224
 
2225
+ #: includes/general-hooks.php:50 includes/general-hooks.php:683
2226
  msgid "Preview a Single Portfolio Page"
2227
  msgstr ""
2228
 
2234
  msgid "Specifies single portfolio template."
2235
  msgstr ""
2236
 
2237
+ #: includes/general-hooks.php:108 includes/general-hooks.php:2411
2238
  msgid "Custom Max Width"
2239
  msgstr ""
2240
 
2241
+ #: includes/general-hooks.php:109 includes/general-hooks.php:2412
2242
  msgid "Specifies the maximum width of website."
2243
  msgstr ""
2244
 
2245
+ #: includes/general-hooks.php:116 includes/general-hooks.php:2419
2246
  msgid "Default Site Max Width"
2247
  msgstr ""
2248
 
2249
+ #: includes/general-hooks.php:117 includes/general-hooks.php:2420
2250
  msgid "1000 Pixels"
2251
  msgstr ""
2252
 
2253
+ #: includes/general-hooks.php:118 includes/general-hooks.php:2421
2254
  msgid "1200 Pixels"
2255
  msgstr ""
2256
 
2257
+ #: includes/general-hooks.php:119 includes/general-hooks.php:2422
2258
  msgid "1400 Pixels"
2259
  msgstr ""
2260
 
2261
+ #: includes/general-hooks.php:120 includes/general-hooks.php:2423
2262
  msgid "1600 Pixels"
2263
  msgstr ""
2264
 
2265
+ #: includes/general-hooks.php:121 includes/general-hooks.php:2424
2266
  msgid "1900 Pixels"
2267
  msgstr ""
2268
 
2302
  msgid "Share Button Icon"
2303
  msgstr ""
2304
 
2305
+ #: includes/general-hooks.php:303 includes/general-hooks.php:456
2306
+ msgid "Icon Color"
2307
+ msgstr ""
2308
+
2309
+ #: includes/general-hooks.php:304 includes/general-hooks.php:457
2310
+ msgid "Like icon color"
2311
+ msgstr ""
2312
+
2313
+ #: includes/general-hooks.php:331 includes/general-hooks.php:484
2314
+ msgid "Icon Hover Color"
2315
+ msgstr ""
2316
+
2317
+ #: includes/general-hooks.php:332 includes/general-hooks.php:485
2318
+ msgid "Like icon hover color"
2319
+ msgstr ""
2320
+
2321
+ #: includes/general-hooks.php:359
2322
  msgid "Share Button Icon Size"
2323
  msgstr ""
2324
 
2325
+ #: includes/general-hooks.php:388
2326
  msgid "Share Button Margin"
2327
  msgstr ""
2328
 
2329
+ #: includes/general-hooks.php:412
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:435
2336
  msgid "Like Icon"
2337
  msgstr ""
2338
 
2339
+ #: includes/general-hooks.php:512
2340
  msgid "Like Button Icon Size"
2341
  msgstr ""
2342
 
2343
+ #: includes/general-hooks.php:541
2344
  msgid "Like Button Margin"
2345
  msgstr ""
2346
 
2347
+ #: includes/general-hooks.php:619
2348
  msgid "Next Portfolio Label"
2349
  msgstr ""
2350
 
2351
+ #: includes/general-hooks.php:620 includes/general-hooks.php:638
2352
  msgid "Specifies the word after next and previous navigation."
2353
  msgstr ""
2354
 
2355
+ #: includes/general-hooks.php:637
2356
  msgid "Previous Portfolio Label"
2357
  msgstr ""
2358
 
2359
+ #: includes/general-hooks.php:682
2360
  msgid "Portfolio Title"
2361
  msgstr ""
2362
 
2363
+ #: includes/general-hooks.php:688
2364
  msgid "Display Title Bar Section"
2365
  msgstr ""
2366
 
2367
+ #: includes/general-hooks.php:689
2368
  msgid "Enable it to show the title section."
2369
  msgstr ""
2370
 
2371
+ #: includes/general-hooks.php:705
2372
  msgid "Layout presets"
2373
  msgstr ""
2374
 
2375
+ #: includes/general-hooks.php:747
2376
  msgid "Title bar with light overlay which is aligned center"
2377
  msgstr ""
2378
 
2379
+ #: includes/general-hooks.php:765
2380
  msgid "Fullscreen title bar with light overlay on background"
2381
  msgstr ""
2382
 
2383
+ #: includes/general-hooks.php:783
2384
  msgid "Fullscreen title bar with dark overlay on background"
2385
  msgstr ""
2386
 
2387
+ #: includes/general-hooks.php:801
2388
  msgid "Fullscreen title bar with border around the title"
2389
  msgstr ""
2390
 
2391
+ #: includes/general-hooks.php:819
2392
  msgid "Fullscreen title bar with dark box around the title"
2393
  msgstr ""
2394
 
2395
+ #: includes/general-hooks.php:837
2396
  msgid "Title aligned left with dark overlay on background"
2397
  msgstr ""
2398
 
2399
+ #: includes/general-hooks.php:855
2400
  msgid "Tile overlaps the title area section and is aligned center"
2401
  msgstr ""
2402
 
2403
+ #: includes/general-hooks.php:876
2404
  msgid "Enable advanced setting"
2405
  msgstr ""
2406
 
2407
+ #: includes/general-hooks.php:877
2408
  msgid "Enable it to customize preset layouts."
2409
  msgstr ""
2410
 
2411
+ #: includes/general-hooks.php:900
2412
  msgid "Content Width"
2413
  msgstr ""
2414
 
2415
+ #: includes/general-hooks.php:920
2416
  msgid "Boxed"
2417
  msgstr ""
2418
 
2419
+ #: includes/general-hooks.php:924
2420
  msgid "Full Width Content with Space on Sides"
2421
  msgstr ""
2422
 
2423
+ #: includes/general-hooks.php:928
2424
  msgid "Full Width Content"
2425
  msgstr ""
2426
 
2427
+ #: includes/general-hooks.php:937
2428
  msgid "Title Section Height"
2429
  msgstr ""
2430
 
2431
+ #: includes/general-hooks.php:964
2432
  msgid "Auto Height"
2433
  msgstr ""
2434
 
2435
+ #: includes/general-hooks.php:965
2436
  msgid "Full Height"
2437
  msgstr ""
2438
 
2439
+ #: includes/general-hooks.php:970
2440
  msgid "Vertical Position"
2441
  msgstr ""
2442
 
2443
+ #: includes/general-hooks.php:971
2444
  msgid "Specifies vertical alignment of title and subtitle."
2445
  msgstr ""
2446
 
2447
+ #: includes/general-hooks.php:972
2448
  msgid ""
2449
  "Note: Parallax feature in not available for \"Bottom Overlap\" vertical "
2450
  "mode."
2451
  msgstr ""
2452
 
2453
+ #: includes/general-hooks.php:998
2454
  msgid "Top"
2455
  msgstr ""
2456
 
2457
+ #: includes/general-hooks.php:999
2458
  msgid "Middle"
2459
  msgstr ""
2460
 
2461
+ #: includes/general-hooks.php:1000
2462
  msgid "Bottom"
2463
  msgstr ""
2464
 
2465
+ #: includes/general-hooks.php:1001
2466
  msgid "Bottom Overlap"
2467
  msgstr ""
2468
 
2469
+ #: includes/general-hooks.php:1006
2470
  msgid "Scroll Down Arrow"
2471
  msgstr ""
2472
 
2473
+ #: includes/general-hooks.php:1007
2474
  msgid "This option only applies if section height is \"Full Height\"."
2475
  msgstr ""
2476
 
2477
+ #: includes/general-hooks.php:1048
2478
  msgid "Round"
2479
  msgstr ""
2480
 
2481
+ #: includes/general-hooks.php:1055
2482
  msgid "Display Titles"
2483
  msgstr ""
2484
 
2485
+ #: includes/general-hooks.php:1056
2486
  msgid "Enable it to display title/subtitle in title section."
2487
  msgstr ""
2488
 
2489
+ #: includes/general-hooks.php:1084
2490
  msgid "Border for Heading"
2491
  msgstr ""
2492
 
2493
+ #: includes/general-hooks.php:1085
2494
  msgid "Enable it to display a border around the title and subtitle area."
2495
  msgstr ""
2496
 
2497
+ #: includes/general-hooks.php:1118
2498
  msgid "Boxed Title"
2499
  msgstr ""
2500
 
2501
+ #: includes/general-hooks.php:1119
2502
  msgid "Enable it to wrap the title and subtitle in a box with background color."
2503
  msgstr ""
2504
 
2505
+ #: includes/general-hooks.php:1152
2506
  msgid "Title Box Custom Color"
2507
  msgstr ""
2508
 
2509
+ #: includes/general-hooks.php:1153
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:1191
2516
  msgid "Display Post Meta"
2517
  msgstr ""
2518
 
2519
+ #: includes/general-hooks.php:1192
2520
  msgid "Enable it to display post meta information on title section."
2521
  msgstr ""
2522
 
2523
+ #: includes/general-hooks.php:1220
2524
  msgid "Display Breadcrumb"
2525
  msgstr ""
2526
 
2527
+ #: includes/general-hooks.php:1221
2528
  msgid "Enable it to display breadcrumb on title section."
2529
  msgstr ""
2530
 
2531
+ #: includes/general-hooks.php:1249
2532
  msgid "Border for Breadcrumb"
2533
  msgstr ""
2534
 
2535
+ #: includes/general-hooks.php:1250
2536
  msgid "Enable it to display border around breadcrumb."
2537
  msgstr ""
2538
 
2539
+ #: includes/general-hooks.php:1283
2540
  msgid "Breadcrumb Separator Icon"
2541
  msgstr ""
2542
 
2543
+ #: includes/general-hooks.php:1317
2544
  msgid "Text Align"
2545
  msgstr ""
2546
 
2547
+ #: includes/general-hooks.php:1360
2548
  msgid "Overlay Color"
2549
  msgstr ""
2550
 
2551
+ #: includes/general-hooks.php:1361
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:1389
2558
  msgid "Overlay Pattern"
2559
  msgstr ""
2560
 
2561
+ #: includes/general-hooks.php:1421
2562
  msgid "Hash"
2563
  msgstr ""
2564
 
2565
+ #: includes/general-hooks.php:1428
2566
  msgid "Overlay Pattern Opacity"
2567
  msgstr ""
2568
 
2569
+ #: includes/general-hooks.php:1464
2570
  msgid "Color Mode"
2571
  msgstr ""
2572
 
2573
+ #: includes/general-hooks.php:1499
2574
  msgid "Enable Title Background"
2575
  msgstr ""
2576
 
2577
+ #: includes/general-hooks.php:1500
2578
  msgid "Enable it to display custom background for title section."
2579
  msgstr ""
2580
 
2581
+ #: includes/general-hooks.php:1528
2582
  msgid "Enable Parallax Effect"
2583
  msgstr ""
2584
 
2585
+ #: includes/general-hooks.php:1529
2586
  msgid "Enable it to have parallax background effect on this section."
2587
  msgstr ""
2588
 
2589
+ #: includes/general-hooks.php:1530
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:1563
2596
  msgid "Background Color"
2597
  msgstr ""
2598
 
2599
+ #: includes/general-hooks.php:1564
2600
  msgid "Specifies a background color for title bar."
2601
  msgstr ""
2602
 
2603
+ #: includes/general-hooks.php:1598
2604
  msgid "Background Size"
2605
  msgstr ""
2606
 
2607
+ #: includes/general-hooks.php:1599
2608
  msgid "Specifies the background size."
2609
  msgstr ""
2610
 
2611
+ #: includes/general-hooks.php:1631
2612
  msgid "Auto"
2613
  msgstr ""
2614
 
2615
+ #: includes/general-hooks.php:1635
2616
  msgid "Contain"
2617
  msgstr ""
2618
 
2619
+ #: includes/general-hooks.php:1639
2620
  msgid "Cover"
2621
  msgstr ""
2622
 
2623
+ #: includes/general-hooks.php:1647
2624
  msgid "Background Image"
2625
  msgstr ""
2626
 
2627
+ #: includes/general-hooks.php:1648
2628
  msgid "Specifies a background image for title bar."
2629
  msgstr ""
2630
 
2631
+ #: includes/general-hooks.php:1682
2632
  msgid "Background Video MP4"
2633
  msgstr ""
2634
 
2635
+ #: includes/general-hooks.php:1683 includes/general-hooks.php:1718
2636
+ #: includes/general-hooks.php:1753
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:1717
2643
  msgid "Background Video Ogg"
2644
  msgstr ""
2645
 
2646
+ #: includes/general-hooks.php:1752
2647
  msgid "Background Video WebM"
2648
  msgstr ""
2649
 
2650
+ #: includes/general-hooks.php:1792
2651
  msgid "Related Portfolios"
2652
  msgstr ""
2653
 
2654
+ #: includes/general-hooks.php:1793
2655
  msgid "Setting for Related Portfolios Section in Single Page"
2656
  msgstr ""
2657
 
2658
+ #: includes/general-hooks.php:1799
2659
  msgid "Enable it to display related portfolios section on single portfolio page."
2660
  msgstr ""
2661
 
2662
+ #: includes/general-hooks.php:1810
2663
  msgid "Title Typography"
2664
  msgstr ""
2665
 
2666
+ #: includes/general-hooks.php:1839
2667
  msgid "Related Projects/Works"
2668
  msgstr ""
2669
 
2670
+ #: includes/general-hooks.php:1844
2671
  msgid "Label Typography"
2672
  msgstr ""
2673
 
2674
+ #: includes/general-hooks.php:1997
2675
  msgid "Category Terms Typography"
2676
  msgstr ""
2677
 
2678
+ #: includes/general-hooks.php:2042
2679
  msgid "Hide it"
2680
  msgstr ""
2681
 
2682
+ #: includes/general-hooks.php:2110
2683
  msgid "Browse All Projects"
2684
  msgstr ""
2685
 
2686
+ #: includes/general-hooks.php:2114
2687
  msgid "Button Typography"
2688
  msgstr ""
2689
 
2690
+ #: includes/general-hooks.php:2135
2691
  msgid "Button Background"
2692
  msgstr ""
2693
 
2694
+ #: includes/general-hooks.php:2161
2695
  msgid "Portfolio Page"
2696
  msgstr ""
2697
 
2698
+ #: includes/general-hooks.php:2162
2699
  msgid "Preview Portfolio Page"
2700
  msgstr ""
2701
 
2702
+ #: includes/general-hooks.php:2167
2703
  msgid "Custom Page For Archive"
2704
  msgstr ""
2705
 
2706
+ #: includes/general-hooks.php:2168
2707
  msgid "Enable this option to select custom page for archive page"
2708
  msgstr ""
2709
 
2710
+ #: includes/general-hooks.php:2177
2711
  msgid "Select Page"
2712
  msgstr ""
2713
 
2714
+ #: includes/general-hooks.php:2193
2715
  msgid "Portfolio Template"
2716
  msgstr ""
2717
 
2718
+ #: includes/general-hooks.php:2194
2719
  msgid "Choose your portfolio template."
2720
  msgstr ""
2721
 
2722
+ #: includes/general-hooks.php:2214 includes/general-hooks.php:2918
2723
  msgid "Land"
2724
  msgstr ""
2725
 
2726
+ #: includes/general-hooks.php:2223 includes/general-hooks.php:2927
2727
  msgid "Image Aspect Ratio"
2728
  msgstr ""
2729
 
2730
+ #: includes/general-hooks.php:2253 includes/general-hooks.php:2957
2731
  msgid "Portfolio Hover Type"
2732
  msgstr ""
2733
 
2734
+ #: includes/general-hooks.php:2254 includes/general-hooks.php:2316
2735
+ #: includes/general-hooks.php:2958 includes/general-hooks.php:3013
2736
  msgid "Hover over images to see the animation."
2737
  msgstr ""
2738
 
2739
+ #: includes/general-hooks.php:2315 includes/general-hooks.php:3012
2740
  msgid "Tile Portfolio Item Type"
2741
  msgstr ""
2742
 
2743
+ #: includes/general-hooks.php:2431 includes/general-hooks.php:3106
2744
  msgid "Number of Columns in Tablet"
2745
  msgstr ""
2746
 
2747
+ #: includes/general-hooks.php:2460 includes/general-hooks.php:3135
2748
  msgid "Number of Columns in Mobile"
2749
  msgstr ""
2750
 
2751
+ #: includes/general-hooks.php:2488 includes/general-hooks.php:3163
2752
  msgid "Display Like Button"
2753
  msgstr ""
2754
 
2755
+ #: includes/general-hooks.php:2489 includes/general-hooks.php:3164
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:2513 includes/general-hooks.php:2602
2762
  msgid "Enable Entry Box Coloring"
2763
  msgstr ""
2764
 
2765
+ #: includes/general-hooks.php:2514 includes/general-hooks.php:2603
2766
  msgid "Specifies the border/background color for entry box."
2767
  msgstr ""
2768
 
2769
+ #: includes/general-hooks.php:2538 includes/general-hooks.php:2622
2770
  msgid "Specifies the background color for entry box."
2771
  msgstr ""
2772
 
2773
+ #: includes/general-hooks.php:2571 includes/general-hooks.php:2650
2774
  msgid "Specifies the border color for entry box."
2775
  msgstr ""
2776
 
2777
+ #: includes/general-hooks.php:2676
2778
  msgid "Portfolio Sidebar Position"
2779
  msgstr ""
2780
 
2781
+ #: includes/general-hooks.php:2677
2782
  msgid "Specifies the position of sidebar on portfolio page."
2783
  msgstr ""
2784
 
2785
+ #: includes/general-hooks.php:2683 includes/general-hooks.php:3197
2786
  msgid "No Sidebar"
2787
  msgstr ""
2788
 
2789
+ #: includes/general-hooks.php:2687 includes/general-hooks.php:3201
2790
  msgid "Right Sidebar"
2791
  msgstr ""
2792
 
2793
+ #: includes/general-hooks.php:2691 includes/general-hooks.php:3205
2794
  msgid "Left Sidebar"
2795
  msgstr ""
2796
 
2797
+ #: includes/general-hooks.php:2695 includes/general-hooks.php:3209
2798
  msgid "Left Left Sidebar"
2799
  msgstr ""
2800
 
2801
+ #: includes/general-hooks.php:2699 includes/general-hooks.php:3213
2802
  msgid "Right Right Sidebar"
2803
  msgstr ""
2804
 
2805
+ #: includes/general-hooks.php:2703 includes/general-hooks.php:3217
2806
  msgid "Left Right Sidebar"
2807
  msgstr ""
2808
 
2809
+ #: includes/general-hooks.php:2707 includes/general-hooks.php:3221
2810
  msgid "Right Left Sidebar"
2811
  msgstr ""
2812
 
2813
+ #: includes/general-hooks.php:2719
2814
  msgid "Portfolio Sidebar Style"
2815
  msgstr ""
2816
 
2817
+ #: includes/general-hooks.php:2720
2818
  msgid "Specifies the style of sidebar on portfolio page."
2819
  msgstr ""
2820
 
2821
+ #: includes/general-hooks.php:2734 includes/general-hooks.php:3244
2822
  msgid "Simple"
2823
  msgstr ""
2824
 
2825
+ #: includes/general-hooks.php:2738 includes/general-hooks.php:3248
2826
  msgid "Bordered Sidebar"
2827
  msgstr ""
2828
 
2829
+ #: includes/general-hooks.php:2742 includes/general-hooks.php:3252
2830
  msgid "Overlap Background"
2831
  msgstr ""
2832
 
2833
+ #: includes/general-hooks.php:2751
2834
  msgid "Number of Portfolios Per Page"
2835
  msgstr ""
2836
 
2837
+ #: includes/general-hooks.php:2752
2838
  msgid "Specifies the number of portfolios items to show on each page."
2839
  msgstr ""
2840
 
2841
+ #: includes/general-hooks.php:2770
2842
  msgid "Display Title Bar?"
2843
  msgstr ""
2844
 
2845
+ #: includes/general-hooks.php:2771
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:2789
2852
  msgid "Display Breadcrumb?"
2853
  msgstr ""
2854
 
2855
+ #: includes/general-hooks.php:2790
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:2812
2862
  msgid "Display Title?"
2863
  msgstr ""
2864
 
2865
+ #: includes/general-hooks.php:2813
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:2835
2872
  msgid "Custom Title"
2873
  msgstr ""
2874
 
2875
+ #: includes/general-hooks.php:2858
2876
  msgid "Custom Breadcrumb Label"
2877
  msgstr ""
2878
 
2879
+ #: includes/general-hooks.php:2885
2880
  msgid "Portfolio Category & tag"
2881
  msgstr ""
2882
 
2883
+ #: includes/general-hooks.php:2886
2884
  msgid "Portfolio Category & tag page Setting"
2885
  msgstr ""
2886
 
2887
+ #: includes/general-hooks.php:2890
2888
  msgid "Taxonomy Page Template"
2889
  msgstr ""
2890
 
2891
+ #: includes/general-hooks.php:3189
2892
  msgid "Taxonomy Page Sidebar Position"
2893
  msgstr ""
2894
 
2895
+ #: includes/general-hooks.php:3230
2896
  msgid "Sidebar Style"
2897
  msgstr ""
2898
 
2899
+ #: includes/general-hooks.php:3231
2900
  msgid "Specifies the style of sidebar on category & tag page."
2901
  msgstr ""
2902
 
2903
+ #: includes/general-hooks.php:3265
2904
  msgid "Portfolio MetaData"
2905
  msgstr ""
2906
 
2907
+ #: includes/general-hooks.php:3266
2908
  msgid "Portfolio MetaData Setting"
2909
  msgstr ""
2910
 
2911
+ #: includes/general-hooks.php:3270
2912
  msgid "Label for Launch Project Button"
2913
  msgstr ""
2914
 
2915
+ #: includes/general-hooks.php:3271
2916
  msgid "Specify a label for launch project button."
2917
  msgstr ""
2918
 
2919
+ #: includes/general-hooks.php:3278
2920
  msgid "Launch Project"
2921
  msgstr ""
2922
 
2923
+ #: includes/general-hooks.php:3282
2924
  msgid "Portfolio MetaDatas"
2925
  msgstr ""
2926
 
2927
+ #: includes/general-hooks.php:3283
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:3289
2934
  msgid "Project URL"
2935
  msgstr ""
2936
 
2937
+ #: includes/general-hooks.php:3290
2938
  msgid "Client"
2939
  msgstr ""
2940
 
2941
+ #: includes/general-hooks.php:3291
2942
  msgid "Release Date"
2943
  msgstr ""
2944
 
2945
+ #: includes/general-hooks.php:3293
2946
  msgid "Custom Field 1"
2947
  msgstr ""
2948
 
2949
+ #: includes/general-hooks.php:3294
2950
  msgid "Custom Field 2"
2951
  msgstr ""
2952
 
2953
+ #: includes/general-hooks.php:3295
2954
  msgid "Custom Field 3"
2955
  msgstr ""
2956
 
2957
+ #: includes/general-hooks.php:3296
2958
  msgid "Custom Field 4"
2959
  msgstr ""
2960
 
2961
+ #: includes/general-hooks.php:3297
2962
  msgid "Custom Field 5"
2963
  msgstr ""
2964
 
2965
+ #: includes/general-hooks.php:3298
2966
  msgid "Custom Field 6"
2967
  msgstr ""
2968
 
2969
+ #: includes/general-hooks.php:3299
2970
  msgid "Custom Field 7"
2971
  msgstr ""
2972
 
2973
+ #: includes/general-hooks.php:3300
2974
  msgid "Custom Field 8"
2975
  msgstr ""
2976
 
2977
+ #: includes/general-hooks.php:3301
2978
  msgid "Custom Field 9"
2979
  msgstr ""
2980
 
2981
+ #: includes/general-hooks.php:3302
2982
  msgid "Custom Field 10"
2983
  msgstr ""
2984
 
2985
+ #: includes/general-hooks.php:3303
2986
  msgid "Custom Field 11"
2987
  msgstr ""
2988
 
2989
+ #: includes/general-hooks.php:3304
2990
  msgid "Custom Field 12"
2991
  msgstr ""
2992
 
2993
+ #: includes/general-hooks.php:3315 includes/general-hooks.php:3316
2994
  msgid "Single Portfolio Appearance"
2995
  msgstr ""
2996
 
2997
+ #: includes/general-hooks.php:3320
2998
  msgid "Content"
2999
  msgstr ""
3000
 
3001
+ #: includes/general-hooks.php:3338
3002
  msgid "Overview Content"
3003
  msgstr ""
3004
 
3005
+ #: includes/general-hooks.php:3347
3006
  msgid "Meta"
3007
  msgstr ""
3008
 
3009
+ #: includes/general-hooks.php:3356
3010
  msgid "Meta Terms"
3011
  msgstr ""
3012
 
3013
+ #: includes/general-hooks.php:3365
3014
  msgid "Launch Button"
3015
  msgstr ""
3016
 
3017
+ #: includes/general-hooks.php:3374
3018
  msgid "Launch Button Background"
3019
  msgstr ""
3020
 
3021
+ #: includes/general-hooks.php:3419
3022
  msgid "Portfolio Options"
3023
  msgstr ""
3024
 
3025
+ #: includes/general-hooks.php:3440
3026
  msgid "Likes"
3027
  msgstr ""
3028
 
3029
+ #: includes/general-hooks.php:3490
3030
  msgid "Share"
3031
  msgstr ""
3032
 
3033
+ #: includes/general-hooks.php:3529 public/includes/templates-post.php:19
3034
  msgid "Related Projects"
3035
  msgstr ""
3036
 
public/assets/js/portfolio.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Auxin portfolio - v1.9.4 (2020-04-11)
2
  * All required plugins
3
  * http://averta.net/phlox/
4
  */
1
+ /*! Auxin portfolio - v1.9.5 (2020-04-26)
2
  * All required plugins
3
  * http://averta.net/phlox/
4
  */