Version Description
Download this release
Release Info
Developer | averta |
Plugin | Premium Portfolio Features for Phlox theme |
Version | 1.9.4 |
Comparing to | |
See all releases |
Code changes from version 1.9.2 to 1.9.4
- README.txt +2 -2
- auxin-portfolio.php +1 -1
- includes/define.php +1 -1
- includes/elements/elementor/class-auxpfo-elementor-elements.php +14 -0
- includes/general-hooks.php +194 -15
- languages/auxin-portfolio.pot +2459 -1020
- public/assets/js/portfolio.js +1 -1
- public/class-auxpfo.php +2 -7
- public/templates/theme-parts/loop-portfolio.php +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.3.
|
10 |
-
Stable tag: 1.9.
|
11 |
License: GPLv3
|
12 |
License URI: http://www.gnu.org/licenses/gpl.html
|
13 |
|
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.3.4
|
10 |
+
Stable tag: 1.9.4
|
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.
|
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.4
|
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.
|
19 |
|
20 |
define( 'AUXPFO_SLUG' , 'auxin-portfolio' );
|
21 |
|
15 |
|
16 |
|
17 |
|
18 |
+
define( 'AUXPFO_VERSION' , '1.9.4' );
|
19 |
|
20 |
define( 'AUXPFO_SLUG' , 'auxin-portfolio' );
|
21 |
|
includes/elements/elementor/class-auxpfo-elementor-elements.php
CHANGED
@@ -138,6 +138,9 @@ final class Elements {
|
|
138 |
// Register Elementor for portfolio post type
|
139 |
add_action( 'auxin_plugin_updated', array( $this, 'aux_add_portfolio_support' ) );
|
140 |
|
|
|
|
|
|
|
141 |
// Register Widget Styles
|
142 |
// add_action( 'elementor/frontend/after_enqueue_styles' , array( $this, 'widget_styles' ) );
|
143 |
|
@@ -243,6 +246,17 @@ final class Elements {
|
|
243 |
// Elementor Custom Style
|
244 |
}
|
245 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
246 |
}
|
247 |
|
248 |
Elements::instance();
|
138 |
// Register Elementor for portfolio post type
|
139 |
add_action( 'auxin_plugin_updated', array( $this, 'aux_add_portfolio_support' ) );
|
140 |
|
141 |
+
// let Elementor pro override single portfolio template
|
142 |
+
add_filter( 'elementor/theme/need_override_location', array( $this, 'aux_elementor_pro_override_templates' ) );
|
143 |
+
|
144 |
// Register Widget Styles
|
145 |
// add_action( 'elementor/frontend/after_enqueue_styles' , array( $this, 'widget_styles' ) );
|
146 |
|
246 |
// Elementor Custom Style
|
247 |
}
|
248 |
|
249 |
+
/**
|
250 |
+
* Override portfolio templates
|
251 |
+
*
|
252 |
+
* Let Elementor Pro override portfolio templates
|
253 |
+
*
|
254 |
+
* @access public
|
255 |
+
*/
|
256 |
+
public function aux_elementor_pro_override_templates( $need_override_location ) {
|
257 |
+
|
258 |
+
return ( ( ( is_single() && get_post_type() == 'portfolio' ) || is_post_type_archive( 'portfolio' ) ) || $need_override_location ) ;
|
259 |
+
}
|
260 |
}
|
261 |
|
262 |
Elements::instance();
|
includes/general-hooks.php
CHANGED
@@ -278,31 +278,176 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
|
|
278 |
'default' => '1',
|
279 |
'type' => 'switch'
|
280 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
|
282 |
-
$options[] =
|
283 |
-
'title' => __('
|
284 |
-
'
|
285 |
-
'id' => 'show_portfolio_single_like',
|
286 |
'section' => 'portfolio-section-single',
|
287 |
-
'dependency' => '',
|
288 |
'transport' => 'postMessage',
|
|
|
289 |
'dependency' => array(
|
290 |
array(
|
291 |
'id' => 'show_portfolio_single_share_like_section',
|
292 |
-
'value' => '1'
|
293 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
294 |
),
|
295 |
-
'
|
296 |
-
|
297 |
-
|
298 |
-
'render_callback' => function(){
|
299 |
-
auxpfo_get_template_part( 'theme-parts/entry/single', 'portfolio');
|
300 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
),
|
302 |
-
'default' => '1',
|
303 |
-
'type' => 'switch'
|
304 |
);
|
305 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
306 |
$options[] = array(
|
307 |
'title' => __('Skin for Next & Previous Links', 'auxin-portfolio'),
|
308 |
'description' => __('Specifies the skin for next and previous navigation block.', 'auxin-portfolio'),
|
@@ -1906,6 +2051,31 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
|
|
1906 |
'preview_link' => auxin_get_post_type_archive_shortlink('portfolio')
|
1907 |
);
|
1908 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1909 |
|
1910 |
$options[] = array(
|
1911 |
'title' => __('Portfolio Template', 'auxin-portfolio'),
|
@@ -3181,6 +3351,12 @@ if ( auxin_is_plugin_active( 'wp-ulike/wp-ulike.php' ) ) {
|
|
3181 |
|
3182 |
// Portfolio single ------------------------------------------------------------
|
3183 |
|
|
|
|
|
|
|
|
|
|
|
|
|
3184 |
/**
|
3185 |
* Adding share and like buttons to single portfolio actions section
|
3186 |
*
|
@@ -3189,13 +3365,16 @@ if ( auxin_is_plugin_active( 'wp-ulike/wp-ulike.php' ) ) {
|
|
3189 |
function auxpfo_add_single_portfolio_actions( $show_like_btn, $show_share_btn ){
|
3190 |
|
3191 |
if( function_exists( 'wp_ulike' ) && $show_like_btn ){
|
|
|
3192 |
wp_ulike( 'get', array( 'style' => 'wpulike-heart', 'button_type' => 'image', 'wrapper_class' => 'aux-wpulike aux-wpulike-portfolio' ) );
|
|
|
3193 |
}
|
3194 |
if( $show_share_btn ) {
|
3195 |
?>
|
|
|
3196 |
<div class="aux-single-portfolio-share">
|
3197 |
<div class="aux-tooltip-socials aux-tooltip-dark aux-socials aux-icon-left aux-medium">
|
3198 |
-
<span class="aux-icon
|
3199 |
<span class="aux-text"><?php _e( 'Share', 'auxin-portfolio' ); ?></span>
|
3200 |
</div>
|
3201 |
</div>
|
278 |
'default' => '1',
|
279 |
'type' => 'switch'
|
280 |
);
|
281 |
+
$options[] = array(
|
282 |
+
'title' => __( 'Share Button Icon', 'auxin-portfolio' ),
|
283 |
+
'id' => 'portfolio_single_share_button_icon',
|
284 |
+
'section' => 'portfolio-section-single',
|
285 |
+
'transport' => 'refresh',
|
286 |
+
'type' => 'icon',
|
287 |
+
'default' => 'auxicon-share',
|
288 |
+
'dependency' => array(
|
289 |
+
array(
|
290 |
+
'id' => 'show_portfolio_single_share_like_section',
|
291 |
+
'value' => array('1'),
|
292 |
+
'operator'=> ''
|
293 |
+
),
|
294 |
+
array(
|
295 |
+
'id' => 'show_portfolio_single_share',
|
296 |
+
'value' => array('1'),
|
297 |
+
'operator'=> ''
|
298 |
+
)
|
299 |
+
)
|
300 |
+
);
|
301 |
|
302 |
+
$options[] = array(
|
303 |
+
'title' => __( 'Share Button Icon Size', 'auxin-portfolio' ),
|
304 |
+
'id' => 'portfolio_single_share_button_icon_size',
|
|
|
305 |
'section' => 'portfolio-section-single',
|
|
|
306 |
'transport' => 'postMessage',
|
307 |
+
'type' => 'text',
|
308 |
'dependency' => array(
|
309 |
array(
|
310 |
'id' => 'show_portfolio_single_share_like_section',
|
311 |
+
'value' => array('1'),
|
312 |
+
'operator'=> ''
|
313 |
+
),
|
314 |
+
array(
|
315 |
+
'id' => 'show_portfolio_single_share',
|
316 |
+
'value' => array('1'),
|
317 |
+
'operator'=> ''
|
318 |
+
)
|
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;
|
326 |
+
}
|
327 |
+
return $value ? ".single-portfolio .aux-single-portfolio-share span::before { font-size:{$value}px; }" : '';
|
328 |
+
}
|
329 |
+
);
|
330 |
+
|
331 |
+
$options[] = array(
|
332 |
+
'title' => __( 'Share Button Margin', 'auxin-portfolio' ),
|
333 |
+
'id' => 'portfolio_single_share_button_margin',
|
334 |
+
'section' => 'portfolio-section-single',
|
335 |
+
'type' => 'responsive_dimensions',
|
336 |
+
'selectors' => '.single-portfolio .aux-single-portfolio-share',
|
337 |
+
'transport' => 'postMessage',
|
338 |
+
'placeholder' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}',
|
339 |
+
'dependency' => array(
|
340 |
+
array(
|
341 |
+
'id' => 'show_portfolio_single_share_like_section',
|
342 |
+
'value' => array('1'),
|
343 |
+
'operator'=> ''
|
344 |
+
),
|
345 |
+
array(
|
346 |
+
'id' => 'show_portfolio_single_share',
|
347 |
+
'value' => array('1'),
|
348 |
+
'operator'=> ''
|
349 |
+
)
|
350 |
),
|
|
|
|
|
351 |
);
|
352 |
|
353 |
+
if ( class_exists( 'wp_ulike' ) ) {
|
354 |
+
$options[] = array(
|
355 |
+
'title' => __('Display like button', 'auxin-portfolio'),
|
356 |
+
'description' => __( 'Enable it to display the like button. Please note that you should have "ulike" plugin installed for this feature.'),
|
357 |
+
'id' => 'show_portfolio_single_like',
|
358 |
+
'section' => 'portfolio-section-single',
|
359 |
+
'dependency' => '',
|
360 |
+
'transport' => 'postMessage',
|
361 |
+
'dependency' => array(
|
362 |
+
array(
|
363 |
+
'id' => 'show_portfolio_single_share_like_section',
|
364 |
+
'value' => '1'
|
365 |
+
)
|
366 |
+
),
|
367 |
+
'partial' => array(
|
368 |
+
'selector' => '.single-portfolio .aux-single .content',
|
369 |
+
'container_inclusive' => false,
|
370 |
+
'render_callback' => function(){
|
371 |
+
auxpfo_get_template_part( 'theme-parts/entry/single', 'portfolio');
|
372 |
+
}
|
373 |
+
),
|
374 |
+
'default' => '1',
|
375 |
+
'type' => 'switch'
|
376 |
+
);
|
377 |
+
|
378 |
+
$options[] = array(
|
379 |
+
'title' => __( 'Like Icon', 'auxin-portfolio' ),
|
380 |
+
'id' => 'portfolio_single_like_icon',
|
381 |
+
'section' => 'portfolio-section-single',
|
382 |
+
'transport' => 'refresh',
|
383 |
+
'type' => 'icon',
|
384 |
+
'default' => 'auxicon-heart-2',
|
385 |
+
'dependency' => array(
|
386 |
+
array(
|
387 |
+
'id' => 'show_portfolio_single_share_like_section',
|
388 |
+
'value' => array('1'),
|
389 |
+
'operator'=> ''
|
390 |
+
),
|
391 |
+
array(
|
392 |
+
'id' => 'show_portfolio_single_like',
|
393 |
+
'value' => array('1'),
|
394 |
+
'operator'=> ''
|
395 |
+
)
|
396 |
+
)
|
397 |
+
);
|
398 |
+
|
399 |
+
$options[] = array(
|
400 |
+
'title' => __( 'Like Button Icon Size', 'auxin-portfolio' ),
|
401 |
+
'id' => 'portfolio_single_like_icon_size',
|
402 |
+
'section' => 'portfolio-section-single',
|
403 |
+
'transport' => 'postMessage',
|
404 |
+
'type' => 'text',
|
405 |
+
'dependency' => array(
|
406 |
+
array(
|
407 |
+
'id' => 'show_portfolio_single_share_like_section',
|
408 |
+
'value' => array('1'),
|
409 |
+
'operator'=> ''
|
410 |
+
),
|
411 |
+
array(
|
412 |
+
'id' => 'show_portfolio_single_like',
|
413 |
+
'value' => array('1'),
|
414 |
+
'operator'=> ''
|
415 |
+
)
|
416 |
+
),
|
417 |
+
'style_callback' => function( $value = null ){
|
418 |
+
if( ! $value ){
|
419 |
+
$value = esc_attr( auxin_get_option( 'portfolio_single_like_icon_size' ) );
|
420 |
+
}
|
421 |
+
if( ! is_numeric( $value ) ){
|
422 |
+
$value = 10;
|
423 |
+
}
|
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',
|
431 |
+
'section' => 'portfolio-section-single',
|
432 |
+
'type' => 'responsive_dimensions',
|
433 |
+
'selectors' => '.single-portfolio .wp_ulike_general_class button',
|
434 |
+
'transport' => 'postMessage',
|
435 |
+
'placeholder' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}',
|
436 |
+
'dependency' => array(
|
437 |
+
array(
|
438 |
+
'id' => 'show_portfolio_single_share_like_section',
|
439 |
+
'value' => array('1'),
|
440 |
+
'operator'=> ''
|
441 |
+
),
|
442 |
+
array(
|
443 |
+
'id' => 'show_portfolio_single_like',
|
444 |
+
'value' => array('1'),
|
445 |
+
'operator'=> ''
|
446 |
+
)
|
447 |
+
),
|
448 |
+
);
|
449 |
+
}
|
450 |
+
|
451 |
$options[] = array(
|
452 |
'title' => __('Skin for Next & Previous Links', 'auxin-portfolio'),
|
453 |
'description' => __('Specifies the skin for next and previous navigation block.', 'auxin-portfolio'),
|
2051 |
'preview_link' => auxin_get_post_type_archive_shortlink('portfolio')
|
2052 |
);
|
2053 |
|
2054 |
+
$options[] = array(
|
2055 |
+
'title' => __( 'Custom Page For Archive', 'auxin-portfolio' ),
|
2056 |
+
'description' => __( 'Enable this option to select custom page for archive page', 'auxin-portfolio' ),
|
2057 |
+
'id' => 'portfolio_show_custom_archive_link',
|
2058 |
+
'section' => 'portfolio-section-archive',
|
2059 |
+
'transport' => 'postMessage',
|
2060 |
+
'type' => 'switch',
|
2061 |
+
'default' => '0'
|
2062 |
+
);
|
2063 |
+
|
2064 |
+
$options[] = array(
|
2065 |
+
'title' => __( 'Select Page', 'auxin-portfolio' ),
|
2066 |
+
'id' => 'portfolio_custom_archive_link',
|
2067 |
+
'section' => 'portfolio-section-archive',
|
2068 |
+
'dependency' => array(
|
2069 |
+
array(
|
2070 |
+
'id' => 'portfolio_show_custom_archive_link',
|
2071 |
+
'value' => '1',
|
2072 |
+
'operator'=> '=='
|
2073 |
+
)
|
2074 |
+
),
|
2075 |
+
'type' => 'select',
|
2076 |
+
'choices' => auxin_list_pages(),
|
2077 |
+
'transport' => 'postMessage'
|
2078 |
+
);
|
2079 |
|
2080 |
$options[] = array(
|
2081 |
'title' => __('Portfolio Template', 'auxin-portfolio'),
|
3351 |
|
3352 |
// Portfolio single ------------------------------------------------------------
|
3353 |
|
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 |
/**
|
3361 |
* Adding share and like buttons to single portfolio actions section
|
3362 |
*
|
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 |
}
|
3372 |
if( $show_share_btn ) {
|
3373 |
?>
|
3374 |
+
<?php $share_icon = auxin_get_option( 'portfolio_single_share_button_icon', 'auxicon-share' ) ; ?>
|
3375 |
<div class="aux-single-portfolio-share">
|
3376 |
<div class="aux-tooltip-socials aux-tooltip-dark aux-socials aux-icon-left aux-medium">
|
3377 |
+
<span class="aux-icon <?php echo esc_attr( $share_icon );?>"></span>
|
3378 |
<span class="aux-text"><?php _e( 'Share', 'auxin-portfolio' ); ?></span>
|
3379 |
</div>
|
3380 |
</div>
|
languages/auxin-portfolio.pot
CHANGED
@@ -1,1697 +1,3136 @@
|
|
1 |
-
# Copyright (
|
2 |
-
#, fuzzy
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version:
|
6 |
-
"Report-Msgid-Bugs-To: http://
|
7 |
-
"POT-Creation-Date:
|
8 |
-
"PO-Revision-Date: 2015-05-21 20:55+0330\n"
|
9 |
-
"Last-Translator: FULL NAME <email@example.com>\n"
|
10 |
-
"Language-Team: LANGUAGE <info@averta.net >\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
-
"Content-Type: text/plain; charset=
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"
|
15 |
-
"
|
16 |
-
"
|
17 |
-
"
|
18 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
|
19 |
"X-Poedit-SourceCharset: UTF-8\n"
|
|
|
|
|
|
|
|
|
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
|
|
|
|
|
|
21 |
|
22 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
23 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:17
|
24 |
msgid "Portfolio Information"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
28 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:29
|
29 |
msgid "Featured Image (Secondary)"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
33 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:30
|
34 |
msgid "Specifies the secondary cover image for this portfolio."
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
38 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:36
|
39 |
msgid "Hide featured image."
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
43 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:37
|
44 |
msgid ""
|
45 |
"Enable this option to remove the featured image from single page of this "
|
46 |
"portfolio. Useful when you intent to display images that vary from the "
|
47 |
"featured image."
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
51 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:44
|
52 |
msgid "Overview"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
56 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:45
|
57 |
msgid "Specifies a short description about the project."
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
61 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
msgid "Info Layout"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
66 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:53
|
67 |
msgid ""
|
68 |
"Specifies the alignment of metadata column. (Default: \"right\" for LTR "
|
69 |
"websites and \"left\" for RTL ones)"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
73 |
-
#:
|
74 |
-
|
75 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:131
|
76 |
-
msgid "Default"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
80 |
-
#:
|
81 |
-
|
82 |
-
#: build/auxin-portfolio/includes/general-hooks.php:62
|
83 |
-
#: includes/elements/recent-portfolios.php:380 includes/general-hooks.php:52
|
84 |
-
msgid "Right"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
88 |
-
#:
|
89 |
-
|
90 |
-
#: build/auxin-portfolio/includes/general-hooks.php:66
|
91 |
-
#: includes/elements/recent-portfolios.php:372 includes/general-hooks.php:56
|
92 |
-
msgid "Left"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
96 |
-
#:
|
97 |
-
|
98 |
-
#: includes/general-hooks.php:60
|
99 |
-
msgid "Bottom"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
103 |
-
#:
|
104 |
-
|
105 |
-
#: includes/general-hooks.php:183
|
106 |
-
msgid "Display Next & Previous portfolios"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
110 |
-
#:
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
119 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
120 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
121 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
122 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-
|
123 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
124 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
125 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
126 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
127 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
128 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
129 |
-
#:
|
130 |
-
#:
|
131 |
-
#:
|
132 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:197
|
133 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-related.php:29
|
134 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-related.php:64
|
135 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-related.php:84
|
136 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-related.php:105
|
137 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-related.php:125
|
138 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-related.php:145
|
139 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-related.php:165
|
140 |
msgid "Theme Default"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
144 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
145 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
146 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
147 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-
|
148 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
149 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
150 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
151 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
152 |
-
#:
|
153 |
-
#:
|
154 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:185
|
155 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:198
|
156 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-related.php:30
|
157 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-related.php:106
|
158 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-related.php:126
|
159 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-related.php:146
|
160 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-related.php:166
|
161 |
msgid "Yes"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
165 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
166 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
167 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
168 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-
|
169 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
170 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
171 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
172 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
173 |
-
#:
|
174 |
-
#:
|
175 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:186
|
176 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:199
|
177 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-related.php:31
|
178 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-related.php:107
|
179 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-related.php:127
|
180 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-related.php:147
|
181 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-related.php:167
|
182 |
msgid "No"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
186 |
-
|
187 |
-
|
188 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
189 |
msgid "Skin for Next & Previous Links"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
193 |
-
#:
|
194 |
-
#: build/auxin-portfolio/includes/general-hooks.php:206
|
195 |
-
#: includes/general-hooks.php:196
|
196 |
msgid "Specifies the skin for next and previous navigation block."
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
200 |
-
#:
|
201 |
-
|
202 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
203 |
msgid "Minimal (default)"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
207 |
-
#:
|
208 |
-
#: build/auxin-portfolio/includes/general-hooks.php:223
|
209 |
-
#: includes/general-hooks.php:213
|
210 |
msgid "Thumbnail with Arrow"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
214 |
-
#:
|
215 |
-
#: build/auxin-portfolio/includes/general-hooks.php:227
|
216 |
-
#: includes/general-hooks.php:217
|
217 |
msgid "Thumbnail without Arrow"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
221 |
-
#:
|
222 |
-
#: build/auxin-portfolio/includes/general-hooks.php:231
|
223 |
-
#: includes/general-hooks.php:221
|
224 |
msgid "Navigation with Light Background"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
228 |
-
#:
|
229 |
-
#: build/auxin-portfolio/includes/general-hooks.php:235
|
230 |
-
#: includes/general-hooks.php:225
|
231 |
msgid "Navigation with Dark Background"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
235 |
-
#:
|
236 |
-
#: build/auxin-portfolio/includes/general-hooks.php:239
|
237 |
-
#: includes/general-hooks.php:229
|
238 |
msgid "Sticky Thumbnail with Arrow"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
242 |
-
#:
|
243 |
-
|
244 |
-
#: includes/general-hooks.php:70
|
245 |
-
msgid "Sticky Side Area"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
249 |
-
#:
|
250 |
-
msgid "
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
254 |
-
#:
|
255 |
-
|
256 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
257 |
msgid "Display Single Portfolio Categories"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
261 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:179
|
262 |
msgid "Specifies whether to display catetory section or not."
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
266 |
-
#:
|
267 |
-
#: build/auxin-portfolio/includes/general-hooks.php:259
|
268 |
-
#: includes/general-hooks.php:249
|
269 |
msgid "Display Single Portfolio Tags"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
273 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:192
|
274 |
msgid "Specifies whether to display tag section or not."
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
278 |
-
|
279 |
-
msgid "Lunch Project Button"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:
|
283 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:205
|
284 |
msgid ""
|
285 |
"Specifies an URL for action button in order to lunch the project's webpage. "
|
286 |
"Leave it empty if you don`t need Lunch Project Button."
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
290 |
-
#: build/auxin-portfolio/admin/includes/metaboxes/metabox-fields-portfolio-related.php:17
|
291 |
msgid "Related Portfolio"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
295 |
-
#:
|
296 |
-
#: build/auxin-portfolio/includes/general-hooks.php:281
|
297 |
-
#: includes/general-hooks.php:271
|
298 |
msgid "Display Related Portfolios"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
302 |
-
|
303 |
-
msgid ""
|
304 |
-
"Enable it to display related porfolios section on single portfolio page."
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
308 |
-
#:
|
309 |
-
#: build/auxin-portfolio/includes/general-hooks.php:293
|
310 |
-
#: includes/general-hooks.php:283
|
311 |
msgid "Label of Related Section"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
315 |
-
#:
|
316 |
-
#: build/auxin-portfolio/includes/general-hooks.php:294
|
317 |
-
#: includes/general-hooks.php:284
|
318 |
msgid "Specifies the label of related items section."
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
322 |
-
#:
|
323 |
-
#: build/auxin-portfolio/includes/general-hooks.php:311
|
324 |
-
#: includes/general-hooks.php:301
|
325 |
msgid "Related Items Type"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
329 |
-
#:
|
330 |
-
#: build/auxin-portfolio/includes/general-hooks.php:312
|
331 |
-
#: includes/general-hooks.php:302
|
332 |
msgid "Specifies the appearance type for related portfolio element."
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
336 |
-
#:
|
337 |
-
#:
|
338 |
-
#: build/auxin-portfolio/includes/general-hooks.php:454
|
339 |
-
#: build/auxin-portfolio/includes/general-hooks.php:753
|
340 |
-
#: includes/elements/recent-portfolios.php:207 includes/general-hooks.php:444
|
341 |
-
#: includes/general-hooks.php:743
|
342 |
msgid "Grid"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
346 |
-
#:
|
|
|
|
|
347 |
msgid "Carousel"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
351 |
-
#:
|
352 |
-
#:
|
353 |
-
#: build/auxin-portfolio/includes/general-hooks.php:566
|
354 |
-
#: build/auxin-portfolio/includes/general-hooks.php:863
|
355 |
-
#: includes/general-hooks.php:322 includes/general-hooks.php:556
|
356 |
-
#: includes/general-hooks.php:853
|
357 |
msgid "Number of Columns"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
361 |
-
#:
|
362 |
-
#: build/auxin-portfolio/includes/general-hooks.php:352
|
363 |
-
#: includes/general-hooks.php:342
|
364 |
msgid "Align Center"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
368 |
-
#:
|
369 |
-
#: build/auxin-portfolio/includes/general-hooks.php:353
|
370 |
-
#: includes/general-hooks.php:343
|
371 |
msgid "Enable it to make related portfolios section text center."
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
375 |
-
#:
|
376 |
-
#: build/auxin-portfolio/includes/general-hooks.php:370
|
377 |
-
#: includes/general-hooks.php:360
|
378 |
msgid "Full Width Related Section"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
382 |
-
#:
|
383 |
-
#: build/auxin-portfolio/includes/general-hooks.php:371
|
384 |
-
#: includes/general-hooks.php:361
|
385 |
msgid "Enable it to make related portfolios section full width."
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
389 |
-
#:
|
390 |
-
#: build/auxin-portfolio/includes/general-hooks.php:388
|
391 |
-
#: includes/general-hooks.php:378
|
392 |
msgid "Snap Related Items"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
396 |
-
#:
|
397 |
-
#: build/auxin-portfolio/includes/general-hooks.php:389
|
398 |
-
#: includes/general-hooks.php:379
|
399 |
msgid "Enable it to remove space between related portfolio items."
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
403 |
-
#:
|
404 |
-
#: build/auxin-portfolio/includes/general-hooks.php:406
|
405 |
-
#: includes/general-hooks.php:396
|
406 |
msgid "Display Portfolio Categories"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:
|
410 |
-
#:
|
411 |
-
#: build/auxin-portfolio/includes/general-hooks.php:407
|
412 |
-
#: includes/general-hooks.php:397
|
413 |
msgid ""
|
414 |
"Enable it to display the categories of each portfolio item in related "
|
415 |
"portfolios section."
|
416 |
msgstr ""
|
417 |
|
418 |
-
#:
|
419 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
420 |
msgstr ""
|
421 |
|
422 |
-
#:
|
423 |
-
|
424 |
msgid ""
|
425 |
-
"
|
426 |
-
"
|
|
|
427 |
msgstr ""
|
428 |
|
429 |
-
#:
|
430 |
-
|
|
|
431 |
msgstr ""
|
432 |
|
433 |
-
#:
|
434 |
-
|
|
|
435 |
msgstr ""
|
436 |
|
437 |
-
#:
|
438 |
-
|
|
|
439 |
msgstr ""
|
440 |
|
441 |
-
#:
|
442 |
-
|
|
|
443 |
msgstr ""
|
444 |
|
445 |
-
#:
|
446 |
-
|
447 |
-
msgid "
|
448 |
msgstr ""
|
449 |
|
450 |
-
#:
|
451 |
-
#:
|
452 |
-
|
453 |
-
#: includes/general-hooks.php:29
|
454 |
-
msgid "Portfolio"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#:
|
458 |
-
|
459 |
-
|
460 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
461 |
msgstr ""
|
462 |
|
463 |
-
#:
|
464 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
465 |
msgid "Add New"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#:
|
469 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:52
|
470 |
msgid "All Portfolios"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#:
|
474 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:53
|
475 |
msgid "Add New Portfolio"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#:
|
479 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:54
|
480 |
msgid "Edit Portfolio"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#:
|
484 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:55
|
485 |
msgid "New Portfolio"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#:
|
489 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:56
|
490 |
msgid "View Portfolio"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#:
|
494 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:57
|
495 |
msgid "Search Portfolios"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#:
|
499 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:58
|
500 |
msgid "Parent Portfolio"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#:
|
504 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:59
|
505 |
msgid "No Portfolios found"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#:
|
509 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:60
|
510 |
msgid "No Portfolios found in Trash"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#:
|
514 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:65
|
515 |
msgid "Here you can add new portfolio to your website."
|
516 |
msgstr ""
|
517 |
|
518 |
-
#:
|
519 |
-
#:
|
520 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:99
|
521 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:118
|
522 |
msgid "Portfolio Categories"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#:
|
526 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:100
|
527 |
msgid "Portfolio Category"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#:
|
531 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:101
|
532 |
msgid "All Portfolio Categories"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#:
|
536 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:102
|
537 |
msgid "Parent Portfolio Category"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#:
|
541 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:103
|
542 |
msgid "Parent Portfolio Category:"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#:
|
546 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:104
|
547 |
msgid "Edit Portfolio Category"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#:
|
551 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:105
|
552 |
msgid "Update Portfolio Category"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#:
|
556 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:106
|
557 |
msgid "Add New Portfolio Category"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#:
|
561 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:107
|
562 |
msgid "New Portfolio Category"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#:
|
566 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:108
|
567 |
msgid "Search in Portfolio Categories"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#:
|
571 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:
|
572 |
-
|
573 |
-
msgid "Categories"
|
574 |
-
msgstr ""
|
575 |
-
|
576 |
-
#: build/auxin-portfolio/includes/classes/class-auxpfo-post-type-portfolio.php:135
|
577 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:130
|
578 |
-
msgctxt "taxonomy slug"
|
579 |
-
msgid "portfolio-cat"
|
580 |
-
msgstr ""
|
581 |
-
|
582 |
-
#: build/auxin-portfolio/includes/classes/class-auxpfo-post-type-portfolio.php:147
|
583 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:142
|
584 |
-
msgid "Portfolio Tags / Filters"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#:
|
588 |
-
|
589 |
-
msgid "Portfolio Tag/Filter"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#:
|
593 |
-
|
594 |
-
msgid "Search in Portfolio Tags/filters"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#:
|
598 |
-
|
599 |
-
msgid "Popular Tags/filters"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#:
|
603 |
-
|
604 |
-
msgid "All Portfolio Tags/filters"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#:
|
608 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:147
|
609 |
msgid "Parent Portfolio Tag"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#:
|
613 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:148
|
614 |
msgid "Parent Portfolio Tag:"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#:
|
618 |
-
|
619 |
-
msgid "Edit Portfolio Tag/Filter"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#:
|
623 |
-
|
624 |
-
msgid "Update Portfolio Tag/Filter"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#:
|
628 |
-
|
629 |
-
msgid "Add new Portfolio Tag/Filter"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#:
|
633 |
-
|
634 |
-
msgid "New Portfolio Tag/Filter"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#:
|
638 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:154
|
639 |
msgid "Separate tags with commas"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#:
|
643 |
-
|
644 |
-
msgid "Add or remove Tag/Filter"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#:
|
648 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:156
|
649 |
msgid "Choose from the most used tags"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#:
|
653 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:
|
654 |
-
|
655 |
-
msgid "Tags ( Filters )"
|
656 |
-
msgstr ""
|
657 |
-
|
658 |
-
#: build/auxin-portfolio/includes/classes/class-auxpfo-post-type-portfolio.php:171
|
659 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:166
|
660 |
-
msgid "Portfolio Tags/Filters"
|
661 |
-
msgstr ""
|
662 |
-
|
663 |
-
#: build/auxin-portfolio/includes/classes/class-auxpfo-post-type-portfolio.php:183
|
664 |
-
#: includes/classes/class-auxpfo-post-type-portfolio.php:178
|
665 |
-
msgctxt "taxonomy slug"
|
666 |
-
msgid "portfolio-tag"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: build/auxin-portfolio/includes/classes/class-auxpfo-post-type-portfolio.php:203
|
670 |
#: includes/classes/class-auxpfo-post-type-portfolio.php:198
|
671 |
-
|
672 |
-
msgid "Image"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: build/auxin-portfolio/includes/classes/class-auxpfo-post-type-portfolio.php:204
|
676 |
#: includes/classes/class-auxpfo-post-type-portfolio.php:199
|
677 |
-
|
678 |
-
msgid "Title"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: build/auxin-portfolio/includes/classes/class-auxpfo-post-type-portfolio.php:205
|
682 |
#: includes/classes/class-auxpfo-post-type-portfolio.php:200
|
683 |
-
|
684 |
-
msgid "Category / Type"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: build/auxin-portfolio/includes/classes/class-auxpfo-post-type-portfolio.php:206
|
688 |
#: includes/classes/class-auxpfo-post-type-portfolio.php:201
|
689 |
-
|
690 |
-
msgid "Tag / Filter"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: build/auxin-portfolio/includes/classes/class-auxpfo-post-type-portfolio.php:207
|
694 |
#: includes/classes/class-auxpfo-post-type-portfolio.php:202
|
695 |
-
|
696 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
697 |
msgstr ""
|
698 |
|
699 |
-
#:
|
700 |
-
|
|
|
|
|
|
|
701 |
msgid ""
|
702 |
"This is an image that is chosen as the representative/cover image for your "
|
703 |
"project."
|
704 |
msgstr ""
|
705 |
|
706 |
-
#:
|
707 |
-
|
|
|
|
|
|
|
|
|
708 |
msgid "All Categories"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#:
|
712 |
-
#: includes/elements/recent-portfolios.php:
|
713 |
-
|
|
|
|
|
|
|
|
|
714 |
msgstr ""
|
715 |
|
716 |
-
#:
|
717 |
-
#: includes/elements/recent-portfolios.php:
|
718 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
719 |
msgstr ""
|
720 |
|
721 |
-
#:
|
722 |
-
|
723 |
-
#: includes/elements/recent-portfolios.php:48
|
724 |
-
#: includes/elements/recent-portfolios.php:145
|
725 |
-
msgid "Title"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#:
|
729 |
-
|
730 |
-
msgid "Recent items title, leave it empty if you don`t need title."
|
731 |
msgstr ""
|
732 |
|
733 |
-
#:
|
734 |
-
|
735 |
-
#: includes/elements/recent-portfolios.php:63
|
736 |
-
#: includes/elements/recent-portfolios.php:353
|
737 |
-
msgid "Categories"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#:
|
741 |
-
#: includes/elements/recent-portfolios.php:
|
742 |
-
|
|
|
|
|
|
|
|
|
743 |
msgstr ""
|
744 |
|
745 |
-
#:
|
746 |
-
#: includes/elements/recent-portfolios.php:
|
747 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
748 |
msgstr ""
|
749 |
|
750 |
-
#:
|
751 |
-
#: includes/elements/recent-portfolios.php:
|
752 |
-
|
|
|
|
|
|
|
|
|
753 |
msgstr ""
|
754 |
|
755 |
-
#:
|
756 |
-
#: includes/elements/recent-portfolios.php:
|
757 |
-
|
|
|
|
|
|
|
|
|
758 |
msgstr ""
|
759 |
|
760 |
-
#:
|
761 |
-
#: includes/elements/recent-portfolios.php:
|
762 |
-
|
763 |
-
"
|
764 |
-
"here. You have to insert the post IDs that are separated by comma (eg. "
|
765 |
-
"53,34,87,25)."
|
766 |
msgstr ""
|
767 |
|
768 |
-
#:
|
769 |
-
#: includes/elements/recent-portfolios.php:
|
770 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
771 |
msgstr ""
|
772 |
|
773 |
-
#:
|
774 |
-
#: includes/elements/recent-portfolios.php:
|
775 |
-
|
776 |
-
|
777 |
-
"here. You have to insert the Post IDs that are separated by comma (eg. "
|
778 |
-
"53,34,87,25)"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#:
|
782 |
-
#: includes/elements/recent-portfolios.php:
|
783 |
-
|
|
|
784 |
msgstr ""
|
785 |
|
786 |
-
#:
|
787 |
-
#: includes/elements/recent-portfolios.php:
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
792 |
msgstr ""
|
793 |
|
794 |
-
#:
|
795 |
-
|
796 |
-
|
|
|
797 |
msgstr ""
|
798 |
|
799 |
-
#:
|
800 |
-
|
801 |
-
msgid "Date"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#:
|
805 |
-
|
806 |
-
msgid "Menu Order"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#:
|
810 |
-
|
811 |
-
msgid "ID"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#:
|
815 |
-
|
816 |
-
msgid "Random"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#:
|
820 |
-
|
821 |
-
msgid "Comments"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#:
|
825 |
-
|
826 |
-
msgid "Date Modified"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#:
|
830 |
-
|
831 |
-
#: includes/elements/recent-portfolios.php:150 includes/general-hooks.php:1073
|
832 |
-
msgid "Author"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#:
|
836 |
-
|
837 |
-
msgid "Inserted Post IDs"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#:
|
841 |
-
|
842 |
-
msgid "Order"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#:
|
846 |
-
|
847 |
-
msgid "Descending"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#:
|
851 |
-
|
852 |
-
msgid "Ascending"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#:
|
856 |
-
|
857 |
-
msgid "Start offset"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#:
|
861 |
-
|
862 |
-
msgid "Number of post to displace or pass over."
|
863 |
msgstr ""
|
864 |
|
865 |
-
#:
|
866 |
-
|
867 |
-
msgid "Layout"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#:
|
871 |
-
|
872 |
-
msgid "Different layout types of appearing items."
|
873 |
msgstr ""
|
874 |
|
875 |
-
#:
|
876 |
-
|
877 |
-
#: build/auxin-portfolio/includes/general-hooks.php:757
|
878 |
-
#: includes/elements/recent-portfolios.php:211 includes/general-hooks.php:448
|
879 |
-
#: includes/general-hooks.php:747
|
880 |
-
msgid "Masonry"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#:
|
884 |
-
|
885 |
-
#: build/auxin-portfolio/includes/general-hooks.php:761
|
886 |
-
#: includes/elements/recent-portfolios.php:215 includes/general-hooks.php:452
|
887 |
-
#: includes/general-hooks.php:751
|
888 |
-
msgid "Tiles"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#:
|
892 |
-
|
893 |
-
msgid "Image aspect ratio"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#:
|
897 |
-
|
898 |
-
#: build/auxin-portfolio/includes/general-hooks.php:787
|
899 |
-
#: includes/elements/recent-portfolios.php:235 includes/general-hooks.php:478
|
900 |
-
#: includes/general-hooks.php:777
|
901 |
-
msgid "Horizontal 4:3"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#:
|
905 |
-
|
906 |
-
#: build/auxin-portfolio/includes/general-hooks.php:788
|
907 |
-
#: includes/elements/recent-portfolios.php:236 includes/general-hooks.php:479
|
908 |
-
#: includes/general-hooks.php:778
|
909 |
-
msgid "Horizontal 16:9"
|
910 |
msgstr ""
|
911 |
|
912 |
-
#:
|
913 |
-
|
914 |
-
#: build/auxin-portfolio/includes/general-hooks.php:789
|
915 |
-
#: includes/elements/recent-portfolios.php:237 includes/general-hooks.php:480
|
916 |
-
#: includes/general-hooks.php:779
|
917 |
-
msgid "Square 1:1"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#:
|
921 |
-
|
922 |
-
#: build/auxin-portfolio/includes/general-hooks.php:790
|
923 |
-
#: includes/elements/recent-portfolios.php:238 includes/general-hooks.php:481
|
924 |
-
#: includes/general-hooks.php:780
|
925 |
-
msgid "Vertical 3:4"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#:
|
929 |
-
|
930 |
-
msgid "Exclude portfolios without media"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#:
|
934 |
-
|
935 |
-
msgid "Portfolio hover type"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#:
|
939 |
-
|
940 |
-
#: build/auxin-portfolio/includes/general-hooks.php:810
|
941 |
-
#: includes/elements/recent-portfolios.php:278 includes/general-hooks.php:501
|
942 |
-
#: includes/general-hooks.php:800
|
943 |
-
msgid "Classic"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#:
|
947 |
-
|
948 |
-
#: build/auxin-portfolio/includes/general-hooks.php:811
|
949 |
-
#: includes/elements/recent-portfolios.php:279 includes/general-hooks.php:502
|
950 |
-
#: includes/general-hooks.php:801
|
951 |
-
msgid "Classic with lightbox style 1"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#:
|
955 |
-
|
956 |
-
#: build/auxin-portfolio/includes/general-hooks.php:812
|
957 |
-
#: includes/elements/recent-portfolios.php:280 includes/general-hooks.php:503
|
958 |
-
#: includes/general-hooks.php:802
|
959 |
-
msgid "Classic with lightbox style 2"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#:
|
963 |
-
|
964 |
-
#: build/auxin-portfolio/includes/general-hooks.php:514
|
965 |
-
#: build/auxin-portfolio/includes/general-hooks.php:537
|
966 |
-
#: build/auxin-portfolio/includes/general-hooks.php:813
|
967 |
-
#: build/auxin-portfolio/includes/general-hooks.php:836
|
968 |
-
#: includes/elements/recent-portfolios.php:281
|
969 |
-
#: includes/elements/recent-portfolios.php:302 includes/general-hooks.php:504
|
970 |
-
#: includes/general-hooks.php:527 includes/general-hooks.php:803
|
971 |
-
#: includes/general-hooks.php:826
|
972 |
-
msgid "Overlay title style 1"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#:
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
#: build/auxin-portfolio/includes/general-hooks.php:814
|
980 |
-
#: build/auxin-portfolio/includes/general-hooks.php:837
|
981 |
-
#: includes/elements/recent-portfolios.php:282
|
982 |
-
#: includes/elements/recent-portfolios.php:303 includes/general-hooks.php:505
|
983 |
-
#: includes/general-hooks.php:528 includes/general-hooks.php:804
|
984 |
-
#: includes/general-hooks.php:827
|
985 |
-
msgid "Overlay title style 2"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#:
|
989 |
-
|
990 |
-
#: build/auxin-portfolio/includes/general-hooks.php:516
|
991 |
-
#: build/auxin-portfolio/includes/general-hooks.php:539
|
992 |
-
#: build/auxin-portfolio/includes/general-hooks.php:815
|
993 |
-
#: build/auxin-portfolio/includes/general-hooks.php:838
|
994 |
-
#: includes/elements/recent-portfolios.php:283
|
995 |
-
#: includes/elements/recent-portfolios.php:304 includes/general-hooks.php:506
|
996 |
-
#: includes/general-hooks.php:529 includes/general-hooks.php:805
|
997 |
-
#: includes/general-hooks.php:828
|
998 |
-
msgid "Overlay title with lightbox style 1"
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#:
|
1002 |
-
|
1003 |
-
#: build/auxin-portfolio/includes/general-hooks.php:517
|
1004 |
-
#: build/auxin-portfolio/includes/general-hooks.php:540
|
1005 |
-
#: build/auxin-portfolio/includes/general-hooks.php:816
|
1006 |
-
#: build/auxin-portfolio/includes/general-hooks.php:839
|
1007 |
-
#: includes/elements/recent-portfolios.php:284
|
1008 |
-
#: includes/elements/recent-portfolios.php:305 includes/general-hooks.php:507
|
1009 |
-
#: includes/general-hooks.php:530 includes/general-hooks.php:806
|
1010 |
-
#: includes/general-hooks.php:829
|
1011 |
-
msgid "Overlay title with lightbox style 2"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#:
|
1015 |
-
|
1016 |
-
msgid "Portfolio item type"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#:
|
1020 |
-
|
1021 |
-
msgid "Insert portfolio title"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#:
|
1025 |
-
|
1026 |
-
msgid "Insert portfolio meta"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#:
|
1030 |
-
|
1031 |
-
msgid "Show filters"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#:
|
1035 |
-
|
1036 |
-
msgid "Filter by"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#:
|
1040 |
-
|
1041 |
-
msgid "Filter by categories or tags"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#:
|
1045 |
-
|
1046 |
-
msgid "Tags"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#:
|
1050 |
-
|
1051 |
-
msgid "Filter Control Alignment"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#:
|
1055 |
-
|
1056 |
-
msgid "Center"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#:
|
1060 |
-
|
1061 |
-
msgid "Filter button style"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#:
|
1065 |
-
|
1066 |
-
msgid "Style of filter buttons."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#:
|
1070 |
-
|
1071 |
-
msgid "Slide up"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#:
|
1075 |
-
|
1076 |
-
|
|
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#:
|
1080 |
-
|
1081 |
-
msgid "Cube"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#:
|
1085 |
-
|
1086 |
-
msgid "Underline"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#:
|
1090 |
-
|
1091 |
-
msgid "Float frame"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#:
|
1095 |
-
|
1096 |
-
msgid "Borderd"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#:
|
1100 |
-
|
1101 |
-
msgid "Float underline"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#:
|
1105 |
-
|
1106 |
-
msgid "Display like button"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#:
|
1110 |
-
|
1111 |
-
#, php-format
|
1112 |
-
msgid ""
|
1113 |
-
"Enable it to display %s like button%s on gride template blog. Please note WP "
|
1114 |
-
"Ulike plugin needs to be activaited to use this option."
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#:
|
1118 |
-
|
1119 |
-
msgid "Deeplink"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#:
|
1123 |
-
|
1124 |
-
msgid ""
|
1125 |
-
"Enables the deeplink feature, it updates URL based on page and filter status."
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#:
|
1129 |
-
|
1130 |
-
|
|
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#:
|
1134 |
-
|
1135 |
-
msgid "Specifies the deeplink slug value in address bar."
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#:
|
1139 |
-
|
1140 |
-
msgid "Paginate"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#:
|
1144 |
-
|
1145 |
-
msgid "Paginates the portfolio items"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#:
|
1149 |
-
|
1150 |
-
msgid "Items number perpage"
|
1151 |
msgstr ""
|
1152 |
|
1153 |
-
#:
|
1154 |
-
|
1155 |
-
#: build/auxin-portfolio/includes/general-hooks.php:846
|
1156 |
-
#: includes/elements/recent-portfolios.php:494 includes/general-hooks.php:537
|
1157 |
-
#: includes/general-hooks.php:836
|
1158 |
-
msgid "Space"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#:
|
1162 |
-
|
1163 |
-
#: build/auxin-portfolio/includes/general-hooks.php:847
|
1164 |
-
#: includes/elements/recent-portfolios.php:495 includes/general-hooks.php:538
|
1165 |
-
#: includes/general-hooks.php:837
|
1166 |
-
msgid "Specifies space between items in pixels."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#:
|
1170 |
-
|
1171 |
-
msgid "Number of columns"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#:
|
1175 |
-
|
1176 |
-
msgid "Number of columns in tablet size"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#:
|
1180 |
-
|
1181 |
-
|
|
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#:
|
1185 |
-
|
1186 |
-
msgid "Extra class name"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#:
|
1190 |
-
|
1191 |
-
msgid ""
|
1192 |
-
"If you wish to style particular content element differently, then use this "
|
1193 |
-
"field to add a class name and then refer to it in your css file."
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#:
|
1197 |
-
|
1198 |
-
msgid "all"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#:
|
1202 |
-
|
1203 |
-
msgid "Portfolio Setting"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#:
|
1207 |
-
|
1208 |
-
msgid "Single Portfolio"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#:
|
1212 |
-
|
1213 |
-
msgid "Single Portfolio Setting"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#:
|
1217 |
-
|
1218 |
-
msgid "Single Portfolio Style"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#:
|
1222 |
-
|
1223 |
-
#: includes/general-hooks.php:46 includes/general-hooks.php:88
|
1224 |
-
msgid "Specifies position of sidebar on single portfolio."
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#:
|
1228 |
-
|
1229 |
-
msgid "Enable it to stick the side area on page while scrolling.."
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#:
|
1233 |
-
|
1234 |
-
msgid "Single portfolio Sidebar Position"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#:
|
1238 |
-
#:
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
msgid "No Sidebar"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#:
|
1246 |
-
|
1247 |
-
#: build/auxin-portfolio/includes/general-hooks.php:965
|
1248 |
-
#: includes/general-hooks.php:99 includes/general-hooks.php:649
|
1249 |
-
#: includes/general-hooks.php:955
|
1250 |
-
msgid "Right Sidebar"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#:
|
1254 |
-
|
1255 |
-
#: build/auxin-portfolio/includes/general-hooks.php:969
|
1256 |
-
#: includes/general-hooks.php:103 includes/general-hooks.php:653
|
1257 |
-
#: includes/general-hooks.php:959
|
1258 |
-
msgid "Left Sidebar"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#:
|
1262 |
-
|
1263 |
-
#: build/auxin-portfolio/includes/general-hooks.php:973
|
1264 |
-
#: includes/general-hooks.php:107 includes/general-hooks.php:657
|
1265 |
-
#: includes/general-hooks.php:963
|
1266 |
-
msgid "Left Left Sidebar"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#:
|
1270 |
-
|
1271 |
-
#: build/auxin-portfolio/includes/general-hooks.php:977
|
1272 |
-
#: includes/general-hooks.php:111 includes/general-hooks.php:661
|
1273 |
-
#: includes/general-hooks.php:967
|
1274 |
-
msgid "Right Right Sidebar"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#:
|
1278 |
-
|
1279 |
-
#: build/auxin-portfolio/includes/general-hooks.php:981
|
1280 |
-
#: includes/general-hooks.php:115 includes/general-hooks.php:665
|
1281 |
-
#: includes/general-hooks.php:971
|
1282 |
-
msgid "Left Right Sidebar"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#:
|
1286 |
-
|
1287 |
-
#: build/auxin-portfolio/includes/general-hooks.php:985
|
1288 |
-
#: includes/general-hooks.php:119 includes/general-hooks.php:669
|
1289 |
-
#: includes/general-hooks.php:975
|
1290 |
-
msgid "Right Left Sidebar"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#:
|
1294 |
-
|
1295 |
-
msgid "Single portfolio Sidebar Style"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#:
|
1299 |
-
|
1300 |
-
#: build/auxin-portfolio/includes/general-hooks.php:1008
|
1301 |
-
#: includes/general-hooks.php:143 includes/general-hooks.php:696
|
1302 |
-
#: includes/general-hooks.php:998
|
1303 |
-
msgid "Simple"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#:
|
1307 |
-
|
1308 |
-
#: build/auxin-portfolio/includes/general-hooks.php:1012
|
1309 |
-
#: includes/general-hooks.php:147 includes/general-hooks.php:700
|
1310 |
-
#: includes/general-hooks.php:1002
|
1311 |
-
msgid "Bordered Sidebar"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#:
|
1315 |
-
|
1316 |
-
#: build/auxin-portfolio/includes/general-hooks.php:1016
|
1317 |
-
#: includes/general-hooks.php:151 includes/general-hooks.php:704
|
1318 |
-
#: includes/general-hooks.php:1006
|
1319 |
-
msgid "Overlap Background"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#:
|
1323 |
-
|
1324 |
-
msgid "Enable it to display category section in single portfolio."
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#:
|
1328 |
-
|
1329 |
-
msgid "Enable it to display Tag section in single portfolio."
|
1330 |
msgstr ""
|
1331 |
|
1332 |
-
#:
|
1333 |
-
|
1334 |
-
msgid "Related Portfolios"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#:
|
1338 |
-
|
1339 |
-
msgid "Setting for Related Portfolios Section in Single Page"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#:
|
1343 |
-
|
1344 |
-
msgid ""
|
1345 |
-
"Enable it to display related portfolios section on single portfolio page."
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#:
|
1349 |
-
|
1350 |
-
msgid "Related Projects/Works"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#:
|
1354 |
-
|
1355 |
-
msgid "Portfolio Page"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#:
|
1359 |
-
|
1360 |
-
msgid "Setting for portfolio Archive Page"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#:
|
1364 |
-
#: includes/general-hooks.php:435
|
1365 |
msgid "Portfolio Template"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#:
|
1369 |
-
#: includes/general-hooks.php:436
|
1370 |
msgid "Choose your portfolio template."
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#:
|
1374 |
-
#: build/auxin-portfolio/includes/general-hooks.php:765
|
1375 |
-
#: includes/general-hooks.php:456 includes/general-hooks.php:755
|
1376 |
msgid "Land"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#:
|
1380 |
-
#: build/auxin-portfolio/includes/general-hooks.php:774
|
1381 |
-
#: includes/general-hooks.php:465 includes/general-hooks.php:764
|
1382 |
msgid "Image Aspect Ratio"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#:
|
1386 |
-
#: build/auxin-portfolio/includes/general-hooks.php:797
|
1387 |
-
#: includes/general-hooks.php:488 includes/general-hooks.php:787
|
1388 |
msgid "Portfolio Hover Type"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#:
|
1392 |
-
#:
|
1393 |
-
|
1394 |
-
#: build/auxin-portfolio/includes/general-hooks.php:824
|
1395 |
-
#: includes/general-hooks.php:489 includes/general-hooks.php:515
|
1396 |
-
#: includes/general-hooks.php:788 includes/general-hooks.php:814
|
1397 |
-
msgid "Specifies the portfolio item type."
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#:
|
1401 |
-
#: build/auxin-portfolio/includes/general-hooks.php:823
|
1402 |
-
#: includes/general-hooks.php:514 includes/general-hooks.php:813
|
1403 |
msgid "Tile Portfolio Item Type"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#:
|
1407 |
-
#: build/auxin-portfolio/includes/general-hooks.php:884
|
1408 |
-
#: includes/general-hooks.php:577 includes/general-hooks.php:874
|
1409 |
msgid "Number of Columns in Tablet"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#:
|
1413 |
-
#: build/auxin-portfolio/includes/general-hooks.php:906
|
1414 |
-
#: includes/general-hooks.php:599 includes/general-hooks.php:896
|
1415 |
msgid "Number of Columns in Mobile"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#:
|
1419 |
-
#: build/auxin-portfolio/includes/general-hooks.php:927
|
1420 |
-
#: includes/general-hooks.php:620 includes/general-hooks.php:917
|
1421 |
msgid "Display Like Button"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#:
|
1425 |
-
#: build/auxin-portfolio/includes/general-hooks.php:928
|
1426 |
-
#: includes/general-hooks.php:621 includes/general-hooks.php:918
|
1427 |
-
#, php-format
|
1428 |
msgid ""
|
1429 |
"Enable it to display %s like button%s on portfolio portfolios. Please note "
|
1430 |
"WP Ulike plugin needs to be activaited to use this option."
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#:
|
1434 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1435 |
msgid "Portfolio Sidebar Position"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#:
|
1439 |
-
#: includes/general-hooks.php:639
|
1440 |
msgid "Specifies the position of sidebar on portfolio page."
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#:
|
1444 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1445 |
msgid "Portfolio Sidebar Style"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#:
|
1449 |
-
#: includes/general-hooks.php:682
|
1450 |
msgid "Specifies the style of sidebar on portfolio page."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#:
|
1454 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1455 |
msgid "Number of Portfolios Per Page"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#:
|
1459 |
-
#: includes/general-hooks.php:714
|
1460 |
msgid "Specifies the number of portfolios items to show on each page."
|
1461 |
msgstr ""
|
1462 |
|
1463 |
-
#:
|
1464 |
-
|
1465 |
-
msgid "Portfolio Category & tag"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#:
|
1469 |
-
|
1470 |
-
|
|
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#:
|
1474 |
-
|
1475 |
-
msgid "Taxonomy Page Template"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#:
|
1479 |
-
|
1480 |
-
|
|
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#:
|
1484 |
-
|
1485 |
-
msgid "Sidebar Style"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#:
|
1489 |
-
|
1490 |
-
|
|
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#:
|
1494 |
-
|
1495 |
-
msgid "Taxonomy content length"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#:
|
1499 |
-
|
1500 |
-
|
1501 |
-
|
1502 |
-
|
1503 |
-
"
|
|
|
|
|
|
|
|
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#:
|
1507 |
-
|
1508 |
-
msgid "Full text"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#:
|
1512 |
-
|
1513 |
-
msgid "Summary"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#:
|
1517 |
-
|
1518 |
-
msgid "Summery length"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#:
|
1522 |
-
|
1523 |
-
msgid "Specifies summary character length on category & tag page."
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#:
|
1527 |
-
#: includes/general-hooks.php:1058
|
1528 |
msgid "Portfolio MetaData"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#:
|
1532 |
-
#: includes/general-hooks.php:1059
|
1533 |
msgid "Portfolio MetaData Setting"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#:
|
1537 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1538 |
msgid "Portfolio MetaDatas"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#:
|
1542 |
-
#: includes/general-hooks.php:1064
|
1543 |
msgid ""
|
1544 |
"Specify the number of fields and the label of each one for portfolio "
|
1545 |
"metadatas"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#:
|
1549 |
-
#: includes/general-hooks.php:1070
|
1550 |
msgid "Project URL"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#:
|
1554 |
-
#: includes/general-hooks.php:1071
|
1555 |
msgid "Client"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#:
|
1559 |
-
#: includes/general-hooks.php:1072
|
1560 |
msgid "Release Date"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#:
|
1564 |
-
#: includes/general-hooks.php:1074
|
1565 |
msgid "Custom Field 1"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#:
|
1569 |
-
#: includes/general-hooks.php:1075
|
1570 |
msgid "Custom Field 2"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#:
|
1574 |
-
#: includes/general-hooks.php:1076
|
1575 |
msgid "Custom Field 3"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#:
|
1579 |
-
#: includes/general-hooks.php:1077
|
1580 |
msgid "Custom Field 4"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#:
|
1584 |
-
#: includes/general-hooks.php:1078
|
1585 |
msgid "Custom Field 5"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#:
|
1589 |
-
#: includes/general-hooks.php:1079
|
1590 |
msgid "Custom Field 6"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#:
|
1594 |
-
#: includes/general-hooks.php:1080
|
1595 |
msgid "Custom Field 7"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#:
|
1599 |
-
#: includes/general-hooks.php:1081
|
1600 |
msgid "Custom Field 8"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#:
|
1604 |
-
#: includes/general-hooks.php:1082
|
1605 |
msgid "Custom Field 9"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#:
|
1609 |
-
#: includes/general-hooks.php:1083
|
1610 |
msgid "Custom Field 10"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#:
|
1614 |
-
#: includes/general-hooks.php:1084
|
1615 |
msgid "Custom Field 11"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#:
|
1619 |
-
#: includes/general-hooks.php:1085
|
1620 |
msgid "Custom Field 12"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#:
|
1624 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1625 |
msgid "Portfolio Options"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#:
|
1629 |
-
|
1630 |
-
|
|
|
|
|
|
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#:
|
1634 |
-
#: build/auxin-portfolio/public/templates/single-portfolio.php:80
|
1635 |
-
#: public/includes/templates-post.php:184
|
1636 |
-
#: public/templates/single-portfolio.php:75
|
1637 |
msgid "Related Projects"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#:
|
1641 |
-
|
1642 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1643 |
msgstr ""
|
1644 |
|
1645 |
-
#:
|
1646 |
-
|
1647 |
-
msgid "Next Portfolio"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#:
|
1651 |
-
#:
|
1652 |
-
#:
|
1653 |
-
#:
|
1654 |
-
#:
|
1655 |
-
#:
|
1656 |
-
#: public/templates/theme-parts/entry/portfolio-column-overlay.php:48
|
1657 |
-
#: public/templates/theme-parts/entry/portfolio-column.php:57
|
1658 |
-
#: public/templates/theme-parts/entry/portfolio-land.php:82
|
1659 |
-
#: public/templates/theme-parts/entry/portfolio.php:32
|
1660 |
-
#: public/templates/theme-parts/entry/single-portfolio.php:105
|
1661 |
-
#: public/templates/theme-parts/entry/single-portfolio.php:117
|
1662 |
msgid "View all posts in "
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#:
|
1666 |
-
#:
|
1667 |
-
#: build/auxin-portfolio/public/templates/theme-parts/entry/portfolio-land.php:88
|
1668 |
-
#: build/auxin-portfolio/public/templates/theme-parts/entry/portfolio-land.php:90
|
1669 |
-
#: build/auxin-portfolio/public/templates/theme-parts/entry/portfolio.php:37
|
1670 |
-
#: public/templates/theme-parts/entry/portfolio-column.php:63
|
1671 |
-
#: public/templates/theme-parts/entry/portfolio-column.php:65
|
1672 |
-
#: public/templates/theme-parts/entry/portfolio-land.php:88
|
1673 |
-
#: public/templates/theme-parts/entry/portfolio-land.php:90
|
1674 |
-
#: public/templates/theme-parts/entry/portfolio.php:37
|
1675 |
msgid "Edit"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#:
|
1679 |
-
|
1680 |
-
|
|
|
|
|
|
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#:
|
1684 |
-
|
1685 |
-
msgid "Lunch Project"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
#:
|
1689 |
-
#:
|
1690 |
-
#: public/templates/theme-parts/loop-portfolio.php:58
|
1691 |
-
#: public/templates/theme-parts/tax-portfolio.php:60
|
1692 |
msgid "To enable this feature, please install \"Auxin Portfolio\" plugin."
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1696 |
msgid "Portfolios"
|
1697 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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"
|
10 |
+
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
11 |
+
"Last-Translator: Averta <info@averta.net>\n"
|
12 |
+
"Language-Team: Averta <info@averta.net>\n"
|
13 |
+
"Language: en\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
+
"X-Poedit-Country: United States\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Poedit-KeywordsList: "
|
18 |
+
"__;_e;__ngettext:1,2;__ngettext_noop:1,2;_n:1,2;_x:1,2c;_nx:4c,1,2;_nx_"
|
19 |
+
"noop:4c,1,2;_ex:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_"
|
20 |
+
"html_e;esc_attr_ex:1,2c;esc_html_x\n"
|
21 |
+
"X-Poedit-Basepath: ../\n"
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
+
"X-Poedit-Bookmarks: \n"
|
24 |
+
"X-Textdomain-Support: yes\n"
|
25 |
+
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
26 |
|
27 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:17
|
|
|
28 |
msgid "Portfolio Information"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:29
|
|
|
32 |
msgid "Featured Image (Secondary)"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:30
|
|
|
36 |
msgid "Specifies the secondary cover image for this portfolio."
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:36
|
|
|
40 |
msgid "Hide featured image."
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:37
|
|
|
44 |
msgid ""
|
45 |
"Enable this option to remove the featured image from single page of this "
|
46 |
"portfolio. Useful when you intent to display images that vary from the "
|
47 |
"featured image."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:44
|
|
|
51 |
msgid "Overview"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:45
|
|
|
55 |
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 |
+
|
63 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:53
|
64 |
+
msgid "Specifies an optional title for project overview."
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:60
|
68 |
+
#: includes/general-hooks.php:128
|
69 |
+
msgid "Overview Alignment"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:61
|
73 |
+
#: includes/general-hooks.php:129
|
74 |
+
msgid "Specifies alignment for the project overview and corresponding information."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:67
|
78 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:90
|
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 |
+
|
86 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:71
|
87 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:410
|
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 |
+
|
95 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:75
|
96 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:414
|
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 |
+
|
104 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:82
|
105 |
msgid "Info Layout"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:83
|
|
|
109 |
msgid ""
|
110 |
"Specifies the alignment of metadata column. (Default: \"right\" for LTR "
|
111 |
"websites and \"left\" for RTL ones)"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:94
|
115 |
+
#: includes/general-hooks.php:63
|
116 |
+
msgid "Info on Right"
|
|
|
|
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:98
|
120 |
+
#: includes/general-hooks.php:67
|
121 |
+
msgid "Info on Left"
|
|
|
|
|
|
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:102
|
125 |
+
#: includes/general-hooks.php:71
|
126 |
+
msgid "Info on Top"
|
|
|
|
|
|
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:106
|
130 |
+
#: includes/general-hooks.php:75
|
131 |
+
msgid "Info on Top - Direction reverse"
|
|
|
|
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:110
|
135 |
+
#: includes/general-hooks.php:79
|
136 |
+
msgid "Info on Top - Metadata Below"
|
|
|
|
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:114
|
140 |
+
#: includes/general-hooks.php:83
|
141 |
+
msgid "Info on Bottom"
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:118
|
145 |
+
#: includes/general-hooks.php:87
|
146 |
+
msgid "Info on Bottom - Direction reverse"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:122
|
150 |
+
#: includes/general-hooks.php:91
|
151 |
+
msgid "Info on Bottom - Metadata Below"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:129
|
155 |
+
#: includes/general-hooks.php:203
|
156 |
+
msgid "Sticky Side Area"
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:130
|
160 |
+
msgid "Enable it to stick the side area on page while scrolling."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:135
|
164 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:212
|
165 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:302
|
166 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:315
|
167 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:335
|
168 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:29
|
169 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:64
|
170 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:84
|
171 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:105
|
172 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:125
|
173 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:145
|
174 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:165
|
175 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:185
|
176 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:210
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
msgid "Theme Default"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:136
|
181 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:213
|
182 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:303
|
183 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:316
|
184 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:336
|
185 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:30
|
186 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:106
|
187 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:126
|
188 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:146
|
189 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:166
|
190 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:186
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
191 |
msgid "Yes"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:137
|
195 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:214
|
196 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:304
|
197 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:317
|
198 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:337
|
199 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:31
|
200 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:107
|
201 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:127
|
202 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:147
|
203 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:167
|
204 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:187
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
msgid "No"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:148
|
209 |
+
msgid "Info Box Background Color"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:149
|
213 |
+
msgid "Specifies the color of info box."
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:161
|
217 |
+
msgid "Info Box Font Color"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:162
|
221 |
+
msgid "Specifies the color of font at info box."
|
222 |
+
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 |
+
|
236 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:205
|
237 |
+
#: includes/general-hooks.php:229
|
238 |
+
msgid "Display Next & Previous portfolios"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:206
|
242 |
+
#: includes/general-hooks.php:230
|
243 |
+
msgid ""
|
244 |
+
"Enable it to display links to next and previous portfolios on single "
|
245 |
+
"portfolio page."
|
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"
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:296
|
316 |
+
#: includes/general-hooks.php:149
|
317 |
+
msgid "Display Portfolio Meta Info"
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:297
|
321 |
+
msgid "Enable this option to display extra inormation about this portfolio."
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:309
|
325 |
+
#: includes/general-hooks.php:167
|
326 |
msgid "Display Single Portfolio Categories"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:310
|
|
|
330 |
msgid "Specifies whether to display catetory section or not."
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:329
|
334 |
+
#: includes/general-hooks.php:185
|
|
|
|
|
335 |
msgid "Display Single Portfolio Tags"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:330
|
|
|
339 |
msgid "Specifies whether to display tag section or not."
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:349
|
343 |
+
msgid "URL for Launch Button"
|
|
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-metadata.php:350
|
|
|
347 |
msgid ""
|
348 |
"Specifies an URL for action button in order to lunch the project's webpage. "
|
349 |
"Leave it empty if you don`t need Lunch Project Button."
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:17
|
|
|
353 |
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 |
|
361 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:23
|
362 |
+
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 |
|
391 |
+
#: admin/includes/metaboxes/metabox-fields-portfolio-related.php:66
|
392 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:270
|
393 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:887
|
394 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:247
|
395 |
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 "
|
466 |
+
"portfolio archive page or a custom page, or hide the button."
|
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 |
|
499 |
+
#: auxin-portfolio.php:54
|
500 |
+
msgid "Phlox Core Elements"
|
501 |
+
msgstr ""
|
502 |
+
|
503 |
+
#: auxin-portfolio.php:65
|
504 |
+
msgid "Phlox Pro"
|
505 |
+
msgstr ""
|
506 |
+
|
507 |
+
#: auxin-portfolio.php:73
|
508 |
+
msgid "Phlox"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#. Plugin Name of the plugin/theme
|
512 |
+
msgid "Phlox Portfolio"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: includes/classes/class-auxin-plugin-requirements.php:74
|
516 |
+
msgid "%s plugin has been disabled automatically due to following reason:"
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: includes/classes/class-auxin-plugin-requirements.php:97
|
520 |
+
msgid "Note for admin"
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: includes/classes/class-auxin-plugin-requirements.php:223
|
524 |
+
msgid ""
|
525 |
+
"%s plugin is required in order to use this plugin. Please install and "
|
526 |
+
"activate the plugin."
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: includes/classes/class-auxin-plugin-requirements.php:224
|
530 |
+
#: includes/classes/class-auxin-plugin-requirements.php:330
|
531 |
+
#: includes/classes/class-auxin-plugin-requirements.php:355
|
532 |
+
msgid "How to upgrade"
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: includes/classes/class-auxin-plugin-requirements.php:244
|
536 |
+
msgid ""
|
537 |
+
"The plugin requires %s plugin version %s or higher (current version is %s). "
|
538 |
+
"Please update it to the latest version."
|
539 |
+
msgstr ""
|
540 |
+
|
541 |
+
#: includes/classes/class-auxin-plugin-requirements.php:329
|
542 |
+
msgid ""
|
543 |
+
"%s theme requires %s plugin version %s or higher in order to function "
|
544 |
+
"property. Your current plugin version is %s, please update it to latest "
|
545 |
+
"version."
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: includes/classes/class-auxin-plugin-requirements.php:354
|
549 |
+
msgid ""
|
550 |
+
"The plugin requires %s theme version %s or higher in order to function "
|
551 |
+
"property. Your current theme version is %s, please %s update to latest "
|
552 |
+
"version %s."
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: includes/classes/class-auxin-plugin-requirements.php:366
|
556 |
+
msgid "%s path while checking the availability of theme not found."
|
557 |
+
msgstr ""
|
558 |
+
|
559 |
+
#: includes/classes/class-auxin-plugin-requirements.php:371
|
560 |
+
msgid "%s function callback while checking the availability of theme not found."
|
561 |
+
msgstr ""
|
562 |
+
|
563 |
+
#: includes/classes/class-auxin-plugin-requirements.php:408
|
564 |
+
msgid ""
|
565 |
+
"PHP version %s or above is required for this plugin while your the current "
|
566 |
+
"PHP version is %s."
|
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 |
+
|
574 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:55
|
575 |
msgid "Add New"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:56
|
|
|
579 |
msgid "All Portfolios"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:57
|
|
|
583 |
msgid "Add New Portfolio"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:58
|
|
|
587 |
msgid "Edit Portfolio"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:59
|
|
|
591 |
msgid "New Portfolio"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:60
|
|
|
595 |
msgid "View Portfolio"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:61
|
|
|
599 |
msgid "Search Portfolios"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:62
|
|
|
603 |
msgid "Parent Portfolio"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:63
|
|
|
607 |
msgid "No Portfolios found"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:64
|
|
|
611 |
msgid "No Portfolios found in Trash"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:69
|
|
|
615 |
msgid "Here you can add new portfolio to your website."
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:103
|
619 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:123
|
|
|
|
|
620 |
msgid "Portfolio Categories"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:104
|
|
|
624 |
msgid "Portfolio Category"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:105
|
|
|
628 |
msgid "All Portfolio Categories"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:106
|
|
|
632 |
msgid "Parent Portfolio Category"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:107
|
|
|
636 |
msgid "Parent Portfolio Category:"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:108
|
|
|
640 |
msgid "Edit Portfolio Category"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:109
|
|
|
644 |
msgid "Update Portfolio Category"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:110
|
|
|
648 |
msgid "Add New Portfolio Category"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:111
|
|
|
652 |
msgid "New Portfolio Category"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:112
|
|
|
656 |
msgid "Search in Portfolio Categories"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:148
|
660 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:172
|
661 |
+
msgid "Portfolio Tags"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:149
|
665 |
+
msgid "Portfolio Tag"
|
|
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:150
|
669 |
+
msgid "Search in Portfolio Tags"
|
|
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:151
|
673 |
+
msgid "Popular Tags"
|
|
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:152
|
677 |
+
msgid "All Portfolio Tags"
|
|
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:153
|
|
|
681 |
msgid "Parent Portfolio Tag"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:154
|
|
|
685 |
msgid "Parent Portfolio Tag:"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:155
|
689 |
+
msgid "Edit Portfolio Tag"
|
|
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:156
|
693 |
+
msgid "Update Portfolio Tag"
|
|
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:157
|
697 |
+
msgid "Add new Portfolio Tag"
|
|
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:158
|
701 |
+
msgid "New Portfolio Tag"
|
|
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:160
|
|
|
705 |
msgid "Separate tags with commas"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:161
|
709 |
+
msgid "Add or remove Tag"
|
|
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:162
|
|
|
713 |
msgid "Choose from the most used tags"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:197
|
717 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:221
|
718 |
+
msgid "Portfolio Filters"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
719 |
msgstr ""
|
720 |
|
|
|
721 |
#: includes/classes/class-auxpfo-post-type-portfolio.php:198
|
722 |
+
msgid "Portfolio Filter"
|
|
|
723 |
msgstr ""
|
724 |
|
|
|
725 |
#: includes/classes/class-auxpfo-post-type-portfolio.php:199
|
726 |
+
msgid "Search in Portfolio Filters"
|
|
|
727 |
msgstr ""
|
728 |
|
|
|
729 |
#: includes/classes/class-auxpfo-post-type-portfolio.php:200
|
730 |
+
msgid "Popular Filters"
|
|
|
731 |
msgstr ""
|
732 |
|
|
|
733 |
#: includes/classes/class-auxpfo-post-type-portfolio.php:201
|
734 |
+
msgid "All Portfolio Filters"
|
|
|
735 |
msgstr ""
|
736 |
|
|
|
737 |
#: includes/classes/class-auxpfo-post-type-portfolio.php:202
|
738 |
+
msgid "Parent Portfolio Filter"
|
739 |
+
msgstr ""
|
740 |
+
|
741 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:203
|
742 |
+
msgid "Parent Portfolio Filter:"
|
743 |
+
msgstr ""
|
744 |
+
|
745 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:204
|
746 |
+
msgid "Edit Portfolio Filter"
|
747 |
+
msgstr ""
|
748 |
+
|
749 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:205
|
750 |
+
msgid "Update Portfolio Filter"
|
751 |
+
msgstr ""
|
752 |
+
|
753 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:206
|
754 |
+
msgid "Add new Portfolio Filter"
|
755 |
+
msgstr ""
|
756 |
+
|
757 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:207
|
758 |
+
msgid "New Portfolio Filter"
|
759 |
+
msgstr ""
|
760 |
+
|
761 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:209
|
762 |
+
msgid "Separate filters with commas"
|
763 |
+
msgstr ""
|
764 |
+
|
765 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:210
|
766 |
+
msgid "Add or remove filter"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:211
|
770 |
+
msgid "Choose from the most used filters"
|
771 |
+
msgstr ""
|
772 |
+
|
773 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:296
|
774 |
msgid ""
|
775 |
"This is an image that is chosen as the representative/cover image for your "
|
776 |
"project."
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:56
|
780 |
+
msgid "Grid Carousel Portfolios"
|
781 |
+
msgstr ""
|
782 |
+
|
783 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:108
|
784 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:107
|
785 |
msgid "All Categories"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:139
|
789 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:136
|
790 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:135
|
791 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:138
|
792 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:136
|
793 |
+
#: includes/elements/recent-portfolios.php:203
|
794 |
+
msgid "Layout"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:147
|
798 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:144
|
799 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:143
|
800 |
+
msgid "Columns"
|
801 |
+
msgstr ""
|
802 |
+
|
803 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:153
|
804 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:150
|
805 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:149
|
806 |
+
msgid "Inherited from larger"
|
807 |
+
msgstr ""
|
808 |
+
|
809 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:168
|
810 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:165
|
811 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:164
|
812 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:195
|
813 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:193
|
814 |
+
msgid "Display title"
|
815 |
+
msgstr ""
|
816 |
+
|
817 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:170
|
818 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:181
|
819 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:192
|
820 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:203
|
821 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:243
|
822 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:355
|
823 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:367
|
824 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:487
|
825 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:167
|
826 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:178
|
827 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:189
|
828 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:201
|
829 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:226
|
830 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:277
|
831 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:375
|
832 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:686
|
833 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:166
|
834 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:177
|
835 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:188
|
836 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:200
|
837 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:225
|
838 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:276
|
839 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:375
|
840 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:553
|
841 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:197
|
842 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:208
|
843 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:220
|
844 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:307
|
845 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:319
|
846 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:393
|
847 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:195
|
848 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:206
|
849 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:218
|
850 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:243
|
851 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:294
|
852 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:393
|
853 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:571
|
854 |
+
msgid "On"
|
855 |
+
msgstr ""
|
856 |
+
|
857 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:171
|
858 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:182
|
859 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:193
|
860 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:204
|
861 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:244
|
862 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:356
|
863 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:368
|
864 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:488
|
865 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:168
|
866 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:179
|
867 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:190
|
868 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:202
|
869 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:227
|
870 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:278
|
871 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:376
|
872 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:687
|
873 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:167
|
874 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:178
|
875 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:189
|
876 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:201
|
877 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:226
|
878 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:277
|
879 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:376
|
880 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:554
|
881 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:198
|
882 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:209
|
883 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:221
|
884 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:308
|
885 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:320
|
886 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:394
|
887 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:196
|
888 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:207
|
889 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:219
|
890 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:244
|
891 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:295
|
892 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:394
|
893 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:572
|
894 |
+
msgid "Off"
|
895 |
+
msgstr ""
|
896 |
+
|
897 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:179
|
898 |
+
msgid "Display Info"
|
899 |
+
msgstr ""
|
900 |
+
|
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 |
|
908 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:201
|
909 |
+
msgid "Preload image"
|
|
|
|
|
|
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:213
|
913 |
+
msgid "While loading image display"
|
|
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:228
|
917 |
+
msgid "Placeholder color while loading image"
|
|
|
|
|
|
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:240
|
921 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:198
|
922 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:197
|
923 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:217
|
924 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:215
|
925 |
+
#: includes/elements/recent-portfolios.php:783
|
926 |
+
msgid "Deeplink"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:241
|
930 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:199
|
931 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:198
|
932 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:218
|
933 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:216
|
934 |
+
#: includes/elements/recent-portfolios.php:784
|
935 |
+
msgid ""
|
936 |
+
"Enables the deeplink feature, it updates URL based on page and filter "
|
937 |
+
"status."
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:252
|
941 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:210
|
942 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:209
|
943 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:229
|
944 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:227
|
945 |
+
#: includes/elements/recent-portfolios.php:807
|
946 |
+
msgid "Deeplink slug"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:253
|
950 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:211
|
951 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:210
|
952 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:230
|
953 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:228
|
954 |
+
#: includes/elements/recent-portfolios.php:808
|
955 |
+
msgid "Specifies the deeplink slug value in address bar."
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:278
|
959 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:255
|
960 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:290
|
961 |
+
msgid "Navigation control"
|
|
|
|
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:282
|
965 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:712
|
966 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:579
|
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 |
|
975 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:283
|
976 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:260
|
977 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:298
|
978 |
+
msgid "Arrows"
|
|
|
|
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:284
|
982 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:261
|
983 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:299
|
984 |
+
msgid "Bullets"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:285
|
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 |
+
|
995 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:293
|
996 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:720
|
997 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:587
|
998 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:605
|
999 |
+
#: includes/elements/recent-portfolios.php:629
|
1000 |
+
msgid "Next Button"
|
1001 |
+
msgstr ""
|
1002 |
+
|
1003 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:295
|
1004 |
+
#: includes/elements/recent-portfolios-grid-carousel.php:36
|
1005 |
+
msgid "Next"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:305
|
1009 |
+
msgid "Previous Button"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:307
|
1013 |
+
#: public/templates/theme-parts/entry/single-portfolio.php:187
|
1014 |
+
msgid "Prev"
|
1015 |
+
msgstr ""
|
1016 |
+
|
1017 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:317
|
1018 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:269
|
1019 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:312
|
1020 |
+
msgid "Button Navigation Style"
|
1021 |
+
msgstr ""
|
1022 |
+
|
1023 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:322
|
1024 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:156
|
1025 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:274
|
1026 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:154
|
1027 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:329
|
1028 |
+
#: includes/elements/recent-portfolios.php:258
|
1029 |
+
msgid "Pattern 1"
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:326
|
1033 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:160
|
1034 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:278
|
1035 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:158
|
1036 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:333
|
1037 |
+
#: includes/elements/recent-portfolios.php:262
|
1038 |
+
msgid "Pattern 2"
|
1039 |
+
msgstr ""
|
1040 |
+
|
1041 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:339
|
1042 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:291
|
1043 |
+
msgid "Navigation type"
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:343
|
1047 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:295
|
1048 |
+
msgid "Move per column"
|
1049 |
+
msgstr ""
|
1050 |
+
|
1051 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:344
|
1052 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:296
|
1053 |
+
msgid "Move per page"
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:345
|
1057 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:297
|
1058 |
+
msgid "Smooth scroll"
|
1059 |
+
msgstr ""
|
1060 |
+
|
1061 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:353
|
1062 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:305
|
1063 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:339
|
1064 |
+
msgid "Loop navigation"
|
1065 |
+
msgstr ""
|
1066 |
+
|
1067 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:365
|
1068 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:317
|
1069 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:354
|
1070 |
+
msgid "Autoplay carousel"
|
1071 |
+
msgstr ""
|
1072 |
+
|
1073 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:377
|
1074 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:329
|
1075 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:370
|
1076 |
+
msgid "Autoplay delay"
|
1077 |
+
msgstr ""
|
1078 |
+
|
1079 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:378
|
1080 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:330
|
1081 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:371
|
1082 |
+
msgid "Specifies the delay between auto-forwarding in seconds."
|
1083 |
+
msgstr ""
|
1084 |
+
|
1085 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:392
|
1086 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:618
|
1087 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:485
|
1088 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:503
|
1089 |
+
msgid "Transition"
|
1090 |
+
msgstr ""
|
1091 |
+
|
1092 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:400
|
1093 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:626
|
1094 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:493
|
1095 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:511
|
1096 |
+
#: includes/elements/recent-portfolios.php:529
|
1097 |
+
msgid "Transition duration on reveal"
|
1098 |
+
msgstr ""
|
1099 |
+
|
1100 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:401
|
1101 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:627
|
1102 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:494
|
1103 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:512
|
1104 |
+
#: includes/elements/recent-portfolios.php:530
|
1105 |
+
msgid ""
|
1106 |
+
"The transition duration while the element is going to be displayed "
|
1107 |
+
"(milliseconds)."
|
1108 |
+
msgstr ""
|
1109 |
+
|
1110 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:411
|
1111 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:637
|
1112 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:504
|
1113 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:522
|
1114 |
+
#: includes/elements/recent-portfolios.php:541
|
1115 |
+
msgid "Delay between reveal"
|
1116 |
+
msgstr ""
|
1117 |
+
|
1118 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:412
|
1119 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:638
|
1120 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:505
|
1121 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:523
|
1122 |
+
#: includes/elements/recent-portfolios.php:542
|
1123 |
+
msgid "The delay between each sequence of revealing transitions (milliseconds)."
|
1124 |
+
msgstr ""
|
1125 |
+
|
1126 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:422
|
1127 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:648
|
1128 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:515
|
1129 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:533
|
1130 |
+
#: includes/elements/recent-portfolios.php:553
|
1131 |
+
msgid "Transition duration on hide"
|
1132 |
+
msgstr ""
|
1133 |
+
|
1134 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:423
|
1135 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:649
|
1136 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:516
|
1137 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:534
|
1138 |
+
#: includes/elements/recent-portfolios.php:554
|
1139 |
+
msgid ""
|
1140 |
+
"The transition duration while the element is going to be hidden "
|
1141 |
+
"(milliseconds)."
|
1142 |
+
msgstr ""
|
1143 |
+
|
1144 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:433
|
1145 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:659
|
1146 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:526
|
1147 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:544
|
1148 |
+
#: includes/elements/recent-portfolios.php:565
|
1149 |
+
msgid "Delay between hide"
|
1150 |
+
msgstr ""
|
1151 |
+
|
1152 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:434
|
1153 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:660
|
1154 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:527
|
1155 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:545
|
1156 |
+
#: includes/elements/recent-portfolios.php:566
|
1157 |
+
msgid "The delay between each sequence of hiding transitions (milliseconds)."
|
1158 |
+
msgstr ""
|
1159 |
+
|
1160 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:453
|
1161 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:244
|
1162 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:243
|
1163 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:348
|
1164 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:261
|
1165 |
+
msgid "Query"
|
1166 |
+
msgstr ""
|
1167 |
+
|
1168 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:460
|
1169 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:251
|
1170 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:999
|
1171 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:250
|
1172 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:853
|
1173 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:355
|
1174 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:268
|
1175 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:814
|
1176 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:57
|
1177 |
+
#: includes/elements/recent-portfolios.php:58
|
1178 |
+
#: public/templates/theme-parts/entry/single-portfolio.php:114
|
1179 |
+
msgid "Categories"
|
1180 |
+
msgstr ""
|
1181 |
+
|
1182 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:461
|
1183 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:356
|
1184 |
+
msgid "Specifies a category that you want to show posts from it."
|
1185 |
+
msgstr ""
|
1186 |
+
|
1187 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:472
|
1188 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:367
|
1189 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:73
|
1190 |
+
msgid "Number of portfolios to show in per page"
|
1191 |
+
msgstr ""
|
1192 |
+
|
1193 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:473
|
1194 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:368
|
1195 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:74
|
1196 |
+
#: includes/elements/recent-portfolios.php:78
|
1197 |
+
msgid "Leave it empty to show all items"
|
1198 |
+
msgstr ""
|
1199 |
+
|
1200 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:485
|
1201 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:391
|
1202 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:135
|
1203 |
+
#: includes/elements/recent-portfolios.php:91
|
1204 |
+
msgid "Exclude portfolios without media"
|
1205 |
+
msgstr ""
|
1206 |
+
|
1207 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:497
|
1208 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:286
|
1209 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:286
|
1210 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:403
|
1211 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:304
|
1212 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:148
|
1213 |
+
#: includes/elements/recent-portfolios.php:104
|
1214 |
+
msgid "Order by"
|
1215 |
+
msgstr ""
|
1216 |
+
|
1217 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:501
|
1218 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:290
|
1219 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:290
|
1220 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:407
|
1221 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:308
|
1222 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:156
|
1223 |
+
#: includes/elements/recent-portfolios.php:112
|
1224 |
+
msgid "Date"
|
1225 |
+
msgstr ""
|
1226 |
+
|
1227 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:502
|
1228 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:291
|
1229 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:291
|
1230 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:408
|
1231 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:309
|
1232 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:157
|
1233 |
+
#: includes/elements/recent-portfolios.php:113
|
1234 |
+
msgid "Menu Order"
|
1235 |
+
msgstr ""
|
1236 |
+
|
1237 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:503
|
1238 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:698
|
1239 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:292
|
1240 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:886
|
1241 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:292
|
1242 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:740
|
1243 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:409
|
1244 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:534
|
1245 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:310
|
1246 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:701
|
1247 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:43
|
1248 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:158
|
1249 |
+
#: includes/elements/recent-portfolios.php:44
|
1250 |
+
#: includes/elements/recent-portfolios.php:114
|
1251 |
+
msgid "Title"
|
1252 |
+
msgstr ""
|
1253 |
+
|
1254 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:504
|
1255 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:293
|
1256 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:293
|
1257 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:410
|
1258 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:311
|
1259 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:159
|
1260 |
+
#: includes/elements/recent-portfolios.php:115
|
1261 |
+
msgid "ID"
|
1262 |
+
msgstr ""
|
1263 |
+
|
1264 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:505
|
1265 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:294
|
1266 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:294
|
1267 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:411
|
1268 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:312
|
1269 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:160
|
1270 |
+
#: includes/elements/recent-portfolios.php:116
|
1271 |
+
msgid "Random"
|
1272 |
+
msgstr ""
|
1273 |
+
|
1274 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:506
|
1275 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:295
|
1276 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:295
|
1277 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:412
|
1278 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:313
|
1279 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:161
|
1280 |
+
#: includes/elements/recent-portfolios.php:117
|
1281 |
+
msgid "Comments"
|
1282 |
+
msgstr ""
|
1283 |
+
|
1284 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:507
|
1285 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:296
|
1286 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:296
|
1287 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:413
|
1288 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:314
|
1289 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:162
|
1290 |
+
#: includes/elements/recent-portfolios.php:118
|
1291 |
+
msgid "Date Modified"
|
1292 |
+
msgstr ""
|
1293 |
+
|
1294 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:508
|
1295 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:297
|
1296 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:297
|
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 |
+
|
1304 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:509
|
1305 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:298
|
1306 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:298
|
1307 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:415
|
1308 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:316
|
1309 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:164
|
1310 |
+
#: includes/elements/recent-portfolios.php:120
|
1311 |
+
msgid "Inserted Post IDs"
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:517
|
1315 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:306
|
1316 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:306
|
1317 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:423
|
1318 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:324
|
1319 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:173
|
1320 |
+
#: includes/elements/recent-portfolios.php:129
|
1321 |
+
msgid "Order"
|
1322 |
+
msgstr ""
|
1323 |
+
|
1324 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:521
|
1325 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:310
|
1326 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:310
|
1327 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:427
|
1328 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:328
|
1329 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:181
|
1330 |
+
#: includes/elements/recent-portfolios.php:137
|
1331 |
+
msgid "Descending"
|
1332 |
+
msgstr ""
|
1333 |
+
|
1334 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:522
|
1335 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:311
|
1336 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:311
|
1337 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:428
|
1338 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:329
|
1339 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:182
|
1340 |
+
#: includes/elements/recent-portfolios.php:138
|
1341 |
+
msgid "Ascending"
|
1342 |
+
msgstr ""
|
1343 |
+
|
1344 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:530
|
1345 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:319
|
1346 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:319
|
1347 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:436
|
1348 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:337
|
1349 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:191
|
1350 |
+
#: includes/elements/recent-portfolios.php:147
|
1351 |
+
msgid "Only portfolios"
|
1352 |
+
msgstr ""
|
1353 |
+
|
1354 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:531
|
1355 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:320
|
1356 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:320
|
1357 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:437
|
1358 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:338
|
1359 |
+
msgid ""
|
1360 |
+
"If you intend to display ONLY specific portfolios, you should specify the "
|
1361 |
+
"portfolios here. You have to insert the post IDs that are separated by "
|
1362 |
+
"comma (eg. 53,34,87,25)."
|
1363 |
+
msgstr ""
|
1364 |
+
|
1365 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:539
|
1366 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:328
|
1367 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:328
|
1368 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:445
|
1369 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:346
|
1370 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:205
|
1371 |
+
#: includes/elements/recent-portfolios.php:161
|
1372 |
+
msgid "Include portfolios"
|
1373 |
+
msgstr ""
|
1374 |
+
|
1375 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:540
|
1376 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:329
|
1377 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:329
|
1378 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:446
|
1379 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:347
|
1380 |
+
msgid ""
|
1381 |
+
"If you intend to include additional portfolios, you should specify the "
|
1382 |
+
"portfolios here. You have to insert the Post IDs that are separated by "
|
1383 |
+
"comma (eg. 53,34,87,25)"
|
1384 |
+
msgstr ""
|
1385 |
+
|
1386 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:548
|
1387 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:337
|
1388 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:337
|
1389 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:454
|
1390 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:355
|
1391 |
+
msgid "Exclude portfolios"
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:549
|
1395 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:338
|
1396 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:338
|
1397 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:455
|
1398 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:356
|
1399 |
+
msgid ""
|
1400 |
+
"If you intend to exclude specific portfolios from result, you should "
|
1401 |
+
"specify the portfolios here. You have to insert the Post IDs that are "
|
1402 |
+
"separated by comma (eg. 53,34,87,25)"
|
1403 |
+
msgstr ""
|
1404 |
+
|
1405 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:557
|
1406 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:346
|
1407 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:346
|
1408 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:463
|
1409 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:364
|
1410 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:233
|
1411 |
+
#: includes/elements/recent-portfolios.php:189
|
1412 |
+
msgid "Start offset"
|
1413 |
+
msgstr ""
|
1414 |
+
|
1415 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:558
|
1416 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:347
|
1417 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:347
|
1418 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:464
|
1419 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:365
|
1420 |
+
#: includes/elements/recent-portfolios.php:190
|
1421 |
+
msgid "Number of portfolios to display or pass over."
|
1422 |
+
msgstr ""
|
1423 |
+
|
1424 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:576
|
1425 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:764
|
1426 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:643
|
1427 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:649
|
1428 |
+
msgid "Image"
|
1429 |
+
msgstr ""
|
1430 |
+
|
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 |
+
|
1465 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:603
|
1466 |
+
msgid "Square 1:1"
|
1467 |
+
msgstr ""
|
1468 |
+
|
1469 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:604
|
1470 |
+
msgid "Vertical 3:4"
|
1471 |
+
msgstr ""
|
1472 |
+
|
1473 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:605
|
1474 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:793
|
1475 |
+
msgid "Custom"
|
1476 |
+
msgstr ""
|
1477 |
+
|
1478 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:613
|
1479 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:801
|
1480 |
+
msgid "Custom image aspect ratio"
|
1481 |
+
msgstr ""
|
1482 |
+
|
1483 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:628
|
1484 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:816
|
1485 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:681
|
1486 |
+
msgid "Hover Type"
|
1487 |
+
msgstr ""
|
1488 |
+
|
1489 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:629
|
1490 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:817
|
1491 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:682
|
1492 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:147
|
1493 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:145
|
1494 |
+
msgid "Move your mouse over each item in order to preview the hover effect."
|
1495 |
+
msgstr ""
|
1496 |
+
|
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 |
+
|
1521 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:646
|
1522 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:834
|
1523 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:699
|
1524 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:496
|
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 |
+
|
1534 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:650
|
1535 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:838
|
1536 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:703
|
1537 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:500
|
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 |
+
|
1547 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:654
|
1548 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:842
|
1549 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:707
|
1550 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:504
|
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 |
+
|
1560 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:658
|
1561 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:846
|
1562 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:711
|
1563 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:508
|
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 |
+
|
1573 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:669
|
1574 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:857
|
1575 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:722
|
1576 |
+
msgid "Border Radius"
|
1577 |
+
msgstr ""
|
1578 |
+
|
1579 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:683
|
1580 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:871
|
1581 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:686
|
1582 |
+
msgid "Background"
|
1583 |
+
msgstr ""
|
1584 |
+
|
1585 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:713
|
1586 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:799
|
1587 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:900
|
1588 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:488
|
1589 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:908
|
1590 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:1019
|
1591 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:762
|
1592 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:873
|
1593 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:556
|
1594 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:667
|
1595 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:723
|
1596 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:834
|
1597 |
+
msgid "Normal"
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:720
|
1601 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:740
|
1602 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:806
|
1603 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:826
|
1604 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:907
|
1605 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:927
|
1606 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:495
|
1607 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:536
|
1608 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:577
|
1609 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:918
|
1610 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:944
|
1611 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:1029
|
1612 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:1055
|
1613 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:772
|
1614 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:798
|
1615 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:883
|
1616 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:909
|
1617 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:566
|
1618 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:592
|
1619 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:677
|
1620 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:703
|
1621 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:733
|
1622 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:759
|
1623 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:844
|
1624 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:870
|
1625 |
+
msgid "Color"
|
1626 |
+
msgstr ""
|
1627 |
+
|
1628 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:733
|
1629 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:819
|
1630 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:920
|
1631 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:529
|
1632 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:934
|
1633 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:1045
|
1634 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:788
|
1635 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:899
|
1636 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:482
|
1637 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:582
|
1638 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:693
|
1639 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:749
|
1640 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:860
|
1641 |
+
msgid "Hover"
|
1642 |
+
msgstr ""
|
1643 |
+
|
1644 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:764
|
1645 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:850
|
1646 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:974
|
1647 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:1085
|
1648 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:828
|
1649 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:939
|
1650 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:622
|
1651 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:733
|
1652 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:789
|
1653 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:900
|
1654 |
+
msgid "Bottom space"
|
1655 |
+
msgstr ""
|
1656 |
+
|
1657 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:786
|
1658 |
+
msgid "Info Meta"
|
1659 |
+
msgstr ""
|
1660 |
+
|
1661 |
+
#: includes/elements/elementor/recent-portfolios-grid-carousel.php:866
|
1662 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:1104
|
1663 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:958
|
1664 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:752
|
1665 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:919
|
1666 |
+
msgid "Space between metas"
|
1667 |
+
msgstr ""
|
1668 |
+
|
1669 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:56
|
1670 |
+
msgid "Grid Portfolios"
|
1671 |
+
msgstr ""
|
1672 |
+
|
1673 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:176
|
1674 |
+
msgid "Display categories"
|
1675 |
+
msgstr ""
|
1676 |
+
|
1677 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:223
|
1678 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:222
|
1679 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:240
|
1680 |
+
#: includes/elements/recent-portfolios.php:795
|
1681 |
+
msgid "Ajax Compatibility"
|
1682 |
+
msgstr ""
|
1683 |
+
|
1684 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:224
|
1685 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:223
|
1686 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:241
|
1687 |
+
#: includes/elements/recent-portfolios.php:796
|
1688 |
+
msgid "Using the Ajax feature Makes the performance better"
|
1689 |
+
msgstr ""
|
1690 |
+
|
1691 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:252
|
1692 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:251
|
1693 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:269
|
1694 |
+
msgid ""
|
1695 |
+
"Specifies a category that you want to show posts from it. In order to "
|
1696 |
+
"choose the all categories leave the field empty"
|
1697 |
+
msgstr ""
|
1698 |
+
|
1699 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:263
|
1700 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:262
|
1701 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:280
|
1702 |
+
msgid "Number of posts to show"
|
1703 |
+
msgstr ""
|
1704 |
+
|
1705 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:275
|
1706 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:274
|
1707 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:292
|
1708 |
+
msgid "Exclude posts without media"
|
1709 |
+
msgstr ""
|
1710 |
+
|
1711 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:365
|
1712 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:365
|
1713 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:383
|
1714 |
+
msgid "Filters"
|
1715 |
+
msgstr ""
|
1716 |
+
|
1717 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:373
|
1718 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:373
|
1719 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:391
|
1720 |
+
msgid "Display filters"
|
1721 |
+
msgstr ""
|
1722 |
+
|
1723 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:385
|
1724 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:385
|
1725 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:403
|
1726 |
+
msgid "Filter By"
|
1727 |
+
msgstr ""
|
1728 |
+
|
1729 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:386
|
1730 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:386
|
1731 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:404
|
1732 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:404
|
1733 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:422
|
1734 |
+
#: includes/elements/recent-portfolios.php:433
|
1735 |
+
msgid "Filter by categories or tags"
|
1736 |
+
msgstr ""
|
1737 |
+
|
1738 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:390
|
1739 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:390
|
1740 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:408
|
1741 |
+
#: includes/elements/recent-portfolios.php:439
|
1742 |
+
msgid "Filter"
|
1743 |
+
msgstr ""
|
1744 |
+
|
1745 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:391
|
1746 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:391
|
1747 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:409
|
1748 |
+
#: includes/elements/recent-portfolios.php:440
|
1749 |
+
msgid "Category"
|
1750 |
+
msgstr ""
|
1751 |
+
|
1752 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:392
|
1753 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:392
|
1754 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:410
|
1755 |
+
#: includes/elements/recent-portfolios.php:441
|
1756 |
+
msgid "Tag"
|
1757 |
+
msgstr ""
|
1758 |
+
|
1759 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:403
|
1760 |
+
msgid "Alignment"
|
1761 |
+
msgstr ""
|
1762 |
+
|
1763 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:404
|
1764 |
+
msgid "Set the alignment for filters"
|
1765 |
+
msgstr ""
|
1766 |
+
|
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 |
+
|
1774 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:432
|
1775 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:432
|
1776 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:450
|
1777 |
+
msgid "Filter Button Style"
|
1778 |
+
msgstr ""
|
1779 |
+
|
1780 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:433
|
1781 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:433
|
1782 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:451
|
1783 |
+
#: includes/elements/recent-portfolios.php:481
|
1784 |
+
msgid "Style of filter buttons."
|
1785 |
+
msgstr ""
|
1786 |
+
|
1787 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:438
|
1788 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:439
|
1789 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:457
|
1790 |
+
#: includes/elements/recent-portfolios.php:495
|
1791 |
+
msgid "Slide up"
|
1792 |
+
msgstr ""
|
1793 |
+
|
1794 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:442
|
1795 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:443
|
1796 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:461
|
1797 |
+
#: includes/elements/recent-portfolios.php:499
|
1798 |
+
msgid "Fill"
|
1799 |
+
msgstr ""
|
1800 |
+
|
1801 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:446
|
1802 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:447
|
1803 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:465
|
1804 |
+
#: includes/elements/recent-portfolios.php:503
|
1805 |
+
msgid "Cube"
|
1806 |
+
msgstr ""
|
1807 |
+
|
1808 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:450
|
1809 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:451
|
1810 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:469
|
1811 |
+
#: includes/elements/recent-portfolios.php:507
|
1812 |
+
msgid "Underline"
|
1813 |
+
msgstr ""
|
1814 |
+
|
1815 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:454
|
1816 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:455
|
1817 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:473
|
1818 |
+
#: includes/elements/recent-portfolios.php:511
|
1819 |
+
msgid "Float frame"
|
1820 |
+
msgstr ""
|
1821 |
+
|
1822 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:458
|
1823 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:459
|
1824 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:477
|
1825 |
+
#: includes/elements/recent-portfolios.php:515
|
1826 |
+
msgid "Borderd"
|
1827 |
+
msgstr ""
|
1828 |
+
|
1829 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:462
|
1830 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:463
|
1831 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:481
|
1832 |
+
#: includes/elements/recent-portfolios.php:519
|
1833 |
+
msgid "Float underline"
|
1834 |
+
msgstr ""
|
1835 |
+
|
1836 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:466
|
1837 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:467
|
1838 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:485
|
1839 |
+
#: includes/elements/recent-portfolios.php:523
|
1840 |
+
msgid "DropDown"
|
1841 |
+
msgstr ""
|
1842 |
+
|
1843 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:515
|
1844 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:556
|
1845 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:597
|
1846 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:1134
|
1847 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:987
|
1848 |
+
msgid "Padding"
|
1849 |
+
msgstr ""
|
1850 |
+
|
1851 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:570
|
1852 |
+
msgid "Active"
|
1853 |
+
msgstr ""
|
1854 |
+
|
1855 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:675
|
1856 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:683
|
1857 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:542
|
1858 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:550
|
1859 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:560
|
1860 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:568
|
1861 |
+
#: includes/elements/recent-portfolios.php:577
|
1862 |
+
msgid "Paginate"
|
1863 |
+
msgstr ""
|
1864 |
+
|
1865 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:684
|
1866 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:551
|
1867 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:569
|
1868 |
+
#: includes/elements/recent-portfolios.php:578
|
1869 |
+
msgid "Paginates the portfolio items"
|
1870 |
+
msgstr ""
|
1871 |
+
|
1872 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:695
|
1873 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:562
|
1874 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:580
|
1875 |
+
#: includes/elements/recent-portfolios.php:589
|
1876 |
+
msgid "Items number perpage"
|
1877 |
+
msgstr ""
|
1878 |
+
|
1879 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:708
|
1880 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:575
|
1881 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:593
|
1882 |
+
#: includes/elements/recent-portfolios.php:605
|
1883 |
+
msgid "Load More Type"
|
1884 |
+
msgstr ""
|
1885 |
+
|
1886 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:716
|
1887 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:583
|
1888 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:601
|
1889 |
+
#: includes/elements/recent-portfolios.php:625
|
1890 |
+
msgid "Infinite Scroll"
|
1891 |
+
msgstr ""
|
1892 |
+
|
1893 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:724
|
1894 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:591
|
1895 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:609
|
1896 |
+
#: includes/elements/recent-portfolios.php:633
|
1897 |
+
msgid "Next Prev"
|
1898 |
+
msgstr ""
|
1899 |
+
|
1900 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:738
|
1901 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:605
|
1902 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:623
|
1903 |
+
#: includes/elements/recent-portfolios.php:639
|
1904 |
+
msgid "Load More Label"
|
1905 |
+
msgstr ""
|
1906 |
+
|
1907 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:743
|
1908 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:610
|
1909 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:628
|
1910 |
+
#: includes/elements/recent-portfolios.php:648
|
1911 |
+
msgid "Arrow"
|
1912 |
+
msgstr ""
|
1913 |
+
|
1914 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:744
|
1915 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:611
|
1916 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:629
|
1917 |
+
#: includes/elements/recent-portfolios.php:649
|
1918 |
+
msgid "Text & Arrow"
|
1919 |
+
msgstr ""
|
1920 |
+
|
1921 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:789
|
1922 |
+
msgid "Horizontal 4 : 3"
|
1923 |
+
msgstr ""
|
1924 |
+
|
1925 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:790
|
1926 |
+
msgid "Horizontal 16: 9"
|
1927 |
+
msgstr ""
|
1928 |
+
|
1929 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:791
|
1930 |
+
msgid "Square 1 : 1"
|
1931 |
+
msgstr ""
|
1932 |
+
|
1933 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:792
|
1934 |
+
msgid "Vertical 3 : 4"
|
1935 |
+
msgstr ""
|
1936 |
+
|
1937 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:1126
|
1938 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:979
|
1939 |
+
msgid "Wrapper"
|
1940 |
+
msgstr ""
|
1941 |
+
|
1942 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:1146
|
1943 |
+
msgid "Item Bottom space"
|
1944 |
+
msgstr ""
|
1945 |
+
|
1946 |
+
#: includes/elements/elementor/recent-portfolios-grid.php:1167
|
1947 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:1000
|
1948 |
+
msgid "Entry Box Background"
|
1949 |
+
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 |
+
|
1958 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:55
|
1959 |
+
msgid "Masonry Portfolios"
|
1960 |
+
msgstr ""
|
1961 |
+
|
1962 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:175
|
1963 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:204
|
1964 |
+
msgid "Display Categories"
|
1965 |
+
msgstr ""
|
1966 |
+
|
1967 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:403
|
1968 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:421
|
1969 |
+
#: includes/elements/recent-portfolios.php:452
|
1970 |
+
msgid "Filter Control Alignment"
|
1971 |
+
msgstr ""
|
1972 |
+
|
1973 |
+
#: includes/elements/elementor/recent-portfolios-masonry.php:622
|
1974 |
+
msgid "Load More Per Page"
|
1975 |
+
msgstr ""
|
1976 |
+
|
1977 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:55
|
1978 |
+
msgid "Tiles Carousel Portfolios"
|
1979 |
+
msgstr ""
|
1980 |
+
|
1981 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:146
|
1982 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:144
|
1983 |
+
msgid "Post tile styles"
|
1984 |
+
msgstr ""
|
1985 |
+
|
1986 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:164
|
1987 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:162
|
1988 |
+
#: includes/elements/recent-portfolios.php:266
|
1989 |
+
msgid "Pattern 3"
|
1990 |
+
msgstr ""
|
1991 |
+
|
1992 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:168
|
1993 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:166
|
1994 |
+
#: includes/elements/recent-portfolios.php:270
|
1995 |
+
msgid "Pattern 4"
|
1996 |
+
msgstr ""
|
1997 |
+
|
1998 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:172
|
1999 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:170
|
2000 |
+
#: includes/elements/recent-portfolios.php:274
|
2001 |
+
msgid "Pattern 5"
|
2002 |
+
msgstr ""
|
2003 |
+
|
2004 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:176
|
2005 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:174
|
2006 |
+
#: includes/elements/recent-portfolios.php:278
|
2007 |
+
msgid "Pattern 6"
|
2008 |
+
msgstr ""
|
2009 |
+
|
2010 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:180
|
2011 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:178
|
2012 |
+
#: includes/elements/recent-portfolios.php:282
|
2013 |
+
msgid "Pattern 7"
|
2014 |
+
msgstr ""
|
2015 |
+
|
2016 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:184
|
2017 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:182
|
2018 |
+
#: includes/elements/recent-portfolios.php:286
|
2019 |
+
msgid "Pattern 8"
|
2020 |
+
msgstr ""
|
2021 |
+
|
2022 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:206
|
2023 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:260
|
2024 |
+
#: includes/elements/recent-portfolios.php:754
|
2025 |
+
msgid "Insert portfolio meta"
|
2026 |
+
msgstr ""
|
2027 |
+
|
2028 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:380
|
2029 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:121
|
2030 |
+
msgid "Number of Pages"
|
2031 |
+
msgstr ""
|
2032 |
+
|
2033 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:490
|
2034 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:657
|
2035 |
+
msgid "Tiles hover type"
|
2036 |
+
msgstr ""
|
2037 |
+
|
2038 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:518
|
2039 |
+
msgid "Tiles Hover Background"
|
2040 |
+
msgstr ""
|
2041 |
+
|
2042 |
+
#: includes/elements/elementor/recent-portfolios-tile-carousel.php:647
|
2043 |
+
msgid "Meta Info"
|
2044 |
+
msgstr ""
|
2045 |
+
|
2046 |
+
#: includes/elements/elementor/recent-portfolios-tile.php:56
|
2047 |
+
msgid "Tiles Portfolios"
|
2048 |
+
msgstr ""
|
2049 |
+
|
2050 |
+
#: includes/elements/recent-portfolios-grid-carousel.php:37
|
2051 |
+
msgid "Previous"
|
2052 |
+
msgstr ""
|
2053 |
+
|
2054 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:16
|
2055 |
+
msgid "Recent Portfolio on Tile Carousel"
|
2056 |
+
msgstr ""
|
2057 |
+
|
2058 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:19
|
2059 |
+
msgid "It adds recent portfolio items in tile carousel"
|
2060 |
+
msgstr ""
|
2061 |
+
|
2062 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:44
|
2063 |
+
#: includes/elements/recent-portfolios.php:45
|
2064 |
+
msgid "Recent items title, leave it empty if you don`t need title."
|
2065 |
+
msgstr ""
|
2066 |
+
|
2067 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:58
|
2068 |
+
#: includes/elements/recent-portfolios.php:59
|
2069 |
+
msgid "Specifies a category that you want to show portfolio items from it."
|
2070 |
+
msgstr ""
|
2071 |
+
|
2072 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:87
|
2073 |
+
#: includes/elements/recent-portfolios.php:398
|
2074 |
+
msgid "Portfolio tiles hover type"
|
2075 |
+
msgstr ""
|
2076 |
+
|
2077 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:192
|
2078 |
+
#: includes/elements/recent-portfolios.php:148
|
2079 |
+
msgid ""
|
2080 |
+
"If you intend to display ONLY specific portfolios, you should specify them "
|
2081 |
+
"here. You have to insert the post IDs that are separated by comma (eg. "
|
2082 |
+
"53,34,87,25)."
|
2083 |
+
msgstr ""
|
2084 |
+
|
2085 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:206
|
2086 |
+
#: includes/elements/recent-portfolios.php:162
|
2087 |
+
msgid ""
|
2088 |
+
"If you intend to include additional portfolios, you should specify them "
|
2089 |
+
"here. You have to insert the Post IDs that are separated by comma (eg. "
|
2090 |
+
"53,34,87,25)"
|
2091 |
+
msgstr ""
|
2092 |
+
|
2093 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:219
|
2094 |
+
#: includes/elements/recent-portfolios.php:175
|
2095 |
+
msgid "Exclude posts"
|
2096 |
+
msgstr ""
|
2097 |
+
|
2098 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:220
|
2099 |
+
#: includes/elements/recent-portfolios.php:176
|
2100 |
+
msgid ""
|
2101 |
+
"If you intend to exclude specific posts from result, you should specify the "
|
2102 |
+
"posts here. You have to insert the Post IDs that are separated by comma "
|
2103 |
+
"(eg. 53,34,87,25)"
|
2104 |
+
msgstr ""
|
2105 |
+
|
2106 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:234
|
2107 |
+
msgid "Number of post to displace or pass over."
|
2108 |
+
msgstr ""
|
2109 |
+
|
2110 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:247
|
2111 |
+
#: includes/elements/recent-portfolios.php:741
|
2112 |
+
msgid "Insert portfolio title"
|
2113 |
+
msgstr ""
|
2114 |
+
|
2115 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:272
|
2116 |
+
msgid "Post tile style"
|
2117 |
+
msgstr ""
|
2118 |
+
|
2119 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:387
|
2120 |
+
#: includes/elements/recent-portfolios.php:824
|
2121 |
+
msgid "Extra class name"
|
2122 |
+
msgstr ""
|
2123 |
+
|
2124 |
+
#: includes/elements/recent-portfolios-tile-carousel.php:388
|
2125 |
+
#: includes/elements/recent-portfolios.php:825
|
2126 |
+
msgid ""
|
2127 |
+
"If you wish to style particular content element differently, then use this "
|
2128 |
+
"field to add a class name and then refer to it in your css file."
|
2129 |
+
msgstr ""
|
2130 |
+
|
2131 |
+
#: includes/elements/recent-portfolios.php:17
|
2132 |
+
msgid "Recent Portfolio Grid/Tile/Masonry"
|
2133 |
+
msgstr ""
|
2134 |
+
|
2135 |
+
#: includes/elements/recent-portfolios.php:20
|
2136 |
+
msgid "It adds recent portfolio items in gird, tile or masonry style."
|
2137 |
+
msgstr ""
|
2138 |
+
|
2139 |
+
#: includes/elements/recent-portfolios.php:77
|
2140 |
+
msgid "Number of items to show"
|
2141 |
+
msgstr ""
|
2142 |
+
|
2143 |
+
#: includes/elements/recent-portfolios.php:204
|
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 |
+
|
2157 |
+
#: includes/elements/recent-portfolios.php:237
|
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 |
+
|
2171 |
+
#: includes/elements/recent-portfolios.php:316
|
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 |
+
|
2180 |
+
#: includes/elements/recent-portfolios.php:420
|
2181 |
+
msgid "Show filters"
|
2182 |
+
msgstr ""
|
2183 |
+
|
2184 |
+
#: includes/elements/recent-portfolios.php:432
|
2185 |
+
msgid "Filter by"
|
2186 |
+
msgstr ""
|
2187 |
+
|
2188 |
+
#: includes/elements/recent-portfolios.php:480
|
2189 |
+
msgid "Filter button style"
|
2190 |
+
msgstr ""
|
2191 |
+
|
2192 |
+
#: includes/elements/recent-portfolios.php:537
|
2193 |
+
#: includes/elements/recent-portfolios.php:549
|
2194 |
+
#: includes/elements/recent-portfolios.php:561
|
2195 |
+
#: includes/elements/recent-portfolios.php:573
|
2196 |
+
msgid "Transitions"
|
2197 |
+
msgstr ""
|
2198 |
+
|
2199 |
+
#: includes/elements/recent-portfolios.php:678
|
2200 |
+
msgid "Number of columns"
|
2201 |
+
msgstr ""
|
2202 |
+
|
2203 |
+
#: includes/elements/recent-portfolios.php:699
|
2204 |
+
msgid "Number of columns in tablet size"
|
2205 |
+
msgstr ""
|
2206 |
+
|
2207 |
+
#: includes/elements/recent-portfolios.php:721
|
2208 |
+
msgid "Number of columns in phone size"
|
2209 |
+
msgstr ""
|
2210 |
+
|
2211 |
+
#: includes/elements/recent-portfolios.php:767
|
2212 |
+
msgid ""
|
2213 |
+
"Enable it to display %s like button%s on gride template blog. Please note "
|
2214 |
+
"WP Ulike plugin needs to be activaited to use this option."
|
2215 |
+
msgstr ""
|
2216 |
+
|
2217 |
+
#: includes/general-hooks.php:40
|
2218 |
+
msgid "Portfolio Setting"
|
2219 |
+
msgstr ""
|
2220 |
+
|
2221 |
+
#: includes/general-hooks.php:49
|
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 |
+
|
2229 |
+
#: includes/general-hooks.php:56
|
2230 |
+
msgid "Single Portfolio Template"
|
2231 |
+
msgstr ""
|
2232 |
+
|
2233 |
+
#: includes/general-hooks.php:57
|
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 |
+
|
2269 |
+
#: includes/general-hooks.php:150
|
2270 |
+
msgid "Enable this option to display extra inormation on portfolio single page."
|
2271 |
+
msgstr ""
|
2272 |
+
|
2273 |
+
#: includes/general-hooks.php:168
|
2274 |
+
msgid "Enable it to display category section in single portfolio."
|
2275 |
+
msgstr ""
|
2276 |
+
|
2277 |
+
#: includes/general-hooks.php:186
|
2278 |
+
msgid "Enable it to display Tag section in single portfolio."
|
2279 |
+
msgstr ""
|
2280 |
+
|
2281 |
+
#: includes/general-hooks.php:204
|
2282 |
+
msgid "Enable it to stick the side area on page while scrolling.."
|
2283 |
+
msgstr ""
|
2284 |
+
|
2285 |
+
#: includes/general-hooks.php:241
|
2286 |
+
msgid "Display share/action bar"
|
2287 |
+
msgstr ""
|
2288 |
+
|
2289 |
+
#: includes/general-hooks.php:242
|
2290 |
+
msgid "Enable it to display the section for share and like button."
|
2291 |
+
msgstr ""
|
2292 |
+
|
2293 |
+
#: includes/general-hooks.php:259
|
2294 |
+
msgid "Display share button"
|
2295 |
+
msgstr ""
|
2296 |
+
|
2297 |
+
#: includes/general-hooks.php:260
|
2298 |
+
msgid "Enable it to display the share button."
|
2299 |
+
msgstr ""
|
2300 |
+
|
2301 |
+
#: includes/general-hooks.php:282
|
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 |
|
3021 |
+
#: public/includes/class-auxpfo-frontend-assets.php:31
|
3022 |
+
msgid "This is a required field"
|
3023 |
+
msgstr ""
|
3024 |
+
|
3025 |
+
#: public/includes/class-auxpfo-frontend-assets.php:32
|
3026 |
+
msgid "Zipcode must be digits"
|
3027 |
+
msgstr ""
|
3028 |
+
|
3029 |
+
#: public/includes/class-auxpfo-frontend-assets.php:33
|
3030 |
+
msgid "Enter a valid phone number"
|
3031 |
+
msgstr ""
|
3032 |
+
|
3033 |
+
#: public/includes/class-auxpfo-frontend-assets.php:34
|
3034 |
+
msgid "Enter a valid email address"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
+
#: public/includes/templates-post.php:12
|
3038 |
+
msgid "Please activate \"Auxin Elements\" plugin."
|
|
|
3039 |
msgstr ""
|
3040 |
|
3041 |
+
#: public/templates/theme-parts/entry/portfolio-column-overlay.php:57
|
3042 |
+
#: public/templates/theme-parts/entry/portfolio-column.php:66
|
3043 |
+
#: public/templates/theme-parts/entry/portfolio-land.php:86
|
3044 |
+
#: public/templates/theme-parts/entry/portfolio.php:46
|
3045 |
+
#: public/templates/theme-parts/entry/single-portfolio.php:116
|
3046 |
+
#: public/templates/theme-parts/entry/single-portfolio.php:124
|
|
|
|
|
|
|
|
|
|
|
|
|
3047 |
msgid "View all posts in "
|
3048 |
msgstr ""
|
3049 |
|
3050 |
+
#: public/templates/theme-parts/entry/portfolio-land.php:92
|
3051 |
+
#: public/templates/theme-parts/entry/portfolio-land.php:94
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3052 |
msgid "Edit"
|
3053 |
msgstr ""
|
3054 |
|
3055 |
+
#: public/templates/theme-parts/entry/single-portfolio.php:122
|
3056 |
+
msgid "Tags"
|
3057 |
+
msgstr ""
|
3058 |
+
|
3059 |
+
#: public/templates/theme-parts/entry/single-portfolio.php:161
|
3060 |
+
msgid "Pages:"
|
3061 |
msgstr ""
|
3062 |
|
3063 |
+
#: public/templates/theme-parts/entry/single-portfolio.php:188
|
3064 |
+
msgid "Next "
|
|
|
3065 |
msgstr ""
|
3066 |
|
3067 |
+
#: public/templates/theme-parts/loop-portfolio.php:62
|
3068 |
+
#: public/templates/theme-parts/tax-portfolio.php:66
|
|
|
|
|
3069 |
msgid "To enable this feature, please install \"Auxin Portfolio\" plugin."
|
3070 |
msgstr ""
|
3071 |
|
3072 |
+
#. Plugin URI of the plugin/theme
|
3073 |
+
msgid "http://phlox.pro/"
|
3074 |
+
msgstr ""
|
3075 |
+
|
3076 |
+
#. Description of the plugin/theme
|
3077 |
+
msgid "Showcase your projects beautifully in Phlox theme"
|
3078 |
+
msgstr ""
|
3079 |
+
|
3080 |
+
#. Author of the plugin/theme
|
3081 |
+
msgid "averta"
|
3082 |
+
msgstr ""
|
3083 |
+
|
3084 |
+
#. Author URI of the plugin/theme
|
3085 |
+
msgid "http://averta.net"
|
3086 |
+
msgstr ""
|
3087 |
+
|
3088 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:52
|
3089 |
+
msgctxt "auxin-portfolio"
|
3090 |
+
msgid "Portfolios"
|
3091 |
+
msgstr ""
|
3092 |
+
|
3093 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:54
|
3094 |
+
msgctxt "Admin menu name"
|
3095 |
msgid "Portfolios"
|
3096 |
msgstr ""
|
3097 |
+
|
3098 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:113
|
3099 |
+
msgctxt "portfolio-cat admin menu name"
|
3100 |
+
msgid "Categories"
|
3101 |
+
msgstr ""
|
3102 |
+
|
3103 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:163
|
3104 |
+
msgctxt "portfolio-tag admin menu name"
|
3105 |
+
msgid "Tags"
|
3106 |
+
msgstr ""
|
3107 |
+
|
3108 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:212
|
3109 |
+
msgctxt "portfolio-filter admin menu name"
|
3110 |
+
msgid "Filters"
|
3111 |
+
msgstr ""
|
3112 |
+
|
3113 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:251
|
3114 |
+
msgctxt "Image column at portfolio edit columns"
|
3115 |
+
msgid "Image"
|
3116 |
+
msgstr ""
|
3117 |
+
|
3118 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:252
|
3119 |
+
msgctxt "Title column at portfolio edit columns"
|
3120 |
+
msgid "Title"
|
3121 |
+
msgstr ""
|
3122 |
+
|
3123 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:253
|
3124 |
+
msgctxt "Type column at portfolio edit columns"
|
3125 |
+
msgid "Category / Type"
|
3126 |
+
msgstr ""
|
3127 |
+
|
3128 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:254
|
3129 |
+
msgctxt "Tag/Filter column at portfolio edit columns"
|
3130 |
+
msgid "Tag / Filter"
|
3131 |
+
msgstr ""
|
3132 |
+
|
3133 |
+
#: includes/classes/class-auxpfo-post-type-portfolio.php:255
|
3134 |
+
msgctxt "Date column at portfolio edit columns"
|
3135 |
+
msgid "Release Date"
|
3136 |
+
msgstr ""
|
public/assets/js/portfolio.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/*! Auxin portfolio - v1.9.
|
2 |
* All required plugins
|
3 |
* http://averta.net/phlox/
|
4 |
*/
|
1 |
+
/*! Auxin portfolio - v1.9.4 (2020-04-11)
|
2 |
* All required plugins
|
3 |
* http://averta.net/phlox/
|
4 |
*/
|
public/class-auxpfo.php
CHANGED
@@ -139,13 +139,8 @@ class AUXPFO {
|
|
139 |
* @return void
|
140 |
*/
|
141 |
public function init(){
|
142 |
-
|
143 |
-
|
144 |
-
global $wp_version;
|
145 |
-
if ( version_compare( $wp_version, '4.6', '<' ) ) {
|
146 |
-
// Load plugin text domain
|
147 |
-
$this->load_plugin_textdomain();
|
148 |
-
}
|
149 |
}
|
150 |
|
151 |
|
139 |
* @return void
|
140 |
*/
|
141 |
public function init(){
|
142 |
+
// Load plugin text domain
|
143 |
+
$this->load_plugin_textdomain();
|
|
|
|
|
|
|
|
|
|
|
144 |
}
|
145 |
|
146 |
|
public/templates/theme-parts/loop-portfolio.php
CHANGED
@@ -14,7 +14,7 @@ if( in_array( $template_type, array('grid', 'masonry', 'tiles') ) ){
|
|
14 |
|
15 |
$args = array(
|
16 |
'posts_per_page' => -1,
|
17 |
-
'paged' =>
|
18 |
'order_by' => 'menu_order date',
|
19 |
'order' => 'desc',
|
20 |
'num' => auxin_get_option( 'portfolio_archive_items_perpage' ),
|
14 |
|
15 |
$args = array(
|
16 |
'posts_per_page' => -1,
|
17 |
+
'paged' => $paged,
|
18 |
'order_by' => 'menu_order date',
|
19 |
'order' => 'desc',
|
20 |
'num' => auxin_get_option( 'portfolio_archive_items_perpage' ),
|