diff --git a/README.txt b/README.txt
index 2f846d3..b81bb26 100755
--- a/README.txt
+++ b/README.txt
@@ -5,7 +5,7 @@ Tags: infinite scroll, load more, ajax, lazy load, endless scroll, infinite scro
Requires at least: 4.4
Requires PHP: 5.6
Tested up to: 6.1
-Stable tag: 5.6.0
+Stable tag: 5.6.0.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -263,6 +263,12 @@ How to install Ajax Load More.
== Changelog ==
+= 5.6.0.1 - February 16, 2023 =
+* FIX: Added security fix for missing escaping on various shortcode params.
+* FIX: Added fix for new alm object parameter.
+* UPDATE: HTML data-attribute clean up on rendered shortcode parameters.
+
+
= 5.6.0 - February 14, 2023 =
* NEW: Added new ajaxloadmore.click() public JS function to manually trigger an Ajax Load More load action from any element on the screen.
* NEW: Added support for new Filter facets in Filters add-on version 2.0.
diff --git a/ajax-load-more.php b/ajax-load-more.php
index 45d69af..167b823 100755
--- a/ajax-load-more.php
+++ b/ajax-load-more.php
@@ -7,15 +7,15 @@
* Author: Darren Cooney
* Twitter: @KaptonKaos
* Author URI: https://connekthq.com
- * Version: 5.6.0
+ * Version: 5.6.0.1
* License: GPL
* Copyright: Darren Cooney & Connekt Media
*
* @package AjaxLoadMore
*/
-define( 'ALM_VERSION', '5.6.0' );
-define( 'ALM_RELEASE', 'February 14, 2023' );
+define( 'ALM_VERSION', '5.6.0.1' );
+define( 'ALM_RELEASE', 'February 16, 2023' );
define( 'ALM_STORE_URL', 'https://connekthq.com' );
// Plugin installation helpers.
diff --git a/core/classes/class-alm-noscript.php b/core/classes/class-alm-noscript.php
index da32127..6257a50 100755
--- a/core/classes/class-alm-noscript.php
+++ b/core/classes/class-alm-noscript.php
@@ -172,7 +172,7 @@ public static function build_noscript_paging( $query = [], $filters = false, $pe
* @return HTMLElement
*/
public static function render( $output, $container, $paging, $css_classes, $transition_container_classes ) {
- return ( ! empty( $output ) ) ? '<' . self::$element . '><' . $container . ' class="alm-listing alm-noscript' . $css_classes . '">
' . $output . '
' . $container . '>' . $paging . '' . self::$element . '>' : '';
+ return ( ! empty( $output ) ) ? '<' . esc_attr( self::$element ) . '><' . esc_attr( $container ) . ' class="alm-listing alm-noscript' . esc_attr( $css_classes ) . '">' . $output . '
' . esc_attr( $container ) . '>' . $paging . '' . esc_attr( self::$element ) . '>' : '';
}
/**
diff --git a/core/classes/class-alm-shortcode.php b/core/classes/class-alm-shortcode.php
index 9f62f90..9bc3efd 100755
--- a/core/classes/class-alm-shortcode.php
+++ b/core/classes/class-alm-shortcode.php
@@ -197,7 +197,7 @@ public static function alm_render_shortcode( $atts ) {
'scroll_container' => '',
'scroll_direction' => '',
'max_pages' => '0',
- 'pause_override' => 'false',
+ 'pause_override' => '',
'pause' => 'false',
'destroy_after' => '',
'transition' => 'fade',
@@ -533,9 +533,8 @@ public static function alm_render_shortcode( $atts ) {
// Master ID - Manual or generated ALM ID.
$master_id = empty( $id ) ? $div_id : $id;
- // Unique ALM ID and object variable.
- $unique_id = ! empty( $id ) ? 'data-id="' . $id . '"' : '';
- $alm_object_var = ! empty( $id ) ? 'data-alm-object="ajax_load_more_' . $id . '"' : '';
+ // Unique ALM ID.
+ $unique_id = ! empty( $id ) ? 'data-id="' . $id . '"' : '';
// Search atts - Used with SEO.
$is_search = is_search() ? 'data-search="true"' : '';
@@ -562,7 +561,7 @@ public static function alm_render_shortcode( $atts ) {
}
// Start $ajaxloadmore element.
- $ajaxloadmore .= '';
+ $ajaxloadmore .= '
';
// Masonry Hook (Before).
$ajaxloadmore .= apply_filters( 'alm_masonry_before', $transition );
@@ -584,7 +583,7 @@ public static function alm_render_shortcode( $atts ) {
/**
* WooCommerce hook to filter columns, per_page, classes etc
*
- * @return $config;
+ * @return array
*/
$woo_config = apply_filters( 'alm_woo_config', $woo_config );
@@ -636,9 +635,9 @@ public static function alm_render_shortcode( $atts ) {
if ( ! empty( $custom_options ) ) {
foreach ( $custom_options as $option ) {
if ( isset( $option['name'] ) && $option['name'] === $woo_orderby_value ) {
- $meta_key = ( isset( $option['meta_key'] ) ) ? wc_clean( $option['meta_key'] ) : $meta_key;
- $orderby = ( isset( $option['orderby'] ) ) ? wc_clean( $option['orderby'] ) : $orderby;
- $order = ( isset( $option['order'] ) ) ? wc_clean( $option['order'] ) : $order;
+ $meta_key = isset( $option['meta_key'] ) ? wc_clean( $option['meta_key'] ) : $meta_key;
+ $orderby = isset( $option['orderby'] ) ? wc_clean( $option['orderby'] ) : $orderby;
+ $order = isset( $option['order'] ) ? wc_clean( $option['order'] ) : $order;
}
}
}
@@ -844,7 +843,7 @@ public static function alm_render_shortcode( $atts ) {
$post_id,
$acf_parent_field_name
);
- $ajaxloadmore .= $acf_return;
+ $ajaxloadmore .= wp_kses_post( $acf_return );
}
// Cache Add-on.
@@ -967,7 +966,6 @@ public static function alm_render_shortcode( $atts ) {
// Preloaded Add-on.
if ( has_action( 'alm_preload_installed' ) && $preloaded === 'true' ) {
-
$preloaded = $seo === 'true' && (int) $query_args['paged'] < 1 && $paging !== 'true' ? 'true' : esc_attr( $preloaded ); // SEO page 1.
// SEO > page 1.
@@ -1126,97 +1124,93 @@ public static function alm_render_shortcode( $atts ) {
$ajaxloadmore .= $sticky_posts === 'true' ? ' data-sticky-posts="' . esc_attr( $sticky_posts ) . '"' : '';
// Post Format.
- $ajaxloadmore .= ! empty( $post_format ) ? ' data-post-format="' . esc_attr( $post_format ) . '"' : '';
+ $ajaxloadmore .= $post_format ? ' data-post-format="' . esc_attr( $post_format ) . '"' : '';
// Category.
- $ajaxloadmore .= ! empty( $category ) ? ' data-category="' . esc_attr( $category ) . '"' : '';
- $ajaxloadmore .= ! empty( $category__and ) ? ' data-category-and="' . esc_attr( $category__and ) . '"' : '';
- $ajaxloadmore .= ! empty( $category__not_in ) ? ' data-category-not-in="' . esc_attr( $category__not_in ) . '"' : '';
+ $ajaxloadmore .= $category ? ' data-category="' . esc_attr( $category ) . '"' : '';
+ $ajaxloadmore .= $category__and ? ' data-category-and="' . esc_attr( $category__and ) . '"' : '';
+ $ajaxloadmore .= $category__not_in ? ' data-category-not-in="' . esc_attr( $category__not_in ) . '"' : '';
// Tag.
- $ajaxloadmore .= ! empty( $tag ) ? ' data-tag="' . esc_attr( $tag ) . '"' : '';
- $ajaxloadmore .= ! empty( $tag__and ) ? ' data-tag-and="' . esc_attr( $tag__and ) . '"' : '';
- $ajaxloadmore .= ! empty( $tag__not_in ) ? ' data-tag-not-in="' . esc_attr( $tag__not_in ) . '"' : '';
+ $ajaxloadmore .= $tag ? ' data-tag="' . esc_attr( $tag ) . '"' : '';
+ $ajaxloadmore .= $tag__and ? ' data-tag-and="' . esc_attr( $tag__and ) . '"' : '';
+ $ajaxloadmore .= $tag__not_in ? ' data-tag-not-in="' . esc_attr( $tag__not_in ) . '"' : '';
// Taxonomy.
- $ajaxloadmore .= ! empty( $taxonomy ) ? ' data-taxonomy="' . esc_attr( $taxonomy ) . '"' : '';
- $ajaxloadmore .= ! empty( $taxonomy_terms ) ? ' data-taxonomy-terms="' . esc_attr( $taxonomy_terms ) . '"' : '';
- $ajaxloadmore .= ! empty( $taxonomy_operator ) ? ' data-taxonomy-operator="' . esc_attr( $taxonomy_operator ) . '"' : '';
- $ajaxloadmore .= ! empty( $taxonomy_include_children ) ? ' data-taxonomy-include-children="' . esc_attr( $taxonomy_include_children ) . '"' : '';
- $ajaxloadmore .= ! empty( $taxonomy_relation ) ? ' data-taxonomy-relation="' . esc_attr( $taxonomy_relation ) . '"' : '';
+ $ajaxloadmore .= $taxonomy ? ' data-taxonomy="' . esc_attr( $taxonomy ) . '"' : '';
+ $ajaxloadmore .= $taxonomy_terms ? ' data-taxonomy-terms="' . esc_attr( $taxonomy_terms ) . '"' : '';
+ $ajaxloadmore .= $taxonomy_operator ? ' data-taxonomy-operator="' . esc_attr( $taxonomy_operator ) . '"' : '';
+ $ajaxloadmore .= $taxonomy_include_children ? ' data-taxonomy-include-children="' . esc_attr( $taxonomy_include_children ) . '"' : '';
+ $ajaxloadmore .= $taxonomy_relation ? ' data-taxonomy-relation="' . esc_attr( $taxonomy_relation ) . '"' : '';
// Meta Query.
- $ajaxloadmore .= ! empty( $meta_key ) ? ' data-meta-key="' . esc_attr( $meta_key ) . '"' : '';
- $ajaxloadmore .= ! empty( $meta_value || $meta_value === '0' ) ? ' data-meta-value="' . esc_attr( $meta_value ) . '"' : '';
- $ajaxloadmore .= ! empty( $meta_compare ) ? ' data-meta-compare="' . esc_attr( $meta_compare ) . '"' : '';
- $ajaxloadmore .= ! empty( $meta_relation ) ? ' data-meta-relation="' . esc_attr( $meta_relation ) . '"' : '';
- $ajaxloadmore .= ! empty( $meta_type ) ? ' data-meta-type="' . esc_attr( $meta_type ) . '"' : '';
+ $ajaxloadmore .= $meta_key ? ' data-meta-key="' . esc_attr( $meta_key ) . '"' : '';
+ $ajaxloadmore .= $meta_value || $meta_value === '0' ? ' data-meta-value="' . esc_attr( $meta_value ) . '"' : '';
+ $ajaxloadmore .= $meta_compare ? ' data-meta-compare="' . esc_attr( $meta_compare ) . '"' : '';
+ $ajaxloadmore .= $meta_relation ? ' data-meta-relation="' . esc_attr( $meta_relation ) . '"' : '';
+ $ajaxloadmore .= $meta_type ? ' data-meta-type="' . esc_attr( $meta_type ) . '"' : '';
// Dates.
- $ajaxloadmore .= ! empty( $year ) ? ' data-year="' . esc_attr( $year ) . '"' : '';
- $ajaxloadmore .= ! empty( $month ) ? ' data-month="' . esc_attr( $month ) . '"' : '';
- $ajaxloadmore .= ! empty( $day ) ? ' data-day="' . esc_attr( $day ) . '"' : '';
+ $ajaxloadmore .= $year ? ' data-year="' . esc_attr( $year ) . '"' : '';
+ $ajaxloadmore .= $month ? ' data-month="' . esc_attr( $month ) . '"' : '';
+ $ajaxloadmore .= $day ? ' data-day="' . esc_attr( $day ) . '"' : '';
// Author.
- $ajaxloadmore .= ! empty( $author ) ? ' data-author="' . esc_attr( $author ) . '"' : '';
+ $ajaxloadmore .= $author ? ' data-author="' . esc_attr( $author ) . '"' : '';
// Post Parameters.
- $ajaxloadmore .= ! empty( $post__in ) ? ' data-post-in="' . esc_attr( $post__in ) . '"' : '';
- $ajaxloadmore .= ! empty( $post__not_in ) ? ' data-post-not-in="' . esc_attr( $post__not_in ) . '"' : '';
- $ajaxloadmore .= ! empty( $exclude ) ? ' data-exclude="' . esc_attr( $exclude ) . '"' : '';
+ $ajaxloadmore .= $post__in ? ' data-post-in="' . esc_attr( $post__in ) . '"' : '';
+ $ajaxloadmore .= $post__not_in ? ' data-post-not-in="' . esc_attr( $post__not_in ) . '"' : '';
+ $ajaxloadmore .= $exclude ? ' data-exclude="' . esc_attr( $exclude ) . '"' : '';
// Search.
- $ajaxloadmore .= ! empty( $search ) ? ' data-search="' . esc_attr( $search ) . '"' : '';
+ $ajaxloadmore .= $search ? ' data-search="' . esc_attr( $search ) . '"' : '';
// Custom Args.
- $ajaxloadmore .= ! empty( $custom_args ) ? ' data-custom-args="' . esc_attr( $custom_args ) . '"' : '';
+ $ajaxloadmore .= $custom_args ? ' data-custom-args="' . esc_attr( $custom_args ) . '"' : '';
// Vars.
- $ajaxloadmore .= ! empty( $vars ) ? ' data-vars="' . esc_attr( $vars ) . '"' : '';
+ $ajaxloadmore .= $vars ? ' data-vars="' . esc_attr( $vars ) . '"' : '';
// Status.
- $ajaxloadmore .= ! empty( $post_status ) ? ' data-post-status="' . esc_attr( $post_status ) . '"' : '';
+ $ajaxloadmore .= $post_status ? ' data-post-status="' . esc_attr( $post_status ) . '"' : '';
// Order.
- $ajaxloadmore .= ' data-order="' . esc_attr( $order ) . '"';
- $ajaxloadmore .= ' data-orderby="' . esc_attr( $orderby ) . '"';
-
- // Offset.
- $ajaxloadmore .= ' data-offset="' . esc_attr( $offset ) . '"';
-
- // Posts Per Page.
- $ajaxloadmore .= ' data-posts-per-page="' . esc_attr( $posts_per_page ) . '"';
+ $ajaxloadmore .= ' data-order="' . esc_attr( $order ) . '"'; // Order.
+ $ajaxloadmore .= ' data-orderby="' . esc_attr( $orderby ) . '"'; // Orderby.
+ $ajaxloadmore .= ' data-offset="' . esc_attr( $offset ) . '"'; // Offset.
+ $ajaxloadmore .= ' data-posts-per-page="' . esc_attr( $posts_per_page ) . '"'; // Posts Per Page.
// Lang.
- $ajaxloadmore .= ! empty( $lang ) ? ' data-lang="' . esc_attr( $lang ) . '"' : '';
+ $ajaxloadmore .= $lang ? ' data-lang="' . esc_attr( $lang ) . '"' : '';
// Scroll.
if ( $paging !== 'true' ) {
- $ajaxloadmore .= ' data-scroll="' . esc_attr( $scroll ) . '"';
+ $ajaxloadmore .= $scroll === 'false' ? ' data-scroll="false"' : '';
if ( $scroll === 'true' ) {
$ajaxloadmore .= ' data-scroll-distance="' . esc_attr( $scroll_distance ) . '"';
- $ajaxloadmore .= ! empty( $scroll_container ) ? ' data-scroll-container="' . esc_attr( $scroll_container ) . '"' : '';
- $ajaxloadmore .= ! empty( $scroll_direction ) ? ' data-scroll-direction="' . esc_attr( $scroll_direction ) . '"' : '';
- $ajaxloadmore .= ' data-max-pages="' . $max_pages . '"';
- $ajaxloadmore .= ! empty( $pause_override ) ? ' data-pause-override="' . esc_attr( $pause_override ) . '"' : '';
+ $ajaxloadmore .= $scroll_container ? ' data-scroll-container="' . esc_attr( $scroll_container ) . '"' : '';
+ $ajaxloadmore .= $scroll_direction ? ' data-scroll-direction="' . esc_attr( $scroll_direction ) . '"' : '';
+ $ajaxloadmore .= $max_pages && $max_pages !== '0' ? ' data-max-pages="' . esc_attr( $max_pages ) . '"' : '';
+ $ajaxloadmore .= $pause_override ? ' data-pause-override="' . esc_attr( $pause_override ) . '"' : '';
}
}
// Pause.
- $ajaxloadmore .= ' data-pause="' . esc_attr( $pause ) . '"';
+ $ajaxloadmore .= $pause === 'true' ? ' data-pause="true"' : '';
// Button.
$ajaxloadmore .= ' data-button-label="' . wp_kses_post( $button_label ) . '"';
- $ajaxloadmore .= ! empty( $button_loading_label ) ? ' data-button-loading-label="' . wp_kses_post( $button_loading_label ) . '"' : '';
- $ajaxloadmore .= ! empty( $button_done_label ) ? ' data-button-done-label="' . wp_kses_post( $button_done_label ) . '"' : '';
+ $ajaxloadmore .= $button_loading_label ? ' data-button-loading-label="' . wp_kses_post( $button_loading_label ) . '"' : '';
+ $ajaxloadmore .= $button_done_label ? ' data-button-done-label="' . wp_kses_post( $button_done_label ) . '"' : '';
// Destroy After.
- $ajaxloadmore .= ! empty( $destroy_after ) ? ' data-destroy-after="' . esc_attr( $destroy_after ) . '"' : '';
+ $ajaxloadmore .= $destroy_after ? ' data-destroy-after="' . esc_attr( $destroy_after ) . '"' : '';
// Transition.
$ajaxloadmore .= $transition !== 'fade' ? ' data-transition="' . esc_attr( $transition ) . '"' : '';
$ajaxloadmore .= $transition_container === 'false' ? ' data-transition-container="' . esc_attr( $transition_container ) . '"' : '';
- $ajaxloadmore .= ! empty( $transition_container_classes ) ? ' data-transition-container-classes="' . esc_attr( $transition_container_classes ) . '"' : '';
+ $ajaxloadmore .= $transition_container_classes ? ' data-transition-container-classes="' . esc_attr( $transition_container_classes ) . '"' : '';
// Masonry.
if ( 'masonry' === $transition ) {
@@ -1252,16 +1246,13 @@ public static function alm_render_shortcode( $atts ) {
include ALM_PATH . 'core/classes/includes/preloaded.php';
}
- // Single Post
+ // Single Post.
// Get first post and append to alm object.
if ( has_action( 'alm_single_post_installed' ) && $single_post ) {
-
$repeater_type = preg_split( '/(?=\d)/', $repeater, 2 ); // split $repeater at number to retrieve type.
- $repeater_type = $repeater_type[0]; // default / repeater / template_{x} .
+ $repeater_type = $repeater_type[0]; // default / repeater / template_{x}.
+ $repeater_type = $theme_repeater !== 'null' && has_filter( 'alm_get_theme_repeater' ) ? null : $repeater_type;
- if ( $theme_repeater !== 'null' && has_filter( 'alm_get_theme_repeater' ) ) {
- $repeater_type = null;
- }
// Get current permalink - (including querystring).
$single_post_permanlink = $_SERVER['QUERY_STRING'] ? get_permalink( $single_post_id ) . '?' . esc_attr( $_SERVER['QUERY_STRING'] ) : get_permalink( $single_post_id );
@@ -1280,7 +1271,6 @@ public static function alm_render_shortcode( $atts ) {
$single_post_output .= '
';
$ajaxloadmore .= $single_post_output; // Append $single_post_output data to $ajaxloadmore.
-
}
// Next Page Add-on.
@@ -1296,14 +1286,13 @@ public static function alm_render_shortcode( $atts ) {
$nextpage_is_paged = apply_filters( 'alm_nextpage_paged', $nextpage_is_paged );
$ajaxloadmore .= apply_filters( 'alm_init_nextpage', $nextpage_post_id, $nextpage_start, $nextpage_is_paged, $paging, $div_id, $id, $nested );
-
}
// Masonry Hook (After).
$ajaxloadmore .= apply_filters( 'alm_masonry_after', $transition );
// Close ALM container element.
- $ajaxloadmore .= '' . $container_element . '>';
+ $ajaxloadmore .= '' . esc_attr( $container_element ) . '>';
// Create Placeholder.
$ajaxloadmore .= self::alm_render_placeholder( $placeholder, $paging );
@@ -1344,7 +1333,7 @@ public static function alm_render_shortcode( $atts ) {
// No results text.
if ( $no_results_text !== '' && ! empty( $no_results_text ) ) {
- $ajaxloadmore .= '
' . html_entity_decode( $no_results_text ) . '
';
+ $ajaxloadmore .= '
' . wp_kses_post( $no_results_text ) . '
';
}
// Render
';
- return $html;
+ return wp_kses_post( $html );
}
/**
@@ -1446,15 +1441,15 @@ public static function alm_render_button( $paging, $button_classname, $button_la
*
* @param string $placeholder The value of the placeholder.
* @param string $paging Is paging true.
- * @return html The generated HTML.
+ * @return string Raw HTML string.
* @since 5.1.7
*/
public static function alm_render_placeholder( $placeholder, $paging ) {
if ( isset( $placeholder ) && ! empty( $placeholder ) && $paging !== 'true' ) {
- $placeholder_url = ( $placeholder === 'true' ) ? ALM_URL . '/core/img/placeholder.png' : $placeholder;
+ $placeholder_url = $placeholder === 'true' ? ALM_URL . '/core/img/placeholder.png' : $placeholder;
if ( $placeholder_url ) {
- $html = '';
- return $html;
+ $html = '';
+ return wp_kses_post( $html );
}
}
}
diff --git a/core/functions.php b/core/functions.php
index e31971a..23c368f 100755
--- a/core/functions.php
+++ b/core/functions.php
@@ -28,7 +28,7 @@ function alm_progress_css( $counter, $progress, $color ) {
';
return $style;
}
diff --git a/core/functions/masonry.php b/core/functions/masonry.php
index e799bbd..0706443 100644
--- a/core/functions/masonry.php
+++ b/core/functions/masonry.php
@@ -9,21 +9,23 @@
/**
* Masonry HTML wrapper open.
*
- * @param string $transition
+ * @param string $transition Transition type.
+ * @return string Raw HTML.
* @since 3.1.0
*/
function alm_masonry_before( $transition ) {
- return ( $transition === 'masonry' ) ? '' : '';
+ return $transition === 'masonry' ? '
' : '';
}
add_filter( 'alm_masonry_before', 'alm_masonry_before' );
/**
* Masonry HTML wrapper close.
*
- * @param $transition string
+ * @param string $transition Transition type.
+ * @return string Raw HTML.
* @since 3.1.0
*/
-function alm_masonry_after( $transition ){
- return ( $transition === 'masonry' ) ? '
' : '';
+function alm_masonry_after( $transition ) {
+ return $transition === 'masonry' ? '
' : '';
}
add_filter( 'alm_masonry_after', 'alm_masonry_after' );
diff --git a/core/src/js/ajax-load-more.js b/core/src/js/ajax-load-more.js
index e032793..02dde06 100755
--- a/core/src/js/ajax-load-more.js
+++ b/core/src/js/ajax-load-more.js
@@ -505,7 +505,7 @@ let alm_is_filtering = false;
alm.repeater = alm.repeater === undefined ? 'default' : alm.repeater;
alm.theme_repeater = alm.theme_repeater === undefined ? false : alm.theme_repeater;
- /* Max Pages (while scrolling) */
+ /* Max Pages */
alm.max_pages = alm.max_pages === undefined || alm.max_pages === 0 ? 9999 : alm.max_pages;
/* Scroll Distance */
diff --git a/lang/ajax-load-more.pot b/lang/ajax-load-more.pot
index 0fdad13..a5aa0a6 100755
--- a/lang/ajax-load-more.pot
+++ b/lang/ajax-load-more.pot
@@ -2,14 +2,14 @@
# This file is distributed under the GPL.
msgid ""
msgstr ""
-"Project-Id-Version: Ajax Load More 5.6.0\n"
+"Project-Id-Version: Ajax Load More 5.6.0.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ajax-load-more\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"POT-Creation-Date: 2023-02-14T13:09:41+00:00\n"
+"POT-Creation-Date: 2023-02-16T19:21:56+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.5.0\n"
"X-Domain: ajax-load-more\n"
@@ -17,8 +17,6 @@ msgstr ""
#. Plugin Name of the plugin
#: admin/admin.php:110
#: core/integration/elementor/elementor.php:19
-#: _out/admin/admin.php:110
-#: _out/core/integration/elementor/elementor.php:19
msgid "Ajax Load More"
msgstr ""
@@ -44,12 +42,6 @@ msgstr ""
#: admin/functions/licensing.php:19
#: admin/functions/repeater-templates.php:20
#: admin/functions/repeater-templates.php:130
-#: _out/admin/admin.php:76
-#: _out/admin/admin.php:552
-#: _out/admin/functions/layouts.php:19
-#: _out/admin/functions/licensing.php:19
-#: _out/admin/functions/repeater-templates.php:20
-#: _out/admin/functions/repeater-templates.php:130
msgid "You don't belong here."
msgstr ""
@@ -59,139 +51,98 @@ msgstr ""
#: admin/functions/licensing.php:25
#: admin/functions/repeater-templates.php:25
#: admin/functions/repeater-templates.php:135
-#: _out/admin/admin.php:81
-#: _out/admin/admin.php:557
-#: _out/admin/functions/layouts.php:24
-#: _out/admin/functions/licensing.php:25
-#: _out/admin/functions/repeater-templates.php:25
-#: _out/admin/functions/repeater-templates.php:135
msgid "Error - unable to verify nonce, please try again."
msgstr ""
#: admin/admin.php:89
-#: _out/admin/admin.php:89
msgid "Transient set successfully"
msgstr ""
#: admin/admin.php:111
#: admin/editor/editor-build.php:69
#: admin/views/licenses.php:105
-#: _out/admin/admin.php:111
-#: _out/admin/editor/editor-build.php:69
-#: _out/admin/views/licenses.php:105
msgid "Active"
msgstr ""
#: admin/admin.php:112
#: admin/editor/editor-build.php:70
#: admin/views/licenses.php:107
-#: _out/admin/admin.php:112
-#: _out/admin/editor/editor-build.php:70
-#: _out/admin/views/licenses.php:107
msgid "Inactive"
msgstr ""
#: admin/admin.php:113
#: admin/editor/editor-build.php:71
-#: _out/admin/admin.php:113
-#: _out/admin/editor/editor-build.php:71
msgid "Applying layout"
msgstr ""
#: admin/admin.php:114
#: admin/editor/editor-build.php:72
#: admin/views/repeater-templates.php:452
-#: _out/admin/admin.php:114
-#: _out/admin/editor/editor-build.php:72
-#: _out/admin/views/repeater-templates.php:452
msgid "Template Updated"
msgstr ""
#: admin/admin.php:116
#: admin/editor/editor-build.php:75
-#: _out/admin/admin.php:116
-#: _out/admin/editor/editor-build.php:75
msgid "Select Author(s)"
msgstr ""
#: admin/admin.php:117
#: admin/editor/editor-build.php:76
-#: _out/admin/admin.php:117
-#: _out/admin/editor/editor-build.php:76
msgid "Select Categories"
msgstr ""
#: admin/admin.php:118
#: admin/editor/editor-build.php:77
-#: _out/admin/admin.php:118
-#: _out/admin/editor/editor-build.php:77
msgid "Select Tags"
msgstr ""
#: admin/admin.php:119
#: admin/editor/editor-build.php:74
-#: _out/admin/admin.php:119
-#: _out/admin/editor/editor-build.php:74
msgid "Select"
msgstr ""
#: admin/admin.php:120
#: admin/editor/editor-build.php:41
#: admin/editor/editor-build.php:78
-#: _out/admin/admin.php:120
-#: _out/admin/editor/editor-build.php:41
-#: _out/admin/editor/editor-build.php:78
msgid "Jump to Option"
msgstr ""
#: admin/admin.php:121
#: admin/editor/editor-build.php:79
-#: _out/admin/admin.php:121
-#: _out/admin/editor/editor-build.php:79
msgid "Jump to Template"
msgstr ""
#: admin/admin.php:122
-#: _out/admin/admin.php:122
msgid "Are you sure you want to install this Ajax Load More extension?"
msgstr ""
#: admin/admin.php:123
-#: _out/admin/admin.php:123
msgid "Install Now"
msgstr ""
#: admin/admin.php:124
-#: _out/admin/admin.php:124
msgid "Activate"
msgstr ""
#: admin/admin.php:125
-#: _out/admin/admin.php:125
msgid "Saving Settings"
msgstr ""
#: admin/admin.php:126
-#: _out/admin/admin.php:126
msgid "Settings Saved Successfully"
msgstr ""
#: admin/admin.php:127
-#: _out/admin/admin.php:127
msgid "Error Saving Settings"
msgstr ""
#: admin/admin.php:128
-#: _out/admin/admin.php:128
msgid "There is a maximum of 3 tax_query objects while using the shortcode builder"
msgstr ""
#: admin/admin.php:169
#: admin/admin.php:170
#: ajax-load-more.php:299
-#: _out/admin/admin.php:169
-#: _out/admin/admin.php:170
-#: _out/ajax-load-more.php:299
msgid "Settings"
msgstr ""
@@ -199,19 +150,12 @@ msgstr ""
#: admin/admin.php:179
#: admin/views/repeater-templates.php:23
#: admin/views/repeater-templates.php:36
-#: _out/admin/admin.php:178
-#: _out/admin/admin.php:179
-#: _out/admin/views/repeater-templates.php:23
-#: _out/admin/views/repeater-templates.php:36
msgid "Repeater Templates"
msgstr ""
#: admin/admin.php:187
#: admin/admin.php:188
#: admin/views/shortcode-builder.php:16
-#: _out/admin/admin.php:187
-#: _out/admin/admin.php:188
-#: _out/admin/views/shortcode-builder.php:16
msgid "Shortcode Builder"
msgstr ""
@@ -220,11 +164,6 @@ msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:18
#: admin/shortcode-builder/shortcode-builder.php:38
#: admin/views/add-ons.php:16
-#: _out/admin/admin.php:197
-#: _out/admin/admin.php:198
-#: _out/admin/shortcode-builder/shortcode-builder.php:18
-#: _out/admin/shortcode-builder/shortcode-builder.php:38
-#: _out/admin/views/add-ons.php:16
msgid "Add-ons"
msgstr ""
@@ -233,32 +172,21 @@ msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:21
#: admin/shortcode-builder/shortcode-builder.php:69
#: admin/views/extensions.php:14
-#: _out/admin/admin.php:207
-#: _out/admin/admin.php:208
-#: _out/admin/shortcode-builder/shortcode-builder.php:21
-#: _out/admin/shortcode-builder/shortcode-builder.php:69
-#: _out/admin/views/extensions.php:14
msgid "Extensions"
msgstr ""
#: admin/admin.php:216
#: admin/admin.php:217
#: admin/views/help.php:27
-#: _out/admin/admin.php:216
-#: _out/admin/admin.php:217
-#: _out/admin/views/help.php:27
msgid "Help"
msgstr ""
#: admin/admin.php:223
-#: _out/admin/admin.php:223
msgid "License"
msgstr ""
#: admin/admin.php:223
#: admin/views/licenses.php:11
-#: _out/admin/admin.php:223
-#: _out/admin/views/licenses.php:11
msgid "Licenses"
msgstr ""
@@ -266,279 +194,213 @@ msgstr ""
#: admin/admin.php:242
#: admin/admin.php:250
#: admin/views/go-pro.php:14
-#: _out/admin/admin.php:241
-#: _out/admin/admin.php:242
-#: _out/admin/admin.php:250
-#: _out/admin/views/go-pro.php:14
msgid "Pro"
msgstr ""
#: admin/admin.php:251
#: admin/views/licenses.php:162
-#: _out/admin/admin.php:251
-#: _out/admin/views/licenses.php:162
msgid "Go Pro"
msgstr ""
#: admin/admin.php:262
#: admin/admin.php:263
#: admin/shortcode-builder/components/cache.php:3
-#: _out/admin/admin.php:262
-#: _out/admin/admin.php:263
-#: _out/admin/shortcode-builder/components/cache.php:3
msgid "Cache"
msgstr ""
#: admin/admin.php:282
#: admin/admin.php:283
#: admin/shortcode-builder/components/filters.php:10
-#: _out/admin/admin.php:282
-#: _out/admin/admin.php:283
-#: _out/admin/shortcode-builder/components/filters.php:10
msgid "Filters"
msgstr ""
#: admin/admin.php:303
#: admin/admin.php:304
-#: _out/admin/admin.php:303
-#: _out/admin/admin.php:304
msgid "WooCommerce"
msgstr ""
#: admin/editor/editor-build.php:45
-#: _out/admin/editor/editor-build.php:45
msgid "Create your own Ajax Load More shortcode by adjusting the parameters below:"
msgstr ""
#: admin/editor/editor-build.php:53
-#: _out/admin/editor/editor-build.php:53
msgid "Insert Shortcode"
msgstr ""
#: admin/editor/editor-build.php:56
-#: _out/admin/editor/editor-build.php:56
msgid "Copy"
msgstr ""
#: admin/editor/editor.php:19
-#: _out/admin/editor/editor.php:19
msgid "You are not allowed to be here"
msgstr ""
#: admin/functions/layouts.php:36
-#: _out/admin/functions/layouts.php:36
msgid "This doesn't look right, what are you trying to do?"
msgstr ""
#: admin/functions/licensing.php:128
-#: _out/admin/functions/licensing.php:128
msgid "You have an invalid or expired Ajax Load More Pro license key - please visit the License section to input your key or purchase one now."
msgstr ""
#: admin/functions/licensing.php:133
-#: _out/admin/functions/licensing.php:133
msgid "You have invalid or expired Ajax Load More license keys - please visit the Licenses section and input your keys."
msgstr ""
#: admin/functions/licensing.php:255
-#: _out/admin/functions/licensing.php:255
msgid "Looks like your subscription has expired."
msgstr ""
#: admin/functions/licensing.php:256
-#: _out/admin/functions/licensing.php:256
msgid "Please login to your Account to renew the license."
msgstr ""
#: admin/functions/licensing.php:264
-#: _out/admin/functions/licensing.php:264
msgid "Looks like your license is inactive and/or invalid."
msgstr ""
#: admin/functions/licensing.php:265
-#: _out/admin/functions/licensing.php:265
msgid "Please activate the license or login to your Account to renew the license."
msgstr ""
#: admin/functions/licensing.php:273
-#: _out/admin/functions/licensing.php:273
msgid "Looks like your license has been deactivated."
msgstr ""
#: admin/functions/licensing.php:274
-#: _out/admin/functions/licensing.php:274
msgid "Please activate the license to update."
msgstr ""
#. translators: %1$s is replaced with link href
#: admin/functions/licensing.php:305
-#: _out/admin/functions/licensing.php:305
msgid "%1$sRegister%2$s your copy of %3$s to receive access to automatic upgrades and support. Need a license key? %4$sPurchase one now%5$s."
msgstr ""
#: admin/functions/repeater-templates.php:110
-#: _out/admin/functions/repeater-templates.php:110
msgid "Template Saved Successfully"
msgstr ""
#: admin/functions/repeater-templates.php:112
-#: _out/admin/functions/repeater-templates.php:112
msgid "Error Writing File"
msgstr ""
#: admin/functions/repeater-templates.php:112
#: admin/views/repeater-templates.php:393
-#: _out/admin/functions/repeater-templates.php:112
-#: _out/admin/views/repeater-templates.php:393
msgid "Something went wrong and the data could not be saved."
msgstr ""
#: admin/functions/repeater-templates.php:179
-#: _out/admin/functions/repeater-templates.php:179
msgid "Something isn't right here..."
msgstr ""
#: admin/functions/settings.php:37
#: admin/shortcode-builder/shortcode-builder.php:167
-#: _out/admin/functions/settings.php:37
-#: _out/admin/shortcode-builder/shortcode-builder.php:167
msgid "Container Type"
msgstr ""
#: admin/functions/settings.php:45
#: admin/shortcode-builder/shortcode-builder.php:197
-#: _out/admin/functions/settings.php:45
-#: _out/admin/shortcode-builder/shortcode-builder.php:197
msgid "Container Classes"
msgstr ""
#: admin/functions/settings.php:53
-#: _out/admin/functions/settings.php:53
msgid "Disable CSS"
msgstr ""
#: admin/functions/settings.php:61
#: admin/shortcode-builder/shortcode-builder.php:125
-#: _out/admin/functions/settings.php:61
-#: _out/admin/shortcode-builder/shortcode-builder.php:125
msgid "Button/Loading Style"
msgstr ""
#: admin/functions/settings.php:69
-#: _out/admin/functions/settings.php:69
msgid "Load CSS Inline"
msgstr ""
#: admin/functions/settings.php:77
-#: _out/admin/functions/settings.php:77
msgid "Button Classes"
msgstr ""
#: admin/functions/settings.php:85
-#: _out/admin/functions/settings.php:85
msgid "Custom JavaScript"
msgstr ""
#: admin/functions/settings.php:103
-#: _out/admin/functions/settings.php:103
msgid "Legacy Callbacks"
msgstr ""
#: admin/functions/settings.php:111
-#: _out/admin/functions/settings.php:111
msgid "Dynamic Content"
msgstr ""
#: admin/functions/settings.php:119
-#: _out/admin/functions/settings.php:119
msgid "Error Notices"
msgstr ""
#: admin/functions/settings.php:127
-#: _out/admin/functions/settings.php:127
msgid "Delete on Uninstall"
msgstr ""
#: admin/functions/settings.php:202
-#: _out/admin/functions/settings.php:202
msgid "Customize the user experience of Ajax Load More by updating the fields below."
msgstr ""
#: admin/functions/settings.php:211
-#: _out/admin/functions/settings.php:211
msgid "The following settings affect the WordPress admin area only."
msgstr ""
#: admin/functions/settings.php:237
-#: _out/admin/functions/settings.php:237
msgid "I want to use my own CSS styles."
msgstr ""
#: admin/functions/settings.php:237
-#: _out/admin/functions/settings.php:237
msgid "View Ajax Load More CSS"
msgstr ""
#: admin/functions/settings.php:255
-#: _out/admin/functions/settings.php:255
msgid "Hide shortcode button in WYSIWYG editor."
msgstr ""
#: admin/functions/settings.php:273
-#: _out/admin/functions/settings.php:273
msgid "Display error messaging regarding repeater template updates in the browser console."
msgstr ""
#: admin/functions/settings.php:291
-#: _out/admin/functions/settings.php:291
msgid "Disable dynamic population of categories, tags and authors in the Shortcode Builder.Recommended if you have a large number of categories, tags and/or authors."
msgstr ""
#: admin/functions/settings.php:310
#: admin/functions/settings.php:313
-#: _out/admin/functions/settings.php:310
-#: _out/admin/functions/settings.php:313
msgid "Ajax Posts Here"
msgstr ""
#: admin/functions/settings.php:315
-#: _out/admin/functions/settings.php:315
msgid "You can modify the container type when building a shortcode."
msgstr ""
#: admin/functions/settings.php:331
-#: _out/admin/functions/settings.php:331
msgid "Add custom classes to the .alm-listing container - classes are applied globally and will appear with every instance of Ajax Load More. You can also add classes when building a shortcode."
msgstr ""
#: admin/functions/settings.php:421
-#: _out/admin/functions/settings.php:421
msgid "Select an Ajax loading style - you can choose between a Button or Infinite Scroll"
msgstr ""
#: admin/functions/settings.php:426
#: admin/shortcode-builder/shortcode-builder.php:131
-#: _out/admin/functions/settings.php:426
-#: _out/admin/shortcode-builder/shortcode-builder.php:131
msgid "Button Style (Dark)"
msgstr ""
#: admin/functions/settings.php:433
#: admin/shortcode-builder/shortcode-builder.php:138
-#: _out/admin/functions/settings.php:433
-#: _out/admin/shortcode-builder/shortcode-builder.php:138
msgid "Button Style (Light)"
msgstr ""
#: admin/functions/settings.php:438
#: admin/shortcode-builder/shortcode-builder.php:142
-#: _out/admin/functions/settings.php:438
-#: _out/admin/shortcode-builder/shortcode-builder.php:142
msgid "Infinite Scroll (No Button)"
msgstr ""
#: admin/functions/settings.php:454
-#: _out/admin/functions/settings.php:454
msgid "Click to Preview"
msgstr ""
@@ -546,350 +408,275 @@ msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:156
#: admin/shortcode-builder/shortcode-builder.php:372
#: core/classes/class-alm-shortcode.php:214
-#: _out/admin/functions/settings.php:456
-#: _out/admin/shortcode-builder/shortcode-builder.php:156
-#: _out/admin/shortcode-builder/shortcode-builder.php:372
-#: _out/core/classes/class-alm-shortcode.php:214
msgid "Load More"
msgstr ""
#: admin/functions/settings.php:476
-#: _out/admin/functions/settings.php:476
msgid "Improve site performance by loading Ajax Load More CSS inline."
msgstr ""
#: admin/functions/settings.php:493
-#: _out/admin/functions/settings.php:493
msgid "Add classes to your Load More button."
msgstr ""
#: admin/functions/settings.php:525
-#: _out/admin/functions/settings.php:525
msgid "Enter custom JavaScript code."
msgstr ""
#: admin/functions/settings.php:529
-#: _out/admin/functions/settings.php:529
msgid "JavaScript will be rendered with every Ajax Load More instance."
msgstr ""
#: admin/functions/settings.php:548
-#: _out/admin/functions/settings.php:548
msgid "On initial page load, move the user's browser window to the top of the screen."
msgstr ""
#: admin/functions/settings.php:549
-#: _out/admin/functions/settings.php:549
msgid "This may help prevent the loading of unnecessary posts."
msgstr ""
#: admin/functions/settings.php:569
-#: _out/admin/functions/settings.php:569
msgid "Disable REST API."
msgstr ""
#: admin/functions/settings.php:570
-#: _out/admin/functions/settings.php:570
msgid "Use `admin-ajax.php` in favour of the WordPress REST API for all Ajax requests."
msgstr ""
#: admin/functions/settings.php:590
-#: _out/admin/functions/settings.php:590
msgid "Load legacy JavaScript callback functions."
msgstr ""
#: admin/functions/settings.php:591
-#: _out/admin/functions/settings.php:591
msgid "Ajax Load More callback functions were updated in 5.0. Users who were using callbacks prior to ALM 5.0 can load this helper library to maintain compatibility."
msgstr ""
#: admin/functions/settings.php:611
-#: _out/admin/functions/settings.php:611
msgid "Check this box if Ajax Load More should remove all of its data* when the plugin is deleted."
msgstr ""
#: admin/functions/settings.php:612
-#: _out/admin/functions/settings.php:612
msgid "* Database Tables, Options and Repeater Templates"
msgstr ""
#: admin/includes/components/example-list.php:2
#: admin/views/repeater-templates.php:134
#: admin/views/repeater-templates.php:173
-#: _out/admin/includes/components/example-list.php:2
-#: _out/admin/views/repeater-templates.php:134
-#: _out/admin/views/repeater-templates.php:173
msgid "Collapse All"
msgstr ""
#: admin/includes/components/example-list.php:2
#: admin/views/repeater-templates.php:135
#: admin/views/repeater-templates.php:174
-#: _out/admin/includes/components/example-list.php:2
-#: _out/admin/views/repeater-templates.php:135
-#: _out/admin/views/repeater-templates.php:174
msgid "Expand All"
msgstr ""
#: admin/includes/components/example-list.php:5
-#: _out/admin/includes/components/example-list.php:5
msgid "Archive.php"
msgstr ""
#: admin/includes/components/example-list.php:7
-#: _out/admin/includes/components/example-list.php:7
msgid "Shortcode for use on generic archive page."
msgstr ""
#: admin/includes/components/example-list.php:15
-#: _out/admin/includes/components/example-list.php:15
msgid "Author.php"
msgstr ""
#: admin/includes/components/example-list.php:17
-#: _out/admin/includes/components/example-list.php:17
msgid "Shortcode for use on author archive pages."
msgstr ""
#: admin/includes/components/example-list.php:24
-#: _out/admin/includes/components/example-list.php:24
msgid "Category.php"
msgstr ""
#: admin/includes/components/example-list.php:26
-#: _out/admin/includes/components/example-list.php:26
msgid "Shortcode for use on category archive pages."
msgstr ""
#: admin/includes/components/example-list.php:33
-#: _out/admin/includes/components/example-list.php:33
msgid "Date Archives"
msgstr ""
#: admin/includes/components/example-list.php:35
-#: _out/admin/includes/components/example-list.php:35
msgid "Shortcode for use for archiving by date."
msgstr ""
#: admin/includes/components/example-list.php:42
-#: _out/admin/includes/components/example-list.php:42
msgid "Excluding Posts"
msgstr ""
#: admin/includes/components/example-list.php:44
-#: _out/admin/includes/components/example-list.php:44
msgid "Shortcode for excluding an array of posts."
msgstr ""
#: admin/includes/components/example-list.php:50
-#: _out/admin/includes/components/example-list.php:50
msgid "Tag.php"
msgstr ""
#: admin/includes/components/example-list.php:52
-#: _out/admin/includes/components/example-list.php:52
msgid "Shortcode for use on tag archive pages."
msgstr ""
#: admin/includes/components/layout-list.php:15
-#: _out/admin/includes/components/layout-list.php:15
msgid "Apply Layout"
msgstr ""
#: admin/includes/components/layout-list.php:32
-#: _out/admin/includes/components/layout-list.php:32
msgid "Default Layout"
msgstr ""
#: admin/includes/components/layout-list.php:40
-#: _out/admin/includes/components/layout-list.php:40
msgid "Get predefined responsive layouts with the Layouts add-on"
msgstr ""
#: admin/includes/components/layout-list.php:42
-#: _out/admin/includes/components/layout-list.php:42
msgid "Get More Layouts"
msgstr ""
#: admin/includes/cta/about.php:2
-#: _out/admin/includes/cta/about.php:2
msgid "Other Plugins by Connekt"
msgstr ""
#: admin/includes/cta/add-ons.php:2
-#: _out/admin/includes/cta/add-ons.php:2
msgid "About the Add-ons"
msgstr ""
#: admin/includes/cta/add-ons.php:8
-#: _out/admin/includes/cta/add-ons.php:8
msgid "View Add-ons"
msgstr ""
#: admin/includes/cta/config.php:2
-#: _out/admin/includes/cta/config.php:2
msgid "Plugin Configurations"
msgstr ""
#: admin/includes/cta/config.php:4
-#: _out/admin/includes/cta/config.php:4
msgid "Plugin Version"
msgstr ""
#: admin/includes/cta/config.php:10
-#: _out/admin/includes/cta/config.php:10
msgid "Release Date"
msgstr ""
#: admin/includes/cta/dyk.php:3
-#: _out/admin/includes/cta/dyk.php:3
msgid "Did You Know?"
msgstr ""
#: admin/includes/cta/extend.php:3
-#: _out/admin/includes/cta/extend.php:3
msgid "Unlock additional templates with the Custom Repeaters add-on"
msgstr ""
#: admin/includes/cta/extend.php:5
-#: _out/admin/includes/cta/extend.php:5
msgid "More Info"
msgstr ""
#: admin/includes/cta/pro-hero.php:25
-#: _out/admin/includes/cta/pro-hero.php:25
msgid "Upgrade Now"
msgstr ""
#: admin/includes/cta/resources.php:2
-#: _out/admin/includes/cta/resources.php:2
msgid "Plugin Resources"
msgstr ""
#: admin/includes/cta/resources.php:6
-#: _out/admin/includes/cta/resources.php:6
msgid "Ajax Load More Demo Site"
msgstr ""
#: admin/includes/cta/resources.php:10
#: admin/views/help.php:45
-#: _out/admin/includes/cta/resources.php:10
-#: _out/admin/views/help.php:45
msgid "Implementation Guide"
msgstr ""
#: admin/includes/cta/resources.php:13
-#: _out/admin/includes/cta/resources.php:13
msgid "Documentation"
msgstr ""
#: admin/includes/cta/resources.php:17
-#: _out/admin/includes/cta/resources.php:17
msgid "Support and Issues"
msgstr ""
#: admin/includes/cta/resources.php:21
-#: _out/admin/includes/cta/resources.php:21
msgid "Get Support"
msgstr ""
#: admin/includes/cta/resources.php:25
-#: _out/admin/includes/cta/resources.php:25
msgid "Reviews"
msgstr ""
#: admin/includes/cta/resources.php:28
-#: _out/admin/includes/cta/resources.php:28
msgid "WordPress"
msgstr ""
#: admin/includes/cta/resources.php:31
-#: _out/admin/includes/cta/resources.php:31
msgid "Github"
msgstr ""
#: admin/includes/cta/resources.php:34
-#: _out/admin/includes/cta/resources.php:34
msgid "Twitter"
msgstr ""
#: admin/includes/cta/reviews.php:1
-#: _out/admin/includes/cta/reviews.php:1
msgid "Leave a Review"
msgstr ""
#: admin/includes/cta/reviews.php:2
-#: _out/admin/includes/cta/reviews.php:2
msgid "Good or bad - all reviews will help Ajax Load More push forward and grow."
msgstr ""
#: admin/includes/cta/reviews.php:4
-#: _out/admin/includes/cta/reviews.php:4
msgid "Write Review"
msgstr ""
#: admin/includes/cta/test.php:9
-#: _out/admin/includes/cta/test.php:9
msgid "REST API Access"
msgstr ""
#: admin/includes/cta/test.php:14
-#: _out/admin/includes/cta/test.php:14
msgid "REST API Blocked"
msgstr ""
#: admin/includes/cta/test.php:15
-#: _out/admin/includes/cta/test.php:15
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?"
msgstr ""
#: admin/includes/cta/test.php:18
-#: _out/admin/includes/cta/test.php:18
msgid "Get Plugin Support"
msgstr ""
#: admin/includes/cta/writeable.php:5
-#: _out/admin/includes/cta/writeable.php:5
msgid "Read/Write Access"
msgstr ""
#: admin/includes/cta/writeable.php:14
-#: _out/admin/includes/cta/writeable.php:14
msgid "Enabled"
msgstr ""
#: admin/includes/cta/writeable.php:15
-#: _out/admin/includes/cta/writeable.php:15
msgid "Read/Write access is enabled within the Repeater Template directory."
msgstr ""
#: admin/includes/cta/writeable.php:17
-#: _out/admin/includes/cta/writeable.php:17
msgid "Access Denied"
msgstr ""
#: admin/includes/cta/writeable.php:18
-#: _out/admin/includes/cta/writeable.php:18
msgid "You must enable read and write access to save repeater template data. Please contact your hosting provider or site administrator for more information."
msgstr ""
#: admin/includes/cta/writeable.php:21
-#: _out/admin/includes/cta/writeable.php:21
msgid "Error"
msgstr ""
#: admin/includes/cta/writeable.php:22
-#: _out/admin/includes/cta/writeable.php:22
msgid "Unable to locate configuration file. Directory access may not be granted."
msgstr ""
#: admin/shortcode-builder/components/acf.php:3
-#: _out/admin/shortcode-builder/components/acf.php:3
msgid "Advanced Custom Fields"
msgstr ""
#: admin/shortcode-builder/components/acf.php:7
-#: _out/admin/shortcode-builder/components/acf.php:7
msgid "Enable compatibility with Advanced Custom Fields."
msgstr ""
@@ -929,42 +716,6 @@ msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:676
#: admin/shortcode-builder/shortcode-builder.php:752
#: admin/shortcode-builder/shortcode-builder.php:1417
-#: _out/admin/shortcode-builder/components/acf.php:14
-#: _out/admin/shortcode-builder/components/cache.php:14
-#: _out/admin/shortcode-builder/components/comments.php:14
-#: _out/admin/shortcode-builder/components/cta.php:15
-#: _out/admin/shortcode-builder/components/filters.php:22
-#: _out/admin/shortcode-builder/components/filters.php:82
-#: _out/admin/shortcode-builder/components/filters.php:103
-#: _out/admin/shortcode-builder/components/filters.php:124
-#: _out/admin/shortcode-builder/components/filters.php:165
-#: _out/admin/shortcode-builder/components/filters.php:186
-#: _out/admin/shortcode-builder/components/layouts.php:17
-#: _out/admin/shortcode-builder/components/nextpage.php:17
-#: _out/admin/shortcode-builder/components/nextpage.php:119
-#: _out/admin/shortcode-builder/components/paging.php:15
-#: _out/admin/shortcode-builder/components/paging.php:64
-#: _out/admin/shortcode-builder/components/paging.php:90
-#: _out/admin/shortcode-builder/components/preloaded.php:15
-#: _out/admin/shortcode-builder/components/rest-api.php:30
-#: _out/admin/shortcode-builder/components/rest-api.php:105
-#: _out/admin/shortcode-builder/components/seo.php:15
-#: _out/admin/shortcode-builder/components/single-post.php:19
-#: _out/admin/shortcode-builder/components/single-post.php:162
-#: _out/admin/shortcode-builder/components/single-post.php:211
-#: _out/admin/shortcode-builder/components/single-post.php:311
-#: _out/admin/shortcode-builder/components/term-query.php:15
-#: _out/admin/shortcode-builder/components/term-query.php:79
-#: _out/admin/shortcode-builder/components/users.php:14
-#: _out/admin/shortcode-builder/shortcode-builder.php:221
-#: _out/admin/shortcode-builder/shortcode-builder.php:258
-#: _out/admin/shortcode-builder/shortcode-builder.php:281
-#: _out/admin/shortcode-builder/shortcode-builder.php:419
-#: _out/admin/shortcode-builder/shortcode-builder.php:478
-#: _out/admin/shortcode-builder/shortcode-builder.php:501
-#: _out/admin/shortcode-builder/shortcode-builder.php:676
-#: _out/admin/shortcode-builder/shortcode-builder.php:752
-#: _out/admin/shortcode-builder/shortcode-builder.php:1417
msgid "True"
msgstr ""
@@ -1004,42 +755,6 @@ msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:680
#: admin/shortcode-builder/shortcode-builder.php:756
#: admin/shortcode-builder/shortcode-builder.php:1421
-#: _out/admin/shortcode-builder/components/acf.php:18
-#: _out/admin/shortcode-builder/components/cache.php:18
-#: _out/admin/shortcode-builder/components/comments.php:18
-#: _out/admin/shortcode-builder/components/cta.php:19
-#: _out/admin/shortcode-builder/components/filters.php:26
-#: _out/admin/shortcode-builder/components/filters.php:86
-#: _out/admin/shortcode-builder/components/filters.php:107
-#: _out/admin/shortcode-builder/components/filters.php:128
-#: _out/admin/shortcode-builder/components/filters.php:169
-#: _out/admin/shortcode-builder/components/filters.php:190
-#: _out/admin/shortcode-builder/components/layouts.php:21
-#: _out/admin/shortcode-builder/components/nextpage.php:21
-#: _out/admin/shortcode-builder/components/nextpage.php:120
-#: _out/admin/shortcode-builder/components/paging.php:19
-#: _out/admin/shortcode-builder/components/paging.php:65
-#: _out/admin/shortcode-builder/components/paging.php:94
-#: _out/admin/shortcode-builder/components/preloaded.php:19
-#: _out/admin/shortcode-builder/components/rest-api.php:34
-#: _out/admin/shortcode-builder/components/rest-api.php:109
-#: _out/admin/shortcode-builder/components/seo.php:19
-#: _out/admin/shortcode-builder/components/single-post.php:23
-#: _out/admin/shortcode-builder/components/single-post.php:166
-#: _out/admin/shortcode-builder/components/single-post.php:215
-#: _out/admin/shortcode-builder/components/single-post.php:315
-#: _out/admin/shortcode-builder/components/term-query.php:19
-#: _out/admin/shortcode-builder/components/term-query.php:80
-#: _out/admin/shortcode-builder/components/users.php:18
-#: _out/admin/shortcode-builder/shortcode-builder.php:225
-#: _out/admin/shortcode-builder/shortcode-builder.php:262
-#: _out/admin/shortcode-builder/shortcode-builder.php:285
-#: _out/admin/shortcode-builder/shortcode-builder.php:423
-#: _out/admin/shortcode-builder/shortcode-builder.php:482
-#: _out/admin/shortcode-builder/shortcode-builder.php:505
-#: _out/admin/shortcode-builder/shortcode-builder.php:680
-#: _out/admin/shortcode-builder/shortcode-builder.php:756
-#: _out/admin/shortcode-builder/shortcode-builder.php:1421
msgid "False"
msgstr ""
@@ -1047,246 +762,190 @@ msgstr ""
#: admin/shortcode-builder/components/comments.php:30
#: admin/shortcode-builder/components/nextpage.php:34
#: admin/shortcode-builder/components/single-post.php:35
-#: _out/admin/shortcode-builder/components/acf.php:31
-#: _out/admin/shortcode-builder/components/comments.php:30
-#: _out/admin/shortcode-builder/components/nextpage.php:34
-#: _out/admin/shortcode-builder/components/single-post.php:35
msgid "Post ID"
msgstr ""
#: admin/shortcode-builder/components/acf.php:31
-#: _out/admin/shortcode-builder/components/acf.php:31
msgid "Leave this field blank and Ajax Load More will retrieve the ID from the global $post object."
msgstr ""
#: admin/shortcode-builder/components/acf.php:32
#: admin/shortcode-builder/components/nextpage.php:35
-#: _out/admin/shortcode-builder/components/acf.php:32
-#: _out/admin/shortcode-builder/components/nextpage.php:35
msgid "The ID of the current page/post."
msgstr ""
#: admin/shortcode-builder/components/acf.php:43
#: admin/shortcode-builder/components/acf.php:48
#: admin/shortcode-builder/components/acf.php:67
-#: _out/admin/shortcode-builder/components/acf.php:43
-#: _out/admin/shortcode-builder/components/acf.php:48
-#: _out/admin/shortcode-builder/components/acf.php:67
msgid "Field Type"
msgstr ""
#: admin/shortcode-builder/components/acf.php:44
-#: _out/admin/shortcode-builder/components/acf.php:44
msgid "Select the type of ACF field."
msgstr ""
#: admin/shortcode-builder/components/acf.php:50
-#: _out/admin/shortcode-builder/components/acf.php:50
msgid "Select Field Type"
msgstr ""
#: admin/shortcode-builder/components/acf.php:51
-#: _out/admin/shortcode-builder/components/acf.php:51
msgid "Flexible Content"
msgstr ""
#: admin/shortcode-builder/components/acf.php:52
-#: _out/admin/shortcode-builder/components/acf.php:52
msgid "Gallery"
msgstr ""
#: admin/shortcode-builder/components/acf.php:53
-#: _out/admin/shortcode-builder/components/acf.php:53
msgid "Relationship"
msgstr ""
#: admin/shortcode-builder/components/acf.php:54
-#: _out/admin/shortcode-builder/components/acf.php:54
msgid "Repeater"
msgstr ""
#: admin/shortcode-builder/components/acf.php:62
#: admin/shortcode-builder/components/acf.php:83
-#: _out/admin/shortcode-builder/components/acf.php:62
-#: _out/admin/shortcode-builder/components/acf.php:83
msgid "Field Name"
msgstr ""
#: admin/shortcode-builder/components/acf.php:63
-#: _out/admin/shortcode-builder/components/acf.php:63
msgid "Enter the name of the ACF field."
msgstr ""
#: admin/shortcode-builder/components/acf.php:75
-#: _out/admin/shortcode-builder/components/acf.php:75
msgid "Parent Field Name"
msgstr ""
#: admin/shortcode-builder/components/acf.php:75
-#: _out/admin/shortcode-builder/components/acf.php:75
msgid "This option is only relevant when trying to access content in sub fields."
msgstr ""
#: admin/shortcode-builder/components/acf.php:77
-#: _out/admin/shortcode-builder/components/acf.php:77
msgid "If this a nested ACF sub_field, enter the parent field names."
msgstr ""
#: admin/shortcode-builder/components/acf.php:78
-#: _out/admin/shortcode-builder/components/acf.php:78
msgid "Access fields up to the three levels deep by colon separating the field names."
msgstr ""
#: admin/shortcode-builder/components/cache.php:7
-#: _out/admin/shortcode-builder/components/cache.php:7
msgid "Turn on content caching."
msgstr ""
#: admin/shortcode-builder/components/cache.php:29
-#: _out/admin/shortcode-builder/components/cache.php:29
msgid "Cache ID"
msgstr ""
#: admin/shortcode-builder/components/cache.php:30
-#: _out/admin/shortcode-builder/components/cache.php:30
msgid "You must generate a unique ID for this cached query - this unique ID will be used as a content identifier."
msgstr ""
#: admin/shortcode-builder/components/cache.php:36
-#: _out/admin/shortcode-builder/components/cache.php:36
msgid "Generate Cache ID"
msgstr ""
#: admin/shortcode-builder/components/comments.php:3
-#: _out/admin/shortcode-builder/components/comments.php:3
msgid "Comments"
msgstr ""
#: admin/shortcode-builder/components/comments.php:7
-#: _out/admin/shortcode-builder/components/comments.php:7
msgid "Enable Ajax Load More to display blog comments."
msgstr ""
#: admin/shortcode-builder/components/comments.php:31
#: admin/shortcode-builder/components/single-post.php:36
-#: _out/admin/shortcode-builder/components/comments.php:31
-#: _out/admin/shortcode-builder/components/single-post.php:36
msgid "The ID of the current single post."
msgstr ""
#: admin/shortcode-builder/components/comments.php:42
-#: _out/admin/shortcode-builder/components/comments.php:42
msgid "Comments Per Page"
msgstr ""
#: admin/shortcode-builder/components/comments.php:43
-#: _out/admin/shortcode-builder/components/comments.php:43
msgid "The number of top level items to show for each page of comments."
msgstr ""
#: admin/shortcode-builder/components/comments.php:44
-#: _out/admin/shortcode-builder/components/comments.php:44
msgid "Note: The amount selected does NOT include comment replies."
msgstr ""
#: admin/shortcode-builder/components/comments.php:55
-#: _out/admin/shortcode-builder/components/comments.php:55
msgid "Comment Type"
msgstr ""
#: admin/shortcode-builder/components/comments.php:56
-#: _out/admin/shortcode-builder/components/comments.php:56
msgid "The type of comment(s) to display."
msgstr ""
#: admin/shortcode-builder/components/comments.php:61
-#: _out/admin/shortcode-builder/components/comments.php:61
msgid "Comment"
msgstr ""
#: admin/shortcode-builder/components/comments.php:62
-#: _out/admin/shortcode-builder/components/comments.php:62
msgid "All"
msgstr ""
#: admin/shortcode-builder/components/comments.php:63
-#: _out/admin/shortcode-builder/components/comments.php:63
msgid "Trackback"
msgstr ""
#: admin/shortcode-builder/components/comments.php:64
-#: _out/admin/shortcode-builder/components/comments.php:64
msgid "Pingback"
msgstr ""
#: admin/shortcode-builder/components/comments.php:65
-#: _out/admin/shortcode-builder/components/comments.php:65
msgid "Pings"
msgstr ""
#: admin/shortcode-builder/components/comments.php:73
-#: _out/admin/shortcode-builder/components/comments.php:73
msgid "Comment Style"
msgstr ""
#: admin/shortcode-builder/components/comments.php:74
-#: _out/admin/shortcode-builder/components/comments.php:74
msgid "Select the HTML container style for your comments."
msgstr ""
#: admin/shortcode-builder/components/comments.php:98
-#: _out/admin/shortcode-builder/components/comments.php:98
msgid "Comment Template"
msgstr ""
#: admin/shortcode-builder/components/comments.php:99
-#: _out/admin/shortcode-builder/components/comments.php:99
msgid "Select a repeater template that will display comment data."
msgstr ""
#: admin/shortcode-builder/components/comments.php:100
-#: _out/admin/shortcode-builder/components/comments.php:100
msgid "Note: None will use the default WordPress comment layout."
msgstr ""
#: admin/shortcode-builder/components/comments.php:105
#: admin/shortcode-builder/shortcode-builder.php:571
#: admin/shortcode-builder/shortcode-builder.php:657
-#: _out/admin/shortcode-builder/components/comments.php:105
-#: _out/admin/shortcode-builder/shortcode-builder.php:571
-#: _out/admin/shortcode-builder/shortcode-builder.php:657
msgid "None"
msgstr ""
#: admin/shortcode-builder/components/comments.php:106
#: admin/shortcode-builder/components/layouts.php:48
-#: _out/admin/shortcode-builder/components/comments.php:106
-#: _out/admin/shortcode-builder/components/layouts.php:48
msgid "Default"
msgstr ""
#: admin/shortcode-builder/components/comments.php:120
-#: _out/admin/shortcode-builder/components/comments.php:120
msgid "or"
msgstr ""
#: admin/shortcode-builder/components/comments.php:122
-#: _out/admin/shortcode-builder/components/comments.php:122
msgid "Callback Function"
msgstr ""
#: admin/shortcode-builder/components/comments.php:123
-#: _out/admin/shortcode-builder/components/comments.php:123
msgid "A custom callback function that will display each comment."
msgstr ""
#: admin/shortcode-builder/components/comments.php:124
-#: _out/admin/shortcode-builder/components/comments.php:124
msgid "Note: 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."
msgstr ""
#: admin/shortcode-builder/components/comments.php:135
-#: _out/admin/shortcode-builder/components/comments.php:135
msgid "You must add the comments shortcode directly to your single template file using the do_shortcode method."
msgstr ""
@@ -1296,565 +955,443 @@ msgstr ""
#: admin/shortcode-builder/components/single-post.php:326
#: admin/shortcode-builder/shortcode-builder.php:689
#: admin/shortcode-builder/shortcode-builder.php:1410
-#: _out/admin/shortcode-builder/components/comments.php:135
-#: _out/admin/shortcode-builder/components/nextpage.php:135
-#: _out/admin/shortcode-builder/components/single-post.php:63
-#: _out/admin/shortcode-builder/components/single-post.php:326
-#: _out/admin/shortcode-builder/shortcode-builder.php:689
-#: _out/admin/shortcode-builder/shortcode-builder.php:1410
msgid "View Docs"
msgstr ""
#: admin/shortcode-builder/components/cta.php:3
-#: _out/admin/shortcode-builder/components/cta.php:3
msgid "Call to Actions"
msgstr ""
#: admin/shortcode-builder/components/cta.php:8
-#: _out/admin/shortcode-builder/components/cta.php:8
msgid "Insert call to action block."
msgstr ""
#: admin/shortcode-builder/components/cta.php:30
-#: _out/admin/shortcode-builder/components/cta.php:30
msgid "CTA Positioning"
msgstr ""
#: admin/shortcode-builder/components/cta.php:31
-#: _out/admin/shortcode-builder/components/cta.php:31
msgid "Insert call to action before post #1"
msgstr ""
#: admin/shortcode-builder/components/cta.php:36
-#: _out/admin/shortcode-builder/components/cta.php:36
msgid "Before / After"
msgstr ""
#: admin/shortcode-builder/components/cta.php:38
-#: _out/admin/shortcode-builder/components/cta.php:38
msgid "Before"
msgstr ""
#: admin/shortcode-builder/components/cta.php:39
-#: _out/admin/shortcode-builder/components/cta.php:39
msgid "After"
msgstr ""
#: admin/shortcode-builder/components/cta.php:43
-#: _out/admin/shortcode-builder/components/cta.php:43
msgid "Post #"
msgstr ""
#: admin/shortcode-builder/components/cta.php:52
-#: _out/admin/shortcode-builder/components/cta.php:52
msgid "Template"
msgstr ""
#: admin/shortcode-builder/components/cta.php:54
-#: _out/admin/shortcode-builder/components/cta.php:54
msgid "Select the repeater template that will display your call to action."
msgstr ""
#: admin/shortcode-builder/components/cta.php:61
-#: _out/admin/shortcode-builder/components/cta.php:61
msgid "-- Select Repeater --"
msgstr ""
#: admin/shortcode-builder/components/cta.php:83
-#: _out/admin/shortcode-builder/components/cta.php:83
msgid "Call to actions do NOT count as a post within an Ajax Load More loop."
msgstr ""
#: admin/shortcode-builder/components/cta.php:84
-#: _out/admin/shortcode-builder/components/cta.php:84
msgid "For example, if you set posts_per_page=\"5\" in your shortcode, 6 items will be displayed."
msgstr ""
#: admin/shortcode-builder/components/filters.php:15
-#: _out/admin/shortcode-builder/components/filters.php:15
msgid "Enable filters with this Ajax Load More instance."
msgstr ""
#: admin/shortcode-builder/components/filters.php:37
#: admin/shortcode-builder/components/single-post.php:47
-#: _out/admin/shortcode-builder/components/filters.php:37
-#: _out/admin/shortcode-builder/components/single-post.php:47
msgid "Target"
msgstr ""
#: admin/shortcode-builder/components/filters.php:37
-#: _out/admin/shortcode-builder/components/filters.php:37
msgid "A target ID is not required but it is highly recommended to avoid issues with querystring parsing on page load."
msgstr ""
#: admin/shortcode-builder/components/filters.php:38
-#: _out/admin/shortcode-builder/components/filters.php:38
msgid "Connect Ajax Load More to a specific filter instance by selecting the filter ID."
msgstr ""
#: admin/shortcode-builder/components/filters.php:57
-#: _out/admin/shortcode-builder/components/filters.php:57
msgid "-- Select Filter --"
msgstr ""
#: admin/shortcode-builder/components/filters.php:62
-#: _out/admin/shortcode-builder/components/filters.php:62
msgid "You don't have any filters! The first step is to create one"
msgstr ""
#: admin/shortcode-builder/components/filters.php:74
-#: _out/admin/shortcode-builder/components/filters.php:74
msgid "URLs"
msgstr ""
#: admin/shortcode-builder/components/filters.php:74
-#: _out/admin/shortcode-builder/components/filters.php:74
msgid "Querystring URLs allow users to share deep links to filtered content."
msgstr ""
#: admin/shortcode-builder/components/filters.php:75
-#: _out/admin/shortcode-builder/components/filters.php:75
msgid "Update the browser querystring with active filters values."
msgstr ""
#: admin/shortcode-builder/components/filters.php:95
-#: _out/admin/shortcode-builder/components/filters.php:95
msgid "Paging Parameters"
msgstr ""
#: admin/shortcode-builder/components/filters.php:95
-#: _out/admin/shortcode-builder/components/filters.php:95
msgid "Adding paging parameters will allow for deep linking to a paged filter."
msgstr ""
#: admin/shortcode-builder/components/filters.php:96
-#: _out/admin/shortcode-builder/components/filters.php:96
msgid "Add ?pg={x} to the browser querystring as users load additional pages."
msgstr ""
#: admin/shortcode-builder/components/filters.php:116
#: admin/shortcode-builder/components/paging.php:56
-#: _out/admin/shortcode-builder/components/filters.php:116
-#: _out/admin/shortcode-builder/components/paging.php:56
msgid "Scroll"
msgstr ""
#: admin/shortcode-builder/components/filters.php:116
-#: _out/admin/shortcode-builder/components/filters.php:116
msgid "When a user filters a list they will be auto scrolled back to the top."
msgstr ""
#: admin/shortcode-builder/components/filters.php:117
-#: _out/admin/shortcode-builder/components/filters.php:117
msgid "Automatically scroll users to the top of list after a filter update."
msgstr ""
#: admin/shortcode-builder/components/filters.php:138
#: admin/shortcode-builder/components/nextpage.php:125
#: admin/shortcode-builder/components/paging.php:70
-#: _out/admin/shortcode-builder/components/filters.php:138
-#: _out/admin/shortcode-builder/components/nextpage.php:125
-#: _out/admin/shortcode-builder/components/paging.php:70
msgid "Scroll Top"
msgstr ""
#: admin/shortcode-builder/components/filters.php:138
-#: _out/admin/shortcode-builder/components/filters.php:138
msgid "The Scroll Top value is the pixel position the window will be scrolled to."
msgstr ""
#: admin/shortcode-builder/components/filters.php:139
-#: _out/admin/shortcode-builder/components/filters.php:139
msgid "The offset top position of the window used with `Paging Parameters` and `Scroll`."
msgstr ""
#: admin/shortcode-builder/components/filters.php:144
-#: _out/admin/shortcode-builder/components/filters.php:144
msgid "Scroll Top Value"
msgstr ""
#: admin/shortcode-builder/components/filters.php:157
-#: _out/admin/shortcode-builder/components/filters.php:157
msgid "Analytics"
msgstr ""
#: admin/shortcode-builder/components/filters.php:157
-#: _out/admin/shortcode-builder/components/filters.php:157
msgid "Each time the filter is updated a pageview will be sent to Google Analytics."
msgstr ""
#: admin/shortcode-builder/components/filters.php:158
-#: _out/admin/shortcode-builder/components/filters.php:158
msgid "Send pageviews to Google Analytics."
msgstr ""
#: admin/shortcode-builder/components/filters.php:178
#: admin/shortcode-builder/components/rest-api.php:97
-#: _out/admin/shortcode-builder/components/filters.php:178
-#: _out/admin/shortcode-builder/components/rest-api.php:97
msgid "Debug Mode"
msgstr ""
#: admin/shortcode-builder/components/filters.php:179
-#: _out/admin/shortcode-builder/components/filters.php:179
msgid "Enable debugging of the Ajax Load More filter object in the browser console."
msgstr ""
#: admin/shortcode-builder/components/layouts.php:5
-#: _out/admin/shortcode-builder/components/layouts.php:5
msgid "Layouts"
msgstr ""
#: admin/shortcode-builder/components/layouts.php:10
-#: _out/admin/shortcode-builder/components/layouts.php:10
msgid "Enable custom layouts CSS with this Ajax Load More instance."
msgstr ""
#: admin/shortcode-builder/components/layouts.php:32
-#: _out/admin/shortcode-builder/components/layouts.php:32
msgid "Columns"
msgstr ""
#: admin/shortcode-builder/components/layouts.php:32
-#: _out/admin/shortcode-builder/components/layouts.php:32
msgid "Layouts are responsive out of the box and will respond automatically from desktop to mobile."
msgstr ""
#: admin/shortcode-builder/components/layouts.php:33
-#: _out/admin/shortcode-builder/components/layouts.php:33
msgid "Select the number of desktop columns for this layout."
msgstr ""
#: admin/shortcode-builder/components/layouts.php:43
-#: _out/admin/shortcode-builder/components/layouts.php:43
msgid "Column/Row Gap"
msgstr ""
#: admin/shortcode-builder/components/layouts.php:44
-#: _out/admin/shortcode-builder/components/layouts.php:44
msgid "Select the spacing for the CSS grid gap."
msgstr ""
#: admin/shortcode-builder/components/layouts.php:49
-#: _out/admin/shortcode-builder/components/layouts.php:49
msgid "Medium"
msgstr ""
#: admin/shortcode-builder/components/layouts.php:50
-#: _out/admin/shortcode-builder/components/layouts.php:50
msgid "Small"
msgstr ""
#: admin/shortcode-builder/components/layouts.php:51
-#: _out/admin/shortcode-builder/components/layouts.php:51
msgid "None (No Spacing)"
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:5
#: admin/shortcode-builder/components/paging.php:147
-#: _out/admin/shortcode-builder/components/nextpage.php:5
-#: _out/admin/shortcode-builder/components/paging.php:147
msgid "Next Page"
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:10
-#: _out/admin/shortcode-builder/components/nextpage.php:10
msgid "Enable the infinite scrolling of multipage WordPress content using the"
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:10
-#: _out/admin/shortcode-builder/components/nextpage.php:10
msgid "Quicktag or Page Break block."
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:46
-#: _out/admin/shortcode-builder/components/nextpage.php:46
msgid "URL Rewrite"
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:47
-#: _out/admin/shortcode-builder/components/nextpage.php:47
msgid "Update the browser address bar as pages come into view."
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:54
-#: _out/admin/shortcode-builder/components/nextpage.php:54
msgid "Yes, update the URL."
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:63
-#: _out/admin/shortcode-builder/components/nextpage.php:63
msgid "Page Title Template"
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:64
-#: _out/admin/shortcode-builder/components/nextpage.php:64
msgid "The page title template is used to update the browser title each time a new page is loaded."
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:65
-#: _out/admin/shortcode-builder/components/nextpage.php:65
msgid "Page title will NOT be updated if this field remains empty."
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:73
-#: _out/admin/shortcode-builder/components/nextpage.php:73
msgid "Template Tags"
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:75
-#: _out/admin/shortcode-builder/components/nextpage.php:75
msgid "Current Page Number"
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:76
-#: _out/admin/shortcode-builder/components/nextpage.php:76
msgid "Total Number of Pages"
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:77
-#: _out/admin/shortcode-builder/components/nextpage.php:77
msgid "Title of Post"
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:78
-#: _out/admin/shortcode-builder/components/nextpage.php:78
msgid "Site Title"
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:79
-#: _out/admin/shortcode-builder/components/nextpage.php:79
msgid "Site Tagline"
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:90
-#: _out/admin/shortcode-builder/components/nextpage.php:90
msgid "Google Analytics"
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:91
-#: _out/admin/shortcode-builder/components/nextpage.php:91
msgid "You must have a reference to your Google Analytics tracking code already on the page."
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:93
-#: _out/admin/shortcode-builder/components/nextpage.php:93
msgid "Each time a page is loaded it will count as a pageview."
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:100
-#: _out/admin/shortcode-builder/components/nextpage.php:100
msgid "Yes, send pageviews to Google Analytics."
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:109
-#: _out/admin/shortcode-builder/components/nextpage.php:109
msgid "Scroll to Page"
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:111
-#: _out/admin/shortcode-builder/components/nextpage.php:111
msgid "Scroll users automatically to the next page on 'Load More' action."
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:117
#: admin/shortcode-builder/components/paging.php:62
#: admin/shortcode-builder/shortcode-builder.php:411
-#: _out/admin/shortcode-builder/components/nextpage.php:117
-#: _out/admin/shortcode-builder/components/paging.php:62
-#: _out/admin/shortcode-builder/shortcode-builder.php:411
msgid "Enable Scrolling"
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:126
-#: _out/admin/shortcode-builder/components/nextpage.php:126
msgid "The scrolltop position of the browser window (used with scrolling and fwd/back browser buttons)."
msgstr ""
#: admin/shortcode-builder/components/nextpage.php:135
-#: _out/admin/shortcode-builder/components/nextpage.php:135
msgid "You must add the Next Page shortcode directly to your template file using the do_shortcode method."
msgstr ""
#: admin/shortcode-builder/components/paging.php:3
-#: _out/admin/shortcode-builder/components/paging.php:3
msgid "Paging"
msgstr ""
#: admin/shortcode-builder/components/paging.php:8
-#: _out/admin/shortcode-builder/components/paging.php:8
msgid "Replace infinite scrolling with a paged ajax navigation system."
msgstr ""
#: admin/shortcode-builder/components/paging.php:31
-#: _out/admin/shortcode-builder/components/paging.php:31
msgid "Navigation Classes"
msgstr ""
#: admin/shortcode-builder/components/paging.php:32
-#: _out/admin/shortcode-builder/components/paging.php:32
msgid "Add custom CSS classes to the paging navigation menu."
msgstr ""
#: admin/shortcode-builder/components/paging.php:43
-#: _out/admin/shortcode-builder/components/paging.php:43
msgid "Show at Most"
msgstr ""
#: admin/shortcode-builder/components/paging.php:44
-#: _out/admin/shortcode-builder/components/paging.php:44
msgid "The maximum amount of page menu items to show at a time.
0 = no maximum"
msgstr ""
#: admin/shortcode-builder/components/paging.php:57
-#: _out/admin/shortcode-builder/components/paging.php:57
msgid "Move users to the top of the Ajax Load More container after a paging click event."
msgstr ""
#: admin/shortcode-builder/components/paging.php:71
-#: _out/admin/shortcode-builder/components/paging.php:71
msgid "The scrolltop position of the browser window when scrolling back to top."
msgstr ""
#: admin/shortcode-builder/components/paging.php:82
-#: _out/admin/shortcode-builder/components/paging.php:82
msgid "Controls"
msgstr ""
#: admin/shortcode-builder/components/paging.php:83
-#: _out/admin/shortcode-builder/components/paging.php:83
msgid "Show first/last and next/previous buttons in the paging navigation."
msgstr ""
#: admin/shortcode-builder/components/paging.php:105
-#: _out/admin/shortcode-builder/components/paging.php:105
msgid "First Page"
msgstr ""
#: admin/shortcode-builder/components/paging.php:105
#: admin/shortcode-builder/components/paging.php:119
-#: _out/admin/shortcode-builder/components/paging.php:105
-#: _out/admin/shortcode-builder/components/paging.php:119
msgid "Leave empty to not render button."
msgstr ""
#: admin/shortcode-builder/components/paging.php:107
-#: _out/admin/shortcode-builder/components/paging.php:107
msgid "Label for the First Page button."
msgstr ""
#: admin/shortcode-builder/components/paging.php:119
-#: _out/admin/shortcode-builder/components/paging.php:119
msgid "Last Page"
msgstr ""
#: admin/shortcode-builder/components/paging.php:121
-#: _out/admin/shortcode-builder/components/paging.php:121
msgid "Label for the Last Page button."
msgstr ""
#: admin/shortcode-builder/components/paging.php:133
-#: _out/admin/shortcode-builder/components/paging.php:133
msgid "Previous Page"
msgstr ""
#: admin/shortcode-builder/components/paging.php:135
-#: _out/admin/shortcode-builder/components/paging.php:135
msgid "Label for the Previous Page button."
msgstr ""
#: admin/shortcode-builder/components/paging.php:149
-#: _out/admin/shortcode-builder/components/paging.php:149
msgid "Label for the Next Page button."
msgstr ""
#: admin/shortcode-builder/components/preloaded.php:3
-#: _out/admin/shortcode-builder/components/preloaded.php:3
msgid "Preloaded"
msgstr ""
#: admin/shortcode-builder/components/preloaded.php:8
-#: _out/admin/shortcode-builder/components/preloaded.php:8
msgid "Preload posts prior to making Ajax requests."
msgstr ""
#: admin/shortcode-builder/components/preloaded.php:30
-#: _out/admin/shortcode-builder/components/preloaded.php:30
msgid "Preload Amount"
msgstr ""
#: admin/shortcode-builder/components/preloaded.php:31
-#: _out/admin/shortcode-builder/components/preloaded.php:31
msgid "Enter the number of posts to preload."
msgstr ""
#: admin/shortcode-builder/components/rest-api.php:18
-#: _out/admin/shortcode-builder/components/rest-api.php:18
msgid "REST API"
msgstr ""
#: admin/shortcode-builder/components/rest-api.php:23
-#: _out/admin/shortcode-builder/components/rest-api.php:23
msgid "Enable the WordPress REST API."
msgstr ""
#: admin/shortcode-builder/components/rest-api.php:46
-#: _out/admin/shortcode-builder/components/rest-api.php:46
msgid "Base URL"
msgstr ""
#: admin/shortcode-builder/components/rest-api.php:47
-#: _out/admin/shortcode-builder/components/rest-api.php:47
msgid "Set a default Base URL in the Ajax Load More settings panel"
msgstr ""
#: admin/shortcode-builder/components/rest-api.php:48
-#: _out/admin/shortcode-builder/components/rest-api.php:48
msgid "Enter the base URL to your installation of the REST API."
msgstr ""
#: admin/shortcode-builder/components/rest-api.php:59
-#: _out/admin/shortcode-builder/components/rest-api.php:59
msgid "Namespace"
msgstr ""
#: admin/shortcode-builder/components/rest-api.php:60
-#: _out/admin/shortcode-builder/components/rest-api.php:60
msgid "Set a default Namespace in the Ajax Load More settings panel"
msgstr ""
#: admin/shortcode-builder/components/rest-api.php:61
-#: _out/admin/shortcode-builder/components/rest-api.php:61
msgid "Enter the custom namespace for this Ajax Load More query."
msgstr ""
#: admin/shortcode-builder/components/rest-api.php:72
-#: _out/admin/shortcode-builder/components/rest-api.php:72
msgid "Endpoint"
msgstr ""
#: admin/shortcode-builder/components/rest-api.php:73
-#: _out/admin/shortcode-builder/components/rest-api.php:73
msgid "Set a default Endpoint in the Ajax Load More settings panel"
msgstr ""
#: admin/shortcode-builder/components/rest-api.php:74
-#: _out/admin/shortcode-builder/components/rest-api.php:74
msgid "Enter your custom endpoint for this Ajax Load More query."
msgstr ""
#: admin/shortcode-builder/components/rest-api.php:85
-#: _out/admin/shortcode-builder/components/rest-api.php:85
msgid "Template ID"
msgstr ""
#: admin/shortcode-builder/components/rest-api.php:85
-#: _out/admin/shortcode-builder/components/rest-api.php:85
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"
msgstr ""
#: admin/shortcode-builder/components/rest-api.php:86
-#: _out/admin/shortcode-builder/components/rest-api.php:86
msgid "Enter the ID of your javascript template.
e.g. tmpl-alm-template = alm-template"
msgstr ""
@@ -1871,150 +1408,109 @@ msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1218
#: admin/shortcode-builder/shortcode-builder.php:1247
#: admin/shortcode-builder/shortcode-builder.php:1278
-#: _out/admin/shortcode-builder/components/rest-api.php:86
-#: _out/admin/shortcode-builder/components/single-post.php:155
-#: _out/admin/shortcode-builder/components/single-post.php:204
-#: _out/admin/shortcode-builder/shortcode-builder.php:237
-#: _out/admin/shortcode-builder/shortcode-builder.php:251
-#: _out/admin/shortcode-builder/shortcode-builder.php:274
-#: _out/admin/shortcode-builder/shortcode-builder.php:745
-#: _out/admin/shortcode-builder/shortcode-builder.php:942
-#: _out/admin/shortcode-builder/shortcode-builder.php:1036
-#: _out/admin/shortcode-builder/shortcode-builder.php:1177
-#: _out/admin/shortcode-builder/shortcode-builder.php:1218
-#: _out/admin/shortcode-builder/shortcode-builder.php:1247
-#: _out/admin/shortcode-builder/shortcode-builder.php:1278
msgid "View Example"
msgstr ""
#: admin/shortcode-builder/components/rest-api.php:98
-#: _out/admin/shortcode-builder/components/rest-api.php:98
msgid "Enable debugging (console.log) of REST API responses in the browser console. "
msgstr ""
#: admin/shortcode-builder/components/rest-api.php:117
-#: _out/admin/shortcode-builder/components/rest-api.php:117
msgid "Visit http://v2.wp-api.org for documentation on creating custom Endpoints for use with Ajax Load More."
msgstr ""
#: admin/shortcode-builder/components/seo.php:4
-#: _out/admin/shortcode-builder/components/seo.php:4
msgid "Search Engine Optimization"
msgstr ""
#: admin/shortcode-builder/components/seo.php:8
-#: _out/admin/shortcode-builder/components/seo.php:8
msgid "Enable address bar URL rewrites as users page through ajax loaded content."
msgstr ""
#: admin/shortcode-builder/components/single-post.php:7
-#: _out/admin/shortcode-builder/components/single-post.php:7
msgid "Single Posts"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:12
-#: _out/admin/shortcode-builder/components/single-post.php:12
msgid "Enable the infinite scrolling of single posts."
msgstr ""
#: admin/shortcode-builder/components/single-post.php:47
-#: _out/admin/shortcode-builder/components/single-post.php:47
msgid "Repeater Templates are not required when using the Target implementation."
msgstr ""
#: admin/shortcode-builder/components/single-post.php:48
-#: _out/admin/shortcode-builder/components/single-post.php:48
msgid "Enter the ID or classname of HTML element that wraps your single post content."
msgstr ""
#: admin/shortcode-builder/components/single-post.php:50
-#: _out/admin/shortcode-builder/components/single-post.php:50
msgid "View Guide"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:61
-#: _out/admin/shortcode-builder/components/single-post.php:61
msgid "Post Ordering"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:61
-#: _out/admin/shortcode-builder/components/single-post.php:61
msgid "By default, the Single Posts add-on will use the core WordPress `get_previous_post` function, but you can adjust that here."
msgstr ""
#: admin/shortcode-builder/components/single-post.php:62
-#: _out/admin/shortcode-builder/components/single-post.php:62
msgid "Select the posts loading order."
msgstr ""
#: admin/shortcode-builder/components/single-post.php:68
-#: _out/admin/shortcode-builder/components/single-post.php:68
msgid "Previous Post (by date DESC)"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:69
-#: _out/admin/shortcode-builder/components/single-post.php:69
msgid "Next Post (by date ASC)"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:70
#: admin/shortcode-builder/components/single-post.php:87
-#: _out/admin/shortcode-builder/components/single-post.php:70
-#: _out/admin/shortcode-builder/components/single-post.php:87
msgid "Latest Post (Start from most recent)"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:71
-#: _out/admin/shortcode-builder/components/single-post.php:71
msgid "Post IDs (Array)"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:72
-#: _out/admin/shortcode-builder/components/single-post.php:72
msgid "Custom Query"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:81
-#: _out/admin/shortcode-builder/components/single-post.php:81
msgid "Custom Query Order"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:82
-#: _out/admin/shortcode-builder/components/single-post.php:82
msgid "Select the post ordering of the custom query."
msgstr ""
#: admin/shortcode-builder/components/single-post.php:86
-#: _out/admin/shortcode-builder/components/single-post.php:86
msgid "Previous Post (Continue by date DESC)"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:96
-#: _out/admin/shortcode-builder/components/single-post.php:96
msgid "Post ID Array"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:97
-#: _out/admin/shortcode-builder/components/single-post.php:97
msgid "A comma separated list of post ID's to query by order."
msgstr ""
#: admin/shortcode-builder/components/single-post.php:110
#: admin/shortcode-builder/components/term-query.php:39
#: admin/shortcode-builder/shortcode-builder.php:1119
-#: _out/admin/shortcode-builder/components/single-post.php:110
-#: _out/admin/shortcode-builder/components/term-query.php:39
-#: _out/admin/shortcode-builder/shortcode-builder.php:1119
msgid "Taxonomy"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:110
-#: _out/admin/shortcode-builder/components/single-post.php:110
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."
msgstr ""
#: admin/shortcode-builder/components/single-post.php:111
-#: _out/admin/shortcode-builder/components/single-post.php:111
msgid "Query previous posts from the same taxonomy term(s)."
msgstr ""
@@ -2022,227 +1518,176 @@ msgstr ""
#: admin/shortcode-builder/includes/tax-query-options.php:13
#: admin/shortcode-builder/includes/tax-query-options.php:58
#: admin/shortcode-builder/includes/tax-query-options.php:101
-#: _out/admin/shortcode-builder/components/single-post.php:124
-#: _out/admin/shortcode-builder/includes/tax-query-options.php:13
-#: _out/admin/shortcode-builder/includes/tax-query-options.php:58
-#: _out/admin/shortcode-builder/includes/tax-query-options.php:101
msgid "Select Taxonomy"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:125
#: admin/shortcode-builder/components/term-query.php:45
#: admin/shortcode-builder/shortcode-builder.php:935
-#: _out/admin/shortcode-builder/components/single-post.php:125
-#: _out/admin/shortcode-builder/components/term-query.php:45
-#: _out/admin/shortcode-builder/shortcode-builder.php:935
msgid "Category"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:126
#: admin/shortcode-builder/components/term-query.php:46
#: admin/shortcode-builder/shortcode-builder.php:1028
-#: _out/admin/shortcode-builder/components/single-post.php:126
-#: _out/admin/shortcode-builder/components/term-query.php:46
-#: _out/admin/shortcode-builder/shortcode-builder.php:1028
msgid "Tag"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:140
-#: _out/admin/shortcode-builder/components/single-post.php:140
msgid "Excluded Terms "
msgstr ""
#: admin/shortcode-builder/components/single-post.php:140
-#: _out/admin/shortcode-builder/components/single-post.php:140
msgid "A comma-separated list of excluded terms by ID."
msgstr ""
#: admin/shortcode-builder/components/single-post.php:141
-#: _out/admin/shortcode-builder/components/single-post.php:141
msgid "Exclude posts by term ID from the previous post query."
msgstr ""
#: admin/shortcode-builder/components/single-post.php:153
-#: _out/admin/shortcode-builder/components/single-post.php:153
msgid "Post Preview"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:154
-#: _out/admin/shortcode-builder/components/single-post.php:154
msgid "Show a preview of Ajax loaded posts and have the user click to load the remainder of the post."
msgstr ""
#: admin/shortcode-builder/components/single-post.php:178
-#: _out/admin/shortcode-builder/components/single-post.php:178
msgid "Button Label"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:179
-#: _out/admin/shortcode-builder/components/single-post.php:179
msgid "Enter a label for the preview button."
msgstr ""
#: admin/shortcode-builder/components/single-post.php:189
#: admin/shortcode-builder/components/single-post.php:251
-#: _out/admin/shortcode-builder/components/single-post.php:189
-#: _out/admin/shortcode-builder/components/single-post.php:251
msgid "Height"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:190
-#: _out/admin/shortcode-builder/components/single-post.php:190
msgid "Set the initial height of the preview in pixels."
msgstr ""
#: admin/shortcode-builder/components/single-post.php:202
-#: _out/admin/shortcode-builder/components/single-post.php:202
msgid "Reading Progress Bar"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:203
-#: _out/admin/shortcode-builder/components/single-post.php:203
msgid "Display a reading progress bar indicator at the top or bottom of the browser window."
msgstr ""
#: admin/shortcode-builder/components/single-post.php:230
-#: _out/admin/shortcode-builder/components/single-post.php:230
msgid "Position"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:231
-#: _out/admin/shortcode-builder/components/single-post.php:231
msgid "Select the window position of the progress bar."
msgstr ""
#: admin/shortcode-builder/components/single-post.php:238
-#: _out/admin/shortcode-builder/components/single-post.php:238
msgid "Top"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:242
-#: _out/admin/shortcode-builder/components/single-post.php:242
msgid "Bottom"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:252
-#: _out/admin/shortcode-builder/components/single-post.php:252
msgid "Select the height of the progress bar in pixels."
msgstr ""
#: admin/shortcode-builder/components/single-post.php:263
-#: _out/admin/shortcode-builder/components/single-post.php:263
msgid "Colors"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:264
-#: _out/admin/shortcode-builder/components/single-post.php:264
msgid "Enter the hex color values of the reading progress bar"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:265
#: admin/shortcode-builder/shortcode-builder.php:771
-#: _out/admin/shortcode-builder/components/single-post.php:265
-#: _out/admin/shortcode-builder/shortcode-builder.php:771
msgid "Default:"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:272
-#: _out/admin/shortcode-builder/components/single-post.php:272
msgid "Foreground Color:"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:279
-#: _out/admin/shortcode-builder/components/single-post.php:279
msgid "Background Color:"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:279
-#: _out/admin/shortcode-builder/components/single-post.php:279
msgid "Leave empty for a transparent background"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:302
-#: _out/admin/shortcode-builder/components/single-post.php:302
msgid "Elementor"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:303
-#: _out/admin/shortcode-builder/components/single-post.php:303
msgid "Set Elementor true if you are using Elementor templates to build single posts."
msgstr ""
#: admin/shortcode-builder/components/single-post.php:304
-#: _out/admin/shortcode-builder/components/single-post.php:304
msgid "View Blog Post"
msgstr ""
#: admin/shortcode-builder/components/single-post.php:326
-#: _out/admin/shortcode-builder/components/single-post.php:326
msgid "You must add the Single Post shortcode directly to your single template file using the do_shortcode method."
msgstr ""
#: admin/shortcode-builder/components/term-query.php:3
-#: _out/admin/shortcode-builder/components/term-query.php:3
msgid "Terms"
msgstr ""
#: admin/shortcode-builder/components/term-query.php:8
-#: _out/admin/shortcode-builder/components/term-query.php:8
msgid "Enable Terms Query."
msgstr ""
#: admin/shortcode-builder/components/term-query.php:40
-#: _out/admin/shortcode-builder/components/term-query.php:40
msgid "Select a taxonomy to query."
msgstr ""
#: admin/shortcode-builder/components/term-query.php:61
-#: _out/admin/shortcode-builder/components/term-query.php:61
msgid "Number"
msgstr ""
#: admin/shortcode-builder/components/term-query.php:61
-#: _out/admin/shortcode-builder/components/term-query.php:61
msgid "Leave empty to return all terms."
msgstr ""
#: admin/shortcode-builder/components/term-query.php:62
-#: _out/admin/shortcode-builder/components/term-query.php:62
msgid "The number of terms to return per page."
msgstr ""
#: admin/shortcode-builder/components/term-query.php:73
-#: _out/admin/shortcode-builder/components/term-query.php:73
msgid "Hide Empty"
msgstr ""
#: admin/shortcode-builder/components/term-query.php:74
-#: _out/admin/shortcode-builder/components/term-query.php:74
msgid "Whether to hide terms not assigned to any posts."
msgstr ""
#: admin/shortcode-builder/components/users.php:3
-#: _out/admin/shortcode-builder/components/users.php:3
msgid "Users"
msgstr ""
#: admin/shortcode-builder/components/users.php:7
-#: _out/admin/shortcode-builder/components/users.php:7
msgid "Infinite scroll WordPress users"
msgstr ""
#: admin/shortcode-builder/components/users.php:30
-#: _out/admin/shortcode-builder/components/users.php:30
msgid "User Role"
msgstr ""
#: admin/shortcode-builder/components/users.php:31
-#: _out/admin/shortcode-builder/components/users.php:31
msgid "Select the role of user to be displayed"
msgstr ""
#: admin/shortcode-builder/components/users.php:36
-#: _out/admin/shortcode-builder/components/users.php:36
msgid "All Roles"
msgstr ""
@@ -2250,15 +1695,10 @@ msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:939
#: admin/shortcode-builder/shortcode-builder.php:1032
#: admin/shortcode-builder/shortcode-builder.php:1265
-#: _out/admin/shortcode-builder/components/users.php:56
-#: _out/admin/shortcode-builder/shortcode-builder.php:939
-#: _out/admin/shortcode-builder/shortcode-builder.php:1032
-#: _out/admin/shortcode-builder/shortcode-builder.php:1265
msgid "Include"
msgstr ""
#: admin/shortcode-builder/components/users.php:58
-#: _out/admin/shortcode-builder/components/users.php:58
msgid "A comma separated list of users to be included by ID"
msgstr ""
@@ -2266,1618 +1706,1279 @@ msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:986
#: admin/shortcode-builder/shortcode-builder.php:1081
#: admin/shortcode-builder/shortcode-builder.php:1276
-#: _out/admin/shortcode-builder/components/users.php:70
-#: _out/admin/shortcode-builder/shortcode-builder.php:986
-#: _out/admin/shortcode-builder/shortcode-builder.php:1081
-#: _out/admin/shortcode-builder/shortcode-builder.php:1276
msgid "Exclude"
msgstr ""
#: admin/shortcode-builder/components/users.php:72
-#: _out/admin/shortcode-builder/components/users.php:72
msgid "A comma separated list of users to be excluded by ID"
msgstr ""
#: admin/shortcode-builder/components/users.php:84
-#: _out/admin/shortcode-builder/components/users.php:84
msgid "Users Per Page"
msgstr ""
#: admin/shortcode-builder/components/users.php:85
-#: _out/admin/shortcode-builder/components/users.php:85
msgid "The number of users to show."
msgstr ""
#: admin/shortcode-builder/components/users.php:96
-#: _out/admin/shortcode-builder/components/users.php:96
msgid "Orderby"
msgstr ""
#: admin/shortcode-builder/components/users.php:97
-#: _out/admin/shortcode-builder/components/users.php:97
msgid "Sort users by Order and Orderby parameters"
msgstr ""
#: admin/shortcode-builder/components/users.php:102
#: admin/shortcode-builder/shortcode-builder.php:1321
-#: _out/admin/shortcode-builder/components/users.php:102
-#: _out/admin/shortcode-builder/shortcode-builder.php:1321
msgid "Order"
msgstr ""
#: admin/shortcode-builder/components/users.php:109
#: admin/shortcode-builder/shortcode-builder.php:1328
-#: _out/admin/shortcode-builder/components/users.php:109
-#: _out/admin/shortcode-builder/shortcode-builder.php:1328
msgid "Order By"
msgstr ""
#: admin/shortcode-builder/includes/meta-query-options.php:4
-#: _out/admin/shortcode-builder/includes/meta-query-options.php:4
msgid "Key (Name):"
msgstr ""
#: admin/shortcode-builder/includes/meta-query-options.php:5
-#: _out/admin/shortcode-builder/includes/meta-query-options.php:5
msgid "Enter custom field key(name)"
msgstr ""
#: admin/shortcode-builder/includes/meta-query-options.php:8
-#: _out/admin/shortcode-builder/includes/meta-query-options.php:8
msgid "Value:"
msgstr ""
#: admin/shortcode-builder/includes/meta-query-options.php:8
-#: _out/admin/shortcode-builder/includes/meta-query-options.php:8
msgid "Query multiple values by splitting each value with a comma - e.g. value, value2, value3 etc."
msgstr ""
#: admin/shortcode-builder/includes/meta-query-options.php:9
-#: _out/admin/shortcode-builder/includes/meta-query-options.php:9
msgid "Enter custom field value(s)"
msgstr ""
#: admin/shortcode-builder/includes/meta-query-options.php:13
-#: _out/admin/shortcode-builder/includes/meta-query-options.php:13
msgid "Operator:"
msgstr ""
#: admin/shortcode-builder/includes/meta-query-options.php:33
-#: _out/admin/shortcode-builder/includes/meta-query-options.php:33
msgid "Type:"
msgstr ""
#: admin/shortcode-builder/includes/tax-query-options.php:11
#: admin/shortcode-builder/includes/tax-query-options.php:55
#: admin/shortcode-builder/includes/tax-query-options.php:98
-#: _out/admin/shortcode-builder/includes/tax-query-options.php:11
-#: _out/admin/shortcode-builder/includes/tax-query-options.php:55
-#: _out/admin/shortcode-builder/includes/tax-query-options.php:98
msgid "Taxonomy:"
msgstr ""
#: admin/shortcode-builder/includes/tax-query-options.php:20
#: admin/shortcode-builder/includes/tax-query-options.php:65
#: admin/shortcode-builder/includes/tax-query-options.php:108
-#: _out/admin/shortcode-builder/includes/tax-query-options.php:20
-#: _out/admin/shortcode-builder/includes/tax-query-options.php:65
-#: _out/admin/shortcode-builder/includes/tax-query-options.php:108
msgid "Taxonomy Terms:"
msgstr ""
#: admin/shortcode-builder/includes/tax-query-options.php:25
#: admin/shortcode-builder/includes/tax-query-options.php:70
#: admin/shortcode-builder/includes/tax-query-options.php:113
-#: _out/admin/shortcode-builder/includes/tax-query-options.php:25
-#: _out/admin/shortcode-builder/includes/tax-query-options.php:70
-#: _out/admin/shortcode-builder/includes/tax-query-options.php:113
msgid "Taxonomy Operator:"
msgstr ""
#: admin/shortcode-builder/includes/tax-query-options.php:44
#: admin/shortcode-builder/shortcode-builder.php:1153
-#: _out/admin/shortcode-builder/includes/tax-query-options.php:44
-#: _out/admin/shortcode-builder/shortcode-builder.php:1153
msgid "Relation:"
msgstr ""
#: admin/shortcode-builder/includes/tax-query-options.php:44
-#: _out/admin/shortcode-builder/includes/tax-query-options.php:44
msgid "The logical relationship between each taxonomy when there is more than one."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:23
#: admin/shortcode-builder/shortcode-builder.php:89
-#: _out/admin/shortcode-builder/shortcode-builder.php:23
-#: _out/admin/shortcode-builder/shortcode-builder.php:89
msgid "Display Settings"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:24
#: admin/shortcode-builder/shortcode-builder.php:799
-#: _out/admin/shortcode-builder/shortcode-builder.php:24
-#: _out/admin/shortcode-builder/shortcode-builder.php:799
msgid "Query Parameters"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:25
#: admin/shortcode-builder/shortcode-builder.php:1395
-#: _out/admin/shortcode-builder/shortcode-builder.php:25
-#: _out/admin/shortcode-builder/shortcode-builder.php:1395
msgid "Integrations"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:40
-#: _out/admin/shortcode-builder/shortcode-builder.php:40
msgid "Configure your Ajax Load More add-ons."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:71
-#: _out/admin/shortcode-builder/shortcode-builder.php:71
msgid "Configure your Ajax Load More extensions."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:91
-#: _out/admin/shortcode-builder/shortcode-builder.php:91
msgid "Display Settings allow you create a custom Ajax Load More experience for your visitors."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:99
-#: _out/admin/shortcode-builder/shortcode-builder.php:99
msgid "Options"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:105
-#: _out/admin/shortcode-builder/shortcode-builder.php:105
msgid "ID"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:105
-#: _out/admin/shortcode-builder/shortcode-builder.php:105
msgid "Adding a unique ID will allow you target this specific Ajax Load More instance with the alm_query_args_id() filter"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:106
-#: _out/admin/shortcode-builder/shortcode-builder.php:106
msgid "Set a unique ID for this Ajax Load More instance."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:107
#: admin/views/repeater-templates.php:151
#: admin/views/repeater-templates.php:506
-#: _out/admin/shortcode-builder/shortcode-builder.php:107
-#: _out/admin/views/repeater-templates.php:151
-#: _out/admin/views/repeater-templates.php:506
msgid "Learn More"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:113
-#: _out/admin/shortcode-builder/shortcode-builder.php:113
msgid "Generate Unique ID"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:125
-#: _out/admin/shortcode-builder/shortcode-builder.php:125
msgid "You can define a global button/loading style on the Ajax Load More settings screen"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:126
-#: _out/admin/shortcode-builder/shortcode-builder.php:126
msgid "Select an Ajax loading style - you can choose between a Button or Infinite Scroll."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:154
-#: _out/admin/shortcode-builder/shortcode-builder.php:154
msgid "CLICK TO PREVIEW"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:167
-#: _out/admin/shortcode-builder/shortcode-builder.php:167
msgid "You can define a global container type on the Ajax Load More settings screen"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:168
-#: _out/admin/shortcode-builder/shortcode-builder.php:168
msgid "Override the global Container Type set in ALM Settings."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:197
-#: _out/admin/shortcode-builder/shortcode-builder.php:197
msgid "You can define global container classes on the Ajax Load More settings screen"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:199
-#: _out/admin/shortcode-builder/shortcode-builder.php:199
msgid "Add custom CSS classes to the .alm-listing container."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:213
-#: _out/admin/shortcode-builder/shortcode-builder.php:213
msgid "Pause"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:214
-#: _out/admin/shortcode-builder/shortcode-builder.php:214
msgid "Do not load Ajax content until the user clicks or interacts with the Load More button."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:235
-#: _out/admin/shortcode-builder/shortcode-builder.php:235
msgid "Destroy After"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:236
-#: _out/admin/shortcode-builder/shortcode-builder.php:236
msgid "Remove Ajax Load More functionality after {n} number of pages have been loaded."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:249
-#: _out/admin/shortcode-builder/shortcode-builder.php:249
msgid "Images Loaded"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:249
-#: _out/admin/shortcode-builder/shortcode-builder.php:249
msgid "Background images are not supported."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:250
-#: _out/admin/shortcode-builder/shortcode-builder.php:250
msgid "Wait for all images to load before displaying ajax loaded content."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:272
-#: _out/admin/shortcode-builder/shortcode-builder.php:272
msgid "Loading Placeholder"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:272
-#: _out/admin/shortcode-builder/shortcode-builder.php:272
msgid "A loading placeholder can help the understand content is about to rendered."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:273
-#: _out/admin/shortcode-builder/shortcode-builder.php:273
msgid "Display a placeholder image while Ajax content is being loaded."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:291
-#: _out/admin/shortcode-builder/shortcode-builder.php:291
msgid "URL:"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:303
-#: _out/admin/shortcode-builder/shortcode-builder.php:303
msgid "No Results Text"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:303
-#: _out/admin/shortcode-builder/shortcode-builder.php:303
msgid "HTML is allowed, however when adding quote marks in classnames or IDs you must single quotes as shown in the example."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:304
-#: _out/admin/shortcode-builder/shortcode-builder.php:304
msgid "Add text/html to be displayed when no results are returned in the Ajax query."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:304
-#: _out/admin/shortcode-builder/shortcode-builder.php:304
msgid "e.g. <div class='no-results'>Sorry, nothing found in this query</div>"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:321
-#: _out/admin/shortcode-builder/shortcode-builder.php:321
msgid "Template Selection"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:326
-#: _out/admin/shortcode-builder/shortcode-builder.php:326
msgid "Repeater Template"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:328
-#: _out/admin/shortcode-builder/shortcode-builder.php:328
msgid "Select which Repeater Template you would like to use."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:362
-#: _out/admin/shortcode-builder/shortcode-builder.php:362
msgid "Button Labels"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:367
-#: _out/admin/shortcode-builder/shortcode-builder.php:367
msgid "Label"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:368
-#: _out/admin/shortcode-builder/shortcode-builder.php:368
msgid "Customize the text of the Load More button."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:379
-#: _out/admin/shortcode-builder/shortcode-builder.php:379
msgid "Loading Label"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:379
-#: _out/admin/shortcode-builder/shortcode-builder.php:379
msgid "Leave field empty to not update button text while loading content"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:380
-#: _out/admin/shortcode-builder/shortcode-builder.php:380
msgid "Update the text of the Load More button while content is loading."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:384
-#: _out/admin/shortcode-builder/shortcode-builder.php:384
msgid "Loading Posts..."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:391
-#: _out/admin/shortcode-builder/shortcode-builder.php:391
msgid "Done Label"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:391
-#: _out/admin/shortcode-builder/shortcode-builder.php:391
msgid "Leave field empty to not update button text"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:392
-#: _out/admin/shortcode-builder/shortcode-builder.php:392
msgid "Update the text of the Load More button when no content remains to be loaded."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:396
-#: _out/admin/shortcode-builder/shortcode-builder.php:396
msgid "No Posts Remain..."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:407
-#: _out/admin/shortcode-builder/shortcode-builder.php:407
msgid "Scrolling"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:412
-#: _out/admin/shortcode-builder/shortcode-builder.php:412
msgid "Load more posts as the user scrolls the page."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:438
-#: _out/admin/shortcode-builder/shortcode-builder.php:438
msgid "Scroll Distance"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:438
-#: _out/admin/shortcode-builder/shortcode-builder.php:438
msgid "Distance is based on the position of the loading button from the bottom of the screen"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:439
-#: _out/admin/shortcode-builder/shortcode-builder.php:439
msgid "The distance from the bottom of the screen to trigger loading of posts. (Default = 100)"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:440
-#: _out/admin/shortcode-builder/shortcode-builder.php:440
msgid "Pro-tip"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:440
-#: _out/admin/shortcode-builder/shortcode-builder.php:440
msgid "Use a negative number (-200) to trigger a post load before the button is in view"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:458
-#: _out/admin/shortcode-builder/shortcode-builder.php:458
msgid "Maximum Pages"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:458
-#: _out/admin/shortcode-builder/shortcode-builder.php:458
msgid "If using an Infinite Scroll button style you should set this to 0"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:459
-#: _out/admin/shortcode-builder/shortcode-builder.php:459
msgid "Maximum number of pages to load while scrolling. (0 = unlimited)"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:471
-#: _out/admin/shortcode-builder/shortcode-builder.php:471
msgid "Pause Override"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:472
-#: _out/admin/shortcode-builder/shortcode-builder.php:472
msgid "Override the Pause parameter and trigger the initial loading of posts on scroll."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:494
-#: _out/admin/shortcode-builder/shortcode-builder.php:494
msgid "Scroll Container"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:495
-#: _out/admin/shortcode-builder/shortcode-builder.php:495
msgid "Confine Ajax Load More scrolling to a parent container element."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:519
-#: _out/admin/shortcode-builder/shortcode-builder.php:519
msgid "Container Element"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:520
-#: _out/admin/shortcode-builder/shortcode-builder.php:520
msgid "Enter the ID or classname of the parent container element to be used as the scrolling container."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:532
-#: _out/admin/shortcode-builder/shortcode-builder.php:532
msgid "Scroll Direction"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:532
-#: _out/admin/shortcode-builder/shortcode-builder.php:532
msgid "Scroll Direction only works when using a Scroll Container."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:533
-#: _out/admin/shortcode-builder/shortcode-builder.php:533
msgid "Select the direction Ajax Load More should scroll to load posts."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:539
-#: _out/admin/shortcode-builder/shortcode-builder.php:539
msgid "Vertical"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:543
-#: _out/admin/shortcode-builder/shortcode-builder.php:543
msgid "Horizontal"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:558
-#: _out/admin/shortcode-builder/shortcode-builder.php:558
msgid "Transition"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:563
-#: _out/admin/shortcode-builder/shortcode-builder.php:563
msgid "Type"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:564
-#: _out/admin/shortcode-builder/shortcode-builder.php:564
msgid "Select a loading transition style."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:569
-#: _out/admin/shortcode-builder/shortcode-builder.php:569
msgid "Fade In"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:570
-#: _out/admin/shortcode-builder/shortcode-builder.php:570
msgid "Masonry"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:584
-#: _out/admin/shortcode-builder/shortcode-builder.php:584
msgid "Masonry Options"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:584
-#: _out/admin/shortcode-builder/shortcode-builder.php:584
msgid "Ajax Load More does not support all available Masonry options"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:585
-#: _out/admin/shortcode-builder/shortcode-builder.php:585
msgid "The following Masonry options are supported by Ajax Load More."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:591
-#: _out/admin/shortcode-builder/shortcode-builder.php:591
msgid "Item Selector"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:591
-#: _out/admin/shortcode-builder/shortcode-builder.php:591
msgid "Item Selector is required for Masonry to target each element loaded with Ajax."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:592
-#: _out/admin/shortcode-builder/shortcode-builder.php:592
msgid "Enter the target classname of each masonry item."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:606
-#: _out/admin/shortcode-builder/shortcode-builder.php:606
msgid "Column Width"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:606
-#: _out/admin/shortcode-builder/shortcode-builder.php:606
msgid "If columnWidth is not set, Masonry will use the outer width of the first Item Selector."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:607
-#: _out/admin/shortcode-builder/shortcode-builder.php:607
msgid "Enter the columnWidth of the masonry items."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:620
-#: _out/admin/shortcode-builder/shortcode-builder.php:620
msgid "Animation Type"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:620
-#: _out/admin/shortcode-builder/shortcode-builder.php:620
msgid "All Masonry animations include a fade-in effect as items are loaded."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:621
-#: _out/admin/shortcode-builder/shortcode-builder.php:621
msgid "Select a loading transition for Masonry items."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:629
-#: _out/admin/shortcode-builder/shortcode-builder.php:629
msgid "Default (Zoom)"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:630
-#: _out/admin/shortcode-builder/shortcode-builder.php:630
msgid "Items scale up from 50% to 100% size on load."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:636
-#: _out/admin/shortcode-builder/shortcode-builder.php:636
msgid "Zoom Out"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:637
-#: _out/admin/shortcode-builder/shortcode-builder.php:637
msgid "Items scale down from 125% to 100% size on load."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:643
-#: _out/admin/shortcode-builder/shortcode-builder.php:643
msgid "Slide Up"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:644
-#: _out/admin/shortcode-builder/shortcode-builder.php:644
msgid "Items animate up as they are loaded into view."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:650
-#: _out/admin/shortcode-builder/shortcode-builder.php:650
msgid "Slide Down"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:651
-#: _out/admin/shortcode-builder/shortcode-builder.php:651
msgid "Items animate down when loaded into view."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:667
-#: _out/admin/shortcode-builder/shortcode-builder.php:667
msgid "Horizontal Order"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:668
-#: _out/admin/shortcode-builder/shortcode-builder.php:668
msgid "Lays out items to maintain left-to-right order."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:688
-#: _out/admin/shortcode-builder/shortcode-builder.php:688
msgid "Don't see your favorite Masonry option listed? You can always add your own!"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:703
-#: _out/admin/shortcode-builder/shortcode-builder.php:703
msgid "Transition Container Classes"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:703
-#: _out/admin/shortcode-builder/shortcode-builder.php:703
msgid "This setting is not available with the Single Post or Next Page add-ons"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:704
-#: _out/admin/shortcode-builder/shortcode-builder.php:704
msgid "Add custom classes to the .alm-reveal loading container"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:716
-#: _out/admin/shortcode-builder/shortcode-builder.php:716
msgid "Transition Container"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:716
-#: _out/admin/shortcode-builder/shortcode-builder.php:716
msgid "Removing the transition container may have undesired results and is not recommended"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:717
-#: _out/admin/shortcode-builder/shortcode-builder.php:717
msgid "Remove the .alm-reveal loading container from Ajax Load More"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:724
-#: _out/admin/shortcode-builder/shortcode-builder.php:724
msgid "Remove Container"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:740
-#: _out/admin/shortcode-builder/shortcode-builder.php:740
msgid "Progress Bar"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:744
-#: _out/admin/shortcode-builder/shortcode-builder.php:744
msgid "Display progress bar indicator at the top of the window while loading Ajax content."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:769
-#: _out/admin/shortcode-builder/shortcode-builder.php:769
msgid "Color"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:770
-#: _out/admin/shortcode-builder/shortcode-builder.php:770
msgid "Enter the hex color of the progress bar"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:800
-#: _out/admin/shortcode-builder/shortcode-builder.php:800
msgid "When using Ajax Load More add-ons or extensions not all Query Parameters will be available in the query."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:803
-#: _out/admin/shortcode-builder/shortcode-builder.php:803
msgid "Query Parameters allow you build a custom WP_Query based on Ajax Load More shortcode values."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:810
-#: _out/admin/shortcode-builder/shortcode-builder.php:810
msgid "Posts Per Page"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:814
-#: _out/admin/shortcode-builder/shortcode-builder.php:814
msgid "Select the number of posts to load with each Ajax request."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:834
-#: _out/admin/shortcode-builder/shortcode-builder.php:834
msgid "Post Type"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:839
-#: _out/admin/shortcode-builder/shortcode-builder.php:839
msgid "Select the Post Types to include in this Ajax Load More query."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:857
-#: _out/admin/shortcode-builder/shortcode-builder.php:857
msgid "Any"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:868
-#: _out/admin/shortcode-builder/shortcode-builder.php:868
msgid "Sticky Posts"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:868
-#: _out/admin/shortcode-builder/shortcode-builder.php:868
msgid "Sticky posts are only available for Posts"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:869
-#: _out/admin/shortcode-builder/shortcode-builder.php:869
msgid "Preserve the ordering of sticky posts by having them appear first in the Ajax listing."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:876
-#: _out/admin/shortcode-builder/shortcode-builder.php:876
msgid "Enable Sticky Posts"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:899
-#: _out/admin/shortcode-builder/shortcode-builder.php:899
msgid "Post Format"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:903
-#: _out/admin/shortcode-builder/shortcode-builder.php:903
msgid "Select a Post Format to query."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:906
-#: _out/admin/shortcode-builder/shortcode-builder.php:906
msgid "Select Post Format"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:907
-#: _out/admin/shortcode-builder/shortcode-builder.php:907
msgid "Standard"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:939
-#: _out/admin/shortcode-builder/shortcode-builder.php:939
msgid "Get posts by category using a category_name or category__and query"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:940
-#: _out/admin/shortcode-builder/shortcode-builder.php:940
msgid "Comma separated list of categories to include by"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:940
#: admin/shortcode-builder/shortcode-builder.php:1033
-#: _out/admin/shortcode-builder/shortcode-builder.php:940
-#: _out/admin/shortcode-builder/shortcode-builder.php:1033
msgid "slug"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:976
#: admin/shortcode-builder/shortcode-builder.php:1071
-#: _out/admin/shortcode-builder/shortcode-builder.php:976
-#: _out/admin/shortcode-builder/shortcode-builder.php:1071
msgid "What's this"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:988
-#: _out/admin/shortcode-builder/shortcode-builder.php:988
msgid "Comma separated list of categories to exclude by ID."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1032
-#: _out/admin/shortcode-builder/shortcode-builder.php:1032
msgid "Get posts by tags using a tag or tag__and query"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1033
-#: _out/admin/shortcode-builder/shortcode-builder.php:1033
msgid "Comma separated list of tags to include by"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1083
-#: _out/admin/shortcode-builder/shortcode-builder.php:1083
msgid "Comma separated list of tags to exclude by ID"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1123
-#: _out/admin/shortcode-builder/shortcode-builder.php:1123
msgid "Select a taxonomy to query and then select the terms and operator."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1128
#: admin/shortcode-builder/shortcode-builder.php:1162
-#: _out/admin/shortcode-builder/shortcode-builder.php:1128
-#: _out/admin/shortcode-builder/shortcode-builder.php:1162
msgid "Add Another"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1139
-#: _out/admin/shortcode-builder/shortcode-builder.php:1139
msgid "Custom Fields (Meta_Query)"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1143
-#: _out/admin/shortcode-builder/shortcode-builder.php:1143
msgid "Query for custom fields by entering a key, value and operator."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1153
-#: _out/admin/shortcode-builder/shortcode-builder.php:1153
msgid "The logical relationship between each custom field when there is more than one"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1172
-#: _out/admin/shortcode-builder/shortcode-builder.php:1172
msgid "Date"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1176
-#: _out/admin/shortcode-builder/shortcode-builder.php:1176
msgid "Enter a year, month(number) and day to query by date archive."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1183
-#: _out/admin/shortcode-builder/shortcode-builder.php:1183
msgid "Year:"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1187
-#: _out/admin/shortcode-builder/shortcode-builder.php:1187
msgid "Month:"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1191
-#: _out/admin/shortcode-builder/shortcode-builder.php:1191
msgid "Day:"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1212
-#: _out/admin/shortcode-builder/shortcode-builder.php:1212
msgid "Author"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1216
-#: _out/admin/shortcode-builder/shortcode-builder.php:1216
msgid "Select an Author to query(by ID)."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1241
-#: _out/admin/shortcode-builder/shortcode-builder.php:1241
msgid "Search"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1245
-#: _out/admin/shortcode-builder/shortcode-builder.php:1245
msgid "Enter a search term to query."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1246
-#: _out/admin/shortcode-builder/shortcode-builder.php:1246
msgid "Search uses the default WordPress search, however Ajax Load More does offer integrations with SearchWP and Relevanssi."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1251
-#: _out/admin/shortcode-builder/shortcode-builder.php:1251
msgid "Enter search term"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1261
-#: _out/admin/shortcode-builder/shortcode-builder.php:1261
msgid "Post Parameters"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1266
-#: _out/admin/shortcode-builder/shortcode-builder.php:1266
msgid "A comma separated list of post ID's to query."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1270
-#: _out/admin/shortcode-builder/shortcode-builder.php:1270
msgid "225, 340, 818, etc..."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1277
-#: _out/admin/shortcode-builder/shortcode-builder.php:1277
msgid "A comma separated list of post ID's to exclude from query."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1288
-#: _out/admin/shortcode-builder/shortcode-builder.php:1288
msgid "Post Status"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1288
-#: _out/admin/shortcode-builder/shortcode-builder.php:1288
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."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1289
-#: _out/admin/shortcode-builder/shortcode-builder.php:1289
msgid "Select status of the post."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1294
-#: _out/admin/shortcode-builder/shortcode-builder.php:1294
msgid "Published"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1312
-#: _out/admin/shortcode-builder/shortcode-builder.php:1312
msgid "Ordering"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1316
-#: _out/admin/shortcode-builder/shortcode-builder.php:1316
msgid "Sort posts by Order and Orderby parameters."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1351
-#: _out/admin/shortcode-builder/shortcode-builder.php:1351
msgid "Offset"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1355
-#: _out/admin/shortcode-builder/shortcode-builder.php:1355
msgid "Offset the initial query by 'x' number of posts"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1369
-#: _out/admin/shortcode-builder/shortcode-builder.php:1369
msgid "Custom Arguments"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1373
-#: _out/admin/shortcode-builder/shortcode-builder.php:1373
msgid "A semicolon separated list of custom value:pair arguments."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1373
-#: _out/admin/shortcode-builder/shortcode-builder.php:1373
msgid "Custom Arguments can be used to query by parameters not available in the Shortcode Builder"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1377
-#: _out/admin/shortcode-builder/shortcode-builder.php:1377
msgid "event_display:upcoming"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1397
-#: _out/admin/shortcode-builder/shortcode-builder.php:1397
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."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1404
-#: _out/admin/shortcode-builder/shortcode-builder.php:1404
msgid "Archives"
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1408
-#: _out/admin/shortcode-builder/shortcode-builder.php:1408
msgid "Ajax Load More will automatically create an archive query while viewing site archives."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1409
-#: _out/admin/shortcode-builder/shortcode-builder.php:1409
msgid "Taxonomy, category, tag, date (year, month, day), post type and author archives are currently supported."
msgstr ""
#: admin/shortcode-builder/shortcode-builder.php:1427
-#: _out/admin/shortcode-builder/shortcode-builder.php:1427
msgid "Note: Do not select Query Parameters other than Posts Per Page and/or Post Type when using the Archives integration. Ajax Load More will automatically create the perfect shortcode for you based on the current archive page."
msgstr ""
#: admin/views/add-ons.php:17
-#: _out/admin/views/add-ons.php:17
msgid "Add-ons are available to extend and enhance the core functionality of Ajax Load More"
msgstr ""
#: admin/views/add-ons.php:55
-#: _out/admin/views/add-ons.php:55
msgid "Installed"
msgstr ""
#: admin/views/add-ons.php:57
-#: _out/admin/views/add-ons.php:57
msgid "Purchase"
msgstr ""
#: admin/views/add-ons.php:66
-#: _out/admin/views/add-ons.php:66
msgid "All add-ons are installed as stand alone plugins and with a valid license key will receive plugin update notifications directly within the WordPress plugin dashboard."
msgstr ""
#: admin/views/extensions.php:15
-#: _out/admin/views/extensions.php:15
msgid "Free extensions that provide compatibility with popular plugins and core WordPress functionality"
msgstr ""
#: admin/views/extensions.php:47
-#: _out/admin/views/extensions.php:47
msgid "Extensions are installed as stand alone plugins and receive update notifications in the plugin dashboard."
msgstr ""
#: admin/views/go-pro.php:15
-#: _out/admin/views/go-pro.php:15
msgid "All current and future add-ons in a single installation."
msgstr ""
#: admin/views/go-pro.php:28
-#: _out/admin/views/go-pro.php:28
msgid "The following products are included when you purchase Ajax Load More Pro:"
msgstr ""
#: admin/views/go-pro.php:62
-#: _out/admin/views/go-pro.php:62
msgid "About the Pro Bundle"
msgstr ""
#: admin/views/go-pro.php:64
-#: _out/admin/views/go-pro.php:64
msgid "The Ajax Load More Pro bundle is installed as a single add-on with one license and contains every add-on currently available."
msgstr ""
#: admin/views/go-pro.php:65
-#: _out/admin/views/go-pro.php:65
msgid "Once installed, add-ons are able to be activated and deactivated with ease from the Pro dashboard inside your WordPress admin."
msgstr ""
#: admin/views/go-pro.php:66
-#: _out/admin/views/go-pro.php:66
msgid "Please note:"
msgstr ""
#: admin/views/go-pro.php:66
-#: _out/admin/views/go-pro.php:66
msgid "The core Ajax Load More plugin is still required when using the Pro add-on."
msgstr ""
#: admin/views/go-pro.php:69
-#: _out/admin/views/go-pro.php:69
msgid "Get More Information"
msgstr ""
#: admin/views/help.php:13
-#: _out/admin/views/help.php:13
msgid "Get started with our four step guide to painless implementation!"
msgstr ""
#: admin/views/help.php:18
-#: _out/admin/views/help.php:18
msgid "A collection of everyday shortcode usages and implementation examples"
msgstr ""
#: admin/views/help.php:55
-#: _out/admin/views/help.php:55
msgid "Examples"
msgstr ""
#: admin/views/help.php:90
-#: _out/admin/views/help.php:90
msgid "Example Library"
msgstr ""
#: admin/views/help.php:92
-#: _out/admin/views/help.php:92
msgid "View the collection of over 30 real world Ajax Load More examples available on the plugin website"
msgstr ""
#: admin/views/help.php:95
-#: _out/admin/views/help.php:95
msgid "View All Examples"
msgstr ""
#: admin/views/licenses.php:11
-#: _out/admin/views/licenses.php:11
msgid "Pro License"
msgstr ""
#: admin/views/licenses.php:12
-#: _out/admin/views/licenses.php:12
msgid "Enter your Pro license key to enable updates from the plugins dashboard"
msgstr ""
#: admin/views/licenses.php:12
-#: _out/admin/views/licenses.php:12
msgid "Enter your license keys below to enable add-on updates from the plugins dashboard"
msgstr ""
#: admin/views/licenses.php:28
-#: _out/admin/views/licenses.php:28
msgid "License Key"
msgstr ""
#: admin/views/licenses.php:30
-#: _out/admin/views/licenses.php:30
msgid "License Keys"
msgstr ""
#: admin/views/licenses.php:37
-#: _out/admin/views/licenses.php:37
msgid "Enter your Ajax Load More Pro license key to receive plugin update notifications directly within the WP Plugins dashboard."
msgstr ""
#: admin/views/licenses.php:39
-#: _out/admin/views/licenses.php:39
msgid "Enter a key for each of your Ajax Load More add-ons to receive plugin update notifications directly within the WP Plugins dashboard."
msgstr ""
#: admin/views/licenses.php:85
-#: _out/admin/views/licenses.php:85
msgid "Don't have a license?"
msgstr ""
#: admin/views/licenses.php:86
-#: _out/admin/views/licenses.php:86
msgid "A valid license is required to activate and receive plugin updates directly in your WordPress dashboard"
msgstr ""
#: admin/views/licenses.php:86
-#: _out/admin/views/licenses.php:86
msgid "Purchase Now"
msgstr ""
#: admin/views/licenses.php:90
#: admin/views/licenses.php:102
-#: _out/admin/views/licenses.php:90
-#: _out/admin/views/licenses.php:102
msgid "Enter License Key"
msgstr ""
#: admin/views/licenses.php:107
-#: _out/admin/views/licenses.php:107
msgid "Expired"
msgstr ""
#: admin/views/licenses.php:128
-#: _out/admin/views/licenses.php:128
msgid "Activate License"
msgstr ""
#: admin/views/licenses.php:132
-#: _out/admin/views/licenses.php:132
msgid "Deactivate License"
msgstr ""
#: admin/views/licenses.php:136
-#: _out/admin/views/licenses.php:136
msgid "Refresh Status"
msgstr ""
#: admin/views/licenses.php:147
-#: _out/admin/views/licenses.php:147
msgid "Renew License"
msgstr ""
#: admin/views/licenses.php:162
-#: _out/admin/views/licenses.php:162
msgid "You do not have any Ajax Load More add-ons installed"
msgstr ""
#: admin/views/licenses.php:162
-#: _out/admin/views/licenses.php:162
msgid "Browse Add-ons"
msgstr ""
#: admin/views/licenses.php:171
-#: _out/admin/views/licenses.php:171
msgid "About Licenses"
msgstr ""
#: admin/views/licenses.php:174
-#: _out/admin/views/licenses.php:174
msgid "License keys are found in the purchase receipt email that was sent immediately after purchase and in the Account section on our website"
msgstr ""
#: admin/views/licenses.php:175
-#: _out/admin/views/licenses.php:175
msgid "If you cannot locate your key please open a support ticket by filling out the support form and reference the email address used when you completed the purchase."
msgstr ""
#: admin/views/licenses.php:176
-#: _out/admin/views/licenses.php:176
msgid "Are you having issues updating an add-on?"
msgstr ""
#: admin/views/licenses.php:176
-#: _out/admin/views/licenses.php:176
msgid "Please try deactivating and then re-activating each license. Once you've done that, try running the update again."
msgstr ""
#: admin/views/licenses.php:181
-#: _out/admin/views/licenses.php:181
msgid "Your Account"
msgstr ""
#: admin/views/repeater-templates.php:24
-#: _out/admin/views/repeater-templates.php:24
msgid "The library of editable templates for use within your theme"
msgstr ""
#: admin/views/repeater-templates.php:41
-#: _out/admin/views/repeater-templates.php:41
msgid "Theme Repeaters"
msgstr ""
#: admin/views/repeater-templates.php:104
#: admin/views/repeater-templates.php:272
-#: _out/admin/views/repeater-templates.php:104
-#: _out/admin/views/repeater-templates.php:272
msgid "Location"
msgstr ""
#: admin/views/repeater-templates.php:146
-#: _out/admin/views/repeater-templates.php:146
msgid "Theme Repeaters Not Found!"
msgstr ""
#: admin/views/repeater-templates.php:148
-#: _out/admin/views/repeater-templates.php:148
msgid "You'll need to create and upload templates to your theme directory before you can access them with Ajax Load More"
msgstr ""
#: admin/views/repeater-templates.php:152
-#: _out/admin/views/repeater-templates.php:152
msgid "Manage Settings"
msgstr ""
#: admin/views/repeater-templates.php:211
-#: _out/admin/views/repeater-templates.php:211
msgid "Default Template"
msgstr ""
#: admin/views/repeater-templates.php:220
-#: _out/admin/views/repeater-templates.php:220
msgid "Template Code:"
msgstr ""
#: admin/views/repeater-templates.php:221
-#: _out/admin/views/repeater-templates.php:221
msgid "Enter the PHP and HTML markup for this template."
msgstr ""
#: admin/views/repeater-templates.php:254
-#: _out/admin/views/repeater-templates.php:254
msgid "Save Template"
msgstr ""
#: admin/views/repeater-templates.php:270
-#: _out/admin/views/repeater-templates.php:270
msgid "It appears you are loading the default template (default.php) from your current theme directory. To modify this template, you must edit the file directly on your server."
msgstr ""
#: admin/views/repeater-templates.php:281
-#: _out/admin/views/repeater-templates.php:281
msgid "Repeater Templates editing has been disabled for this instance of Ajax Load More. To enable the template editing, please remove the ALM_DISABLE_REPEATER_TEMPLATES PHP constant in your wp-config.php and then re-activate this plugin."
msgstr ""
#: admin/views/repeater-templates.php:357
-#: _out/admin/views/repeater-templates.php:357
msgid "Saving template..."
msgstr ""
#: admin/views/repeater-templates.php:431
-#: _out/admin/views/repeater-templates.php:431
msgid "Updating template..."
msgstr ""
#: admin/views/repeater-templates.php:501
-#: _out/admin/views/repeater-templates.php:501
msgid "What's a Repeater Template?"
msgstr ""
#: admin/views/repeater-templates.php:503
-#: _out/admin/views/repeater-templates.php:503
msgid "A Repeater Template is a snippet of code that will execute over and over within a WordPress loop"
msgstr ""
#: admin/views/settings.php:20
-#: _out/admin/views/settings.php:20
msgid "A powerful plugin to add infinite scroll functionality to your website."
msgstr ""
#: admin/views/settings.php:98
#: admin/views/shortcode-builder.php:28
-#: _out/admin/views/settings.php:98
-#: _out/admin/views/shortcode-builder.php:28
msgid "Back to Top"
msgstr ""
#: admin/views/shortcode-builder.php:17
-#: _out/admin/views/shortcode-builder.php:17
msgid "Create your own Ajax Load More shortcode by adjusting the values below"
msgstr ""
#: admin/views/shortcode-builder.php:35
-#: _out/admin/views/shortcode-builder.php:35
msgid "Shortcode Output"
msgstr ""
#: admin/views/shortcode-builder.php:37
-#: _out/admin/views/shortcode-builder.php:37
msgid "Place the following shortcode into the content editor or widget area of your theme."
msgstr ""
#: admin/views/shortcode-builder.php:43
-#: _out/admin/views/shortcode-builder.php:43
msgid "Copied!"
msgstr ""
#: admin/views/shortcode-builder.php:43
-#: _out/admin/views/shortcode-builder.php:43
msgid "Copy Shortcode"
msgstr ""
#: admin/views/shortcode-builder.php:44
-#: _out/admin/views/shortcode-builder.php:44
msgid "Reset"
msgstr ""
#: ajax-load-more.php:276
-#: _out/ajax-load-more.php:276
msgid "Error creating repeater template directory"
msgstr ""
#: ajax-load-more.php:375
-#: _out/ajax-load-more.php:375
msgid "Viewing {post_count} of {total_posts} results."
msgstr ""
#: ajax-load-more.php:376
-#: _out/ajax-load-more.php:376
msgid "No results found."
msgstr ""
#: core/classes/class-alm-noscript.php:143
-#: _out/core/classes/class-alm-noscript.php:143
msgid "Pages: "
msgstr ""
#: core/functions/addons.php:22
-#: _out/core/functions/addons.php:22
msgid " Ajax Load More Pro"
msgstr ""
#: core/functions/addons.php:23
-#: _out/core/functions/addons.php:23
msgid " Get instant access to all premium add-ons in a single installation."
msgstr ""
#: core/functions/addons.php:24
-#: _out/core/functions/addons.php:24
msgid " The Pro bundle is installed as a single product with one license key and contains immediate access all premium add-ons."
msgstr ""
#: core/functions/addons.php:52
-#: _out/core/functions/addons.php:52
msgid " Cache"
msgstr ""
#: core/functions/addons.php:53
-#: _out/core/functions/addons.php:53
msgid " Improve performance with the Ajax Load More caching engine."
msgstr ""
#: core/functions/addons.php:54
-#: _out/core/functions/addons.php:54
msgid " The Cache add-on creates static HTML files of Ajax Load More requests then delivers those static files to your visitors."
msgstr ""
#: core/functions/addons.php:67
-#: _out/core/functions/addons.php:67
msgid " Call to Actions"
msgstr ""
#: core/functions/addons.php:68
-#: _out/core/functions/addons.php:68
msgid " Ajax Load More extension for displaying advertisements and call to actions."
msgstr ""
#: core/functions/addons.php:69
-#: _out/core/functions/addons.php:69
msgid " The Call to Actions add-on provides the ability to inject a custom CTA template within each Ajax Load More loop."
msgstr ""
#: core/functions/addons.php:82
-#: _out/core/functions/addons.php:82
msgid " Comments"
msgstr ""
#: core/functions/addons.php:83
-#: _out/core/functions/addons.php:83
msgid " Load blog comments on demand with Ajax Load More."
msgstr ""
#: core/functions/addons.php:84
-#: _out/core/functions/addons.php:84
msgid " The Comments add-on will display your blog comments with Ajax Load More's infinite scroll functionality."
msgstr ""
#: core/functions/addons.php:97
-#: _out/core/functions/addons.php:97
msgid " Custom Repeaters"
msgstr ""
#: core/functions/addons.php:98
-#: _out/core/functions/addons.php:98
msgid " Extend Ajax Load More with unlimited repeater templates."
msgstr ""
#: core/functions/addons.php:99
-#: _out/core/functions/addons.php:99
msgid " Create, delete and modify repeater templates as you need them with absolutely zero restrictions."
msgstr ""
#: core/functions/addons.php:112
-#: _out/core/functions/addons.php:112
msgid " Elementor"
msgstr ""
#: core/functions/addons.php:113
-#: _out/core/functions/addons.php:113
msgid " Infinite scroll Elementor widget content with Ajax Load More."
msgstr ""
#: core/functions/addons.php:114
-#: _out/core/functions/addons.php:114
msgid " The Elementor add-on provides functionality required for integrating with the Elementor Posts and WooCommerce Products widget."
msgstr ""
#: core/functions/addons.php:127
-#: _out/core/functions/addons.php:127
msgid " Filters"
msgstr ""
#: core/functions/addons.php:128
-#: _out/core/functions/addons.php:128
msgid " Create custom Ajax Load More filters in seconds."
msgstr ""
#: core/functions/addons.php:129
-#: _out/core/functions/addons.php:129
msgid " The Filters add-on provides front-end and admin functionality for building and managing Ajax filters."
msgstr ""
#: core/functions/addons.php:142
-#: _out/core/functions/addons.php:142
msgid " Layouts"
msgstr ""
#: core/functions/addons.php:143
-#: _out/core/functions/addons.php:143
msgid " Predefined layouts for repeater templates."
msgstr ""
#: core/functions/addons.php:144
-#: _out/core/functions/addons.php:144
msgid " The Layouts add-on provides a collection of unique, well designed and fully responsive templates."
msgstr ""
#: core/functions/addons.php:157
-#: _out/core/functions/addons.php:157
msgid " Next Page"
msgstr ""
#: core/functions/addons.php:158
-#: _out/core/functions/addons.php:158
msgid " Load and display multipage WordPress content."
msgstr ""
#: core/functions/addons.php:159
-#: _out/core/functions/addons.php:159
msgid " The Next Page add-on provides functionality for infinite scrolling paginated posts and pages."
msgstr ""
#: core/functions/addons.php:172
-#: _out/core/functions/addons.php:172
msgid " Paging"
msgstr ""
#: core/functions/addons.php:173
-#: _out/core/functions/addons.php:173
msgid " Extend Ajax Load More with a numbered navigation."
msgstr ""
#: core/functions/addons.php:174
-#: _out/core/functions/addons.php:174
msgid " The Paging add-on will transform the default infinite scroll functionality into a robust ajax powered navigation system."
msgstr ""
#: core/functions/addons.php:187
-#: _out/core/functions/addons.php:187
msgid " Preloaded"
msgstr ""
#: core/functions/addons.php:188
-#: _out/core/functions/addons.php:188
msgid " Load an initial set of posts before making Ajax requests to the server."
msgstr ""
#: core/functions/addons.php:189
-#: _out/core/functions/addons.php:189
msgid " The Preloaded add-on will display content quicker and allow caching of the initial query which can reduce stress on your server."
msgstr ""
#: core/functions/addons.php:202
-#: _out/core/functions/addons.php:202
msgid " Search Engine Optimization"
msgstr ""
#: core/functions/addons.php:203
-#: _out/core/functions/addons.php:203
msgid " Generate unique paging URLs with every Ajax Load More query."
msgstr ""
#: core/functions/addons.php:204
-#: _out/core/functions/addons.php:204
msgid " The SEO add-on will optimize your ajax loaded content for search engines by generating unique URLs with every query."
msgstr ""
#: core/functions/addons.php:217
-#: _out/core/functions/addons.php:217
msgid " Single Posts"
msgstr ""
#: core/functions/addons.php:218
-#: _out/core/functions/addons.php:218
msgid " An add-on to enable infinite scrolling of single posts."
msgstr ""
#: core/functions/addons.php:219
-#: _out/core/functions/addons.php:219
msgid " The Single Posts add-on will load full posts as you scroll and update the browser URL to the current post."
msgstr ""
#: core/functions/addons.php:232
-#: _out/core/functions/addons.php:232
msgid " Theme Repeaters"
msgstr ""
#: core/functions/addons.php:233
-#: _out/core/functions/addons.php:233
msgid " Manage Repeater Templates within your current theme directory."
msgstr ""
#: core/functions/addons.php:234
-#: _out/core/functions/addons.php:234
msgid " The Theme Repeater add-on will allow you load, edit and maintain templates from your current theme directory."
msgstr ""
#: core/functions/addons.php:247
-#: _out/core/functions/addons.php:247
msgid " Users"
msgstr ""
#: core/functions/addons.php:248
-#: _out/core/functions/addons.php:248
msgid " Enable infinite scrolling of WordPress users."
msgstr ""
#: core/functions/addons.php:249
-#: _out/core/functions/addons.php:249
msgid " The Users add-on will allow lazy loading of users by role using a WP_User_Query."
msgstr ""
#: core/functions/addons.php:262
-#: _out/core/functions/addons.php:262
msgid " WooCommerce"
msgstr ""
#: core/functions/addons.php:263
-#: _out/core/functions/addons.php:263
msgid " Infinite scroll WooCommerce products with Ajax Load More."
msgstr ""
#: core/functions/addons.php:264
-#: _out/core/functions/addons.php:264
msgid " The WooCommerce add-on automatically integrates infinite scrolling into your existing shop templates."
msgstr ""
#: core/integration/elementor/module/widget.php:44
-#: _out/core/integration/elementor/module/widget.php:44
msgid "ALM Shortcode"
msgstr ""
#: core/integration/elementor/module/widget.php:91
-#: _out/core/integration/elementor/module/widget.php:91
msgid "Shortcode"
msgstr ""
#: core/integration/elementor/module/widget.php:98
#: core/integration/elementor/module/widget.php:123
#: core/integration/elementor/module/widget.php:144
-#: _out/core/integration/elementor/module/widget.php:98
-#: _out/core/integration/elementor/module/widget.php:123
-#: _out/core/integration/elementor/module/widget.php:144
msgid "Ajax Load More Shortcode"
msgstr ""
#: core/integration/elementor/module/widget.php:100
-#: _out/core/integration/elementor/module/widget.php:100
msgid "[ajax_load_more]"
msgstr ""
#: core/integration/elementor/module/widget.php:101
-#: _out/core/integration/elementor/module/widget.php:101
msgid "The shortcode will not render while Elementor is in live edit mode, you must preview the page to view Ajax Load More functionality."
msgstr ""
#: core/integration/elementor/module/widget.php:101
-#: _out/core/integration/elementor/module/widget.php:101
msgid "%sBuild Shortcode%s"
msgstr ""