Version Description
- June 24, 2022 =
- UPDATE: Added support for lazy loading images with Blocksy Pro theme.
- FIX: Fixed issue with potential xs scriptiing issue. report
Download this release
Release Info
Developer | dcooney |
Plugin | WordPress Infinite Scroll – Ajax Load More |
Version | 5.5.3 |
Comparing to | |
See all releases |
Code changes from version 5.5.2 to 5.5.3
- README.txt +6 -2
- ajax-load-more.php +53 -50
- core/classes/class-alm-shortcode.php +10 -10
- core/dist/js/ajax-load-more.js +8 -0
- core/dist/js/ajax-load-more.min.js +1 -1
- core/src/js/modules/lazyImages.js +9 -1
- lang/ajax-load-more.pot +6 -893
README.txt
CHANGED
@@ -4,8 +4,8 @@ Donate link: https://connekthq.com/donate/
|
|
4 |
Tags: infinite scroll, load more, ajax, lazy load, endless scroll, infinite scrolling, lazy loading, pagination, ajax, ajax posts, woocommerce, ajax load more, masonry
|
5 |
Requires at least: 4.4
|
6 |
Requires PHP: 5.6
|
7 |
-
Tested up to:
|
8 |
-
Stable tag: 5.5.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -263,6 +263,10 @@ How to install Ajax Load More.
|
|
263 |
|
264 |
== Changelog ==
|
265 |
|
|
|
|
|
|
|
|
|
266 |
= 5.5.2 - March 7, 2022 =
|
267 |
* NEW: Added `alm_ajaxurl` filter that allows for filtering the admin-ajax URL.
|
268 |
* FIX: Fixed issue with Filters add-on pagination links in `<noscript/> not maintinaing the querystring URLs e.g. ?pg=2, ?pg=3 etc.
|
4 |
Tags: infinite scroll, load more, ajax, lazy load, endless scroll, infinite scrolling, lazy loading, pagination, ajax, ajax posts, woocommerce, ajax load more, masonry
|
5 |
Requires at least: 4.4
|
6 |
Requires PHP: 5.6
|
7 |
+
Tested up to: 6.0
|
8 |
+
Stable tag: 5.5.3
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
263 |
|
264 |
== Changelog ==
|
265 |
|
266 |
+
= 5.5.3 - June 24, 2022 =
|
267 |
+
* UPDATE: Added support for lazy loading images with Blocksy Pro theme.
|
268 |
+
* FIX: Fixed issue with potential xs scriptiing issue. [report](https://github.com/dcooney/wordpress-ajax-load-more/issues/183)
|
269 |
+
|
270 |
= 5.5.2 - March 7, 2022 =
|
271 |
* NEW: Added `alm_ajaxurl` filter that allows for filtering the admin-ajax URL.
|
272 |
* FIX: Fixed issue with Filters add-on pagination links in `<noscript/> not maintinaing the querystring URLs e.g. ?pg=2, ?pg=3 etc.
|
ajax-load-more.php
CHANGED
@@ -7,15 +7,17 @@
|
|
7 |
* Author: Darren Cooney
|
8 |
* Twitter: @KaptonKaos
|
9 |
* Author URI: https://connekthq.com
|
10 |
-
* Version: 5.5.
|
11 |
* License: GPL
|
12 |
* Copyright: Darren Cooney & Connekt Media
|
13 |
*
|
14 |
* @package AjaxLoadMore
|
15 |
*/
|
16 |
|
17 |
-
|
18 |
-
|
|
|
|
|
19 |
define( 'ALM_STORE_URL', 'https://connekthq.com' );
|
20 |
|
21 |
/**
|
@@ -432,91 +434,92 @@ if ( ! class_exists( 'AjaxLoadMore' ) ) :
|
|
432 |
*/
|
433 |
public function alm_query_posts() {
|
434 |
|
435 |
-
// WPML fix for category/tag/taxonomy archives
|
436 |
if ( ( isset( $_GET['category'] ) && $_GET['category'] ) || ( isset( $_GET['taxonomy'] ) && $_GET['taxonomy'] ) || ( isset( $_GET['tag'] ) && $_GET['tag'] ) ) {
|
437 |
unset( $_REQUEST['post_id'] );
|
438 |
}
|
439 |
|
440 |
-
$id =
|
441 |
-
$post_id =
|
442 |
-
$slug =
|
443 |
-
$canonical_url =
|
444 |
-
$is_filters =
|
445 |
-
$filters_startpage =
|
|
|
|
|
|
|
446 |
|
447 |
-
//
|
448 |
-
$
|
449 |
-
|
450 |
-
$
|
451 |
-
$cache_logged_in = ( isset( $_GET['cache_logged_in'] ) ) ? $_GET['cache_logged_in'] : false;
|
452 |
-
$do_create_cache = ( $cache_logged_in === 'true' && is_user_logged_in() ) ? false : true;
|
453 |
|
454 |
-
// Offset
|
455 |
-
$offset =
|
456 |
|
457 |
-
// Repeater Templates
|
458 |
-
$repeater =
|
459 |
$type = alm_get_repeater_type( $repeater );
|
460 |
-
$theme_repeater =
|
461 |
|
462 |
-
// Post Type
|
463 |
$postType = ( isset( $_GET['post_type'] ) ) ? $_GET['post_type'] : 'post';
|
464 |
|
465 |
-
// Page Parameters
|
466 |
-
$posts_per_page =
|
467 |
-
$page =
|
468 |
|
469 |
-
// Advanced Custom Fields
|
470 |
-
$acfData =
|
471 |
if ( $acfData ) {
|
472 |
-
$acf =
|
473 |
-
$acf_post_id =
|
474 |
-
$acf_field_type =
|
475 |
-
$acf_field_name =
|
476 |
}
|
477 |
|
478 |
-
// Paging Add-on
|
479 |
-
$paging =
|
480 |
|
481 |
-
// Preload Add-on
|
482 |
-
$preloaded =
|
483 |
-
$preloaded_amount =
|
484 |
if ( has_action( 'alm_preload_installed' ) && $preloaded === 'true' ) {
|
485 |
-
// If
|
486 |
$old_offset = $preloaded_amount;
|
487 |
$offset = $offset + $preloaded_amount;
|
488 |
}
|
489 |
|
490 |
-
// CTA Add-on
|
491 |
-
|
492 |
-
|
493 |
-
if ( $
|
494 |
$cta = true;
|
495 |
-
$cta_position =
|
496 |
$cta_position_array = explode( ':', $cta_position );
|
497 |
$cta_pos = (string) $cta_position_array[0];
|
498 |
$cta_val = (string) $cta_position_array[1];
|
499 |
-
$cta_pos =
|
500 |
-
$cta_repeater =
|
501 |
-
$cta_theme_repeater =
|
502 |
}
|
503 |
|
504 |
// Single Post Add-on.
|
505 |
$single_post = false;
|
506 |
-
$single_post_data =
|
507 |
if ( $single_post_data ) {
|
508 |
$single_post = true;
|
509 |
-
$single_post_id =
|
510 |
-
$single_post_slug =
|
511 |
}
|
512 |
|
513 |
// SEO Add-on.
|
514 |
-
$seo_start_page =
|
515 |
|
516 |
// WooCommerce Add-on.
|
517 |
$woocommerce = ( isset( $_GET['woocommerce'] ) ) ? $_GET['woocommerce'] : false;
|
518 |
if ( $woocommerce ) {
|
519 |
-
$woocommerce_template = ( isset( $woocommerce['template'] ) ) ? sanitize_file_name( $
|
520 |
}
|
521 |
|
522 |
// Set up initial WP_Query $args.
|
7 |
* Author: Darren Cooney
|
8 |
* Twitter: @KaptonKaos
|
9 |
* Author URI: https://connekthq.com
|
10 |
+
* Version: 5.5.3
|
11 |
* License: GPL
|
12 |
* Copyright: Darren Cooney & Connekt Media
|
13 |
*
|
14 |
* @package AjaxLoadMore
|
15 |
*/
|
16 |
|
17 |
+
/* */
|
18 |
+
|
19 |
+
define( 'ALM_VERSION', '5.5.3' );
|
20 |
+
define( 'ALM_RELEASE', 'June 24, 2022' );
|
21 |
define( 'ALM_STORE_URL', 'https://connekthq.com' );
|
22 |
|
23 |
/**
|
434 |
*/
|
435 |
public function alm_query_posts() {
|
436 |
|
437 |
+
// WPML fix for category/tag/taxonomy archives.
|
438 |
if ( ( isset( $_GET['category'] ) && $_GET['category'] ) || ( isset( $_GET['taxonomy'] ) && $_GET['taxonomy'] ) || ( isset( $_GET['tag'] ) && $_GET['tag'] ) ) {
|
439 |
unset( $_REQUEST['post_id'] );
|
440 |
}
|
441 |
|
442 |
+
$id = isset( $_GET['id'] ) ? $_GET['id'] : '';
|
443 |
+
$post_id = isset( $_GET['post_id'] ) ? $_GET['post_id'] : '';
|
444 |
+
$slug = isset( $_GET['slug'] ) ? $_GET['slug'] : '';
|
445 |
+
$canonical_url = isset( $_GET['canonical_url'] ) ? esc_url( $_GET['canonical_url'] ) : esc_url( $_SERVER['HTTP_REFERER'] );
|
446 |
+
$is_filters = isset( $_GET['filters'] ) ? true : false;
|
447 |
+
$filters_startpage = isset( $_GET['filters_startpage'] ) && $is_filters ? $_GET['filters_startpage'] : 0;
|
448 |
+
|
449 |
+
// Ajax Query Type.
|
450 |
+
$queryType = isset( $_GET['query_type'] ) ? $_GET['query_type'] : 'standard'; // 'standard' or 'totalposts'; totalposts returns $alm_found_posts
|
451 |
|
452 |
+
// Cache.
|
453 |
+
$cache_id = isset( $_GET['cache_id'] ) ? $_GET['cache_id'] : '';
|
454 |
+
$cache_logged_in = isset( $_GET['cache_logged_in'] ) ? $_GET['cache_logged_in'] : false;
|
455 |
+
$do_create_cache = $cache_logged_in === 'true' && is_user_logged_in() ? false : true;
|
|
|
|
|
456 |
|
457 |
+
// Offset.
|
458 |
+
$offset = isset( $_GET['offset'] ) ? $_GET['offset'] : 0;
|
459 |
|
460 |
+
// Repeater Templates.
|
461 |
+
$repeater = isset( $_GET['repeater'] ) ? sanitize_file_name( $_GET['repeater'] ) : 'default';
|
462 |
$type = alm_get_repeater_type( $repeater );
|
463 |
+
$theme_repeater = isset( $_GET['theme_repeater'] ) ? sanitize_file_name( $_GET['theme_repeater'] ) : 'null';
|
464 |
|
465 |
+
// Post Type.
|
466 |
$postType = ( isset( $_GET['post_type'] ) ) ? $_GET['post_type'] : 'post';
|
467 |
|
468 |
+
// Page Parameters.
|
469 |
+
$posts_per_page = isset( $_GET['posts_per_page'] ) ? $_GET['posts_per_page'] : 5;
|
470 |
+
$page = isset( $_GET['page'] ) ? $_GET['page'] : 0;
|
471 |
|
472 |
+
// Advanced Custom Fields.
|
473 |
+
$acfData = isset( $_GET['acf'] ) ? $_GET['acf'] : false;
|
474 |
if ( $acfData ) {
|
475 |
+
$acf = isset( $acfData['acf'] ) ? $acfData['acf'] : false;
|
476 |
+
$acf_post_id = isset( $acfData['post_id'] ) ? $acfData['post_id'] : '';
|
477 |
+
$acf_field_type = isset( $acfData['field_type'] ) ? $acfData['field_type'] : '';
|
478 |
+
$acf_field_name = isset( $acfData['field_name'] ) ? $acfData['field_name'] : '';
|
479 |
}
|
480 |
|
481 |
+
// Paging Add-on.
|
482 |
+
$paging = isset( $_GET['paging'] ) ? $_GET['paging'] : 'false';
|
483 |
|
484 |
+
// Preload Add-on.
|
485 |
+
$preloaded = isset( $_GET['preloaded'] ) ? $_GET['preloaded'] : 'false';
|
486 |
+
$preloaded_amount = isset( $_GET['preloaded_amount'] ) ? $_GET['preloaded_amount'] : '5';
|
487 |
if ( has_action( 'alm_preload_installed' ) && $preloaded === 'true' ) {
|
488 |
+
// If preloaded - offset the ajax posts by posts_per_page + preload_amount val.
|
489 |
$old_offset = $preloaded_amount;
|
490 |
$offset = $offset + $preloaded_amount;
|
491 |
}
|
492 |
|
493 |
+
// CTA Add-on.
|
494 |
+
$cta = false;
|
495 |
+
$cta_data = isset( $_GET['cta'] ) ? $_GET['cta'] : false;
|
496 |
+
if ( $cta_data ) {
|
497 |
$cta = true;
|
498 |
+
$cta_position = isset( $cta_data['cta_position'] ) ? $cta_data['cta_position'] : 'before:1';
|
499 |
$cta_position_array = explode( ':', $cta_position );
|
500 |
$cta_pos = (string) $cta_position_array[0];
|
501 |
$cta_val = (string) $cta_position_array[1];
|
502 |
+
$cta_pos = $cta_pos !== 'after' ? 'before' : $cta_pos;
|
503 |
+
$cta_repeater = isset( $cta_data['cta_repeater'] ) ? $cta_data['cta_repeater'] : 'null';
|
504 |
+
$cta_theme_repeater = isset( $cta_data['cta_theme_repeater'] ) ? sanitize_file_name( $cta_data['cta_theme_repeater'] ) : 'null';
|
505 |
}
|
506 |
|
507 |
// Single Post Add-on.
|
508 |
$single_post = false;
|
509 |
+
$single_post_data = isset( $_GET['single_post'] ) ? $_GET['single_post'] : false;
|
510 |
if ( $single_post_data ) {
|
511 |
$single_post = true;
|
512 |
+
$single_post_id = isset( $single_post_data['id'] ) ? $single_post_data['id'] : '';
|
513 |
+
$single_post_slug = isset( $single_post_data['slug'] ) ? $single_post_data['slug'] : '';
|
514 |
}
|
515 |
|
516 |
// SEO Add-on.
|
517 |
+
$seo_start_page = isset( $_GET['seo_start_page'] ) ? $_GET['seo_start_page'] : 1;
|
518 |
|
519 |
// WooCommerce Add-on.
|
520 |
$woocommerce = ( isset( $_GET['woocommerce'] ) ) ? $_GET['woocommerce'] : false;
|
521 |
if ( $woocommerce ) {
|
522 |
+
$woocommerce_template = ( isset( $woocommerce['template'] ) ) ? sanitize_file_name( $cta_data['template'] ) : null;
|
523 |
}
|
524 |
|
525 |
// Set up initial WP_Query $args.
|
core/classes/class-alm-shortcode.php
CHANGED
@@ -488,7 +488,7 @@ if ( ! class_exists( 'ALM_SHORTCODE' ) ) :
|
|
488 |
$paging_transition = '';
|
489 |
if ( $paging === 'true' ) {
|
490 |
$paging_container_class = ' alm-paging-wrap';
|
491 |
-
$paging_transition = ' style="
|
492 |
// If Preloaded & Paging, pause loading by default.
|
493 |
if ( $preloaded === 'true' ) {
|
494 |
$pause = 'true';
|
@@ -943,14 +943,14 @@ if ( ! class_exists( 'ALM_SHORTCODE' ) ) :
|
|
943 |
// Preloaded Add-on.
|
944 |
if ( has_action( 'alm_preload_installed' ) && $preloaded === 'true' ) {
|
945 |
|
946 |
-
$preloaded =
|
947 |
|
948 |
// SEO > page 1.
|
949 |
-
$preloaded =
|
950 |
|
951 |
-
// Filters
|
952 |
if ( $filters && $_SERVER['QUERY_STRING'] ) {
|
953 |
-
$querystring = $_SERVER['QUERY_STRING'];
|
954 |
if ( isset( $_GET['pg'] ) ) {
|
955 |
$pg = $_GET['pg'];
|
956 |
$preloaded = ( $pg > 1 ) ? false : $preloaded;
|
@@ -958,10 +958,10 @@ if ( ! class_exists( 'ALM_SHORTCODE' ) ) :
|
|
958 |
}
|
959 |
}
|
960 |
|
961 |
-
// Set `is-preloaded` attribute to add `.alm-preloaded` class to first `.alm-reveal` div
|
962 |
-
$ajaxloadmore .=
|
963 |
|
964 |
-
// Add `preloaded` atts
|
965 |
$ajaxloadmore .= ' data-preloaded="' . $preloaded . '"';
|
966 |
$ajaxloadmore .= ' data-preloaded-amount="' . $preloaded_amount . '"';
|
967 |
}
|
@@ -1233,9 +1233,9 @@ if ( ! class_exists( 'ALM_SHORTCODE' ) ) :
|
|
1233 |
$repeater_type = null;
|
1234 |
}
|
1235 |
// Get current permalink - (including querystring).
|
1236 |
-
$single_post_permanlink =
|
1237 |
|
1238 |
-
// Get previous post include, build output from the next post filter
|
1239 |
$single_post_output = '<div class="alm-reveal alm-single-post post-' . $single_post_id . '" data-url="' . $single_post_permanlink . '" data-title="' . strip_tags( get_the_title( $single_post_id ) ) . '" data-id="' . $single_post_id . '" data-page="0">'; // Set the post id .alm-reveal div
|
1240 |
|
1241 |
/**
|
488 |
$paging_transition = '';
|
489 |
if ( $paging === 'true' ) {
|
490 |
$paging_container_class = ' alm-paging-wrap';
|
491 |
+
$paging_transition = ' style="transition: height 0.25s ease;"';
|
492 |
// If Preloaded & Paging, pause loading by default.
|
493 |
if ( $preloaded === 'true' ) {
|
494 |
$pause = 'true';
|
943 |
// Preloaded Add-on.
|
944 |
if ( has_action( 'alm_preload_installed' ) && $preloaded === 'true' ) {
|
945 |
|
946 |
+
$preloaded = $seo === 'true' && (int) $query_args['paged'] < 1 && $paging !== 'true' ? 'true' : $preloaded; // SEO page 1
|
947 |
|
948 |
// SEO > page 1.
|
949 |
+
$preloaded = $seo === 'true' && $query_args['paged'] > 1 && $paging !== 'true' ? false : $preloaded; // SEO page > 1
|
950 |
|
951 |
+
// Filters.
|
952 |
if ( $filters && $_SERVER['QUERY_STRING'] ) {
|
953 |
+
$querystring = esc_attr( $_SERVER['QUERY_STRING'] );
|
954 |
if ( isset( $_GET['pg'] ) ) {
|
955 |
$pg = $_GET['pg'];
|
956 |
$preloaded = ( $pg > 1 ) ? false : $preloaded;
|
958 |
}
|
959 |
}
|
960 |
|
961 |
+
// Set `is-preloaded` attribute to add `.alm-preloaded` class to first `.alm-reveal` div.
|
962 |
+
$ajaxloadmore .= $seo === 'true' && $query_args['paged'] > 1 ? ' data-is-preloaded="true"' : '';
|
963 |
|
964 |
+
// Add `preloaded` atts.
|
965 |
$ajaxloadmore .= ' data-preloaded="' . $preloaded . '"';
|
966 |
$ajaxloadmore .= ' data-preloaded-amount="' . $preloaded_amount . '"';
|
967 |
}
|
1233 |
$repeater_type = null;
|
1234 |
}
|
1235 |
// Get current permalink - (including querystring).
|
1236 |
+
$single_post_permanlink = $_SERVER['QUERY_STRING'] ? get_permalink( $single_post_id ) . '?' . esc_attr( $_SERVER['QUERY_STRING'] ) : get_permalink( $single_post_id );
|
1237 |
|
1238 |
+
// Get previous post include, build output from the next post filter.
|
1239 |
$single_post_output = '<div class="alm-reveal alm-single-post post-' . $single_post_id . '" data-url="' . $single_post_permanlink . '" data-title="' . strip_tags( get_the_title( $single_post_id ) ) . '" data-id="' . $single_post_id . '" data-page="0">'; // Set the post id .alm-reveal div
|
1240 |
|
1241 |
/**
|
core/dist/js/ajax-load-more.js
CHANGED
@@ -6002,6 +6002,14 @@ function replaceSrc(img) {
|
|
6002 |
if (img.dataset.srcset) {
|
6003 |
img.srcset = img.dataset.srcset;
|
6004 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6005 |
}
|
6006 |
}
|
6007 |
|
6002 |
if (img.dataset.srcset) {
|
6003 |
img.srcset = img.dataset.srcset;
|
6004 |
}
|
6005 |
+
// Blocksy Pro.
|
6006 |
+
// @see https://creativethemes.com/blocksy
|
6007 |
+
if (img.dataset.ctLazy) {
|
6008 |
+
img.src = img.dataset.ctLazy;
|
6009 |
+
}
|
6010 |
+
if (img.dataset.ctLazySet) {
|
6011 |
+
img.srcset = img.dataset.ctLazySet;
|
6012 |
+
}
|
6013 |
}
|
6014 |
}
|
6015 |
|
core/dist/js/ajax-load-more.min.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
var ajaxloadmore=function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)n.d(r,o,function(e){return t[e]}.bind(null,o));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=99)}([function(t,e,n){var r=n(1),o=n(7),a=n(15),i=n(12),s=n(18),l=function(t,e,n){var c,u,d,f,p=t&l.F,g=t&l.G,m=t&l.S,h=t&l.P,v=t&l.B,y=g?r:m?r[e]||(r[e]={}):(r[e]||{}).prototype,_=g?o:o[e]||(o[e]={}),b=_.prototype||(_.prototype={});for(c in g&&(n=e),n)d=((u=!p&&y&&void 0!==y[c])?y:n)[c],f=v&&u?s(d,r):h&&"function"==typeof d?s(Function.call,d):d,y&&i(y,c,d,t&l.U),_[c]!=d&&a(_,c,f),h&&b[c]!=d&&(b[c]=d)};r.core=o,l.F=1,l.G=2,l.S=4,l.P=8,l.B=16,l.W=32,l.U=64,l.R=128,t.exports=l},function(t,e){var n=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e,n){var r=n(4);t.exports=function(t){if(!r(t))throw TypeError(t+" is not an object!");return t}},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e,n){var r=n(54)("wks"),o=n(30),a=n(1).Symbol,i="function"==typeof a;(t.exports=function(t){return r[t]||(r[t]=i&&a[t]||(i?a:o)("Symbol."+t))}).store=r},function(t,e,n){var r=n(20),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},function(t,e){var n=t.exports={version:"2.6.12"};"number"==typeof __e&&(__e=n)},function(t,e,n){t.exports=!n(2)((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},function(t,e,n){var r=n(3),o=n(114),a=n(27),i=Object.defineProperty;e.f=n(8)?Object.defineProperty:function(t,e,n){if(r(t),e=a(e,!0),r(n),o)try{return i(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(t[e]=n.value),t}},function(t,e,n){var r=n(25);t.exports=function(t){return Object(r(t))}},function(t,e,n){"use strict";var r=n(100),o=Object.prototype.toString;function a(t){return"[object Array]"===o.call(t)}function i(t){return void 0===t}function s(t){return null!==t&&"object"==typeof t}function l(t){if("[object Object]"!==o.call(t))return!1;var e=Object.getPrototypeOf(t);return null===e||e===Object.prototype}function c(t){return"[object Function]"===o.call(t)}function u(t,e){if(null!=t)if("object"!=typeof t&&(t=[t]),a(t))for(var n=0,r=t.length;n<r;n++)e.call(null,t[n],n,t);else for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&e.call(null,t[o],o,t)}t.exports={isArray:a,isArrayBuffer:function(t){return"[object ArrayBuffer]"===o.call(t)},isBuffer:function(t){return null!==t&&!i(t)&&null!==t.constructor&&!i(t.constructor)&&"function"==typeof t.constructor.isBuffer&&t.constructor.isBuffer(t)},isFormData:function(t){return"undefined"!=typeof FormData&&t instanceof FormData},isArrayBufferView:function(t){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(t):t&&t.buffer&&t.buffer instanceof ArrayBuffer},isString:function(t){return"string"==typeof t},isNumber:function(t){return"number"==typeof t},isObject:s,isPlainObject:l,isUndefined:i,isDate:function(t){return"[object Date]"===o.call(t)},isFile:function(t){return"[object File]"===o.call(t)},isBlob:function(t){return"[object Blob]"===o.call(t)},isFunction:c,isStream:function(t){return s(t)&&c(t.pipe)},isURLSearchParams:function(t){return"undefined"!=typeof URLSearchParams&&t instanceof URLSearchParams},isStandardBrowserEnv:function(){return("undefined"==typeof navigator||"ReactNative"!==navigator.product&&"NativeScript"!==navigator.product&&"NS"!==navigator.product)&&("undefined"!=typeof window&&"undefined"!=typeof document)},forEach:u,merge:function t(){var e={};function n(n,r){l(e[r])&&l(n)?e[r]=t(e[r],n):l(n)?e[r]=t({},n):a(n)?e[r]=n.slice():e[r]=n}for(var r=0,o=arguments.length;r<o;r++)u(arguments[r],n);return e},extend:function(t,e,n){return u(e,(function(e,o){t[o]=n&&"function"==typeof e?r(e,n):e})),t},trim:function(t){return t.trim?t.trim():t.replace(/^\s+|\s+$/g,"")},stripBOM:function(t){return 65279===t.charCodeAt(0)&&(t=t.slice(1)),t}}},function(t,e,n){var r=n(1),o=n(15),a=n(14),i=n(30)("src"),s=n(192),l=(""+s).split("toString");n(7).inspectSource=function(t){return s.call(t)},(t.exports=function(t,e,n,s){var c="function"==typeof n;c&&(a(n,"name")||o(n,"name",e)),t[e]!==n&&(c&&(a(n,i)||o(n,i,t[e]?""+t[e]:l.join(String(e)))),t===r?t[e]=n:s?t[e]?t[e]=n:o(t,e,n):(delete t[e],o(t,e,n)))})(Function.prototype,"toString",(function(){return"function"==typeof this&&this[i]||s.call(this)}))},function(t,e,n){var r=n(0),o=n(2),a=n(25),i=/"/g,s=function(t,e,n,r){var o=String(a(t)),s="<"+e;return""!==n&&(s+=" "+n+'="'+String(r).replace(i,""")+'"'),s+">"+o+"</"+e+">"};t.exports=function(t,e){var n={};n[t]=e(s),r(r.P+r.F*o((function(){var e=""[t]('"');return e!==e.toLowerCase()||e.split('"').length>3})),"String",n)}},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e,n){var r=n(9),o=n(29);t.exports=n(8)?function(t,e,n){return r.f(t,e,o(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){var r=n(45),o=n(25);t.exports=function(t){return r(o(t))}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){return!!t&&r((function(){e?t.call(null,(function(){}),1):t.call(null)}))}},function(t,e,n){var r=n(19);t.exports=function(t,e,n){if(r(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,o){return t.call(e,n,r,o)}}return function(){return t.apply(e,arguments)}}},function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,e){var n=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:n)(t)}},function(t,e,n){var r=n(46),o=n(29),a=n(16),i=n(27),s=n(14),l=n(114),c=Object.getOwnPropertyDescriptor;e.f=n(8)?c:function(t,e){if(t=a(t),e=i(e,!0),l)try{return c(t,e)}catch(t){}if(s(t,e))return o(!r.f.call(t,e),t[e])}},function(t,e,n){var r=n(0),o=n(7),a=n(2);t.exports=function(t,e){var n=(o.Object||{})[t]||Object[t],i={};i[t]=e(n),r(r.S+r.F*a((function(){n(1)})),"Object",i)}},function(t,e,n){var r=n(18),o=n(45),a=n(10),i=n(6),s=n(130);t.exports=function(t,e){var n=1==t,l=2==t,c=3==t,u=4==t,d=6==t,f=5==t||d,p=e||s;return function(e,s,g){for(var m,h,v=a(e),y=o(v),_=r(s,g,3),b=i(y.length),w=0,x=n?p(e,b):l?p(e,0):void 0;b>w;w++)if((f||w in y)&&(h=_(m=y[w],w,v),t))if(n)x[w]=h;else if(h)switch(t){case 3:return!0;case 5:return m;case 6:return w;case 2:x.push(m)}else if(u)return!1;return d?-1:c||u?u:x}}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},function(t,e,n){"use strict";if(n(8)){var r=n(31),o=n(1),a=n(2),i=n(0),s=n(65),l=n(97),c=n(18),u=n(43),d=n(29),f=n(15),p=n(44),g=n(20),m=n(6),h=n(141),v=n(33),y=n(27),_=n(14),b=n(47),w=n(4),x=n(10),S=n(89),A=n(34),j=n(36),P=n(35).f,L=n(91),E=n(30),O=n(5),M=n(23),T=n(55),I=n(48),C=n(93),N=n(41),k=n(58),F=n(42),R=n(92),q=n(132),D=n(9),z=n(21),B=D.f,U=z.f,W=o.RangeError,H=o.TypeError,V=o.Uint8Array,G=Array.prototype,Y=l.ArrayBuffer,X=l.DataView,J=M(0),Q=M(2),$=M(3),K=M(4),Z=M(5),tt=M(6),et=T(!0),nt=T(!1),rt=C.values,ot=C.keys,at=C.entries,it=G.lastIndexOf,st=G.reduce,lt=G.reduceRight,ct=G.join,ut=G.sort,dt=G.slice,ft=G.toString,pt=G.toLocaleString,gt=O("iterator"),mt=O("toStringTag"),ht=E("typed_constructor"),vt=E("def_constructor"),yt=s.CONSTR,_t=s.TYPED,bt=s.VIEW,wt=M(1,(function(t,e){return Pt(I(t,t[vt]),e)})),xt=a((function(){return 1===new V(new Uint16Array([1]).buffer)[0]})),St=!!V&&!!V.prototype.set&&a((function(){new V(1).set({})})),At=function(t,e){var n=g(t);if(n<0||n%e)throw W("Wrong offset!");return n},jt=function(t){if(w(t)&&_t in t)return t;throw H(t+" is not a typed array!")},Pt=function(t,e){if(!w(t)||!(ht in t))throw H("It is not a typed array constructor!");return new t(e)},Lt=function(t,e){return Et(I(t,t[vt]),e)},Et=function(t,e){for(var n=0,r=e.length,o=Pt(t,r);r>n;)o[n]=e[n++];return o},Ot=function(t,e,n){B(t,e,{get:function(){return this._d[n]}})},Mt=function(t){var e,n,r,o,a,i,s=x(t),l=arguments.length,u=l>1?arguments[1]:void 0,d=void 0!==u,f=L(s);if(null!=f&&!S(f)){for(i=f.call(s),r=[],e=0;!(a=i.next()).done;e++)r.push(a.value);s=r}for(d&&l>2&&(u=c(u,arguments[2],2)),e=0,n=m(s.length),o=Pt(this,n);n>e;e++)o[e]=d?u(s[e],e):s[e];return o},Tt=function(){for(var t=0,e=arguments.length,n=Pt(this,e);e>t;)n[t]=arguments[t++];return n},It=!!V&&a((function(){pt.call(new V(1))})),Ct=function(){return pt.apply(It?dt.call(jt(this)):jt(this),arguments)},Nt={copyWithin:function(t,e){return q.call(jt(this),t,e,arguments.length>2?arguments[2]:void 0)},every:function(t){return K(jt(this),t,arguments.length>1?arguments[1]:void 0)},fill:function(t){return R.apply(jt(this),arguments)},filter:function(t){return Lt(this,Q(jt(this),t,arguments.length>1?arguments[1]:void 0))},find:function(t){return Z(jt(this),t,arguments.length>1?arguments[1]:void 0)},findIndex:function(t){return tt(jt(this),t,arguments.length>1?arguments[1]:void 0)},forEach:function(t){J(jt(this),t,arguments.length>1?arguments[1]:void 0)},indexOf:function(t){return nt(jt(this),t,arguments.length>1?arguments[1]:void 0)},includes:function(t){return et(jt(this),t,arguments.length>1?arguments[1]:void 0)},join:function(t){return ct.apply(jt(this),arguments)},lastIndexOf:function(t){return it.apply(jt(this),arguments)},map:function(t){return wt(jt(this),t,arguments.length>1?arguments[1]:void 0)},reduce:function(t){return st.apply(jt(this),arguments)},reduceRight:function(t){return lt.apply(jt(this),arguments)},reverse:function(){for(var t,e=jt(this).length,n=Math.floor(e/2),r=0;r<n;)t=this[r],this[r++]=this[--e],this[e]=t;return this},some:function(t){return $(jt(this),t,arguments.length>1?arguments[1]:void 0)},sort:function(t){return ut.call(jt(this),t)},subarray:function(t,e){var n=jt(this),r=n.length,o=v(t,r);return new(I(n,n[vt]))(n.buffer,n.byteOffset+o*n.BYTES_PER_ELEMENT,m((void 0===e?r:v(e,r))-o))}},kt=function(t,e){return Lt(this,dt.call(jt(this),t,e))},Ft=function(t){jt(this);var e=At(arguments[1],1),n=this.length,r=x(t),o=m(r.length),a=0;if(o+e>n)throw W("Wrong length!");for(;a<o;)this[e+a]=r[a++]},Rt={entries:function(){return at.call(jt(this))},keys:function(){return ot.call(jt(this))},values:function(){return rt.call(jt(this))}},qt=function(t,e){return w(t)&&t[_t]&&"symbol"!=typeof e&&e in t&&String(+e)==String(e)},Dt=function(t,e){return qt(t,e=y(e,!0))?d(2,t[e]):U(t,e)},zt=function(t,e,n){return!(qt(t,e=y(e,!0))&&w(n)&&_(n,"value"))||_(n,"get")||_(n,"set")||n.configurable||_(n,"writable")&&!n.writable||_(n,"enumerable")&&!n.enumerable?B(t,e,n):(t[e]=n.value,t)};yt||(z.f=Dt,D.f=zt),i(i.S+i.F*!yt,"Object",{getOwnPropertyDescriptor:Dt,defineProperty:zt}),a((function(){ft.call({})}))&&(ft=pt=function(){return ct.call(this)});var Bt=p({},Nt);p(Bt,Rt),f(Bt,gt,Rt.values),p(Bt,{slice:kt,set:Ft,constructor:function(){},toString:ft,toLocaleString:Ct}),Ot(Bt,"buffer","b"),Ot(Bt,"byteOffset","o"),Ot(Bt,"byteLength","l"),Ot(Bt,"length","e"),B(Bt,mt,{get:function(){return this[_t]}}),t.exports=function(t,e,n,l){var c=t+((l=!!l)?"Clamped":"")+"Array",d="get"+t,p="set"+t,g=o[c],v=g||{},y=g&&j(g),_=!g||!s.ABV,x={},S=g&&g.prototype,L=function(t,n){B(t,n,{get:function(){return function(t,n){var r=t._d;return r.v[d](n*e+r.o,xt)}(this,n)},set:function(t){return function(t,n,r){var o=t._d;l&&(r=(r=Math.round(r))<0?0:r>255?255:255&r),o.v[p](n*e+o.o,r,xt)}(this,n,t)},enumerable:!0})};_?(g=n((function(t,n,r,o){u(t,g,c,"_d");var a,i,s,l,d=0,p=0;if(w(n)){if(!(n instanceof Y||"ArrayBuffer"==(l=b(n))||"SharedArrayBuffer"==l))return _t in n?Et(g,n):Mt.call(g,n);a=n,p=At(r,e);var v=n.byteLength;if(void 0===o){if(v%e)throw W("Wrong length!");if((i=v-p)<0)throw W("Wrong length!")}else if((i=m(o)*e)+p>v)throw W("Wrong length!");s=i/e}else s=h(n),a=new Y(i=s*e);for(f(t,"_d",{b:a,o:p,l:i,e:s,v:new X(a)});d<s;)L(t,d++)})),S=g.prototype=A(Bt),f(S,"constructor",g)):a((function(){g(1)}))&&a((function(){new g(-1)}))&&k((function(t){new g,new g(null),new g(1.5),new g(t)}),!0)||(g=n((function(t,n,r,o){var a;return u(t,g,c),w(n)?n instanceof Y||"ArrayBuffer"==(a=b(n))||"SharedArrayBuffer"==a?void 0!==o?new v(n,At(r,e),o):void 0!==r?new v(n,At(r,e)):new v(n):_t in n?Et(g,n):Mt.call(g,n):new v(h(n))})),J(y!==Function.prototype?P(v).concat(P(y)):P(v),(function(t){t in g||f(g,t,v[t])})),g.prototype=S,r||(S.constructor=g));var E=S[gt],O=!!E&&("values"==E.name||null==E.name),M=Rt.values;f(g,ht,!0),f(S,_t,c),f(S,bt,!0),f(S,vt,g),(l?new g(1)[mt]==c:mt in S)||B(S,mt,{get:function(){return c}}),x[c]=g,i(i.G+i.W+i.F*(g!=v),x),i(i.S,c,{BYTES_PER_ELEMENT:e}),i(i.S+i.F*a((function(){v.of.call(g,1)})),c,{from:Mt,of:Tt}),"BYTES_PER_ELEMENT"in S||f(S,"BYTES_PER_ELEMENT",e),i(i.P,c,Nt),F(c),i(i.P+i.F*St,c,{set:Ft}),i(i.P+i.F*!O,c,Rt),r||S.toString==ft||(S.toString=ft),i(i.P+i.F*a((function(){new g(1).slice()})),c,{slice:kt}),i(i.P+i.F*(a((function(){return[1,2].toLocaleString()!=new g([1,2]).toLocaleString()}))||!a((function(){S.toLocaleString.call([1,2])}))),c,{toLocaleString:Ct}),N[c]=O?E:M,r||O||f(S,gt,M)}}else t.exports=function(){}},function(t,e,n){var r=n(4);t.exports=function(t,e){if(!r(t))return t;var n,o;if(e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;if("function"==typeof(n=t.valueOf)&&!r(o=n.call(t)))return o;if(!e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,e,n){var r=n(30)("meta"),o=n(4),a=n(14),i=n(9).f,s=0,l=Object.isExtensible||function(){return!0},c=!n(2)((function(){return l(Object.preventExtensions({}))})),u=function(t){i(t,r,{value:{i:"O"+ ++s,w:{}}})},d=t.exports={KEY:r,NEED:!1,fastKey:function(t,e){if(!o(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!a(t,r)){if(!l(t))return"F";if(!e)return"E";u(t)}return t[r].i},getWeak:function(t,e){if(!a(t,r)){if(!l(t))return!0;if(!e)return!1;u(t)}return t[r].w},onFreeze:function(t){return c&&d.NEED&&l(t)&&!a(t,r)&&u(t),t}}},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e){var n=0,r=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++n+r).toString(36))}},function(t,e){t.exports=!1},function(t,e,n){var r=n(116),o=n(76);t.exports=Object.keys||function(t){return r(t,o)}},function(t,e,n){var r=n(20),o=Math.max,a=Math.min;t.exports=function(t,e){return(t=r(t))<0?o(t+e,0):a(t,e)}},function(t,e,n){var r=n(3),o=n(117),a=n(76),i=n(75)("IE_PROTO"),s=function(){},l=function(){var t,e=n(73)("iframe"),r=a.length;for(e.style.display="none",n(77).appendChild(e),e.src="javascript:",(t=e.contentWindow.document).open(),t.write("<script>document.F=Object<\/script>"),t.close(),l=t.F;r--;)delete l.prototype[a[r]];return l()};t.exports=Object.create||function(t,e){var n;return null!==t?(s.prototype=r(t),n=new s,s.prototype=null,n[i]=t):n=l(),void 0===e?n:o(n,e)}},function(t,e,n){var r=n(116),o=n(76).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},function(t,e,n){var r=n(14),o=n(10),a=n(75)("IE_PROTO"),i=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=o(t),r(t,a)?t[a]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?i:null}},function(t,e,n){var r=n(5)("unscopables"),o=Array.prototype;null==o[r]&&n(15)(o,r,{}),t.exports=function(t){o[r][t]=!0}},function(t,e,n){var r=n(4);t.exports=function(t,e){if(!r(t)||t._t!==e)throw TypeError("Incompatible receiver, "+e+" required!");return t}},function(t,e,n){var r=n(9).f,o=n(14),a=n(5)("toStringTag");t.exports=function(t,e,n){t&&!o(t=n?t:t.prototype,a)&&r(t,a,{configurable:!0,value:e})}},function(t,e,n){var r=n(0),o=n(25),a=n(2),i=n(79),s="["+i+"]",l=RegExp("^"+s+s+"*"),c=RegExp(s+s+"*$"),u=function(t,e,n){var o={},s=a((function(){return!!i[t]()||"
"!="
"[t]()})),l=o[t]=s?e(d):i[t];n&&(o[n]=l),r(r.P+r.F*s,"String",o)},d=u.trim=function(t,e){return t=String(o(t)),1&e&&(t=t.replace(l,"")),2&e&&(t=t.replace(c,"")),t};t.exports=u},function(t,e){t.exports={}},function(t,e,n){"use strict";var r=n(1),o=n(9),a=n(8),i=n(5)("species");t.exports=function(t){var e=r[t];a&&e&&!e[i]&&o.f(e,i,{configurable:!0,get:function(){return this}})}},function(t,e){t.exports=function(t,e,n,r){if(!(t instanceof e)||void 0!==r&&r in t)throw TypeError(n+": incorrect invocation!");return t}},function(t,e,n){var r=n(12);t.exports=function(t,e,n){for(var o in e)r(t,o,e[o],n);return t}},function(t,e,n){var r=n(24);t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==r(t)?t.split(""):Object(t)}},function(t,e){e.f={}.propertyIsEnumerable},function(t,e,n){var r=n(24),o=n(5)("toStringTag"),a="Arguments"==r(function(){return arguments}());t.exports=function(t){var e,n,i;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=function(t,e){try{return t[e]}catch(t){}}(e=Object(t),o))?n:a?r(e):"Object"==(i=r(e))&&"function"==typeof e.callee?"Arguments":i}},function(t,e,n){var r=n(3),o=n(19),a=n(5)("species");t.exports=function(t,e){var n,i=r(t).constructor;return void 0===i||null==(n=r(i)[a])?e:o(n)}},function(t,e,n){"use strict";(function(e){var r=n(11),o=n(152),a=n(102),i={"Content-Type":"application/x-www-form-urlencoded"};function s(t,e){!r.isUndefined(t)&&r.isUndefined(t["Content-Type"])&&(t["Content-Type"]=e)}var l,c={transitional:{silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},adapter:(("undefined"!=typeof XMLHttpRequest||void 0!==e&&"[object process]"===Object.prototype.toString.call(e))&&(l=n(103)),l),transformRequest:[function(t,e){return o(e,"Accept"),o(e,"Content-Type"),r.isFormData(t)||r.isArrayBuffer(t)||r.isBuffer(t)||r.isStream(t)||r.isFile(t)||r.isBlob(t)?t:r.isArrayBufferView(t)?t.buffer:r.isURLSearchParams(t)?(s(e,"application/x-www-form-urlencoded;charset=utf-8"),t.toString()):r.isObject(t)||e&&"application/json"===e["Content-Type"]?(s(e,"application/json"),function(t,e,n){if(r.isString(t))try{return(e||JSON.parse)(t),r.trim(t)}catch(t){if("SyntaxError"!==t.name)throw t}return(n||JSON.stringify)(t)}(t)):t}],transformResponse:[function(t){var e=this.transitional||c.transitional,n=e&&e.silentJSONParsing,o=e&&e.forcedJSONParsing,i=!n&&"json"===this.responseType;if(i||o&&r.isString(t)&&t.length)try{return JSON.parse(t)}catch(t){if(i){if("SyntaxError"===t.name)throw a(t,this,"E_JSON_PARSE");throw t}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};r.forEach(["delete","get","head"],(function(t){c.headers[t]={}})),r.forEach(["post","put","patch"],(function(t){c.headers[t]=r.merge(i)})),t.exports=c}).call(this,n(151))},function(t,e,n){"use strict";function r(t){this.message=t}r.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},r.prototype.__CANCEL__=!0,t.exports=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.default=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,o=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(!alm_localize.a11y_focus)return!1;t.addons.woocommerce||t.addons.elementor?r(!1,!1,e,!1,t.isSafari):t.transition_container&&n>0?t.addons.paging?r(t.init,t.addons.preloaded,t.listing,o,t.isSafari):t.addons.single_post||t.addons.nextpage?r(!1,t.addons.preloaded,e,o,t.isSafari):r(t.init,t.addons.preloaded,e,o,t.isSafari):t.transition_container||r(t.init,t.addons.preloaded,e[0],o,t.isSafari)};var r=function(){var t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"false",n=arguments[2],r=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(!r&&(t||!n)&&"true"!==e)return!1;n.setAttribute("tabIndex","-1"),n.style.outline="none";var o=n.classList.contains("alm-listing")?n:n.parentNode,a=o.dataset.scrollContainer;if(a){var i=document.querySelector(a);i&&setTimeout((function(){n.focus({preventScroll:!0})}),50)}else setTimeout((function(){n.focus({preventScroll:!0})}),50)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.default=function(t,e){if(0==e)t.style.opacity=1,t.style.height="auto";else{e/=10;var n=0,r=setInterval((function(){n>.9&&(t.style.opacity=1,clearInterval(r)),t.style.opacity=n,n+=.1}),e);t.style.height="auto"}}},function(t,e,n){"use strict";function r(t){var e=t.getElementsByTagName("img");e&&Array.prototype.forEach.call(e,(function(t){t&&function(t){t&&(t.dataset.src&&(t.src=t.dataset.src),t.dataset.srcset&&(t.srcset=t.dataset.srcset))}(t)}))}Object.defineProperty(e,"__esModule",{value:!0}),e.lazyImages=function(t){if(!t||!t.lazy_images)return;r(t.el)},e.lazyImagesReplace=r},function(t,e,n){var r=n(7),o=n(1),a=o["__core-js_shared__"]||(o["__core-js_shared__"]={});(t.exports=function(t,e){return a[t]||(a[t]=void 0!==e?e:{})})("versions",[]).push({version:r.version,mode:n(31)?"pure":"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"})},function(t,e,n){var r=n(16),o=n(6),a=n(33);t.exports=function(t){return function(e,n,i){var s,l=r(e),c=o(l.length),u=a(i,c);if(t&&n!=n){for(;c>u;)if((s=l[u++])!=s)return!0}else for(;c>u;u++)if((t||u in l)&&l[u]===n)return t||u||0;return!t&&-1}}},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,n){var r=n(24);t.exports=Array.isArray||function(t){return"Array"==r(t)}},function(t,e,n){var r=n(5)("iterator"),o=!1;try{var a=[7][r]();a.return=function(){o=!0},Array.from(a,(function(){throw 2}))}catch(t){}t.exports=function(t,e){if(!e&&!o)return!1;var n=!1;try{var a=[7],i=a[r]();i.next=function(){return{done:n=!0}},a[r]=function(){return i},t(a)}catch(t){}return n}},function(t,e,n){"use strict";var r=n(3);t.exports=function(){var t=r(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e}},function(t,e,n){"use strict";var r=n(47),o=RegExp.prototype.exec;t.exports=function(t,e){var n=t.exec;if("function"==typeof n){var a=n.call(t,e);if("object"!=typeof a)throw new TypeError("RegExp exec method returned something other than an Object or null");return a}if("RegExp"!==r(t))throw new TypeError("RegExp#exec called on incompatible receiver");return o.call(t,e)}},function(t,e,n){"use strict";n(134);var r=n(12),o=n(15),a=n(2),i=n(25),s=n(5),l=n(94),c=s("species"),u=!a((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")})),d=function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var n="ab".split(t);return 2===n.length&&"a"===n[0]&&"b"===n[1]}();t.exports=function(t,e,n){var f=s(t),p=!a((function(){var e={};return e[f]=function(){return 7},7!=""[t](e)})),g=p?!a((function(){var e=!1,n=/a/;return n.exec=function(){return e=!0,null},"split"===t&&(n.constructor={},n.constructor[c]=function(){return n}),n[f](""),!e})):void 0;if(!p||!g||"replace"===t&&!u||"split"===t&&!d){var m=/./[f],h=n(i,f,""[t],(function(t,e,n,r,o){return e.exec===l?p&&!o?{done:!0,value:m.call(e,n,r)}:{done:!0,value:t.call(n,e,r)}:{done:!1}})),v=h[0],y=h[1];r(String.prototype,t,v),o(RegExp.prototype,f,2==e?function(t,e){return y.call(t,this,e)}:function(t){return y.call(t,this)})}}},function(t,e,n){var r=n(18),o=n(129),a=n(89),i=n(3),s=n(6),l=n(91),c={},u={};(e=t.exports=function(t,e,n,d,f){var p,g,m,h,v=f?function(){return t}:l(t),y=r(n,d,e?2:1),_=0;if("function"!=typeof v)throw TypeError(t+" is not iterable!");if(a(v)){for(p=s(t.length);p>_;_++)if((h=e?y(i(g=t[_])[0],g[1]):y(t[_]))===c||h===u)return h}else for(m=v.call(t);!(g=m.next()).done;)if((h=o(m,y,g.value,e))===c||h===u)return h}).BREAK=c,e.RETURN=u},function(t,e,n){var r=n(1).navigator;t.exports=r&&r.userAgent||""},function(t,e,n){"use strict";var r=n(1),o=n(0),a=n(12),i=n(44),s=n(28),l=n(62),c=n(43),u=n(4),d=n(2),f=n(58),p=n(39),g=n(80);t.exports=function(t,e,n,m,h,v){var y=r[t],_=y,b=h?"set":"add",w=_&&_.prototype,x={},S=function(t){var e=w[t];a(w,t,"delete"==t||"has"==t?function(t){return!(v&&!u(t))&&e.call(this,0===t?0:t)}:"get"==t?function(t){return v&&!u(t)?void 0:e.call(this,0===t?0:t)}:"add"==t?function(t){return e.call(this,0===t?0:t),this}:function(t,n){return e.call(this,0===t?0:t,n),this})};if("function"==typeof _&&(v||w.forEach&&!d((function(){(new _).entries().next()})))){var A=new _,j=A[b](v?{}:-0,1)!=A,P=d((function(){A.has(1)})),L=f((function(t){new _(t)})),E=!v&&d((function(){for(var t=new _,e=5;e--;)t[b](e,e);return!t.has(-0)}));L||((_=e((function(e,n){c(e,_,t);var r=g(new y,e,_);return null!=n&&l(n,h,r[b],r),r}))).prototype=w,w.constructor=_),(P||E)&&(S("delete"),S("has"),h&&S("get")),(E||j)&&S(b),v&&w.clear&&delete w.clear}else _=m.getConstructor(e,t,h,b),i(_.prototype,n),s.NEED=!0;return p(_,t),x[t]=_,o(o.G+o.W+o.F*(_!=y),x),v||m.setStrong(_,t,h),_}},function(t,e,n){for(var r,o=n(1),a=n(15),i=n(30),s=i("typed_array"),l=i("view"),c=!(!o.ArrayBuffer||!o.DataView),u=c,d=0,f="Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array".split(",");d<9;)(r=o[f[d++]])?(a(r.prototype,s,!0),a(r.prototype,l,!0)):u=!1;t.exports={ABV:c,CONSTR:u,TYPED:s,VIEW:l}},function(t,e,n){t.exports=n(146)},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.parseQuerystring=function(t){var e=window.location.search.substring(1),n="",r="";e&&((n=JSON.parse('{"'+e.replace(/&/g,'","').replace(/=/g,'":"')+'"}',(function(t,e){return""===t?e:decodeURIComponent(e.replace(/\+/g,"-"))}))).pg&&delete n.pg,n.auto&&delete n.auto);n&&(r+="/",Object.keys(n).forEach((function(t,e){r+=e>0?"--":"",r+=t+"--"+n[t]})));return t+r},e.buildFilterURL=i,e.createMasonryFiltersPage=function(t,e){if(!t.addons.filters)return e;var n=window.location.search,r=t.page+1;return r="true"===t.addons.preloaded?r+1:r,e=s(t,e,n,r)},e.createMasonryFiltersPages=function(t,e){if(!t.addons.filters)return e;var n=1,r=t.page,o=window.location.search;if(t.addons.filters_startpage>1){for(var a=parseInt(t.posts_per_page),i=[],l=0;l<e.length;l+=a)i.push(e.slice(l,a+l));for(var c=0;c<i.length;c++){var u=c>0?c*a:0;n=c+1,e[u]&&(e[u]=s(t,e[u],o,n))}}else n=r,e&&e[0]&&(e[0]=s(t,e[0],o,n));return e};var r,o=n(170),a=(r=o)&&r.__esModule?r:{default:r};function i(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,r=e;return t.addons.filters_paging&&(r=n>1?r?(0,a.default)("pg")?e.replace(/(pg=)[^\&]+/,"$1"+n):e+"&pg="+n:"?pg="+n:"&"===(r="?"===(r=e.replace(/(pg=)[^\&]+/,""))?"":r)[r.length-1]?r.slice(0,-1):r),r}function s(t,e,n,r){if(e.classList.add("alm-filters"),e.dataset.page=r,r>1)e.dataset.url=t.canonical_url+i(t,n,r);else{var o=n.replace(/(pg=)[^\&]+/,"");o="?"===o?"":o,e.dataset.url=t.canonical_url+o}return e}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.default=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"text/html";if(!t)return!1;var n=new DOMParser,r=n.parseFromString(t,e);return r?Array.prototype.slice.call(r.body.childNodes):r}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.getButtonURL=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"next";if(!t||!t.trigger)return!1;var n=t.trigger.querySelector(".alm-load-more-btn");"prev"===e&&(n=document.querySelector(".alm-load-more-btn--prev"));var r=n?n.dataset.url:"";return r||""},e.setButtonAtts=function(t,e,n){t&&(t.rel&&"prev"===t.rel&&(t.href=n),t.dataset.page=e,t.dataset.url=n||"")}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.default=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";if(!t)return!1;if(e.indexOf("Safari")>-1&&-1!=e.indexOf("Chrome")||e.indexOf("Firefox")>-1||e.indexOf("Windows")>-1)return!1;for(var n=t.querySelectorAll("img[srcset]:not(.alm-loaded)"),r=0;r<n.length;r++){var o=n[r];o.classList.add("alm-loaded"),o.outerHTML=o.outerHTML}}},function(t,e,n){var r,o;
|
2 |
/*!
|
3 |
* imagesLoaded v4.1.4
|
4 |
* JavaScript is all like "You images are done yet or what?"
|
1 |
+
var ajaxloadmore=function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)n.d(r,o,function(e){return t[e]}.bind(null,o));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=99)}([function(t,e,n){var r=n(1),o=n(7),a=n(15),i=n(12),s=n(18),l=function(t,e,n){var c,u,d,f,p=t&l.F,g=t&l.G,m=t&l.S,h=t&l.P,v=t&l.B,y=g?r:m?r[e]||(r[e]={}):(r[e]||{}).prototype,_=g?o:o[e]||(o[e]={}),b=_.prototype||(_.prototype={});for(c in g&&(n=e),n)d=((u=!p&&y&&void 0!==y[c])?y:n)[c],f=v&&u?s(d,r):h&&"function"==typeof d?s(Function.call,d):d,y&&i(y,c,d,t&l.U),_[c]!=d&&a(_,c,f),h&&b[c]!=d&&(b[c]=d)};r.core=o,l.F=1,l.G=2,l.S=4,l.P=8,l.B=16,l.W=32,l.U=64,l.R=128,t.exports=l},function(t,e){var n=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e,n){var r=n(4);t.exports=function(t){if(!r(t))throw TypeError(t+" is not an object!");return t}},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e,n){var r=n(54)("wks"),o=n(30),a=n(1).Symbol,i="function"==typeof a;(t.exports=function(t){return r[t]||(r[t]=i&&a[t]||(i?a:o)("Symbol."+t))}).store=r},function(t,e,n){var r=n(20),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},function(t,e){var n=t.exports={version:"2.6.12"};"number"==typeof __e&&(__e=n)},function(t,e,n){t.exports=!n(2)((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},function(t,e,n){var r=n(3),o=n(114),a=n(27),i=Object.defineProperty;e.f=n(8)?Object.defineProperty:function(t,e,n){if(r(t),e=a(e,!0),r(n),o)try{return i(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(t[e]=n.value),t}},function(t,e,n){var r=n(25);t.exports=function(t){return Object(r(t))}},function(t,e,n){"use strict";var r=n(100),o=Object.prototype.toString;function a(t){return"[object Array]"===o.call(t)}function i(t){return void 0===t}function s(t){return null!==t&&"object"==typeof t}function l(t){if("[object Object]"!==o.call(t))return!1;var e=Object.getPrototypeOf(t);return null===e||e===Object.prototype}function c(t){return"[object Function]"===o.call(t)}function u(t,e){if(null!=t)if("object"!=typeof t&&(t=[t]),a(t))for(var n=0,r=t.length;n<r;n++)e.call(null,t[n],n,t);else for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&e.call(null,t[o],o,t)}t.exports={isArray:a,isArrayBuffer:function(t){return"[object ArrayBuffer]"===o.call(t)},isBuffer:function(t){return null!==t&&!i(t)&&null!==t.constructor&&!i(t.constructor)&&"function"==typeof t.constructor.isBuffer&&t.constructor.isBuffer(t)},isFormData:function(t){return"undefined"!=typeof FormData&&t instanceof FormData},isArrayBufferView:function(t){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(t):t&&t.buffer&&t.buffer instanceof ArrayBuffer},isString:function(t){return"string"==typeof t},isNumber:function(t){return"number"==typeof t},isObject:s,isPlainObject:l,isUndefined:i,isDate:function(t){return"[object Date]"===o.call(t)},isFile:function(t){return"[object File]"===o.call(t)},isBlob:function(t){return"[object Blob]"===o.call(t)},isFunction:c,isStream:function(t){return s(t)&&c(t.pipe)},isURLSearchParams:function(t){return"undefined"!=typeof URLSearchParams&&t instanceof URLSearchParams},isStandardBrowserEnv:function(){return("undefined"==typeof navigator||"ReactNative"!==navigator.product&&"NativeScript"!==navigator.product&&"NS"!==navigator.product)&&("undefined"!=typeof window&&"undefined"!=typeof document)},forEach:u,merge:function t(){var e={};function n(n,r){l(e[r])&&l(n)?e[r]=t(e[r],n):l(n)?e[r]=t({},n):a(n)?e[r]=n.slice():e[r]=n}for(var r=0,o=arguments.length;r<o;r++)u(arguments[r],n);return e},extend:function(t,e,n){return u(e,(function(e,o){t[o]=n&&"function"==typeof e?r(e,n):e})),t},trim:function(t){return t.trim?t.trim():t.replace(/^\s+|\s+$/g,"")},stripBOM:function(t){return 65279===t.charCodeAt(0)&&(t=t.slice(1)),t}}},function(t,e,n){var r=n(1),o=n(15),a=n(14),i=n(30)("src"),s=n(192),l=(""+s).split("toString");n(7).inspectSource=function(t){return s.call(t)},(t.exports=function(t,e,n,s){var c="function"==typeof n;c&&(a(n,"name")||o(n,"name",e)),t[e]!==n&&(c&&(a(n,i)||o(n,i,t[e]?""+t[e]:l.join(String(e)))),t===r?t[e]=n:s?t[e]?t[e]=n:o(t,e,n):(delete t[e],o(t,e,n)))})(Function.prototype,"toString",(function(){return"function"==typeof this&&this[i]||s.call(this)}))},function(t,e,n){var r=n(0),o=n(2),a=n(25),i=/"/g,s=function(t,e,n,r){var o=String(a(t)),s="<"+e;return""!==n&&(s+=" "+n+'="'+String(r).replace(i,""")+'"'),s+">"+o+"</"+e+">"};t.exports=function(t,e){var n={};n[t]=e(s),r(r.P+r.F*o((function(){var e=""[t]('"');return e!==e.toLowerCase()||e.split('"').length>3})),"String",n)}},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e,n){var r=n(9),o=n(29);t.exports=n(8)?function(t,e,n){return r.f(t,e,o(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){var r=n(45),o=n(25);t.exports=function(t){return r(o(t))}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){return!!t&&r((function(){e?t.call(null,(function(){}),1):t.call(null)}))}},function(t,e,n){var r=n(19);t.exports=function(t,e,n){if(r(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,o){return t.call(e,n,r,o)}}return function(){return t.apply(e,arguments)}}},function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,e){var n=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:n)(t)}},function(t,e,n){var r=n(46),o=n(29),a=n(16),i=n(27),s=n(14),l=n(114),c=Object.getOwnPropertyDescriptor;e.f=n(8)?c:function(t,e){if(t=a(t),e=i(e,!0),l)try{return c(t,e)}catch(t){}if(s(t,e))return o(!r.f.call(t,e),t[e])}},function(t,e,n){var r=n(0),o=n(7),a=n(2);t.exports=function(t,e){var n=(o.Object||{})[t]||Object[t],i={};i[t]=e(n),r(r.S+r.F*a((function(){n(1)})),"Object",i)}},function(t,e,n){var r=n(18),o=n(45),a=n(10),i=n(6),s=n(130);t.exports=function(t,e){var n=1==t,l=2==t,c=3==t,u=4==t,d=6==t,f=5==t||d,p=e||s;return function(e,s,g){for(var m,h,v=a(e),y=o(v),_=r(s,g,3),b=i(y.length),w=0,x=n?p(e,b):l?p(e,0):void 0;b>w;w++)if((f||w in y)&&(h=_(m=y[w],w,v),t))if(n)x[w]=h;else if(h)switch(t){case 3:return!0;case 5:return m;case 6:return w;case 2:x.push(m)}else if(u)return!1;return d?-1:c||u?u:x}}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},function(t,e,n){"use strict";if(n(8)){var r=n(31),o=n(1),a=n(2),i=n(0),s=n(65),l=n(97),c=n(18),u=n(43),d=n(29),f=n(15),p=n(44),g=n(20),m=n(6),h=n(141),v=n(33),y=n(27),_=n(14),b=n(47),w=n(4),x=n(10),S=n(89),A=n(34),j=n(36),P=n(35).f,L=n(91),E=n(30),O=n(5),M=n(23),T=n(55),I=n(48),C=n(93),N=n(41),k=n(58),F=n(42),R=n(92),q=n(132),D=n(9),z=n(21),B=D.f,U=z.f,W=o.RangeError,H=o.TypeError,V=o.Uint8Array,G=Array.prototype,Y=l.ArrayBuffer,X=l.DataView,J=M(0),Q=M(2),$=M(3),K=M(4),Z=M(5),tt=M(6),et=T(!0),nt=T(!1),rt=C.values,ot=C.keys,at=C.entries,it=G.lastIndexOf,st=G.reduce,lt=G.reduceRight,ct=G.join,ut=G.sort,dt=G.slice,ft=G.toString,pt=G.toLocaleString,gt=O("iterator"),mt=O("toStringTag"),ht=E("typed_constructor"),vt=E("def_constructor"),yt=s.CONSTR,_t=s.TYPED,bt=s.VIEW,wt=M(1,(function(t,e){return Pt(I(t,t[vt]),e)})),xt=a((function(){return 1===new V(new Uint16Array([1]).buffer)[0]})),St=!!V&&!!V.prototype.set&&a((function(){new V(1).set({})})),At=function(t,e){var n=g(t);if(n<0||n%e)throw W("Wrong offset!");return n},jt=function(t){if(w(t)&&_t in t)return t;throw H(t+" is not a typed array!")},Pt=function(t,e){if(!w(t)||!(ht in t))throw H("It is not a typed array constructor!");return new t(e)},Lt=function(t,e){return Et(I(t,t[vt]),e)},Et=function(t,e){for(var n=0,r=e.length,o=Pt(t,r);r>n;)o[n]=e[n++];return o},Ot=function(t,e,n){B(t,e,{get:function(){return this._d[n]}})},Mt=function(t){var e,n,r,o,a,i,s=x(t),l=arguments.length,u=l>1?arguments[1]:void 0,d=void 0!==u,f=L(s);if(null!=f&&!S(f)){for(i=f.call(s),r=[],e=0;!(a=i.next()).done;e++)r.push(a.value);s=r}for(d&&l>2&&(u=c(u,arguments[2],2)),e=0,n=m(s.length),o=Pt(this,n);n>e;e++)o[e]=d?u(s[e],e):s[e];return o},Tt=function(){for(var t=0,e=arguments.length,n=Pt(this,e);e>t;)n[t]=arguments[t++];return n},It=!!V&&a((function(){pt.call(new V(1))})),Ct=function(){return pt.apply(It?dt.call(jt(this)):jt(this),arguments)},Nt={copyWithin:function(t,e){return q.call(jt(this),t,e,arguments.length>2?arguments[2]:void 0)},every:function(t){return K(jt(this),t,arguments.length>1?arguments[1]:void 0)},fill:function(t){return R.apply(jt(this),arguments)},filter:function(t){return Lt(this,Q(jt(this),t,arguments.length>1?arguments[1]:void 0))},find:function(t){return Z(jt(this),t,arguments.length>1?arguments[1]:void 0)},findIndex:function(t){return tt(jt(this),t,arguments.length>1?arguments[1]:void 0)},forEach:function(t){J(jt(this),t,arguments.length>1?arguments[1]:void 0)},indexOf:function(t){return nt(jt(this),t,arguments.length>1?arguments[1]:void 0)},includes:function(t){return et(jt(this),t,arguments.length>1?arguments[1]:void 0)},join:function(t){return ct.apply(jt(this),arguments)},lastIndexOf:function(t){return it.apply(jt(this),arguments)},map:function(t){return wt(jt(this),t,arguments.length>1?arguments[1]:void 0)},reduce:function(t){return st.apply(jt(this),arguments)},reduceRight:function(t){return lt.apply(jt(this),arguments)},reverse:function(){for(var t,e=jt(this).length,n=Math.floor(e/2),r=0;r<n;)t=this[r],this[r++]=this[--e],this[e]=t;return this},some:function(t){return $(jt(this),t,arguments.length>1?arguments[1]:void 0)},sort:function(t){return ut.call(jt(this),t)},subarray:function(t,e){var n=jt(this),r=n.length,o=v(t,r);return new(I(n,n[vt]))(n.buffer,n.byteOffset+o*n.BYTES_PER_ELEMENT,m((void 0===e?r:v(e,r))-o))}},kt=function(t,e){return Lt(this,dt.call(jt(this),t,e))},Ft=function(t){jt(this);var e=At(arguments[1],1),n=this.length,r=x(t),o=m(r.length),a=0;if(o+e>n)throw W("Wrong length!");for(;a<o;)this[e+a]=r[a++]},Rt={entries:function(){return at.call(jt(this))},keys:function(){return ot.call(jt(this))},values:function(){return rt.call(jt(this))}},qt=function(t,e){return w(t)&&t[_t]&&"symbol"!=typeof e&&e in t&&String(+e)==String(e)},Dt=function(t,e){return qt(t,e=y(e,!0))?d(2,t[e]):U(t,e)},zt=function(t,e,n){return!(qt(t,e=y(e,!0))&&w(n)&&_(n,"value"))||_(n,"get")||_(n,"set")||n.configurable||_(n,"writable")&&!n.writable||_(n,"enumerable")&&!n.enumerable?B(t,e,n):(t[e]=n.value,t)};yt||(z.f=Dt,D.f=zt),i(i.S+i.F*!yt,"Object",{getOwnPropertyDescriptor:Dt,defineProperty:zt}),a((function(){ft.call({})}))&&(ft=pt=function(){return ct.call(this)});var Bt=p({},Nt);p(Bt,Rt),f(Bt,gt,Rt.values),p(Bt,{slice:kt,set:Ft,constructor:function(){},toString:ft,toLocaleString:Ct}),Ot(Bt,"buffer","b"),Ot(Bt,"byteOffset","o"),Ot(Bt,"byteLength","l"),Ot(Bt,"length","e"),B(Bt,mt,{get:function(){return this[_t]}}),t.exports=function(t,e,n,l){var c=t+((l=!!l)?"Clamped":"")+"Array",d="get"+t,p="set"+t,g=o[c],v=g||{},y=g&&j(g),_=!g||!s.ABV,x={},S=g&&g.prototype,L=function(t,n){B(t,n,{get:function(){return function(t,n){var r=t._d;return r.v[d](n*e+r.o,xt)}(this,n)},set:function(t){return function(t,n,r){var o=t._d;l&&(r=(r=Math.round(r))<0?0:r>255?255:255&r),o.v[p](n*e+o.o,r,xt)}(this,n,t)},enumerable:!0})};_?(g=n((function(t,n,r,o){u(t,g,c,"_d");var a,i,s,l,d=0,p=0;if(w(n)){if(!(n instanceof Y||"ArrayBuffer"==(l=b(n))||"SharedArrayBuffer"==l))return _t in n?Et(g,n):Mt.call(g,n);a=n,p=At(r,e);var v=n.byteLength;if(void 0===o){if(v%e)throw W("Wrong length!");if((i=v-p)<0)throw W("Wrong length!")}else if((i=m(o)*e)+p>v)throw W("Wrong length!");s=i/e}else s=h(n),a=new Y(i=s*e);for(f(t,"_d",{b:a,o:p,l:i,e:s,v:new X(a)});d<s;)L(t,d++)})),S=g.prototype=A(Bt),f(S,"constructor",g)):a((function(){g(1)}))&&a((function(){new g(-1)}))&&k((function(t){new g,new g(null),new g(1.5),new g(t)}),!0)||(g=n((function(t,n,r,o){var a;return u(t,g,c),w(n)?n instanceof Y||"ArrayBuffer"==(a=b(n))||"SharedArrayBuffer"==a?void 0!==o?new v(n,At(r,e),o):void 0!==r?new v(n,At(r,e)):new v(n):_t in n?Et(g,n):Mt.call(g,n):new v(h(n))})),J(y!==Function.prototype?P(v).concat(P(y)):P(v),(function(t){t in g||f(g,t,v[t])})),g.prototype=S,r||(S.constructor=g));var E=S[gt],O=!!E&&("values"==E.name||null==E.name),M=Rt.values;f(g,ht,!0),f(S,_t,c),f(S,bt,!0),f(S,vt,g),(l?new g(1)[mt]==c:mt in S)||B(S,mt,{get:function(){return c}}),x[c]=g,i(i.G+i.W+i.F*(g!=v),x),i(i.S,c,{BYTES_PER_ELEMENT:e}),i(i.S+i.F*a((function(){v.of.call(g,1)})),c,{from:Mt,of:Tt}),"BYTES_PER_ELEMENT"in S||f(S,"BYTES_PER_ELEMENT",e),i(i.P,c,Nt),F(c),i(i.P+i.F*St,c,{set:Ft}),i(i.P+i.F*!O,c,Rt),r||S.toString==ft||(S.toString=ft),i(i.P+i.F*a((function(){new g(1).slice()})),c,{slice:kt}),i(i.P+i.F*(a((function(){return[1,2].toLocaleString()!=new g([1,2]).toLocaleString()}))||!a((function(){S.toLocaleString.call([1,2])}))),c,{toLocaleString:Ct}),N[c]=O?E:M,r||O||f(S,gt,M)}}else t.exports=function(){}},function(t,e,n){var r=n(4);t.exports=function(t,e){if(!r(t))return t;var n,o;if(e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;if("function"==typeof(n=t.valueOf)&&!r(o=n.call(t)))return o;if(!e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,e,n){var r=n(30)("meta"),o=n(4),a=n(14),i=n(9).f,s=0,l=Object.isExtensible||function(){return!0},c=!n(2)((function(){return l(Object.preventExtensions({}))})),u=function(t){i(t,r,{value:{i:"O"+ ++s,w:{}}})},d=t.exports={KEY:r,NEED:!1,fastKey:function(t,e){if(!o(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!a(t,r)){if(!l(t))return"F";if(!e)return"E";u(t)}return t[r].i},getWeak:function(t,e){if(!a(t,r)){if(!l(t))return!0;if(!e)return!1;u(t)}return t[r].w},onFreeze:function(t){return c&&d.NEED&&l(t)&&!a(t,r)&&u(t),t}}},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e){var n=0,r=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++n+r).toString(36))}},function(t,e){t.exports=!1},function(t,e,n){var r=n(116),o=n(76);t.exports=Object.keys||function(t){return r(t,o)}},function(t,e,n){var r=n(20),o=Math.max,a=Math.min;t.exports=function(t,e){return(t=r(t))<0?o(t+e,0):a(t,e)}},function(t,e,n){var r=n(3),o=n(117),a=n(76),i=n(75)("IE_PROTO"),s=function(){},l=function(){var t,e=n(73)("iframe"),r=a.length;for(e.style.display="none",n(77).appendChild(e),e.src="javascript:",(t=e.contentWindow.document).open(),t.write("<script>document.F=Object<\/script>"),t.close(),l=t.F;r--;)delete l.prototype[a[r]];return l()};t.exports=Object.create||function(t,e){var n;return null!==t?(s.prototype=r(t),n=new s,s.prototype=null,n[i]=t):n=l(),void 0===e?n:o(n,e)}},function(t,e,n){var r=n(116),o=n(76).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},function(t,e,n){var r=n(14),o=n(10),a=n(75)("IE_PROTO"),i=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=o(t),r(t,a)?t[a]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?i:null}},function(t,e,n){var r=n(5)("unscopables"),o=Array.prototype;null==o[r]&&n(15)(o,r,{}),t.exports=function(t){o[r][t]=!0}},function(t,e,n){var r=n(4);t.exports=function(t,e){if(!r(t)||t._t!==e)throw TypeError("Incompatible receiver, "+e+" required!");return t}},function(t,e,n){var r=n(9).f,o=n(14),a=n(5)("toStringTag");t.exports=function(t,e,n){t&&!o(t=n?t:t.prototype,a)&&r(t,a,{configurable:!0,value:e})}},function(t,e,n){var r=n(0),o=n(25),a=n(2),i=n(79),s="["+i+"]",l=RegExp("^"+s+s+"*"),c=RegExp(s+s+"*$"),u=function(t,e,n){var o={},s=a((function(){return!!i[t]()||"
"!="
"[t]()})),l=o[t]=s?e(d):i[t];n&&(o[n]=l),r(r.P+r.F*s,"String",o)},d=u.trim=function(t,e){return t=String(o(t)),1&e&&(t=t.replace(l,"")),2&e&&(t=t.replace(c,"")),t};t.exports=u},function(t,e){t.exports={}},function(t,e,n){"use strict";var r=n(1),o=n(9),a=n(8),i=n(5)("species");t.exports=function(t){var e=r[t];a&&e&&!e[i]&&o.f(e,i,{configurable:!0,get:function(){return this}})}},function(t,e){t.exports=function(t,e,n,r){if(!(t instanceof e)||void 0!==r&&r in t)throw TypeError(n+": incorrect invocation!");return t}},function(t,e,n){var r=n(12);t.exports=function(t,e,n){for(var o in e)r(t,o,e[o],n);return t}},function(t,e,n){var r=n(24);t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==r(t)?t.split(""):Object(t)}},function(t,e){e.f={}.propertyIsEnumerable},function(t,e,n){var r=n(24),o=n(5)("toStringTag"),a="Arguments"==r(function(){return arguments}());t.exports=function(t){var e,n,i;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=function(t,e){try{return t[e]}catch(t){}}(e=Object(t),o))?n:a?r(e):"Object"==(i=r(e))&&"function"==typeof e.callee?"Arguments":i}},function(t,e,n){var r=n(3),o=n(19),a=n(5)("species");t.exports=function(t,e){var n,i=r(t).constructor;return void 0===i||null==(n=r(i)[a])?e:o(n)}},function(t,e,n){"use strict";(function(e){var r=n(11),o=n(152),a=n(102),i={"Content-Type":"application/x-www-form-urlencoded"};function s(t,e){!r.isUndefined(t)&&r.isUndefined(t["Content-Type"])&&(t["Content-Type"]=e)}var l,c={transitional:{silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},adapter:(("undefined"!=typeof XMLHttpRequest||void 0!==e&&"[object process]"===Object.prototype.toString.call(e))&&(l=n(103)),l),transformRequest:[function(t,e){return o(e,"Accept"),o(e,"Content-Type"),r.isFormData(t)||r.isArrayBuffer(t)||r.isBuffer(t)||r.isStream(t)||r.isFile(t)||r.isBlob(t)?t:r.isArrayBufferView(t)?t.buffer:r.isURLSearchParams(t)?(s(e,"application/x-www-form-urlencoded;charset=utf-8"),t.toString()):r.isObject(t)||e&&"application/json"===e["Content-Type"]?(s(e,"application/json"),function(t,e,n){if(r.isString(t))try{return(e||JSON.parse)(t),r.trim(t)}catch(t){if("SyntaxError"!==t.name)throw t}return(n||JSON.stringify)(t)}(t)):t}],transformResponse:[function(t){var e=this.transitional||c.transitional,n=e&&e.silentJSONParsing,o=e&&e.forcedJSONParsing,i=!n&&"json"===this.responseType;if(i||o&&r.isString(t)&&t.length)try{return JSON.parse(t)}catch(t){if(i){if("SyntaxError"===t.name)throw a(t,this,"E_JSON_PARSE");throw t}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};r.forEach(["delete","get","head"],(function(t){c.headers[t]={}})),r.forEach(["post","put","patch"],(function(t){c.headers[t]=r.merge(i)})),t.exports=c}).call(this,n(151))},function(t,e,n){"use strict";function r(t){this.message=t}r.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},r.prototype.__CANCEL__=!0,t.exports=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.default=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,o=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(!alm_localize.a11y_focus)return!1;t.addons.woocommerce||t.addons.elementor?r(!1,!1,e,!1,t.isSafari):t.transition_container&&n>0?t.addons.paging?r(t.init,t.addons.preloaded,t.listing,o,t.isSafari):t.addons.single_post||t.addons.nextpage?r(!1,t.addons.preloaded,e,o,t.isSafari):r(t.init,t.addons.preloaded,e,o,t.isSafari):t.transition_container||r(t.init,t.addons.preloaded,e[0],o,t.isSafari)};var r=function(){var t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"false",n=arguments[2],r=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(!r&&(t||!n)&&"true"!==e)return!1;n.setAttribute("tabIndex","-1"),n.style.outline="none";var o=n.classList.contains("alm-listing")?n:n.parentNode,a=o.dataset.scrollContainer;if(a){var i=document.querySelector(a);i&&setTimeout((function(){n.focus({preventScroll:!0})}),50)}else setTimeout((function(){n.focus({preventScroll:!0})}),50)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.default=function(t,e){if(0==e)t.style.opacity=1,t.style.height="auto";else{e/=10;var n=0,r=setInterval((function(){n>.9&&(t.style.opacity=1,clearInterval(r)),t.style.opacity=n,n+=.1}),e);t.style.height="auto"}}},function(t,e,n){"use strict";function r(t){var e=t.getElementsByTagName("img");e&&Array.prototype.forEach.call(e,(function(t){t&&function(t){t&&(t.dataset.src&&(t.src=t.dataset.src),t.dataset.srcset&&(t.srcset=t.dataset.srcset),t.dataset.ctLazy&&(t.src=t.dataset.ctLazy),t.dataset.ctLazySet&&(t.srcset=t.dataset.ctLazySet))}(t)}))}Object.defineProperty(e,"__esModule",{value:!0}),e.lazyImages=function(t){if(!t||!t.lazy_images)return;r(t.el)},e.lazyImagesReplace=r},function(t,e,n){var r=n(7),o=n(1),a=o["__core-js_shared__"]||(o["__core-js_shared__"]={});(t.exports=function(t,e){return a[t]||(a[t]=void 0!==e?e:{})})("versions",[]).push({version:r.version,mode:n(31)?"pure":"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"})},function(t,e,n){var r=n(16),o=n(6),a=n(33);t.exports=function(t){return function(e,n,i){var s,l=r(e),c=o(l.length),u=a(i,c);if(t&&n!=n){for(;c>u;)if((s=l[u++])!=s)return!0}else for(;c>u;u++)if((t||u in l)&&l[u]===n)return t||u||0;return!t&&-1}}},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,n){var r=n(24);t.exports=Array.isArray||function(t){return"Array"==r(t)}},function(t,e,n){var r=n(5)("iterator"),o=!1;try{var a=[7][r]();a.return=function(){o=!0},Array.from(a,(function(){throw 2}))}catch(t){}t.exports=function(t,e){if(!e&&!o)return!1;var n=!1;try{var a=[7],i=a[r]();i.next=function(){return{done:n=!0}},a[r]=function(){return i},t(a)}catch(t){}return n}},function(t,e,n){"use strict";var r=n(3);t.exports=function(){var t=r(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e}},function(t,e,n){"use strict";var r=n(47),o=RegExp.prototype.exec;t.exports=function(t,e){var n=t.exec;if("function"==typeof n){var a=n.call(t,e);if("object"!=typeof a)throw new TypeError("RegExp exec method returned something other than an Object or null");return a}if("RegExp"!==r(t))throw new TypeError("RegExp#exec called on incompatible receiver");return o.call(t,e)}},function(t,e,n){"use strict";n(134);var r=n(12),o=n(15),a=n(2),i=n(25),s=n(5),l=n(94),c=s("species"),u=!a((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")})),d=function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var n="ab".split(t);return 2===n.length&&"a"===n[0]&&"b"===n[1]}();t.exports=function(t,e,n){var f=s(t),p=!a((function(){var e={};return e[f]=function(){return 7},7!=""[t](e)})),g=p?!a((function(){var e=!1,n=/a/;return n.exec=function(){return e=!0,null},"split"===t&&(n.constructor={},n.constructor[c]=function(){return n}),n[f](""),!e})):void 0;if(!p||!g||"replace"===t&&!u||"split"===t&&!d){var m=/./[f],h=n(i,f,""[t],(function(t,e,n,r,o){return e.exec===l?p&&!o?{done:!0,value:m.call(e,n,r)}:{done:!0,value:t.call(n,e,r)}:{done:!1}})),v=h[0],y=h[1];r(String.prototype,t,v),o(RegExp.prototype,f,2==e?function(t,e){return y.call(t,this,e)}:function(t){return y.call(t,this)})}}},function(t,e,n){var r=n(18),o=n(129),a=n(89),i=n(3),s=n(6),l=n(91),c={},u={};(e=t.exports=function(t,e,n,d,f){var p,g,m,h,v=f?function(){return t}:l(t),y=r(n,d,e?2:1),_=0;if("function"!=typeof v)throw TypeError(t+" is not iterable!");if(a(v)){for(p=s(t.length);p>_;_++)if((h=e?y(i(g=t[_])[0],g[1]):y(t[_]))===c||h===u)return h}else for(m=v.call(t);!(g=m.next()).done;)if((h=o(m,y,g.value,e))===c||h===u)return h}).BREAK=c,e.RETURN=u},function(t,e,n){var r=n(1).navigator;t.exports=r&&r.userAgent||""},function(t,e,n){"use strict";var r=n(1),o=n(0),a=n(12),i=n(44),s=n(28),l=n(62),c=n(43),u=n(4),d=n(2),f=n(58),p=n(39),g=n(80);t.exports=function(t,e,n,m,h,v){var y=r[t],_=y,b=h?"set":"add",w=_&&_.prototype,x={},S=function(t){var e=w[t];a(w,t,"delete"==t||"has"==t?function(t){return!(v&&!u(t))&&e.call(this,0===t?0:t)}:"get"==t?function(t){return v&&!u(t)?void 0:e.call(this,0===t?0:t)}:"add"==t?function(t){return e.call(this,0===t?0:t),this}:function(t,n){return e.call(this,0===t?0:t,n),this})};if("function"==typeof _&&(v||w.forEach&&!d((function(){(new _).entries().next()})))){var A=new _,j=A[b](v?{}:-0,1)!=A,P=d((function(){A.has(1)})),L=f((function(t){new _(t)})),E=!v&&d((function(){for(var t=new _,e=5;e--;)t[b](e,e);return!t.has(-0)}));L||((_=e((function(e,n){c(e,_,t);var r=g(new y,e,_);return null!=n&&l(n,h,r[b],r),r}))).prototype=w,w.constructor=_),(P||E)&&(S("delete"),S("has"),h&&S("get")),(E||j)&&S(b),v&&w.clear&&delete w.clear}else _=m.getConstructor(e,t,h,b),i(_.prototype,n),s.NEED=!0;return p(_,t),x[t]=_,o(o.G+o.W+o.F*(_!=y),x),v||m.setStrong(_,t,h),_}},function(t,e,n){for(var r,o=n(1),a=n(15),i=n(30),s=i("typed_array"),l=i("view"),c=!(!o.ArrayBuffer||!o.DataView),u=c,d=0,f="Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array".split(",");d<9;)(r=o[f[d++]])?(a(r.prototype,s,!0),a(r.prototype,l,!0)):u=!1;t.exports={ABV:c,CONSTR:u,TYPED:s,VIEW:l}},function(t,e,n){t.exports=n(146)},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.parseQuerystring=function(t){var e=window.location.search.substring(1),n="",r="";e&&((n=JSON.parse('{"'+e.replace(/&/g,'","').replace(/=/g,'":"')+'"}',(function(t,e){return""===t?e:decodeURIComponent(e.replace(/\+/g,"-"))}))).pg&&delete n.pg,n.auto&&delete n.auto);n&&(r+="/",Object.keys(n).forEach((function(t,e){r+=e>0?"--":"",r+=t+"--"+n[t]})));return t+r},e.buildFilterURL=i,e.createMasonryFiltersPage=function(t,e){if(!t.addons.filters)return e;var n=window.location.search,r=t.page+1;return r="true"===t.addons.preloaded?r+1:r,e=s(t,e,n,r)},e.createMasonryFiltersPages=function(t,e){if(!t.addons.filters)return e;var n=1,r=t.page,o=window.location.search;if(t.addons.filters_startpage>1){for(var a=parseInt(t.posts_per_page),i=[],l=0;l<e.length;l+=a)i.push(e.slice(l,a+l));for(var c=0;c<i.length;c++){var u=c>0?c*a:0;n=c+1,e[u]&&(e[u]=s(t,e[u],o,n))}}else n=r,e&&e[0]&&(e[0]=s(t,e[0],o,n));return e};var r,o=n(170),a=(r=o)&&r.__esModule?r:{default:r};function i(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,r=e;return t.addons.filters_paging&&(r=n>1?r?(0,a.default)("pg")?e.replace(/(pg=)[^\&]+/,"$1"+n):e+"&pg="+n:"?pg="+n:"&"===(r="?"===(r=e.replace(/(pg=)[^\&]+/,""))?"":r)[r.length-1]?r.slice(0,-1):r),r}function s(t,e,n,r){if(e.classList.add("alm-filters"),e.dataset.page=r,r>1)e.dataset.url=t.canonical_url+i(t,n,r);else{var o=n.replace(/(pg=)[^\&]+/,"");o="?"===o?"":o,e.dataset.url=t.canonical_url+o}return e}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.default=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"text/html";if(!t)return!1;var n=new DOMParser,r=n.parseFromString(t,e);return r?Array.prototype.slice.call(r.body.childNodes):r}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.getButtonURL=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"next";if(!t||!t.trigger)return!1;var n=t.trigger.querySelector(".alm-load-more-btn");"prev"===e&&(n=document.querySelector(".alm-load-more-btn--prev"));var r=n?n.dataset.url:"";return r||""},e.setButtonAtts=function(t,e,n){t&&(t.rel&&"prev"===t.rel&&(t.href=n),t.dataset.page=e,t.dataset.url=n||"")}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.default=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";if(!t)return!1;if(e.indexOf("Safari")>-1&&-1!=e.indexOf("Chrome")||e.indexOf("Firefox")>-1||e.indexOf("Windows")>-1)return!1;for(var n=t.querySelectorAll("img[srcset]:not(.alm-loaded)"),r=0;r<n.length;r++){var o=n[r];o.classList.add("alm-loaded"),o.outerHTML=o.outerHTML}}},function(t,e,n){var r,o;
|
2 |
/*!
|
3 |
* imagesLoaded v4.1.4
|
4 |
* JavaScript is all like "You images are done yet or what?"
|
core/src/js/modules/lazyImages.js
CHANGED
@@ -21,7 +21,7 @@ export function lazyImagesReplace(container) {
|
|
21 |
const images = container.getElementsByTagName('img');
|
22 |
if (images) {
|
23 |
// Loop all images.
|
24 |
-
Array.prototype.forEach.call(images,
|
25 |
if (img) {
|
26 |
replaceSrc(img);
|
27 |
}
|
@@ -42,5 +42,13 @@ function replaceSrc(img) {
|
|
42 |
if (img.dataset.srcset) {
|
43 |
img.srcset = img.dataset.srcset;
|
44 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
}
|
46 |
}
|
21 |
const images = container.getElementsByTagName('img');
|
22 |
if (images) {
|
23 |
// Loop all images.
|
24 |
+
Array.prototype.forEach.call(images, img => {
|
25 |
if (img) {
|
26 |
replaceSrc(img);
|
27 |
}
|
42 |
if (img.dataset.srcset) {
|
43 |
img.srcset = img.dataset.srcset;
|
44 |
}
|
45 |
+
// Blocksy Pro.
|
46 |
+
// @see https://creativethemes.com/blocksy
|
47 |
+
if (img.dataset.ctLazy) {
|
48 |
+
img.src = img.dataset.ctLazy;
|
49 |
+
}
|
50 |
+
if (img.dataset.ctLazySet) {
|
51 |
+
img.srcset = img.dataset.ctLazySet;
|
52 |
+
}
|
53 |
}
|
54 |
}
|
lang/ajax-load-more.pot
CHANGED
@@ -2,21 +2,20 @@
|
|
2 |
# This file is distributed under the GPL.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Ajax Load More 5.5.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ajax-load-more\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2022-
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.5.0\n"
|
15 |
"X-Domain: ajax-load-more\n"
|
16 |
|
17 |
#. Plugin Name of the plugin
|
18 |
#: admin/admin.php:477
|
19 |
-
#: _out/admin/admin.php:477
|
20 |
msgid "Ajax Load More"
|
21 |
msgstr ""
|
22 |
|
@@ -37,54 +36,43 @@ msgid "https://connekthq.com"
|
|
37 |
msgstr ""
|
38 |
|
39 |
#: admin/admin.php:70
|
40 |
-
#: _out/admin/admin.php:70
|
41 |
msgid "Looks like your subscription has expired."
|
42 |
msgstr ""
|
43 |
|
44 |
#: admin/admin.php:71
|
45 |
-
#: _out/admin/admin.php:71
|
46 |
msgid "Please login to your <a href=\"https://connekthq.com/account/\" target=\"_blank\">Account</a> to renew the license."
|
47 |
msgstr ""
|
48 |
|
49 |
#: admin/admin.php:78
|
50 |
-
#: _out/admin/admin.php:78
|
51 |
msgid "Looks like your license is inactive and/or invalid."
|
52 |
msgstr ""
|
53 |
|
54 |
#: admin/admin.php:79
|
55 |
-
#: _out/admin/admin.php:79
|
56 |
msgid "Please activate the <a href=\"admin.php?page=ajax-load-more-licenses\" target=\"_blank\">license</a> or login to your <a href=\"https://connekthq.com/account/\" target=\"_blank\">Account</a> to renew the license."
|
57 |
msgstr ""
|
58 |
|
59 |
#: admin/admin.php:86
|
60 |
-
#: _out/admin/admin.php:86
|
61 |
msgid "Looks like your license has been deactivated."
|
62 |
msgstr ""
|
63 |
|
64 |
#: admin/admin.php:87
|
65 |
-
#: _out/admin/admin.php:87
|
66 |
msgid "Please activate the <a href=\"admin.php?page=ajax-load-more-licenses\" target=\"_blank\">license</a> to update."
|
67 |
msgstr ""
|
68 |
|
69 |
#: admin/admin.php:172
|
70 |
#: admin/admin.php:1252
|
71 |
-
#: _out/admin/admin.php:172
|
72 |
-
#: _out/admin/admin.php:1252
|
73 |
msgid "Error - unable to verify nonce, please try again."
|
74 |
msgstr ""
|
75 |
|
76 |
#: admin/admin.php:176
|
77 |
-
#: _out/admin/admin.php:176
|
78 |
msgid "Transient set successfully"
|
79 |
msgstr ""
|
80 |
|
81 |
#: admin/admin.php:319
|
82 |
-
#: _out/admin/admin.php:319
|
83 |
msgid "You have an invalid or expired <a href=\"admin.php?page=ajax-load-more\"><b>Ajax Load More Pro</b></a> license key - please visit the <a href=\"admin.php?page=ajax-load-more-licenses\">License</a> section to input your key or <a href=\"https://connekthq.com/plugins/ajax-load-more/pro/\" target=\"_blank\">purchase</a> one now."
|
84 |
msgstr ""
|
85 |
|
86 |
#: admin/admin.php:323
|
87 |
-
#: _out/admin/admin.php:323
|
88 |
msgid "You have invalid or expired <a href=\"admin.php?page=ajax-load-more\"><b>Ajax Load More</b></a> license keys - please visit the <a href=\"admin.php?page=ajax-load-more-licenses\">Licenses</a> section and input your keys."
|
89 |
msgstr ""
|
90 |
|
@@ -92,142 +80,102 @@ msgstr ""
|
|
92 |
#: admin/admin.php:1117
|
93 |
#: admin/admin.php:1163
|
94 |
#: admin/admin.php:1213
|
95 |
-
#: _out/admin/admin.php:453
|
96 |
-
#: _out/admin/admin.php:1117
|
97 |
-
#: _out/admin/admin.php:1163
|
98 |
-
#: _out/admin/admin.php:1213
|
99 |
msgid "You don't belong here."
|
100 |
msgstr ""
|
101 |
|
102 |
#: admin/admin.php:478
|
103 |
#: admin/editor/editor-build.php:69
|
104 |
#: admin/views/licenses.php:87
|
105 |
-
#: _out/admin/admin.php:478
|
106 |
-
#: _out/admin/editor/editor-build.php:69
|
107 |
-
#: _out/admin/views/licenses.php:87
|
108 |
msgid "Active"
|
109 |
msgstr ""
|
110 |
|
111 |
#: admin/admin.php:479
|
112 |
#: admin/editor/editor-build.php:70
|
113 |
#: admin/views/licenses.php:89
|
114 |
-
#: _out/admin/admin.php:479
|
115 |
-
#: _out/admin/editor/editor-build.php:70
|
116 |
-
#: _out/admin/views/licenses.php:89
|
117 |
msgid "Inactive"
|
118 |
msgstr ""
|
119 |
|
120 |
#: admin/admin.php:480
|
121 |
#: admin/editor/editor-build.php:71
|
122 |
-
#: _out/admin/admin.php:480
|
123 |
-
#: _out/admin/editor/editor-build.php:71
|
124 |
msgid "Applying layout"
|
125 |
msgstr ""
|
126 |
|
127 |
#: admin/admin.php:481
|
128 |
#: admin/editor/editor-build.php:72
|
129 |
#: admin/views/repeater-templates.php:448
|
130 |
-
#: _out/admin/admin.php:481
|
131 |
-
#: _out/admin/editor/editor-build.php:72
|
132 |
-
#: _out/admin/views/repeater-templates.php:448
|
133 |
msgid "Template Updated"
|
134 |
msgstr ""
|
135 |
|
136 |
#: admin/admin.php:483
|
137 |
#: admin/editor/editor-build.php:75
|
138 |
-
#: _out/admin/admin.php:483
|
139 |
-
#: _out/admin/editor/editor-build.php:75
|
140 |
msgid "Select Author(s)"
|
141 |
msgstr ""
|
142 |
|
143 |
#: admin/admin.php:484
|
144 |
#: admin/editor/editor-build.php:76
|
145 |
-
#: _out/admin/admin.php:484
|
146 |
-
#: _out/admin/editor/editor-build.php:76
|
147 |
msgid "Select Categories"
|
148 |
msgstr ""
|
149 |
|
150 |
#: admin/admin.php:485
|
151 |
#: admin/editor/editor-build.php:77
|
152 |
-
#: _out/admin/admin.php:485
|
153 |
-
#: _out/admin/editor/editor-build.php:77
|
154 |
msgid "Select Tags"
|
155 |
msgstr ""
|
156 |
|
157 |
#: admin/admin.php:486
|
158 |
#: admin/editor/editor-build.php:74
|
159 |
-
#: _out/admin/admin.php:486
|
160 |
-
#: _out/admin/editor/editor-build.php:74
|
161 |
msgid "Select"
|
162 |
msgstr ""
|
163 |
|
164 |
#: admin/admin.php:487
|
165 |
#: admin/editor/editor-build.php:41
|
166 |
#: admin/editor/editor-build.php:78
|
167 |
-
#: _out/admin/admin.php:487
|
168 |
-
#: _out/admin/editor/editor-build.php:41
|
169 |
-
#: _out/admin/editor/editor-build.php:78
|
170 |
msgid "Jump to Option"
|
171 |
msgstr ""
|
172 |
|
173 |
#: admin/admin.php:488
|
174 |
#: admin/editor/editor-build.php:79
|
175 |
-
#: _out/admin/admin.php:488
|
176 |
-
#: _out/admin/editor/editor-build.php:79
|
177 |
msgid "Jump to Template"
|
178 |
msgstr ""
|
179 |
|
180 |
#: admin/admin.php:489
|
181 |
-
#: _out/admin/admin.php:489
|
182 |
msgid "Are you sure you want to install this Ajax Load More extension?"
|
183 |
msgstr ""
|
184 |
|
185 |
#: admin/admin.php:490
|
186 |
-
#: _out/admin/admin.php:490
|
187 |
msgid "Install Now"
|
188 |
msgstr ""
|
189 |
|
190 |
#: admin/admin.php:491
|
191 |
-
#: _out/admin/admin.php:491
|
192 |
msgid "Activate"
|
193 |
msgstr ""
|
194 |
|
195 |
#: admin/admin.php:492
|
196 |
-
#: _out/admin/admin.php:492
|
197 |
msgid "Saving Settings"
|
198 |
msgstr ""
|
199 |
|
200 |
#: admin/admin.php:493
|
201 |
-
#: _out/admin/admin.php:493
|
202 |
msgid "Settings Saved Successfully"
|
203 |
msgstr ""
|
204 |
|
205 |
#: admin/admin.php:494
|
206 |
-
#: _out/admin/admin.php:494
|
207 |
msgid "Error Saving Settings"
|
208 |
msgstr ""
|
209 |
|
210 |
#: admin/admin.php:495
|
211 |
-
#: _out/admin/admin.php:495
|
212 |
msgid "There is a maximum of 3 tax_query objects while using the shortcode builder"
|
213 |
msgstr ""
|
214 |
|
215 |
#: admin/admin.php:592
|
216 |
-
#: _out/admin/admin.php:592
|
217 |
msgid "[Ajax Load More] Error opening default repeater template - Please check your file path and ensure your server is configured to allow Ajax Load More to read and write files within the /ajax-load-more/core/repeater directory"
|
218 |
msgstr ""
|
219 |
|
220 |
#: admin/admin.php:596
|
221 |
-
#: _out/admin/admin.php:596
|
222 |
msgid "[Ajax Load More] Error updating default repeater template - Please check your file path and ensure your server is configured to allow Ajax Load More to read and write files within the /ajax-load-more/core/repeater directory."
|
223 |
msgstr ""
|
224 |
|
225 |
#: admin/admin.php:632
|
226 |
#: admin/admin.php:633
|
227 |
-
#: ajax-load-more.php:
|
228 |
-
#: _out/admin/admin.php:632
|
229 |
-
#: _out/admin/admin.php:633
|
230 |
-
#: _out/ajax-load-more.php:325
|
231 |
msgid "Settings"
|
232 |
msgstr ""
|
233 |
|
@@ -235,19 +183,12 @@ msgstr ""
|
|
235 |
#: admin/admin.php:642
|
236 |
#: admin/views/repeater-templates.php:14
|
237 |
#: admin/views/repeater-templates.php:27
|
238 |
-
#: _out/admin/admin.php:641
|
239 |
-
#: _out/admin/admin.php:642
|
240 |
-
#: _out/admin/views/repeater-templates.php:14
|
241 |
-
#: _out/admin/views/repeater-templates.php:27
|
242 |
msgid "Repeater Templates"
|
243 |
msgstr ""
|
244 |
|
245 |
#: admin/admin.php:650
|
246 |
#: admin/admin.php:651
|
247 |
#: admin/views/shortcode-builder.php:9
|
248 |
-
#: _out/admin/admin.php:650
|
249 |
-
#: _out/admin/admin.php:651
|
250 |
-
#: _out/admin/views/shortcode-builder.php:9
|
251 |
msgid "Shortcode Builder"
|
252 |
msgstr ""
|
253 |
|
@@ -256,11 +197,6 @@ msgstr ""
|
|
256 |
#: admin/shortcode-builder/shortcode-builder.php:18
|
257 |
#: admin/shortcode-builder/shortcode-builder.php:38
|
258 |
#: admin/views/add-ons.php:6
|
259 |
-
#: _out/admin/admin.php:660
|
260 |
-
#: _out/admin/admin.php:661
|
261 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:18
|
262 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:38
|
263 |
-
#: _out/admin/views/add-ons.php:6
|
264 |
msgid "Add-ons"
|
265 |
msgstr ""
|
266 |
|
@@ -269,32 +205,21 @@ msgstr ""
|
|
269 |
#: admin/shortcode-builder/shortcode-builder.php:21
|
270 |
#: admin/shortcode-builder/shortcode-builder.php:68
|
271 |
#: admin/views/extensions.php:5
|
272 |
-
#: _out/admin/admin.php:670
|
273 |
-
#: _out/admin/admin.php:671
|
274 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:21
|
275 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:68
|
276 |
-
#: _out/admin/views/extensions.php:5
|
277 |
msgid "Extensions"
|
278 |
msgstr ""
|
279 |
|
280 |
#: admin/admin.php:679
|
281 |
#: admin/admin.php:680
|
282 |
#: admin/views/help.php:18
|
283 |
-
#: _out/admin/admin.php:679
|
284 |
-
#: _out/admin/admin.php:680
|
285 |
-
#: _out/admin/views/help.php:18
|
286 |
msgid "Help"
|
287 |
msgstr ""
|
288 |
|
289 |
#: admin/admin.php:686
|
290 |
-
#: _out/admin/admin.php:686
|
291 |
msgid "License"
|
292 |
msgstr ""
|
293 |
|
294 |
#: admin/admin.php:686
|
295 |
#: admin/views/licenses.php:2
|
296 |
-
#: _out/admin/admin.php:686
|
297 |
-
#: _out/admin/views/licenses.php:2
|
298 |
msgid "Licenses"
|
299 |
msgstr ""
|
300 |
|
@@ -302,208 +227,156 @@ msgstr ""
|
|
302 |
#: admin/admin.php:705
|
303 |
#: admin/admin.php:713
|
304 |
#: admin/views/go-pro.php:5
|
305 |
-
#: _out/admin/admin.php:704
|
306 |
-
#: _out/admin/admin.php:705
|
307 |
-
#: _out/admin/admin.php:713
|
308 |
-
#: _out/admin/views/go-pro.php:5
|
309 |
msgid "Pro"
|
310 |
msgstr ""
|
311 |
|
312 |
#: admin/admin.php:714
|
313 |
#: admin/views/licenses.php:145
|
314 |
-
#: _out/admin/admin.php:714
|
315 |
-
#: _out/admin/views/licenses.php:145
|
316 |
msgid "Go Pro"
|
317 |
msgstr ""
|
318 |
|
319 |
#: admin/admin.php:725
|
320 |
#: admin/admin.php:726
|
321 |
#: admin/shortcode-builder/components/cache.php:3
|
322 |
-
#: _out/admin/admin.php:725
|
323 |
-
#: _out/admin/admin.php:726
|
324 |
-
#: _out/admin/shortcode-builder/components/cache.php:3
|
325 |
msgid "Cache"
|
326 |
msgstr ""
|
327 |
|
328 |
#: admin/admin.php:745
|
329 |
#: admin/admin.php:746
|
330 |
#: admin/shortcode-builder/components/filters.php:3
|
331 |
-
#: _out/admin/admin.php:745
|
332 |
-
#: _out/admin/admin.php:746
|
333 |
-
#: _out/admin/shortcode-builder/components/filters.php:3
|
334 |
msgid "Filters"
|
335 |
msgstr ""
|
336 |
|
337 |
#: admin/admin.php:766
|
338 |
#: admin/admin.php:767
|
339 |
-
#: _out/admin/admin.php:766
|
340 |
-
#: _out/admin/admin.php:767
|
341 |
msgid "WooCommerce"
|
342 |
msgstr ""
|
343 |
|
344 |
#: admin/admin.php:1073
|
345 |
-
#: _out/admin/admin.php:1073
|
346 |
msgid "[Ajax Load More] Unable to open repeater template - "
|
347 |
msgstr ""
|
348 |
|
349 |
#: admin/admin.php:1077
|
350 |
-
#: _out/admin/admin.php:1077
|
351 |
msgid "[Ajax Load More] Error saving repeater template - "
|
352 |
msgstr ""
|
353 |
|
354 |
#: admin/admin.php:1109
|
355 |
-
#: _out/admin/admin.php:1109
|
356 |
msgid "Template Saved Successfully"
|
357 |
msgstr ""
|
358 |
|
359 |
#: admin/admin.php:1111
|
360 |
-
#: _out/admin/admin.php:1111
|
361 |
msgid "Error Writing File"
|
362 |
msgstr ""
|
363 |
|
364 |
#: admin/admin.php:1111
|
365 |
#: admin/views/repeater-templates.php:389
|
366 |
-
#: _out/admin/admin.php:1111
|
367 |
-
#: _out/admin/views/repeater-templates.php:389
|
368 |
msgid "Something went wrong and the data could not be saved."
|
369 |
msgstr ""
|
370 |
|
371 |
#: admin/admin.php:1313
|
372 |
#: admin/shortcode-builder/shortcode-builder.php:166
|
373 |
-
#: _out/admin/admin.php:1313
|
374 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:166
|
375 |
msgid "Container Type"
|
376 |
msgstr ""
|
377 |
|
378 |
#: admin/admin.php:1321
|
379 |
#: admin/shortcode-builder/shortcode-builder.php:196
|
380 |
-
#: _out/admin/admin.php:1321
|
381 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:196
|
382 |
msgid "Container Classes"
|
383 |
msgstr ""
|
384 |
|
385 |
#: admin/admin.php:1329
|
386 |
-
#: _out/admin/admin.php:1329
|
387 |
msgid "Disable CSS"
|
388 |
msgstr ""
|
389 |
|
390 |
#: admin/admin.php:1337
|
391 |
#: admin/shortcode-builder/shortcode-builder.php:124
|
392 |
-
#: _out/admin/admin.php:1337
|
393 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:124
|
394 |
msgid "Button/Loading Style"
|
395 |
msgstr ""
|
396 |
|
397 |
#: admin/admin.php:1345
|
398 |
-
#: _out/admin/admin.php:1345
|
399 |
msgid "Load CSS Inline"
|
400 |
msgstr ""
|
401 |
|
402 |
#: admin/admin.php:1353
|
403 |
-
#: _out/admin/admin.php:1353
|
404 |
msgid "Button Classes"
|
405 |
msgstr ""
|
406 |
|
407 |
#: admin/admin.php:1371
|
408 |
-
#: _out/admin/admin.php:1371
|
409 |
msgid "Legacy Callbacks"
|
410 |
msgstr ""
|
411 |
|
412 |
#: admin/admin.php:1379
|
413 |
-
#: _out/admin/admin.php:1379
|
414 |
msgid "Dynamic Content"
|
415 |
msgstr ""
|
416 |
|
417 |
#: admin/admin.php:1387
|
418 |
-
#: _out/admin/admin.php:1387
|
419 |
msgid "Error Notices"
|
420 |
msgstr ""
|
421 |
|
422 |
#: admin/admin.php:1395
|
423 |
-
#: _out/admin/admin.php:1395
|
424 |
msgid "Delete on Uninstall"
|
425 |
msgstr ""
|
426 |
|
427 |
#: admin/admin.php:1469
|
428 |
-
#: _out/admin/admin.php:1469
|
429 |
msgid "Customize the user experience of Ajax Load More by updating the fields below."
|
430 |
msgstr ""
|
431 |
|
432 |
#: admin/admin.php:1478
|
433 |
-
#: _out/admin/admin.php:1478
|
434 |
msgid "The following settings affect the WordPress admin area only."
|
435 |
msgstr ""
|
436 |
|
437 |
#: admin/admin.php:1502
|
438 |
-
#: _out/admin/admin.php:1502
|
439 |
msgid "I want to use my own CSS styles."
|
440 |
msgstr ""
|
441 |
|
442 |
#: admin/admin.php:1502
|
443 |
-
#: _out/admin/admin.php:1502
|
444 |
msgid "View Ajax Load More CSS"
|
445 |
msgstr ""
|
446 |
|
447 |
#: admin/admin.php:1519
|
448 |
-
#: _out/admin/admin.php:1519
|
449 |
msgid "Hide shortcode button in WYSIWYG editor."
|
450 |
msgstr ""
|
451 |
|
452 |
#: admin/admin.php:1536
|
453 |
-
#: _out/admin/admin.php:1536
|
454 |
msgid "Display error messaging regarding repeater template updates in the browser console."
|
455 |
msgstr ""
|
456 |
|
457 |
#: admin/admin.php:1553
|
458 |
-
#: _out/admin/admin.php:1553
|
459 |
msgid "Disable dynamic population of categories, tags and authors in the Shortcode Builder.<span style=\"display:block\">Recommended if you have a large number of categories, tags and/or authors."
|
460 |
msgstr ""
|
461 |
|
462 |
#: admin/admin.php:1571
|
463 |
#: admin/admin.php:1574
|
464 |
-
#: _out/admin/admin.php:1571
|
465 |
-
#: _out/admin/admin.php:1574
|
466 |
msgid "Ajax Posts Here"
|
467 |
msgstr ""
|
468 |
|
469 |
#: admin/admin.php:1576
|
470 |
-
#: _out/admin/admin.php:1576
|
471 |
msgid "You can modify the container type when building a shortcode."
|
472 |
msgstr ""
|
473 |
|
474 |
#: admin/admin.php:1592
|
475 |
-
#: _out/admin/admin.php:1592
|
476 |
msgid "Add custom classes to the <i>.alm-listing</i> container - classes are applied globally and will appear with every instance of Ajax Load More. <span style=\"display:block\">You can also add classes when building a shortcode.</span>"
|
477 |
msgstr ""
|
478 |
|
479 |
#: admin/admin.php:1653
|
480 |
-
#: _out/admin/admin.php:1653
|
481 |
msgid "Select an Ajax loading style - you can choose between a <strong>Button</strong> or <strong>Infinite Scroll</strong>"
|
482 |
msgstr ""
|
483 |
|
484 |
#: admin/admin.php:1658
|
485 |
#: admin/shortcode-builder/shortcode-builder.php:130
|
486 |
-
#: _out/admin/admin.php:1658
|
487 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:130
|
488 |
msgid "Button Style (Dark)"
|
489 |
msgstr ""
|
490 |
|
491 |
#: admin/admin.php:1665
|
492 |
#: admin/shortcode-builder/shortcode-builder.php:137
|
493 |
-
#: _out/admin/admin.php:1665
|
494 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:137
|
495 |
msgid "Button Style (Light)"
|
496 |
msgstr ""
|
497 |
|
498 |
#: admin/admin.php:1670
|
499 |
#: admin/shortcode-builder/shortcode-builder.php:141
|
500 |
-
#: _out/admin/admin.php:1670
|
501 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:141
|
502 |
msgid "Infinite Scroll (No Button)"
|
503 |
msgstr ""
|
504 |
|
505 |
#: admin/admin.php:1686
|
506 |
-
#: _out/admin/admin.php:1686
|
507 |
msgid "Click to Preview"
|
508 |
msgstr ""
|
509 |
|
@@ -511,406 +384,318 @@ msgstr ""
|
|
511 |
#: admin/shortcode-builder/shortcode-builder.php:155
|
512 |
#: admin/shortcode-builder/shortcode-builder.php:371
|
513 |
#: core/classes/class-alm-shortcode.php:208
|
514 |
-
#: _out/admin/admin.php:1688
|
515 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:155
|
516 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:371
|
517 |
-
#: _out/core/classes/class-alm-shortcode.php:208
|
518 |
msgid "Load More"
|
519 |
msgstr ""
|
520 |
|
521 |
#: admin/admin.php:1707
|
522 |
-
#: _out/admin/admin.php:1707
|
523 |
msgid "Improve site performance by loading Ajax Load More CSS inline."
|
524 |
msgstr ""
|
525 |
|
526 |
#: admin/admin.php:1723
|
527 |
-
#: _out/admin/admin.php:1723
|
528 |
msgid "Add classes to your <strong>Load More</strong> button."
|
529 |
msgstr ""
|
530 |
|
531 |
#: admin/admin.php:1763
|
532 |
-
#: _out/admin/admin.php:1763
|
533 |
msgid "On initial page load, move the user's browser window to the top of the screen."
|
534 |
msgstr ""
|
535 |
|
536 |
#: admin/admin.php:1764
|
537 |
-
#: _out/admin/admin.php:1764
|
538 |
msgid "This may help prevent the loading of unnecessary posts."
|
539 |
msgstr ""
|
540 |
|
541 |
#: admin/admin.php:1783
|
542 |
-
#: _out/admin/admin.php:1783
|
543 |
msgid "Disable REST API."
|
544 |
msgstr ""
|
545 |
|
546 |
#: admin/admin.php:1784
|
547 |
-
#: _out/admin/admin.php:1784
|
548 |
msgid "Use `admin-ajax.php` in favour of the WordPress REST API for all Ajax requests."
|
549 |
msgstr ""
|
550 |
|
551 |
#: admin/admin.php:1803
|
552 |
-
#: _out/admin/admin.php:1803
|
553 |
msgid "Load legacy JavaScript callback functions."
|
554 |
msgstr ""
|
555 |
|
556 |
#: admin/admin.php:1804
|
557 |
-
#: _out/admin/admin.php:1804
|
558 |
msgid "Ajax Load More <a href=\"https://connekthq.com/plugins/ajax-load-more/docs/callback-functions/\" target=\"_blank\">callback functions</a> were updated in 5.0. Users who were using callbacks prior to ALM 5.0 can load this helper library to maintain compatibility."
|
559 |
msgstr ""
|
560 |
|
561 |
#: admin/admin.php:1823
|
562 |
-
#: _out/admin/admin.php:1823
|
563 |
msgid "Check this box if Ajax Load More should remove all of its data* when the plugin is deleted."
|
564 |
msgstr ""
|
565 |
|
566 |
#: admin/admin.php:1824
|
567 |
-
#: _out/admin/admin.php:1824
|
568 |
msgid "* Database Tables, Options and Repeater Templates"
|
569 |
msgstr ""
|
570 |
|
571 |
#: admin/editor/editor-build.php:45
|
572 |
-
#: _out/admin/editor/editor-build.php:45
|
573 |
msgid "Create your own Ajax Load More shortcode by adjusting the parameters below:"
|
574 |
msgstr ""
|
575 |
|
576 |
#: admin/editor/editor-build.php:53
|
577 |
-
#: _out/admin/editor/editor-build.php:53
|
578 |
msgid "Insert Shortcode"
|
579 |
msgstr ""
|
580 |
|
581 |
#: admin/editor/editor-build.php:56
|
582 |
-
#: _out/admin/editor/editor-build.php:56
|
583 |
msgid "Copy"
|
584 |
msgstr ""
|
585 |
|
586 |
#: admin/editor/editor.php:19
|
587 |
-
#: _out/admin/editor/editor.php:19
|
588 |
msgid "You are not allowed to be here"
|
589 |
msgstr ""
|
590 |
|
591 |
#: admin/includes/components/example-list.php:2
|
592 |
#: admin/views/repeater-templates.php:134
|
593 |
#: admin/views/repeater-templates.php:173
|
594 |
-
#: _out/admin/includes/components/example-list.php:2
|
595 |
-
#: _out/admin/views/repeater-templates.php:134
|
596 |
-
#: _out/admin/views/repeater-templates.php:173
|
597 |
msgid "Collapse All"
|
598 |
msgstr ""
|
599 |
|
600 |
#: admin/includes/components/example-list.php:2
|
601 |
#: admin/views/repeater-templates.php:135
|
602 |
#: admin/views/repeater-templates.php:174
|
603 |
-
#: _out/admin/includes/components/example-list.php:2
|
604 |
-
#: _out/admin/views/repeater-templates.php:135
|
605 |
-
#: _out/admin/views/repeater-templates.php:174
|
606 |
msgid "Expand All"
|
607 |
msgstr ""
|
608 |
|
609 |
#: admin/includes/components/example-list.php:5
|
610 |
-
#: _out/admin/includes/components/example-list.php:5
|
611 |
msgid "Archive.php"
|
612 |
msgstr ""
|
613 |
|
614 |
#: admin/includes/components/example-list.php:7
|
615 |
-
#: _out/admin/includes/components/example-list.php:7
|
616 |
msgid "Shortcode for use on generic archive page."
|
617 |
msgstr ""
|
618 |
|
619 |
#: admin/includes/components/example-list.php:15
|
620 |
-
#: _out/admin/includes/components/example-list.php:15
|
621 |
msgid "Author.php"
|
622 |
msgstr ""
|
623 |
|
624 |
#: admin/includes/components/example-list.php:17
|
625 |
-
#: _out/admin/includes/components/example-list.php:17
|
626 |
msgid "Shortcode for use on author archive pages."
|
627 |
msgstr ""
|
628 |
|
629 |
#: admin/includes/components/example-list.php:24
|
630 |
-
#: _out/admin/includes/components/example-list.php:24
|
631 |
msgid "Category.php"
|
632 |
msgstr ""
|
633 |
|
634 |
#: admin/includes/components/example-list.php:26
|
635 |
-
#: _out/admin/includes/components/example-list.php:26
|
636 |
msgid "Shortcode for use on category archive pages."
|
637 |
msgstr ""
|
638 |
|
639 |
#: admin/includes/components/example-list.php:33
|
640 |
-
#: _out/admin/includes/components/example-list.php:33
|
641 |
msgid "Date Archives"
|
642 |
msgstr ""
|
643 |
|
644 |
#: admin/includes/components/example-list.php:35
|
645 |
-
#: _out/admin/includes/components/example-list.php:35
|
646 |
msgid "Shortcode for use for archiving by date."
|
647 |
msgstr ""
|
648 |
|
649 |
#: admin/includes/components/example-list.php:42
|
650 |
-
#: _out/admin/includes/components/example-list.php:42
|
651 |
msgid "Excluding Posts"
|
652 |
msgstr ""
|
653 |
|
654 |
#: admin/includes/components/example-list.php:44
|
655 |
-
#: _out/admin/includes/components/example-list.php:44
|
656 |
msgid "Shortcode for excluding an array of posts."
|
657 |
msgstr ""
|
658 |
|
659 |
#: admin/includes/components/example-list.php:50
|
660 |
-
#: _out/admin/includes/components/example-list.php:50
|
661 |
msgid "Tag.php"
|
662 |
msgstr ""
|
663 |
|
664 |
#: admin/includes/components/example-list.php:52
|
665 |
-
#: _out/admin/includes/components/example-list.php:52
|
666 |
msgid "Shortcode for use on tag archive pages."
|
667 |
msgstr ""
|
668 |
|
669 |
#: admin/includes/components/layout-list.php:2
|
670 |
-
#: _out/admin/includes/components/layout-list.php:2
|
671 |
msgid "Apply Layout"
|
672 |
msgstr ""
|
673 |
|
674 |
#: admin/includes/components/layout-list.php:15
|
675 |
-
#: _out/admin/includes/components/layout-list.php:15
|
676 |
msgid "Default Layout"
|
677 |
msgstr ""
|
678 |
|
679 |
#: admin/includes/components/layout-list.php:24
|
680 |
-
#: _out/admin/includes/components/layout-list.php:24
|
681 |
msgid "Get predefined responsive layouts with the <strong>Layouts add-on</strong>"
|
682 |
msgstr ""
|
683 |
|
684 |
#: admin/includes/components/layout-list.php:26
|
685 |
-
#: _out/admin/includes/components/layout-list.php:26
|
686 |
msgid "Get More Layouts"
|
687 |
msgstr ""
|
688 |
|
689 |
#: admin/includes/components/repeater-options.php:5
|
690 |
#: admin/shortcode-builder/shortcode-builder.php:98
|
691 |
-
#: _out/admin/includes/components/repeater-options.php:5
|
692 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:98
|
693 |
msgid "Options"
|
694 |
msgstr ""
|
695 |
|
696 |
#: admin/includes/components/repeater-options.php:12
|
697 |
-
#: _out/admin/includes/components/repeater-options.php:12
|
698 |
msgid "Update Template from Database"
|
699 |
msgstr ""
|
700 |
|
701 |
#: admin/includes/components/repeater-options.php:12
|
702 |
-
#: _out/admin/includes/components/repeater-options.php:12
|
703 |
msgid "Update from Database"
|
704 |
msgstr ""
|
705 |
|
706 |
#: admin/includes/components/repeater-options.php:23
|
707 |
#: admin/includes/components/repeater-options.php:24
|
708 |
-
#: _out/admin/includes/components/repeater-options.php:23
|
709 |
-
#: _out/admin/includes/components/repeater-options.php:24
|
710 |
msgid "Download Template"
|
711 |
msgstr ""
|
712 |
|
713 |
#: admin/includes/components/repeater-options.php:30
|
714 |
-
#: _out/admin/includes/components/repeater-options.php:30
|
715 |
msgid "Copy Template Data"
|
716 |
msgstr ""
|
717 |
|
718 |
#: admin/includes/cta/about.php:2
|
719 |
-
#: _out/admin/includes/cta/about.php:2
|
720 |
msgid "Other Plugins by Connekt"
|
721 |
msgstr ""
|
722 |
|
723 |
#: admin/includes/cta/add-ons.php:2
|
724 |
-
#: _out/admin/includes/cta/add-ons.php:2
|
725 |
msgid "About the Add-ons"
|
726 |
msgstr ""
|
727 |
|
728 |
#: admin/includes/cta/add-ons.php:8
|
729 |
-
#: _out/admin/includes/cta/add-ons.php:8
|
730 |
msgid "View Add-ons"
|
731 |
msgstr ""
|
732 |
|
733 |
#: admin/includes/cta/config.php:2
|
734 |
-
#: _out/admin/includes/cta/config.php:2
|
735 |
msgid "Plugin Configurations"
|
736 |
msgstr ""
|
737 |
|
738 |
#: admin/includes/cta/config.php:4
|
739 |
-
#: _out/admin/includes/cta/config.php:4
|
740 |
msgid "Plugin Version"
|
741 |
msgstr ""
|
742 |
|
743 |
#: admin/includes/cta/config.php:10
|
744 |
-
#: _out/admin/includes/cta/config.php:10
|
745 |
msgid "Release Date"
|
746 |
msgstr ""
|
747 |
|
748 |
#: admin/includes/cta/dyk.php:3
|
749 |
-
#: _out/admin/includes/cta/dyk.php:3
|
750 |
msgid "Did You Know?"
|
751 |
msgstr ""
|
752 |
|
753 |
#: admin/includes/cta/extend.php:3
|
754 |
-
#: _out/admin/includes/cta/extend.php:3
|
755 |
msgid "Unlock additional templates with the <a href=\"https://connekthq.com/plugins/ajax-load-more/add-ons/custom-repeaters/?utm_source=WP%20Admin&utm_medium=CustomRepeaters%20Extend&utm_campaign=Custom%20Repeaters\" target=\"_parent\">Custom Repeaters add-on</a>"
|
756 |
msgstr ""
|
757 |
|
758 |
#: admin/includes/cta/extend.php:5
|
759 |
-
#: _out/admin/includes/cta/extend.php:5
|
760 |
msgid "More Info"
|
761 |
msgstr ""
|
762 |
|
763 |
#: admin/includes/cta/pro-hero.php:25
|
764 |
-
#: _out/admin/includes/cta/pro-hero.php:25
|
765 |
msgid "Upgrade Now"
|
766 |
msgstr ""
|
767 |
|
768 |
#: admin/includes/cta/resources.php:2
|
769 |
-
#: _out/admin/includes/cta/resources.php:2
|
770 |
msgid "Plugin Resources"
|
771 |
msgstr ""
|
772 |
|
773 |
#: admin/includes/cta/resources.php:6
|
774 |
-
#: _out/admin/includes/cta/resources.php:6
|
775 |
msgid "Ajax Load More Demo Site"
|
776 |
msgstr ""
|
777 |
|
778 |
#: admin/includes/cta/resources.php:10
|
779 |
#: admin/views/help.php:31
|
780 |
-
#: _out/admin/includes/cta/resources.php:10
|
781 |
-
#: _out/admin/views/help.php:31
|
782 |
msgid "Implementation Guide"
|
783 |
msgstr ""
|
784 |
|
785 |
#: admin/includes/cta/resources.php:13
|
786 |
-
#: _out/admin/includes/cta/resources.php:13
|
787 |
msgid "Documentation"
|
788 |
msgstr ""
|
789 |
|
790 |
#: admin/includes/cta/resources.php:17
|
791 |
-
#: _out/admin/includes/cta/resources.php:17
|
792 |
msgid "Support and Issues"
|
793 |
msgstr ""
|
794 |
|
795 |
#: admin/includes/cta/resources.php:21
|
796 |
-
#: _out/admin/includes/cta/resources.php:21
|
797 |
msgid "Get Support"
|
798 |
msgstr ""
|
799 |
|
800 |
#: admin/includes/cta/resources.php:25
|
801 |
-
#: _out/admin/includes/cta/resources.php:25
|
802 |
msgid "Reviews"
|
803 |
msgstr ""
|
804 |
|
805 |
#: admin/includes/cta/resources.php:28
|
806 |
-
#: _out/admin/includes/cta/resources.php:28
|
807 |
msgid "WordPress"
|
808 |
msgstr ""
|
809 |
|
810 |
#: admin/includes/cta/resources.php:31
|
811 |
-
#: _out/admin/includes/cta/resources.php:31
|
812 |
msgid "Github"
|
813 |
msgstr ""
|
814 |
|
815 |
#: admin/includes/cta/resources.php:34
|
816 |
#: admin/includes/cta/sharing.php:14
|
817 |
-
#: _out/admin/includes/cta/resources.php:34
|
818 |
-
#: _out/admin/includes/cta/sharing.php:14
|
819 |
msgid "Twitter"
|
820 |
msgstr ""
|
821 |
|
822 |
#: admin/includes/cta/reviews.php:1
|
823 |
-
#: _out/admin/includes/cta/reviews.php:1
|
824 |
msgid "Leave a Review"
|
825 |
msgstr ""
|
826 |
|
827 |
#: admin/includes/cta/reviews.php:2
|
828 |
-
#: _out/admin/includes/cta/reviews.php:2
|
829 |
msgid "Good <em>or</em> bad - all reviews will help Ajax Load More push forward and grow."
|
830 |
msgstr ""
|
831 |
|
832 |
#: admin/includes/cta/reviews.php:4
|
833 |
-
#: _out/admin/includes/cta/reviews.php:4
|
834 |
msgid "Write Review"
|
835 |
msgstr ""
|
836 |
|
837 |
#: admin/includes/cta/sharing.php:17
|
838 |
-
#: _out/admin/includes/cta/sharing.php:17
|
839 |
msgid "Facebook"
|
840 |
msgstr ""
|
841 |
|
842 |
#: admin/includes/cta/sharing.php:20
|
843 |
-
#: _out/admin/includes/cta/sharing.php:20
|
844 |
msgid "Review"
|
845 |
msgstr ""
|
846 |
|
847 |
#: admin/includes/cta/sharing.php:24
|
848 |
-
#: _out/admin/includes/cta/sharing.php:24
|
849 |
msgid "Don't show me this again!"
|
850 |
msgstr ""
|
851 |
|
852 |
#: admin/includes/cta/test.php:9
|
853 |
-
#: _out/admin/includes/cta/test.php:9
|
854 |
msgid "REST API Access"
|
855 |
msgstr ""
|
856 |
|
857 |
#: admin/includes/cta/test.php:14
|
858 |
-
#: _out/admin/includes/cta/test.php:14
|
859 |
msgid "REST API Blocked"
|
860 |
msgstr ""
|
861 |
|
862 |
#: admin/includes/cta/test.php:15
|
863 |
-
#: _out/admin/includes/cta/test.php:15
|
864 |
msgid "Unable to access the WordPress REST API. Are you running a security plugin or have your server configured in a way that may be preventing access to the REST API?"
|
865 |
msgstr ""
|
866 |
|
867 |
#: admin/includes/cta/test.php:18
|
868 |
-
#: _out/admin/includes/cta/test.php:18
|
869 |
msgid "Get Plugin Support"
|
870 |
msgstr ""
|
871 |
|
872 |
#: admin/includes/cta/writeable.php:5
|
873 |
-
#: _out/admin/includes/cta/writeable.php:5
|
874 |
msgid "Read/Write Access"
|
875 |
msgstr ""
|
876 |
|
877 |
#: admin/includes/cta/writeable.php:14
|
878 |
-
#: _out/admin/includes/cta/writeable.php:14
|
879 |
msgid "Enabled"
|
880 |
msgstr ""
|
881 |
|
882 |
#: admin/includes/cta/writeable.php:15
|
883 |
-
#: _out/admin/includes/cta/writeable.php:15
|
884 |
msgid "Read/Write access is enabled within the Repeater Template directory."
|
885 |
msgstr ""
|
886 |
|
887 |
#: admin/includes/cta/writeable.php:17
|
888 |
-
#: _out/admin/includes/cta/writeable.php:17
|
889 |
msgid "Access Denied"
|
890 |
msgstr ""
|
891 |
|
892 |
#: admin/includes/cta/writeable.php:18
|
893 |
-
#: _out/admin/includes/cta/writeable.php:18
|
894 |
msgid "You must enable read and write access to save repeater template data. Please contact your hosting provider or site administrator for more information."
|
895 |
msgstr ""
|
896 |
|
897 |
#: admin/includes/cta/writeable.php:21
|
898 |
-
#: _out/admin/includes/cta/writeable.php:21
|
899 |
msgid "Error"
|
900 |
msgstr ""
|
901 |
|
902 |
#: admin/includes/cta/writeable.php:22
|
903 |
-
#: _out/admin/includes/cta/writeable.php:22
|
904 |
msgid "Unable to locate configuration file. Directory access may not be granted."
|
905 |
msgstr ""
|
906 |
|
907 |
#: admin/shortcode-builder/components/acf.php:3
|
908 |
-
#: _out/admin/shortcode-builder/components/acf.php:3
|
909 |
msgid "Advanced Custom Fields"
|
910 |
msgstr ""
|
911 |
|
912 |
#: admin/shortcode-builder/components/acf.php:7
|
913 |
-
#: _out/admin/shortcode-builder/components/acf.php:7
|
914 |
msgid "Enable compatibility with Advanced Custom Fields."
|
915 |
msgstr ""
|
916 |
|
@@ -949,41 +734,6 @@ msgstr ""
|
|
949 |
#: admin/shortcode-builder/shortcode-builder.php:675
|
950 |
#: admin/shortcode-builder/shortcode-builder.php:751
|
951 |
#: admin/shortcode-builder/shortcode-builder.php:1412
|
952 |
-
#: _out/admin/shortcode-builder/components/acf.php:14
|
953 |
-
#: _out/admin/shortcode-builder/components/cache.php:14
|
954 |
-
#: _out/admin/shortcode-builder/components/comments.php:14
|
955 |
-
#: _out/admin/shortcode-builder/components/cta.php:15
|
956 |
-
#: _out/admin/shortcode-builder/components/filters.php:15
|
957 |
-
#: _out/admin/shortcode-builder/components/filters.php:75
|
958 |
-
#: _out/admin/shortcode-builder/components/filters.php:96
|
959 |
-
#: _out/admin/shortcode-builder/components/filters.php:117
|
960 |
-
#: _out/admin/shortcode-builder/components/filters.php:158
|
961 |
-
#: _out/admin/shortcode-builder/components/filters.php:180
|
962 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:17
|
963 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:119
|
964 |
-
#: _out/admin/shortcode-builder/components/paging.php:15
|
965 |
-
#: _out/admin/shortcode-builder/components/paging.php:64
|
966 |
-
#: _out/admin/shortcode-builder/components/paging.php:90
|
967 |
-
#: _out/admin/shortcode-builder/components/preloaded.php:15
|
968 |
-
#: _out/admin/shortcode-builder/components/rest-api.php:30
|
969 |
-
#: _out/admin/shortcode-builder/components/rest-api.php:105
|
970 |
-
#: _out/admin/shortcode-builder/components/seo.php:15
|
971 |
-
#: _out/admin/shortcode-builder/components/single-post.php:19
|
972 |
-
#: _out/admin/shortcode-builder/components/single-post.php:162
|
973 |
-
#: _out/admin/shortcode-builder/components/single-post.php:211
|
974 |
-
#: _out/admin/shortcode-builder/components/single-post.php:311
|
975 |
-
#: _out/admin/shortcode-builder/components/term-query.php:15
|
976 |
-
#: _out/admin/shortcode-builder/components/term-query.php:79
|
977 |
-
#: _out/admin/shortcode-builder/components/users.php:14
|
978 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:220
|
979 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:257
|
980 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:280
|
981 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:418
|
982 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:477
|
983 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:500
|
984 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:675
|
985 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:751
|
986 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1412
|
987 |
msgid "True"
|
988 |
msgstr ""
|
989 |
|
@@ -1022,41 +772,6 @@ msgstr ""
|
|
1022 |
#: admin/shortcode-builder/shortcode-builder.php:679
|
1023 |
#: admin/shortcode-builder/shortcode-builder.php:755
|
1024 |
#: admin/shortcode-builder/shortcode-builder.php:1416
|
1025 |
-
#: _out/admin/shortcode-builder/components/acf.php:18
|
1026 |
-
#: _out/admin/shortcode-builder/components/cache.php:18
|
1027 |
-
#: _out/admin/shortcode-builder/components/comments.php:18
|
1028 |
-
#: _out/admin/shortcode-builder/components/cta.php:19
|
1029 |
-
#: _out/admin/shortcode-builder/components/filters.php:19
|
1030 |
-
#: _out/admin/shortcode-builder/components/filters.php:79
|
1031 |
-
#: _out/admin/shortcode-builder/components/filters.php:100
|
1032 |
-
#: _out/admin/shortcode-builder/components/filters.php:121
|
1033 |
-
#: _out/admin/shortcode-builder/components/filters.php:162
|
1034 |
-
#: _out/admin/shortcode-builder/components/filters.php:184
|
1035 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:21
|
1036 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:120
|
1037 |
-
#: _out/admin/shortcode-builder/components/paging.php:19
|
1038 |
-
#: _out/admin/shortcode-builder/components/paging.php:65
|
1039 |
-
#: _out/admin/shortcode-builder/components/paging.php:94
|
1040 |
-
#: _out/admin/shortcode-builder/components/preloaded.php:19
|
1041 |
-
#: _out/admin/shortcode-builder/components/rest-api.php:34
|
1042 |
-
#: _out/admin/shortcode-builder/components/rest-api.php:109
|
1043 |
-
#: _out/admin/shortcode-builder/components/seo.php:19
|
1044 |
-
#: _out/admin/shortcode-builder/components/single-post.php:23
|
1045 |
-
#: _out/admin/shortcode-builder/components/single-post.php:166
|
1046 |
-
#: _out/admin/shortcode-builder/components/single-post.php:215
|
1047 |
-
#: _out/admin/shortcode-builder/components/single-post.php:315
|
1048 |
-
#: _out/admin/shortcode-builder/components/term-query.php:19
|
1049 |
-
#: _out/admin/shortcode-builder/components/term-query.php:80
|
1050 |
-
#: _out/admin/shortcode-builder/components/users.php:18
|
1051 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:224
|
1052 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:261
|
1053 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:284
|
1054 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:422
|
1055 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:481
|
1056 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:504
|
1057 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:679
|
1058 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:755
|
1059 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1416
|
1060 |
msgid "False"
|
1061 |
msgstr ""
|
1062 |
|
@@ -1064,244 +779,189 @@ msgstr ""
|
|
1064 |
#: admin/shortcode-builder/components/comments.php:30
|
1065 |
#: admin/shortcode-builder/components/nextpage.php:34
|
1066 |
#: admin/shortcode-builder/components/single-post.php:35
|
1067 |
-
#: _out/admin/shortcode-builder/components/acf.php:31
|
1068 |
-
#: _out/admin/shortcode-builder/components/comments.php:30
|
1069 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:34
|
1070 |
-
#: _out/admin/shortcode-builder/components/single-post.php:35
|
1071 |
msgid "Post ID"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
#: admin/shortcode-builder/components/acf.php:31
|
1075 |
-
#: _out/admin/shortcode-builder/components/acf.php:31
|
1076 |
msgid "Leave this field blank and Ajax Load More will retrieve the ID from the global $post object."
|
1077 |
msgstr ""
|
1078 |
|
1079 |
#: admin/shortcode-builder/components/acf.php:32
|
1080 |
#: admin/shortcode-builder/components/nextpage.php:35
|
1081 |
-
#: _out/admin/shortcode-builder/components/acf.php:32
|
1082 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:35
|
1083 |
msgid "The ID of the current page/post."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
#: admin/shortcode-builder/components/acf.php:43
|
1087 |
#: admin/shortcode-builder/components/acf.php:48
|
1088 |
#: admin/shortcode-builder/components/acf.php:67
|
1089 |
-
#: _out/admin/shortcode-builder/components/acf.php:43
|
1090 |
-
#: _out/admin/shortcode-builder/components/acf.php:48
|
1091 |
-
#: _out/admin/shortcode-builder/components/acf.php:67
|
1092 |
msgid "Field Type"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
#: admin/shortcode-builder/components/acf.php:44
|
1096 |
-
#: _out/admin/shortcode-builder/components/acf.php:44
|
1097 |
msgid "Select the type of ACF field."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
#: admin/shortcode-builder/components/acf.php:50
|
1101 |
-
#: _out/admin/shortcode-builder/components/acf.php:50
|
1102 |
msgid "Select Field Type"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
#: admin/shortcode-builder/components/acf.php:51
|
1106 |
-
#: _out/admin/shortcode-builder/components/acf.php:51
|
1107 |
msgid "Flexible Content"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
#: admin/shortcode-builder/components/acf.php:52
|
1111 |
-
#: _out/admin/shortcode-builder/components/acf.php:52
|
1112 |
msgid "Gallery"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
#: admin/shortcode-builder/components/acf.php:53
|
1116 |
-
#: _out/admin/shortcode-builder/components/acf.php:53
|
1117 |
msgid "Relationship"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
#: admin/shortcode-builder/components/acf.php:54
|
1121 |
-
#: _out/admin/shortcode-builder/components/acf.php:54
|
1122 |
msgid "Repeater"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
#: admin/shortcode-builder/components/acf.php:62
|
1126 |
#: admin/shortcode-builder/components/acf.php:83
|
1127 |
-
#: _out/admin/shortcode-builder/components/acf.php:62
|
1128 |
-
#: _out/admin/shortcode-builder/components/acf.php:83
|
1129 |
msgid "Field Name"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
#: admin/shortcode-builder/components/acf.php:63
|
1133 |
-
#: _out/admin/shortcode-builder/components/acf.php:63
|
1134 |
msgid "Enter the name of the ACF field."
|
1135 |
msgstr ""
|
1136 |
|
1137 |
#: admin/shortcode-builder/components/acf.php:75
|
1138 |
-
#: _out/admin/shortcode-builder/components/acf.php:75
|
1139 |
msgid "Parent Field Name"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
#: admin/shortcode-builder/components/acf.php:75
|
1143 |
-
#: _out/admin/shortcode-builder/components/acf.php:75
|
1144 |
msgid "This option is only relevant when trying to access content in sub fields."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
#: admin/shortcode-builder/components/acf.php:77
|
1148 |
-
#: _out/admin/shortcode-builder/components/acf.php:77
|
1149 |
msgid "If this a nested ACF <a href=\"https://www.advancedcustomfields.com/resources/get_sub_field/\" target=\"_blank\">sub_field</a>, enter the parent field names."
|
1150 |
msgstr ""
|
1151 |
|
1152 |
#: admin/shortcode-builder/components/acf.php:78
|
1153 |
-
#: _out/admin/shortcode-builder/components/acf.php:78
|
1154 |
msgid "Access fields up to the three levels deep by colon separating the field names."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
#: admin/shortcode-builder/components/cache.php:7
|
1158 |
-
#: _out/admin/shortcode-builder/components/cache.php:7
|
1159 |
msgid "Turn on content caching."
|
1160 |
msgstr ""
|
1161 |
|
1162 |
#: admin/shortcode-builder/components/cache.php:29
|
1163 |
-
#: _out/admin/shortcode-builder/components/cache.php:29
|
1164 |
msgid "Cache ID"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
#: admin/shortcode-builder/components/cache.php:30
|
1168 |
-
#: _out/admin/shortcode-builder/components/cache.php:30
|
1169 |
msgid "You <u>must</u> generate a unique ID for this cached query - this unique ID will be used as a content identifier."
|
1170 |
msgstr ""
|
1171 |
|
1172 |
#: admin/shortcode-builder/components/cache.php:36
|
1173 |
-
#: _out/admin/shortcode-builder/components/cache.php:36
|
1174 |
msgid "Generate Cache ID"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
#: admin/shortcode-builder/components/comments.php:3
|
1178 |
-
#: _out/admin/shortcode-builder/components/comments.php:3
|
1179 |
msgid "Comments"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
#: admin/shortcode-builder/components/comments.php:7
|
1183 |
-
#: _out/admin/shortcode-builder/components/comments.php:7
|
1184 |
msgid "Enable Ajax Load More to display blog comments."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
#: admin/shortcode-builder/components/comments.php:31
|
1188 |
#: admin/shortcode-builder/components/single-post.php:36
|
1189 |
-
#: _out/admin/shortcode-builder/components/comments.php:31
|
1190 |
-
#: _out/admin/shortcode-builder/components/single-post.php:36
|
1191 |
msgid "The ID of the current single post."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
#: admin/shortcode-builder/components/comments.php:42
|
1195 |
-
#: _out/admin/shortcode-builder/components/comments.php:42
|
1196 |
msgid "Comments Per Page"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
#: admin/shortcode-builder/components/comments.php:43
|
1200 |
-
#: _out/admin/shortcode-builder/components/comments.php:43
|
1201 |
msgid "The number of top level items to show for each page of comments."
|
1202 |
msgstr ""
|
1203 |
|
1204 |
#: admin/shortcode-builder/components/comments.php:44
|
1205 |
-
#: _out/admin/shortcode-builder/components/comments.php:44
|
1206 |
msgid "<strong>Note</strong>: The amount selected does NOT include comment replies."
|
1207 |
msgstr ""
|
1208 |
|
1209 |
#: admin/shortcode-builder/components/comments.php:55
|
1210 |
-
#: _out/admin/shortcode-builder/components/comments.php:55
|
1211 |
msgid "Comment Type"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
#: admin/shortcode-builder/components/comments.php:56
|
1215 |
-
#: _out/admin/shortcode-builder/components/comments.php:56
|
1216 |
msgid "The type of comment(s) to display."
|
1217 |
msgstr ""
|
1218 |
|
1219 |
#: admin/shortcode-builder/components/comments.php:61
|
1220 |
-
#: _out/admin/shortcode-builder/components/comments.php:61
|
1221 |
msgid "Comment"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
#: admin/shortcode-builder/components/comments.php:62
|
1225 |
-
#: _out/admin/shortcode-builder/components/comments.php:62
|
1226 |
msgid "All"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
#: admin/shortcode-builder/components/comments.php:63
|
1230 |
-
#: _out/admin/shortcode-builder/components/comments.php:63
|
1231 |
msgid "Trackback"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
#: admin/shortcode-builder/components/comments.php:64
|
1235 |
-
#: _out/admin/shortcode-builder/components/comments.php:64
|
1236 |
msgid "Pingback"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
#: admin/shortcode-builder/components/comments.php:65
|
1240 |
-
#: _out/admin/shortcode-builder/components/comments.php:65
|
1241 |
msgid "Pings"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
#: admin/shortcode-builder/components/comments.php:73
|
1245 |
-
#: _out/admin/shortcode-builder/components/comments.php:73
|
1246 |
msgid "Comment Style"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
#: admin/shortcode-builder/components/comments.php:74
|
1250 |
-
#: _out/admin/shortcode-builder/components/comments.php:74
|
1251 |
msgid "Select the HTML container style for your comments."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
#: admin/shortcode-builder/components/comments.php:98
|
1255 |
-
#: _out/admin/shortcode-builder/components/comments.php:98
|
1256 |
msgid "Comment Template"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
#: admin/shortcode-builder/components/comments.php:99
|
1260 |
-
#: _out/admin/shortcode-builder/components/comments.php:99
|
1261 |
msgid "Select a repeater template that will display comment data."
|
1262 |
msgstr ""
|
1263 |
|
1264 |
#: admin/shortcode-builder/components/comments.php:100
|
1265 |
-
#: _out/admin/shortcode-builder/components/comments.php:100
|
1266 |
msgid "<strong>Note</strong>: <span>None</span> will use the default WordPress comment layout."
|
1267 |
msgstr ""
|
1268 |
|
1269 |
#: admin/shortcode-builder/components/comments.php:105
|
1270 |
#: admin/shortcode-builder/shortcode-builder.php:570
|
1271 |
#: admin/shortcode-builder/shortcode-builder.php:656
|
1272 |
-
#: _out/admin/shortcode-builder/components/comments.php:105
|
1273 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:570
|
1274 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:656
|
1275 |
msgid "None"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
#: admin/shortcode-builder/components/comments.php:106
|
1279 |
-
#: _out/admin/shortcode-builder/components/comments.php:106
|
1280 |
msgid "Default"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
#: admin/shortcode-builder/components/comments.php:120
|
1284 |
-
#: _out/admin/shortcode-builder/components/comments.php:120
|
1285 |
msgid "or"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
#: admin/shortcode-builder/components/comments.php:122
|
1289 |
-
#: _out/admin/shortcode-builder/components/comments.php:122
|
1290 |
msgid "Callback Function"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
#: admin/shortcode-builder/components/comments.php:123
|
1294 |
-
#: _out/admin/shortcode-builder/components/comments.php:123
|
1295 |
msgid "A custom <a href=\"https://codex.wordpress.org/Function_Reference/wp_list_comments#Arguments\" target=\"_blank\">callback</a> function that will display each comment."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
#: admin/shortcode-builder/components/comments.php:124
|
1299 |
-
#: _out/admin/shortcode-builder/components/comments.php:124
|
1300 |
msgid "<strong>Note</strong>: The majority of premium themes have a custom callback function for displaying comments. Please see comments.php or functions.php within your theme directory to locate the callback function for your theme."
|
1301 |
msgstr ""
|
1302 |
|
1303 |
#: admin/shortcode-builder/components/comments.php:135
|
1304 |
-
#: _out/admin/shortcode-builder/components/comments.php:135
|
1305 |
msgid "You must add the comments shortcode directly to your single template file using the <a href=\"https://developer.wordpress.org/reference/functions/do_shortcode/\" target=\"_blank\">do_shortcode</a> method."
|
1306 |
msgstr ""
|
1307 |
|
@@ -1311,515 +971,403 @@ msgstr ""
|
|
1311 |
#: admin/shortcode-builder/components/single-post.php:326
|
1312 |
#: admin/shortcode-builder/shortcode-builder.php:688
|
1313 |
#: admin/shortcode-builder/shortcode-builder.php:1405
|
1314 |
-
#: _out/admin/shortcode-builder/components/comments.php:135
|
1315 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:135
|
1316 |
-
#: _out/admin/shortcode-builder/components/single-post.php:63
|
1317 |
-
#: _out/admin/shortcode-builder/components/single-post.php:326
|
1318 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:688
|
1319 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1405
|
1320 |
msgid "View Docs"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
#: admin/shortcode-builder/components/cta.php:3
|
1324 |
-
#: _out/admin/shortcode-builder/components/cta.php:3
|
1325 |
msgid "Call to Actions"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
#: admin/shortcode-builder/components/cta.php:8
|
1329 |
-
#: _out/admin/shortcode-builder/components/cta.php:8
|
1330 |
msgid "Insert call to action block."
|
1331 |
msgstr ""
|
1332 |
|
1333 |
#: admin/shortcode-builder/components/cta.php:30
|
1334 |
-
#: _out/admin/shortcode-builder/components/cta.php:30
|
1335 |
msgid "CTA Positioning"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
#: admin/shortcode-builder/components/cta.php:31
|
1339 |
-
#: _out/admin/shortcode-builder/components/cta.php:31
|
1340 |
msgid "Insert call to action <strong><em id=\"sequence-update-before-after\">before</em></strong> post #<strong><em id=\"sequence-update\">1</em></strong>"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
#: admin/shortcode-builder/components/cta.php:36
|
1344 |
-
#: _out/admin/shortcode-builder/components/cta.php:36
|
1345 |
msgid "Before / After"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
#: admin/shortcode-builder/components/cta.php:38
|
1349 |
-
#: _out/admin/shortcode-builder/components/cta.php:38
|
1350 |
msgid "Before"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
#: admin/shortcode-builder/components/cta.php:39
|
1354 |
-
#: _out/admin/shortcode-builder/components/cta.php:39
|
1355 |
msgid "After"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
#: admin/shortcode-builder/components/cta.php:43
|
1359 |
-
#: _out/admin/shortcode-builder/components/cta.php:43
|
1360 |
msgid "Post #"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
#: admin/shortcode-builder/components/cta.php:52
|
1364 |
-
#: _out/admin/shortcode-builder/components/cta.php:52
|
1365 |
msgid "Template"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
#: admin/shortcode-builder/components/cta.php:54
|
1369 |
-
#: _out/admin/shortcode-builder/components/cta.php:54
|
1370 |
msgid "Select the <a href=\"admin.php?page=ajax-load-more-repeaters\" target=\"_parent\">repeater template</a> that will display your call to action."
|
1371 |
msgstr ""
|
1372 |
|
1373 |
#: admin/shortcode-builder/components/cta.php:61
|
1374 |
-
#: _out/admin/shortcode-builder/components/cta.php:61
|
1375 |
msgid "-- Select Repeater --"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
#: admin/shortcode-builder/components/cta.php:83
|
1379 |
-
#: _out/admin/shortcode-builder/components/cta.php:83
|
1380 |
msgid "Call to actions do NOT count as a post within an Ajax Load More loop."
|
1381 |
msgstr ""
|
1382 |
|
1383 |
#: admin/shortcode-builder/components/cta.php:84
|
1384 |
-
#: _out/admin/shortcode-builder/components/cta.php:84
|
1385 |
msgid "For example, if you set <strong>posts_per_page=\"5\"</strong> in your shortcode, 6 items will be displayed."
|
1386 |
msgstr ""
|
1387 |
|
1388 |
#: admin/shortcode-builder/components/filters.php:8
|
1389 |
-
#: _out/admin/shortcode-builder/components/filters.php:8
|
1390 |
msgid "Enable filters with this Ajax Load More instance."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
#: admin/shortcode-builder/components/filters.php:30
|
1394 |
#: admin/shortcode-builder/components/single-post.php:47
|
1395 |
-
#: _out/admin/shortcode-builder/components/filters.php:30
|
1396 |
-
#: _out/admin/shortcode-builder/components/single-post.php:47
|
1397 |
msgid "Target"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
#: admin/shortcode-builder/components/filters.php:30
|
1401 |
-
#: _out/admin/shortcode-builder/components/filters.php:30
|
1402 |
msgid "A target ID is not required but it is highly recommended to avoid issues with querystring parsing on page load."
|
1403 |
msgstr ""
|
1404 |
|
1405 |
#: admin/shortcode-builder/components/filters.php:31
|
1406 |
-
#: _out/admin/shortcode-builder/components/filters.php:31
|
1407 |
msgid "Connect Ajax Load More to a specific <a href=\"admin.php?page=ajax-load-more-filters\">filter instance</a> by selecting the filter ID."
|
1408 |
msgstr ""
|
1409 |
|
1410 |
#: admin/shortcode-builder/components/filters.php:51
|
1411 |
-
#: _out/admin/shortcode-builder/components/filters.php:51
|
1412 |
msgid "-- Select Filter --"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
#: admin/shortcode-builder/components/filters.php:55
|
1416 |
-
#: _out/admin/shortcode-builder/components/filters.php:55
|
1417 |
msgid "You don't have any filters! The first step is to create one"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
#: admin/shortcode-builder/components/filters.php:67
|
1421 |
-
#: _out/admin/shortcode-builder/components/filters.php:67
|
1422 |
msgid "URLs"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
#: admin/shortcode-builder/components/filters.php:67
|
1426 |
-
#: _out/admin/shortcode-builder/components/filters.php:67
|
1427 |
msgid "Querystring URLs allow users to share deep links to filtered content."
|
1428 |
msgstr ""
|
1429 |
|
1430 |
#: admin/shortcode-builder/components/filters.php:68
|
1431 |
-
#: _out/admin/shortcode-builder/components/filters.php:68
|
1432 |
msgid "Update the browser querystring with active filters values."
|
1433 |
msgstr ""
|
1434 |
|
1435 |
#: admin/shortcode-builder/components/filters.php:88
|
1436 |
-
#: _out/admin/shortcode-builder/components/filters.php:88
|
1437 |
msgid "Paging Parameters"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
#: admin/shortcode-builder/components/filters.php:88
|
1441 |
-
#: _out/admin/shortcode-builder/components/filters.php:88
|
1442 |
msgid "Adding paging parameters will allow for deep linking to a paged filter."
|
1443 |
msgstr ""
|
1444 |
|
1445 |
#: admin/shortcode-builder/components/filters.php:89
|
1446 |
-
#: _out/admin/shortcode-builder/components/filters.php:89
|
1447 |
msgid "Add <span>?pg={x}</span> to the browser querystring as users load additional pages."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
#: admin/shortcode-builder/components/filters.php:109
|
1451 |
#: admin/shortcode-builder/components/paging.php:56
|
1452 |
-
#: _out/admin/shortcode-builder/components/filters.php:109
|
1453 |
-
#: _out/admin/shortcode-builder/components/paging.php:56
|
1454 |
msgid "Scroll"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
#: admin/shortcode-builder/components/filters.php:109
|
1458 |
-
#: _out/admin/shortcode-builder/components/filters.php:109
|
1459 |
msgid "When a user filters a list they will be auto scrolled back to the top."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
#: admin/shortcode-builder/components/filters.php:110
|
1463 |
-
#: _out/admin/shortcode-builder/components/filters.php:110
|
1464 |
msgid "Automatically scroll users to the top of list after a filter update."
|
1465 |
msgstr ""
|
1466 |
|
1467 |
#: admin/shortcode-builder/components/filters.php:131
|
1468 |
#: admin/shortcode-builder/components/nextpage.php:125
|
1469 |
#: admin/shortcode-builder/components/paging.php:70
|
1470 |
-
#: _out/admin/shortcode-builder/components/filters.php:131
|
1471 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:125
|
1472 |
-
#: _out/admin/shortcode-builder/components/paging.php:70
|
1473 |
msgid "Scroll Top"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
#: admin/shortcode-builder/components/filters.php:131
|
1477 |
-
#: _out/admin/shortcode-builder/components/filters.php:131
|
1478 |
msgid "The Scroll Top value is the pixel position the window will be scrolled to."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
#: admin/shortcode-builder/components/filters.php:132
|
1482 |
-
#: _out/admin/shortcode-builder/components/filters.php:132
|
1483 |
msgid "The offset top position of the window used with `Paging Parameters` and `Scroll`."
|
1484 |
msgstr ""
|
1485 |
|
1486 |
#: admin/shortcode-builder/components/filters.php:137
|
1487 |
-
#: _out/admin/shortcode-builder/components/filters.php:137
|
1488 |
msgid "Scroll Top Value"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
#: admin/shortcode-builder/components/filters.php:150
|
1492 |
-
#: _out/admin/shortcode-builder/components/filters.php:150
|
1493 |
msgid "Analytics"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
#: admin/shortcode-builder/components/filters.php:150
|
1497 |
-
#: _out/admin/shortcode-builder/components/filters.php:150
|
1498 |
msgid "Each time the filter is updated a pageview will be sent to Google Analytics."
|
1499 |
msgstr ""
|
1500 |
|
1501 |
#: admin/shortcode-builder/components/filters.php:151
|
1502 |
-
#: _out/admin/shortcode-builder/components/filters.php:151
|
1503 |
msgid "Send pageviews to Google Analytics."
|
1504 |
msgstr ""
|
1505 |
|
1506 |
#: admin/shortcode-builder/components/filters.php:172
|
1507 |
#: admin/shortcode-builder/components/rest-api.php:97
|
1508 |
-
#: _out/admin/shortcode-builder/components/filters.php:172
|
1509 |
-
#: _out/admin/shortcode-builder/components/rest-api.php:97
|
1510 |
msgid "Debug Mode"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
#: admin/shortcode-builder/components/filters.php:173
|
1514 |
-
#: _out/admin/shortcode-builder/components/filters.php:173
|
1515 |
msgid "Enable debugging of the Ajax Load More filter object in the browser console."
|
1516 |
msgstr ""
|
1517 |
|
1518 |
#: admin/shortcode-builder/components/nextpage.php:5
|
1519 |
#: admin/shortcode-builder/components/paging.php:147
|
1520 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:5
|
1521 |
-
#: _out/admin/shortcode-builder/components/paging.php:147
|
1522 |
msgid "Next Page"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
#: admin/shortcode-builder/components/nextpage.php:10
|
1526 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:10
|
1527 |
msgid "Enable the infinite scrolling of multipage WordPress content using the"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
#: admin/shortcode-builder/components/nextpage.php:10
|
1531 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:10
|
1532 |
msgid "Quicktag or Page Break block."
|
1533 |
msgstr ""
|
1534 |
|
1535 |
#: admin/shortcode-builder/components/nextpage.php:46
|
1536 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:46
|
1537 |
msgid "URL Rewrite"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
#: admin/shortcode-builder/components/nextpage.php:47
|
1541 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:47
|
1542 |
msgid "Update the browser address bar as pages come into view."
|
1543 |
msgstr ""
|
1544 |
|
1545 |
#: admin/shortcode-builder/components/nextpage.php:54
|
1546 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:54
|
1547 |
msgid "Yes, update the URL."
|
1548 |
msgstr ""
|
1549 |
|
1550 |
#: admin/shortcode-builder/components/nextpage.php:63
|
1551 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:63
|
1552 |
msgid "Page Title Template"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
#: admin/shortcode-builder/components/nextpage.php:64
|
1556 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:64
|
1557 |
msgid "The page title template is used to update the browser title each time a new page is loaded."
|
1558 |
msgstr ""
|
1559 |
|
1560 |
#: admin/shortcode-builder/components/nextpage.php:65
|
1561 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:65
|
1562 |
msgid "Page title will NOT be updated if this field remains empty."
|
1563 |
msgstr ""
|
1564 |
|
1565 |
#: admin/shortcode-builder/components/nextpage.php:73
|
1566 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:73
|
1567 |
msgid "Template Tags"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
#: admin/shortcode-builder/components/nextpage.php:75
|
1571 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:75
|
1572 |
msgid "Current Page Number"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
#: admin/shortcode-builder/components/nextpage.php:76
|
1576 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:76
|
1577 |
msgid "Total Number of Pages"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
#: admin/shortcode-builder/components/nextpage.php:77
|
1581 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:77
|
1582 |
msgid "Title of Post"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
#: admin/shortcode-builder/components/nextpage.php:78
|
1586 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:78
|
1587 |
msgid "Site Title"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
#: admin/shortcode-builder/components/nextpage.php:79
|
1591 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:79
|
1592 |
msgid "Site Tagline"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
#: admin/shortcode-builder/components/nextpage.php:90
|
1596 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:90
|
1597 |
msgid "Google Analytics"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
#: admin/shortcode-builder/components/nextpage.php:91
|
1601 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:91
|
1602 |
msgid "You must have a reference to your Google Analytics tracking code already on the page."
|
1603 |
msgstr ""
|
1604 |
|
1605 |
#: admin/shortcode-builder/components/nextpage.php:93
|
1606 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:93
|
1607 |
msgid "Each time a page is loaded it will count as a pageview."
|
1608 |
msgstr ""
|
1609 |
|
1610 |
#: admin/shortcode-builder/components/nextpage.php:100
|
1611 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:100
|
1612 |
msgid "Yes, send pageviews to Google Analytics."
|
1613 |
msgstr ""
|
1614 |
|
1615 |
#: admin/shortcode-builder/components/nextpage.php:109
|
1616 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:109
|
1617 |
msgid "Scroll to Page"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
#: admin/shortcode-builder/components/nextpage.php:111
|
1621 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:111
|
1622 |
msgid "Scroll users automatically to the next page on 'Load More' action."
|
1623 |
msgstr ""
|
1624 |
|
1625 |
#: admin/shortcode-builder/components/nextpage.php:117
|
1626 |
#: admin/shortcode-builder/components/paging.php:62
|
1627 |
#: admin/shortcode-builder/shortcode-builder.php:410
|
1628 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:117
|
1629 |
-
#: _out/admin/shortcode-builder/components/paging.php:62
|
1630 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:410
|
1631 |
msgid "Enable Scrolling"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
#: admin/shortcode-builder/components/nextpage.php:126
|
1635 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:126
|
1636 |
msgid "The scrolltop position of the browser window (used with scrolling and fwd/back browser buttons)."
|
1637 |
msgstr ""
|
1638 |
|
1639 |
#: admin/shortcode-builder/components/nextpage.php:135
|
1640 |
-
#: _out/admin/shortcode-builder/components/nextpage.php:135
|
1641 |
msgid "You must add the Next Page shortcode directly to your template file using the <a href=\"https://developer.wordpress.org/reference/functions/do_shortcode/\" target=\"_blank\">do_shortcode</a> method."
|
1642 |
msgstr ""
|
1643 |
|
1644 |
#: admin/shortcode-builder/components/paging.php:3
|
1645 |
-
#: _out/admin/shortcode-builder/components/paging.php:3
|
1646 |
msgid "Paging"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
#: admin/shortcode-builder/components/paging.php:8
|
1650 |
-
#: _out/admin/shortcode-builder/components/paging.php:8
|
1651 |
msgid "Replace infinite scrolling with a paged ajax navigation system."
|
1652 |
msgstr ""
|
1653 |
|
1654 |
#: admin/shortcode-builder/components/paging.php:31
|
1655 |
-
#: _out/admin/shortcode-builder/components/paging.php:31
|
1656 |
msgid "Navigation Classes"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
#: admin/shortcode-builder/components/paging.php:32
|
1660 |
-
#: _out/admin/shortcode-builder/components/paging.php:32
|
1661 |
msgid "Add custom CSS classes to the paging navigation menu."
|
1662 |
msgstr ""
|
1663 |
|
1664 |
#: admin/shortcode-builder/components/paging.php:43
|
1665 |
-
#: _out/admin/shortcode-builder/components/paging.php:43
|
1666 |
msgid "Show at Most"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
#: admin/shortcode-builder/components/paging.php:44
|
1670 |
-
#: _out/admin/shortcode-builder/components/paging.php:44
|
1671 |
msgid "The maximum amount of page menu items to show at a time. <br/.>0 = no maximum"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
#: admin/shortcode-builder/components/paging.php:57
|
1675 |
-
#: _out/admin/shortcode-builder/components/paging.php:57
|
1676 |
msgid "Move users to the top of the Ajax Load More container after a paging click event."
|
1677 |
msgstr ""
|
1678 |
|
1679 |
#: admin/shortcode-builder/components/paging.php:71
|
1680 |
-
#: _out/admin/shortcode-builder/components/paging.php:71
|
1681 |
msgid "The scrolltop position of the browser window when scrolling back to top."
|
1682 |
msgstr ""
|
1683 |
|
1684 |
#: admin/shortcode-builder/components/paging.php:82
|
1685 |
-
#: _out/admin/shortcode-builder/components/paging.php:82
|
1686 |
msgid "Controls"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
#: admin/shortcode-builder/components/paging.php:83
|
1690 |
-
#: _out/admin/shortcode-builder/components/paging.php:83
|
1691 |
msgid "Show first/last and next/previous buttons in the paging navigation."
|
1692 |
msgstr ""
|
1693 |
|
1694 |
#: admin/shortcode-builder/components/paging.php:105
|
1695 |
-
#: _out/admin/shortcode-builder/components/paging.php:105
|
1696 |
msgid "First Page"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
#: admin/shortcode-builder/components/paging.php:105
|
1700 |
#: admin/shortcode-builder/components/paging.php:119
|
1701 |
-
#: _out/admin/shortcode-builder/components/paging.php:105
|
1702 |
-
#: _out/admin/shortcode-builder/components/paging.php:119
|
1703 |
msgid "Leave empty to not render button."
|
1704 |
msgstr ""
|
1705 |
|
1706 |
#: admin/shortcode-builder/components/paging.php:107
|
1707 |
-
#: _out/admin/shortcode-builder/components/paging.php:107
|
1708 |
msgid "Label for the <span>First Page</span> button."
|
1709 |
msgstr ""
|
1710 |
|
1711 |
#: admin/shortcode-builder/components/paging.php:119
|
1712 |
-
#: _out/admin/shortcode-builder/components/paging.php:119
|
1713 |
msgid "Last Page"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
#: admin/shortcode-builder/components/paging.php:121
|
1717 |
-
#: _out/admin/shortcode-builder/components/paging.php:121
|
1718 |
msgid "Label for the <span>Last Page</span> button."
|
1719 |
msgstr ""
|
1720 |
|
1721 |
#: admin/shortcode-builder/components/paging.php:133
|
1722 |
-
#: _out/admin/shortcode-builder/components/paging.php:133
|
1723 |
msgid "Previous Page"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
#: admin/shortcode-builder/components/paging.php:135
|
1727 |
-
#: _out/admin/shortcode-builder/components/paging.php:135
|
1728 |
msgid "Label for the <span>Previous Page</span> button."
|
1729 |
msgstr ""
|
1730 |
|
1731 |
#: admin/shortcode-builder/components/paging.php:149
|
1732 |
-
#: _out/admin/shortcode-builder/components/paging.php:149
|
1733 |
msgid "Label for the <span>Next Page</span> button."
|
1734 |
msgstr ""
|
1735 |
|
1736 |
#: admin/shortcode-builder/components/preloaded.php:3
|
1737 |
-
#: _out/admin/shortcode-builder/components/preloaded.php:3
|
1738 |
msgid "Preloaded"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
#: admin/shortcode-builder/components/preloaded.php:8
|
1742 |
-
#: _out/admin/shortcode-builder/components/preloaded.php:8
|
1743 |
msgid "Preload posts prior to making Ajax requests."
|
1744 |
msgstr ""
|
1745 |
|
1746 |
#: admin/shortcode-builder/components/preloaded.php:30
|
1747 |
-
#: _out/admin/shortcode-builder/components/preloaded.php:30
|
1748 |
msgid "Preload Amount"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
#: admin/shortcode-builder/components/preloaded.php:31
|
1752 |
-
#: _out/admin/shortcode-builder/components/preloaded.php:31
|
1753 |
msgid "Enter the number of posts to preload."
|
1754 |
msgstr ""
|
1755 |
|
1756 |
#: admin/shortcode-builder/components/rest-api.php:18
|
1757 |
-
#: _out/admin/shortcode-builder/components/rest-api.php:18
|
1758 |
msgid "REST API"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
#: admin/shortcode-builder/components/rest-api.php:23
|
1762 |
-
#: _out/admin/shortcode-builder/components/rest-api.php:23
|
1763 |
msgid "Enable the WordPress REST API."
|
1764 |
msgstr ""
|
1765 |
|
1766 |
#: admin/shortcode-builder/components/rest-api.php:46
|
1767 |
-
#: _out/admin/shortcode-builder/components/rest-api.php:46
|
1768 |
msgid "Base URL"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
#: admin/shortcode-builder/components/rest-api.php:47
|
1772 |
-
#: _out/admin/shortcode-builder/components/rest-api.php:47
|
1773 |
msgid "Set a default Base URL in the Ajax Load More settings panel"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
#: admin/shortcode-builder/components/rest-api.php:48
|
1777 |
-
#: _out/admin/shortcode-builder/components/rest-api.php:48
|
1778 |
msgid "Enter the base URL to your installation of the REST API."
|
1779 |
msgstr ""
|
1780 |
|
1781 |
#: admin/shortcode-builder/components/rest-api.php:59
|
1782 |
-
#: _out/admin/shortcode-builder/components/rest-api.php:59
|
1783 |
msgid "Namespace"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
#: admin/shortcode-builder/components/rest-api.php:60
|
1787 |
-
#: _out/admin/shortcode-builder/components/rest-api.php:60
|
1788 |
msgid "Set a default Namespace in the Ajax Load More settings panel"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
#: admin/shortcode-builder/components/rest-api.php:61
|
1792 |
-
#: _out/admin/shortcode-builder/components/rest-api.php:61
|
1793 |
msgid "Enter the custom namespace for this Ajax Load More query."
|
1794 |
msgstr ""
|
1795 |
|
1796 |
#: admin/shortcode-builder/components/rest-api.php:72
|
1797 |
-
#: _out/admin/shortcode-builder/components/rest-api.php:72
|
1798 |
msgid "Endpoint"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
#: admin/shortcode-builder/components/rest-api.php:73
|
1802 |
-
#: _out/admin/shortcode-builder/components/rest-api.php:73
|
1803 |
msgid "Set a default Endpoint in the Ajax Load More settings panel"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
#: admin/shortcode-builder/components/rest-api.php:74
|
1807 |
-
#: _out/admin/shortcode-builder/components/rest-api.php:74
|
1808 |
msgid "Enter your custom endpoint for this Ajax Load More query."
|
1809 |
msgstr ""
|
1810 |
|
1811 |
#: admin/shortcode-builder/components/rest-api.php:85
|
1812 |
-
#: _out/admin/shortcode-builder/components/rest-api.php:85
|
1813 |
msgid "Template ID"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
#: admin/shortcode-builder/components/rest-api.php:85
|
1817 |
-
#: _out/admin/shortcode-builder/components/rest-api.php:85
|
1818 |
msgid "Ajax Load More references this ID while looping and displaying your data. You must still select a repeater template for this instance of Ajax Load More"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
#: admin/shortcode-builder/components/rest-api.php:86
|
1822 |
-
#: _out/admin/shortcode-builder/components/rest-api.php:86
|
1823 |
msgid "Enter the ID of your javascript template.<br/><br/>e.g. <em>tmpl-alm-template</em> = <em>alm-template</em>"
|
1824 |
msgstr ""
|
1825 |
|
@@ -1836,150 +1384,109 @@ msgstr ""
|
|
1836 |
#: admin/shortcode-builder/shortcode-builder.php:1213
|
1837 |
#: admin/shortcode-builder/shortcode-builder.php:1242
|
1838 |
#: admin/shortcode-builder/shortcode-builder.php:1273
|
1839 |
-
#: _out/admin/shortcode-builder/components/rest-api.php:86
|
1840 |
-
#: _out/admin/shortcode-builder/components/single-post.php:155
|
1841 |
-
#: _out/admin/shortcode-builder/components/single-post.php:204
|
1842 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:236
|
1843 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:250
|
1844 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:273
|
1845 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:744
|
1846 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:937
|
1847 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1031
|
1848 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1172
|
1849 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1213
|
1850 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1242
|
1851 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1273
|
1852 |
msgid "View Example"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
#: admin/shortcode-builder/components/rest-api.php:98
|
1856 |
-
#: _out/admin/shortcode-builder/components/rest-api.php:98
|
1857 |
msgid "Enable debugging (console.log) of REST API responses in the browser console. "
|
1858 |
msgstr ""
|
1859 |
|
1860 |
#: admin/shortcode-builder/components/rest-api.php:117
|
1861 |
-
#: _out/admin/shortcode-builder/components/rest-api.php:117
|
1862 |
msgid "Visit <a href=\"http://v2.wp-api.org/\" target=\"_blank\">http://v2.wp-api.org</a> for documentation on creating custom <a href=\"http://v2.wp-api.org/extending/adding/\" target=\"_blank\">Endpoints</a> for use with Ajax Load More."
|
1863 |
msgstr ""
|
1864 |
|
1865 |
#: admin/shortcode-builder/components/seo.php:4
|
1866 |
-
#: _out/admin/shortcode-builder/components/seo.php:4
|
1867 |
msgid "Search Engine Optimization"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
#: admin/shortcode-builder/components/seo.php:8
|
1871 |
-
#: _out/admin/shortcode-builder/components/seo.php:8
|
1872 |
msgid "Enable address bar URL rewrites as users page through ajax loaded content."
|
1873 |
msgstr ""
|
1874 |
|
1875 |
#: admin/shortcode-builder/components/single-post.php:7
|
1876 |
-
#: _out/admin/shortcode-builder/components/single-post.php:7
|
1877 |
msgid "Single Posts"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
#: admin/shortcode-builder/components/single-post.php:12
|
1881 |
-
#: _out/admin/shortcode-builder/components/single-post.php:12
|
1882 |
msgid "Enable the infinite scrolling of single posts."
|
1883 |
msgstr ""
|
1884 |
|
1885 |
#: admin/shortcode-builder/components/single-post.php:47
|
1886 |
-
#: _out/admin/shortcode-builder/components/single-post.php:47
|
1887 |
msgid "Repeater Templates are not required when using the Target implementation."
|
1888 |
msgstr ""
|
1889 |
|
1890 |
#: admin/shortcode-builder/components/single-post.php:48
|
1891 |
-
#: _out/admin/shortcode-builder/components/single-post.php:48
|
1892 |
msgid "Enter the ID or classname of HTML element that wraps your single post content."
|
1893 |
msgstr ""
|
1894 |
|
1895 |
#: admin/shortcode-builder/components/single-post.php:50
|
1896 |
-
#: _out/admin/shortcode-builder/components/single-post.php:50
|
1897 |
msgid "View Guide"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
#: admin/shortcode-builder/components/single-post.php:61
|
1901 |
-
#: _out/admin/shortcode-builder/components/single-post.php:61
|
1902 |
msgid "Post Ordering"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
#: admin/shortcode-builder/components/single-post.php:61
|
1906 |
-
#: _out/admin/shortcode-builder/components/single-post.php:61
|
1907 |
msgid "By default, the Single Posts add-on will use the core WordPress `get_previous_post` function, but you can adjust that here."
|
1908 |
msgstr ""
|
1909 |
|
1910 |
#: admin/shortcode-builder/components/single-post.php:62
|
1911 |
-
#: _out/admin/shortcode-builder/components/single-post.php:62
|
1912 |
msgid "Select the posts loading order."
|
1913 |
msgstr ""
|
1914 |
|
1915 |
#: admin/shortcode-builder/components/single-post.php:68
|
1916 |
-
#: _out/admin/shortcode-builder/components/single-post.php:68
|
1917 |
msgid "Previous Post (by date DESC)"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
#: admin/shortcode-builder/components/single-post.php:69
|
1921 |
-
#: _out/admin/shortcode-builder/components/single-post.php:69
|
1922 |
msgid "Next Post (by date ASC)"
|
1923 |
msgstr ""
|
1924 |
|
1925 |
#: admin/shortcode-builder/components/single-post.php:70
|
1926 |
#: admin/shortcode-builder/components/single-post.php:87
|
1927 |
-
#: _out/admin/shortcode-builder/components/single-post.php:70
|
1928 |
-
#: _out/admin/shortcode-builder/components/single-post.php:87
|
1929 |
msgid "Latest Post (Start from most recent)"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
#: admin/shortcode-builder/components/single-post.php:71
|
1933 |
-
#: _out/admin/shortcode-builder/components/single-post.php:71
|
1934 |
msgid "Post IDs (Array)"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
#: admin/shortcode-builder/components/single-post.php:72
|
1938 |
-
#: _out/admin/shortcode-builder/components/single-post.php:72
|
1939 |
msgid "Custom Query"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
#: admin/shortcode-builder/components/single-post.php:81
|
1943 |
-
#: _out/admin/shortcode-builder/components/single-post.php:81
|
1944 |
msgid "Custom Query Order"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
#: admin/shortcode-builder/components/single-post.php:82
|
1948 |
-
#: _out/admin/shortcode-builder/components/single-post.php:82
|
1949 |
msgid "Select the post ordering of the custom query."
|
1950 |
msgstr ""
|
1951 |
|
1952 |
#: admin/shortcode-builder/components/single-post.php:86
|
1953 |
-
#: _out/admin/shortcode-builder/components/single-post.php:86
|
1954 |
msgid "Previous Post (Continue by date DESC)"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
#: admin/shortcode-builder/components/single-post.php:96
|
1958 |
-
#: _out/admin/shortcode-builder/components/single-post.php:96
|
1959 |
msgid "Post ID Array"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
#: admin/shortcode-builder/components/single-post.php:97
|
1963 |
-
#: _out/admin/shortcode-builder/components/single-post.php:97
|
1964 |
msgid "A comma separated list of post ID's to query by order."
|
1965 |
msgstr ""
|
1966 |
|
1967 |
#: admin/shortcode-builder/components/single-post.php:110
|
1968 |
#: admin/shortcode-builder/components/term-query.php:39
|
1969 |
#: admin/shortcode-builder/shortcode-builder.php:1114
|
1970 |
-
#: _out/admin/shortcode-builder/components/single-post.php:110
|
1971 |
-
#: _out/admin/shortcode-builder/components/term-query.php:39
|
1972 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1114
|
1973 |
msgid "Taxonomy"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
#: admin/shortcode-builder/components/single-post.php:110
|
1977 |
-
#: _out/admin/shortcode-builder/components/single-post.php:110
|
1978 |
msgid "Selecting a taxonomy means only previous posts from the same taxonomy term will be returned. If a post has multiple terms attached, each term will be considered using an OR relationship query."
|
1979 |
msgstr ""
|
1980 |
|
1981 |
#: admin/shortcode-builder/components/single-post.php:111
|
1982 |
-
#: _out/admin/shortcode-builder/components/single-post.php:111
|
1983 |
msgid "Query previous posts from the same taxonomy term(s)."
|
1984 |
msgstr ""
|
1985 |
|
@@ -1987,227 +1494,176 @@ msgstr ""
|
|
1987 |
#: admin/shortcode-builder/includes/tax-query-options.php:5
|
1988 |
#: admin/shortcode-builder/includes/tax-query-options.php:62
|
1989 |
#: admin/shortcode-builder/includes/tax-query-options.php:105
|
1990 |
-
#: _out/admin/shortcode-builder/components/single-post.php:124
|
1991 |
-
#: _out/admin/shortcode-builder/includes/tax-query-options.php:5
|
1992 |
-
#: _out/admin/shortcode-builder/includes/tax-query-options.php:62
|
1993 |
-
#: _out/admin/shortcode-builder/includes/tax-query-options.php:105
|
1994 |
msgid "Select Taxonomy"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
#: admin/shortcode-builder/components/single-post.php:125
|
1998 |
#: admin/shortcode-builder/components/term-query.php:45
|
1999 |
#: admin/shortcode-builder/shortcode-builder.php:930
|
2000 |
-
#: _out/admin/shortcode-builder/components/single-post.php:125
|
2001 |
-
#: _out/admin/shortcode-builder/components/term-query.php:45
|
2002 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:930
|
2003 |
msgid "Category"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
#: admin/shortcode-builder/components/single-post.php:126
|
2007 |
#: admin/shortcode-builder/components/term-query.php:46
|
2008 |
#: admin/shortcode-builder/shortcode-builder.php:1023
|
2009 |
-
#: _out/admin/shortcode-builder/components/single-post.php:126
|
2010 |
-
#: _out/admin/shortcode-builder/components/term-query.php:46
|
2011 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1023
|
2012 |
msgid "Tag"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
#: admin/shortcode-builder/components/single-post.php:140
|
2016 |
-
#: _out/admin/shortcode-builder/components/single-post.php:140
|
2017 |
msgid "Excluded Terms "
|
2018 |
msgstr ""
|
2019 |
|
2020 |
#: admin/shortcode-builder/components/single-post.php:140
|
2021 |
-
#: _out/admin/shortcode-builder/components/single-post.php:140
|
2022 |
msgid "A comma-separated list of excluded terms by ID."
|
2023 |
msgstr ""
|
2024 |
|
2025 |
#: admin/shortcode-builder/components/single-post.php:141
|
2026 |
-
#: _out/admin/shortcode-builder/components/single-post.php:141
|
2027 |
msgid "Exclude posts by term ID from the previous post query."
|
2028 |
msgstr ""
|
2029 |
|
2030 |
#: admin/shortcode-builder/components/single-post.php:153
|
2031 |
-
#: _out/admin/shortcode-builder/components/single-post.php:153
|
2032 |
msgid "Post Preview"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
#: admin/shortcode-builder/components/single-post.php:154
|
2036 |
-
#: _out/admin/shortcode-builder/components/single-post.php:154
|
2037 |
msgid "Show a preview of Ajax loaded posts and have the user click to load the remainder of the post."
|
2038 |
msgstr ""
|
2039 |
|
2040 |
#: admin/shortcode-builder/components/single-post.php:178
|
2041 |
-
#: _out/admin/shortcode-builder/components/single-post.php:178
|
2042 |
msgid "Button Label"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
#: admin/shortcode-builder/components/single-post.php:179
|
2046 |
-
#: _out/admin/shortcode-builder/components/single-post.php:179
|
2047 |
msgid "Enter a label for the preview button."
|
2048 |
msgstr ""
|
2049 |
|
2050 |
#: admin/shortcode-builder/components/single-post.php:189
|
2051 |
#: admin/shortcode-builder/components/single-post.php:251
|
2052 |
-
#: _out/admin/shortcode-builder/components/single-post.php:189
|
2053 |
-
#: _out/admin/shortcode-builder/components/single-post.php:251
|
2054 |
msgid "Height"
|
2055 |
msgstr ""
|
2056 |
|
2057 |
#: admin/shortcode-builder/components/single-post.php:190
|
2058 |
-
#: _out/admin/shortcode-builder/components/single-post.php:190
|
2059 |
msgid "Set the initial height of the preview in pixels."
|
2060 |
msgstr ""
|
2061 |
|
2062 |
#: admin/shortcode-builder/components/single-post.php:202
|
2063 |
-
#: _out/admin/shortcode-builder/components/single-post.php:202
|
2064 |
msgid "Reading Progress Bar"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
#: admin/shortcode-builder/components/single-post.php:203
|
2068 |
-
#: _out/admin/shortcode-builder/components/single-post.php:203
|
2069 |
msgid "Display a reading progress bar indicator at the top or bottom of the browser window."
|
2070 |
msgstr ""
|
2071 |
|
2072 |
#: admin/shortcode-builder/components/single-post.php:230
|
2073 |
-
#: _out/admin/shortcode-builder/components/single-post.php:230
|
2074 |
msgid "Position"
|
2075 |
msgstr ""
|
2076 |
|
2077 |
#: admin/shortcode-builder/components/single-post.php:231
|
2078 |
-
#: _out/admin/shortcode-builder/components/single-post.php:231
|
2079 |
msgid "Select the window position of the progress bar."
|
2080 |
msgstr ""
|
2081 |
|
2082 |
#: admin/shortcode-builder/components/single-post.php:238
|
2083 |
-
#: _out/admin/shortcode-builder/components/single-post.php:238
|
2084 |
msgid "Top"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
#: admin/shortcode-builder/components/single-post.php:242
|
2088 |
-
#: _out/admin/shortcode-builder/components/single-post.php:242
|
2089 |
msgid "Bottom"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
#: admin/shortcode-builder/components/single-post.php:252
|
2093 |
-
#: _out/admin/shortcode-builder/components/single-post.php:252
|
2094 |
msgid "Select the height of the progress bar in pixels."
|
2095 |
msgstr ""
|
2096 |
|
2097 |
#: admin/shortcode-builder/components/single-post.php:263
|
2098 |
-
#: _out/admin/shortcode-builder/components/single-post.php:263
|
2099 |
msgid "Colors"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
#: admin/shortcode-builder/components/single-post.php:264
|
2103 |
-
#: _out/admin/shortcode-builder/components/single-post.php:264
|
2104 |
msgid "Enter the hex color values of the reading progress bar"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
#: admin/shortcode-builder/components/single-post.php:265
|
2108 |
#: admin/shortcode-builder/shortcode-builder.php:770
|
2109 |
-
#: _out/admin/shortcode-builder/components/single-post.php:265
|
2110 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:770
|
2111 |
msgid "Default:"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
#: admin/shortcode-builder/components/single-post.php:272
|
2115 |
-
#: _out/admin/shortcode-builder/components/single-post.php:272
|
2116 |
msgid "Foreground Color:"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
#: admin/shortcode-builder/components/single-post.php:279
|
2120 |
-
#: _out/admin/shortcode-builder/components/single-post.php:279
|
2121 |
msgid "Background Color:"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
#: admin/shortcode-builder/components/single-post.php:279
|
2125 |
-
#: _out/admin/shortcode-builder/components/single-post.php:279
|
2126 |
msgid "Leave empty for a transparent background"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
#: admin/shortcode-builder/components/single-post.php:302
|
2130 |
-
#: _out/admin/shortcode-builder/components/single-post.php:302
|
2131 |
msgid "Elementor"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
#: admin/shortcode-builder/components/single-post.php:303
|
2135 |
-
#: _out/admin/shortcode-builder/components/single-post.php:303
|
2136 |
msgid "Set Elementor <b>true</b> if you are using Elementor templates to build single posts."
|
2137 |
msgstr ""
|
2138 |
|
2139 |
#: admin/shortcode-builder/components/single-post.php:304
|
2140 |
-
#: _out/admin/shortcode-builder/components/single-post.php:304
|
2141 |
msgid "View Blog Post"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
#: admin/shortcode-builder/components/single-post.php:326
|
2145 |
-
#: _out/admin/shortcode-builder/components/single-post.php:326
|
2146 |
msgid "You must add the Single Post shortcode directly to your single template file using the <a href=\"https://developer.wordpress.org/reference/functions/do_shortcode/\" target=\"_blank\">do_shortcode</a> method."
|
2147 |
msgstr ""
|
2148 |
|
2149 |
#: admin/shortcode-builder/components/term-query.php:3
|
2150 |
-
#: _out/admin/shortcode-builder/components/term-query.php:3
|
2151 |
msgid "Terms"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
#: admin/shortcode-builder/components/term-query.php:8
|
2155 |
-
#: _out/admin/shortcode-builder/components/term-query.php:8
|
2156 |
msgid "Enable Terms Query."
|
2157 |
msgstr ""
|
2158 |
|
2159 |
#: admin/shortcode-builder/components/term-query.php:40
|
2160 |
-
#: _out/admin/shortcode-builder/components/term-query.php:40
|
2161 |
msgid "Select a taxonomy to query."
|
2162 |
msgstr ""
|
2163 |
|
2164 |
#: admin/shortcode-builder/components/term-query.php:61
|
2165 |
-
#: _out/admin/shortcode-builder/components/term-query.php:61
|
2166 |
msgid "Number"
|
2167 |
msgstr ""
|
2168 |
|
2169 |
#: admin/shortcode-builder/components/term-query.php:61
|
2170 |
-
#: _out/admin/shortcode-builder/components/term-query.php:61
|
2171 |
msgid "Leave empty to return all terms."
|
2172 |
msgstr ""
|
2173 |
|
2174 |
#: admin/shortcode-builder/components/term-query.php:62
|
2175 |
-
#: _out/admin/shortcode-builder/components/term-query.php:62
|
2176 |
msgid "The number of terms to return per page."
|
2177 |
msgstr ""
|
2178 |
|
2179 |
#: admin/shortcode-builder/components/term-query.php:73
|
2180 |
-
#: _out/admin/shortcode-builder/components/term-query.php:73
|
2181 |
msgid "Hide Empty"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
#: admin/shortcode-builder/components/term-query.php:74
|
2185 |
-
#: _out/admin/shortcode-builder/components/term-query.php:74
|
2186 |
msgid "Whether to hide terms not assigned to any posts."
|
2187 |
msgstr ""
|
2188 |
|
2189 |
#: admin/shortcode-builder/components/users.php:3
|
2190 |
-
#: _out/admin/shortcode-builder/components/users.php:3
|
2191 |
msgid "Users"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
#: admin/shortcode-builder/components/users.php:7
|
2195 |
-
#: _out/admin/shortcode-builder/components/users.php:7
|
2196 |
msgid "Infinite scroll WordPress users"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
#: admin/shortcode-builder/components/users.php:30
|
2200 |
-
#: _out/admin/shortcode-builder/components/users.php:30
|
2201 |
msgid "User Role"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
#: admin/shortcode-builder/components/users.php:31
|
2205 |
-
#: _out/admin/shortcode-builder/components/users.php:31
|
2206 |
msgid "Select the role of user to be displayed"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
#: admin/shortcode-builder/components/users.php:36
|
2210 |
-
#: _out/admin/shortcode-builder/components/users.php:36
|
2211 |
msgid "All Roles"
|
2212 |
msgstr ""
|
2213 |
|
@@ -2215,15 +1671,10 @@ msgstr ""
|
|
2215 |
#: admin/shortcode-builder/shortcode-builder.php:934
|
2216 |
#: admin/shortcode-builder/shortcode-builder.php:1027
|
2217 |
#: admin/shortcode-builder/shortcode-builder.php:1260
|
2218 |
-
#: _out/admin/shortcode-builder/components/users.php:56
|
2219 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:934
|
2220 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1027
|
2221 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1260
|
2222 |
msgid "Include"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
#: admin/shortcode-builder/components/users.php:58
|
2226 |
-
#: _out/admin/shortcode-builder/components/users.php:58
|
2227 |
msgid "A comma separated list of users to be included by ID"
|
2228 |
msgstr ""
|
2229 |
|
@@ -2231,1613 +1682,1275 @@ msgstr ""
|
|
2231 |
#: admin/shortcode-builder/shortcode-builder.php:981
|
2232 |
#: admin/shortcode-builder/shortcode-builder.php:1076
|
2233 |
#: admin/shortcode-builder/shortcode-builder.php:1271
|
2234 |
-
#: _out/admin/shortcode-builder/components/users.php:70
|
2235 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:981
|
2236 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1076
|
2237 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1271
|
2238 |
msgid "Exclude"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
#: admin/shortcode-builder/components/users.php:72
|
2242 |
-
#: _out/admin/shortcode-builder/components/users.php:72
|
2243 |
msgid "A comma separated list of users to be excluded by ID"
|
2244 |
msgstr ""
|
2245 |
|
2246 |
#: admin/shortcode-builder/components/users.php:84
|
2247 |
-
#: _out/admin/shortcode-builder/components/users.php:84
|
2248 |
msgid "Users Per Page"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
#: admin/shortcode-builder/components/users.php:85
|
2252 |
-
#: _out/admin/shortcode-builder/components/users.php:85
|
2253 |
msgid "The number of users to show."
|
2254 |
msgstr ""
|
2255 |
|
2256 |
#: admin/shortcode-builder/components/users.php:96
|
2257 |
-
#: _out/admin/shortcode-builder/components/users.php:96
|
2258 |
msgid "Orderby"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
#: admin/shortcode-builder/components/users.php:97
|
2262 |
-
#: _out/admin/shortcode-builder/components/users.php:97
|
2263 |
msgid "Sort users by Order and Orderby parameters"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
#: admin/shortcode-builder/components/users.php:102
|
2267 |
#: admin/shortcode-builder/shortcode-builder.php:1316
|
2268 |
-
#: _out/admin/shortcode-builder/components/users.php:102
|
2269 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1316
|
2270 |
msgid "Order"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
#: admin/shortcode-builder/components/users.php:109
|
2274 |
#: admin/shortcode-builder/shortcode-builder.php:1323
|
2275 |
-
#: _out/admin/shortcode-builder/components/users.php:109
|
2276 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1323
|
2277 |
msgid "Order By"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
#: admin/shortcode-builder/includes/meta-query-options.php:4
|
2281 |
-
#: _out/admin/shortcode-builder/includes/meta-query-options.php:4
|
2282 |
msgid "Key (Name):"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
#: admin/shortcode-builder/includes/meta-query-options.php:5
|
2286 |
-
#: _out/admin/shortcode-builder/includes/meta-query-options.php:5
|
2287 |
msgid "Enter custom field key(name)"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
#: admin/shortcode-builder/includes/meta-query-options.php:8
|
2291 |
-
#: _out/admin/shortcode-builder/includes/meta-query-options.php:8
|
2292 |
msgid "Value:"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
#: admin/shortcode-builder/includes/meta-query-options.php:8
|
2296 |
-
#: _out/admin/shortcode-builder/includes/meta-query-options.php:8
|
2297 |
msgid "Query multiple values by splitting each value with a comma - e.g. value, value2, value3 etc."
|
2298 |
msgstr ""
|
2299 |
|
2300 |
#: admin/shortcode-builder/includes/meta-query-options.php:9
|
2301 |
-
#: _out/admin/shortcode-builder/includes/meta-query-options.php:9
|
2302 |
msgid "Enter custom field value(s)"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
#: admin/shortcode-builder/includes/meta-query-options.php:13
|
2306 |
-
#: _out/admin/shortcode-builder/includes/meta-query-options.php:13
|
2307 |
msgid "Operator:"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
#: admin/shortcode-builder/includes/meta-query-options.php:33
|
2311 |
-
#: _out/admin/shortcode-builder/includes/meta-query-options.php:33
|
2312 |
msgid "Type:"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
#: admin/shortcode-builder/includes/tax-query-options.php:3
|
2316 |
#: admin/shortcode-builder/includes/tax-query-options.php:59
|
2317 |
#: admin/shortcode-builder/includes/tax-query-options.php:102
|
2318 |
-
#: _out/admin/shortcode-builder/includes/tax-query-options.php:3
|
2319 |
-
#: _out/admin/shortcode-builder/includes/tax-query-options.php:59
|
2320 |
-
#: _out/admin/shortcode-builder/includes/tax-query-options.php:102
|
2321 |
msgid "Taxonomy:"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
#: admin/shortcode-builder/includes/tax-query-options.php:12
|
2325 |
#: admin/shortcode-builder/includes/tax-query-options.php:69
|
2326 |
#: admin/shortcode-builder/includes/tax-query-options.php:112
|
2327 |
-
#: _out/admin/shortcode-builder/includes/tax-query-options.php:12
|
2328 |
-
#: _out/admin/shortcode-builder/includes/tax-query-options.php:69
|
2329 |
-
#: _out/admin/shortcode-builder/includes/tax-query-options.php:112
|
2330 |
msgid "Taxonomy Terms:"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
#: admin/shortcode-builder/includes/tax-query-options.php:17
|
2334 |
#: admin/shortcode-builder/includes/tax-query-options.php:74
|
2335 |
#: admin/shortcode-builder/includes/tax-query-options.php:117
|
2336 |
-
#: _out/admin/shortcode-builder/includes/tax-query-options.php:17
|
2337 |
-
#: _out/admin/shortcode-builder/includes/tax-query-options.php:74
|
2338 |
-
#: _out/admin/shortcode-builder/includes/tax-query-options.php:117
|
2339 |
msgid "Taxonomy Operator:"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
#: admin/shortcode-builder/includes/tax-query-options.php:48
|
2343 |
#: admin/shortcode-builder/shortcode-builder.php:1148
|
2344 |
-
#: _out/admin/shortcode-builder/includes/tax-query-options.php:48
|
2345 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1148
|
2346 |
msgid "Relation:"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
#: admin/shortcode-builder/includes/tax-query-options.php:48
|
2350 |
-
#: _out/admin/shortcode-builder/includes/tax-query-options.php:48
|
2351 |
msgid "The logical relationship between each taxonomy when there is more than one."
|
2352 |
msgstr ""
|
2353 |
|
2354 |
#: admin/shortcode-builder/shortcode-builder.php:23
|
2355 |
#: admin/shortcode-builder/shortcode-builder.php:88
|
2356 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:23
|
2357 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:88
|
2358 |
msgid "Display Settings"
|
2359 |
msgstr ""
|
2360 |
|
2361 |
#: admin/shortcode-builder/shortcode-builder.php:24
|
2362 |
#: admin/shortcode-builder/shortcode-builder.php:798
|
2363 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:24
|
2364 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:798
|
2365 |
msgid "Query Parameters"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
#: admin/shortcode-builder/shortcode-builder.php:25
|
2369 |
#: admin/shortcode-builder/shortcode-builder.php:1390
|
2370 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:25
|
2371 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1390
|
2372 |
msgid "Integrations"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
#: admin/shortcode-builder/shortcode-builder.php:40
|
2376 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:40
|
2377 |
msgid "Configure your Ajax Load More add-ons."
|
2378 |
msgstr ""
|
2379 |
|
2380 |
#: admin/shortcode-builder/shortcode-builder.php:70
|
2381 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:70
|
2382 |
msgid "Configure your Ajax Load More extensions."
|
2383 |
msgstr ""
|
2384 |
|
2385 |
#: admin/shortcode-builder/shortcode-builder.php:90
|
2386 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:90
|
2387 |
msgid "Display Settings allow you create a custom Ajax Load More experience for your visitors."
|
2388 |
msgstr ""
|
2389 |
|
2390 |
#: admin/shortcode-builder/shortcode-builder.php:104
|
2391 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:104
|
2392 |
msgid "ID"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
#: admin/shortcode-builder/shortcode-builder.php:104
|
2396 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:104
|
2397 |
msgid "Adding a unique ID will allow you target this specific Ajax Load More instance with the alm_query_args_id() filter"
|
2398 |
msgstr ""
|
2399 |
|
2400 |
#: admin/shortcode-builder/shortcode-builder.php:105
|
2401 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:105
|
2402 |
msgid "Set a unique ID for this Ajax Load More instance."
|
2403 |
msgstr ""
|
2404 |
|
2405 |
#: admin/shortcode-builder/shortcode-builder.php:106
|
2406 |
#: admin/views/repeater-templates.php:151
|
2407 |
#: admin/views/repeater-templates.php:502
|
2408 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:106
|
2409 |
-
#: _out/admin/views/repeater-templates.php:151
|
2410 |
-
#: _out/admin/views/repeater-templates.php:502
|
2411 |
msgid "Learn More"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
#: admin/shortcode-builder/shortcode-builder.php:112
|
2415 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:112
|
2416 |
msgid "Generate Unique ID"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
#: admin/shortcode-builder/shortcode-builder.php:124
|
2420 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:124
|
2421 |
msgid "You can define a global button/loading style on the Ajax Load More settings screen"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
#: admin/shortcode-builder/shortcode-builder.php:125
|
2425 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:125
|
2426 |
msgid "Select an Ajax loading style - you can choose between a Button or Infinite Scroll."
|
2427 |
msgstr ""
|
2428 |
|
2429 |
#: admin/shortcode-builder/shortcode-builder.php:153
|
2430 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:153
|
2431 |
msgid "CLICK TO PREVIEW"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
#: admin/shortcode-builder/shortcode-builder.php:166
|
2435 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:166
|
2436 |
msgid "You can define a global container type on the Ajax Load More settings screen"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
#: admin/shortcode-builder/shortcode-builder.php:167
|
2440 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:167
|
2441 |
msgid "Override the global Container Type set in <a href=\"admin.php?page=ajax-load-more\">ALM Settings</a>."
|
2442 |
msgstr ""
|
2443 |
|
2444 |
#: admin/shortcode-builder/shortcode-builder.php:196
|
2445 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:196
|
2446 |
msgid "You can define global container classes on the Ajax Load More settings screen"
|
2447 |
msgstr ""
|
2448 |
|
2449 |
#: admin/shortcode-builder/shortcode-builder.php:198
|
2450 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:198
|
2451 |
msgid "Add custom CSS classes to the <span>.alm-listing</span> container."
|
2452 |
msgstr ""
|
2453 |
|
2454 |
#: admin/shortcode-builder/shortcode-builder.php:212
|
2455 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:212
|
2456 |
msgid "Pause"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
#: admin/shortcode-builder/shortcode-builder.php:213
|
2460 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:213
|
2461 |
msgid "Do not load Ajax content until the user clicks or interacts with the <em>Load More</em> button."
|
2462 |
msgstr ""
|
2463 |
|
2464 |
#: admin/shortcode-builder/shortcode-builder.php:234
|
2465 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:234
|
2466 |
msgid "Destroy After"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
#: admin/shortcode-builder/shortcode-builder.php:235
|
2470 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:235
|
2471 |
msgid "Remove Ajax Load More functionality after {<em>n</em>} number of pages have been loaded."
|
2472 |
msgstr ""
|
2473 |
|
2474 |
#: admin/shortcode-builder/shortcode-builder.php:248
|
2475 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:248
|
2476 |
msgid "Images Loaded"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
#: admin/shortcode-builder/shortcode-builder.php:248
|
2480 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:248
|
2481 |
msgid "Background images are not supported."
|
2482 |
msgstr ""
|
2483 |
|
2484 |
#: admin/shortcode-builder/shortcode-builder.php:249
|
2485 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:249
|
2486 |
msgid "Wait for all images to load before displaying ajax loaded content."
|
2487 |
msgstr ""
|
2488 |
|
2489 |
#: admin/shortcode-builder/shortcode-builder.php:271
|
2490 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:271
|
2491 |
msgid "Loading Placeholder"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
#: admin/shortcode-builder/shortcode-builder.php:271
|
2495 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:271
|
2496 |
msgid "A loading placeholder can help the understand content is about to rendered."
|
2497 |
msgstr ""
|
2498 |
|
2499 |
#: admin/shortcode-builder/shortcode-builder.php:272
|
2500 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:272
|
2501 |
msgid "Display a placeholder image while Ajax content is being loaded."
|
2502 |
msgstr ""
|
2503 |
|
2504 |
#: admin/shortcode-builder/shortcode-builder.php:290
|
2505 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:290
|
2506 |
msgid "URL:"
|
2507 |
msgstr ""
|
2508 |
|
2509 |
#: admin/shortcode-builder/shortcode-builder.php:302
|
2510 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:302
|
2511 |
msgid "No Results Text"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
#: admin/shortcode-builder/shortcode-builder.php:302
|
2515 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:302
|
2516 |
msgid "HTML is allowed, however when adding quote marks in classnames or IDs you must single quotes as shown in the example."
|
2517 |
msgstr ""
|
2518 |
|
2519 |
#: admin/shortcode-builder/shortcode-builder.php:303
|
2520 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:303
|
2521 |
msgid "Add text/html to be displayed when no results are returned in the Ajax query."
|
2522 |
msgstr ""
|
2523 |
|
2524 |
#: admin/shortcode-builder/shortcode-builder.php:303
|
2525 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:303
|
2526 |
msgid "e.g. <div class='no-results'>Sorry, nothing found in this query</div>"
|
2527 |
msgstr ""
|
2528 |
|
2529 |
#: admin/shortcode-builder/shortcode-builder.php:320
|
2530 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:320
|
2531 |
msgid "Template Selection"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
#: admin/shortcode-builder/shortcode-builder.php:325
|
2535 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:325
|
2536 |
msgid "Repeater Template"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
#: admin/shortcode-builder/shortcode-builder.php:327
|
2540 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:327
|
2541 |
msgid "Select which <a href=\"admin.php?page=ajax-load-more-repeaters\" target=\"_parent\">Repeater Template</a> you would like to use."
|
2542 |
msgstr ""
|
2543 |
|
2544 |
#: admin/shortcode-builder/shortcode-builder.php:361
|
2545 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:361
|
2546 |
msgid "Button Labels"
|
2547 |
msgstr ""
|
2548 |
|
2549 |
#: admin/shortcode-builder/shortcode-builder.php:366
|
2550 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:366
|
2551 |
msgid "Label"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
#: admin/shortcode-builder/shortcode-builder.php:367
|
2555 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:367
|
2556 |
msgid "Customize the text of the <em>Load More</em> button."
|
2557 |
msgstr ""
|
2558 |
|
2559 |
#: admin/shortcode-builder/shortcode-builder.php:378
|
2560 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:378
|
2561 |
msgid "Loading Label"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
#: admin/shortcode-builder/shortcode-builder.php:378
|
2565 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:378
|
2566 |
msgid "Leave field empty to not update button text while loading content"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
#: admin/shortcode-builder/shortcode-builder.php:379
|
2570 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:379
|
2571 |
msgid "Update the text of the <em>Load More</em> button while content is loading."
|
2572 |
msgstr ""
|
2573 |
|
2574 |
#: admin/shortcode-builder/shortcode-builder.php:383
|
2575 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:383
|
2576 |
msgid "Loading Posts..."
|
2577 |
msgstr ""
|
2578 |
|
2579 |
#: admin/shortcode-builder/shortcode-builder.php:390
|
2580 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:390
|
2581 |
msgid "Done Label"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
#: admin/shortcode-builder/shortcode-builder.php:390
|
2585 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:390
|
2586 |
msgid "Leave field empty to not update button text"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
#: admin/shortcode-builder/shortcode-builder.php:391
|
2590 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:391
|
2591 |
msgid "Update the text of the <em>Load More</em> button when no content remains to be loaded."
|
2592 |
msgstr ""
|
2593 |
|
2594 |
#: admin/shortcode-builder/shortcode-builder.php:395
|
2595 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:395
|
2596 |
msgid "No Posts Remain..."
|
2597 |
msgstr ""
|
2598 |
|
2599 |
#: admin/shortcode-builder/shortcode-builder.php:406
|
2600 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:406
|
2601 |
msgid "Scrolling"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
#: admin/shortcode-builder/shortcode-builder.php:411
|
2605 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:411
|
2606 |
msgid "Load more posts as the user scrolls the page."
|
2607 |
msgstr ""
|
2608 |
|
2609 |
#: admin/shortcode-builder/shortcode-builder.php:437
|
2610 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:437
|
2611 |
msgid "Scroll Distance"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
#: admin/shortcode-builder/shortcode-builder.php:437
|
2615 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:437
|
2616 |
msgid "Distance is based on the position of the loading button from the bottom of the screen"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
#: admin/shortcode-builder/shortcode-builder.php:438
|
2620 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:438
|
2621 |
msgid "The distance from the bottom of the screen to trigger loading of posts. (Default = 100)"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
#: admin/shortcode-builder/shortcode-builder.php:439
|
2625 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:439
|
2626 |
msgid "Pro-tip"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
#: admin/shortcode-builder/shortcode-builder.php:439
|
2630 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:439
|
2631 |
msgid "Use a negative number (-200) to trigger a post load before the button is in view"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
#: admin/shortcode-builder/shortcode-builder.php:457
|
2635 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:457
|
2636 |
msgid "Maximum Pages"
|
2637 |
msgstr ""
|
2638 |
|
2639 |
#: admin/shortcode-builder/shortcode-builder.php:457
|
2640 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:457
|
2641 |
msgid "If using an Infinite Scroll button style you should set this to 0"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
#: admin/shortcode-builder/shortcode-builder.php:458
|
2645 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:458
|
2646 |
msgid "Maximum number of pages to load while scrolling. (0 = unlimited)"
|
2647 |
msgstr ""
|
2648 |
|
2649 |
#: admin/shortcode-builder/shortcode-builder.php:470
|
2650 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:470
|
2651 |
msgid "Pause Override"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
#: admin/shortcode-builder/shortcode-builder.php:471
|
2655 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:471
|
2656 |
msgid "Override the <em>Pause</em> parameter and trigger the initial loading of posts on scroll."
|
2657 |
msgstr ""
|
2658 |
|
2659 |
#: admin/shortcode-builder/shortcode-builder.php:493
|
2660 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:493
|
2661 |
msgid "Scroll Container"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
#: admin/shortcode-builder/shortcode-builder.php:494
|
2665 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:494
|
2666 |
msgid "Confine Ajax Load More scrolling to a parent container element."
|
2667 |
msgstr ""
|
2668 |
|
2669 |
#: admin/shortcode-builder/shortcode-builder.php:518
|
2670 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:518
|
2671 |
msgid "Container Element"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
#: admin/shortcode-builder/shortcode-builder.php:519
|
2675 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:519
|
2676 |
msgid "Enter the ID or classname of the parent container element to be used as the scrolling container."
|
2677 |
msgstr ""
|
2678 |
|
2679 |
#: admin/shortcode-builder/shortcode-builder.php:531
|
2680 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:531
|
2681 |
msgid "Scroll Direction"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
#: admin/shortcode-builder/shortcode-builder.php:531
|
2685 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:531
|
2686 |
msgid "Scroll Direction only works when using a Scroll Container."
|
2687 |
msgstr ""
|
2688 |
|
2689 |
#: admin/shortcode-builder/shortcode-builder.php:532
|
2690 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:532
|
2691 |
msgid "Select the direction Ajax Load More should scroll to load posts."
|
2692 |
msgstr ""
|
2693 |
|
2694 |
#: admin/shortcode-builder/shortcode-builder.php:538
|
2695 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:538
|
2696 |
msgid "Vertical"
|
2697 |
msgstr ""
|
2698 |
|
2699 |
#: admin/shortcode-builder/shortcode-builder.php:542
|
2700 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:542
|
2701 |
msgid "Horizontal"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
#: admin/shortcode-builder/shortcode-builder.php:557
|
2705 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:557
|
2706 |
msgid "Transition"
|
2707 |
msgstr ""
|
2708 |
|
2709 |
#: admin/shortcode-builder/shortcode-builder.php:562
|
2710 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:562
|
2711 |
msgid "Type"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
#: admin/shortcode-builder/shortcode-builder.php:563
|
2715 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:563
|
2716 |
msgid "Select a loading transition style."
|
2717 |
msgstr ""
|
2718 |
|
2719 |
#: admin/shortcode-builder/shortcode-builder.php:568
|
2720 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:568
|
2721 |
msgid "Fade In"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
#: admin/shortcode-builder/shortcode-builder.php:569
|
2725 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:569
|
2726 |
msgid "Masonry"
|
2727 |
msgstr ""
|
2728 |
|
2729 |
#: admin/shortcode-builder/shortcode-builder.php:583
|
2730 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:583
|
2731 |
msgid "Masonry Options"
|
2732 |
msgstr ""
|
2733 |
|
2734 |
#: admin/shortcode-builder/shortcode-builder.php:583
|
2735 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:583
|
2736 |
msgid "Ajax Load More does not support all available Masonry options"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
#: admin/shortcode-builder/shortcode-builder.php:584
|
2740 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:584
|
2741 |
msgid "The following Masonry <a href=\"https://masonry.desandro.com/options.html\" target=\"_blank\">options</a> are supported by Ajax Load More."
|
2742 |
msgstr ""
|
2743 |
|
2744 |
#: admin/shortcode-builder/shortcode-builder.php:590
|
2745 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:590
|
2746 |
msgid "Item Selector"
|
2747 |
msgstr ""
|
2748 |
|
2749 |
#: admin/shortcode-builder/shortcode-builder.php:590
|
2750 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:590
|
2751 |
msgid "Item Selector is required for Masonry to target each element loaded with Ajax."
|
2752 |
msgstr ""
|
2753 |
|
2754 |
#: admin/shortcode-builder/shortcode-builder.php:591
|
2755 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:591
|
2756 |
msgid "Enter the target classname of each masonry item."
|
2757 |
msgstr ""
|
2758 |
|
2759 |
#: admin/shortcode-builder/shortcode-builder.php:605
|
2760 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:605
|
2761 |
msgid "Column Width"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
#: admin/shortcode-builder/shortcode-builder.php:605
|
2765 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:605
|
2766 |
msgid "If columnWidth is not set, Masonry will use the outer width of the first Item Selector."
|
2767 |
msgstr ""
|
2768 |
|
2769 |
#: admin/shortcode-builder/shortcode-builder.php:606
|
2770 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:606
|
2771 |
msgid "Enter the <a href=\"https://masonry.desandro.com/options.html#columnwidth\" target=\"_blank\">columnWidth</a> of the masonry items."
|
2772 |
msgstr ""
|
2773 |
|
2774 |
#: admin/shortcode-builder/shortcode-builder.php:619
|
2775 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:619
|
2776 |
msgid "Animation Type"
|
2777 |
msgstr ""
|
2778 |
|
2779 |
#: admin/shortcode-builder/shortcode-builder.php:619
|
2780 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:619
|
2781 |
msgid "All Masonry animations include a fade-in effect as items are loaded."
|
2782 |
msgstr ""
|
2783 |
|
2784 |
#: admin/shortcode-builder/shortcode-builder.php:620
|
2785 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:620
|
2786 |
msgid "Select a loading transition for Masonry items."
|
2787 |
msgstr ""
|
2788 |
|
2789 |
#: admin/shortcode-builder/shortcode-builder.php:628
|
2790 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:628
|
2791 |
msgid "Default (Zoom)"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
#: admin/shortcode-builder/shortcode-builder.php:629
|
2795 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:629
|
2796 |
msgid "Items scale up from 50% to 100% size on load."
|
2797 |
msgstr ""
|
2798 |
|
2799 |
#: admin/shortcode-builder/shortcode-builder.php:635
|
2800 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:635
|
2801 |
msgid "Zoom Out"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
#: admin/shortcode-builder/shortcode-builder.php:636
|
2805 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:636
|
2806 |
msgid "Items scale down from 125% to 100% size on load."
|
2807 |
msgstr ""
|
2808 |
|
2809 |
#: admin/shortcode-builder/shortcode-builder.php:642
|
2810 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:642
|
2811 |
msgid "Slide Up"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
#: admin/shortcode-builder/shortcode-builder.php:643
|
2815 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:643
|
2816 |
msgid "Items animate up as they are loaded into view."
|
2817 |
msgstr ""
|
2818 |
|
2819 |
#: admin/shortcode-builder/shortcode-builder.php:649
|
2820 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:649
|
2821 |
msgid "Slide Down"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
#: admin/shortcode-builder/shortcode-builder.php:650
|
2825 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:650
|
2826 |
msgid "Items animate down when loaded into view."
|
2827 |
msgstr ""
|
2828 |
|
2829 |
#: admin/shortcode-builder/shortcode-builder.php:666
|
2830 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:666
|
2831 |
msgid "Horizontal Order"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
#: admin/shortcode-builder/shortcode-builder.php:667
|
2835 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:667
|
2836 |
msgid "Lays out items to maintain left-to-right order."
|
2837 |
msgstr ""
|
2838 |
|
2839 |
#: admin/shortcode-builder/shortcode-builder.php:687
|
2840 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:687
|
2841 |
msgid "Don't see your favorite Masonry option listed? You can always add your own!"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
#: admin/shortcode-builder/shortcode-builder.php:702
|
2845 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:702
|
2846 |
msgid "Transition Container Classes"
|
2847 |
msgstr ""
|
2848 |
|
2849 |
#: admin/shortcode-builder/shortcode-builder.php:702
|
2850 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:702
|
2851 |
msgid "This setting is not available with the Single Post or Next Page add-ons"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
#: admin/shortcode-builder/shortcode-builder.php:703
|
2855 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:703
|
2856 |
msgid "Add custom classes to the <span>.alm-reveal</span> loading container"
|
2857 |
msgstr ""
|
2858 |
|
2859 |
#: admin/shortcode-builder/shortcode-builder.php:715
|
2860 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:715
|
2861 |
msgid "Transition Container"
|
2862 |
msgstr ""
|
2863 |
|
2864 |
#: admin/shortcode-builder/shortcode-builder.php:715
|
2865 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:715
|
2866 |
msgid "Removing the transition container may have undesired results and is not recommended"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
#: admin/shortcode-builder/shortcode-builder.php:716
|
2870 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:716
|
2871 |
msgid "Remove the <span>.alm-reveal</span> loading container from Ajax Load More"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
#: admin/shortcode-builder/shortcode-builder.php:723
|
2875 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:723
|
2876 |
msgid "Remove Container"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
#: admin/shortcode-builder/shortcode-builder.php:739
|
2880 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:739
|
2881 |
msgid "Progress Bar"
|
2882 |
msgstr ""
|
2883 |
|
2884 |
#: admin/shortcode-builder/shortcode-builder.php:743
|
2885 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:743
|
2886 |
msgid "Display progress bar indicator at the top of the window while loading Ajax content."
|
2887 |
msgstr ""
|
2888 |
|
2889 |
#: admin/shortcode-builder/shortcode-builder.php:768
|
2890 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:768
|
2891 |
msgid "Color"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
#: admin/shortcode-builder/shortcode-builder.php:769
|
2895 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:769
|
2896 |
msgid "Enter the hex color of the progress bar"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
#: admin/shortcode-builder/shortcode-builder.php:799
|
2900 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:799
|
2901 |
msgid "When using Ajax Load More add-ons or extensions not all Query Parameters will be available in the query."
|
2902 |
msgstr ""
|
2903 |
|
2904 |
#: admin/shortcode-builder/shortcode-builder.php:802
|
2905 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:802
|
2906 |
msgid "Query Parameters allow you build a custom <b>WP_Query</b> based on Ajax Load More shortcode values."
|
2907 |
msgstr ""
|
2908 |
|
2909 |
#: admin/shortcode-builder/shortcode-builder.php:809
|
2910 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:809
|
2911 |
msgid "Posts Per Page"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
#: admin/shortcode-builder/shortcode-builder.php:813
|
2915 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:813
|
2916 |
msgid "Select the number of posts to load with each Ajax request."
|
2917 |
msgstr ""
|
2918 |
|
2919 |
#: admin/shortcode-builder/shortcode-builder.php:833
|
2920 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:833
|
2921 |
msgid "Post Type"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
#: admin/shortcode-builder/shortcode-builder.php:838
|
2925 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:838
|
2926 |
msgid "Select the Post Types to include in this Ajax Load More query."
|
2927 |
msgstr ""
|
2928 |
|
2929 |
#: admin/shortcode-builder/shortcode-builder.php:852
|
2930 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:852
|
2931 |
msgid "Any"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
#: admin/shortcode-builder/shortcode-builder.php:863
|
2935 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:863
|
2936 |
msgid "Sticky Posts"
|
2937 |
msgstr ""
|
2938 |
|
2939 |
#: admin/shortcode-builder/shortcode-builder.php:863
|
2940 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:863
|
2941 |
msgid "Sticky posts are only available for Posts"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
#: admin/shortcode-builder/shortcode-builder.php:864
|
2945 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:864
|
2946 |
msgid "Preserve the ordering of sticky posts by having them appear first in the Ajax listing."
|
2947 |
msgstr ""
|
2948 |
|
2949 |
#: admin/shortcode-builder/shortcode-builder.php:871
|
2950 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:871
|
2951 |
msgid "Enable Sticky Posts"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
#: admin/shortcode-builder/shortcode-builder.php:894
|
2955 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:894
|
2956 |
msgid "Post Format"
|
2957 |
msgstr ""
|
2958 |
|
2959 |
#: admin/shortcode-builder/shortcode-builder.php:898
|
2960 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:898
|
2961 |
msgid "Select a Post Format to query."
|
2962 |
msgstr ""
|
2963 |
|
2964 |
#: admin/shortcode-builder/shortcode-builder.php:901
|
2965 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:901
|
2966 |
msgid "Select Post Format"
|
2967 |
msgstr ""
|
2968 |
|
2969 |
#: admin/shortcode-builder/shortcode-builder.php:902
|
2970 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:902
|
2971 |
msgid "Standard"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
#: admin/shortcode-builder/shortcode-builder.php:934
|
2975 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:934
|
2976 |
msgid "Get posts by category using a category_name or category__and query"
|
2977 |
msgstr ""
|
2978 |
|
2979 |
#: admin/shortcode-builder/shortcode-builder.php:935
|
2980 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:935
|
2981 |
msgid "Comma separated list of categories to include by"
|
2982 |
msgstr ""
|
2983 |
|
2984 |
#: admin/shortcode-builder/shortcode-builder.php:935
|
2985 |
#: admin/shortcode-builder/shortcode-builder.php:1028
|
2986 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:935
|
2987 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1028
|
2988 |
msgid "slug"
|
2989 |
msgstr ""
|
2990 |
|
2991 |
#: admin/shortcode-builder/shortcode-builder.php:971
|
2992 |
#: admin/shortcode-builder/shortcode-builder.php:1066
|
2993 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:971
|
2994 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1066
|
2995 |
msgid "What's this"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
#: admin/shortcode-builder/shortcode-builder.php:983
|
2999 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:983
|
3000 |
msgid "Comma separated list of categories to exclude by ID."
|
3001 |
msgstr ""
|
3002 |
|
3003 |
#: admin/shortcode-builder/shortcode-builder.php:1027
|
3004 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1027
|
3005 |
msgid "Get posts by tags using a tag or tag__and query"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
#: admin/shortcode-builder/shortcode-builder.php:1028
|
3009 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1028
|
3010 |
msgid "Comma separated list of tags to include by"
|
3011 |
msgstr ""
|
3012 |
|
3013 |
#: admin/shortcode-builder/shortcode-builder.php:1078
|
3014 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1078
|
3015 |
msgid "Comma separated list of tags to exclude by ID"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
#: admin/shortcode-builder/shortcode-builder.php:1118
|
3019 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1118
|
3020 |
msgid "Select a taxonomy to query and then select the terms and operator."
|
3021 |
msgstr ""
|
3022 |
|
3023 |
#: admin/shortcode-builder/shortcode-builder.php:1123
|
3024 |
#: admin/shortcode-builder/shortcode-builder.php:1157
|
3025 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1123
|
3026 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1157
|
3027 |
msgid "Add Another"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
#: admin/shortcode-builder/shortcode-builder.php:1134
|
3031 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1134
|
3032 |
msgid "Custom Fields (Meta_Query)"
|
3033 |
msgstr ""
|
3034 |
|
3035 |
#: admin/shortcode-builder/shortcode-builder.php:1138
|
3036 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1138
|
3037 |
msgid "Query for <a href=\"https://developer.wordpress.org/reference/classes/wp_query/#custom-field-post-meta-parameters\" target=\"_blank\">custom fields</a> by entering a key, value and operator."
|
3038 |
msgstr ""
|
3039 |
|
3040 |
#: admin/shortcode-builder/shortcode-builder.php:1148
|
3041 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1148
|
3042 |
msgid "The logical relationship between each custom field when there is more than one"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
#: admin/shortcode-builder/shortcode-builder.php:1167
|
3046 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1167
|
3047 |
msgid "Date"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
#: admin/shortcode-builder/shortcode-builder.php:1171
|
3051 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1171
|
3052 |
msgid "Enter a year, month(number) and day to query by date archive."
|
3053 |
msgstr ""
|
3054 |
|
3055 |
#: admin/shortcode-builder/shortcode-builder.php:1178
|
3056 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1178
|
3057 |
msgid "Year:"
|
3058 |
msgstr ""
|
3059 |
|
3060 |
#: admin/shortcode-builder/shortcode-builder.php:1182
|
3061 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1182
|
3062 |
msgid "Month:"
|
3063 |
msgstr ""
|
3064 |
|
3065 |
#: admin/shortcode-builder/shortcode-builder.php:1186
|
3066 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1186
|
3067 |
msgid "Day:"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
#: admin/shortcode-builder/shortcode-builder.php:1207
|
3071 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1207
|
3072 |
msgid "Author"
|
3073 |
msgstr ""
|
3074 |
|
3075 |
#: admin/shortcode-builder/shortcode-builder.php:1211
|
3076 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1211
|
3077 |
msgid "Select an Author to query(by ID)."
|
3078 |
msgstr ""
|
3079 |
|
3080 |
#: admin/shortcode-builder/shortcode-builder.php:1236
|
3081 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1236
|
3082 |
msgid "Search"
|
3083 |
msgstr ""
|
3084 |
|
3085 |
#: admin/shortcode-builder/shortcode-builder.php:1240
|
3086 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1240
|
3087 |
msgid "Enter a search term to query."
|
3088 |
msgstr ""
|
3089 |
|
3090 |
#: admin/shortcode-builder/shortcode-builder.php:1241
|
3091 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1241
|
3092 |
msgid "Search uses the default WordPress search, however Ajax Load More does offer integrations with SearchWP and Relevanssi."
|
3093 |
msgstr ""
|
3094 |
|
3095 |
#: admin/shortcode-builder/shortcode-builder.php:1246
|
3096 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1246
|
3097 |
msgid "Enter search term"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
#: admin/shortcode-builder/shortcode-builder.php:1256
|
3101 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1256
|
3102 |
msgid "Post Parameters"
|
3103 |
msgstr ""
|
3104 |
|
3105 |
#: admin/shortcode-builder/shortcode-builder.php:1261
|
3106 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1261
|
3107 |
msgid "A comma separated list of post ID's to query."
|
3108 |
msgstr ""
|
3109 |
|
3110 |
#: admin/shortcode-builder/shortcode-builder.php:1265
|
3111 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1265
|
3112 |
msgid "225, 340, 818, etc..."
|
3113 |
msgstr ""
|
3114 |
|
3115 |
#: admin/shortcode-builder/shortcode-builder.php:1272
|
3116 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1272
|
3117 |
msgid "A comma separated list of post ID's to exclude from query."
|
3118 |
msgstr ""
|
3119 |
|
3120 |
#: admin/shortcode-builder/shortcode-builder.php:1283
|
3121 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1283
|
3122 |
msgid "Post Status"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
#: admin/shortcode-builder/shortcode-builder.php:1283
|
3126 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1283
|
3127 |
msgid "Post Status parameters are only available for logged in (admin) users. Non logged in users will only have access to view content in a 'publish' or 'inherit' state."
|
3128 |
msgstr ""
|
3129 |
|
3130 |
#: admin/shortcode-builder/shortcode-builder.php:1284
|
3131 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1284
|
3132 |
msgid "Select status of the post."
|
3133 |
msgstr ""
|
3134 |
|
3135 |
#: admin/shortcode-builder/shortcode-builder.php:1289
|
3136 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1289
|
3137 |
msgid "Published"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
#: admin/shortcode-builder/shortcode-builder.php:1307
|
3141 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1307
|
3142 |
msgid "Ordering"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
#: admin/shortcode-builder/shortcode-builder.php:1311
|
3146 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1311
|
3147 |
msgid "Sort posts by Order and Orderby parameters."
|
3148 |
msgstr ""
|
3149 |
|
3150 |
#: admin/shortcode-builder/shortcode-builder.php:1346
|
3151 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1346
|
3152 |
msgid "Offset"
|
3153 |
msgstr ""
|
3154 |
|
3155 |
#: admin/shortcode-builder/shortcode-builder.php:1350
|
3156 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1350
|
3157 |
msgid "Offset the initial query by <em>'x'</em> number of posts"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
#: admin/shortcode-builder/shortcode-builder.php:1364
|
3161 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1364
|
3162 |
msgid "Custom Arguments"
|
3163 |
msgstr ""
|
3164 |
|
3165 |
#: admin/shortcode-builder/shortcode-builder.php:1368
|
3166 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1368
|
3167 |
msgid "A semicolon separated list of custom value:pair arguments."
|
3168 |
msgstr ""
|
3169 |
|
3170 |
#: admin/shortcode-builder/shortcode-builder.php:1368
|
3171 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1368
|
3172 |
msgid "Custom Arguments can be used to query by parameters not available in the Shortcode Builder"
|
3173 |
msgstr ""
|
3174 |
|
3175 |
#: admin/shortcode-builder/shortcode-builder.php:1372
|
3176 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1372
|
3177 |
msgid "event_display:upcoming"
|
3178 |
msgstr ""
|
3179 |
|
3180 |
#: admin/shortcode-builder/shortcode-builder.php:1392
|
3181 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1392
|
3182 |
msgid "Ajax Load More provides integrations for popular plugins and core WP functionality - when selecting an integration, Ajax Load More will automatically set various parameters on the server side to provide the best experience for users based on the selected integration."
|
3183 |
msgstr ""
|
3184 |
|
3185 |
#: admin/shortcode-builder/shortcode-builder.php:1399
|
3186 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1399
|
3187 |
msgid "Archives"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
#: admin/shortcode-builder/shortcode-builder.php:1403
|
3191 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1403
|
3192 |
msgid "Ajax Load More will automatically create an archive query while viewing site archives."
|
3193 |
msgstr ""
|
3194 |
|
3195 |
#: admin/shortcode-builder/shortcode-builder.php:1404
|
3196 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1404
|
3197 |
msgid "Taxonomy, category, tag, date (year, month, day), post type and author archives are currently supported."
|
3198 |
msgstr ""
|
3199 |
|
3200 |
#: admin/shortcode-builder/shortcode-builder.php:1422
|
3201 |
-
#: _out/admin/shortcode-builder/shortcode-builder.php:1422
|
3202 |
msgid "<b>Note</b>: Do not select Query Parameters other than <b>Posts Per Page</b> and/or <b>Post Type</b> when using the Archives integration. Ajax Load More will automatically create the perfect shortcode for you based on the current archive page."
|
3203 |
msgstr ""
|
3204 |
|
3205 |
#: admin/views/add-ons.php:7
|
3206 |
-
#: _out/admin/views/add-ons.php:7
|
3207 |
msgid "Add-ons are available to extend and enhance the core functionality of Ajax Load More"
|
3208 |
msgstr ""
|
3209 |
|
3210 |
#: admin/views/add-ons.php:40
|
3211 |
-
#: _out/admin/views/add-ons.php:40
|
3212 |
msgid "Installed"
|
3213 |
msgstr ""
|
3214 |
|
3215 |
#: admin/views/add-ons.php:42
|
3216 |
-
#: _out/admin/views/add-ons.php:42
|
3217 |
msgid "Purchase"
|
3218 |
msgstr ""
|
3219 |
|
3220 |
#: admin/views/add-ons.php:51
|
3221 |
-
#: _out/admin/views/add-ons.php:51
|
3222 |
msgid "All add-ons are installed as stand alone plugins and with a valid license key will receive plugin update notifications directly within the <a href=\"plugins.php\">WordPress plugin dashboard</a>."
|
3223 |
msgstr ""
|
3224 |
|
3225 |
#: admin/views/extensions.php:6
|
3226 |
-
#: _out/admin/views/extensions.php:6
|
3227 |
msgid "Free extensions that provide compatibility with popular plugins and core WordPress functionality"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
#: admin/views/extensions.php:37
|
3231 |
-
#: _out/admin/views/extensions.php:37
|
3232 |
msgid "Extensions are installed as stand alone plugins and receive update notifications in the <a href=\"plugins.php\">plugin dashboard</a>."
|
3233 |
msgstr ""
|
3234 |
|
3235 |
#: admin/views/go-pro.php:6
|
3236 |
-
#: _out/admin/views/go-pro.php:6
|
3237 |
msgid "All current and future add-ons in a single installation."
|
3238 |
msgstr ""
|
3239 |
|
3240 |
#: admin/views/go-pro.php:19
|
3241 |
-
#: _out/admin/views/go-pro.php:19
|
3242 |
msgid "The following products are included when you purchase Ajax Load More Pro:"
|
3243 |
msgstr ""
|
3244 |
|
3245 |
#: admin/views/go-pro.php:53
|
3246 |
-
#: _out/admin/views/go-pro.php:53
|
3247 |
msgid "About the Pro Bundle"
|
3248 |
msgstr ""
|
3249 |
|
3250 |
#: admin/views/go-pro.php:55
|
3251 |
-
#: _out/admin/views/go-pro.php:55
|
3252 |
msgid "The Ajax Load More Pro bundle is installed as a single add-on with one license and contains every add-on currently available."
|
3253 |
msgstr ""
|
3254 |
|
3255 |
#: admin/views/go-pro.php:56
|
3256 |
-
#: _out/admin/views/go-pro.php:56
|
3257 |
msgid "Once installed, add-ons are able to be activated and deactivated with ease from the Pro dashboard inside your WordPress admin."
|
3258 |
msgstr ""
|
3259 |
|
3260 |
#: admin/views/go-pro.php:57
|
3261 |
-
#: _out/admin/views/go-pro.php:57
|
3262 |
msgid "Please note:"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
#: admin/views/go-pro.php:57
|
3266 |
-
#: _out/admin/views/go-pro.php:57
|
3267 |
msgid "The core Ajax Load More plugin is <u>still</u> required when using the Pro add-on."
|
3268 |
msgstr ""
|
3269 |
|
3270 |
#: admin/views/go-pro.php:60
|
3271 |
-
#: _out/admin/views/go-pro.php:60
|
3272 |
msgid "Get More Information"
|
3273 |
msgstr ""
|
3274 |
|
3275 |
#: admin/views/help.php:4
|
3276 |
-
#: _out/admin/views/help.php:4
|
3277 |
msgid "Get started with our four step guide to painless implementation!"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
#: admin/views/help.php:9
|
3281 |
-
#: _out/admin/views/help.php:9
|
3282 |
msgid "A collection of everyday shortcode usages and implementation examples"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
#: admin/views/help.php:36
|
3286 |
-
#: _out/admin/views/help.php:36
|
3287 |
msgid "Examples"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
#: admin/views/help.php:69
|
3291 |
-
#: _out/admin/views/help.php:69
|
3292 |
msgid "Example Library"
|
3293 |
msgstr ""
|
3294 |
|
3295 |
#: admin/views/help.php:71
|
3296 |
-
#: _out/admin/views/help.php:71
|
3297 |
msgid "View the collection of over 30 real world Ajax Load More <a href=\"https://connekthq.com/plugins/ajax-load-more/examples/\" target=\"_blank\">examples</a> available on the plugin website"
|
3298 |
msgstr ""
|
3299 |
|
3300 |
#: admin/views/help.php:74
|
3301 |
-
#: _out/admin/views/help.php:74
|
3302 |
msgid "View All Examples"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
#: admin/views/licenses.php:2
|
3306 |
-
#: _out/admin/views/licenses.php:2
|
3307 |
msgid "Pro License"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
#: admin/views/licenses.php:3
|
3311 |
-
#: _out/admin/views/licenses.php:3
|
3312 |
msgid "Enter your Pro license key to enable updates from the plugins dashboard"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
#: admin/views/licenses.php:3
|
3316 |
-
#: _out/admin/views/licenses.php:3
|
3317 |
msgid "Enter your license keys below to enable <a href=\"admin.php?page=ajax-load-more-add-ons\">add-on</a> updates from the plugins dashboard"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
#: admin/views/licenses.php:19
|
3321 |
-
#: _out/admin/views/licenses.php:19
|
3322 |
msgid "License Key"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
#: admin/views/licenses.php:21
|
3326 |
-
#: _out/admin/views/licenses.php:21
|
3327 |
msgid "License Keys"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
#: admin/views/licenses.php:28
|
3331 |
-
#: _out/admin/views/licenses.php:28
|
3332 |
msgid "Enter your Ajax Load More Pro license key to receive plugin update notifications directly within the <a href=\"plugins.php\">WP Plugins dashboard</a>."
|
3333 |
msgstr ""
|
3334 |
|
3335 |
#: admin/views/licenses.php:30
|
3336 |
-
#: _out/admin/views/licenses.php:30
|
3337 |
msgid "Enter a key for each of your Ajax Load More add-ons to receive plugin update notifications directly within the <a href=\"plugins.php\">WP Plugins dashboard</a>."
|
3338 |
msgstr ""
|
3339 |
|
3340 |
#: admin/views/licenses.php:76
|
3341 |
-
#: _out/admin/views/licenses.php:76
|
3342 |
msgid "Don't have a license?"
|
3343 |
msgstr ""
|
3344 |
|
3345 |
#: admin/views/licenses.php:77
|
3346 |
-
#: _out/admin/views/licenses.php:77
|
3347 |
msgid "A valid license is required to activate and receive plugin updates directly in your WordPress dashboard"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
#: admin/views/licenses.php:77
|
3351 |
-
#: _out/admin/views/licenses.php:77
|
3352 |
msgid "Purchase Now"
|
3353 |
msgstr ""
|
3354 |
|
3355 |
#: admin/views/licenses.php:83
|
3356 |
#: admin/views/licenses.php:85
|
3357 |
-
#: _out/admin/views/licenses.php:83
|
3358 |
-
#: _out/admin/views/licenses.php:85
|
3359 |
msgid "Enter License Key"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
#: admin/views/licenses.php:89
|
3363 |
-
#: _out/admin/views/licenses.php:89
|
3364 |
msgid "Expired"
|
3365 |
msgstr ""
|
3366 |
|
3367 |
#: admin/views/licenses.php:110
|
3368 |
-
#: _out/admin/views/licenses.php:110
|
3369 |
msgid "Activate License"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
#: admin/views/licenses.php:114
|
3373 |
-
#: _out/admin/views/licenses.php:114
|
3374 |
msgid "Deactivate License"
|
3375 |
msgstr ""
|
3376 |
|
3377 |
#: admin/views/licenses.php:118
|
3378 |
-
#: _out/admin/views/licenses.php:118
|
3379 |
msgid "Refresh Status"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
#: admin/views/licenses.php:129
|
3383 |
-
#: _out/admin/views/licenses.php:129
|
3384 |
msgid "Renew License"
|
3385 |
msgstr ""
|
3386 |
|
3387 |
#: admin/views/licenses.php:145
|
3388 |
-
#: _out/admin/views/licenses.php:145
|
3389 |
msgid "You do not have any Ajax Load More add-ons installed"
|
3390 |
msgstr ""
|
3391 |
|
3392 |
#: admin/views/licenses.php:145
|
3393 |
-
#: _out/admin/views/licenses.php:145
|
3394 |
msgid "Browse Add-ons"
|
3395 |
msgstr ""
|
3396 |
|
3397 |
#: admin/views/licenses.php:154
|
3398 |
-
#: _out/admin/views/licenses.php:154
|
3399 |
msgid "About Licenses"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
#: admin/views/licenses.php:157
|
3403 |
-
#: _out/admin/views/licenses.php:157
|
3404 |
msgid "License keys are found in the purchase receipt email that was sent immediately after purchase and in the <a target=\"_blank\" href=\"https://connekthq.com/account/\">Account</a> section on our website"
|
3405 |
msgstr ""
|
3406 |
|
3407 |
#: admin/views/licenses.php:158
|
3408 |
-
#: _out/admin/views/licenses.php:158
|
3409 |
msgid "If you cannot locate your key please open a support ticket by filling out the <a href=\"https://connekthq.com/contact/\">support form</a> and reference the email address used when you completed the purchase."
|
3410 |
msgstr ""
|
3411 |
|
3412 |
#: admin/views/licenses.php:159
|
3413 |
-
#: _out/admin/views/licenses.php:159
|
3414 |
msgid "Are you having issues updating an add-on?"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
#: admin/views/licenses.php:159
|
3418 |
-
#: _out/admin/views/licenses.php:159
|
3419 |
msgid "Please try deactivating and then re-activating each license. Once you've done that, try running the update again."
|
3420 |
msgstr ""
|
3421 |
|
3422 |
#: admin/views/licenses.php:164
|
3423 |
-
#: _out/admin/views/licenses.php:164
|
3424 |
msgid "Your Account"
|
3425 |
msgstr ""
|
3426 |
|
3427 |
#: admin/views/repeater-templates.php:15
|
3428 |
-
#: _out/admin/views/repeater-templates.php:15
|
3429 |
msgid "The library of editable templates for use within your theme"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
#: admin/views/repeater-templates.php:32
|
3433 |
-
#: _out/admin/views/repeater-templates.php:32
|
3434 |
msgid "Theme Repeaters"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
#: admin/views/repeater-templates.php:105
|
3438 |
#: admin/views/repeater-templates.php:272
|
3439 |
-
#: _out/admin/views/repeater-templates.php:105
|
3440 |
-
#: _out/admin/views/repeater-templates.php:272
|
3441 |
msgid "Location"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
#: admin/views/repeater-templates.php:146
|
3445 |
-
#: _out/admin/views/repeater-templates.php:146
|
3446 |
msgid "Theme Repeaters Not Found!"
|
3447 |
msgstr ""
|
3448 |
|
3449 |
#: admin/views/repeater-templates.php:148
|
3450 |
-
#: _out/admin/views/repeater-templates.php:148
|
3451 |
msgid "You'll need to create and upload templates to your theme directory before you can access them with Ajax Load More"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
#: admin/views/repeater-templates.php:152
|
3455 |
-
#: _out/admin/views/repeater-templates.php:152
|
3456 |
msgid "Manage Settings"
|
3457 |
msgstr ""
|
3458 |
|
3459 |
#: admin/views/repeater-templates.php:211
|
3460 |
-
#: _out/admin/views/repeater-templates.php:211
|
3461 |
msgid "Default Template"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
#: admin/views/repeater-templates.php:220
|
3465 |
-
#: _out/admin/views/repeater-templates.php:220
|
3466 |
msgid "Template Code:"
|
3467 |
msgstr ""
|
3468 |
|
3469 |
#: admin/views/repeater-templates.php:221
|
3470 |
-
#: _out/admin/views/repeater-templates.php:221
|
3471 |
msgid "Enter the PHP and HTML markup for this template."
|
3472 |
msgstr ""
|
3473 |
|
3474 |
#: admin/views/repeater-templates.php:254
|
3475 |
-
#: _out/admin/views/repeater-templates.php:254
|
3476 |
msgid "Save Template"
|
3477 |
msgstr ""
|
3478 |
|
3479 |
#: admin/views/repeater-templates.php:270
|
3480 |
-
#: _out/admin/views/repeater-templates.php:270
|
3481 |
msgid "It appears you are loading the <a href=\"https://connekthq.com/plugins/ajax-load-more/docs/repeater-templates/#default-template\" target=\"_blank\"><b>default template</b></a> (<em>default.php</em>) from your current theme directory. To modify this template, you must edit the file directly on your server."
|
3482 |
msgstr ""
|
3483 |
|
3484 |
#: admin/views/repeater-templates.php:281
|
3485 |
-
#: _out/admin/views/repeater-templates.php:281
|
3486 |
msgid "Repeater Templates editing has been disabled for this instance of Ajax Load More. To enable the template editing, please remove the <strong>ALM_DISABLE_REPEATER_TEMPLATES</strong> PHP constant in your wp-config.php and then re-activate this plugin."
|
3487 |
msgstr ""
|
3488 |
|
3489 |
#: admin/views/repeater-templates.php:356
|
3490 |
-
#: _out/admin/views/repeater-templates.php:356
|
3491 |
msgid "Saving template..."
|
3492 |
msgstr ""
|
3493 |
|
3494 |
#: admin/views/repeater-templates.php:427
|
3495 |
-
#: _out/admin/views/repeater-templates.php:427
|
3496 |
msgid "Updating template..."
|
3497 |
msgstr ""
|
3498 |
|
3499 |
#: admin/views/repeater-templates.php:497
|
3500 |
-
#: _out/admin/views/repeater-templates.php:497
|
3501 |
msgid "What's a Repeater Template?"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
#: admin/views/repeater-templates.php:499
|
3505 |
-
#: _out/admin/views/repeater-templates.php:499
|
3506 |
msgid "A <a href=\"https://connekthq.com/plugins/ajax-load-more/docs/repeater-templates/\" target=\"_blank\">Repeater Template</a> is a snippet of code that will execute over and over within a <a href=\"http://codex.wordpress.org/The_Loop\" target=\"_blank\">WordPress loop</a>"
|
3507 |
msgstr ""
|
3508 |
|
3509 |
#: admin/views/settings.php:13
|
3510 |
-
#: _out/admin/views/settings.php:13
|
3511 |
msgid "A powerful plugin to add infinite scroll functionality to your website."
|
3512 |
msgstr ""
|
3513 |
|
3514 |
#: admin/views/settings.php:91
|
3515 |
#: admin/views/shortcode-builder.php:21
|
3516 |
-
#: _out/admin/views/settings.php:91
|
3517 |
-
#: _out/admin/views/shortcode-builder.php:21
|
3518 |
msgid "Back to Top"
|
3519 |
msgstr ""
|
3520 |
|
3521 |
#: admin/views/shortcode-builder.php:10
|
3522 |
-
#: _out/admin/views/shortcode-builder.php:10
|
3523 |
msgid "Create your own Ajax Load More <a href=\"http://en.support.wordpress.com/shortcodes/\" target=\"_blank\">shortcode</a> by adjusting the values below"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
#: admin/views/shortcode-builder.php:28
|
3527 |
-
#: _out/admin/views/shortcode-builder.php:28
|
3528 |
msgid "Shortcode Output"
|
3529 |
msgstr ""
|
3530 |
|
3531 |
#: admin/views/shortcode-builder.php:30
|
3532 |
-
#: _out/admin/views/shortcode-builder.php:30
|
3533 |
msgid "Place the following shortcode into the content editor or widget area of your theme."
|
3534 |
msgstr ""
|
3535 |
|
3536 |
#: admin/views/shortcode-builder.php:36
|
3537 |
-
#: _out/admin/views/shortcode-builder.php:36
|
3538 |
msgid "Copied!"
|
3539 |
msgstr ""
|
3540 |
|
3541 |
#: admin/views/shortcode-builder.php:36
|
3542 |
-
#: _out/admin/views/shortcode-builder.php:36
|
3543 |
msgid "Copy Shortcode"
|
3544 |
msgstr ""
|
3545 |
|
3546 |
#: admin/views/shortcode-builder.php:37
|
3547 |
-
#: _out/admin/views/shortcode-builder.php:37
|
3548 |
msgid "Reset"
|
3549 |
msgstr ""
|
3550 |
|
3551 |
-
#: ajax-load-more.php:
|
3552 |
-
#: _out/ajax-load-more.php:278
|
3553 |
msgid "Error creating repeater template directory"
|
3554 |
msgstr ""
|
3555 |
|
3556 |
-
#: ajax-load-more.php:
|
3557 |
-
#: _out/ajax-load-more.php:399
|
3558 |
msgid "Viewing {post_count} of {total_posts} results."
|
3559 |
msgstr ""
|
3560 |
|
3561 |
-
#: ajax-load-more.php:
|
3562 |
-
#: _out/ajax-load-more.php:400
|
3563 |
msgid "No results found."
|
3564 |
msgstr ""
|
3565 |
|
3566 |
#: core/classes/class-alm-noscript.php:153
|
3567 |
-
#: _out/core/classes/class-alm-noscript.php:153
|
3568 |
msgid "Pages: "
|
3569 |
msgstr ""
|
3570 |
|
3571 |
#: core/functions/addons.php:22
|
3572 |
-
#: _out/core/functions/addons.php:22
|
3573 |
msgid " Ajax Load More Pro"
|
3574 |
msgstr ""
|
3575 |
|
3576 |
#: core/functions/addons.php:23
|
3577 |
-
#: _out/core/functions/addons.php:23
|
3578 |
msgid " Get instant access to all premium add-ons in a single installation."
|
3579 |
msgstr ""
|
3580 |
|
3581 |
#: core/functions/addons.php:24
|
3582 |
-
#: _out/core/functions/addons.php:24
|
3583 |
msgid " The Pro bundle is installed as a single product with one license key and contains immediate access all premium add-ons."
|
3584 |
msgstr ""
|
3585 |
|
3586 |
#: core/functions/addons.php:52
|
3587 |
-
#: _out/core/functions/addons.php:52
|
3588 |
msgid " Cache"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
#: core/functions/addons.php:53
|
3592 |
-
#: _out/core/functions/addons.php:53
|
3593 |
msgid " Improve performance with the Ajax Load More caching engine."
|
3594 |
msgstr ""
|
3595 |
|
3596 |
#: core/functions/addons.php:54
|
3597 |
-
#: _out/core/functions/addons.php:54
|
3598 |
msgid " The Cache add-on creates static HTML files of Ajax Load More requests then delivers those static files to your visitors."
|
3599 |
msgstr ""
|
3600 |
|
3601 |
#: core/functions/addons.php:67
|
3602 |
-
#: _out/core/functions/addons.php:67
|
3603 |
msgid " Call to Actions"
|
3604 |
msgstr ""
|
3605 |
|
3606 |
#: core/functions/addons.php:68
|
3607 |
-
#: _out/core/functions/addons.php:68
|
3608 |
msgid " Ajax Load More extension for displaying advertisements and call to actions."
|
3609 |
msgstr ""
|
3610 |
|
3611 |
#: core/functions/addons.php:69
|
3612 |
-
#: _out/core/functions/addons.php:69
|
3613 |
msgid " The Call to Actions add-on provides the ability to inject a custom CTA template within each Ajax Load More loop."
|
3614 |
msgstr ""
|
3615 |
|
3616 |
#: core/functions/addons.php:82
|
3617 |
-
#: _out/core/functions/addons.php:82
|
3618 |
msgid " Comments"
|
3619 |
msgstr ""
|
3620 |
|
3621 |
#: core/functions/addons.php:83
|
3622 |
-
#: _out/core/functions/addons.php:83
|
3623 |
msgid " Load blog comments on demand with Ajax Load More."
|
3624 |
msgstr ""
|
3625 |
|
3626 |
#: core/functions/addons.php:84
|
3627 |
-
#: _out/core/functions/addons.php:84
|
3628 |
msgid " The Comments add-on will display your blog comments with Ajax Load More's infinite scroll functionality."
|
3629 |
msgstr ""
|
3630 |
|
3631 |
#: core/functions/addons.php:97
|
3632 |
-
#: _out/core/functions/addons.php:97
|
3633 |
msgid " Custom Repeaters"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
#: core/functions/addons.php:98
|
3637 |
-
#: _out/core/functions/addons.php:98
|
3638 |
msgid " Extend Ajax Load More with unlimited repeater templates."
|
3639 |
msgstr ""
|
3640 |
|
3641 |
#: core/functions/addons.php:99
|
3642 |
-
#: _out/core/functions/addons.php:99
|
3643 |
msgid " Create, delete and modify repeater templates as you need them with absolutely zero restrictions."
|
3644 |
msgstr ""
|
3645 |
|
3646 |
#: core/functions/addons.php:112
|
3647 |
-
#: _out/core/functions/addons.php:112
|
3648 |
msgid " Elementor"
|
3649 |
msgstr ""
|
3650 |
|
3651 |
#: core/functions/addons.php:113
|
3652 |
-
#: _out/core/functions/addons.php:113
|
3653 |
msgid " Infinite scroll Elementor widget content with Ajax Load More."
|
3654 |
msgstr ""
|
3655 |
|
3656 |
#: core/functions/addons.php:114
|
3657 |
-
#: _out/core/functions/addons.php:114
|
3658 |
msgid " The Elementor add-on provides functionality required for integrating with the Elementor Posts and WooCommerce Products widget."
|
3659 |
msgstr ""
|
3660 |
|
3661 |
#: core/functions/addons.php:127
|
3662 |
-
#: _out/core/functions/addons.php:127
|
3663 |
msgid " Filters"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
#: core/functions/addons.php:128
|
3667 |
-
#: _out/core/functions/addons.php:128
|
3668 |
msgid " Create custom Ajax Load More filters in seconds."
|
3669 |
msgstr ""
|
3670 |
|
3671 |
#: core/functions/addons.php:129
|
3672 |
-
#: _out/core/functions/addons.php:129
|
3673 |
msgid " The Filters add-on provides front-end and admin functionality for building and managing Ajax filters."
|
3674 |
msgstr ""
|
3675 |
|
3676 |
#: core/functions/addons.php:142
|
3677 |
-
#: _out/core/functions/addons.php:142
|
3678 |
msgid " Layouts"
|
3679 |
msgstr ""
|
3680 |
|
3681 |
#: core/functions/addons.php:143
|
3682 |
-
#: _out/core/functions/addons.php:143
|
3683 |
msgid " Predefined layouts for repeater templates."
|
3684 |
msgstr ""
|
3685 |
|
3686 |
#: core/functions/addons.php:144
|
3687 |
-
#: _out/core/functions/addons.php:144
|
3688 |
msgid " The Layouts add-on provides a collection of unique, well designed and fully responsive templates."
|
3689 |
msgstr ""
|
3690 |
|
3691 |
#: core/functions/addons.php:157
|
3692 |
-
#: _out/core/functions/addons.php:157
|
3693 |
msgid " Next Page"
|
3694 |
msgstr ""
|
3695 |
|
3696 |
#: core/functions/addons.php:158
|
3697 |
-
#: _out/core/functions/addons.php:158
|
3698 |
msgid " Load and display multipage WordPress content."
|
3699 |
msgstr ""
|
3700 |
|
3701 |
#: core/functions/addons.php:159
|
3702 |
-
#: _out/core/functions/addons.php:159
|
3703 |
msgid " The Next Page add-on provides functionality for infinite scrolling paginated posts and pages."
|
3704 |
msgstr ""
|
3705 |
|
3706 |
#: core/functions/addons.php:172
|
3707 |
-
#: _out/core/functions/addons.php:172
|
3708 |
msgid " Paging"
|
3709 |
msgstr ""
|
3710 |
|
3711 |
#: core/functions/addons.php:173
|
3712 |
-
#: _out/core/functions/addons.php:173
|
3713 |
msgid " Extend Ajax Load More with a numbered navigation."
|
3714 |
msgstr ""
|
3715 |
|
3716 |
#: core/functions/addons.php:174
|
3717 |
-
#: _out/core/functions/addons.php:174
|
3718 |
msgid " The Paging add-on will transform the default infinite scroll functionality into a robust ajax powered navigation system."
|
3719 |
msgstr ""
|
3720 |
|
3721 |
#: core/functions/addons.php:187
|
3722 |
-
#: _out/core/functions/addons.php:187
|
3723 |
msgid " Preloaded"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
#: core/functions/addons.php:188
|
3727 |
-
#: _out/core/functions/addons.php:188
|
3728 |
msgid " Load an initial set of posts before making Ajax requests to the server."
|
3729 |
msgstr ""
|
3730 |
|
3731 |
#: core/functions/addons.php:189
|
3732 |
-
#: _out/core/functions/addons.php:189
|
3733 |
msgid " The Preloaded add-on will display content quicker and allow caching of the initial query which can reduce stress on your server."
|
3734 |
msgstr ""
|
3735 |
|
3736 |
#: core/functions/addons.php:202
|
3737 |
-
#: _out/core/functions/addons.php:202
|
3738 |
msgid " Search Engine Optimization"
|
3739 |
msgstr ""
|
3740 |
|
3741 |
#: core/functions/addons.php:203
|
3742 |
-
#: _out/core/functions/addons.php:203
|
3743 |
msgid " Generate unique paging URLs with every Ajax Load More query."
|
3744 |
msgstr ""
|
3745 |
|
3746 |
#: core/functions/addons.php:204
|
3747 |
-
#: _out/core/functions/addons.php:204
|
3748 |
msgid " The SEO add-on will optimize your ajax loaded content for search engines by generating unique URLs with every query."
|
3749 |
msgstr ""
|
3750 |
|
3751 |
#: core/functions/addons.php:217
|
3752 |
-
#: _out/core/functions/addons.php:217
|
3753 |
msgid " Single Posts"
|
3754 |
msgstr ""
|
3755 |
|
3756 |
#: core/functions/addons.php:218
|
3757 |
-
#: _out/core/functions/addons.php:218
|
3758 |
msgid " An add-on to enable infinite scrolling of single posts."
|
3759 |
msgstr ""
|
3760 |
|
3761 |
#: core/functions/addons.php:219
|
3762 |
-
#: _out/core/functions/addons.php:219
|
3763 |
msgid " The Single Posts add-on will load full posts as you scroll and update the browser URL to the current post."
|
3764 |
msgstr ""
|
3765 |
|
3766 |
#: core/functions/addons.php:232
|
3767 |
-
#: _out/core/functions/addons.php:232
|
3768 |
msgid " Theme Repeaters"
|
3769 |
msgstr ""
|
3770 |
|
3771 |
#: core/functions/addons.php:233
|
3772 |
-
#: _out/core/functions/addons.php:233
|
3773 |
msgid " Manage Repeater Templates within your current theme directory."
|
3774 |
msgstr ""
|
3775 |
|
3776 |
#: core/functions/addons.php:234
|
3777 |
-
#: _out/core/functions/addons.php:234
|
3778 |
msgid " The Theme Repeater add-on will allow you load, edit and maintain templates from your current theme directory."
|
3779 |
msgstr ""
|
3780 |
|
3781 |
#: core/functions/addons.php:247
|
3782 |
-
#: _out/core/functions/addons.php:247
|
3783 |
msgid " Users"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
#: core/functions/addons.php:248
|
3787 |
-
#: _out/core/functions/addons.php:248
|
3788 |
msgid " Enable infinite scrolling of WordPress users."
|
3789 |
msgstr ""
|
3790 |
|
3791 |
#: core/functions/addons.php:249
|
3792 |
-
#: _out/core/functions/addons.php:249
|
3793 |
msgid " The Users add-on will allow lazy loading of users by role using a WP_User_Query."
|
3794 |
msgstr ""
|
3795 |
|
3796 |
#: core/functions/addons.php:262
|
3797 |
-
#: _out/core/functions/addons.php:262
|
3798 |
msgid " WooCommerce"
|
3799 |
msgstr ""
|
3800 |
|
3801 |
#: core/functions/addons.php:263
|
3802 |
-
#: _out/core/functions/addons.php:263
|
3803 |
msgid " Infinite scroll WooCommerce products with Ajax Load More."
|
3804 |
msgstr ""
|
3805 |
|
3806 |
#: core/functions/addons.php:264
|
3807 |
-
#: _out/core/functions/addons.php:264
|
3808 |
msgid " The WooCommerce add-on automatically integrates infinite scrolling into your existing shop templates."
|
3809 |
msgstr ""
|
3810 |
|
3811 |
#: core/integration/elementor/module/widget.php:40
|
3812 |
-
#: _out/core/integration/elementor/module/widget.php:40
|
3813 |
msgid "ALM Shortcode"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
#: core/integration/elementor/module/widget.php:87
|
3817 |
-
#: _out/core/integration/elementor/module/widget.php:87
|
3818 |
msgid "Shortcode"
|
3819 |
msgstr ""
|
3820 |
|
3821 |
#: core/integration/elementor/module/widget.php:94
|
3822 |
#: core/integration/elementor/module/widget.php:119
|
3823 |
#: core/integration/elementor/module/widget.php:140
|
3824 |
-
#: _out/core/integration/elementor/module/widget.php:94
|
3825 |
-
#: _out/core/integration/elementor/module/widget.php:119
|
3826 |
-
#: _out/core/integration/elementor/module/widget.php:140
|
3827 |
msgid "Ajax Load More Shortcode"
|
3828 |
msgstr ""
|
3829 |
|
3830 |
#: core/integration/elementor/module/widget.php:96
|
3831 |
-
#: _out/core/integration/elementor/module/widget.php:96
|
3832 |
msgid "[ajax_load_more]"
|
3833 |
msgstr ""
|
3834 |
|
3835 |
#: core/integration/elementor/module/widget.php:97
|
3836 |
-
#: _out/core/integration/elementor/module/widget.php:97
|
3837 |
msgid "The shortcode will not render while Elementor is in live edit mode, you must preview the page to view Ajax Load More functionality."
|
3838 |
msgstr ""
|
3839 |
|
3840 |
#: core/integration/elementor/module/widget.php:97
|
3841 |
-
#: _out/core/integration/elementor/module/widget.php:97
|
3842 |
msgid "%sBuild Shortcode%s"
|
3843 |
msgstr ""
|
2 |
# This file is distributed under the GPL.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Ajax Load More 5.5.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ajax-load-more\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2022-06-24T13:54:58+00:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.5.0\n"
|
15 |
"X-Domain: ajax-load-more\n"
|
16 |
|
17 |
#. Plugin Name of the plugin
|
18 |
#: admin/admin.php:477
|
|
|
19 |
msgid "Ajax Load More"
|
20 |
msgstr ""
|
21 |
|
36 |
msgstr ""
|
37 |
|
38 |
#: admin/admin.php:70
|
|
|
39 |
msgid "Looks like your subscription has expired."
|
40 |
msgstr ""
|
41 |
|
42 |
#: admin/admin.php:71
|
|
|
43 |
msgid "Please login to your <a href=\"https://connekthq.com/account/\" target=\"_blank\">Account</a> to renew the license."
|
44 |
msgstr ""
|
45 |
|
46 |
#: admin/admin.php:78
|
|
|
47 |
msgid "Looks like your license is inactive and/or invalid."
|
48 |
msgstr ""
|
49 |
|
50 |
#: admin/admin.php:79
|
|
|
51 |
msgid "Please activate the <a href=\"admin.php?page=ajax-load-more-licenses\" target=\"_blank\">license</a> or login to your <a href=\"https://connekthq.com/account/\" target=\"_blank\">Account</a> to renew the license."
|
52 |
msgstr ""
|
53 |
|
54 |
#: admin/admin.php:86
|
|
|
55 |
msgid "Looks like your license has been deactivated."
|
56 |
msgstr ""
|
57 |
|
58 |
#: admin/admin.php:87
|
|
|
59 |
msgid "Please activate the <a href=\"admin.php?page=ajax-load-more-licenses\" target=\"_blank\">license</a> to update."
|
60 |
msgstr ""
|
61 |
|
62 |
#: admin/admin.php:172
|
63 |
#: admin/admin.php:1252
|
|
|
|
|
64 |
msgid "Error - unable to verify nonce, please try again."
|
65 |
msgstr ""
|
66 |
|
67 |
#: admin/admin.php:176
|
|
|
68 |
msgid "Transient set successfully"
|
69 |
msgstr ""
|
70 |
|
71 |
#: admin/admin.php:319
|
|
|
72 |
msgid "You have an invalid or expired <a href=\"admin.php?page=ajax-load-more\"><b>Ajax Load More Pro</b></a> license key - please visit the <a href=\"admin.php?page=ajax-load-more-licenses\">License</a> section to input your key or <a href=\"https://connekthq.com/plugins/ajax-load-more/pro/\" target=\"_blank\">purchase</a> one now."
|
73 |
msgstr ""
|
74 |
|
75 |
#: admin/admin.php:323
|
|
|
76 |
msgid "You have invalid or expired <a href=\"admin.php?page=ajax-load-more\"><b>Ajax Load More</b></a> license keys - please visit the <a href=\"admin.php?page=ajax-load-more-licenses\">Licenses</a> section and input your keys."
|
77 |
msgstr ""
|
78 |
|
80 |
#: admin/admin.php:1117
|
81 |
#: admin/admin.php:1163
|
82 |
#: admin/admin.php:1213
|
|
|
|
|
|
|
|
|
83 |
msgid "You don't belong here."
|
84 |
msgstr ""
|
85 |
|
86 |
#: admin/admin.php:478
|
87 |
#: admin/editor/editor-build.php:69
|
88 |
#: admin/views/licenses.php:87
|
|
|
|
|
|
|
89 |
msgid "Active"
|
90 |
msgstr ""
|
91 |
|
92 |
#: admin/admin.php:479
|
93 |
#: admin/editor/editor-build.php:70
|
94 |
#: admin/views/licenses.php:89
|
|
|
|
|
|
|
95 |
msgid "Inactive"
|
96 |
msgstr ""
|
97 |
|
98 |
#: admin/admin.php:480
|
99 |
#: admin/editor/editor-build.php:71
|
|
|
|
|
100 |
msgid "Applying layout"
|
101 |
msgstr ""
|
102 |
|
103 |
#: admin/admin.php:481
|
104 |
#: admin/editor/editor-build.php:72
|
105 |
#: admin/views/repeater-templates.php:448
|
|
|
|
|
|
|
106 |
msgid "Template Updated"
|
107 |
msgstr ""
|
108 |
|
109 |
#: admin/admin.php:483
|
110 |
#: admin/editor/editor-build.php:75
|
|
|
|
|
111 |
msgid "Select Author(s)"
|
112 |
msgstr ""
|
113 |
|
114 |
#: admin/admin.php:484
|
115 |
#: admin/editor/editor-build.php:76
|
|
|
|
|
116 |
msgid "Select Categories"
|
117 |
msgstr ""
|
118 |
|
119 |
#: admin/admin.php:485
|
120 |
#: admin/editor/editor-build.php:77
|
|
|
|
|
121 |
msgid "Select Tags"
|
122 |
msgstr ""
|
123 |
|
124 |
#: admin/admin.php:486
|
125 |
#: admin/editor/editor-build.php:74
|
|
|
|
|
126 |
msgid "Select"
|
127 |
msgstr ""
|
128 |
|
129 |
#: admin/admin.php:487
|
130 |
#: admin/editor/editor-build.php:41
|
131 |
#: admin/editor/editor-build.php:78
|
|
|
|
|
|
|
132 |
msgid "Jump to Option"
|
133 |
msgstr ""
|
134 |
|
135 |
#: admin/admin.php:488
|
136 |
#: admin/editor/editor-build.php:79
|
|
|
|
|
137 |
msgid "Jump to Template"
|
138 |
msgstr ""
|
139 |
|
140 |
#: admin/admin.php:489
|
|
|
141 |
msgid "Are you sure you want to install this Ajax Load More extension?"
|
142 |
msgstr ""
|
143 |
|
144 |
#: admin/admin.php:490
|
|
|
145 |
msgid "Install Now"
|
146 |
msgstr ""
|
147 |
|
148 |
#: admin/admin.php:491
|
|
|
149 |
msgid "Activate"
|
150 |
msgstr ""
|
151 |
|
152 |
#: admin/admin.php:492
|
|
|
153 |
msgid "Saving Settings"
|
154 |
msgstr ""
|
155 |
|
156 |
#: admin/admin.php:493
|
|
|
157 |
msgid "Settings Saved Successfully"
|
158 |
msgstr ""
|
159 |
|
160 |
#: admin/admin.php:494
|
|
|
161 |
msgid "Error Saving Settings"
|
162 |
msgstr ""
|
163 |
|
164 |
#: admin/admin.php:495
|
|
|
165 |
msgid "There is a maximum of 3 tax_query objects while using the shortcode builder"
|
166 |
msgstr ""
|
167 |
|
168 |
#: admin/admin.php:592
|
|
|
169 |
msgid "[Ajax Load More] Error opening default repeater template - Please check your file path and ensure your server is configured to allow Ajax Load More to read and write files within the /ajax-load-more/core/repeater directory"
|
170 |
msgstr ""
|
171 |
|
172 |
#: admin/admin.php:596
|
|
|
173 |
msgid "[Ajax Load More] Error updating default repeater template - Please check your file path and ensure your server is configured to allow Ajax Load More to read and write files within the /ajax-load-more/core/repeater directory."
|
174 |
msgstr ""
|
175 |
|
176 |
#: admin/admin.php:632
|
177 |
#: admin/admin.php:633
|
178 |
+
#: ajax-load-more.php:327
|
|
|
|
|
|
|
179 |
msgid "Settings"
|
180 |
msgstr ""
|
181 |
|
183 |
#: admin/admin.php:642
|
184 |
#: admin/views/repeater-templates.php:14
|
185 |
#: admin/views/repeater-templates.php:27
|
|
|
|
|
|
|
|
|
186 |
msgid "Repeater Templates"
|
187 |
msgstr ""
|
188 |
|
189 |
#: admin/admin.php:650
|
190 |
#: admin/admin.php:651
|
191 |
#: admin/views/shortcode-builder.php:9
|
|
|
|
|
|
|
192 |
msgid "Shortcode Builder"
|
193 |
msgstr ""
|
194 |
|
197 |
#: admin/shortcode-builder/shortcode-builder.php:18
|
198 |
#: admin/shortcode-builder/shortcode-builder.php:38
|
199 |
#: admin/views/add-ons.php:6
|
|
|
|
|
|
|
|
|
|
|
200 |
msgid "Add-ons"
|
201 |
msgstr ""
|
202 |
|
205 |
#: admin/shortcode-builder/shortcode-builder.php:21
|
206 |
#: admin/shortcode-builder/shortcode-builder.php:68
|
207 |
#: admin/views/extensions.php:5
|
|
|
|
|
|
|
|
|
|
|
208 |
msgid "Extensions"
|
209 |
msgstr ""
|
210 |
|
211 |
#: admin/admin.php:679
|
212 |
#: admin/admin.php:680
|
213 |
#: admin/views/help.php:18
|
|
|
|
|
|
|
214 |
msgid "Help"
|
215 |
msgstr ""
|
216 |
|
217 |
#: admin/admin.php:686
|
|
|
218 |
msgid "License"
|
219 |
msgstr ""
|
220 |
|
221 |
#: admin/admin.php:686
|
222 |
#: admin/views/licenses.php:2
|
|
|
|
|
223 |
msgid "Licenses"
|
224 |
msgstr ""
|
225 |
|
227 |
#: admin/admin.php:705
|
228 |
#: admin/admin.php:713
|
229 |
#: admin/views/go-pro.php:5
|
|
|
|
|
|
|
|
|
230 |
msgid "Pro"
|
231 |
msgstr ""
|
232 |
|
233 |
#: admin/admin.php:714
|
234 |
#: admin/views/licenses.php:145
|
|
|
|
|
235 |
msgid "Go Pro"
|
236 |
msgstr ""
|
237 |
|
238 |
#: admin/admin.php:725
|
239 |
#: admin/admin.php:726
|
240 |
#: admin/shortcode-builder/components/cache.php:3
|
|
|
|
|
|
|
241 |
msgid "Cache"
|
242 |
msgstr ""
|
243 |
|
244 |
#: admin/admin.php:745
|
245 |
#: admin/admin.php:746
|
246 |
#: admin/shortcode-builder/components/filters.php:3
|
|
|
|
|
|
|
247 |
msgid "Filters"
|
248 |
msgstr ""
|
249 |
|
250 |
#: admin/admin.php:766
|
251 |
#: admin/admin.php:767
|
|
|
|
|
252 |
msgid "WooCommerce"
|
253 |
msgstr ""
|
254 |
|
255 |
#: admin/admin.php:1073
|
|
|
256 |
msgid "[Ajax Load More] Unable to open repeater template - "
|
257 |
msgstr ""
|
258 |
|
259 |
#: admin/admin.php:1077
|
|
|
260 |
msgid "[Ajax Load More] Error saving repeater template - "
|
261 |
msgstr ""
|
262 |
|
263 |
#: admin/admin.php:1109
|
|
|
264 |
msgid "Template Saved Successfully"
|
265 |
msgstr ""
|
266 |
|
267 |
#: admin/admin.php:1111
|
|
|
268 |
msgid "Error Writing File"
|
269 |
msgstr ""
|
270 |
|
271 |
#: admin/admin.php:1111
|
272 |
#: admin/views/repeater-templates.php:389
|
|
|
|
|
273 |
msgid "Something went wrong and the data could not be saved."
|
274 |
msgstr ""
|
275 |
|
276 |
#: admin/admin.php:1313
|
277 |
#: admin/shortcode-builder/shortcode-builder.php:166
|
|
|
|
|
278 |
msgid "Container Type"
|
279 |
msgstr ""
|
280 |
|
281 |
#: admin/admin.php:1321
|
282 |
#: admin/shortcode-builder/shortcode-builder.php:196
|
|
|
|
|
283 |
msgid "Container Classes"
|
284 |
msgstr ""
|
285 |
|
286 |
#: admin/admin.php:1329
|
|
|
287 |
msgid "Disable CSS"
|
288 |
msgstr ""
|
289 |
|
290 |
#: admin/admin.php:1337
|
291 |
#: admin/shortcode-builder/shortcode-builder.php:124
|
|
|
|
|
292 |
msgid "Button/Loading Style"
|
293 |
msgstr ""
|
294 |
|
295 |
#: admin/admin.php:1345
|
|
|
296 |
msgid "Load CSS Inline"
|
297 |
msgstr ""
|
298 |
|
299 |
#: admin/admin.php:1353
|
|
|
300 |
msgid "Button Classes"
|
301 |
msgstr ""
|
302 |
|
303 |
#: admin/admin.php:1371
|
|
|
304 |
msgid "Legacy Callbacks"
|
305 |
msgstr ""
|
306 |
|
307 |
#: admin/admin.php:1379
|
|
|
308 |
msgid "Dynamic Content"
|
309 |
msgstr ""
|
310 |
|
311 |
#: admin/admin.php:1387
|
|
|
312 |
msgid "Error Notices"
|
313 |
msgstr ""
|
314 |
|
315 |
#: admin/admin.php:1395
|
|
|
316 |
msgid "Delete on Uninstall"
|
317 |
msgstr ""
|
318 |
|
319 |
#: admin/admin.php:1469
|
|
|
320 |
msgid "Customize the user experience of Ajax Load More by updating the fields below."
|
321 |
msgstr ""
|
322 |
|
323 |
#: admin/admin.php:1478
|
|
|
324 |
msgid "The following settings affect the WordPress admin area only."
|
325 |
msgstr ""
|
326 |
|
327 |
#: admin/admin.php:1502
|
|
|
328 |
msgid "I want to use my own CSS styles."
|
329 |
msgstr ""
|
330 |
|
331 |
#: admin/admin.php:1502
|
|
|
332 |
msgid "View Ajax Load More CSS"
|
333 |
msgstr ""
|
334 |
|
335 |
#: admin/admin.php:1519
|
|
|
336 |
msgid "Hide shortcode button in WYSIWYG editor."
|
337 |
msgstr ""
|
338 |
|
339 |
#: admin/admin.php:1536
|
|
|
340 |
msgid "Display error messaging regarding repeater template updates in the browser console."
|
341 |
msgstr ""
|
342 |
|
343 |
#: admin/admin.php:1553
|
|
|
344 |
msgid "Disable dynamic population of categories, tags and authors in the Shortcode Builder.<span style=\"display:block\">Recommended if you have a large number of categories, tags and/or authors."
|
345 |
msgstr ""
|
346 |
|
347 |
#: admin/admin.php:1571
|
348 |
#: admin/admin.php:1574
|
|
|
|
|
349 |
msgid "Ajax Posts Here"
|
350 |
msgstr ""
|
351 |
|
352 |
#: admin/admin.php:1576
|
|
|
353 |
msgid "You can modify the container type when building a shortcode."
|
354 |
msgstr ""
|
355 |
|
356 |
#: admin/admin.php:1592
|
|
|
357 |
msgid "Add custom classes to the <i>.alm-listing</i> container - classes are applied globally and will appear with every instance of Ajax Load More. <span style=\"display:block\">You can also add classes when building a shortcode.</span>"
|
358 |
msgstr ""
|
359 |
|
360 |
#: admin/admin.php:1653
|
|
|
361 |
msgid "Select an Ajax loading style - you can choose between a <strong>Button</strong> or <strong>Infinite Scroll</strong>"
|
362 |
msgstr ""
|
363 |
|
364 |
#: admin/admin.php:1658
|
365 |
#: admin/shortcode-builder/shortcode-builder.php:130
|
|
|
|
|
366 |
msgid "Button Style (Dark)"
|
367 |
msgstr ""
|
368 |
|
369 |
#: admin/admin.php:1665
|
370 |
#: admin/shortcode-builder/shortcode-builder.php:137
|
|
|
|
|
371 |
msgid "Button Style (Light)"
|
372 |
msgstr ""
|
373 |
|
374 |
#: admin/admin.php:1670
|
375 |
#: admin/shortcode-builder/shortcode-builder.php:141
|
|
|
|
|
376 |
msgid "Infinite Scroll (No Button)"
|
377 |
msgstr ""
|
378 |
|
379 |
#: admin/admin.php:1686
|
|
|
380 |
msgid "Click to Preview"
|
381 |
msgstr ""
|
382 |
|
384 |
#: admin/shortcode-builder/shortcode-builder.php:155
|
385 |
#: admin/shortcode-builder/shortcode-builder.php:371
|
386 |
#: core/classes/class-alm-shortcode.php:208
|
|
|
|
|
|
|
|
|
387 |
msgid "Load More"
|
388 |
msgstr ""
|
389 |
|
390 |
#: admin/admin.php:1707
|
|
|
391 |
msgid "Improve site performance by loading Ajax Load More CSS inline."
|
392 |
msgstr ""
|
393 |
|
394 |
#: admin/admin.php:1723
|
|
|
395 |
msgid "Add classes to your <strong>Load More</strong> button."
|
396 |
msgstr ""
|
397 |
|
398 |
#: admin/admin.php:1763
|
|
|
399 |
msgid "On initial page load, move the user's browser window to the top of the screen."
|
400 |
msgstr ""
|
401 |
|
402 |
#: admin/admin.php:1764
|
|
|
403 |
msgid "This may help prevent the loading of unnecessary posts."
|
404 |
msgstr ""
|
405 |
|
406 |
#: admin/admin.php:1783
|
|
|
407 |
msgid "Disable REST API."
|
408 |
msgstr ""
|
409 |
|
410 |
#: admin/admin.php:1784
|
|
|
411 |
msgid "Use `admin-ajax.php` in favour of the WordPress REST API for all Ajax requests."
|
412 |
msgstr ""
|
413 |
|
414 |
#: admin/admin.php:1803
|
|
|
415 |
msgid "Load legacy JavaScript callback functions."
|
416 |
msgstr ""
|
417 |
|
418 |
#: admin/admin.php:1804
|
|
|
419 |
msgid "Ajax Load More <a href=\"https://connekthq.com/plugins/ajax-load-more/docs/callback-functions/\" target=\"_blank\">callback functions</a> were updated in 5.0. Users who were using callbacks prior to ALM 5.0 can load this helper library to maintain compatibility."
|
420 |
msgstr ""
|
421 |
|
422 |
#: admin/admin.php:1823
|
|
|
423 |
msgid "Check this box if Ajax Load More should remove all of its data* when the plugin is deleted."
|
424 |
msgstr ""
|
425 |
|
426 |
#: admin/admin.php:1824
|
|
|
427 |
msgid "* Database Tables, Options and Repeater Templates"
|
428 |
msgstr ""
|
429 |
|
430 |
#: admin/editor/editor-build.php:45
|
|
|
431 |
msgid "Create your own Ajax Load More shortcode by adjusting the parameters below:"
|
432 |
msgstr ""
|
433 |
|
434 |
#: admin/editor/editor-build.php:53
|
|
|
435 |
msgid "Insert Shortcode"
|
436 |
msgstr ""
|
437 |
|
438 |
#: admin/editor/editor-build.php:56
|
|
|
439 |
msgid "Copy"
|
440 |
msgstr ""
|
441 |
|
442 |
#: admin/editor/editor.php:19
|
|
|
443 |
msgid "You are not allowed to be here"
|
444 |
msgstr ""
|
445 |
|
446 |
#: admin/includes/components/example-list.php:2
|
447 |
#: admin/views/repeater-templates.php:134
|
448 |
#: admin/views/repeater-templates.php:173
|
|
|
|
|
|
|
449 |
msgid "Collapse All"
|
450 |
msgstr ""
|
451 |
|
452 |
#: admin/includes/components/example-list.php:2
|
453 |
#: admin/views/repeater-templates.php:135
|
454 |
#: admin/views/repeater-templates.php:174
|
|
|
|
|
|
|
455 |
msgid "Expand All"
|
456 |
msgstr ""
|
457 |
|
458 |
#: admin/includes/components/example-list.php:5
|
|
|
459 |
msgid "Archive.php"
|
460 |
msgstr ""
|
461 |
|
462 |
#: admin/includes/components/example-list.php:7
|
|
|
463 |
msgid "Shortcode for use on generic archive page."
|
464 |
msgstr ""
|
465 |
|
466 |
#: admin/includes/components/example-list.php:15
|
|
|
467 |
msgid "Author.php"
|
468 |
msgstr ""
|
469 |
|
470 |
#: admin/includes/components/example-list.php:17
|
|
|
471 |
msgid "Shortcode for use on author archive pages."
|
472 |
msgstr ""
|
473 |
|
474 |
#: admin/includes/components/example-list.php:24
|
|
|
475 |
msgid "Category.php"
|
476 |
msgstr ""
|
477 |
|
478 |
#: admin/includes/components/example-list.php:26
|
|
|
479 |
msgid "Shortcode for use on category archive pages."
|
480 |
msgstr ""
|
481 |
|
482 |
#: admin/includes/components/example-list.php:33
|
|
|
483 |
msgid "Date Archives"
|
484 |
msgstr ""
|
485 |
|
486 |
#: admin/includes/components/example-list.php:35
|
|
|
487 |
msgid "Shortcode for use for archiving by date."
|
488 |
msgstr ""
|
489 |
|
490 |
#: admin/includes/components/example-list.php:42
|
|
|
491 |
msgid "Excluding Posts"
|
492 |
msgstr ""
|
493 |
|
494 |
#: admin/includes/components/example-list.php:44
|
|
|
495 |
msgid "Shortcode for excluding an array of posts."
|
496 |
msgstr ""
|
497 |
|
498 |
#: admin/includes/components/example-list.php:50
|
|
|
499 |
msgid "Tag.php"
|
500 |
msgstr ""
|
501 |
|
502 |
#: admin/includes/components/example-list.php:52
|
|
|
503 |
msgid "Shortcode for use on tag archive pages."
|
504 |
msgstr ""
|
505 |
|
506 |
#: admin/includes/components/layout-list.php:2
|
|
|
507 |
msgid "Apply Layout"
|
508 |
msgstr ""
|
509 |
|
510 |
#: admin/includes/components/layout-list.php:15
|
|
|
511 |
msgid "Default Layout"
|
512 |
msgstr ""
|
513 |
|
514 |
#: admin/includes/components/layout-list.php:24
|
|
|
515 |
msgid "Get predefined responsive layouts with the <strong>Layouts add-on</strong>"
|
516 |
msgstr ""
|
517 |
|
518 |
#: admin/includes/components/layout-list.php:26
|
|
|
519 |
msgid "Get More Layouts"
|
520 |
msgstr ""
|
521 |
|
522 |
#: admin/includes/components/repeater-options.php:5
|
523 |
#: admin/shortcode-builder/shortcode-builder.php:98
|
|
|
|
|
524 |
msgid "Options"
|
525 |
msgstr ""
|
526 |
|
527 |
#: admin/includes/components/repeater-options.php:12
|
|
|
528 |
msgid "Update Template from Database"
|
529 |
msgstr ""
|
530 |
|
531 |
#: admin/includes/components/repeater-options.php:12
|
|
|
532 |
msgid "Update from Database"
|
533 |
msgstr ""
|
534 |
|
535 |
#: admin/includes/components/repeater-options.php:23
|
536 |
#: admin/includes/components/repeater-options.php:24
|
|
|
|
|
537 |
msgid "Download Template"
|
538 |
msgstr ""
|
539 |
|
540 |
#: admin/includes/components/repeater-options.php:30
|
|
|
541 |
msgid "Copy Template Data"
|
542 |
msgstr ""
|
543 |
|
544 |
#: admin/includes/cta/about.php:2
|
|
|
545 |
msgid "Other Plugins by Connekt"
|
546 |
msgstr ""
|
547 |
|
548 |
#: admin/includes/cta/add-ons.php:2
|
|
|
549 |
msgid "About the Add-ons"
|
550 |
msgstr ""
|
551 |
|
552 |
#: admin/includes/cta/add-ons.php:8
|
|
|
553 |
msgid "View Add-ons"
|
554 |
msgstr ""
|
555 |
|
556 |
#: admin/includes/cta/config.php:2
|
|
|
557 |
msgid "Plugin Configurations"
|
558 |
msgstr ""
|
559 |
|
560 |
#: admin/includes/cta/config.php:4
|
|
|
561 |
msgid "Plugin Version"
|
562 |
msgstr ""
|
563 |
|
564 |
#: admin/includes/cta/config.php:10
|
|
|
565 |
msgid "Release Date"
|
566 |
msgstr ""
|
567 |
|
568 |
#: admin/includes/cta/dyk.php:3
|
|
|
569 |
msgid "Did You Know?"
|
570 |
msgstr ""
|
571 |
|
572 |
#: admin/includes/cta/extend.php:3
|
|
|
573 |
msgid "Unlock additional templates with the <a href=\"https://connekthq.com/plugins/ajax-load-more/add-ons/custom-repeaters/?utm_source=WP%20Admin&utm_medium=CustomRepeaters%20Extend&utm_campaign=Custom%20Repeaters\" target=\"_parent\">Custom Repeaters add-on</a>"
|
574 |
msgstr ""
|
575 |
|
576 |
#: admin/includes/cta/extend.php:5
|
|
|
577 |
msgid "More Info"
|
578 |
msgstr ""
|
579 |
|
580 |
#: admin/includes/cta/pro-hero.php:25
|
|
|
581 |
msgid "Upgrade Now"
|
582 |
msgstr ""
|
583 |
|
584 |
#: admin/includes/cta/resources.php:2
|
|
|
585 |
msgid "Plugin Resources"
|
586 |
msgstr ""
|
587 |
|
588 |
#: admin/includes/cta/resources.php:6
|
|
|
589 |
msgid "Ajax Load More Demo Site"
|
590 |
msgstr ""
|
591 |
|
592 |
#: admin/includes/cta/resources.php:10
|
593 |
#: admin/views/help.php:31
|
|
|
|
|
594 |
msgid "Implementation Guide"
|
595 |
msgstr ""
|
596 |
|
597 |
#: admin/includes/cta/resources.php:13
|
|
|
598 |
msgid "Documentation"
|
599 |
msgstr ""
|
600 |
|
601 |
#: admin/includes/cta/resources.php:17
|
|
|
602 |
msgid "Support and Issues"
|
603 |
msgstr ""
|
604 |
|
605 |
#: admin/includes/cta/resources.php:21
|
|
|
606 |
msgid "Get Support"
|
607 |
msgstr ""
|
608 |
|
609 |
#: admin/includes/cta/resources.php:25
|
|
|
610 |
msgid "Reviews"
|
611 |
msgstr ""
|
612 |
|
613 |
#: admin/includes/cta/resources.php:28
|
|
|
614 |
msgid "WordPress"
|
615 |
msgstr ""
|
616 |
|
617 |
#: admin/includes/cta/resources.php:31
|
|
|
618 |
msgid "Github"
|
619 |
msgstr ""
|
620 |
|
621 |
#: admin/includes/cta/resources.php:34
|
622 |
#: admin/includes/cta/sharing.php:14
|
|
|
|
|
623 |
msgid "Twitter"
|
624 |
msgstr ""
|
625 |
|
626 |
#: admin/includes/cta/reviews.php:1
|
|
|
627 |
msgid "Leave a Review"
|
628 |
msgstr ""
|
629 |
|
630 |
#: admin/includes/cta/reviews.php:2
|
|
|
631 |
msgid "Good <em>or</em> bad - all reviews will help Ajax Load More push forward and grow."
|
632 |
msgstr ""
|
633 |
|
634 |
#: admin/includes/cta/reviews.php:4
|
|
|
635 |
msgid "Write Review"
|
636 |
msgstr ""
|
637 |
|
638 |
#: admin/includes/cta/sharing.php:17
|
|
|
639 |
msgid "Facebook"
|
640 |
msgstr ""
|
641 |
|
642 |
#: admin/includes/cta/sharing.php:20
|
|
|
643 |
msgid "Review"
|
644 |
msgstr ""
|
645 |
|
646 |
#: admin/includes/cta/sharing.php:24
|
|
|
647 |
msgid "Don't show me this again!"
|
648 |
msgstr ""
|
649 |
|
650 |
#: admin/includes/cta/test.php:9
|
|
|
651 |
msgid "REST API Access"
|
652 |
msgstr ""
|
653 |
|
654 |
#: admin/includes/cta/test.php:14
|
|
|
655 |
msgid "REST API Blocked"
|
656 |
msgstr ""
|
657 |
|
658 |
#: admin/includes/cta/test.php:15
|
|
|
659 |
msgid "Unable to access the WordPress REST API. Are you running a security plugin or have your server configured in a way that may be preventing access to the REST API?"
|
660 |
msgstr ""
|
661 |
|
662 |
#: admin/includes/cta/test.php:18
|
|
|
663 |
msgid "Get Plugin Support"
|
664 |
msgstr ""
|
665 |
|
666 |
#: admin/includes/cta/writeable.php:5
|
|
|
667 |
msgid "Read/Write Access"
|
668 |
msgstr ""
|
669 |
|
670 |
#: admin/includes/cta/writeable.php:14
|
|
|
671 |
msgid "Enabled"
|
672 |
msgstr ""
|
673 |
|
674 |
#: admin/includes/cta/writeable.php:15
|
|
|
675 |
msgid "Read/Write access is enabled within the Repeater Template directory."
|
676 |
msgstr ""
|
677 |
|
678 |
#: admin/includes/cta/writeable.php:17
|
|
|
679 |
msgid "Access Denied"
|
680 |
msgstr ""
|
681 |
|
682 |
#: admin/includes/cta/writeable.php:18
|
|
|
683 |
msgid "You must enable read and write access to save repeater template data. Please contact your hosting provider or site administrator for more information."
|
684 |
msgstr ""
|
685 |
|
686 |
#: admin/includes/cta/writeable.php:21
|
|
|
687 |
msgid "Error"
|
688 |
msgstr ""
|
689 |
|
690 |
#: admin/includes/cta/writeable.php:22
|
|
|
691 |
msgid "Unable to locate configuration file. Directory access may not be granted."
|
692 |
msgstr ""
|
693 |
|
694 |
#: admin/shortcode-builder/components/acf.php:3
|
|
|
695 |
msgid "Advanced Custom Fields"
|
696 |
msgstr ""
|
697 |
|
698 |
#: admin/shortcode-builder/components/acf.php:7
|
|
|
699 |
msgid "Enable compatibility with Advanced Custom Fields."
|
700 |
msgstr ""
|
701 |
|
734 |
#: admin/shortcode-builder/shortcode-builder.php:675
|
735 |
#: admin/shortcode-builder/shortcode-builder.php:751
|
736 |
#: admin/shortcode-builder/shortcode-builder.php:1412
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
737 |
msgid "True"
|
738 |
msgstr ""
|
739 |
|
772 |
#: admin/shortcode-builder/shortcode-builder.php:679
|
773 |
#: admin/shortcode-builder/shortcode-builder.php:755
|
774 |
#: admin/shortcode-builder/shortcode-builder.php:1416
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
775 |
msgid "False"
|
776 |
msgstr ""
|
777 |
|
779 |
#: admin/shortcode-builder/components/comments.php:30
|
780 |
#: admin/shortcode-builder/components/nextpage.php:34
|
781 |
#: admin/shortcode-builder/components/single-post.php:35
|
|
|
|
|
|
|
|
|
782 |
msgid "Post ID"
|
783 |
msgstr ""
|
784 |
|
785 |
#: admin/shortcode-builder/components/acf.php:31
|
|
|
786 |
msgid "Leave this field blank and Ajax Load More will retrieve the ID from the global $post object."
|
787 |
msgstr ""
|
788 |
|
789 |
#: admin/shortcode-builder/components/acf.php:32
|
790 |
#: admin/shortcode-builder/components/nextpage.php:35
|
|
|
|
|
791 |
msgid "The ID of the current page/post."
|
792 |
msgstr ""
|
793 |
|
794 |
#: admin/shortcode-builder/components/acf.php:43
|
795 |
#: admin/shortcode-builder/components/acf.php:48
|
796 |
#: admin/shortcode-builder/components/acf.php:67
|
|
|
|
|
|
|
797 |
msgid "Field Type"
|
798 |
msgstr ""
|
799 |
|
800 |
#: admin/shortcode-builder/components/acf.php:44
|
|
|
801 |
msgid "Select the type of ACF field."
|
802 |
msgstr ""
|
803 |
|
804 |
#: admin/shortcode-builder/components/acf.php:50
|
|
|
805 |
msgid "Select Field Type"
|
806 |
msgstr ""
|
807 |
|
808 |
#: admin/shortcode-builder/components/acf.php:51
|
|
|
809 |
msgid "Flexible Content"
|
810 |
msgstr ""
|
811 |
|
812 |
#: admin/shortcode-builder/components/acf.php:52
|
|
|
813 |
msgid "Gallery"
|
814 |
msgstr ""
|
815 |
|
816 |
#: admin/shortcode-builder/components/acf.php:53
|
|
|
817 |
msgid "Relationship"
|
818 |
msgstr ""
|
819 |
|
820 |
#: admin/shortcode-builder/components/acf.php:54
|
|
|
821 |
msgid "Repeater"
|
822 |
msgstr ""
|
823 |
|
824 |
#: admin/shortcode-builder/components/acf.php:62
|
825 |
#: admin/shortcode-builder/components/acf.php:83
|
|
|
|
|
826 |
msgid "Field Name"
|
827 |
msgstr ""
|
828 |
|
829 |
#: admin/shortcode-builder/components/acf.php:63
|
|
|
830 |
msgid "Enter the name of the ACF field."
|
831 |
msgstr ""
|
832 |
|
833 |
#: admin/shortcode-builder/components/acf.php:75
|
|
|
834 |
msgid "Parent Field Name"
|
835 |
msgstr ""
|
836 |
|
837 |
#: admin/shortcode-builder/components/acf.php:75
|
|
|
838 |
msgid "This option is only relevant when trying to access content in sub fields."
|
839 |
msgstr ""
|
840 |
|
841 |
#: admin/shortcode-builder/components/acf.php:77
|
|
|
842 |
msgid "If this a nested ACF <a href=\"https://www.advancedcustomfields.com/resources/get_sub_field/\" target=\"_blank\">sub_field</a>, enter the parent field names."
|
843 |
msgstr ""
|
844 |
|
845 |
#: admin/shortcode-builder/components/acf.php:78
|
|
|
846 |
msgid "Access fields up to the three levels deep by colon separating the field names."
|
847 |
msgstr ""
|
848 |
|
849 |
#: admin/shortcode-builder/components/cache.php:7
|
|
|
850 |
msgid "Turn on content caching."
|
851 |
msgstr ""
|
852 |
|
853 |
#: admin/shortcode-builder/components/cache.php:29
|
|
|
854 |
msgid "Cache ID"
|
855 |
msgstr ""
|
856 |
|
857 |
#: admin/shortcode-builder/components/cache.php:30
|
|
|
858 |
msgid "You <u>must</u> generate a unique ID for this cached query - this unique ID will be used as a content identifier."
|
859 |
msgstr ""
|
860 |
|
861 |
#: admin/shortcode-builder/components/cache.php:36
|
|
|
862 |
msgid "Generate Cache ID"
|
863 |
msgstr ""
|
864 |
|
865 |
#: admin/shortcode-builder/components/comments.php:3
|
|
|
866 |
msgid "Comments"
|
867 |
msgstr ""
|
868 |
|
869 |
#: admin/shortcode-builder/components/comments.php:7
|
|
|
870 |
msgid "Enable Ajax Load More to display blog comments."
|
871 |
msgstr ""
|
872 |
|
873 |
#: admin/shortcode-builder/components/comments.php:31
|
874 |
#: admin/shortcode-builder/components/single-post.php:36
|
|
|
|
|
875 |
msgid "The ID of the current single post."
|
876 |
msgstr ""
|
877 |
|
878 |
#: admin/shortcode-builder/components/comments.php:42
|
|
|
879 |
msgid "Comments Per Page"
|
880 |
msgstr ""
|
881 |
|
882 |
#: admin/shortcode-builder/components/comments.php:43
|
|
|
883 |
msgid "The number of top level items to show for each page of comments."
|
884 |
msgstr ""
|
885 |
|
886 |
#: admin/shortcode-builder/components/comments.php:44
|
|
|
887 |
msgid "<strong>Note</strong>: The amount selected does NOT include comment replies."
|
888 |
msgstr ""
|
889 |
|
890 |
#: admin/shortcode-builder/components/comments.php:55
|
|
|
891 |
msgid "Comment Type"
|
892 |
msgstr ""
|
893 |
|
894 |
#: admin/shortcode-builder/components/comments.php:56
|
|
|
895 |
msgid "The type of comment(s) to display."
|
896 |
msgstr ""
|
897 |
|
898 |
#: admin/shortcode-builder/components/comments.php:61
|
|
|
899 |
msgid "Comment"
|
900 |
msgstr ""
|
901 |
|
902 |
#: admin/shortcode-builder/components/comments.php:62
|
|
|
903 |
msgid "All"
|
904 |
msgstr ""
|
905 |
|
906 |
#: admin/shortcode-builder/components/comments.php:63
|
|
|
907 |
msgid "Trackback"
|
908 |
msgstr ""
|
909 |
|
910 |
#: admin/shortcode-builder/components/comments.php:64
|
|
|
911 |
msgid "Pingback"
|
912 |
msgstr ""
|
913 |
|
914 |
#: admin/shortcode-builder/components/comments.php:65
|
|
|
915 |
msgid "Pings"
|
916 |
msgstr ""
|
917 |
|
918 |
#: admin/shortcode-builder/components/comments.php:73
|
|
|
919 |
msgid "Comment Style"
|
920 |
msgstr ""
|
921 |
|
922 |
#: admin/shortcode-builder/components/comments.php:74
|
|
|
923 |
msgid "Select the HTML container style for your comments."
|
924 |
msgstr ""
|
925 |
|
926 |
#: admin/shortcode-builder/components/comments.php:98
|
|
|
927 |
msgid "Comment Template"
|
928 |
msgstr ""
|
929 |
|
930 |
#: admin/shortcode-builder/components/comments.php:99
|
|
|
931 |
msgid "Select a repeater template that will display comment data."
|
932 |
msgstr ""
|
933 |
|
934 |
#: admin/shortcode-builder/components/comments.php:100
|
|
|
935 |
msgid "<strong>Note</strong>: <span>None</span> will use the default WordPress comment layout."
|
936 |
msgstr ""
|
937 |
|
938 |
#: admin/shortcode-builder/components/comments.php:105
|
939 |
#: admin/shortcode-builder/shortcode-builder.php:570
|
940 |
#: admin/shortcode-builder/shortcode-builder.php:656
|
|
|
|
|
|
|
941 |
msgid "None"
|
942 |
msgstr ""
|
943 |
|
944 |
#: admin/shortcode-builder/components/comments.php:106
|
|
|
945 |
msgid "Default"
|
946 |
msgstr ""
|
947 |
|
948 |
#: admin/shortcode-builder/components/comments.php:120
|
|
|
949 |
msgid "or"
|
950 |
msgstr ""
|
951 |
|
952 |
#: admin/shortcode-builder/components/comments.php:122
|
|
|
953 |
msgid "Callback Function"
|
954 |
msgstr ""
|
955 |
|
956 |
#: admin/shortcode-builder/components/comments.php:123
|
|
|
957 |
msgid "A custom <a href=\"https://codex.wordpress.org/Function_Reference/wp_list_comments#Arguments\" target=\"_blank\">callback</a> function that will display each comment."
|
958 |
msgstr ""
|
959 |
|
960 |
#: admin/shortcode-builder/components/comments.php:124
|
|
|
961 |
msgid "<strong>Note</strong>: The majority of premium themes have a custom callback function for displaying comments. Please see comments.php or functions.php within your theme directory to locate the callback function for your theme."
|
962 |
msgstr ""
|
963 |
|
964 |
#: admin/shortcode-builder/components/comments.php:135
|
|
|
965 |
msgid "You must add the comments shortcode directly to your single template file using the <a href=\"https://developer.wordpress.org/reference/functions/do_shortcode/\" target=\"_blank\">do_shortcode</a> method."
|
966 |
msgstr ""
|
967 |
|
971 |
#: admin/shortcode-builder/components/single-post.php:326
|
972 |
#: admin/shortcode-builder/shortcode-builder.php:688
|
973 |
#: admin/shortcode-builder/shortcode-builder.php:1405
|
|
|
|
|
|
|
|
|
|
|
|
|
974 |
msgid "View Docs"
|
975 |
msgstr ""
|
976 |
|
977 |
#: admin/shortcode-builder/components/cta.php:3
|
|
|
978 |
msgid "Call to Actions"
|
979 |
msgstr ""
|
980 |
|
981 |
#: admin/shortcode-builder/components/cta.php:8
|
|
|
982 |
msgid "Insert call to action block."
|
983 |
msgstr ""
|
984 |
|
985 |
#: admin/shortcode-builder/components/cta.php:30
|
|
|
986 |
msgid "CTA Positioning"
|
987 |
msgstr ""
|
988 |
|
989 |
#: admin/shortcode-builder/components/cta.php:31
|
|
|
990 |
msgid "Insert call to action <strong><em id=\"sequence-update-before-after\">before</em></strong> post #<strong><em id=\"sequence-update\">1</em></strong>"
|
991 |
msgstr ""
|
992 |
|
993 |
#: admin/shortcode-builder/components/cta.php:36
|
|
|
994 |
msgid "Before / After"
|
995 |
msgstr ""
|
996 |
|
997 |
#: admin/shortcode-builder/components/cta.php:38
|
|
|
998 |
msgid "Before"
|
999 |
msgstr ""
|
1000 |
|
1001 |
#: admin/shortcode-builder/components/cta.php:39
|
|
|
1002 |
msgid "After"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
#: admin/shortcode-builder/components/cta.php:43
|
|
|
1006 |
msgid "Post #"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
#: admin/shortcode-builder/components/cta.php:52
|
|
|
1010 |
msgid "Template"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
#: admin/shortcode-builder/components/cta.php:54
|
|
|
1014 |
msgid "Select the <a href=\"admin.php?page=ajax-load-more-repeaters\" target=\"_parent\">repeater template</a> that will display your call to action."
|
1015 |
msgstr ""
|
1016 |
|
1017 |
#: admin/shortcode-builder/components/cta.php:61
|
|
|
1018 |
msgid "-- Select Repeater --"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
#: admin/shortcode-builder/components/cta.php:83
|
|
|
1022 |
msgid "Call to actions do NOT count as a post within an Ajax Load More loop."
|
1023 |
msgstr ""
|
1024 |
|
1025 |
#: admin/shortcode-builder/components/cta.php:84
|
|
|
1026 |
msgid "For example, if you set <strong>posts_per_page=\"5\"</strong> in your shortcode, 6 items will be displayed."
|
1027 |
msgstr ""
|
1028 |
|
1029 |
#: admin/shortcode-builder/components/filters.php:8
|
|
|
1030 |
msgid "Enable filters with this Ajax Load More instance."
|
1031 |
msgstr ""
|
1032 |
|
1033 |
#: admin/shortcode-builder/components/filters.php:30
|
1034 |
#: admin/shortcode-builder/components/single-post.php:47
|
|
|
|
|
1035 |
msgid "Target"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
#: admin/shortcode-builder/components/filters.php:30
|
|
|
1039 |
msgid "A target ID is not required but it is highly recommended to avoid issues with querystring parsing on page load."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
#: admin/shortcode-builder/components/filters.php:31
|
|
|
1043 |
msgid "Connect Ajax Load More to a specific <a href=\"admin.php?page=ajax-load-more-filters\">filter instance</a> by selecting the filter ID."
|
1044 |
msgstr ""
|
1045 |
|
1046 |
#: admin/shortcode-builder/components/filters.php:51
|
|
|
1047 |
msgid "-- Select Filter --"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
#: admin/shortcode-builder/components/filters.php:55
|
|
|
1051 |
msgid "You don't have any filters! The first step is to create one"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
#: admin/shortcode-builder/components/filters.php:67
|
|
|
1055 |
msgid "URLs"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
#: admin/shortcode-builder/components/filters.php:67
|
|
|
1059 |
msgid "Querystring URLs allow users to share deep links to filtered content."
|
1060 |
msgstr ""
|
1061 |
|
1062 |
#: admin/shortcode-builder/components/filters.php:68
|
|
|
1063 |
msgid "Update the browser querystring with active filters values."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
#: admin/shortcode-builder/components/filters.php:88
|
|
|
1067 |
msgid "Paging Parameters"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
#: admin/shortcode-builder/components/filters.php:88
|
|
|
1071 |
msgid "Adding paging parameters will allow for deep linking to a paged filter."
|
1072 |
msgstr ""
|
1073 |
|
1074 |
#: admin/shortcode-builder/components/filters.php:89
|
|
|
1075 |
msgid "Add <span>?pg={x}</span> to the browser querystring as users load additional pages."
|
1076 |
msgstr ""
|
1077 |
|
1078 |
#: admin/shortcode-builder/components/filters.php:109
|
1079 |
#: admin/shortcode-builder/components/paging.php:56
|
|
|
|
|
1080 |
msgid "Scroll"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
#: admin/shortcode-builder/components/filters.php:109
|
|
|
1084 |
msgid "When a user filters a list they will be auto scrolled back to the top."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
#: admin/shortcode-builder/components/filters.php:110
|
|
|
1088 |
msgid "Automatically scroll users to the top of list after a filter update."
|
1089 |
msgstr ""
|
1090 |
|
1091 |
#: admin/shortcode-builder/components/filters.php:131
|
1092 |
#: admin/shortcode-builder/components/nextpage.php:125
|
1093 |
#: admin/shortcode-builder/components/paging.php:70
|
|
|
|
|
|
|
1094 |
msgid "Scroll Top"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
#: admin/shortcode-builder/components/filters.php:131
|
|
|
1098 |
msgid "The Scroll Top value is the pixel position the window will be scrolled to."
|
1099 |
msgstr ""
|
1100 |
|
1101 |
#: admin/shortcode-builder/components/filters.php:132
|
|
|
1102 |
msgid "The offset top position of the window used with `Paging Parameters` and `Scroll`."
|
1103 |
msgstr ""
|
1104 |
|
1105 |
#: admin/shortcode-builder/components/filters.php:137
|
|
|
1106 |
msgid "Scroll Top Value"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
#: admin/shortcode-builder/components/filters.php:150
|
|
|
1110 |
msgid "Analytics"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
#: admin/shortcode-builder/components/filters.php:150
|
|
|
1114 |
msgid "Each time the filter is updated a pageview will be sent to Google Analytics."
|
1115 |
msgstr ""
|
1116 |
|
1117 |
#: admin/shortcode-builder/components/filters.php:151
|
|
|
1118 |
msgid "Send pageviews to Google Analytics."
|
1119 |
msgstr ""
|
1120 |
|
1121 |
#: admin/shortcode-builder/components/filters.php:172
|
1122 |
#: admin/shortcode-builder/components/rest-api.php:97
|
|
|
|
|
1123 |
msgid "Debug Mode"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
#: admin/shortcode-builder/components/filters.php:173
|
|
|
1127 |
msgid "Enable debugging of the Ajax Load More filter object in the browser console."
|
1128 |
msgstr ""
|
1129 |
|
1130 |
#: admin/shortcode-builder/components/nextpage.php:5
|
1131 |
#: admin/shortcode-builder/components/paging.php:147
|
|
|
|
|
1132 |
msgid "Next Page"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
#: admin/shortcode-builder/components/nextpage.php:10
|
|
|
1136 |
msgid "Enable the infinite scrolling of multipage WordPress content using the"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
#: admin/shortcode-builder/components/nextpage.php:10
|
|
|
1140 |
msgid "Quicktag or Page Break block."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
#: admin/shortcode-builder/components/nextpage.php:46
|
|
|
1144 |
msgid "URL Rewrite"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
#: admin/shortcode-builder/components/nextpage.php:47
|
|
|
1148 |
msgid "Update the browser address bar as pages come into view."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
#: admin/shortcode-builder/components/nextpage.php:54
|
|
|
1152 |
msgid "Yes, update the URL."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
#: admin/shortcode-builder/components/nextpage.php:63
|
|
|
1156 |
msgid "Page Title Template"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
#: admin/shortcode-builder/components/nextpage.php:64
|
|
|
1160 |
msgid "The page title template is used to update the browser title each time a new page is loaded."
|
1161 |
msgstr ""
|
1162 |
|
1163 |
#: admin/shortcode-builder/components/nextpage.php:65
|
|
|
1164 |
msgid "Page title will NOT be updated if this field remains empty."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
#: admin/shortcode-builder/components/nextpage.php:73
|
|
|
1168 |
msgid "Template Tags"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
#: admin/shortcode-builder/components/nextpage.php:75
|
|
|
1172 |
msgid "Current Page Number"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
#: admin/shortcode-builder/components/nextpage.php:76
|
|
|
1176 |
msgid "Total Number of Pages"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
#: admin/shortcode-builder/components/nextpage.php:77
|
|
|
1180 |
msgid "Title of Post"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
#: admin/shortcode-builder/components/nextpage.php:78
|
|
|
1184 |
msgid "Site Title"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
#: admin/shortcode-builder/components/nextpage.php:79
|
|
|
1188 |
msgid "Site Tagline"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
#: admin/shortcode-builder/components/nextpage.php:90
|
|
|
1192 |
msgid "Google Analytics"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
#: admin/shortcode-builder/components/nextpage.php:91
|
|
|
1196 |
msgid "You must have a reference to your Google Analytics tracking code already on the page."
|
1197 |
msgstr ""
|
1198 |
|
1199 |
#: admin/shortcode-builder/components/nextpage.php:93
|
|
|
1200 |
msgid "Each time a page is loaded it will count as a pageview."
|
1201 |
msgstr ""
|
1202 |
|
1203 |
#: admin/shortcode-builder/components/nextpage.php:100
|
|
|
1204 |
msgid "Yes, send pageviews to Google Analytics."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
#: admin/shortcode-builder/components/nextpage.php:109
|
|
|
1208 |
msgid "Scroll to Page"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
#: admin/shortcode-builder/components/nextpage.php:111
|
|
|
1212 |
msgid "Scroll users automatically to the next page on 'Load More' action."
|
1213 |
msgstr ""
|
1214 |
|
1215 |
#: admin/shortcode-builder/components/nextpage.php:117
|
1216 |
#: admin/shortcode-builder/components/paging.php:62
|
1217 |
#: admin/shortcode-builder/shortcode-builder.php:410
|
|
|
|
|
|
|
1218 |
msgid "Enable Scrolling"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
#: admin/shortcode-builder/components/nextpage.php:126
|
|
|
1222 |
msgid "The scrolltop position of the browser window (used with scrolling and fwd/back browser buttons)."
|
1223 |
msgstr ""
|
1224 |
|
1225 |
#: admin/shortcode-builder/components/nextpage.php:135
|
|
|
1226 |
msgid "You must add the Next Page shortcode directly to your template file using the <a href=\"https://developer.wordpress.org/reference/functions/do_shortcode/\" target=\"_blank\">do_shortcode</a> method."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
#: admin/shortcode-builder/components/paging.php:3
|
|
|
1230 |
msgid "Paging"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
#: admin/shortcode-builder/components/paging.php:8
|
|
|
1234 |
msgid "Replace infinite scrolling with a paged ajax navigation system."
|
1235 |
msgstr ""
|
1236 |
|
1237 |
#: admin/shortcode-builder/components/paging.php:31
|
|
|
1238 |
msgid "Navigation Classes"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
#: admin/shortcode-builder/components/paging.php:32
|
|
|
1242 |
msgid "Add custom CSS classes to the paging navigation menu."
|
1243 |
msgstr ""
|
1244 |
|
1245 |
#: admin/shortcode-builder/components/paging.php:43
|
|
|
1246 |
msgid "Show at Most"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
#: admin/shortcode-builder/components/paging.php:44
|
|
|
1250 |
msgid "The maximum amount of page menu items to show at a time. <br/.>0 = no maximum"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
#: admin/shortcode-builder/components/paging.php:57
|
|
|
1254 |
msgid "Move users to the top of the Ajax Load More container after a paging click event."
|
1255 |
msgstr ""
|
1256 |
|
1257 |
#: admin/shortcode-builder/components/paging.php:71
|
|
|
1258 |
msgid "The scrolltop position of the browser window when scrolling back to top."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
#: admin/shortcode-builder/components/paging.php:82
|
|
|
1262 |
msgid "Controls"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
#: admin/shortcode-builder/components/paging.php:83
|
|
|
1266 |
msgid "Show first/last and next/previous buttons in the paging navigation."
|
1267 |
msgstr ""
|
1268 |
|
1269 |
#: admin/shortcode-builder/components/paging.php:105
|
|
|
1270 |
msgid "First Page"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
#: admin/shortcode-builder/components/paging.php:105
|
1274 |
#: admin/shortcode-builder/components/paging.php:119
|
|
|
|
|
1275 |
msgid "Leave empty to not render button."
|
1276 |
msgstr ""
|
1277 |
|
1278 |
#: admin/shortcode-builder/components/paging.php:107
|
|
|
1279 |
msgid "Label for the <span>First Page</span> button."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
#: admin/shortcode-builder/components/paging.php:119
|
|
|
1283 |
msgid "Last Page"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
#: admin/shortcode-builder/components/paging.php:121
|
|
|
1287 |
msgid "Label for the <span>Last Page</span> button."
|
1288 |
msgstr ""
|
1289 |
|
1290 |
#: admin/shortcode-builder/components/paging.php:133
|
|
|
1291 |
msgid "Previous Page"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
#: admin/shortcode-builder/components/paging.php:135
|
|
|
1295 |
msgid "Label for the <span>Previous Page</span> button."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
#: admin/shortcode-builder/components/paging.php:149
|
|
|
1299 |
msgid "Label for the <span>Next Page</span> button."
|
1300 |
msgstr ""
|
1301 |
|
1302 |
#: admin/shortcode-builder/components/preloaded.php:3
|
|
|
1303 |
msgid "Preloaded"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
#: admin/shortcode-builder/components/preloaded.php:8
|
|
|
1307 |
msgid "Preload posts prior to making Ajax requests."
|
1308 |
msgstr ""
|
1309 |
|
1310 |
#: admin/shortcode-builder/components/preloaded.php:30
|
|
|
1311 |
msgid "Preload Amount"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
#: admin/shortcode-builder/components/preloaded.php:31
|
|
|
1315 |
msgid "Enter the number of posts to preload."
|
1316 |
msgstr ""
|
1317 |
|
1318 |
#: admin/shortcode-builder/components/rest-api.php:18
|
|
|
1319 |
msgid "REST API"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
#: admin/shortcode-builder/components/rest-api.php:23
|
|
|
1323 |
msgid "Enable the WordPress REST API."
|
1324 |
msgstr ""
|
1325 |
|
1326 |
#: admin/shortcode-builder/components/rest-api.php:46
|
|
|
1327 |
msgid "Base URL"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
#: admin/shortcode-builder/components/rest-api.php:47
|
|
|
1331 |
msgid "Set a default Base URL in the Ajax Load More settings panel"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
#: admin/shortcode-builder/components/rest-api.php:48
|
|
|
1335 |
msgid "Enter the base URL to your installation of the REST API."
|
1336 |
msgstr ""
|
1337 |
|
1338 |
#: admin/shortcode-builder/components/rest-api.php:59
|
|
|
1339 |
msgid "Namespace"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
#: admin/shortcode-builder/components/rest-api.php:60
|
|
|
1343 |
msgid "Set a default Namespace in the Ajax Load More settings panel"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
#: admin/shortcode-builder/components/rest-api.php:61
|
|
|
1347 |
msgid "Enter the custom namespace for this Ajax Load More query."
|
1348 |
msgstr ""
|
1349 |
|
1350 |
#: admin/shortcode-builder/components/rest-api.php:72
|
|
|
1351 |
msgid "Endpoint"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
#: admin/shortcode-builder/components/rest-api.php:73
|
|
|
1355 |
msgid "Set a default Endpoint in the Ajax Load More settings panel"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
#: admin/shortcode-builder/components/rest-api.php:74
|
|
|
1359 |
msgid "Enter your custom endpoint for this Ajax Load More query."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
#: admin/shortcode-builder/components/rest-api.php:85
|
|
|
1363 |
msgid "Template ID"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
#: admin/shortcode-builder/components/rest-api.php:85
|
|
|
1367 |
msgid "Ajax Load More references this ID while looping and displaying your data. You must still select a repeater template for this instance of Ajax Load More"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
#: admin/shortcode-builder/components/rest-api.php:86
|
|
|
1371 |
msgid "Enter the ID of your javascript template.<br/><br/>e.g. <em>tmpl-alm-template</em> = <em>alm-template</em>"
|
1372 |
msgstr ""
|
1373 |
|
1384 |
#: admin/shortcode-builder/shortcode-builder.php:1213
|
1385 |
#: admin/shortcode-builder/shortcode-builder.php:1242
|
1386 |
#: admin/shortcode-builder/shortcode-builder.php:1273
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1387 |
msgid "View Example"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
#: admin/shortcode-builder/components/rest-api.php:98
|
|
|
1391 |
msgid "Enable debugging (console.log) of REST API responses in the browser console. "
|
1392 |
msgstr ""
|
1393 |
|
1394 |
#: admin/shortcode-builder/components/rest-api.php:117
|
|
|
1395 |
msgid "Visit <a href=\"http://v2.wp-api.org/\" target=\"_blank\">http://v2.wp-api.org</a> for documentation on creating custom <a href=\"http://v2.wp-api.org/extending/adding/\" target=\"_blank\">Endpoints</a> for use with Ajax Load More."
|
1396 |
msgstr ""
|
1397 |
|
1398 |
#: admin/shortcode-builder/components/seo.php:4
|
|
|
1399 |
msgid "Search Engine Optimization"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
#: admin/shortcode-builder/components/seo.php:8
|
|
|
1403 |
msgid "Enable address bar URL rewrites as users page through ajax loaded content."
|
1404 |
msgstr ""
|
1405 |
|
1406 |
#: admin/shortcode-builder/components/single-post.php:7
|
|
|
1407 |
msgid "Single Posts"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
#: admin/shortcode-builder/components/single-post.php:12
|
|
|
1411 |
msgid "Enable the infinite scrolling of single posts."
|
1412 |
msgstr ""
|
1413 |
|
1414 |
#: admin/shortcode-builder/components/single-post.php:47
|
|
|
1415 |
msgid "Repeater Templates are not required when using the Target implementation."
|
1416 |
msgstr ""
|
1417 |
|
1418 |
#: admin/shortcode-builder/components/single-post.php:48
|
|
|
1419 |
msgid "Enter the ID or classname of HTML element that wraps your single post content."
|
1420 |
msgstr ""
|
1421 |
|
1422 |
#: admin/shortcode-builder/components/single-post.php:50
|
|
|
1423 |
msgid "View Guide"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
#: admin/shortcode-builder/components/single-post.php:61
|
|
|
1427 |
msgid "Post Ordering"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
#: admin/shortcode-builder/components/single-post.php:61
|
|
|
1431 |
msgid "By default, the Single Posts add-on will use the core WordPress `get_previous_post` function, but you can adjust that here."
|
1432 |
msgstr ""
|
1433 |
|
1434 |
#: admin/shortcode-builder/components/single-post.php:62
|
|
|
1435 |
msgid "Select the posts loading order."
|
1436 |
msgstr ""
|
1437 |
|
1438 |
#: admin/shortcode-builder/components/single-post.php:68
|
|
|
1439 |
msgid "Previous Post (by date DESC)"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
#: admin/shortcode-builder/components/single-post.php:69
|
|
|
1443 |
msgid "Next Post (by date ASC)"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
#: admin/shortcode-builder/components/single-post.php:70
|
1447 |
#: admin/shortcode-builder/components/single-post.php:87
|
|
|
|
|
1448 |
msgid "Latest Post (Start from most recent)"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
#: admin/shortcode-builder/components/single-post.php:71
|
|
|
1452 |
msgid "Post IDs (Array)"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
#: admin/shortcode-builder/components/single-post.php:72
|
|
|
1456 |
msgid "Custom Query"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
#: admin/shortcode-builder/components/single-post.php:81
|
|
|
1460 |
msgid "Custom Query Order"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
#: admin/shortcode-builder/components/single-post.php:82
|
|
|
1464 |
msgid "Select the post ordering of the custom query."
|
1465 |
msgstr ""
|
1466 |
|
1467 |
#: admin/shortcode-builder/components/single-post.php:86
|
|
|
1468 |
msgid "Previous Post (Continue by date DESC)"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
#: admin/shortcode-builder/components/single-post.php:96
|
|
|
1472 |
msgid "Post ID Array"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
#: admin/shortcode-builder/components/single-post.php:97
|
|
|
1476 |
msgid "A comma separated list of post ID's to query by order."
|
1477 |
msgstr ""
|
1478 |
|
1479 |
#: admin/shortcode-builder/components/single-post.php:110
|
1480 |
#: admin/shortcode-builder/components/term-query.php:39
|
1481 |
#: admin/shortcode-builder/shortcode-builder.php:1114
|
|
|
|
|
|
|
1482 |
msgid "Taxonomy"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
#: admin/shortcode-builder/components/single-post.php:110
|
|
|
1486 |
msgid "Selecting a taxonomy means only previous posts from the same taxonomy term will be returned. If a post has multiple terms attached, each term will be considered using an OR relationship query."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
#: admin/shortcode-builder/components/single-post.php:111
|
|
|
1490 |
msgid "Query previous posts from the same taxonomy term(s)."
|
1491 |
msgstr ""
|
1492 |
|
1494 |
#: admin/shortcode-builder/includes/tax-query-options.php:5
|
1495 |
#: admin/shortcode-builder/includes/tax-query-options.php:62
|
1496 |
#: admin/shortcode-builder/includes/tax-query-options.php:105
|
|
|
|
|
|
|
|
|
1497 |
msgid "Select Taxonomy"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
#: admin/shortcode-builder/components/single-post.php:125
|
1501 |
#: admin/shortcode-builder/components/term-query.php:45
|
1502 |
#: admin/shortcode-builder/shortcode-builder.php:930
|
|
|
|
|
|
|
1503 |
msgid "Category"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
#: admin/shortcode-builder/components/single-post.php:126
|
1507 |
#: admin/shortcode-builder/components/term-query.php:46
|
1508 |
#: admin/shortcode-builder/shortcode-builder.php:1023
|
|
|
|
|
|
|
1509 |
msgid "Tag"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
#: admin/shortcode-builder/components/single-post.php:140
|
|
|
1513 |
msgid "Excluded Terms "
|
1514 |
msgstr ""
|
1515 |
|
1516 |
#: admin/shortcode-builder/components/single-post.php:140
|
|
|
1517 |
msgid "A comma-separated list of excluded terms by ID."
|
1518 |
msgstr ""
|
1519 |
|
1520 |
#: admin/shortcode-builder/components/single-post.php:141
|
|
|
1521 |
msgid "Exclude posts by term ID from the previous post query."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
#: admin/shortcode-builder/components/single-post.php:153
|
|
|
1525 |
msgid "Post Preview"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
#: admin/shortcode-builder/components/single-post.php:154
|
|
|
1529 |
msgid "Show a preview of Ajax loaded posts and have the user click to load the remainder of the post."
|
1530 |
msgstr ""
|
1531 |
|
1532 |
#: admin/shortcode-builder/components/single-post.php:178
|
|
|
1533 |
msgid "Button Label"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
#: admin/shortcode-builder/components/single-post.php:179
|
|
|
1537 |
msgid "Enter a label for the preview button."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
#: admin/shortcode-builder/components/single-post.php:189
|
1541 |
#: admin/shortcode-builder/components/single-post.php:251
|
|
|
|
|
1542 |
msgid "Height"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
#: admin/shortcode-builder/components/single-post.php:190
|
|
|
1546 |
msgid "Set the initial height of the preview in pixels."
|
1547 |
msgstr ""
|
1548 |
|
1549 |
#: admin/shortcode-builder/components/single-post.php:202
|
|
|
1550 |
msgid "Reading Progress Bar"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
#: admin/shortcode-builder/components/single-post.php:203
|
|
|
1554 |
msgid "Display a reading progress bar indicator at the top or bottom of the browser window."
|
1555 |
msgstr ""
|
1556 |
|
1557 |
#: admin/shortcode-builder/components/single-post.php:230
|
|
|
1558 |
msgid "Position"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
#: admin/shortcode-builder/components/single-post.php:231
|
|
|
1562 |
msgid "Select the window position of the progress bar."
|
1563 |
msgstr ""
|
1564 |
|
1565 |
#: admin/shortcode-builder/components/single-post.php:238
|
|
|
1566 |
msgid "Top"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
#: admin/shortcode-builder/components/single-post.php:242
|
|
|
1570 |
msgid "Bottom"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
#: admin/shortcode-builder/components/single-post.php:252
|
|
|
1574 |
msgid "Select the height of the progress bar in pixels."
|
1575 |
msgstr ""
|
1576 |
|
1577 |
#: admin/shortcode-builder/components/single-post.php:263
|
|
|
1578 |
msgid "Colors"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
#: admin/shortcode-builder/components/single-post.php:264
|
|
|
1582 |
msgid "Enter the hex color values of the reading progress bar"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
#: admin/shortcode-builder/components/single-post.php:265
|
1586 |
#: admin/shortcode-builder/shortcode-builder.php:770
|
|
|
|
|
1587 |
msgid "Default:"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
#: admin/shortcode-builder/components/single-post.php:272
|
|
|
1591 |
msgid "Foreground Color:"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
#: admin/shortcode-builder/components/single-post.php:279
|
|
|
1595 |
msgid "Background Color:"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
#: admin/shortcode-builder/components/single-post.php:279
|
|
|
1599 |
msgid "Leave empty for a transparent background"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
#: admin/shortcode-builder/components/single-post.php:302
|
|
|
1603 |
msgid "Elementor"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
#: admin/shortcode-builder/components/single-post.php:303
|
|
|
1607 |
msgid "Set Elementor <b>true</b> if you are using Elementor templates to build single posts."
|
1608 |
msgstr ""
|
1609 |
|
1610 |
#: admin/shortcode-builder/components/single-post.php:304
|
|
|
1611 |
msgid "View Blog Post"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
#: admin/shortcode-builder/components/single-post.php:326
|
|
|
1615 |
msgid "You must add the Single Post shortcode directly to your single template file using the <a href=\"https://developer.wordpress.org/reference/functions/do_shortcode/\" target=\"_blank\">do_shortcode</a> method."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
#: admin/shortcode-builder/components/term-query.php:3
|
|
|
1619 |
msgid "Terms"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
#: admin/shortcode-builder/components/term-query.php:8
|
|
|
1623 |
msgid "Enable Terms Query."
|
1624 |
msgstr ""
|
1625 |
|
1626 |
#: admin/shortcode-builder/components/term-query.php:40
|
|
|
1627 |
msgid "Select a taxonomy to query."
|
1628 |
msgstr ""
|
1629 |
|
1630 |
#: admin/shortcode-builder/components/term-query.php:61
|
|
|
1631 |
msgid "Number"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
#: admin/shortcode-builder/components/term-query.php:61
|
|
|
1635 |
msgid "Leave empty to return all terms."
|
1636 |
msgstr ""
|
1637 |
|
1638 |
#: admin/shortcode-builder/components/term-query.php:62
|
|
|
1639 |
msgid "The number of terms to return per page."
|
1640 |
msgstr ""
|
1641 |
|
1642 |
#: admin/shortcode-builder/components/term-query.php:73
|
|
|
1643 |
msgid "Hide Empty"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
#: admin/shortcode-builder/components/term-query.php:74
|
|
|
1647 |
msgid "Whether to hide terms not assigned to any posts."
|
1648 |
msgstr ""
|
1649 |
|
1650 |
#: admin/shortcode-builder/components/users.php:3
|
|
|
1651 |
msgid "Users"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
#: admin/shortcode-builder/components/users.php:7
|
|
|
1655 |
msgid "Infinite scroll WordPress users"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
#: admin/shortcode-builder/components/users.php:30
|
|
|
1659 |
msgid "User Role"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
#: admin/shortcode-builder/components/users.php:31
|
|
|
1663 |
msgid "Select the role of user to be displayed"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
#: admin/shortcode-builder/components/users.php:36
|
|
|
1667 |
msgid "All Roles"
|
1668 |
msgstr ""
|
1669 |
|
1671 |
#: admin/shortcode-builder/shortcode-builder.php:934
|
1672 |
#: admin/shortcode-builder/shortcode-builder.php:1027
|
1673 |
#: admin/shortcode-builder/shortcode-builder.php:1260
|
|
|
|
|
|
|
|
|
1674 |
msgid "Include"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
#: admin/shortcode-builder/components/users.php:58
|
|
|
1678 |
msgid "A comma separated list of users to be included by ID"
|
1679 |
msgstr ""
|
1680 |
|
1682 |
#: admin/shortcode-builder/shortcode-builder.php:981
|
1683 |
#: admin/shortcode-builder/shortcode-builder.php:1076
|
1684 |
#: admin/shortcode-builder/shortcode-builder.php:1271
|
|
|
|
|
|
|
|
|
1685 |
msgid "Exclude"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
#: admin/shortcode-builder/components/users.php:72
|
|
|
1689 |
msgid "A comma separated list of users to be excluded by ID"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
#: admin/shortcode-builder/components/users.php:84
|
|
|
1693 |
msgid "Users Per Page"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
#: admin/shortcode-builder/components/users.php:85
|
|
|
1697 |
msgid "The number of users to show."
|
1698 |
msgstr ""
|
1699 |
|
1700 |
#: admin/shortcode-builder/components/users.php:96
|
|
|
1701 |
msgid "Orderby"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
#: admin/shortcode-builder/components/users.php:97
|
|
|
1705 |
msgid "Sort users by Order and Orderby parameters"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
#: admin/shortcode-builder/components/users.php:102
|
1709 |
#: admin/shortcode-builder/shortcode-builder.php:1316
|
|
|
|
|
1710 |
msgid "Order"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
#: admin/shortcode-builder/components/users.php:109
|
1714 |
#: admin/shortcode-builder/shortcode-builder.php:1323
|
|
|
|
|
1715 |
msgid "Order By"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
#: admin/shortcode-builder/includes/meta-query-options.php:4
|
|
|
1719 |
msgid "Key (Name):"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
#: admin/shortcode-builder/includes/meta-query-options.php:5
|
|
|
1723 |
msgid "Enter custom field key(name)"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
#: admin/shortcode-builder/includes/meta-query-options.php:8
|
|
|
1727 |
msgid "Value:"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
#: admin/shortcode-builder/includes/meta-query-options.php:8
|
|
|
1731 |
msgid "Query multiple values by splitting each value with a comma - e.g. value, value2, value3 etc."
|
1732 |
msgstr ""
|
1733 |
|
1734 |
#: admin/shortcode-builder/includes/meta-query-options.php:9
|
|
|
1735 |
msgid "Enter custom field value(s)"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
#: admin/shortcode-builder/includes/meta-query-options.php:13
|
|
|
1739 |
msgid "Operator:"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
#: admin/shortcode-builder/includes/meta-query-options.php:33
|
|
|
1743 |
msgid "Type:"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
#: admin/shortcode-builder/includes/tax-query-options.php:3
|
1747 |
#: admin/shortcode-builder/includes/tax-query-options.php:59
|
1748 |
#: admin/shortcode-builder/includes/tax-query-options.php:102
|
|
|
|
|
|
|
1749 |
msgid "Taxonomy:"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
#: admin/shortcode-builder/includes/tax-query-options.php:12
|
1753 |
#: admin/shortcode-builder/includes/tax-query-options.php:69
|
1754 |
#: admin/shortcode-builder/includes/tax-query-options.php:112
|
|
|
|
|
|
|
1755 |
msgid "Taxonomy Terms:"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
#: admin/shortcode-builder/includes/tax-query-options.php:17
|
1759 |
#: admin/shortcode-builder/includes/tax-query-options.php:74
|
1760 |
#: admin/shortcode-builder/includes/tax-query-options.php:117
|
|
|
|
|
|
|
1761 |
msgid "Taxonomy Operator:"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
#: admin/shortcode-builder/includes/tax-query-options.php:48
|
1765 |
#: admin/shortcode-builder/shortcode-builder.php:1148
|
|
|
|
|
1766 |
msgid "Relation:"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
#: admin/shortcode-builder/includes/tax-query-options.php:48
|
|
|
1770 |
msgid "The logical relationship between each taxonomy when there is more than one."
|
1771 |
msgstr ""
|
1772 |
|
1773 |
#: admin/shortcode-builder/shortcode-builder.php:23
|
1774 |
#: admin/shortcode-builder/shortcode-builder.php:88
|
|
|
|
|
1775 |
msgid "Display Settings"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
#: admin/shortcode-builder/shortcode-builder.php:24
|
1779 |
#: admin/shortcode-builder/shortcode-builder.php:798
|
|
|
|
|
1780 |
msgid "Query Parameters"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
#: admin/shortcode-builder/shortcode-builder.php:25
|
1784 |
#: admin/shortcode-builder/shortcode-builder.php:1390
|
|
|
|
|
1785 |
msgid "Integrations"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
#: admin/shortcode-builder/shortcode-builder.php:40
|
|
|
1789 |
msgid "Configure your Ajax Load More add-ons."
|
1790 |
msgstr ""
|
1791 |
|
1792 |
#: admin/shortcode-builder/shortcode-builder.php:70
|
|
|
1793 |
msgid "Configure your Ajax Load More extensions."
|
1794 |
msgstr ""
|
1795 |
|
1796 |
#: admin/shortcode-builder/shortcode-builder.php:90
|
|
|
1797 |
msgid "Display Settings allow you create a custom Ajax Load More experience for your visitors."
|
1798 |
msgstr ""
|
1799 |
|
1800 |
#: admin/shortcode-builder/shortcode-builder.php:104
|
|
|
1801 |
msgid "ID"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
#: admin/shortcode-builder/shortcode-builder.php:104
|
|
|
1805 |
msgid "Adding a unique ID will allow you target this specific Ajax Load More instance with the alm_query_args_id() filter"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
#: admin/shortcode-builder/shortcode-builder.php:105
|
|
|
1809 |
msgid "Set a unique ID for this Ajax Load More instance."
|
1810 |
msgstr ""
|
1811 |
|
1812 |
#: admin/shortcode-builder/shortcode-builder.php:106
|
1813 |
#: admin/views/repeater-templates.php:151
|
1814 |
#: admin/views/repeater-templates.php:502
|
|
|
|
|
|
|
1815 |
msgid "Learn More"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
#: admin/shortcode-builder/shortcode-builder.php:112
|
|
|
1819 |
msgid "Generate Unique ID"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
#: admin/shortcode-builder/shortcode-builder.php:124
|
|
|
1823 |
msgid "You can define a global button/loading style on the Ajax Load More settings screen"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
#: admin/shortcode-builder/shortcode-builder.php:125
|
|
|
1827 |
msgid "Select an Ajax loading style - you can choose between a Button or Infinite Scroll."
|
1828 |
msgstr ""
|
1829 |
|
1830 |
#: admin/shortcode-builder/shortcode-builder.php:153
|
|
|
1831 |
msgid "CLICK TO PREVIEW"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
#: admin/shortcode-builder/shortcode-builder.php:166
|
|
|
1835 |
msgid "You can define a global container type on the Ajax Load More settings screen"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
#: admin/shortcode-builder/shortcode-builder.php:167
|
|
|
1839 |
msgid "Override the global Container Type set in <a href=\"admin.php?page=ajax-load-more\">ALM Settings</a>."
|
1840 |
msgstr ""
|
1841 |
|
1842 |
#: admin/shortcode-builder/shortcode-builder.php:196
|
|
|
1843 |
msgid "You can define global container classes on the Ajax Load More settings screen"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
#: admin/shortcode-builder/shortcode-builder.php:198
|
|
|
1847 |
msgid "Add custom CSS classes to the <span>.alm-listing</span> container."
|
1848 |
msgstr ""
|
1849 |
|
1850 |
#: admin/shortcode-builder/shortcode-builder.php:212
|
|
|
1851 |
msgid "Pause"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
#: admin/shortcode-builder/shortcode-builder.php:213
|
|
|
1855 |
msgid "Do not load Ajax content until the user clicks or interacts with the <em>Load More</em> button."
|
1856 |
msgstr ""
|
1857 |
|
1858 |
#: admin/shortcode-builder/shortcode-builder.php:234
|
|
|
1859 |
msgid "Destroy After"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
#: admin/shortcode-builder/shortcode-builder.php:235
|
|
|
1863 |
msgid "Remove Ajax Load More functionality after {<em>n</em>} number of pages have been loaded."
|
1864 |
msgstr ""
|
1865 |
|
1866 |
#: admin/shortcode-builder/shortcode-builder.php:248
|
|
|
1867 |
msgid "Images Loaded"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
#: admin/shortcode-builder/shortcode-builder.php:248
|
|
|
1871 |
msgid "Background images are not supported."
|
1872 |
msgstr ""
|
1873 |
|
1874 |
#: admin/shortcode-builder/shortcode-builder.php:249
|
|
|
1875 |
msgid "Wait for all images to load before displaying ajax loaded content."
|
1876 |
msgstr ""
|
1877 |
|
1878 |
#: admin/shortcode-builder/shortcode-builder.php:271
|
|
|
1879 |
msgid "Loading Placeholder"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
#: admin/shortcode-builder/shortcode-builder.php:271
|
|
|
1883 |
msgid "A loading placeholder can help the understand content is about to rendered."
|
1884 |
msgstr ""
|
1885 |
|
1886 |
#: admin/shortcode-builder/shortcode-builder.php:272
|
|
|
1887 |
msgid "Display a placeholder image while Ajax content is being loaded."
|
1888 |
msgstr ""
|
1889 |
|
1890 |
#: admin/shortcode-builder/shortcode-builder.php:290
|
|
|
1891 |
msgid "URL:"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
#: admin/shortcode-builder/shortcode-builder.php:302
|
|
|
1895 |
msgid "No Results Text"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
#: admin/shortcode-builder/shortcode-builder.php:302
|
|
|
1899 |
msgid "HTML is allowed, however when adding quote marks in classnames or IDs you must single quotes as shown in the example."
|
1900 |
msgstr ""
|
1901 |
|
1902 |
#: admin/shortcode-builder/shortcode-builder.php:303
|
|
|
1903 |
msgid "Add text/html to be displayed when no results are returned in the Ajax query."
|
1904 |
msgstr ""
|
1905 |
|
1906 |
#: admin/shortcode-builder/shortcode-builder.php:303
|
|
|
1907 |
msgid "e.g. <div class='no-results'>Sorry, nothing found in this query</div>"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
#: admin/shortcode-builder/shortcode-builder.php:320
|
|
|
1911 |
msgid "Template Selection"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
#: admin/shortcode-builder/shortcode-builder.php:325
|
|
|
1915 |
msgid "Repeater Template"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
#: admin/shortcode-builder/shortcode-builder.php:327
|
|
|
1919 |
msgid "Select which <a href=\"admin.php?page=ajax-load-more-repeaters\" target=\"_parent\">Repeater Template</a> you would like to use."
|
1920 |
msgstr ""
|
1921 |
|
1922 |
#: admin/shortcode-builder/shortcode-builder.php:361
|
|
|
1923 |
msgid "Button Labels"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
#: admin/shortcode-builder/shortcode-builder.php:366
|
|
|
1927 |
msgid "Label"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
#: admin/shortcode-builder/shortcode-builder.php:367
|
|
|
1931 |
msgid "Customize the text of the <em>Load More</em> button."
|
1932 |
msgstr ""
|
1933 |
|
1934 |
#: admin/shortcode-builder/shortcode-builder.php:378
|
|
|
1935 |
msgid "Loading Label"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
#: admin/shortcode-builder/shortcode-builder.php:378
|
|
|
1939 |
msgid "Leave field empty to not update button text while loading content"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
#: admin/shortcode-builder/shortcode-builder.php:379
|
|
|
1943 |
msgid "Update the text of the <em>Load More</em> button while content is loading."
|
1944 |
msgstr ""
|
1945 |
|
1946 |
#: admin/shortcode-builder/shortcode-builder.php:383
|
|
|
1947 |
msgid "Loading Posts..."
|
1948 |
msgstr ""
|
1949 |
|
1950 |
#: admin/shortcode-builder/shortcode-builder.php:390
|
|
|
1951 |
msgid "Done Label"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
#: admin/shortcode-builder/shortcode-builder.php:390
|
|
|
1955 |
msgid "Leave field empty to not update button text"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
#: admin/shortcode-builder/shortcode-builder.php:391
|
|
|
1959 |
msgid "Update the text of the <em>Load More</em> button when no content remains to be loaded."
|
1960 |
msgstr ""
|
1961 |
|
1962 |
#: admin/shortcode-builder/shortcode-builder.php:395
|
|
|
1963 |
msgid "No Posts Remain..."
|
1964 |
msgstr ""
|
1965 |
|
1966 |
#: admin/shortcode-builder/shortcode-builder.php:406
|
|
|
1967 |
msgid "Scrolling"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
#: admin/shortcode-builder/shortcode-builder.php:411
|
|
|
1971 |
msgid "Load more posts as the user scrolls the page."
|
1972 |
msgstr ""
|
1973 |
|
1974 |
#: admin/shortcode-builder/shortcode-builder.php:437
|
|
|
1975 |
msgid "Scroll Distance"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
#: admin/shortcode-builder/shortcode-builder.php:437
|
|
|
1979 |
msgid "Distance is based on the position of the loading button from the bottom of the screen"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
#: admin/shortcode-builder/shortcode-builder.php:438
|
|
|
1983 |
msgid "The distance from the bottom of the screen to trigger loading of posts. (Default = 100)"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
#: admin/shortcode-builder/shortcode-builder.php:439
|
|
|
1987 |
msgid "Pro-tip"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
#: admin/shortcode-builder/shortcode-builder.php:439
|
|
|
1991 |
msgid "Use a negative number (-200) to trigger a post load before the button is in view"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
#: admin/shortcode-builder/shortcode-builder.php:457
|
|
|
1995 |
msgid "Maximum Pages"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
#: admin/shortcode-builder/shortcode-builder.php:457
|
|
|
1999 |
msgid "If using an Infinite Scroll button style you should set this to 0"
|
2000 |
msgstr ""
|
2001 |
|
2002 |
#: admin/shortcode-builder/shortcode-builder.php:458
|
|
|
2003 |
msgid "Maximum number of pages to load while scrolling. (0 = unlimited)"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
#: admin/shortcode-builder/shortcode-builder.php:470
|
|
|
2007 |
msgid "Pause Override"
|
2008 |
msgstr ""
|
2009 |
|
2010 |
#: admin/shortcode-builder/shortcode-builder.php:471
|
|
|
2011 |
msgid "Override the <em>Pause</em> parameter and trigger the initial loading of posts on scroll."
|
2012 |
msgstr ""
|
2013 |
|
2014 |
#: admin/shortcode-builder/shortcode-builder.php:493
|
|
|
2015 |
msgid "Scroll Container"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
#: admin/shortcode-builder/shortcode-builder.php:494
|
|
|
2019 |
msgid "Confine Ajax Load More scrolling to a parent container element."
|
2020 |
msgstr ""
|
2021 |
|
2022 |
#: admin/shortcode-builder/shortcode-builder.php:518
|
|
|
2023 |
msgid "Container Element"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
#: admin/shortcode-builder/shortcode-builder.php:519
|
|
|
2027 |
msgid "Enter the ID or classname of the parent container element to be used as the scrolling container."
|
2028 |
msgstr ""
|
2029 |
|
2030 |
#: admin/shortcode-builder/shortcode-builder.php:531
|
|
|
2031 |
msgid "Scroll Direction"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
#: admin/shortcode-builder/shortcode-builder.php:531
|
|
|
2035 |
msgid "Scroll Direction only works when using a Scroll Container."
|
2036 |
msgstr ""
|
2037 |
|
2038 |
#: admin/shortcode-builder/shortcode-builder.php:532
|
|
|
2039 |
msgid "Select the direction Ajax Load More should scroll to load posts."
|
2040 |
msgstr ""
|
2041 |
|
2042 |
#: admin/shortcode-builder/shortcode-builder.php:538
|
|
|
2043 |
msgid "Vertical"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
#: admin/shortcode-builder/shortcode-builder.php:542
|
|
|
2047 |
msgid "Horizontal"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
#: admin/shortcode-builder/shortcode-builder.php:557
|
|
|
2051 |
msgid "Transition"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
#: admin/shortcode-builder/shortcode-builder.php:562
|
|
|
2055 |
msgid "Type"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
#: admin/shortcode-builder/shortcode-builder.php:563
|
|
|
2059 |
msgid "Select a loading transition style."
|
2060 |
msgstr ""
|
2061 |
|
2062 |
#: admin/shortcode-builder/shortcode-builder.php:568
|
|
|
2063 |
msgid "Fade In"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
#: admin/shortcode-builder/shortcode-builder.php:569
|
|
|
2067 |
msgid "Masonry"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
#: admin/shortcode-builder/shortcode-builder.php:583
|
|
|
2071 |
msgid "Masonry Options"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
#: admin/shortcode-builder/shortcode-builder.php:583
|
|
|
2075 |
msgid "Ajax Load More does not support all available Masonry options"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
#: admin/shortcode-builder/shortcode-builder.php:584
|
|
|
2079 |
msgid "The following Masonry <a href=\"https://masonry.desandro.com/options.html\" target=\"_blank\">options</a> are supported by Ajax Load More."
|
2080 |
msgstr ""
|
2081 |
|
2082 |
#: admin/shortcode-builder/shortcode-builder.php:590
|
|
|
2083 |
msgid "Item Selector"
|
2084 |
msgstr ""
|
2085 |
|
2086 |
#: admin/shortcode-builder/shortcode-builder.php:590
|
|
|
2087 |
msgid "Item Selector is required for Masonry to target each element loaded with Ajax."
|
2088 |
msgstr ""
|
2089 |
|
2090 |
#: admin/shortcode-builder/shortcode-builder.php:591
|
|
|
2091 |
msgid "Enter the target classname of each masonry item."
|
2092 |
msgstr ""
|
2093 |
|
2094 |
#: admin/shortcode-builder/shortcode-builder.php:605
|
|
|
2095 |
msgid "Column Width"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
#: admin/shortcode-builder/shortcode-builder.php:605
|
|
|
2099 |
msgid "If columnWidth is not set, Masonry will use the outer width of the first Item Selector."
|
2100 |
msgstr ""
|
2101 |
|
2102 |
#: admin/shortcode-builder/shortcode-builder.php:606
|
|
|
2103 |
msgid "Enter the <a href=\"https://masonry.desandro.com/options.html#columnwidth\" target=\"_blank\">columnWidth</a> of the masonry items."
|
2104 |
msgstr ""
|
2105 |
|
2106 |
#: admin/shortcode-builder/shortcode-builder.php:619
|
|
|
2107 |
msgid "Animation Type"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
#: admin/shortcode-builder/shortcode-builder.php:619
|
|
|
2111 |
msgid "All Masonry animations include a fade-in effect as items are loaded."
|
2112 |
msgstr ""
|
2113 |
|
2114 |
#: admin/shortcode-builder/shortcode-builder.php:620
|
|
|
2115 |
msgid "Select a loading transition for Masonry items."
|
2116 |
msgstr ""
|
2117 |
|
2118 |
#: admin/shortcode-builder/shortcode-builder.php:628
|
|
|
2119 |
msgid "Default (Zoom)"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
#: admin/shortcode-builder/shortcode-builder.php:629
|
|
|
2123 |
msgid "Items scale up from 50% to 100% size on load."
|
2124 |
msgstr ""
|
2125 |
|
2126 |
#: admin/shortcode-builder/shortcode-builder.php:635
|
|
|
2127 |
msgid "Zoom Out"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
#: admin/shortcode-builder/shortcode-builder.php:636
|
|
|
2131 |
msgid "Items scale down from 125% to 100% size on load."
|
2132 |
msgstr ""
|
2133 |
|
2134 |
#: admin/shortcode-builder/shortcode-builder.php:642
|
|
|
2135 |
msgid "Slide Up"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
#: admin/shortcode-builder/shortcode-builder.php:643
|
|
|
2139 |
msgid "Items animate up as they are loaded into view."
|
2140 |
msgstr ""
|
2141 |
|
2142 |
#: admin/shortcode-builder/shortcode-builder.php:649
|
|
|
2143 |
msgid "Slide Down"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
#: admin/shortcode-builder/shortcode-builder.php:650
|
|
|
2147 |
msgid "Items animate down when loaded into view."
|
2148 |
msgstr ""
|
2149 |
|
2150 |
#: admin/shortcode-builder/shortcode-builder.php:666
|
|
|
2151 |
msgid "Horizontal Order"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
#: admin/shortcode-builder/shortcode-builder.php:667
|
|
|
2155 |
msgid "Lays out items to maintain left-to-right order."
|
2156 |
msgstr ""
|
2157 |
|
2158 |
#: admin/shortcode-builder/shortcode-builder.php:687
|
|
|
2159 |
msgid "Don't see your favorite Masonry option listed? You can always add your own!"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
#: admin/shortcode-builder/shortcode-builder.php:702
|
|
|
2163 |
msgid "Transition Container Classes"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
#: admin/shortcode-builder/shortcode-builder.php:702
|
|
|
2167 |
msgid "This setting is not available with the Single Post or Next Page add-ons"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
#: admin/shortcode-builder/shortcode-builder.php:703
|
|
|
2171 |
msgid "Add custom classes to the <span>.alm-reveal</span> loading container"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
#: admin/shortcode-builder/shortcode-builder.php:715
|
|
|
2175 |
msgid "Transition Container"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
#: admin/shortcode-builder/shortcode-builder.php:715
|
|
|
2179 |
msgid "Removing the transition container may have undesired results and is not recommended"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
#: admin/shortcode-builder/shortcode-builder.php:716
|
|
|
2183 |
msgid "Remove the <span>.alm-reveal</span> loading container from Ajax Load More"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
#: admin/shortcode-builder/shortcode-builder.php:723
|
|
|
2187 |
msgid "Remove Container"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
#: admin/shortcode-builder/shortcode-builder.php:739
|
|
|
2191 |
msgid "Progress Bar"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
#: admin/shortcode-builder/shortcode-builder.php:743
|
|
|
2195 |
msgid "Display progress bar indicator at the top of the window while loading Ajax content."
|
2196 |
msgstr ""
|
2197 |
|
2198 |
#: admin/shortcode-builder/shortcode-builder.php:768
|
|
|
2199 |
msgid "Color"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
#: admin/shortcode-builder/shortcode-builder.php:769
|
|
|
2203 |
msgid "Enter the hex color of the progress bar"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
#: admin/shortcode-builder/shortcode-builder.php:799
|
|
|
2207 |
msgid "When using Ajax Load More add-ons or extensions not all Query Parameters will be available in the query."
|
2208 |
msgstr ""
|
2209 |
|
2210 |
#: admin/shortcode-builder/shortcode-builder.php:802
|
|
|
2211 |
msgid "Query Parameters allow you build a custom <b>WP_Query</b> based on Ajax Load More shortcode values."
|
2212 |
msgstr ""
|
2213 |
|
2214 |
#: admin/shortcode-builder/shortcode-builder.php:809
|
|
|
2215 |
msgid "Posts Per Page"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
#: admin/shortcode-builder/shortcode-builder.php:813
|
|
|
2219 |
msgid "Select the number of posts to load with each Ajax request."
|
2220 |
msgstr ""
|
2221 |
|
2222 |
#: admin/shortcode-builder/shortcode-builder.php:833
|
|
|
2223 |
msgid "Post Type"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
#: admin/shortcode-builder/shortcode-builder.php:838
|
|
|
2227 |
msgid "Select the Post Types to include in this Ajax Load More query."
|
2228 |
msgstr ""
|
2229 |
|
2230 |
#: admin/shortcode-builder/shortcode-builder.php:852
|
|
|
2231 |
msgid "Any"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
#: admin/shortcode-builder/shortcode-builder.php:863
|
|
|
2235 |
msgid "Sticky Posts"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
#: admin/shortcode-builder/shortcode-builder.php:863
|
|
|
2239 |
msgid "Sticky posts are only available for Posts"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
#: admin/shortcode-builder/shortcode-builder.php:864
|
|
|
2243 |
msgid "Preserve the ordering of sticky posts by having them appear first in the Ajax listing."
|
2244 |
msgstr ""
|
2245 |
|
2246 |
#: admin/shortcode-builder/shortcode-builder.php:871
|
|
|
2247 |
msgid "Enable Sticky Posts"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
#: admin/shortcode-builder/shortcode-builder.php:894
|
|
|
2251 |
msgid "Post Format"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
#: admin/shortcode-builder/shortcode-builder.php:898
|
|
|
2255 |
msgid "Select a Post Format to query."
|
2256 |
msgstr ""
|
2257 |
|
2258 |
#: admin/shortcode-builder/shortcode-builder.php:901
|
|
|
2259 |
msgid "Select Post Format"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
#: admin/shortcode-builder/shortcode-builder.php:902
|
|
|
2263 |
msgid "Standard"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
#: admin/shortcode-builder/shortcode-builder.php:934
|
|
|
2267 |
msgid "Get posts by category using a category_name or category__and query"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
#: admin/shortcode-builder/shortcode-builder.php:935
|
|
|
2271 |
msgid "Comma separated list of categories to include by"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
#: admin/shortcode-builder/shortcode-builder.php:935
|
2275 |
#: admin/shortcode-builder/shortcode-builder.php:1028
|
|
|
|
|
2276 |
msgid "slug"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
#: admin/shortcode-builder/shortcode-builder.php:971
|
2280 |
#: admin/shortcode-builder/shortcode-builder.php:1066
|
|
|
|
|
2281 |
msgid "What's this"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
#: admin/shortcode-builder/shortcode-builder.php:983
|
|
|
2285 |
msgid "Comma separated list of categories to exclude by ID."
|
2286 |
msgstr ""
|
2287 |
|
2288 |
#: admin/shortcode-builder/shortcode-builder.php:1027
|
|
|
2289 |
msgid "Get posts by tags using a tag or tag__and query"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
#: admin/shortcode-builder/shortcode-builder.php:1028
|
|
|
2293 |
msgid "Comma separated list of tags to include by"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
#: admin/shortcode-builder/shortcode-builder.php:1078
|
|
|
2297 |
msgid "Comma separated list of tags to exclude by ID"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
#: admin/shortcode-builder/shortcode-builder.php:1118
|
|
|
2301 |
msgid "Select a taxonomy to query and then select the terms and operator."
|
2302 |
msgstr ""
|
2303 |
|
2304 |
#: admin/shortcode-builder/shortcode-builder.php:1123
|
2305 |
#: admin/shortcode-builder/shortcode-builder.php:1157
|
|
|
|
|
2306 |
msgid "Add Another"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
#: admin/shortcode-builder/shortcode-builder.php:1134
|
|
|
2310 |
msgid "Custom Fields (Meta_Query)"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
#: admin/shortcode-builder/shortcode-builder.php:1138
|
|
|
2314 |
msgid "Query for <a href=\"https://developer.wordpress.org/reference/classes/wp_query/#custom-field-post-meta-parameters\" target=\"_blank\">custom fields</a> by entering a key, value and operator."
|
2315 |
msgstr ""
|
2316 |
|
2317 |
#: admin/shortcode-builder/shortcode-builder.php:1148
|
|
|
2318 |
msgid "The logical relationship between each custom field when there is more than one"
|
2319 |
msgstr ""
|
2320 |
|
2321 |
#: admin/shortcode-builder/shortcode-builder.php:1167
|
|
|
2322 |
msgid "Date"
|
2323 |
msgstr ""
|
2324 |
|
2325 |
#: admin/shortcode-builder/shortcode-builder.php:1171
|
|
|
2326 |
msgid "Enter a year, month(number) and day to query by date archive."
|
2327 |
msgstr ""
|
2328 |
|
2329 |
#: admin/shortcode-builder/shortcode-builder.php:1178
|
|
|
2330 |
msgid "Year:"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
#: admin/shortcode-builder/shortcode-builder.php:1182
|
|
|
2334 |
msgid "Month:"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
#: admin/shortcode-builder/shortcode-builder.php:1186
|
|
|
2338 |
msgid "Day:"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
#: admin/shortcode-builder/shortcode-builder.php:1207
|
|
|
2342 |
msgid "Author"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
#: admin/shortcode-builder/shortcode-builder.php:1211
|
|
|
2346 |
msgid "Select an Author to query(by ID)."
|
2347 |
msgstr ""
|
2348 |
|
2349 |
#: admin/shortcode-builder/shortcode-builder.php:1236
|
|
|
2350 |
msgid "Search"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
#: admin/shortcode-builder/shortcode-builder.php:1240
|
|
|
2354 |
msgid "Enter a search term to query."
|
2355 |
msgstr ""
|
2356 |
|
2357 |
#: admin/shortcode-builder/shortcode-builder.php:1241
|
|
|
2358 |
msgid "Search uses the default WordPress search, however Ajax Load More does offer integrations with SearchWP and Relevanssi."
|
2359 |
msgstr ""
|
2360 |
|
2361 |
#: admin/shortcode-builder/shortcode-builder.php:1246
|
|
|
2362 |
msgid "Enter search term"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
#: admin/shortcode-builder/shortcode-builder.php:1256
|
|
|
2366 |
msgid "Post Parameters"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
#: admin/shortcode-builder/shortcode-builder.php:1261
|
|
|
2370 |
msgid "A comma separated list of post ID's to query."
|
2371 |
msgstr ""
|
2372 |
|
2373 |
#: admin/shortcode-builder/shortcode-builder.php:1265
|
|
|
2374 |
msgid "225, 340, 818, etc..."
|
2375 |
msgstr ""
|
2376 |
|
2377 |
#: admin/shortcode-builder/shortcode-builder.php:1272
|
|
|
2378 |
msgid "A comma separated list of post ID's to exclude from query."
|
2379 |
msgstr ""
|
2380 |
|
2381 |
#: admin/shortcode-builder/shortcode-builder.php:1283
|
|
|
2382 |
msgid "Post Status"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
#: admin/shortcode-builder/shortcode-builder.php:1283
|
|
|
2386 |
msgid "Post Status parameters are only available for logged in (admin) users. Non logged in users will only have access to view content in a 'publish' or 'inherit' state."
|
2387 |
msgstr ""
|
2388 |
|
2389 |
#: admin/shortcode-builder/shortcode-builder.php:1284
|
|
|
2390 |
msgid "Select status of the post."
|
2391 |
msgstr ""
|
2392 |
|
2393 |
#: admin/shortcode-builder/shortcode-builder.php:1289
|
|
|
2394 |
msgid "Published"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
#: admin/shortcode-builder/shortcode-builder.php:1307
|
|
|
2398 |
msgid "Ordering"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
#: admin/shortcode-builder/shortcode-builder.php:1311
|
|
|
2402 |
msgid "Sort posts by Order and Orderby parameters."
|
2403 |
msgstr ""
|
2404 |
|
2405 |
#: admin/shortcode-builder/shortcode-builder.php:1346
|
|
|
2406 |
msgid "Offset"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
#: admin/shortcode-builder/shortcode-builder.php:1350
|
|
|
2410 |
msgid "Offset the initial query by <em>'x'</em> number of posts"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
#: admin/shortcode-builder/shortcode-builder.php:1364
|
|
|
2414 |
msgid "Custom Arguments"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
#: admin/shortcode-builder/shortcode-builder.php:1368
|
|
|
2418 |
msgid "A semicolon separated list of custom value:pair arguments."
|
2419 |
msgstr ""
|
2420 |
|
2421 |
#: admin/shortcode-builder/shortcode-builder.php:1368
|
|
|
2422 |
msgid "Custom Arguments can be used to query by parameters not available in the Shortcode Builder"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
#: admin/shortcode-builder/shortcode-builder.php:1372
|
|
|
2426 |
msgid "event_display:upcoming"
|
2427 |
msgstr ""
|
2428 |
|
2429 |
#: admin/shortcode-builder/shortcode-builder.php:1392
|
|
|
2430 |
msgid "Ajax Load More provides integrations for popular plugins and core WP functionality - when selecting an integration, Ajax Load More will automatically set various parameters on the server side to provide the best experience for users based on the selected integration."
|
2431 |
msgstr ""
|
2432 |
|
2433 |
#: admin/shortcode-builder/shortcode-builder.php:1399
|
|
|
2434 |
msgid "Archives"
|
2435 |
msgstr ""
|
2436 |
|
2437 |
#: admin/shortcode-builder/shortcode-builder.php:1403
|
|
|
2438 |
msgid "Ajax Load More will automatically create an archive query while viewing site archives."
|
2439 |
msgstr ""
|
2440 |
|
2441 |
#: admin/shortcode-builder/shortcode-builder.php:1404
|
|
|
2442 |
msgid "Taxonomy, category, tag, date (year, month, day), post type and author archives are currently supported."
|
2443 |
msgstr ""
|
2444 |
|
2445 |
#: admin/shortcode-builder/shortcode-builder.php:1422
|
|
|
2446 |
msgid "<b>Note</b>: Do not select Query Parameters other than <b>Posts Per Page</b> and/or <b>Post Type</b> when using the Archives integration. Ajax Load More will automatically create the perfect shortcode for you based on the current archive page."
|
2447 |
msgstr ""
|
2448 |
|
2449 |
#: admin/views/add-ons.php:7
|
|
|
2450 |
msgid "Add-ons are available to extend and enhance the core functionality of Ajax Load More"
|
2451 |
msgstr ""
|
2452 |
|
2453 |
#: admin/views/add-ons.php:40
|
|
|
2454 |
msgid "Installed"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
#: admin/views/add-ons.php:42
|
|
|
2458 |
msgid "Purchase"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
#: admin/views/add-ons.php:51
|
|
|
2462 |
msgid "All add-ons are installed as stand alone plugins and with a valid license key will receive plugin update notifications directly within the <a href=\"plugins.php\">WordPress plugin dashboard</a>."
|
2463 |
msgstr ""
|
2464 |
|
2465 |
#: admin/views/extensions.php:6
|
|
|
2466 |
msgid "Free extensions that provide compatibility with popular plugins and core WordPress functionality"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
#: admin/views/extensions.php:37
|
|
|
2470 |
msgid "Extensions are installed as stand alone plugins and receive update notifications in the <a href=\"plugins.php\">plugin dashboard</a>."
|
2471 |
msgstr ""
|
2472 |
|
2473 |
#: admin/views/go-pro.php:6
|
|
|
2474 |
msgid "All current and future add-ons in a single installation."
|
2475 |
msgstr ""
|
2476 |
|
2477 |
#: admin/views/go-pro.php:19
|
|
|
2478 |
msgid "The following products are included when you purchase Ajax Load More Pro:"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
#: admin/views/go-pro.php:53
|
|
|
2482 |
msgid "About the Pro Bundle"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
#: admin/views/go-pro.php:55
|
|
|
2486 |
msgid "The Ajax Load More Pro bundle is installed as a single add-on with one license and contains every add-on currently available."
|
2487 |
msgstr ""
|
2488 |
|
2489 |
#: admin/views/go-pro.php:56
|
|
|
2490 |
msgid "Once installed, add-ons are able to be activated and deactivated with ease from the Pro dashboard inside your WordPress admin."
|
2491 |
msgstr ""
|
2492 |
|
2493 |
#: admin/views/go-pro.php:57
|
|
|
2494 |
msgid "Please note:"
|
2495 |
msgstr ""
|
2496 |
|
2497 |
#: admin/views/go-pro.php:57
|
|
|
2498 |
msgid "The core Ajax Load More plugin is <u>still</u> required when using the Pro add-on."
|
2499 |
msgstr ""
|
2500 |
|
2501 |
#: admin/views/go-pro.php:60
|
|
|
2502 |
msgid "Get More Information"
|
2503 |
msgstr ""
|
2504 |
|
2505 |
#: admin/views/help.php:4
|
|
|
2506 |
msgid "Get started with our four step guide to painless implementation!"
|
2507 |
msgstr ""
|
2508 |
|
2509 |
#: admin/views/help.php:9
|
|
|
2510 |
msgid "A collection of everyday shortcode usages and implementation examples"
|
2511 |
msgstr ""
|
2512 |
|
2513 |
#: admin/views/help.php:36
|
|
|
2514 |
msgid "Examples"
|
2515 |
msgstr ""
|
2516 |
|
2517 |
#: admin/views/help.php:69
|
|
|
2518 |
msgid "Example Library"
|
2519 |
msgstr ""
|
2520 |
|
2521 |
#: admin/views/help.php:71
|
|
|
2522 |
msgid "View the collection of over 30 real world Ajax Load More <a href=\"https://connekthq.com/plugins/ajax-load-more/examples/\" target=\"_blank\">examples</a> available on the plugin website"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
#: admin/views/help.php:74
|
|
|
2526 |
msgid "View All Examples"
|
2527 |
msgstr ""
|
2528 |
|
2529 |
#: admin/views/licenses.php:2
|
|
|
2530 |
msgid "Pro License"
|
2531 |
msgstr ""
|
2532 |
|
2533 |
#: admin/views/licenses.php:3
|
|
|
2534 |
msgid "Enter your Pro license key to enable updates from the plugins dashboard"
|
2535 |
msgstr ""
|
2536 |
|
2537 |
#: admin/views/licenses.php:3
|
|
|
2538 |
msgid "Enter your license keys below to enable <a href=\"admin.php?page=ajax-load-more-add-ons\">add-on</a> updates from the plugins dashboard"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
#: admin/views/licenses.php:19
|
|
|
2542 |
msgid "License Key"
|
2543 |
msgstr ""
|
2544 |
|
2545 |
#: admin/views/licenses.php:21
|
|
|
2546 |
msgid "License Keys"
|
2547 |
msgstr ""
|
2548 |
|
2549 |
#: admin/views/licenses.php:28
|
|
|
2550 |
msgid "Enter your Ajax Load More Pro license key to receive plugin update notifications directly within the <a href=\"plugins.php\">WP Plugins dashboard</a>."
|
2551 |
msgstr ""
|
2552 |
|
2553 |
#: admin/views/licenses.php:30
|
|
|
2554 |
msgid "Enter a key for each of your Ajax Load More add-ons to receive plugin update notifications directly within the <a href=\"plugins.php\">WP Plugins dashboard</a>."
|
2555 |
msgstr ""
|
2556 |
|
2557 |
#: admin/views/licenses.php:76
|
|
|
2558 |
msgid "Don't have a license?"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
#: admin/views/licenses.php:77
|
|
|
2562 |
msgid "A valid license is required to activate and receive plugin updates directly in your WordPress dashboard"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
#: admin/views/licenses.php:77
|
|
|
2566 |
msgid "Purchase Now"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
#: admin/views/licenses.php:83
|
2570 |
#: admin/views/licenses.php:85
|
|
|
|
|
2571 |
msgid "Enter License Key"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
#: admin/views/licenses.php:89
|
|
|
2575 |
msgid "Expired"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
#: admin/views/licenses.php:110
|
|
|
2579 |
msgid "Activate License"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
#: admin/views/licenses.php:114
|
|
|
2583 |
msgid "Deactivate License"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
#: admin/views/licenses.php:118
|
|
|
2587 |
msgid "Refresh Status"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
#: admin/views/licenses.php:129
|
|
|
2591 |
msgid "Renew License"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
#: admin/views/licenses.php:145
|
|
|
2595 |
msgid "You do not have any Ajax Load More add-ons installed"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
#: admin/views/licenses.php:145
|
|
|
2599 |
msgid "Browse Add-ons"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
#: admin/views/licenses.php:154
|
|
|
2603 |
msgid "About Licenses"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
#: admin/views/licenses.php:157
|
|
|
2607 |
msgid "License keys are found in the purchase receipt email that was sent immediately after purchase and in the <a target=\"_blank\" href=\"https://connekthq.com/account/\">Account</a> section on our website"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
#: admin/views/licenses.php:158
|
|
|
2611 |
msgid "If you cannot locate your key please open a support ticket by filling out the <a href=\"https://connekthq.com/contact/\">support form</a> and reference the email address used when you completed the purchase."
|
2612 |
msgstr ""
|
2613 |
|
2614 |
#: admin/views/licenses.php:159
|
|
|
2615 |
msgid "Are you having issues updating an add-on?"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
#: admin/views/licenses.php:159
|
|
|
2619 |
msgid "Please try deactivating and then re-activating each license. Once you've done that, try running the update again."
|
2620 |
msgstr ""
|
2621 |
|
2622 |
#: admin/views/licenses.php:164
|
|
|
2623 |
msgid "Your Account"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
#: admin/views/repeater-templates.php:15
|
|
|
2627 |
msgid "The library of editable templates for use within your theme"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
#: admin/views/repeater-templates.php:32
|
|
|
2631 |
msgid "Theme Repeaters"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
#: admin/views/repeater-templates.php:105
|
2635 |
#: admin/views/repeater-templates.php:272
|
|
|
|
|
2636 |
msgid "Location"
|
2637 |
msgstr ""
|
2638 |
|
2639 |
#: admin/views/repeater-templates.php:146
|
|
|
2640 |
msgid "Theme Repeaters Not Found!"
|
2641 |
msgstr ""
|
2642 |
|
2643 |
#: admin/views/repeater-templates.php:148
|
|
|
2644 |
msgid "You'll need to create and upload templates to your theme directory before you can access them with Ajax Load More"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
#: admin/views/repeater-templates.php:152
|
|
|
2648 |
msgid "Manage Settings"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
#: admin/views/repeater-templates.php:211
|
|
|
2652 |
msgid "Default Template"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
#: admin/views/repeater-templates.php:220
|
|
|
2656 |
msgid "Template Code:"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
#: admin/views/repeater-templates.php:221
|
|
|
2660 |
msgid "Enter the PHP and HTML markup for this template."
|
2661 |
msgstr ""
|
2662 |
|
2663 |
#: admin/views/repeater-templates.php:254
|
|
|
2664 |
msgid "Save Template"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
#: admin/views/repeater-templates.php:270
|
|
|
2668 |
msgid "It appears you are loading the <a href=\"https://connekthq.com/plugins/ajax-load-more/docs/repeater-templates/#default-template\" target=\"_blank\"><b>default template</b></a> (<em>default.php</em>) from your current theme directory. To modify this template, you must edit the file directly on your server."
|
2669 |
msgstr ""
|
2670 |
|
2671 |
#: admin/views/repeater-templates.php:281
|
|
|
2672 |
msgid "Repeater Templates editing has been disabled for this instance of Ajax Load More. To enable the template editing, please remove the <strong>ALM_DISABLE_REPEATER_TEMPLATES</strong> PHP constant in your wp-config.php and then re-activate this plugin."
|
2673 |
msgstr ""
|
2674 |
|
2675 |
#: admin/views/repeater-templates.php:356
|
|
|
2676 |
msgid "Saving template..."
|
2677 |
msgstr ""
|
2678 |
|
2679 |
#: admin/views/repeater-templates.php:427
|
|
|
2680 |
msgid "Updating template..."
|
2681 |
msgstr ""
|
2682 |
|
2683 |
#: admin/views/repeater-templates.php:497
|
|
|
2684 |
msgid "What's a Repeater Template?"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
#: admin/views/repeater-templates.php:499
|
|
|
2688 |
msgid "A <a href=\"https://connekthq.com/plugins/ajax-load-more/docs/repeater-templates/\" target=\"_blank\">Repeater Template</a> is a snippet of code that will execute over and over within a <a href=\"http://codex.wordpress.org/The_Loop\" target=\"_blank\">WordPress loop</a>"
|
2689 |
msgstr ""
|
2690 |
|
2691 |
#: admin/views/settings.php:13
|
|
|
2692 |
msgid "A powerful plugin to add infinite scroll functionality to your website."
|
2693 |
msgstr ""
|
2694 |
|
2695 |
#: admin/views/settings.php:91
|
2696 |
#: admin/views/shortcode-builder.php:21
|
|
|
|
|
2697 |
msgid "Back to Top"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
#: admin/views/shortcode-builder.php:10
|
|
|
2701 |
msgid "Create your own Ajax Load More <a href=\"http://en.support.wordpress.com/shortcodes/\" target=\"_blank\">shortcode</a> by adjusting the values below"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
#: admin/views/shortcode-builder.php:28
|
|
|
2705 |
msgid "Shortcode Output"
|
2706 |
msgstr ""
|
2707 |
|
2708 |
#: admin/views/shortcode-builder.php:30
|
|
|
2709 |
msgid "Place the following shortcode into the content editor or widget area of your theme."
|
2710 |
msgstr ""
|
2711 |
|
2712 |
#: admin/views/shortcode-builder.php:36
|
|
|
2713 |
msgid "Copied!"
|
2714 |
msgstr ""
|
2715 |
|
2716 |
#: admin/views/shortcode-builder.php:36
|
|
|
2717 |
msgid "Copy Shortcode"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
#: admin/views/shortcode-builder.php:37
|
|
|
2721 |
msgid "Reset"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
+
#: ajax-load-more.php:280
|
|
|
2725 |
msgid "Error creating repeater template directory"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
+
#: ajax-load-more.php:401
|
|
|
2729 |
msgid "Viewing {post_count} of {total_posts} results."
|
2730 |
msgstr ""
|
2731 |
|
2732 |
+
#: ajax-load-more.php:402
|
|
|
2733 |
msgid "No results found."
|
2734 |
msgstr ""
|
2735 |
|
2736 |
#: core/classes/class-alm-noscript.php:153
|
|
|
2737 |
msgid "Pages: "
|
2738 |
msgstr ""
|
2739 |
|
2740 |
#: core/functions/addons.php:22
|
|
|
2741 |
msgid " Ajax Load More Pro"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
#: core/functions/addons.php:23
|
|
|
2745 |
msgid " Get instant access to all premium add-ons in a single installation."
|
2746 |
msgstr ""
|
2747 |
|
2748 |
#: core/functions/addons.php:24
|
|
|
2749 |
msgid " The Pro bundle is installed as a single product with one license key and contains immediate access all premium add-ons."
|
2750 |
msgstr ""
|
2751 |
|
2752 |
#: core/functions/addons.php:52
|
|
|
2753 |
msgid " Cache"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
#: core/functions/addons.php:53
|
|
|
2757 |
msgid " Improve performance with the Ajax Load More caching engine."
|
2758 |
msgstr ""
|
2759 |
|
2760 |
#: core/functions/addons.php:54
|
|
|
2761 |
msgid " The Cache add-on creates static HTML files of Ajax Load More requests then delivers those static files to your visitors."
|
2762 |
msgstr ""
|
2763 |
|
2764 |
#: core/functions/addons.php:67
|
|
|
2765 |
msgid " Call to Actions"
|
2766 |
msgstr ""
|
2767 |
|
2768 |
#: core/functions/addons.php:68
|
|
|
2769 |
msgid " Ajax Load More extension for displaying advertisements and call to actions."
|
2770 |
msgstr ""
|
2771 |
|
2772 |
#: core/functions/addons.php:69
|
|
|
2773 |
msgid " The Call to Actions add-on provides the ability to inject a custom CTA template within each Ajax Load More loop."
|
2774 |
msgstr ""
|
2775 |
|
2776 |
#: core/functions/addons.php:82
|
|
|
2777 |
msgid " Comments"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
#: core/functions/addons.php:83
|
|
|
2781 |
msgid " Load blog comments on demand with Ajax Load More."
|
2782 |
msgstr ""
|
2783 |
|
2784 |
#: core/functions/addons.php:84
|
|
|
2785 |
msgid " The Comments add-on will display your blog comments with Ajax Load More's infinite scroll functionality."
|
2786 |
msgstr ""
|
2787 |
|
2788 |
#: core/functions/addons.php:97
|
|
|
2789 |
msgid " Custom Repeaters"
|
2790 |
msgstr ""
|
2791 |
|
2792 |
#: core/functions/addons.php:98
|
|
|
2793 |
msgid " Extend Ajax Load More with unlimited repeater templates."
|
2794 |
msgstr ""
|
2795 |
|
2796 |
#: core/functions/addons.php:99
|
|
|
2797 |
msgid " Create, delete and modify repeater templates as you need them with absolutely zero restrictions."
|
2798 |
msgstr ""
|
2799 |
|
2800 |
#: core/functions/addons.php:112
|
|
|
2801 |
msgid " Elementor"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
#: core/functions/addons.php:113
|
|
|
2805 |
msgid " Infinite scroll Elementor widget content with Ajax Load More."
|
2806 |
msgstr ""
|
2807 |
|
2808 |
#: core/functions/addons.php:114
|
|
|
2809 |
msgid " The Elementor add-on provides functionality required for integrating with the Elementor Posts and WooCommerce Products widget."
|
2810 |
msgstr ""
|
2811 |
|
2812 |
#: core/functions/addons.php:127
|
|
|
2813 |
msgid " Filters"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
#: core/functions/addons.php:128
|
|
|
2817 |
msgid " Create custom Ajax Load More filters in seconds."
|
2818 |
msgstr ""
|
2819 |
|
2820 |
#: core/functions/addons.php:129
|
|
|
2821 |
msgid " The Filters add-on provides front-end and admin functionality for building and managing Ajax filters."
|
2822 |
msgstr ""
|
2823 |
|
2824 |
#: core/functions/addons.php:142
|
|
|
2825 |
msgid " Layouts"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
#: core/functions/addons.php:143
|
|
|
2829 |
msgid " Predefined layouts for repeater templates."
|
2830 |
msgstr ""
|
2831 |
|
2832 |
#: core/functions/addons.php:144
|
|
|
2833 |
msgid " The Layouts add-on provides a collection of unique, well designed and fully responsive templates."
|
2834 |
msgstr ""
|
2835 |
|
2836 |
#: core/functions/addons.php:157
|
|
|
2837 |
msgid " Next Page"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
#: core/functions/addons.php:158
|
|
|
2841 |
msgid " Load and display multipage WordPress content."
|
2842 |
msgstr ""
|
2843 |
|
2844 |
#: core/functions/addons.php:159
|
|
|
2845 |
msgid " The Next Page add-on provides functionality for infinite scrolling paginated posts and pages."
|
2846 |
msgstr ""
|
2847 |
|
2848 |
#: core/functions/addons.php:172
|
|
|
2849 |
msgid " Paging"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
#: core/functions/addons.php:173
|
|
|
2853 |
msgid " Extend Ajax Load More with a numbered navigation."
|
2854 |
msgstr ""
|
2855 |
|
2856 |
#: core/functions/addons.php:174
|
|
|
2857 |
msgid " The Paging add-on will transform the default infinite scroll functionality into a robust ajax powered navigation system."
|
2858 |
msgstr ""
|
2859 |
|
2860 |
#: core/functions/addons.php:187
|
|
|
2861 |
msgid " Preloaded"
|
2862 |
msgstr ""
|
2863 |
|
2864 |
#: core/functions/addons.php:188
|
|
|
2865 |
msgid " Load an initial set of posts before making Ajax requests to the server."
|
2866 |
msgstr ""
|
2867 |
|
2868 |
#: core/functions/addons.php:189
|
|
|
2869 |
msgid " The Preloaded add-on will display content quicker and allow caching of the initial query which can reduce stress on your server."
|
2870 |
msgstr ""
|
2871 |
|
2872 |
#: core/functions/addons.php:202
|
|
|
2873 |
msgid " Search Engine Optimization"
|
2874 |
msgstr ""
|
2875 |
|
2876 |
#: core/functions/addons.php:203
|
|
|
2877 |
msgid " Generate unique paging URLs with every Ajax Load More query."
|
2878 |
msgstr ""
|
2879 |
|
2880 |
#: core/functions/addons.php:204
|
|
|
2881 |
msgid " The SEO add-on will optimize your ajax loaded content for search engines by generating unique URLs with every query."
|
2882 |
msgstr ""
|
2883 |
|
2884 |
#: core/functions/addons.php:217
|
|
|
2885 |
msgid " Single Posts"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
#: core/functions/addons.php:218
|
|
|
2889 |
msgid " An add-on to enable infinite scrolling of single posts."
|
2890 |
msgstr ""
|
2891 |
|
2892 |
#: core/functions/addons.php:219
|
|
|
2893 |
msgid " The Single Posts add-on will load full posts as you scroll and update the browser URL to the current post."
|
2894 |
msgstr ""
|
2895 |
|
2896 |
#: core/functions/addons.php:232
|
|
|
2897 |
msgid " Theme Repeaters"
|
2898 |
msgstr ""
|
2899 |
|
2900 |
#: core/functions/addons.php:233
|
|
|
2901 |
msgid " Manage Repeater Templates within your current theme directory."
|
2902 |
msgstr ""
|
2903 |
|
2904 |
#: core/functions/addons.php:234
|
|
|
2905 |
msgid " The Theme Repeater add-on will allow you load, edit and maintain templates from your current theme directory."
|
2906 |
msgstr ""
|
2907 |
|
2908 |
#: core/functions/addons.php:247
|
|
|
2909 |
msgid " Users"
|
2910 |
msgstr ""
|
2911 |
|
2912 |
#: core/functions/addons.php:248
|
|
|
2913 |
msgid " Enable infinite scrolling of WordPress users."
|
2914 |
msgstr ""
|
2915 |
|
2916 |
#: core/functions/addons.php:249
|
|
|
2917 |
msgid " The Users add-on will allow lazy loading of users by role using a WP_User_Query."
|
2918 |
msgstr ""
|
2919 |
|
2920 |
#: core/functions/addons.php:262
|
|
|
2921 |
msgid " WooCommerce"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
#: core/functions/addons.php:263
|
|
|
2925 |
msgid " Infinite scroll WooCommerce products with Ajax Load More."
|
2926 |
msgstr ""
|
2927 |
|
2928 |
#: core/functions/addons.php:264
|
|
|
2929 |
msgid " The WooCommerce add-on automatically integrates infinite scrolling into your existing shop templates."
|
2930 |
msgstr ""
|
2931 |
|
2932 |
#: core/integration/elementor/module/widget.php:40
|
|
|
2933 |
msgid "ALM Shortcode"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
#: core/integration/elementor/module/widget.php:87
|
|
|
2937 |
msgid "Shortcode"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
#: core/integration/elementor/module/widget.php:94
|
2941 |
#: core/integration/elementor/module/widget.php:119
|
2942 |
#: core/integration/elementor/module/widget.php:140
|
|
|
|
|
|
|
2943 |
msgid "Ajax Load More Shortcode"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
#: core/integration/elementor/module/widget.php:96
|
|
|
2947 |
msgid "[ajax_load_more]"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
#: core/integration/elementor/module/widget.php:97
|
|
|
2951 |
msgid "The shortcode will not render while Elementor is in live edit mode, you must preview the page to view Ajax Load More functionality."
|
2952 |
msgstr ""
|
2953 |
|
2954 |
#: core/integration/elementor/module/widget.php:97
|
|
|
2955 |
msgid "%sBuild Shortcode%s"
|
2956 |
msgstr ""
|