Version Description
- New: Support for categories for custom post type
- New: Added preview for sequence emails
=
Download this release
Release Info
Developer | Icegram |
Plugin | Email Subscribers & Newsletters |
Version | 5.3.13 |
Comparing to | |
See all releases |
Code changes from version 5.3.12 to 5.3.13
- email-subscribers.php +2 -2
- lite/admin/css/email-subscribers-admin.css +10 -5
- lite/admin/js/email-subscribers-admin.js +1 -0
- lite/includes/class-es-common.php +48 -1
- lite/includes/classes/class-es-handle-post-notification.php +4 -4
- lite/includes/classes/class-es-handle-subscription.php +1 -1
- lite/includes/classes/class-es-import-subscribers.php +1 -1
- lite/includes/classes/class-es-post-notifications.php +68 -8
- lite/includes/classes/class-es-tools.php +4 -4
- lite/includes/db/class-es-db-campaigns.php +1 -0
- lite/language.php +5 -1
- lite/languages/email-subscribers.pot +201 -181
- readme.txt +9 -5
email-subscribers.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Email Subscribers & Newsletters
|
4 |
* Plugin URI: https://www.icegram.com/
|
5 |
* Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
|
6 |
-
* Version: 5.3.
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.9
|
@@ -187,7 +187,7 @@ if ( 'premium' === $ig_es_plan ) {
|
|
187 |
/* ***************************** Initial Compatibility Work (End) ******************* */
|
188 |
|
189 |
if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
|
190 |
-
define( 'ES_PLUGIN_VERSION', '5.3.
|
191 |
}
|
192 |
|
193 |
// Plugin Folder Path.
|
3 |
* Plugin Name: Email Subscribers & Newsletters
|
4 |
* Plugin URI: https://www.icegram.com/
|
5 |
* Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
|
6 |
+
* Version: 5.3.13
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.9
|
187 |
/* ***************************** Initial Compatibility Work (End) ******************* */
|
188 |
|
189 |
if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
|
190 |
+
define( 'ES_PLUGIN_VERSION', '5.3.13' );
|
191 |
}
|
192 |
|
193 |
// Plugin Folder Path.
|
lite/admin/css/email-subscribers-admin.css
CHANGED
@@ -2042,27 +2042,32 @@ body.email-subscribers_page_es_campaigns .column-status .dashicons[title="Finish
|
|
2042 |
max-width: 60%;
|
2043 |
}
|
2044 |
|
2045 |
-
.ig-es-conditions-value-fields .select2-container--default .select2-selection--multiple .select2-selection__choice
|
|
|
2046 |
margin-bottom: 0;
|
2047 |
margin-top: 4px;
|
2048 |
}
|
2049 |
|
2050 |
-
.ig-es-conditions-value-fields .select2-container .select2-search--inline
|
|
|
2051 |
margin-bottom: 0;
|
2052 |
}
|
2053 |
|
2054 |
.ig-es-conditions-value-fields .select2-container:not(.select2-container--focus) .select2-search--inline:not(:only-child),
|
2055 |
-
.ig-es-post-notification-form .select2-container:not(.select2-container--focus) .select2-search--inline:not(:only-child)
|
|
|
2056 |
display: none;
|
2057 |
}
|
2058 |
|
2059 |
-
.ig-es-conditions-value-fields .select2-container .select2-search--inline .select2-search__field
|
|
|
2060 |
margin-top: 0;
|
2061 |
min-height: 20px;
|
2062 |
height: 24px;
|
2063 |
}
|
2064 |
|
2065 |
-
.ig-es-conditions-value-fields .select2-container .select2-selection--multiple
|
|
|
2066 |
min-height: 30px;
|
2067 |
}
|
2068 |
|
2042 |
max-width: 60%;
|
2043 |
}
|
2044 |
|
2045 |
+
.ig-es-conditions-value-fields .select2-container--default .select2-selection--multiple .select2-selection__choice,
|
2046 |
+
.es-post-type-categories .select2-container--default .select2-selection--multiple .select2-selection__choice {
|
2047 |
margin-bottom: 0;
|
2048 |
margin-top: 4px;
|
2049 |
}
|
2050 |
|
2051 |
+
.ig-es-conditions-value-fields .select2-container .select2-search--inline,
|
2052 |
+
.es-post-type-categories .select2-container .select2-search--inline {
|
2053 |
margin-bottom: 0;
|
2054 |
}
|
2055 |
|
2056 |
.ig-es-conditions-value-fields .select2-container:not(.select2-container--focus) .select2-search--inline:not(:only-child),
|
2057 |
+
.ig-es-post-notification-form .select2-container:not(.select2-container--focus) .select2-search--inline:not(:only-child),
|
2058 |
+
.es-post-type-categories .select2-container:not(.select2-container--focus) .select2-search--inline:not(:only-child) {
|
2059 |
display: none;
|
2060 |
}
|
2061 |
|
2062 |
+
.ig-es-conditions-value-fields .select2-container .select2-search--inline .select2-search__field,
|
2063 |
+
.es-post-type-categories .select2-container .select2-search--inline .select2-search__field {
|
2064 |
margin-top: 0;
|
2065 |
min-height: 20px;
|
2066 |
height: 24px;
|
2067 |
}
|
2068 |
|
2069 |
+
.ig-es-conditions-value-fields .select2-container .select2-selection--multiple,
|
2070 |
+
.es-post-type-categories .select2-container .select2-selection--multiple {
|
2071 |
min-height: 30px;
|
2072 |
}
|
2073 |
|
lite/admin/js/email-subscribers-admin.js
CHANGED
@@ -2934,6 +2934,7 @@ jQuery.fn.extend({
|
|
2934 |
|
2935 |
// Get placeholder label from the first option.
|
2936 |
placeholder_label = jQuery(first_option_elem).text();
|
|
|
2937 |
|
2938 |
// Remove it from option to avoid being shown and allowing users to select it as an option in Select2's options panel.
|
2939 |
jQuery(first_option_elem).remove();
|
2934 |
|
2935 |
// Get placeholder label from the first option.
|
2936 |
placeholder_label = jQuery(first_option_elem).text();
|
2937 |
+
placeholder_label = placeholder_label.trim();
|
2938 |
|
2939 |
// Remove it from option to avoid being shown and allowing users to select it as an option in Select2's options panel.
|
2940 |
jQuery(first_option_elem).remove();
|
lite/includes/class-es-common.php
CHANGED
@@ -668,7 +668,7 @@ class ES_Common {
|
|
668 |
$custom_post_type_html = '';
|
669 |
foreach ( $post_types as $post_type ) {
|
670 |
$post_type_search = '{T}' . $post_type . '{T}';
|
671 |
-
if ( is_array( $custom_post_types ) && in_array( $post_type_search, $custom_post_types ) ) {
|
672 |
$checked = "checked='checked'";
|
673 |
} else {
|
674 |
$checked = '';
|
@@ -702,6 +702,53 @@ class ES_Common {
|
|
702 |
return $custom_post_types;
|
703 |
}
|
704 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
705 |
/**
|
706 |
* Get Opt-in types
|
707 |
*
|
668 |
$custom_post_type_html = '';
|
669 |
foreach ( $post_types as $post_type ) {
|
670 |
$post_type_search = '{T}' . $post_type . '{T}';
|
671 |
+
if ( is_array( $custom_post_types ) && in_array( $post_type_search, $custom_post_types, true ) ) {
|
672 |
$checked = "checked='checked'";
|
673 |
} else {
|
674 |
$checked = '';
|
702 |
return $custom_post_types;
|
703 |
}
|
704 |
|
705 |
+
/**
|
706 |
+
* Get categories for given post types
|
707 |
+
*
|
708 |
+
* @since 5.3.13
|
709 |
+
*
|
710 |
+
* @param array $post_type Post type
|
711 |
+
*
|
712 |
+
* @return array $post_type_categories List of categories for given post types
|
713 |
+
*/
|
714 |
+
public static function get_post_type_categories( $post_type ) {
|
715 |
+
|
716 |
+
$taxonomies = get_object_taxonomies( $post_type, 'objects' );
|
717 |
+
if ( empty( $taxonomies ) ) {
|
718 |
+
return array();
|
719 |
+
}
|
720 |
+
|
721 |
+
$post_type_categories = array();
|
722 |
+
|
723 |
+
foreach ( $taxonomies as $taxonomy_slug => $taxonomy ) {
|
724 |
+
$is_category_taxonomy = $taxonomy->hierarchical;
|
725 |
+
if ( ! $is_category_taxonomy ) {
|
726 |
+
continue;
|
727 |
+
}
|
728 |
+
$categories = get_categories(
|
729 |
+
array(
|
730 |
+
'hide_empty' => false,
|
731 |
+
'taxonomy' => $taxonomy_slug,
|
732 |
+
'type' => $post_type,
|
733 |
+
'orderby' => 'id',
|
734 |
+
)
|
735 |
+
);
|
736 |
+
|
737 |
+
if ( empty( $categories ) ) {
|
738 |
+
continue;
|
739 |
+
}
|
740 |
+
|
741 |
+
$taxonomy_categories = array();
|
742 |
+
foreach ( $categories as $category ) {
|
743 |
+
$taxonomy_categories[ $category->term_id ] = $category->name;
|
744 |
+
}
|
745 |
+
|
746 |
+
$post_type_categories[ $taxonomy_slug ] = $taxonomy_categories;
|
747 |
+
}
|
748 |
+
|
749 |
+
return $post_type_categories;
|
750 |
+
}
|
751 |
+
|
752 |
/**
|
753 |
* Get Opt-in types
|
754 |
*
|
lite/includes/classes/class-es-handle-post-notification.php
CHANGED
@@ -356,7 +356,7 @@ class ES_Handle_Post_Notification {
|
|
356 |
*
|
357 |
* @since 5.4.0
|
358 |
*
|
359 |
-
* @param
|
360 |
* @param object $post Post object.
|
361 |
* @param array $request REST request.
|
362 |
*
|
@@ -519,10 +519,10 @@ class ES_Handle_Post_Notification {
|
|
519 |
if ( $post instanceof WP_Post ) {
|
520 |
$post_type = $post->post_type;
|
521 |
$post_type_object = get_post_type_object( $post_type );
|
522 |
-
$
|
523 |
|
524 |
-
/* translators: %s: Post type
|
525 |
-
$notice_text = sprintf( __( 'Notification emails has been queued for this %s.', 'email-subscribers' ), strtolower( $
|
526 |
}
|
527 |
|
528 |
return $notice_text;
|
356 |
*
|
357 |
* @since 5.4.0
|
358 |
*
|
359 |
+
* @param object $response REST response.
|
360 |
* @param object $post Post object.
|
361 |
* @param array $request REST request.
|
362 |
*
|
519 |
if ( $post instanceof WP_Post ) {
|
520 |
$post_type = $post->post_type;
|
521 |
$post_type_object = get_post_type_object( $post_type );
|
522 |
+
$post_type__name = $post_type_object->labels->singular_name;
|
523 |
|
524 |
+
/* translators: %s: Post type name */
|
525 |
+
$notice_text = sprintf( __( 'Notification emails has been queued for this %s.', 'email-subscribers' ), strtolower( $post_type__name ) );
|
526 |
}
|
527 |
|
528 |
return $notice_text;
|
lite/includes/classes/class-es-handle-subscription.php
CHANGED
@@ -261,7 +261,7 @@ if ( ! class_exists( 'ES_Handle_Subscription' ) ) {
|
|
261 |
$this->list_hashes = isset( $form_data['esfpx_lists'] ) ? $form_data['esfpx_lists'] : array();
|
262 |
$this->es_nonce = isset( $form_data['esfpx_es-subscribe'] ) ? trim( $form_data['esfpx_es-subscribe'] ) : '';
|
263 |
$this->form_id = isset( $form_data['esfpx_form_id'] ) ? trim( $form_data['esfpx_form_id'] ) : 0;
|
264 |
-
$this->reference_site = isset( $form_data['esfpx_reference_site'] ) ?
|
265 |
$this->es_optin_type = get_option( 'ig_es_optin_type' );
|
266 |
$this->guid = ES_Common::generate_guid();
|
267 |
|
261 |
$this->list_hashes = isset( $form_data['esfpx_lists'] ) ? $form_data['esfpx_lists'] : array();
|
262 |
$this->es_nonce = isset( $form_data['esfpx_es-subscribe'] ) ? trim( $form_data['esfpx_es-subscribe'] ) : '';
|
263 |
$this->form_id = isset( $form_data['esfpx_form_id'] ) ? trim( $form_data['esfpx_form_id'] ) : 0;
|
264 |
+
$this->reference_site = isset( $form_data['esfpx_reference_site'] ) ? esc_url_raw( $form_data['esfpx_reference_site'] ) : null;
|
265 |
$this->es_optin_type = get_option( 'ig_es_optin_type' );
|
266 |
$this->guid = ES_Common::generate_guid();
|
267 |
|
lite/includes/classes/class-es-import-subscribers.php
CHANGED
@@ -820,7 +820,7 @@ class ES_Import_Subscribers {
|
|
820 |
|
821 |
$bulkdata = array();
|
822 |
if ( isset( $_POST['options'] ) ) {
|
823 |
-
$bulkdata = ig_es_get_data( $_POST, 'options', array() );
|
824 |
}
|
825 |
|
826 |
$bulkdata = wp_parse_args( $bulkdata, get_option( 'ig_es_bulk_import' ) );
|
820 |
|
821 |
$bulkdata = array();
|
822 |
if ( isset( $_POST['options'] ) ) {
|
823 |
+
$bulkdata = ig_es_get_data( $_POST, 'options', array(), true );
|
824 |
}
|
825 |
|
826 |
$bulkdata = wp_parse_args( $bulkdata, get_option( 'ig_es_bulk_import' ) );
|
lite/includes/classes/class-es-post-notifications.php
CHANGED
@@ -569,12 +569,22 @@ class ES_Post_Notifications_Table {
|
|
569 |
}
|
570 |
}
|
571 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
572 |
public function show_post_notification_fields( $campaign_data ) {
|
573 |
-
|
574 |
-
$
|
575 |
-
$
|
|
|
576 |
$campaign_type = ! empty( $campaign_data['type'] ) ? $campaign_data['type'] : '';
|
577 |
-
$editor_type
|
578 |
?>
|
579 |
<div class="ig-es-campaign-categories-wrapper block mx-4 border-b border-gray-200 pt-4 pb-4">
|
580 |
<div scope="row" class="pb-1 text-left">
|
@@ -584,7 +594,7 @@ class ES_Post_Notifications_Table {
|
|
584 |
<table border="0" cellspacing="0" class="pt-3">
|
585 |
<tbody>
|
586 |
<?php
|
587 |
-
$categories_lists = ES_Common::prepare_categories_html( $
|
588 |
echo wp_kses( $categories_lists, $allowedtags );
|
589 |
?>
|
590 |
</tbody>
|
@@ -597,12 +607,62 @@ class ES_Post_Notifications_Table {
|
|
597 |
<?php esc_html_e( 'Select custom post type(s)', 'email-subscribers' ); ?></span>
|
598 |
</label>
|
599 |
</div>
|
600 |
-
<div class="">
|
601 |
<table border="0" cellspacing="0">
|
602 |
<tbody>
|
603 |
<?php
|
604 |
-
$
|
605 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
606 |
?>
|
607 |
</tbody>
|
608 |
</table>
|
569 |
}
|
570 |
}
|
571 |
|
572 |
+
/**
|
573 |
+
* Show post notification related fields
|
574 |
+
*
|
575 |
+
* Post categories etc.
|
576 |
+
*
|
577 |
+
* @since 5.1.0
|
578 |
+
*
|
579 |
+
* @param array $campaign_data
|
580 |
+
*/
|
581 |
public function show_post_notification_fields( $campaign_data ) {
|
582 |
+
// We are storing both post categories and CPTs in one column 'categories'.
|
583 |
+
$categories = isset( $campaign_data['categories'] ) ? $campaign_data['categories'] : '';
|
584 |
+
$cat_cpts = ES_Common::convert_categories_string_to_array( $categories, true );
|
585 |
+
$allowedtags = ig_es_allowed_html_tags_in_esc();
|
586 |
$campaign_type = ! empty( $campaign_data['type'] ) ? $campaign_data['type'] : '';
|
587 |
+
$editor_type = ! empty( $campaign_data['meta']['editor_type'] ) ? $campaign_data['meta']['editor_type'] : IG_ES_DRAG_AND_DROP_EDITOR;
|
588 |
?>
|
589 |
<div class="ig-es-campaign-categories-wrapper block mx-4 border-b border-gray-200 pt-4 pb-4">
|
590 |
<div scope="row" class="pb-1 text-left">
|
594 |
<table border="0" cellspacing="0" class="pt-3">
|
595 |
<tbody>
|
596 |
<?php
|
597 |
+
$categories_lists = ES_Common::prepare_categories_html( $cat_cpts );
|
598 |
echo wp_kses( $categories_lists, $allowedtags );
|
599 |
?>
|
600 |
</tbody>
|
607 |
<?php esc_html_e( 'Select custom post type(s)', 'email-subscribers' ); ?></span>
|
608 |
</label>
|
609 |
</div>
|
610 |
+
<div class="ig-es-cpt-filters">
|
611 |
<table border="0" cellspacing="0">
|
612 |
<tbody>
|
613 |
<?php
|
614 |
+
$selected_post_types = array();
|
615 |
+
if ( ! empty( $cat_cpts ) ) {
|
616 |
+
foreach ( $cat_cpts as $cat_cpt ) {
|
617 |
+
// CPTs are stored in the 'categories' column with {T} prefix/suffix.
|
618 |
+
$is_post_type = strpos( $cat_cpt, '{T}' ) !== false;
|
619 |
+
if ( $is_post_type ) {
|
620 |
+
$selected_post_types[] = str_replace( '{T}', '', $cat_cpt );
|
621 |
+
}
|
622 |
+
}
|
623 |
+
}
|
624 |
+
$custom_post_types = ES_Common::get_custom_post_types();
|
625 |
+
if ( ! empty( $custom_post_types ) ) {
|
626 |
+
foreach ( $custom_post_types as $post_type ) {
|
627 |
+
$is_cpt_selected = in_array( $post_type, $selected_post_types, true );
|
628 |
+
if ( $is_cpt_selected ) {
|
629 |
+
$checked = 'checked="checked"';
|
630 |
+
} else {
|
631 |
+
$checked = '';
|
632 |
+
}
|
633 |
+
$post_type_object = get_post_type_object( $post_type );
|
634 |
+
$post_type__name = $post_type_object->labels->singular_name;
|
635 |
+
?>
|
636 |
+
<tr class="es-post-types-row<?php echo $is_cpt_selected ? ' checked' : ''; ?>">
|
637 |
+
<td style="padding-top:4px;padding-bottom:4px;padding-right:10px;">
|
638 |
+
<span class="block pr-4 text-sm font-medium text-gray-600 pb-2">
|
639 |
+
<input
|
640 |
+
type="checkbox"
|
641 |
+
id="es_custom_post_type_<?php echo esc_attr( $post_type ); ?>" name="campaign_data[es_note_cpt][]"
|
642 |
+
value="<?php echo '{T}' . esc_html( $post_type ) . '{T}'; ?>"
|
643 |
+
<?php echo esc_attr( $checked ); ?>
|
644 |
+
class="es_custom_post_type form-checkbox"
|
645 |
+
>
|
646 |
+
<label for="es_custom_post_type_<?php echo esc_attr( $post_type ); ?>">
|
647 |
+
<?php echo esc_html( $post_type__name ); ?>
|
648 |
+
</label>
|
649 |
+
</span>
|
650 |
+
<?php
|
651 |
+
do_action( 'ig_es_after_post_type_checkbox', $post_type, $campaign_data );
|
652 |
+
?>
|
653 |
+
</td>
|
654 |
+
</tr>
|
655 |
+
<?php
|
656 |
+
}
|
657 |
+
} else {
|
658 |
+
?>
|
659 |
+
<tr>
|
660 |
+
<span class="block pr-4 text-sm font-normal text-gray-600 pb-2">
|
661 |
+
<?php echo esc_html__( 'No Custom Post Types Available', 'email-subscribers' ); ?>
|
662 |
+
</span>
|
663 |
+
</tr>
|
664 |
+
<?php
|
665 |
+
}
|
666 |
?>
|
667 |
</tbody>
|
668 |
</table>
|
lite/includes/classes/class-es-tools.php
CHANGED
@@ -38,12 +38,12 @@ class ES_Tools {
|
|
38 |
$response = array();
|
39 |
|
40 |
$email = sanitize_email( ig_es_get_request_data( 'es_test_email' ) );
|
41 |
-
$campaign_id = ig_es_get_data( $_POST, 'campaign_id', 0 );
|
42 |
-
$campaign_type = ig_es_get_data( $_POST, 'campaign_type', '' );
|
43 |
-
$template_id = ig_es_get_data( $_POST, 'template_id', 0 );
|
44 |
$subject = ig_es_get_data( $_POST, 'subject', '', true );
|
45 |
$content = ig_es_get_request_data( 'content', '', false );
|
46 |
-
$attachments = ig_es_get_data( $_POST, 'attachments', array() );
|
47 |
|
48 |
if ( ! empty( $email ) ) {
|
49 |
|
38 |
$response = array();
|
39 |
|
40 |
$email = sanitize_email( ig_es_get_request_data( 'es_test_email' ) );
|
41 |
+
$campaign_id = ig_es_get_data( $_POST, 'campaign_id', 0, true );
|
42 |
+
$campaign_type = ig_es_get_data( $_POST, 'campaign_type', '', true );
|
43 |
+
$template_id = ig_es_get_data( $_POST, 'template_id', 0, true );
|
44 |
$subject = ig_es_get_data( $_POST, 'subject', '', true );
|
45 |
$content = ig_es_get_request_data( 'content', '', false );
|
46 |
+
$attachments = ig_es_get_data( $_POST, 'attachments', array(), true );
|
47 |
|
48 |
if ( ! empty( $email ) ) {
|
49 |
|
lite/includes/db/class-es-db-campaigns.php
CHANGED
@@ -681,6 +681,7 @@ class ES_DB_Campaigns extends ES_DB {
|
|
681 |
}
|
682 |
|
683 |
$campaigns = $this->get_by_conditions( $where, ARRAY_A );
|
|
|
684 |
}
|
685 |
|
686 |
return $campaigns;
|
681 |
}
|
682 |
|
683 |
$campaigns = $this->get_by_conditions( $where, ARRAY_A );
|
684 |
+
$campaigns = apply_filters( 'ig_es_campaigns_for_post', $campaigns, $post_id );
|
685 |
}
|
686 |
|
687 |
return $campaigns;
|
lite/language.php
CHANGED
@@ -633,7 +633,7 @@ __( 'Disable', 'email-subscribers' ),
|
|
633 |
__( 'Search Forms', 'email-subscribers' ),
|
634 |
__( 'No Forms avaliable.', 'email-subscribers' ),
|
635 |
__( 'View Reports', 'email-subscribers' ),
|
636 |
-
/* translators: %s: Post type
|
637 |
__( 'Notification emails has been queued for this %s.', 'email-subscribers' ),
|
638 |
__( 'Please enter email address', 'email-subscribers' ),
|
639 |
__( 'You need to wait for sometime before subscribing again', 'email-subscribers' ),
|
@@ -1184,6 +1184,8 @@ __( 'Free!', 'email-subscribers' ),
|
|
1184 |
__( 'Email address to receive preview email for testing', 'email-subscribers' ),
|
1185 |
__( 'Send email', 'email-subscribers' ),
|
1186 |
__( 'Score', 'email-subscribers' ),
|
|
|
|
|
1187 |
__( 'Bounce status', 'email-subscribers' ),
|
1188 |
__( 'Soft Bounced', 'email-subscribers' ),
|
1189 |
__( 'Mailjet Bounce notification URL', 'email-subscribers' ),
|
@@ -1301,6 +1303,7 @@ __( 'Your cart has been restored.', 'email-subscribers' ),
|
|
1301 |
__( 'Your cart could not be restored, it may have expired.', 'email-subscribers' ),
|
1302 |
__( 'Sequence', 'email-subscribers' ),
|
1303 |
__( 'Please enter an email address.', 'email-subscribers' ),
|
|
|
1304 |
__( 'Add Attachment', 'email-subscribers' ),
|
1305 |
/* translators: %s: Attachmen max file size. */
|
1306 |
__( 'Please attach a file having size lower than %s.', 'email-subscribers' ),
|
@@ -1365,6 +1368,7 @@ __( 'Once a day at...', 'email-subscribers' ),
|
|
1365 |
__( 'Weekly on...', 'email-subscribers' ),
|
1366 |
__( 'Monthly on the...', 'email-subscribers' ),
|
1367 |
__( 'Immediately', 'email-subscribers' ),
|
|
|
1368 |
__( 'Create Sequence', 'email-subscribers' ),
|
1369 |
__( 'Edit Sequence', 'email-subscribers' ),
|
1370 |
__( 'Add Sequence name', 'email-subscribers' ),
|
633 |
__( 'Search Forms', 'email-subscribers' ),
|
634 |
__( 'No Forms avaliable.', 'email-subscribers' ),
|
635 |
__( 'View Reports', 'email-subscribers' ),
|
636 |
+
/* translators: %s: Post type name */
|
637 |
__( 'Notification emails has been queued for this %s.', 'email-subscribers' ),
|
638 |
__( 'Please enter email address', 'email-subscribers' ),
|
639 |
__( 'You need to wait for sometime before subscribing again', 'email-subscribers' ),
|
1184 |
__( 'Email address to receive preview email for testing', 'email-subscribers' ),
|
1185 |
__( 'Send email', 'email-subscribers' ),
|
1186 |
__( 'Score', 'email-subscribers' ),
|
1187 |
+
/* translators: %s: Taxonomy name */
|
1188 |
+
__( 'Any %s', 'email-subscribers' ),
|
1189 |
__( 'Bounce status', 'email-subscribers' ),
|
1190 |
__( 'Soft Bounced', 'email-subscribers' ),
|
1191 |
__( 'Mailjet Bounce notification URL', 'email-subscribers' ),
|
1303 |
__( 'Your cart could not be restored, it may have expired.', 'email-subscribers' ),
|
1304 |
__( 'Sequence', 'email-subscribers' ),
|
1305 |
__( 'Please enter an email address.', 'email-subscribers' ),
|
1306 |
+
__( 'Please enter the subject.', 'email-subscribers' ),
|
1307 |
__( 'Add Attachment', 'email-subscribers' ),
|
1308 |
/* translators: %s: Attachmen max file size. */
|
1309 |
__( 'Please attach a file having size lower than %s.', 'email-subscribers' ),
|
1368 |
__( 'Weekly on...', 'email-subscribers' ),
|
1369 |
__( 'Monthly on the...', 'email-subscribers' ),
|
1370 |
__( 'Immediately', 'email-subscribers' ),
|
1371 |
+
__( 'Error in sending email. Please try again later.', 'email-subscribers' ),
|
1372 |
__( 'Create Sequence', 'email-subscribers' ),
|
1373 |
__( 'Edit Sequence', 'email-subscribers' ),
|
1374 |
__( 'Add Sequence name', 'email-subscribers' ),
|
lite/languages/email-subscribers.pot
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
# This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Email Subscribers & Newsletters 5.3.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-subscribers\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2022-04-
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.4.0\n"
|
15 |
"X-Domain: email-subscribers\n"
|
@@ -80,7 +80,7 @@ msgid "Please add a campaign subject before saving."
|
|
80 |
msgstr ""
|
81 |
|
82 |
#: lite/admin/class-email-subscribers-admin.php:176
|
83 |
-
#: pro/pro-class-email-subscribers.php:
|
84 |
msgid "Please add email body."
|
85 |
msgstr ""
|
86 |
|
@@ -418,7 +418,7 @@ msgstr ""
|
|
418 |
|
419 |
#: lite/admin/class-es-campaign-admin.php:294
|
420 |
#: lite/includes/classes/class-es-newsletters.php:255
|
421 |
-
#: pro/pro-class-sequences.php:
|
422 |
msgid "Content"
|
423 |
msgstr ""
|
424 |
|
@@ -433,6 +433,7 @@ msgstr ""
|
|
433 |
#: lite/includes/classes/class-es-reports-table.php:299
|
434 |
#: lite/includes/workflows/admin/views/action.php:28
|
435 |
#: pro/classes/class-es-pro-sequence-report.php:273
|
|
|
436 |
msgid "Preview"
|
437 |
msgstr ""
|
438 |
|
@@ -474,6 +475,7 @@ msgstr ""
|
|
474 |
|
475 |
#: lite/admin/class-es-campaign-admin.php:432
|
476 |
#: lite/includes/workflows/admin/views/meta-box-actions.php:92
|
|
|
477 |
msgid "Preview in browser"
|
478 |
msgstr ""
|
479 |
|
@@ -482,6 +484,7 @@ msgstr ""
|
|
482 |
#: lite/includes/classes/class-es-reports-table.php:588
|
483 |
#: lite/includes/classes/class-es-templates-table.php:150
|
484 |
#: lite/includes/workflows/admin/views/meta-box-actions.php:111
|
|
|
485 |
#: lite/admin/js/src/views/GalleryItemPreview.js:29
|
486 |
msgid "There could be a slight variation on how your customer will view the email content."
|
487 |
msgstr ""
|
@@ -589,6 +592,7 @@ msgstr ""
|
|
589 |
#: lite/admin/class-ig-es-campaign-rules.php:224
|
590 |
#: lite/includes/classes/class-es-post-notifications.php:545
|
591 |
#: lite/includes/workflows/admin/views/meta-box-actions.php:122
|
|
|
592 |
msgid "Loading..."
|
593 |
msgstr ""
|
594 |
|
@@ -678,7 +682,7 @@ msgstr ""
|
|
678 |
#: lite/public/partials/class-es-shortcode.php:283
|
679 |
#: pro/classes/class-es-pro-campaign-rules.php:35
|
680 |
#: pro/classes/class-es-pro-embed-form.php:193
|
681 |
-
#: pro/pro-class-email-subscribers.php:
|
682 |
msgid "Email"
|
683 |
msgstr ""
|
684 |
|
@@ -872,7 +876,7 @@ msgid "Seems like your server is not setup correctly to send emails. Please conf
|
|
872 |
msgstr ""
|
873 |
|
874 |
#: lite/admin/class-ig-es-onboarding.php:1120
|
875 |
-
#: lite/includes/classes/class-es-post-notifications.php:
|
876 |
msgid "New Post Published - {{POSTTITLE}}"
|
877 |
msgstr ""
|
878 |
|
@@ -988,7 +992,7 @@ msgstr ""
|
|
988 |
|
989 |
#: lite/admin/partials/dashboard.php:179
|
990 |
#: lite/admin/partials/dashboard.php:181
|
991 |
-
#: pro/pro-class-sequences.php:
|
992 |
msgid "New Sequence"
|
993 |
msgstr ""
|
994 |
|
@@ -1123,8 +1127,8 @@ msgstr ""
|
|
1123 |
|
1124 |
#: lite/admin/partials/help.php:239
|
1125 |
#: lite/includes/class-es-common.php:538
|
1126 |
-
#: lite/includes/class-es-common.php:
|
1127 |
-
#: lite/includes/class-es-common.php:
|
1128 |
#: lite/includes/classes/class-es-campaigns-table.php:309
|
1129 |
#: lite/includes/workflows/admin/views/meta-box-save.php:28
|
1130 |
#: pro/classes/class-es-pro-reports-data.php:193
|
@@ -1134,7 +1138,7 @@ msgstr ""
|
|
1134 |
|
1135 |
#: lite/admin/partials/help.php:241
|
1136 |
#: lite/includes/class-es-common.php:539
|
1137 |
-
#: lite/includes/class-es-common.php:
|
1138 |
#: lite/includes/workflows/admin/views/meta-box-save.php:27
|
1139 |
#: pro/classes/class-es-pro-reports-data.php:198
|
1140 |
#: pro/classes/class-es-pro-sequence-report.php:239
|
@@ -1500,115 +1504,116 @@ msgid "None (Don't include post from any category)"
|
|
1500 |
msgstr ""
|
1501 |
|
1502 |
#: lite/includes/class-es-common.php:679
|
|
|
1503 |
msgid "No Custom Post Types Available"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: lite/includes/class-es-common.php:
|
1507 |
msgid "Single Opt-In"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#: lite/includes/class-es-common.php:
|
1511 |
msgid "Double Opt-In"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#: lite/includes/class-es-common.php:
|
1515 |
#: pro/pro-class-post-digest.php:139
|
1516 |
msgid "Monday"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: lite/includes/class-es-common.php:
|
1520 |
#: pro/pro-class-post-digest.php:140
|
1521 |
msgid "Tuesday"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: lite/includes/class-es-common.php:
|
1525 |
#: pro/pro-class-post-digest.php:141
|
1526 |
msgid "Wednesday"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
#: lite/includes/class-es-common.php:
|
1530 |
#: pro/pro-class-post-digest.php:142
|
1531 |
msgid "Thursday"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: lite/includes/class-es-common.php:
|
1535 |
#: pro/pro-class-post-digest.php:143
|
1536 |
msgid "Friday"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: lite/includes/class-es-common.php:
|
1540 |
#: pro/pro-class-post-digest.php:144
|
1541 |
msgid "Saturday"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: lite/includes/class-es-common.php:
|
1545 |
#: pro/pro-class-post-digest.php:138
|
1546 |
msgid "Sunday"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: lite/includes/class-es-common.php:
|
1550 |
msgid "Full Size"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: lite/includes/class-es-common.php:
|
1554 |
msgid "Medium Size"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: lite/includes/class-es-common.php:
|
1558 |
#: lite/includes/classes/class-es-templates-table.php:168
|
1559 |
msgid "Thumbnail"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: lite/includes/class-es-common.php:
|
1563 |
msgid "Top 10 Tips on How to Build an Email List"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: lite/includes/class-es-common.php:
|
1567 |
#: pro/templates/email/es-admin-subscription-summary.php:174
|
1568 |
msgid "Why are Your Email Unsubscribes Increasing and How to Fix Them?"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: lite/includes/class-es-common.php:
|
1572 |
msgid "Balance Email Marketing and Social Media Marketing"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
-
#: lite/includes/class-es-common.php:
|
1576 |
msgid "Use social proof to grow blog traffic through email"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: lite/includes/class-es-common.php:
|
1580 |
msgid "5 Simple Tricks to Improve Email Marketing Campaign Results"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: lite/includes/class-es-common.php:
|
1584 |
#: lite/includes/pro-features.php:176
|
1585 |
msgid "Email Subscribers PRO"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#: lite/includes/class-es-common.php:
|
1589 |
msgid "Lifetime"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: lite/includes/class-es-common.php:
|
1593 |
msgid "<b>Email Subscribers Secret Club</b>"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#: lite/includes/class-es-common.php:
|
1597 |
#: lite/includes/feedback.php:123
|
1598 |
msgid "Join Now"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#: lite/includes/class-es-common.php:
|
1602 |
msgid "All Types"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#: lite/includes/class-es-common.php:
|
1606 |
#: lite/includes/classes/class-es-campaigns-table.php:569
|
1607 |
msgid "Draft"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: lite/includes/class-es-common.php:
|
1611 |
-
#: lite/includes/class-es-common.php:
|
1612 |
#: lite/includes/classes/class-es-campaign-report.php:237
|
1613 |
#: lite/includes/classes/class-es-campaigns-table.php:550
|
1614 |
#: lite/includes/classes/class-es-campaigns-table.php:588
|
@@ -1618,7 +1623,7 @@ msgstr ""
|
|
1618 |
msgid "Sending"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: lite/includes/class-es-common.php:
|
1622 |
#: lite/includes/classes/class-es-campaigns-table.php:310
|
1623 |
#: lite/includes/classes/class-es-campaigns-table.php:543
|
1624 |
#: lite/includes/classes/class-es-campaigns-table.php:579
|
@@ -1627,8 +1632,8 @@ msgstr ""
|
|
1627 |
msgid "Scheduled"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: lite/includes/class-es-common.php:
|
1631 |
-
#: lite/includes/class-es-common.php:
|
1632 |
#: lite/includes/classes/class-es-campaign-report.php:221
|
1633 |
#: lite/includes/classes/class-es-campaigns-table.php:557
|
1634 |
#: lite/includes/classes/class-es-campaigns-table.php:606
|
@@ -1640,23 +1645,23 @@ msgstr ""
|
|
1640 |
msgid "Sent"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: lite/includes/class-es-common.php:
|
1644 |
#: lite/includes/classes/class-es-campaigns-table.php:691
|
1645 |
#: lite/includes/classes/class-es-contacts-table.php:1141
|
1646 |
msgid "All Statuses"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: lite/includes/class-es-common.php:
|
1650 |
msgid "Upgrade"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#: lite/includes/class-es-common.php:
|
1654 |
#: lite/includes/classes/class-es-reports-table.php:628
|
1655 |
#: pro/classes/class-es-pro-reports-data.php:878
|
1656 |
msgid "All Status"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: lite/includes/class-es-common.php:
|
1660 |
#: lite/includes/classes/class-es-campaign-report.php:229
|
1661 |
#: lite/includes/classes/class-es-reports-table.php:625
|
1662 |
#: pro/classes/class-es-pro-reports-data.php:178
|
@@ -1664,37 +1669,37 @@ msgstr ""
|
|
1664 |
msgid "In Queue"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: lite/includes/class-es-common.php:
|
1668 |
msgid "Select field type"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: lite/includes/class-es-common.php:
|
1672 |
msgid "Text"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: lite/includes/class-es-common.php:
|
1676 |
msgid "TextArea"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: lite/includes/class-es-common.php:
|
1680 |
msgid "Dropdown"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: lite/includes/class-es-common.php:
|
1684 |
msgid "Radio"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: lite/includes/class-es-common.php:
|
1688 |
#: lite/includes/workflows/fields/class-es-number.php:48
|
1689 |
msgid "Number"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: lite/includes/class-es-common.php:
|
1693 |
#: lite/includes/pro-features.php:1132
|
1694 |
#: lite/includes/workflows/admin/views/meta-box-timing.php:82
|
1695 |
#: lite/includes/workflows/fields/class-es-date.php:31
|
1696 |
#: pro/classes/class-es-campaign-admin-pro.php:196
|
1697 |
-
#: pro/pro-class-email-subscribers.php:
|
1698 |
msgid "Date"
|
1699 |
msgstr ""
|
1700 |
|
@@ -2541,7 +2546,7 @@ msgstr ""
|
|
2541 |
#: lite/includes/classes/class-es-import-subscribers.php:682
|
2542 |
#: lite/includes/classes/class-es-import-subscribers.php:1088
|
2543 |
#: lite/includes/classes/class-es-import-subscribers.php:1343
|
2544 |
-
#: pro/pro-class-email-subscribers.php:
|
2545 |
msgid "First Name"
|
2546 |
msgstr ""
|
2547 |
|
@@ -2550,7 +2555,7 @@ msgstr ""
|
|
2550 |
#: lite/includes/classes/class-es-import-subscribers.php:683
|
2551 |
#: lite/includes/classes/class-es-import-subscribers.php:1093
|
2552 |
#: lite/includes/classes/class-es-import-subscribers.php:1344
|
2553 |
-
#: pro/pro-class-email-subscribers.php:
|
2554 |
msgid "Last Name"
|
2555 |
msgstr ""
|
2556 |
|
@@ -2640,7 +2645,7 @@ msgstr ""
|
|
2640 |
|
2641 |
#: lite/includes/classes/class-es-forms-table.php:342
|
2642 |
#: lite/includes/classes/class-es-newsletters.php:333
|
2643 |
-
#: pro/pro-class-sequences.php:
|
2644 |
msgid "Documentation "
|
2645 |
msgstr ""
|
2646 |
|
@@ -2795,7 +2800,7 @@ msgstr ""
|
|
2795 |
msgid "View Reports"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
-
#. translators: %s: Post type
|
2799 |
#: lite/includes/classes/class-es-handle-post-notification.php:525
|
2800 |
msgid "Notification emails has been queued for this %s."
|
2801 |
msgstr ""
|
@@ -3339,7 +3344,7 @@ msgid " Edit Post Notification"
|
|
3339 |
msgstr ""
|
3340 |
|
3341 |
#: lite/includes/classes/class-es-post-notifications.php:315
|
3342 |
-
#: pro/pro-class-sequences.php:
|
3343 |
msgid "Campaigns "
|
3344 |
msgstr ""
|
3345 |
|
@@ -3360,7 +3365,7 @@ msgid "Content of the selected template will be sent out as post notification."
|
|
3360 |
msgstr ""
|
3361 |
|
3362 |
#: lite/includes/classes/class-es-post-notifications.php:410
|
3363 |
-
#: lite/includes/classes/class-es-post-notifications.php:
|
3364 |
msgid "Select post category"
|
3365 |
msgstr ""
|
3366 |
|
@@ -3369,7 +3374,7 @@ msgid "Notification will be sent out when any post from selected categories will
|
|
3369 |
msgstr ""
|
3370 |
|
3371 |
#: lite/includes/classes/class-es-post-notifications.php:427
|
3372 |
-
#: lite/includes/classes/class-es-post-notifications.php:
|
3373 |
msgid "Select custom post type(s)"
|
3374 |
msgstr ""
|
3375 |
|
@@ -3389,44 +3394,44 @@ msgstr ""
|
|
3389 |
msgid "Posts Settings"
|
3390 |
msgstr ""
|
3391 |
|
3392 |
-
#: lite/includes/classes/class-es-post-notifications.php:
|
3393 |
-
#: lite/includes/classes/class-es-post-notifications.php:
|
3394 |
msgid "Hello {{NAME}},"
|
3395 |
msgstr ""
|
3396 |
|
3397 |
-
#: lite/includes/classes/class-es-post-notifications.php:
|
3398 |
-
#: lite/includes/classes/class-es-post-notifications.php:
|
3399 |
msgid "We have published a new blog article on our website"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
-
#: lite/includes/classes/class-es-post-notifications.php:
|
3403 |
-
#: lite/includes/classes/class-es-post-notifications.php:
|
3404 |
msgid "You can view it from this link"
|
3405 |
msgstr ""
|
3406 |
|
3407 |
-
#: lite/includes/classes/class-es-post-notifications.php:
|
3408 |
msgid "Thanks & Regards"
|
3409 |
msgstr ""
|
3410 |
|
3411 |
-
#: lite/includes/classes/class-es-post-notifications.php:
|
3412 |
#: lite/includes/workflows/triggers/class-es-trigger-campaign-sent.php:32
|
3413 |
msgid "Admin"
|
3414 |
msgstr ""
|
3415 |
|
3416 |
-
#: lite/includes/classes/class-es-post-notifications.php:
|
3417 |
-
#: lite/includes/classes/class-es-post-notifications.php:
|
3418 |
msgid "You received this email because in the past you have provided us your email address : {{EMAIL}} to receive notifications when new updates are posted."
|
3419 |
msgstr ""
|
3420 |
|
3421 |
-
#: lite/includes/classes/class-es-post-notifications.php:
|
3422 |
msgid "Your Brand Name"
|
3423 |
msgstr ""
|
3424 |
|
3425 |
-
#: lite/includes/classes/class-es-post-notifications.php:
|
3426 |
msgid "If you wish to unsubscribe from our newsletter, click"
|
3427 |
msgstr ""
|
3428 |
|
3429 |
-
#: lite/includes/classes/class-es-post-notifications.php:
|
3430 |
msgid "here"
|
3431 |
msgstr ""
|
3432 |
|
@@ -3534,18 +3539,19 @@ msgstr ""
|
|
3534 |
|
3535 |
#. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
|
3536 |
#: lite/includes/classes/class-es-templates-table.php:209
|
3537 |
-
#: pro/pro-class-email-subscribers.php:
|
3538 |
msgid "Duplicate"
|
3539 |
msgstr ""
|
3540 |
|
3541 |
#: lite/includes/classes/class-es-templates-table.php:237
|
3542 |
-
#: lite/includes/db/class-es-db-campaigns.php:
|
3543 |
-
#: lite/includes/db/class-es-db-campaigns.php:
|
3544 |
msgid "Copy"
|
3545 |
msgstr ""
|
3546 |
|
3547 |
#: lite/includes/classes/class-es-tools.php:78
|
3548 |
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:100
|
|
|
3549 |
msgid "Email has been sent. Please check your inbox"
|
3550 |
msgstr ""
|
3551 |
|
@@ -3660,7 +3666,7 @@ msgstr ""
|
|
3660 |
|
3661 |
#. translators: 1. Delay amount 2. delay unit
|
3662 |
#: lite/includes/notices/views/trial-to-premium-offer.php:41
|
3663 |
-
#: pro/pro-class-sequences.php:
|
3664 |
msgid "day"
|
3665 |
msgid_plural "days"
|
3666 |
msgstr[0] ""
|
@@ -3796,12 +3802,12 @@ msgid "Access Control"
|
|
3796 |
msgstr ""
|
3797 |
|
3798 |
#: lite/includes/pro-features.php:278
|
3799 |
-
#: pro/pro-class-email-subscribers.php:
|
3800 |
msgid "Track clicks"
|
3801 |
msgstr ""
|
3802 |
|
3803 |
#: lite/includes/pro-features.php:279
|
3804 |
-
#: pro/pro-class-email-subscribers.php:
|
3805 |
msgid "Do you want to track when people click links in your emails? (We recommend keeping it enabled)"
|
3806 |
msgstr ""
|
3807 |
|
@@ -3853,7 +3859,7 @@ msgid "Opt-in consent text"
|
|
3853 |
msgstr ""
|
3854 |
|
3855 |
#: lite/includes/pro-features.php:348
|
3856 |
-
#: pro/pro-class-email-subscribers.php:
|
3857 |
msgid "Weekly summary"
|
3858 |
msgstr ""
|
3859 |
|
@@ -3901,7 +3907,7 @@ msgid "Prevent bot signups even further. Set default captcha option for new subs
|
|
3901 |
msgstr ""
|
3902 |
|
3903 |
#: lite/includes/pro-features.php:428
|
3904 |
-
#: pro/pro-class-email-subscribers.php:
|
3905 |
msgid "Track IP address"
|
3906 |
msgstr ""
|
3907 |
|
@@ -4173,26 +4179,26 @@ msgstr ""
|
|
4173 |
|
4174 |
#: lite/includes/pro-features.php:1122
|
4175 |
#: pro/classes/class-es-campaign-admin-pro.php:171
|
4176 |
-
#: pro/pro-class-email-subscribers.php:
|
4177 |
msgid "Send options"
|
4178 |
msgstr ""
|
4179 |
|
4180 |
#: lite/includes/pro-features.php:1125
|
4181 |
#: pro/classes/class-es-campaign-admin-pro.php:182
|
4182 |
-
#: pro/pro-class-email-subscribers.php:
|
4183 |
msgid "Schedule for later"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
#: lite/includes/pro-features.php:1141
|
4187 |
#: lite/includes/workflows/fields/class-es-time.php:64
|
4188 |
#: pro/classes/class-es-campaign-admin-pro.php:210
|
4189 |
-
#: pro/pro-class-email-subscribers.php:
|
4190 |
msgid "Time"
|
4191 |
msgstr ""
|
4192 |
|
4193 |
#: lite/includes/pro-features.php:1151
|
4194 |
#: pro/classes/class-es-campaign-admin-pro.php:225
|
4195 |
-
#: pro/pro-class-email-subscribers.php:
|
4196 |
msgid "Local Time: "
|
4197 |
msgstr ""
|
4198 |
|
@@ -4317,12 +4323,12 @@ msgid "Mobile"
|
|
4317 |
msgstr ""
|
4318 |
|
4319 |
#: lite/includes/pro-features.php:1690
|
4320 |
-
#: pro/pro-class-email-subscribers.php:
|
4321 |
msgid "Add Attachments"
|
4322 |
msgstr ""
|
4323 |
|
4324 |
#: lite/includes/pro-features.php:1720
|
4325 |
-
#: pro/pro-class-email-subscribers.php:
|
4326 |
msgid "Import existing WordPress users"
|
4327 |
msgstr ""
|
4328 |
|
@@ -4519,6 +4525,7 @@ msgid "+ Add action"
|
|
4519 |
msgstr ""
|
4520 |
|
4521 |
#: lite/includes/workflows/admin/views/meta-box-actions.php:87
|
|
|
4522 |
msgid "Email Preview"
|
4523 |
msgstr ""
|
4524 |
|
@@ -4868,7 +4875,7 @@ msgid "Send welcome email when someone subscribes"
|
|
4868 |
msgstr ""
|
4869 |
|
4870 |
#: lite/includes/workflows/db/class-es-db-workflows.php:608
|
4871 |
-
#: pro/pro-class-email-subscribers.php:
|
4872 |
msgid "Send confirmation email"
|
4873 |
msgstr ""
|
4874 |
|
@@ -5044,7 +5051,7 @@ msgstr ""
|
|
5044 |
|
5045 |
#: lite/public/partials/cron-message.php:43
|
5046 |
#: pro/classes/class-es-campaign-admin-pro.php:176
|
5047 |
-
#: pro/pro-class-email-subscribers.php:
|
5048 |
msgid "Send Now"
|
5049 |
msgstr ""
|
5050 |
|
@@ -5088,6 +5095,11 @@ msgstr ""
|
|
5088 |
msgid "Score"
|
5089 |
msgstr ""
|
5090 |
|
|
|
|
|
|
|
|
|
|
|
5091 |
#: pro/classes/class-es-pro-bounce-handler.php:100
|
5092 |
msgid "Bounce status"
|
5093 |
msgstr ""
|
@@ -5142,7 +5154,7 @@ msgstr ""
|
|
5142 |
|
5143 |
#: pro/classes/class-es-pro-custom-fields-table.php:40
|
5144 |
#: pro/classes/class-es-pro-custom-fields-table.php:92
|
5145 |
-
#: pro/pro-class-email-subscribers.php:
|
5146 |
msgid "Custom Fields"
|
5147 |
msgstr ""
|
5148 |
|
@@ -5273,7 +5285,7 @@ msgid "Recipient(s): "
|
|
5273 |
msgstr ""
|
5274 |
|
5275 |
#: pro/classes/class-es-pro-reports-data.php:261
|
5276 |
-
#: pro/pro-class-email-subscribers.php:
|
5277 |
msgid "Clicked"
|
5278 |
msgstr ""
|
5279 |
|
@@ -5562,252 +5574,256 @@ msgstr ""
|
|
5562 |
msgid "Your cart could not be restored, it may have expired."
|
5563 |
msgstr ""
|
5564 |
|
5565 |
-
#: pro/pro-class-email-subscribers.php:
|
5566 |
#: pro/pro-class-post-digest.php:33
|
5567 |
msgid "Sequence"
|
5568 |
msgstr ""
|
5569 |
|
5570 |
-
#: pro/pro-class-email-subscribers.php:
|
5571 |
msgid "Please enter an email address."
|
5572 |
msgstr ""
|
5573 |
|
5574 |
#: pro/pro-class-email-subscribers.php:599
|
|
|
|
|
|
|
|
|
5575 |
msgid "Add Attachment"
|
5576 |
msgstr ""
|
5577 |
|
5578 |
#. translators: %s: Attachmen max file size.
|
5579 |
-
#: pro/pro-class-email-subscribers.php:
|
5580 |
msgid "Please attach a file having size lower than %s."
|
5581 |
msgstr ""
|
5582 |
|
5583 |
-
#: pro/pro-class-email-subscribers.php:
|
5584 |
msgid "Are you sure you want to delete this?"
|
5585 |
msgstr ""
|
5586 |
|
5587 |
-
#: pro/pro-class-email-subscribers.php:
|
5588 |
-
#: pro/pro-class-email-subscribers.php:
|
5589 |
msgid "Checking your orders..."
|
5590 |
msgstr ""
|
5591 |
|
5592 |
-
#: pro/pro-class-email-subscribers.php:
|
5593 |
-
#: pro/pro-class-sequences.php:
|
5594 |
msgid "Send immediately"
|
5595 |
msgstr ""
|
5596 |
|
5597 |
-
#: pro/pro-class-email-subscribers.php:
|
5598 |
msgid "Send after"
|
5599 |
msgstr ""
|
5600 |
|
5601 |
-
#: pro/pro-class-email-subscribers.php:
|
5602 |
-
#: pro/pro-class-sequences.php:
|
5603 |
msgid "hour(s)"
|
5604 |
msgstr ""
|
5605 |
|
5606 |
-
#: pro/pro-class-email-subscribers.php:
|
5607 |
-
#: pro/pro-class-sequences.php:
|
5608 |
msgid "day(s)"
|
5609 |
msgstr ""
|
5610 |
|
5611 |
-
#: pro/pro-class-email-subscribers.php:
|
5612 |
-
#: pro/pro-class-sequences.php:
|
5613 |
msgid "week(s)"
|
5614 |
msgstr ""
|
5615 |
|
5616 |
-
#: pro/pro-class-email-subscribers.php:
|
5617 |
msgid "Clean My List"
|
5618 |
msgstr ""
|
5619 |
|
5620 |
-
#: pro/pro-class-email-subscribers.php:
|
5621 |
msgid "List cleanup is in progress..."
|
5622 |
msgstr ""
|
5623 |
|
5624 |
-
#: pro/pro-class-email-subscribers.php:
|
5625 |
msgid "List cleanup completed successfully."
|
5626 |
msgstr ""
|
5627 |
|
5628 |
-
#: pro/pro-class-email-subscribers.php:
|
5629 |
msgid "Email status"
|
5630 |
msgstr ""
|
5631 |
|
5632 |
-
#: pro/pro-class-email-subscribers.php:
|
5633 |
msgid "Last opened at"
|
5634 |
msgstr ""
|
5635 |
|
5636 |
-
#: pro/pro-class-email-subscribers.php:
|
5637 |
msgid "Select page"
|
5638 |
msgstr ""
|
5639 |
|
5640 |
-
#: pro/pro-class-email-subscribers.php:
|
5641 |
msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email."
|
5642 |
msgstr ""
|
5643 |
|
5644 |
-
#: pro/pro-class-email-subscribers.php:
|
5645 |
msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on email confirmation link from the double opt-in (confirmation) email."
|
5646 |
msgstr ""
|
5647 |
|
5648 |
-
#: pro/pro-class-email-subscribers.php:
|
5649 |
msgid "Enable?"
|
5650 |
msgstr ""
|
5651 |
|
5652 |
-
#: pro/pro-class-email-subscribers.php:
|
5653 |
msgid "When our automated weekly email should be sent out?"
|
5654 |
msgstr ""
|
5655 |
|
5656 |
-
#: pro/pro-class-email-subscribers.php:
|
5657 |
msgid "In which time we need to send our weekly summary?"
|
5658 |
msgstr ""
|
5659 |
|
5660 |
-
#: pro/pro-class-email-subscribers.php:
|
5661 |
msgid "Access Key ID"
|
5662 |
msgstr ""
|
5663 |
|
5664 |
-
#: pro/pro-class-email-subscribers.php:
|
5665 |
msgid "Secret Access Key"
|
5666 |
msgstr ""
|
5667 |
|
5668 |
-
#: pro/pro-class-email-subscribers.php:
|
5669 |
msgid "Closest Region"
|
5670 |
msgstr ""
|
5671 |
|
5672 |
-
#: pro/pro-class-email-subscribers.php:
|
5673 |
msgid "To decrease network latency between your site and Amazon SES and speed up email sending, select the Amazon SES API region which is closest to where your website is hosted."
|
5674 |
msgstr ""
|
5675 |
|
5676 |
-
#: pro/pro-class-email-subscribers.php:
|
5677 |
msgid "Private API Key"
|
5678 |
msgstr ""
|
5679 |
|
5680 |
-
#: pro/pro-class-email-subscribers.php:
|
5681 |
msgid "Domain Name"
|
5682 |
msgstr ""
|
5683 |
|
5684 |
-
#: pro/pro-class-email-subscribers.php:
|
5685 |
-
#: pro/pro-class-email-subscribers.php:
|
5686 |
msgid "United States"
|
5687 |
msgstr ""
|
5688 |
|
5689 |
-
#: pro/pro-class-email-subscribers.php:
|
5690 |
-
#: pro/pro-class-email-subscribers.php:
|
5691 |
msgid "Europe"
|
5692 |
msgstr ""
|
5693 |
|
5694 |
-
#: pro/pro-class-email-subscribers.php:
|
5695 |
-
#: pro/pro-class-email-subscribers.php:
|
5696 |
msgid "Region"
|
5697 |
msgstr ""
|
5698 |
|
5699 |
-
#: pro/pro-class-email-subscribers.php:
|
5700 |
msgid "mailgun.com"
|
5701 |
msgstr ""
|
5702 |
|
5703 |
-
#: pro/pro-class-email-subscribers.php:
|
5704 |
-
#: pro/pro-class-email-subscribers.php:
|
5705 |
msgid "API Key"
|
5706 |
msgstr ""
|
5707 |
|
5708 |
-
#: pro/pro-class-email-subscribers.php:
|
5709 |
msgid "Define which endpoint you want to use for sending messages. If you are operating under EU laws, you may be required to use EU region."
|
5710 |
msgstr ""
|
5711 |
|
5712 |
-
#: pro/pro-class-email-subscribers.php:
|
5713 |
msgid "API token"
|
5714 |
msgstr ""
|
5715 |
|
5716 |
-
#: pro/pro-class-email-subscribers.php:
|
5717 |
msgid "API key"
|
5718 |
msgstr ""
|
5719 |
|
5720 |
-
#: pro/pro-class-email-subscribers.php:
|
5721 |
msgid "Public key"
|
5722 |
msgstr ""
|
5723 |
|
5724 |
-
#: pro/pro-class-email-subscribers.php:
|
5725 |
msgid "Private key"
|
5726 |
msgstr ""
|
5727 |
|
5728 |
-
#: pro/pro-class-email-subscribers.php:
|
5729 |
msgid "You are not allowed to duplicate campaign."
|
5730 |
msgstr ""
|
5731 |
|
5732 |
-
#: pro/pro-class-email-subscribers.php:
|
5733 |
msgid "Campaign duplicated !"
|
5734 |
msgstr ""
|
5735 |
|
5736 |
-
#: pro/pro-class-email-subscribers.php:
|
5737 |
msgid "Import WordPress users with following roles"
|
5738 |
msgstr ""
|
5739 |
|
5740 |
-
#: pro/pro-class-email-subscribers.php:
|
5741 |
-
#: pro/pro-class-email-subscribers.php:
|
5742 |
msgid "Proceed "
|
5743 |
msgstr ""
|
5744 |
|
5745 |
-
#: pro/pro-class-email-subscribers.php:
|
5746 |
msgid "Import from WooCommerce orders"
|
5747 |
msgstr ""
|
5748 |
|
5749 |
-
#: pro/pro-class-email-subscribers.php:
|
5750 |
msgid "Select order statuses"
|
5751 |
msgstr ""
|
5752 |
|
5753 |
-
#: pro/pro-class-email-subscribers.php:
|
5754 |
msgid "Orders should contain these products"
|
5755 |
msgstr ""
|
5756 |
|
5757 |
-
#: pro/pro-class-email-subscribers.php:
|
5758 |
msgid "Search products..."
|
5759 |
msgstr ""
|
5760 |
|
5761 |
#. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
|
5762 |
-
#: pro/pro-class-email-subscribers.php:
|
5763 |
msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
|
5764 |
msgstr ""
|
5765 |
|
5766 |
-
#: pro/pro-class-email-subscribers.php:
|
5767 |
msgid "We can't find any matching orders in your store."
|
5768 |
msgstr ""
|
5769 |
|
5770 |
-
#: pro/pro-class-email-subscribers.php:
|
5771 |
msgid "Total Opened"
|
5772 |
msgstr ""
|
5773 |
|
5774 |
-
#: pro/pro-class-email-subscribers.php:
|
5775 |
msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
|
5776 |
msgstr ""
|
5777 |
|
5778 |
-
#: pro/pro-class-email-subscribers.php:
|
5779 |
msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
|
5780 |
msgstr ""
|
5781 |
|
5782 |
-
#: pro/pro-class-email-subscribers.php:
|
5783 |
msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
|
5784 |
msgstr ""
|
5785 |
|
5786 |
-
#: pro/pro-class-email-subscribers.php:
|
5787 |
msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
|
5788 |
msgstr ""
|
5789 |
|
5790 |
-
#: pro/pro-class-email-subscribers.php:
|
5791 |
msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
|
5792 |
msgstr ""
|
5793 |
|
5794 |
-
#: pro/pro-class-email-subscribers.php:
|
5795 |
msgid "How to configure Sendinblue to send emails in the Email Subscribers plugin?"
|
5796 |
msgstr ""
|
5797 |
|
5798 |
-
#: pro/pro-class-email-subscribers.php:
|
5799 |
msgid "How to configure Mailjet to send emails in the Email Subscribers plugin?"
|
5800 |
msgstr ""
|
5801 |
|
5802 |
-
#: pro/pro-class-email-subscribers.php:
|
5803 |
msgid "Confirmation emails queued successfully and will be sent shortly."
|
5804 |
msgstr ""
|
5805 |
|
5806 |
-
#: pro/pro-class-email-subscribers.php:
|
5807 |
msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
|
5808 |
msgstr ""
|
5809 |
|
5810 |
-
#: pro/pro-class-email-subscribers.php:
|
5811 |
msgid "Failed to queue confirmation emails. Please try again later."
|
5812 |
msgstr ""
|
5813 |
|
@@ -5831,90 +5847,94 @@ msgstr ""
|
|
5831 |
msgid "Immediately"
|
5832 |
msgstr ""
|
5833 |
|
5834 |
-
#: pro/pro-class-sequences.php:
|
|
|
|
|
|
|
|
|
5835 |
msgid "Create Sequence"
|
5836 |
msgstr ""
|
5837 |
|
5838 |
-
#: pro/pro-class-sequences.php:
|
5839 |
msgid "Edit Sequence"
|
5840 |
msgstr ""
|
5841 |
|
5842 |
-
#: pro/pro-class-sequences.php:
|
5843 |
msgid "Add Sequence name"
|
5844 |
msgstr ""
|
5845 |
|
5846 |
-
#: pro/pro-class-sequences.php:
|
5847 |
-
#: pro/pro-class-sequences.php:
|
5848 |
msgid "Save All"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
-
#: pro/pro-class-sequences.php:
|
5852 |
msgid "+ Add Email"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
-
#: pro/pro-class-sequences.php:
|
5856 |
-
#: pro/pro-class-sequences.php:
|
5857 |
msgid "Sequence should have atleast one email"
|
5858 |
msgstr ""
|
5859 |
|
5860 |
-
#: pro/pro-class-sequences.php:
|
5861 |
msgid "Sequence added successfully!"
|
5862 |
msgstr ""
|
5863 |
|
5864 |
-
#: pro/pro-class-sequences.php:
|
5865 |
msgid "Sorry, you are not allowed to add sequence."
|
5866 |
msgstr ""
|
5867 |
|
5868 |
-
#: pro/pro-class-sequences.php:
|
5869 |
msgid "Sequence updated successfully!"
|
5870 |
msgstr ""
|
5871 |
|
5872 |
-
#: pro/pro-class-sequences.php:
|
5873 |
msgid "Sorry, you are not allowed to edit sequence."
|
5874 |
msgstr ""
|
5875 |
|
5876 |
-
#: pro/pro-class-sequences.php:
|
5877 |
-
#: pro/pro-class-sequences.php:
|
5878 |
msgid "Welcome"
|
5879 |
msgstr ""
|
5880 |
|
5881 |
-
#: pro/pro-class-sequences.php:
|
5882 |
-
#: pro/pro-class-sequences.php:
|
5883 |
msgid "Delete this email"
|
5884 |
msgstr ""
|
5885 |
|
5886 |
-
#: pro/pro-class-sequences.php:
|
5887 |
msgid "Email Subject"
|
5888 |
msgstr ""
|
5889 |
|
5890 |
-
#: pro/pro-class-sequences.php:
|
5891 |
msgid "Send "
|
5892 |
msgstr ""
|
5893 |
|
5894 |
-
#: pro/pro-class-sequences.php:
|
5895 |
msgid "immediately"
|
5896 |
msgstr ""
|
5897 |
|
5898 |
-
#: pro/pro-class-sequences.php:
|
5899 |
msgid " after subscription"
|
5900 |
msgstr ""
|
5901 |
|
5902 |
#. translators: 1. Delay amount 2. delay unit
|
5903 |
-
#: pro/pro-class-sequences.php:
|
5904 |
-
#: pro/pro-class-sequences.php:
|
5905 |
-
#: pro/pro-class-sequences.php:
|
5906 |
msgid "Send after %1$d %2$s"
|
5907 |
msgstr ""
|
5908 |
|
5909 |
#. translators: 1. Delay amount 2. delay unit
|
5910 |
-
#: pro/pro-class-sequences.php:
|
5911 |
msgid "hour"
|
5912 |
msgid_plural "hours"
|
5913 |
msgstr[0] ""
|
5914 |
msgstr[1] ""
|
5915 |
|
5916 |
#. translators: 1. Delay amount 2. delay unit
|
5917 |
-
#: pro/pro-class-sequences.php:
|
5918 |
msgid "week"
|
5919 |
msgid_plural "weeks"
|
5920 |
msgstr[0] ""
|
2 |
# This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Email Subscribers & Newsletters 5.3.13\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-subscribers\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2022-04-28T06:41:16+02:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.4.0\n"
|
15 |
"X-Domain: email-subscribers\n"
|
80 |
msgstr ""
|
81 |
|
82 |
#: lite/admin/class-email-subscribers-admin.php:176
|
83 |
+
#: pro/pro-class-email-subscribers.php:600
|
84 |
msgid "Please add email body."
|
85 |
msgstr ""
|
86 |
|
418 |
|
419 |
#: lite/admin/class-es-campaign-admin.php:294
|
420 |
#: lite/includes/classes/class-es-newsletters.php:255
|
421 |
+
#: pro/pro-class-sequences.php:546
|
422 |
msgid "Content"
|
423 |
msgstr ""
|
424 |
|
433 |
#: lite/includes/classes/class-es-reports-table.php:299
|
434 |
#: lite/includes/workflows/admin/views/action.php:28
|
435 |
#: pro/classes/class-es-pro-sequence-report.php:273
|
436 |
+
#: pro/pro-class-sequences.php:610
|
437 |
msgid "Preview"
|
438 |
msgstr ""
|
439 |
|
475 |
|
476 |
#: lite/admin/class-es-campaign-admin.php:432
|
477 |
#: lite/includes/workflows/admin/views/meta-box-actions.php:92
|
478 |
+
#: pro/pro-class-sequences.php:240
|
479 |
msgid "Preview in browser"
|
480 |
msgstr ""
|
481 |
|
484 |
#: lite/includes/classes/class-es-reports-table.php:588
|
485 |
#: lite/includes/classes/class-es-templates-table.php:150
|
486 |
#: lite/includes/workflows/admin/views/meta-box-actions.php:111
|
487 |
+
#: pro/pro-class-sequences.php:259
|
488 |
#: lite/admin/js/src/views/GalleryItemPreview.js:29
|
489 |
msgid "There could be a slight variation on how your customer will view the email content."
|
490 |
msgstr ""
|
592 |
#: lite/admin/class-ig-es-campaign-rules.php:224
|
593 |
#: lite/includes/classes/class-es-post-notifications.php:545
|
594 |
#: lite/includes/workflows/admin/views/meta-box-actions.php:122
|
595 |
+
#: pro/pro-class-sequences.php:270
|
596 |
msgid "Loading..."
|
597 |
msgstr ""
|
598 |
|
682 |
#: lite/public/partials/class-es-shortcode.php:283
|
683 |
#: pro/classes/class-es-pro-campaign-rules.php:35
|
684 |
#: pro/classes/class-es-pro-embed-form.php:193
|
685 |
+
#: pro/pro-class-email-subscribers.php:2265
|
686 |
msgid "Email"
|
687 |
msgstr ""
|
688 |
|
876 |
msgstr ""
|
877 |
|
878 |
#: lite/admin/class-ig-es-onboarding.php:1120
|
879 |
+
#: lite/includes/classes/class-es-post-notifications.php:687
|
880 |
msgid "New Post Published - {{POSTTITLE}}"
|
881 |
msgstr ""
|
882 |
|
992 |
|
993 |
#: lite/admin/partials/dashboard.php:179
|
994 |
#: lite/admin/partials/dashboard.php:181
|
995 |
+
#: pro/pro-class-sequences.php:128
|
996 |
msgid "New Sequence"
|
997 |
msgstr ""
|
998 |
|
1127 |
|
1128 |
#: lite/admin/partials/help.php:239
|
1129 |
#: lite/includes/class-es-common.php:538
|
1130 |
+
#: lite/includes/class-es-common.php:1984
|
1131 |
+
#: lite/includes/class-es-common.php:2435
|
1132 |
#: lite/includes/classes/class-es-campaigns-table.php:309
|
1133 |
#: lite/includes/workflows/admin/views/meta-box-save.php:28
|
1134 |
#: pro/classes/class-es-pro-reports-data.php:193
|
1138 |
|
1139 |
#: lite/admin/partials/help.php:241
|
1140 |
#: lite/includes/class-es-common.php:539
|
1141 |
+
#: lite/includes/class-es-common.php:2440
|
1142 |
#: lite/includes/workflows/admin/views/meta-box-save.php:27
|
1143 |
#: pro/classes/class-es-pro-reports-data.php:198
|
1144 |
#: pro/classes/class-es-pro-sequence-report.php:239
|
1504 |
msgstr ""
|
1505 |
|
1506 |
#: lite/includes/class-es-common.php:679
|
1507 |
+
#: lite/includes/classes/class-es-post-notifications.php:661
|
1508 |
msgid "No Custom Post Types Available"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: lite/includes/class-es-common.php:762
|
1512 |
msgid "Single Opt-In"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: lite/includes/class-es-common.php:763
|
1516 |
msgid "Double Opt-In"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: lite/includes/class-es-common.php:777
|
1520 |
#: pro/pro-class-post-digest.php:139
|
1521 |
msgid "Monday"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: lite/includes/class-es-common.php:778
|
1525 |
#: pro/pro-class-post-digest.php:140
|
1526 |
msgid "Tuesday"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: lite/includes/class-es-common.php:779
|
1530 |
#: pro/pro-class-post-digest.php:141
|
1531 |
msgid "Wednesday"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: lite/includes/class-es-common.php:780
|
1535 |
#: pro/pro-class-post-digest.php:142
|
1536 |
msgid "Thursday"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: lite/includes/class-es-common.php:781
|
1540 |
#: pro/pro-class-post-digest.php:143
|
1541 |
msgid "Friday"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: lite/includes/class-es-common.php:782
|
1545 |
#: pro/pro-class-post-digest.php:144
|
1546 |
msgid "Saturday"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: lite/includes/class-es-common.php:783
|
1550 |
#: pro/pro-class-post-digest.php:138
|
1551 |
msgid "Sunday"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: lite/includes/class-es-common.php:819
|
1555 |
msgid "Full Size"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: lite/includes/class-es-common.php:820
|
1559 |
msgid "Medium Size"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: lite/includes/class-es-common.php:821
|
1563 |
#: lite/includes/classes/class-es-templates-table.php:168
|
1564 |
msgid "Thumbnail"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: lite/includes/class-es-common.php:1741
|
1568 |
msgid "Top 10 Tips on How to Build an Email List"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
+
#: lite/includes/class-es-common.php:1745
|
1572 |
#: pro/templates/email/es-admin-subscription-summary.php:174
|
1573 |
msgid "Why are Your Email Unsubscribes Increasing and How to Fix Them?"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: lite/includes/class-es-common.php:1749
|
1577 |
msgid "Balance Email Marketing and Social Media Marketing"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: lite/includes/class-es-common.php:1753
|
1581 |
msgid "Use social proof to grow blog traffic through email"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: lite/includes/class-es-common.php:1757
|
1585 |
msgid "5 Simple Tricks to Improve Email Marketing Campaign Results"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: lite/includes/class-es-common.php:1766
|
1589 |
#: lite/includes/pro-features.php:176
|
1590 |
msgid "Email Subscribers PRO"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: lite/includes/class-es-common.php:1768
|
1594 |
msgid "Lifetime"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
+
#: lite/includes/class-es-common.php:1772
|
1598 |
msgid "<b>Email Subscribers Secret Club</b>"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: lite/includes/class-es-common.php:1774
|
1602 |
#: lite/includes/feedback.php:123
|
1603 |
msgid "Join Now"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: lite/includes/class-es-common.php:1952
|
1607 |
msgid "All Types"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: lite/includes/class-es-common.php:1980
|
1611 |
#: lite/includes/classes/class-es-campaigns-table.php:569
|
1612 |
msgid "Draft"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: lite/includes/class-es-common.php:1981
|
1616 |
+
#: lite/includes/class-es-common.php:2426
|
1617 |
#: lite/includes/classes/class-es-campaign-report.php:237
|
1618 |
#: lite/includes/classes/class-es-campaigns-table.php:550
|
1619 |
#: lite/includes/classes/class-es-campaigns-table.php:588
|
1623 |
msgid "Sending"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: lite/includes/class-es-common.php:1982
|
1627 |
#: lite/includes/classes/class-es-campaigns-table.php:310
|
1628 |
#: lite/includes/classes/class-es-campaigns-table.php:543
|
1629 |
#: lite/includes/classes/class-es-campaigns-table.php:579
|
1632 |
msgid "Scheduled"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: lite/includes/class-es-common.php:1983
|
1636 |
+
#: lite/includes/class-es-common.php:2406
|
1637 |
#: lite/includes/classes/class-es-campaign-report.php:221
|
1638 |
#: lite/includes/classes/class-es-campaigns-table.php:557
|
1639 |
#: lite/includes/classes/class-es-campaigns-table.php:606
|
1645 |
msgid "Sent"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: lite/includes/class-es-common.php:2008
|
1649 |
#: lite/includes/classes/class-es-campaigns-table.php:691
|
1650 |
#: lite/includes/classes/class-es-contacts-table.php:1141
|
1651 |
msgid "All Statuses"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: lite/includes/class-es-common.php:2220
|
1655 |
msgid "Upgrade"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: lite/includes/class-es-common.php:2256
|
1659 |
#: lite/includes/classes/class-es-reports-table.php:628
|
1660 |
#: pro/classes/class-es-pro-reports-data.php:878
|
1661 |
msgid "All Status"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: lite/includes/class-es-common.php:2416
|
1665 |
#: lite/includes/classes/class-es-campaign-report.php:229
|
1666 |
#: lite/includes/classes/class-es-reports-table.php:625
|
1667 |
#: pro/classes/class-es-pro-reports-data.php:178
|
1669 |
msgid "In Queue"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#: lite/includes/class-es-common.php:2461
|
1673 |
msgid "Select field type"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
+
#: lite/includes/class-es-common.php:2464
|
1677 |
msgid "Text"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
+
#: lite/includes/class-es-common.php:2465
|
1681 |
msgid "TextArea"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
+
#: lite/includes/class-es-common.php:2466
|
1685 |
msgid "Dropdown"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
+
#: lite/includes/class-es-common.php:2467
|
1689 |
msgid "Radio"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
+
#: lite/includes/class-es-common.php:2468
|
1693 |
#: lite/includes/workflows/fields/class-es-number.php:48
|
1694 |
msgid "Number"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
+
#: lite/includes/class-es-common.php:2469
|
1698 |
#: lite/includes/pro-features.php:1132
|
1699 |
#: lite/includes/workflows/admin/views/meta-box-timing.php:82
|
1700 |
#: lite/includes/workflows/fields/class-es-date.php:31
|
1701 |
#: pro/classes/class-es-campaign-admin-pro.php:196
|
1702 |
+
#: pro/pro-class-email-subscribers.php:864
|
1703 |
msgid "Date"
|
1704 |
msgstr ""
|
1705 |
|
2546 |
#: lite/includes/classes/class-es-import-subscribers.php:682
|
2547 |
#: lite/includes/classes/class-es-import-subscribers.php:1088
|
2548 |
#: lite/includes/classes/class-es-import-subscribers.php:1343
|
2549 |
+
#: pro/pro-class-email-subscribers.php:2266
|
2550 |
msgid "First Name"
|
2551 |
msgstr ""
|
2552 |
|
2555 |
#: lite/includes/classes/class-es-import-subscribers.php:683
|
2556 |
#: lite/includes/classes/class-es-import-subscribers.php:1093
|
2557 |
#: lite/includes/classes/class-es-import-subscribers.php:1344
|
2558 |
+
#: pro/pro-class-email-subscribers.php:2267
|
2559 |
msgid "Last Name"
|
2560 |
msgstr ""
|
2561 |
|
2645 |
|
2646 |
#: lite/includes/classes/class-es-forms-table.php:342
|
2647 |
#: lite/includes/classes/class-es-newsletters.php:333
|
2648 |
+
#: pro/pro-class-sequences.php:173
|
2649 |
msgid "Documentation "
|
2650 |
msgstr ""
|
2651 |
|
2800 |
msgid "View Reports"
|
2801 |
msgstr ""
|
2802 |
|
2803 |
+
#. translators: %s: Post type name
|
2804 |
#: lite/includes/classes/class-es-handle-post-notification.php:525
|
2805 |
msgid "Notification emails has been queued for this %s."
|
2806 |
msgstr ""
|
3344 |
msgstr ""
|
3345 |
|
3346 |
#: lite/includes/classes/class-es-post-notifications.php:315
|
3347 |
+
#: pro/pro-class-sequences.php:159
|
3348 |
msgid "Campaigns "
|
3349 |
msgstr ""
|
3350 |
|
3365 |
msgstr ""
|
3366 |
|
3367 |
#: lite/includes/classes/class-es-post-notifications.php:410
|
3368 |
+
#: lite/includes/classes/class-es-post-notifications.php:591
|
3369 |
msgid "Select post category"
|
3370 |
msgstr ""
|
3371 |
|
3374 |
msgstr ""
|
3375 |
|
3376 |
#: lite/includes/classes/class-es-post-notifications.php:427
|
3377 |
+
#: lite/includes/classes/class-es-post-notifications.php:607
|
3378 |
msgid "Select custom post type(s)"
|
3379 |
msgstr ""
|
3380 |
|
3394 |
msgid "Posts Settings"
|
3395 |
msgstr ""
|
3396 |
|
3397 |
+
#: lite/includes/classes/class-es-post-notifications.php:709
|
3398 |
+
#: lite/includes/classes/class-es-post-notifications.php:731
|
3399 |
msgid "Hello {{NAME}},"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
+
#: lite/includes/classes/class-es-post-notifications.php:710
|
3403 |
+
#: lite/includes/classes/class-es-post-notifications.php:732
|
3404 |
msgid "We have published a new blog article on our website"
|
3405 |
msgstr ""
|
3406 |
|
3407 |
+
#: lite/includes/classes/class-es-post-notifications.php:712
|
3408 |
+
#: lite/includes/classes/class-es-post-notifications.php:734
|
3409 |
msgid "You can view it from this link"
|
3410 |
msgstr ""
|
3411 |
|
3412 |
+
#: lite/includes/classes/class-es-post-notifications.php:713
|
3413 |
msgid "Thanks & Regards"
|
3414 |
msgstr ""
|
3415 |
|
3416 |
+
#: lite/includes/classes/class-es-post-notifications.php:714
|
3417 |
#: lite/includes/workflows/triggers/class-es-trigger-campaign-sent.php:32
|
3418 |
msgid "Admin"
|
3419 |
msgstr ""
|
3420 |
|
3421 |
+
#: lite/includes/classes/class-es-post-notifications.php:715
|
3422 |
+
#: lite/includes/classes/class-es-post-notifications.php:740
|
3423 |
msgid "You received this email because in the past you have provided us your email address : {{EMAIL}} to receive notifications when new updates are posted."
|
3424 |
msgstr ""
|
3425 |
|
3426 |
+
#: lite/includes/classes/class-es-post-notifications.php:739
|
3427 |
msgid "Your Brand Name"
|
3428 |
msgstr ""
|
3429 |
|
3430 |
+
#: lite/includes/classes/class-es-post-notifications.php:740
|
3431 |
msgid "If you wish to unsubscribe from our newsletter, click"
|
3432 |
msgstr ""
|
3433 |
|
3434 |
+
#: lite/includes/classes/class-es-post-notifications.php:740
|
3435 |
msgid "here"
|
3436 |
msgstr ""
|
3437 |
|
3539 |
|
3540 |
#. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
|
3541 |
#: lite/includes/classes/class-es-templates-table.php:209
|
3542 |
+
#: pro/pro-class-email-subscribers.php:1589
|
3543 |
msgid "Duplicate"
|
3544 |
msgstr ""
|
3545 |
|
3546 |
#: lite/includes/classes/class-es-templates-table.php:237
|
3547 |
+
#: lite/includes/db/class-es-db-campaigns.php:746
|
3548 |
+
#: lite/includes/db/class-es-db-campaigns.php:749
|
3549 |
msgid "Copy"
|
3550 |
msgstr ""
|
3551 |
|
3552 |
#: lite/includes/classes/class-es-tools.php:78
|
3553 |
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:100
|
3554 |
+
#: pro/pro-class-sequences.php:71
|
3555 |
msgid "Email has been sent. Please check your inbox"
|
3556 |
msgstr ""
|
3557 |
|
3666 |
|
3667 |
#. translators: 1. Delay amount 2. delay unit
|
3668 |
#: lite/includes/notices/views/trial-to-premium-offer.php:41
|
3669 |
+
#: pro/pro-class-sequences.php:678
|
3670 |
msgid "day"
|
3671 |
msgid_plural "days"
|
3672 |
msgstr[0] ""
|
3802 |
msgstr ""
|
3803 |
|
3804 |
#: lite/includes/pro-features.php:278
|
3805 |
+
#: pro/pro-class-email-subscribers.php:950
|
3806 |
msgid "Track clicks"
|
3807 |
msgstr ""
|
3808 |
|
3809 |
#: lite/includes/pro-features.php:279
|
3810 |
+
#: pro/pro-class-email-subscribers.php:951
|
3811 |
msgid "Do you want to track when people click links in your emails? (We recommend keeping it enabled)"
|
3812 |
msgstr ""
|
3813 |
|
3859 |
msgstr ""
|
3860 |
|
3861 |
#: lite/includes/pro-features.php:348
|
3862 |
+
#: pro/pro-class-email-subscribers.php:974
|
3863 |
msgid "Weekly summary"
|
3864 |
msgstr ""
|
3865 |
|
3907 |
msgstr ""
|
3908 |
|
3909 |
#: lite/includes/pro-features.php:428
|
3910 |
+
#: pro/pro-class-email-subscribers.php:959
|
3911 |
msgid "Track IP address"
|
3912 |
msgstr ""
|
3913 |
|
4179 |
|
4180 |
#: lite/includes/pro-features.php:1122
|
4181 |
#: pro/classes/class-es-campaign-admin-pro.php:171
|
4182 |
+
#: pro/pro-class-email-subscribers.php:845
|
4183 |
msgid "Send options"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
#: lite/includes/pro-features.php:1125
|
4187 |
#: pro/classes/class-es-campaign-admin-pro.php:182
|
4188 |
+
#: pro/pro-class-email-subscribers.php:850
|
4189 |
msgid "Schedule for later"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
#: lite/includes/pro-features.php:1141
|
4193 |
#: lite/includes/workflows/fields/class-es-time.php:64
|
4194 |
#: pro/classes/class-es-campaign-admin-pro.php:210
|
4195 |
+
#: pro/pro-class-email-subscribers.php:878
|
4196 |
msgid "Time"
|
4197 |
msgstr ""
|
4198 |
|
4199 |
#: lite/includes/pro-features.php:1151
|
4200 |
#: pro/classes/class-es-campaign-admin-pro.php:225
|
4201 |
+
#: pro/pro-class-email-subscribers.php:893
|
4202 |
msgid "Local Time: "
|
4203 |
msgstr ""
|
4204 |
|
4323 |
msgstr ""
|
4324 |
|
4325 |
#: lite/includes/pro-features.php:1690
|
4326 |
+
#: pro/pro-class-email-subscribers.php:1811
|
4327 |
msgid "Add Attachments"
|
4328 |
msgstr ""
|
4329 |
|
4330 |
#: lite/includes/pro-features.php:1720
|
4331 |
+
#: pro/pro-class-email-subscribers.php:1938
|
4332 |
msgid "Import existing WordPress users"
|
4333 |
msgstr ""
|
4334 |
|
4525 |
msgstr ""
|
4526 |
|
4527 |
#: lite/includes/workflows/admin/views/meta-box-actions.php:87
|
4528 |
+
#: pro/pro-class-sequences.php:235
|
4529 |
msgid "Email Preview"
|
4530 |
msgstr ""
|
4531 |
|
4875 |
msgstr ""
|
4876 |
|
4877 |
#: lite/includes/workflows/db/class-es-db-workflows.php:608
|
4878 |
+
#: pro/pro-class-email-subscribers.php:2665
|
4879 |
msgid "Send confirmation email"
|
4880 |
msgstr ""
|
4881 |
|
5051 |
|
5052 |
#: lite/public/partials/cron-message.php:43
|
5053 |
#: pro/classes/class-es-campaign-admin-pro.php:176
|
5054 |
+
#: pro/pro-class-email-subscribers.php:904
|
5055 |
msgid "Send Now"
|
5056 |
msgstr ""
|
5057 |
|
5095 |
msgid "Score"
|
5096 |
msgstr ""
|
5097 |
|
5098 |
+
#. translators: %s: Taxonomy name
|
5099 |
+
#: pro/classes/class-es-post-notification-pro.php:81
|
5100 |
+
msgid "Any %s"
|
5101 |
+
msgstr ""
|
5102 |
+
|
5103 |
#: pro/classes/class-es-pro-bounce-handler.php:100
|
5104 |
msgid "Bounce status"
|
5105 |
msgstr ""
|
5154 |
|
5155 |
#: pro/classes/class-es-pro-custom-fields-table.php:40
|
5156 |
#: pro/classes/class-es-pro-custom-fields-table.php:92
|
5157 |
+
#: pro/pro-class-email-subscribers.php:440
|
5158 |
msgid "Custom Fields"
|
5159 |
msgstr ""
|
5160 |
|
5285 |
msgstr ""
|
5286 |
|
5287 |
#: pro/classes/class-es-pro-reports-data.php:261
|
5288 |
+
#: pro/pro-class-email-subscribers.php:1320
|
5289 |
msgid "Clicked"
|
5290 |
msgstr ""
|
5291 |
|
5574 |
msgid "Your cart could not be restored, it may have expired."
|
5575 |
msgstr ""
|
5576 |
|
5577 |
+
#: pro/pro-class-email-subscribers.php:433
|
5578 |
#: pro/pro-class-post-digest.php:33
|
5579 |
msgid "Sequence"
|
5580 |
msgstr ""
|
5581 |
|
5582 |
+
#: pro/pro-class-email-subscribers.php:598
|
5583 |
msgid "Please enter an email address."
|
5584 |
msgstr ""
|
5585 |
|
5586 |
#: pro/pro-class-email-subscribers.php:599
|
5587 |
+
msgid "Please enter the subject."
|
5588 |
+
msgstr ""
|
5589 |
+
|
5590 |
+
#: pro/pro-class-email-subscribers.php:601
|
5591 |
msgid "Add Attachment"
|
5592 |
msgstr ""
|
5593 |
|
5594 |
#. translators: %s: Attachmen max file size.
|
5595 |
+
#: pro/pro-class-email-subscribers.php:603
|
5596 |
msgid "Please attach a file having size lower than %s."
|
5597 |
msgstr ""
|
5598 |
|
5599 |
+
#: pro/pro-class-email-subscribers.php:604
|
5600 |
msgid "Are you sure you want to delete this?"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
+
#: pro/pro-class-email-subscribers.php:605
|
5604 |
+
#: pro/pro-class-email-subscribers.php:2148
|
5605 |
msgid "Checking your orders..."
|
5606 |
msgstr ""
|
5607 |
|
5608 |
+
#: pro/pro-class-email-subscribers.php:607
|
5609 |
+
#: pro/pro-class-sequences.php:685
|
5610 |
msgid "Send immediately"
|
5611 |
msgstr ""
|
5612 |
|
5613 |
+
#: pro/pro-class-email-subscribers.php:608
|
5614 |
msgid "Send after"
|
5615 |
msgstr ""
|
5616 |
|
5617 |
+
#: pro/pro-class-email-subscribers.php:609
|
5618 |
+
#: pro/pro-class-sequences.php:598
|
5619 |
msgid "hour(s)"
|
5620 |
msgstr ""
|
5621 |
|
5622 |
+
#: pro/pro-class-email-subscribers.php:610
|
5623 |
+
#: pro/pro-class-sequences.php:599
|
5624 |
msgid "day(s)"
|
5625 |
msgstr ""
|
5626 |
|
5627 |
+
#: pro/pro-class-email-subscribers.php:611
|
5628 |
+
#: pro/pro-class-sequences.php:600
|
5629 |
msgid "week(s)"
|
5630 |
msgstr ""
|
5631 |
|
5632 |
+
#: pro/pro-class-email-subscribers.php:740
|
5633 |
msgid "Clean My List"
|
5634 |
msgstr ""
|
5635 |
|
5636 |
+
#: pro/pro-class-email-subscribers.php:741
|
5637 |
msgid "List cleanup is in progress..."
|
5638 |
msgstr ""
|
5639 |
|
5640 |
+
#: pro/pro-class-email-subscribers.php:742
|
5641 |
msgid "List cleanup completed successfully."
|
5642 |
msgstr ""
|
5643 |
|
5644 |
+
#: pro/pro-class-email-subscribers.php:760
|
5645 |
msgid "Email status"
|
5646 |
msgstr ""
|
5647 |
|
5648 |
+
#: pro/pro-class-email-subscribers.php:761
|
5649 |
msgid "Last opened at"
|
5650 |
msgstr ""
|
5651 |
|
5652 |
+
#: pro/pro-class-email-subscribers.php:915
|
5653 |
msgid "Select page"
|
5654 |
msgstr ""
|
5655 |
|
5656 |
+
#: pro/pro-class-email-subscribers.php:928
|
5657 |
msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email."
|
5658 |
msgstr ""
|
5659 |
|
5660 |
+
#: pro/pro-class-email-subscribers.php:941
|
5661 |
msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on email confirmation link from the double opt-in (confirmation) email."
|
5662 |
msgstr ""
|
5663 |
|
5664 |
+
#: pro/pro-class-email-subscribers.php:979
|
5665 |
msgid "Enable?"
|
5666 |
msgstr ""
|
5667 |
|
5668 |
+
#: pro/pro-class-email-subscribers.php:986
|
5669 |
msgid "When our automated weekly email should be sent out?"
|
5670 |
msgstr ""
|
5671 |
|
5672 |
+
#: pro/pro-class-email-subscribers.php:995
|
5673 |
msgid "In which time we need to send our weekly summary?"
|
5674 |
msgstr ""
|
5675 |
|
5676 |
+
#: pro/pro-class-email-subscribers.php:1021
|
5677 |
msgid "Access Key ID"
|
5678 |
msgstr ""
|
5679 |
|
5680 |
+
#: pro/pro-class-email-subscribers.php:1034
|
5681 |
msgid "Secret Access Key"
|
5682 |
msgstr ""
|
5683 |
|
5684 |
+
#: pro/pro-class-email-subscribers.php:1048
|
5685 |
msgid "Closest Region"
|
5686 |
msgstr ""
|
5687 |
|
5688 |
+
#: pro/pro-class-email-subscribers.php:1050
|
5689 |
msgid "To decrease network latency between your site and Amazon SES and speed up email sending, select the Amazon SES API region which is closest to where your website is hosted."
|
5690 |
msgstr ""
|
5691 |
|
5692 |
+
#: pro/pro-class-email-subscribers.php:1077
|
5693 |
msgid "Private API Key"
|
5694 |
msgstr ""
|
5695 |
|
5696 |
+
#: pro/pro-class-email-subscribers.php:1091
|
5697 |
msgid "Domain Name"
|
5698 |
msgstr ""
|
5699 |
|
5700 |
+
#: pro/pro-class-email-subscribers.php:1102
|
5701 |
+
#: pro/pro-class-email-subscribers.php:1177
|
5702 |
msgid "United States"
|
5703 |
msgstr ""
|
5704 |
|
5705 |
+
#: pro/pro-class-email-subscribers.php:1103
|
5706 |
+
#: pro/pro-class-email-subscribers.php:1178
|
5707 |
msgid "Europe"
|
5708 |
msgstr ""
|
5709 |
|
5710 |
+
#: pro/pro-class-email-subscribers.php:1109
|
5711 |
+
#: pro/pro-class-email-subscribers.php:1184
|
5712 |
msgid "Region"
|
5713 |
msgstr ""
|
5714 |
|
5715 |
+
#: pro/pro-class-email-subscribers.php:1113
|
5716 |
msgid "mailgun.com"
|
5717 |
msgstr ""
|
5718 |
|
5719 |
+
#: pro/pro-class-email-subscribers.php:1139
|
5720 |
+
#: pro/pro-class-email-subscribers.php:1166
|
5721 |
msgid "API Key"
|
5722 |
msgstr ""
|
5723 |
|
5724 |
+
#: pro/pro-class-email-subscribers.php:1186
|
5725 |
msgid "Define which endpoint you want to use for sending messages. If you are operating under EU laws, you may be required to use EU region."
|
5726 |
msgstr ""
|
5727 |
|
5728 |
+
#: pro/pro-class-email-subscribers.php:1211
|
5729 |
msgid "API token"
|
5730 |
msgstr ""
|
5731 |
|
5732 |
+
#: pro/pro-class-email-subscribers.php:1239
|
5733 |
msgid "API key"
|
5734 |
msgstr ""
|
5735 |
|
5736 |
+
#: pro/pro-class-email-subscribers.php:1268
|
5737 |
msgid "Public key"
|
5738 |
msgstr ""
|
5739 |
|
5740 |
+
#: pro/pro-class-email-subscribers.php:1282
|
5741 |
msgid "Private key"
|
5742 |
msgstr ""
|
5743 |
|
5744 |
+
#: pro/pro-class-email-subscribers.php:1611
|
5745 |
msgid "You are not allowed to duplicate campaign."
|
5746 |
msgstr ""
|
5747 |
|
5748 |
+
#: pro/pro-class-email-subscribers.php:1626
|
5749 |
msgid "Campaign duplicated !"
|
5750 |
msgstr ""
|
5751 |
|
5752 |
+
#: pro/pro-class-email-subscribers.php:1957
|
5753 |
msgid "Import WordPress users with following roles"
|
5754 |
msgstr ""
|
5755 |
|
5756 |
+
#: pro/pro-class-email-subscribers.php:2015
|
5757 |
+
#: pro/pro-class-email-subscribers.php:2155
|
5758 |
msgid "Proceed "
|
5759 |
msgstr ""
|
5760 |
|
5761 |
+
#: pro/pro-class-email-subscribers.php:2057
|
5762 |
msgid "Import from WooCommerce orders"
|
5763 |
msgstr ""
|
5764 |
|
5765 |
+
#: pro/pro-class-email-subscribers.php:2082
|
5766 |
msgid "Select order statuses"
|
5767 |
msgstr ""
|
5768 |
|
5769 |
+
#: pro/pro-class-email-subscribers.php:2136
|
5770 |
msgid "Orders should contain these products"
|
5771 |
msgstr ""
|
5772 |
|
5773 |
+
#: pro/pro-class-email-subscribers.php:2142
|
5774 |
msgid "Search products..."
|
5775 |
msgstr ""
|
5776 |
|
5777 |
#. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
|
5778 |
+
#: pro/pro-class-email-subscribers.php:2374
|
5779 |
msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
|
5780 |
msgstr ""
|
5781 |
|
5782 |
+
#: pro/pro-class-email-subscribers.php:2385
|
5783 |
msgid "We can't find any matching orders in your store."
|
5784 |
msgstr ""
|
5785 |
|
5786 |
+
#: pro/pro-class-email-subscribers.php:2398
|
5787 |
msgid "Total Opened"
|
5788 |
msgstr ""
|
5789 |
|
5790 |
+
#: pro/pro-class-email-subscribers.php:2451
|
5791 |
msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
|
5792 |
msgstr ""
|
5793 |
|
5794 |
+
#: pro/pro-class-email-subscribers.php:2483
|
5795 |
msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
|
5796 |
msgstr ""
|
5797 |
|
5798 |
+
#: pro/pro-class-email-subscribers.php:2515
|
5799 |
msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
|
5800 |
msgstr ""
|
5801 |
|
5802 |
+
#: pro/pro-class-email-subscribers.php:2547
|
5803 |
msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
|
5804 |
msgstr ""
|
5805 |
|
5806 |
+
#: pro/pro-class-email-subscribers.php:2579
|
5807 |
msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
|
5808 |
msgstr ""
|
5809 |
|
5810 |
+
#: pro/pro-class-email-subscribers.php:2611
|
5811 |
msgid "How to configure Sendinblue to send emails in the Email Subscribers plugin?"
|
5812 |
msgstr ""
|
5813 |
|
5814 |
+
#: pro/pro-class-email-subscribers.php:2643
|
5815 |
msgid "How to configure Mailjet to send emails in the Email Subscribers plugin?"
|
5816 |
msgstr ""
|
5817 |
|
5818 |
+
#: pro/pro-class-email-subscribers.php:2680
|
5819 |
msgid "Confirmation emails queued successfully and will be sent shortly."
|
5820 |
msgstr ""
|
5821 |
|
5822 |
+
#: pro/pro-class-email-subscribers.php:2688
|
5823 |
msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
|
5824 |
msgstr ""
|
5825 |
|
5826 |
+
#: pro/pro-class-email-subscribers.php:2691
|
5827 |
msgid "Failed to queue confirmation emails. Please try again later."
|
5828 |
msgstr ""
|
5829 |
|
5847 |
msgid "Immediately"
|
5848 |
msgstr ""
|
5849 |
|
5850 |
+
#: pro/pro-class-sequences.php:75
|
5851 |
+
msgid "Error in sending email. Please try again later."
|
5852 |
+
msgstr ""
|
5853 |
+
|
5854 |
+
#: pro/pro-class-sequences.php:101
|
5855 |
msgid "Create Sequence"
|
5856 |
msgstr ""
|
5857 |
|
5858 |
+
#: pro/pro-class-sequences.php:131
|
5859 |
msgid "Edit Sequence"
|
5860 |
msgstr ""
|
5861 |
|
5862 |
+
#: pro/pro-class-sequences.php:187
|
5863 |
msgid "Add Sequence name"
|
5864 |
msgstr ""
|
5865 |
|
5866 |
+
#: pro/pro-class-sequences.php:188
|
5867 |
+
#: pro/pro-class-sequences.php:463
|
5868 |
msgid "Save All"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
+
#: pro/pro-class-sequences.php:209
|
5872 |
msgid "+ Add Email"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
+
#: pro/pro-class-sequences.php:297
|
5876 |
+
#: pro/pro-class-sequences.php:369
|
5877 |
msgid "Sequence should have atleast one email"
|
5878 |
msgstr ""
|
5879 |
|
5880 |
+
#: pro/pro-class-sequences.php:341
|
5881 |
msgid "Sequence added successfully!"
|
5882 |
msgstr ""
|
5883 |
|
5884 |
+
#: pro/pro-class-sequences.php:345
|
5885 |
msgid "Sorry, you are not allowed to add sequence."
|
5886 |
msgstr ""
|
5887 |
|
5888 |
+
#: pro/pro-class-sequences.php:445
|
5889 |
msgid "Sequence updated successfully!"
|
5890 |
msgstr ""
|
5891 |
|
5892 |
+
#: pro/pro-class-sequences.php:449
|
5893 |
msgid "Sorry, you are not allowed to edit sequence."
|
5894 |
msgstr ""
|
5895 |
|
5896 |
+
#: pro/pro-class-sequences.php:503
|
5897 |
+
#: pro/pro-class-sequences.php:542
|
5898 |
msgid "Welcome"
|
5899 |
msgstr ""
|
5900 |
|
5901 |
+
#: pro/pro-class-sequences.php:506
|
5902 |
+
#: pro/pro-class-sequences.php:509
|
5903 |
msgid "Delete this email"
|
5904 |
msgstr ""
|
5905 |
|
5906 |
+
#: pro/pro-class-sequences.php:540
|
5907 |
msgid "Email Subject"
|
5908 |
msgstr ""
|
5909 |
|
5910 |
+
#: pro/pro-class-sequences.php:594
|
5911 |
msgid "Send "
|
5912 |
msgstr ""
|
5913 |
|
5914 |
+
#: pro/pro-class-sequences.php:597
|
5915 |
msgid "immediately"
|
5916 |
msgstr ""
|
5917 |
|
5918 |
+
#: pro/pro-class-sequences.php:604
|
5919 |
msgid " after subscription"
|
5920 |
msgstr ""
|
5921 |
|
5922 |
#. translators: 1. Delay amount 2. delay unit
|
5923 |
+
#: pro/pro-class-sequences.php:674
|
5924 |
+
#: pro/pro-class-sequences.php:678
|
5925 |
+
#: pro/pro-class-sequences.php:682
|
5926 |
msgid "Send after %1$d %2$s"
|
5927 |
msgstr ""
|
5928 |
|
5929 |
#. translators: 1. Delay amount 2. delay unit
|
5930 |
+
#: pro/pro-class-sequences.php:674
|
5931 |
msgid "hour"
|
5932 |
msgid_plural "hours"
|
5933 |
msgstr[0] ""
|
5934 |
msgstr[1] ""
|
5935 |
|
5936 |
#. translators: 1. Delay amount 2. delay unit
|
5937 |
+
#: pro/pro-class-sequences.php:682
|
5938 |
msgid "week"
|
5939 |
msgid_plural "weeks"
|
5940 |
msgstr[0] ""
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: email marketing, subscription, autoresponder, post notification, welcome e
|
|
6 |
Requires at least: 3.9
|
7 |
Tested up to: 5.9.3
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 5.3.
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses
|
12 |
|
@@ -310,14 +310,18 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
|
|
310 |
|
311 |
== Upgrade Notice ==
|
312 |
|
313 |
-
= 5.3.
|
314 |
|
315 |
-
*
|
316 |
-
*
|
317 |
-
* Fix: Security related issues [Thanks to WP team]
|
318 |
|
319 |
== Changelog ==
|
320 |
|
|
|
|
|
|
|
|
|
|
|
321 |
**5.3.12 (21.04.2022)**
|
322 |
|
323 |
* Fix: Incorrect name when registering through Ultimate Member plugin
|
6 |
Requires at least: 3.9
|
7 |
Tested up to: 5.9.3
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 5.3.13
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses
|
12 |
|
310 |
|
311 |
== Upgrade Notice ==
|
312 |
|
313 |
+
= 5.3.13 =
|
314 |
|
315 |
+
* New: Support for categories for custom post type
|
316 |
+
* New: Added preview for sequence emails
|
|
|
317 |
|
318 |
== Changelog ==
|
319 |
|
320 |
+
**5.3.13 (27.04.2022)**
|
321 |
+
|
322 |
+
* New: Support for categories for custom post type
|
323 |
+
* New: Added preview for sequence emails
|
324 |
+
|
325 |
**5.3.12 (21.04.2022)**
|
326 |
|
327 |
* Fix: Incorrect name when registering through Ultimate Member plugin
|