Version Description
Download this release
Release Info
Developer | Icegram |
Plugin | Email Subscribers & Newsletters |
Version | 4.3.8 |
Comparing to | |
See all releases |
Code changes from version 4.3.7 to 4.3.8
- email-subscribers.php +4 -4
- lite/admin/class-email-subscribers-admin.php +6 -65
- lite/includes/class-email-subscribers.php +101 -6
- lite/includes/class-es-common.php +0 -32
- lite/includes/classes/class-es-campaigns-table.php +28 -4
- lite/includes/classes/class-es-contacts-table.php +36 -17
- lite/includes/classes/class-es-forms-table.php +0 -3
- lite/includes/classes/class-es-lists-table.php +0 -3
- lite/includes/classes/class-es-templates-table.php +2 -2
- lite/includes/feedback.php +59 -15
- lite/includes/feedback/class-ig-feedback.php +254 -22
- lite/includes/feedback/class-ig-tracker.php +4 -4
- lite/includes/notices/class-es-admin-notices.php +11 -24
- lite/languages/email-subscribers.pot +782 -647
- readme.txt +6 -2
email-subscribers.php
CHANGED
@@ -3,11 +3,11 @@
|
|
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: 4.3.
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.9
|
10 |
-
* Tested up to: 5.3
|
11 |
* Text Domain: email-subscribers
|
12 |
* Domain Path: /lite/languages/
|
13 |
* License: GPLv3
|
@@ -29,7 +29,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
29 |
* @since 4.3.0
|
30 |
*/
|
31 |
if ( ! defined( 'IG_ES_FEEDBACK_TRACKER_VERSION' ) ) {
|
32 |
-
define( 'IG_ES_FEEDBACK_TRACKER_VERSION', '1.0.
|
33 |
}
|
34 |
|
35 |
|
@@ -111,7 +111,7 @@ if ( $is_premium ) {
|
|
111 |
/* ***************************** Initial Compatibility Work (End) ******************* */
|
112 |
|
113 |
if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
|
114 |
-
define( 'ES_PLUGIN_VERSION', '4.3.
|
115 |
}
|
116 |
|
117 |
// 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: 4.3.8
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.9
|
10 |
+
* Tested up to: 5.3.2
|
11 |
* Text Domain: email-subscribers
|
12 |
* Domain Path: /lite/languages/
|
13 |
* License: GPLv3
|
29 |
* @since 4.3.0
|
30 |
*/
|
31 |
if ( ! defined( 'IG_ES_FEEDBACK_TRACKER_VERSION' ) ) {
|
32 |
+
define( 'IG_ES_FEEDBACK_TRACKER_VERSION', '1.0.15' );
|
33 |
}
|
34 |
|
35 |
|
111 |
/* ***************************** Initial Compatibility Work (End) ******************* */
|
112 |
|
113 |
if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
|
114 |
+
define( 'ES_PLUGIN_VERSION', '4.3.8' );
|
115 |
}
|
116 |
|
117 |
// Plugin Folder Path.
|
lite/admin/class-email-subscribers-admin.php
CHANGED
@@ -76,28 +76,11 @@ class Email_Subscribers_Admin {
|
|
76 |
* @since 4.0
|
77 |
*/
|
78 |
public function enqueue_styles() {
|
79 |
-
|
80 |
-
|
81 |
-
$enqueue_on_screens = array(
|
82 |
-
'toplevel_page_es_dashboard',
|
83 |
-
'email-subscribers_page_es_subscribers',
|
84 |
-
'email-subscribers_page_es_lists',
|
85 |
-
'email-subscribers_page_es_forms',
|
86 |
-
'email-subscribers_page_es_campaigns',
|
87 |
-
'email-subscribers_page_es_newsletters',
|
88 |
-
'email-subscribers_page_es_notifications',
|
89 |
-
'edit-es_template',
|
90 |
-
'email-subscribers_page_es_reports',
|
91 |
-
'email-subscribers_page_es_tools',
|
92 |
-
'email-subscribers_page_es_settings',
|
93 |
-
'email-subscribers_page_es_general_information',
|
94 |
-
'email-subscribers_page_es_pricing',
|
95 |
-
'es_template',
|
96 |
-
);
|
97 |
-
//all admin notice
|
98 |
-
if ( ! in_array( $screen_id, $enqueue_on_screens, true ) ) {
|
99 |
return;
|
100 |
}
|
|
|
101 |
/**
|
102 |
* This function is provided for demonstration purposes only.
|
103 |
*
|
@@ -126,27 +109,11 @@ class Email_Subscribers_Admin {
|
|
126 |
* @since 4.0
|
127 |
*/
|
128 |
public function enqueue_scripts() {
|
129 |
-
|
130 |
-
|
131 |
-
$enqueue_on_screens = array(
|
132 |
-
'toplevel_page_es_dashboard',
|
133 |
-
'email-subscribers_page_es_subscribers',
|
134 |
-
'email-subscribers_page_es_lists',
|
135 |
-
'email-subscribers_page_es_forms',
|
136 |
-
'email-subscribers_page_es_campaigns',
|
137 |
-
'email-subscribers_page_es_newsletters',
|
138 |
-
'email-subscribers_page_es_notifications',
|
139 |
-
'edit-es_template',
|
140 |
-
'email-subscribers_page_es_reports',
|
141 |
-
'email-subscribers_page_es_tools',
|
142 |
-
'email-subscribers_page_es_settings',
|
143 |
-
'email-subscribers_page_es_general_information',
|
144 |
-
'email-subscribers_page_es_pricing',
|
145 |
-
);
|
146 |
-
//all admin notice
|
147 |
-
if ( ! in_array( $screen_id, $enqueue_on_screens, true ) ) {
|
148 |
return;
|
149 |
}
|
|
|
150 |
wp_enqueue_script( $this->email_subscribers, plugin_dir_url( __FILE__ ) . 'js/email-subscribers-admin.js', array( 'jquery', 'jquery-ui-core', 'jquery-ui-tabs' ), $this->version, false );
|
151 |
wp_enqueue_script( 'custom', plugin_dir_url( __FILE__ ) . 'js/es-onboarding.js', array( 'jquery' ), $this->version, false );
|
152 |
}
|
@@ -428,32 +395,6 @@ class Email_Subscribers_Admin {
|
|
428 |
|
429 |
}
|
430 |
|
431 |
-
public static function es_feedback() {
|
432 |
-
$star_rating_dismiss = get_option( 'ig_es_dismiss_star_notice', 'no' );
|
433 |
-
$star_rating_done = get_option( 'ig_es_star_notice_done', 'no' );
|
434 |
-
// Show if - more than 2 post notifications or Newsletters sent OR more than 10 subscribers
|
435 |
-
$total_contacts = ES()->contacts_db->count_active_contacts_by_list_id();
|
436 |
-
$total_email_sent = ES_DB_Mailing_Queue::get_notifications_count();
|
437 |
-
|
438 |
-
$icon_url = plugin_dir_url( __FILE__ ) . 'images/icon-64.png';
|
439 |
-
|
440 |
-
$reviewurl = '?es_dismiss_admin_notice=1&option_name=star_notice_done';
|
441 |
-
$nobugurl = '?es_dismiss_admin_notice=1&option_name=dismiss_star_notice';
|
442 |
-
|
443 |
-
if ( ( $total_contacts >= 10 || $total_email_sent > 2 ) && 'yes' !== $star_rating_dismiss && 'yes' !== $star_rating_done ) {
|
444 |
-
|
445 |
-
echo '<div class="notice notice-warning">';
|
446 |
-
echo '<span style="float: left;"><img style="height=90px; width=90px;" src="' . $icon_url . '" /></span>';
|
447 |
-
echo __( "<span><p>We hope you're enjoying <b>Email Subscribers</b> plugin! Could you please do us a BIG favor and give us a 5-star rating on WordPress to help us spread the word and boost our motivation?</p>", "temporary-login-without-password" );
|
448 |
-
echo "<ul class='tlwp-notice-links'>";
|
449 |
-
echo sprintf( '<li><a href="%s" class="tlwp-rating-link-header" target="_blank" data-rated="' . esc_attr__( "Thank You :) ",
|
450 |
-
'temporary-login-without-password' ) . '"><span class="dashicons dashicons-external"></span> Ok, you deserve it!</a></li> <li><a href="%s"><span class="dashicons dashicons-calendar-alt"></span> Maybe later</a></li>', esc_url( $reviewurl ), esc_url( $nobugurl ) );
|
451 |
-
echo "</ul></span>";
|
452 |
-
echo '</div>';
|
453 |
-
}
|
454 |
-
}
|
455 |
-
|
456 |
-
|
457 |
function send_test_email() {
|
458 |
$message = array(
|
459 |
'status' => 'ERROR',
|
76 |
* @since 4.0
|
77 |
*/
|
78 |
public function enqueue_styles() {
|
79 |
+
|
80 |
+
if ( ! ES()->is_es_admin_screen() ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
return;
|
82 |
}
|
83 |
+
|
84 |
/**
|
85 |
* This function is provided for demonstration purposes only.
|
86 |
*
|
109 |
* @since 4.0
|
110 |
*/
|
111 |
public function enqueue_scripts() {
|
112 |
+
|
113 |
+
if ( ! ES()->is_es_admin_screen() ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
return;
|
115 |
}
|
116 |
+
|
117 |
wp_enqueue_script( $this->email_subscribers, plugin_dir_url( __FILE__ ) . 'js/email-subscribers-admin.js', array( 'jquery', 'jquery-ui-core', 'jquery-ui-tabs' ), $this->version, false );
|
118 |
wp_enqueue_script( 'custom', plugin_dir_url( __FILE__ ) . 'js/es-onboarding.js', array( 'jquery' ), $this->version, false );
|
119 |
}
|
395 |
|
396 |
}
|
397 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
398 |
function send_test_email() {
|
399 |
$message = array(
|
400 |
'status' => 'ERROR',
|
lite/includes/class-email-subscribers.php
CHANGED
@@ -268,8 +268,7 @@ if ( ! class_exists( 'Email_Subscribers' ) ) {
|
|
268 |
$args['include'] = ES_PLUGIN_DIR . 'lite/includes/notices/views/ig-es-offer.php';
|
269 |
ES_Admin_Notices::add_custom_notice( 'bfcm_2019', $args );
|
270 |
|
271 |
-
$
|
272 |
-
$screen_id = $screen ? $screen->id : '';
|
273 |
// Don't show admin notices on Dashboard if onboarding is not yet completed.
|
274 |
$is_onboarding_complete = get_option( 'ig_es_onboarding_complete', false );
|
275 |
|
@@ -508,6 +507,31 @@ if ( ! class_exists( 'Email_Subscribers' ) ) {
|
|
508 |
if ( ! defined( 'IG_ES_MAX_EMAIL_SEND_AT_ONCE' ) ) {
|
509 |
define( 'IG_ES_MAX_EMAIL_SEND_AT_ONCE', 30 );
|
510 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
511 |
}
|
512 |
|
513 |
/**
|
@@ -770,6 +794,81 @@ if ( ! class_exists( 'Email_Subscribers' ) ) {
|
|
770 |
return file_exists( ES_PLUGIN_DIR . 'starter/starter-class-email-subscribers.php' );
|
771 |
}
|
772 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
773 |
/**
|
774 |
* Register Widget Class
|
775 |
*
|
@@ -824,11 +923,8 @@ if ( ! class_exists( 'Email_Subscribers' ) ) {
|
|
824 |
self::$instance->define_admin_hooks();
|
825 |
self::$instance->define_public_hooks();
|
826 |
|
827 |
-
//register_shutdown_function( array( self::$instance, 'log_errors' ) );
|
828 |
-
|
829 |
self::$instance->logger = get_ig_logger();
|
830 |
|
831 |
-
|
832 |
self::$instance->mailer = new ES_Mailer();
|
833 |
|
834 |
add_action( 'widgets_init', array( self::$instance, 'register_es_widget' ) );
|
@@ -846,7 +942,6 @@ if ( ! class_exists( 'Email_Subscribers' ) ) {
|
|
846 |
self::$instance->actions = new ES_Actions();
|
847 |
self::$instance->cron = new ES_Cron();
|
848 |
|
849 |
-
|
850 |
if ( is_admin() ) {
|
851 |
$ig_es_feedback_class = 'IG_Feedback_V_' . str_replace( '.', '_', IG_ES_FEEDBACK_TRACKER_VERSION );
|
852 |
|
268 |
$args['include'] = ES_PLUGIN_DIR . 'lite/includes/notices/views/ig-es-offer.php';
|
269 |
ES_Admin_Notices::add_custom_notice( 'bfcm_2019', $args );
|
270 |
|
271 |
+
$screen_id = $this->get_current_screen_id();
|
|
|
272 |
// Don't show admin notices on Dashboard if onboarding is not yet completed.
|
273 |
$is_onboarding_complete = get_option( 'ig_es_onboarding_complete', false );
|
274 |
|
507 |
if ( ! defined( 'IG_ES_MAX_EMAIL_SEND_AT_ONCE' ) ) {
|
508 |
define( 'IG_ES_MAX_EMAIL_SEND_AT_ONCE', 30 );
|
509 |
}
|
510 |
+
|
511 |
+
|
512 |
+
if ( ! defined( 'IG_ES_CAMPAIGN_STATUS_IN_ACTIVE' ) ) {
|
513 |
+
define( 'IG_ES_CAMPAIGN_STATUS_IN_ACTIVE', 0 );
|
514 |
+
}
|
515 |
+
|
516 |
+
if ( ! defined( 'IG_ES_CAMPAIGN_STATUS_ACTIVE' ) ) {
|
517 |
+
define( 'IG_ES_CAMPAIGN_STATUS_ACTIVE', 1 );
|
518 |
+
}
|
519 |
+
|
520 |
+
if ( ! defined( 'IG_ES_CAMPAIGN_STATUS_SCHEDULED' ) ) {
|
521 |
+
define( 'IG_ES_CAMPAIGN_STATUS_SCHEDULED', 2 );
|
522 |
+
}
|
523 |
+
|
524 |
+
if ( ! defined( 'IG_ES_CAMPAIGN_STATUS_QUEUED' ) ) {
|
525 |
+
define( 'IG_ES_CAMPAIGN_STATUS_QUEUED', 3 );
|
526 |
+
}
|
527 |
+
|
528 |
+
if ( ! defined( 'IG_ES_CAMPAIGN_STATUS_PAUSED' ) ) {
|
529 |
+
define( 'IG_ES_CAMPAIGN_STATUS_PAUSED', 4 );
|
530 |
+
}
|
531 |
+
|
532 |
+
if ( ! defined( 'IG_ES_CAMPAIGN_STATUS_FINISHED' ) ) {
|
533 |
+
define( 'IG_ES_CAMPAIGN_STATUS_FINISHED', 5 );
|
534 |
+
}
|
535 |
}
|
536 |
|
537 |
/**
|
794 |
return file_exists( ES_PLUGIN_DIR . 'starter/starter-class-email-subscribers.php' );
|
795 |
}
|
796 |
|
797 |
+
/**
|
798 |
+
* Get all ES admin screens
|
799 |
+
*
|
800 |
+
* @return array|mixed|void
|
801 |
+
*
|
802 |
+
* @since 4.3.8
|
803 |
+
*/
|
804 |
+
public function get_es_admin_screens() {
|
805 |
+
|
806 |
+
// TODO: Can be updated with a version check when https://core.trac.wordpress.org/ticket/18857 is fixed
|
807 |
+
$prefix = sanitize_title( __( 'Email Subscribers', 'email-subscribers' ) );
|
808 |
+
|
809 |
+
$screens = array(
|
810 |
+
"es_template",
|
811 |
+
"edit-es_template",
|
812 |
+
"toplevel_page_es_dashboard",
|
813 |
+
"{$prefix}_page_es_subscribers",
|
814 |
+
"{$prefix}_page_es_lists",
|
815 |
+
"{$prefix}_page_es_forms",
|
816 |
+
"{$prefix}_page_es_campaigns",
|
817 |
+
"{$prefix}_page_es_newsletters",
|
818 |
+
"{$prefix}_page_es_notifications",
|
819 |
+
"{$prefix}_page_es_reports",
|
820 |
+
"{$prefix}_page_es_settings",
|
821 |
+
"{$prefix}_page_es_tools",
|
822 |
+
"{$prefix}_page_es_general_information",
|
823 |
+
"{$prefix}_page_es_pricing",
|
824 |
+
"{$prefix}_page_es_sequence",
|
825 |
+
);
|
826 |
+
|
827 |
+
$screens = apply_filters( 'ig_es_admin_screens', $screens );
|
828 |
+
|
829 |
+
return $screens;
|
830 |
+
}
|
831 |
+
|
832 |
+
/**
|
833 |
+
* Is es admin screen?
|
834 |
+
*
|
835 |
+
* @return bool
|
836 |
+
*
|
837 |
+
* @since 4.3.8
|
838 |
+
*/
|
839 |
+
public function is_es_admin_screen() {
|
840 |
+
|
841 |
+
$current_screen_id = $this->get_current_screen_id();
|
842 |
+
|
843 |
+
$es_admin_screens = $this->get_es_admin_screens();
|
844 |
+
|
845 |
+
if ( in_array( $current_screen_id, $es_admin_screens ) ) {
|
846 |
+
return true;
|
847 |
+
}
|
848 |
+
|
849 |
+
return false;
|
850 |
+
}
|
851 |
+
|
852 |
+
/**
|
853 |
+
* Get Current Screen Id
|
854 |
+
*
|
855 |
+
* @return string
|
856 |
+
*
|
857 |
+
* @since 4.3.8
|
858 |
+
*/
|
859 |
+
public function get_current_screen_id() {
|
860 |
+
|
861 |
+
$current_screen = function_exists( 'get_current_screen' ) ? get_current_screen() : false;
|
862 |
+
|
863 |
+
if ( ! $current_screen instanceof WP_Screen ) {
|
864 |
+
return '';
|
865 |
+
}
|
866 |
+
|
867 |
+
$current_screen = get_current_screen();
|
868 |
+
|
869 |
+
return ( $current_screen ? $current_screen->id : '' );
|
870 |
+
}
|
871 |
+
|
872 |
/**
|
873 |
* Register Widget Class
|
874 |
*
|
923 |
self::$instance->define_admin_hooks();
|
924 |
self::$instance->define_public_hooks();
|
925 |
|
|
|
|
|
926 |
self::$instance->logger = get_ig_logger();
|
927 |
|
|
|
928 |
self::$instance->mailer = new ES_Mailer();
|
929 |
|
930 |
add_action( 'widgets_init', array( self::$instance, 'register_es_widget' ) );
|
942 |
self::$instance->actions = new ES_Actions();
|
943 |
self::$instance->cron = new ES_Cron();
|
944 |
|
|
|
945 |
if ( is_admin() ) {
|
946 |
$ig_es_feedback_class = 'IG_Feedback_V_' . str_replace( '.', '_', IG_ES_FEEDBACK_TRACKER_VERSION );
|
947 |
|
lite/includes/class-es-common.php
CHANGED
@@ -1111,38 +1111,6 @@ Class ES_Common {
|
|
1111 |
return $list_name;
|
1112 |
}
|
1113 |
|
1114 |
-
/**
|
1115 |
-
* Get all pages of Email Subscribers plugin
|
1116 |
-
*
|
1117 |
-
* @param array $excludes
|
1118 |
-
*
|
1119 |
-
* @return array
|
1120 |
-
*
|
1121 |
-
* @since 4.1.14
|
1122 |
-
*/
|
1123 |
-
public static function get_all_es_admin_screens( $excludes = array() ) {
|
1124 |
-
|
1125 |
-
$screens = array(
|
1126 |
-
'toplevel_page_es_dashboard',
|
1127 |
-
'email-subscribers_page_es_subscribers',
|
1128 |
-
'email-subscribers_page_es_lists',
|
1129 |
-
'email-subscribers_page_es_forms',
|
1130 |
-
'email-subscribers_page_es_campaigns',
|
1131 |
-
'email-subscribers_page_es_reports',
|
1132 |
-
'email-subscribers_page_es_settings',
|
1133 |
-
'email-subscribers_page_es_general_information',
|
1134 |
-
'email-subscribers_page_es_pricing'
|
1135 |
-
);
|
1136 |
-
|
1137 |
-
$screens = apply_filters( 'ig_es_admin_screens', $screens );
|
1138 |
-
|
1139 |
-
if ( count( $excludes ) > 0 ) {
|
1140 |
-
$screens = array_diff( $screens, $excludes );
|
1141 |
-
}
|
1142 |
-
|
1143 |
-
return $screens;
|
1144 |
-
}
|
1145 |
-
|
1146 |
/**
|
1147 |
* Update Total Email Sent count
|
1148 |
*
|
1111 |
return $list_name;
|
1112 |
}
|
1113 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1114 |
/**
|
1115 |
* Update Total Email Sent count
|
1116 |
*
|
lite/includes/classes/class-es-campaigns-table.php
CHANGED
@@ -96,7 +96,6 @@ class ES_Campaigns_Table extends WP_List_Table {
|
|
96 |
<?php do_action( 'ig_es_after_campaign_type_buttons' ) ?>
|
97 |
<a href="edit.php?post_type=es_template" class="page-title-action es-imp-button"><?php _e( 'Manage Templates', 'email-subscribers' ) ?></a>
|
98 |
</h1>
|
99 |
-
<?php Email_Subscribers_Admin::es_feedback(); ?>
|
100 |
<div id="poststuff">
|
101 |
<div id="post-body" class="metabox-holder column-1">
|
102 |
<div id="post-body-content">
|
@@ -208,6 +207,33 @@ class ES_Campaigns_Table extends WP_List_Table {
|
|
208 |
_e( 'No Campaigns Found.', 'email-subscribers' );
|
209 |
}
|
210 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
211 |
/**
|
212 |
* Render a column when no column specific method exist.
|
213 |
*
|
@@ -227,10 +253,8 @@ class ES_Campaigns_Table extends WP_List_Table {
|
|
227 |
}
|
228 |
break;
|
229 |
case 'status':
|
230 |
-
$status = ( $item[ $column_name ] == 1 ) ? __( 'Active', 'email-subscribers' ) : __( 'Inactive', 'email-subscribers' );
|
231 |
-
|
232 |
-
return $status;
|
233 |
|
|
|
234 |
break;
|
235 |
case 'type':
|
236 |
$type = ( $item[ $column_name ] === 'newsletter' ) ? __( 'Broadcast', 'email-subscribers' ) : $item[ $column_name ];
|
96 |
<?php do_action( 'ig_es_after_campaign_type_buttons' ) ?>
|
97 |
<a href="edit.php?post_type=es_template" class="page-title-action es-imp-button"><?php _e( 'Manage Templates', 'email-subscribers' ) ?></a>
|
98 |
</h1>
|
|
|
99 |
<div id="poststuff">
|
100 |
<div id="post-body" class="metabox-holder column-1">
|
101 |
<div id="post-body-content">
|
207 |
_e( 'No Campaigns Found.', 'email-subscribers' );
|
208 |
}
|
209 |
|
210 |
+
/**
|
211 |
+
* Get Campaign statuses
|
212 |
+
*
|
213 |
+
* @param string $status
|
214 |
+
*
|
215 |
+
* @return array|mixed
|
216 |
+
*
|
217 |
+
* @since 4.3.6
|
218 |
+
*/
|
219 |
+
public function get_statuses( $status = '' ) {
|
220 |
+
|
221 |
+
$statuses = array(
|
222 |
+
IG_ES_CAMPAIGN_STATUS_IN_ACTIVE => __( 'In Active', 'email-subscribers' ),
|
223 |
+
IG_ES_CAMPAIGN_STATUS_ACTIVE => __( 'Active', 'email-subscribers' ),
|
224 |
+
IG_ES_CAMPAIGN_STATUS_SCHEDULED => __( 'Scheduled', 'email-subscribers' ),
|
225 |
+
IG_ES_CAMPAIGN_STATUS_QUEUED => __( 'Queued', 'email-subscribers' ),
|
226 |
+
IG_ES_CAMPAIGN_STATUS_PAUSED => __( 'Paused', 'email-subscribers' ),
|
227 |
+
IG_ES_CAMPAIGN_STATUS_FINISHED => __( 'Finished', 'email-subscribers' ),
|
228 |
+
);
|
229 |
+
|
230 |
+
if ( ! empty( $status ) ) {
|
231 |
+
return $statuses[ $status ];
|
232 |
+
}
|
233 |
+
|
234 |
+
return $statuses;
|
235 |
+
}
|
236 |
+
|
237 |
/**
|
238 |
* Render a column when no column specific method exist.
|
239 |
*
|
253 |
}
|
254 |
break;
|
255 |
case 'status':
|
|
|
|
|
|
|
256 |
|
257 |
+
return $this->get_statuses( $item[ $column_name ] );
|
258 |
break;
|
259 |
case 'type':
|
260 |
$type = ( $item[ $column_name ] === 'newsletter' ) ? __( 'Broadcast', 'email-subscribers' ) : $item[ $column_name ];
|
lite/includes/classes/class-es-contacts-table.php
CHANGED
@@ -199,7 +199,6 @@ class ES_Contacts_Table extends WP_List_Table {
|
|
199 |
<?php $this->get_contacts_reports() ?>
|
200 |
</div>
|
201 |
|
202 |
-
<?php Email_Subscribers_Admin::es_feedback(); ?>
|
203 |
<div id="poststuff" class="es-audience-view">
|
204 |
<div id="post-body" class="metabox-holder column-1">
|
205 |
<div id="post-body-content">
|
@@ -349,11 +348,30 @@ class ES_Contacts_Table extends WP_List_Table {
|
|
349 |
);
|
350 |
|
351 |
// Add contact
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
352 |
if ( $id ) {
|
353 |
ES()->contacts_db->update_contact( $id, $contact );
|
354 |
} else {
|
355 |
-
|
356 |
-
if ( ! $id ) {
|
357 |
$contact['source'] = 'admin';
|
358 |
$contact['status'] = 'verified';
|
359 |
$contact['hash'] = ES_Common::generate_guid();
|
@@ -368,6 +386,7 @@ class ES_Contacts_Table extends WP_List_Table {
|
|
368 |
}
|
369 |
|
370 |
}
|
|
|
371 |
|
372 |
if ( ! $is_error ) {
|
373 |
|
@@ -426,17 +445,17 @@ class ES_Contacts_Table extends WP_List_Table {
|
|
426 |
}
|
427 |
|
428 |
$data = array(
|
429 |
-
'id'
|
430 |
-
'first_name'
|
431 |
-
'last_name'
|
432 |
-
'email'
|
433 |
-
'guid'
|
434 |
);
|
435 |
|
436 |
?>
|
437 |
|
438 |
<div class="wrap">
|
439 |
-
<h1 class="wp-heading-inline"><?php echo $title; ?><?php echo $title_action; ?></h1
|
440 |
<hr class="wp-header-end">
|
441 |
<div id="poststuff">
|
442 |
<div id="post-body" class="metabox-holder column-1">
|
@@ -666,14 +685,14 @@ class ES_Contacts_Table extends WP_List_Table {
|
|
666 |
}
|
667 |
|
668 |
/**
|
669 |
-
|
670 |
-
|
671 |
* @param int $contact_id
|
672 |
* @param int $columns
|
673 |
*
|
674 |
* @return string
|
675 |
-
|
676 |
-
|
677 |
*/
|
678 |
public function prepare_lists_html( $contact_id = 0, $columns = 2 ) {
|
679 |
$lists = ES()->lists_db->get_id_name_map();
|
@@ -681,7 +700,7 @@ class ES_Contacts_Table extends WP_List_Table {
|
|
681 |
$lists_html = '';
|
682 |
if ( count( $lists ) > 0 ) {
|
683 |
|
684 |
-
|
685 |
if ( ! empty( $contact_id ) ) {
|
686 |
$list_contact_status_map = ES()->lists_contacts_db->get_list_contact_status_map( $contact_id );
|
687 |
}
|
@@ -701,9 +720,9 @@ class ES_Contacts_Table extends WP_List_Table {
|
|
701 |
$status_dropdown_html .= "</select>";
|
702 |
|
703 |
$status_span = '';
|
704 |
-
if(!empty($list_contact_status_map[$list_id])) {
|
705 |
-
|
706 |
-
|
707 |
|
708 |
$list_name = strlen( $list_name ) > 15 ? substr( $list_name, 0, 15 ) . '...' : $list_name;
|
709 |
$lists_html .= "<td>$status_span$list_name</td><td>$status_dropdown_html</td>";
|
199 |
<?php $this->get_contacts_reports() ?>
|
200 |
</div>
|
201 |
|
|
|
202 |
<div id="poststuff" class="es-audience-view">
|
203 |
<div id="post-body" class="metabox-holder column-1">
|
204 |
<div id="post-body-content">
|
348 |
);
|
349 |
|
350 |
// Add contact
|
351 |
+
$existing_contact_id = ES()->contacts_db->get_contact_id_by_email( $email );
|
352 |
+
|
353 |
+
if ( $existing_contact_id && ( $existing_contact_id != $id ) ) {
|
354 |
+
$message = __( 'Contact already exist.', 'email-subscribers' );
|
355 |
+
ES_Common::show_message( $message, 'error' );
|
356 |
+
$is_error = true;
|
357 |
+
} else {
|
358 |
+
if ( $id ) {
|
359 |
+
ES()->contacts_db->update_contact( $id, $contact );
|
360 |
+
} else {
|
361 |
+
$contact['source'] = 'admin';
|
362 |
+
$contact['status'] = 'verified';
|
363 |
+
$contact['hash'] = ES_Common::generate_guid();
|
364 |
+
$contact['created_at'] = ig_get_current_date_time();
|
365 |
+
|
366 |
+
$id = ES()->contacts_db->insert( $contact );
|
367 |
+
}
|
368 |
+
}
|
369 |
+
|
370 |
+
/*
|
371 |
if ( $id ) {
|
372 |
ES()->contacts_db->update_contact( $id, $contact );
|
373 |
} else {
|
374 |
+
if ( ! $existing_contact_id ) {
|
|
|
375 |
$contact['source'] = 'admin';
|
376 |
$contact['status'] = 'verified';
|
377 |
$contact['hash'] = ES_Common::generate_guid();
|
386 |
}
|
387 |
|
388 |
}
|
389 |
+
*/
|
390 |
|
391 |
if ( ! $is_error ) {
|
392 |
|
445 |
}
|
446 |
|
447 |
$data = array(
|
448 |
+
'id' => $id,
|
449 |
+
'first_name' => $first_name,
|
450 |
+
'last_name' => $last_name,
|
451 |
+
'email' => $email,
|
452 |
+
'guid' => $guid
|
453 |
);
|
454 |
|
455 |
?>
|
456 |
|
457 |
<div class="wrap">
|
458 |
+
<h1 class="wp-heading-inline"><?php echo $title; ?><?php echo $title_action; ?></h1>
|
459 |
<hr class="wp-header-end">
|
460 |
<div id="poststuff">
|
461 |
<div id="post-body" class="metabox-holder column-1">
|
685 |
}
|
686 |
|
687 |
/**
|
688 |
+
* Prepare lists html to set status
|
689 |
+
*
|
690 |
* @param int $contact_id
|
691 |
* @param int $columns
|
692 |
*
|
693 |
* @return string
|
694 |
+
*
|
695 |
+
* @since 4.3.6
|
696 |
*/
|
697 |
public function prepare_lists_html( $contact_id = 0, $columns = 2 ) {
|
698 |
$lists = ES()->lists_db->get_id_name_map();
|
700 |
$lists_html = '';
|
701 |
if ( count( $lists ) > 0 ) {
|
702 |
|
703 |
+
$list_contact_status_map = array();
|
704 |
if ( ! empty( $contact_id ) ) {
|
705 |
$list_contact_status_map = ES()->lists_contacts_db->get_list_contact_status_map( $contact_id );
|
706 |
}
|
720 |
$status_dropdown_html .= "</select>";
|
721 |
|
722 |
$status_span = '';
|
723 |
+
if ( ! empty( $list_contact_status_map[ $list_id ] ) ) {
|
724 |
+
$status_span = '<span class="es_list_contact_status ' . $list_contact_status_map[ $list_id ] . '" title="' . ucwords( $list_contact_status_map[ $list_id ] ) . '">';
|
725 |
+
}
|
726 |
|
727 |
$list_name = strlen( $list_name ) > 15 ? substr( $list_name, 0, 15 ) . '...' : $list_name;
|
728 |
$lists_html .= "<td>$status_span$list_name</td><td>$status_dropdown_html</td>";
|
lite/includes/classes/class-es-forms-table.php
CHANGED
@@ -79,7 +79,6 @@ class ES_Forms_Table extends WP_List_Table {
|
|
79 |
echo $this->edit_form( absint( $form ) );
|
80 |
} else { ?>
|
81 |
<h1 class="wp-heading-inline"><?php _e( 'Forms', 'email-subscribers' ) ?><a href="admin.php?page=es_forms&action=new" class="page-title-action"> <?php _e( 'Add New', 'email-subscribers' ) ?></a></h1>
|
82 |
-
<?php Email_Subscribers_Admin::es_feedback(); ?>
|
83 |
<div id="poststuff">
|
84 |
<div id="post-body" class="metabox-holder column-1">
|
85 |
<div id="post-body-content">
|
@@ -264,8 +263,6 @@ class ES_Forms_Table extends WP_List_Table {
|
|
264 |
?>
|
265 |
</h1>
|
266 |
|
267 |
-
<?php Email_Subscribers_Admin::es_feedback(); ?>
|
268 |
-
|
269 |
<div id="poststuff">
|
270 |
<div id="post-body" class="metabox-holder column-1">
|
271 |
<div id="post-body-content">
|
79 |
echo $this->edit_form( absint( $form ) );
|
80 |
} else { ?>
|
81 |
<h1 class="wp-heading-inline"><?php _e( 'Forms', 'email-subscribers' ) ?><a href="admin.php?page=es_forms&action=new" class="page-title-action"> <?php _e( 'Add New', 'email-subscribers' ) ?></a></h1>
|
|
|
82 |
<div id="poststuff">
|
83 |
<div id="post-body" class="metabox-holder column-1">
|
84 |
<div id="post-body-content">
|
263 |
?>
|
264 |
</h1>
|
265 |
|
|
|
|
|
266 |
<div id="poststuff">
|
267 |
<div id="post-body" class="metabox-holder column-1">
|
268 |
<div id="post-body-content">
|
lite/includes/classes/class-es-lists-table.php
CHANGED
@@ -73,7 +73,6 @@ class ES_Lists_Table extends WP_List_Table {
|
|
73 |
echo $this->edit_list( absint( $list ) );
|
74 |
} else { ?>
|
75 |
<h1 class="wp-heading-inline"><?php _e( 'Audience > Lists', 'email-subscribers' ); ?> <a href="admin.php?page=es_lists&action=new" class="page-title-action">Add New</a></h1>
|
76 |
-
<?php Email_Subscribers_Admin::es_feedback(); ?>
|
77 |
<div id="poststuff">
|
78 |
<div id="post-body" class="metabox-holder column-1">
|
79 |
<div id="post-body-content">
|
@@ -255,8 +254,6 @@ class ES_Lists_Table extends WP_List_Table {
|
|
255 |
<a href="admin.php?page=es_lists&action=manage-lists" class="page-title-action es-imp-button"><?php _e( 'Manage Lists', 'email-subscribers' ); ?></a>
|
256 |
</h1>
|
257 |
|
258 |
-
<?php Email_Subscribers_Admin::es_feedback(); ?>
|
259 |
-
|
260 |
<div id="poststuff">
|
261 |
<div id="post-body" class="metabox-holder column-1">
|
262 |
<div id="post-body-content">
|
73 |
echo $this->edit_list( absint( $list ) );
|
74 |
} else { ?>
|
75 |
<h1 class="wp-heading-inline"><?php _e( 'Audience > Lists', 'email-subscribers' ); ?> <a href="admin.php?page=es_lists&action=new" class="page-title-action">Add New</a></h1>
|
|
|
76 |
<div id="poststuff">
|
77 |
<div id="post-body" class="metabox-holder column-1">
|
78 |
<div id="post-body-content">
|
254 |
<a href="admin.php?page=es_lists&action=manage-lists" class="page-title-action es-imp-button"><?php _e( 'Manage Lists', 'email-subscribers' ); ?></a>
|
255 |
</h1>
|
256 |
|
|
|
|
|
257 |
<div id="poststuff">
|
258 |
<div id="post-body" class="metabox-holder column-1">
|
259 |
<div id="post-body-content">
|
lite/includes/classes/class-es-templates-table.php
CHANGED
@@ -193,8 +193,8 @@ class ES_Templates_Table {
|
|
193 |
<div class="es-main" style="display:flex;">
|
194 |
<div class="es-sidebar">
|
195 |
<h2 style="margin-bottom:1em;">
|
196 |
-
Template Preview
|
197 |
-
</h2>
|
198 |
<p>
|
199 |
<a class="button-primary" href="' . admin_url() . 'post.php?post=' . $template_id . '&action=edit">Edit</a>
|
200 |
</p>
|
193 |
<div class="es-main" style="display:flex;">
|
194 |
<div class="es-sidebar">
|
195 |
<h2 style="margin-bottom:1em;">
|
196 |
+
Template Preview <a class="add-new-h2" href="' . admin_url() . 'admin.php?page=es-general-information">Help</a>
|
197 |
+
</h2>
|
198 |
<p>
|
199 |
<a class="button-primary" href="' . admin_url() . 'post.php?post=' . $template_id . '&action=edit">Edit</a>
|
200 |
</p>
|
lite/includes/feedback.php
CHANGED
@@ -25,7 +25,6 @@ if ( ! function_exists( 'ig_es_get_additional_info' ) ) {
|
|
25 |
|
26 |
return $additional_info;
|
27 |
}
|
28 |
-
|
29 |
}
|
30 |
|
31 |
add_filter( 'ig_es_additional_feedback_meta_info', 'ig_es_get_additional_info', 10, 2 );
|
@@ -41,13 +40,7 @@ function ig_es_render_general_feedback_widget() {
|
|
41 |
return;
|
42 |
}
|
43 |
|
44 |
-
|
45 |
-
$screen_id = $screen ? $screen->id : '';
|
46 |
-
|
47 |
-
// Get all Email Subscribers Screen
|
48 |
-
$show_on_screens = ES_Common::get_all_es_admin_screens();
|
49 |
-
|
50 |
-
if ( ! in_array( $screen_id, $show_on_screens ) ) {
|
51 |
return;
|
52 |
}
|
53 |
|
@@ -108,12 +101,7 @@ function ig_es_render_fb_widget() {
|
|
108 |
return;
|
109 |
}
|
110 |
|
111 |
-
|
112 |
-
$screen_id = $screen ? $screen->id : '';
|
113 |
-
|
114 |
-
$show_on_screens = ES_Common::get_all_es_admin_screens();
|
115 |
-
|
116 |
-
if ( ! in_array( $screen_id, $show_on_screens ) ) {
|
117 |
return;
|
118 |
}
|
119 |
|
@@ -140,7 +128,63 @@ function ig_es_render_fb_widget() {
|
|
140 |
ES_Common::render_feedback_widget( $params );
|
141 |
}
|
142 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
}
|
145 |
|
146 |
-
|
25 |
|
26 |
return $additional_info;
|
27 |
}
|
|
|
28 |
}
|
29 |
|
30 |
add_filter( 'ig_es_additional_feedback_meta_info', 'ig_es_get_additional_info', 10, 2 );
|
40 |
return;
|
41 |
}
|
42 |
|
43 |
+
if ( ! ES()->is_es_admin_screen() ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
return;
|
45 |
}
|
46 |
|
101 |
return;
|
102 |
}
|
103 |
|
104 |
+
if ( ! ES()->is_es_admin_screen() ) {
|
|
|
|
|
|
|
|
|
|
|
105 |
return;
|
106 |
}
|
107 |
|
128 |
ES_Common::render_feedback_widget( $params );
|
129 |
}
|
130 |
}
|
131 |
+
}
|
132 |
+
|
133 |
+
add_action( 'admin_footer', 'ig_es_render_fb_widget' );
|
134 |
+
|
135 |
+
if ( ! function_exists( 'ig_es_review_message_data' ) ) {
|
136 |
+
/**
|
137 |
+
* Filter 5 star review data
|
138 |
+
*
|
139 |
+
* @param $review_data
|
140 |
+
*
|
141 |
+
* @return mixed
|
142 |
+
*
|
143 |
+
* @since 4.3.8
|
144 |
+
*/
|
145 |
+
function ig_es_review_message_data( $review_data ) {
|
146 |
+
|
147 |
+
$review_url = 'https://wordpress.org/support/plugin/email-subscribers/reviews/';
|
148 |
+
$icon_url = ES_PLUGIN_URL . 'lite/admin/images/icon-64.png';
|
149 |
+
$message = __( "<span><p>We hope you're enjoying <b>Email Subscribers</b> plugin! Could you please do us a BIG favor and give us a 5-star rating on WordPress to help us spread the word and boost our motivation?</p>", 'temporary-login-without-password' );
|
150 |
+
|
151 |
+
$review_data['review_url'] = $review_url;
|
152 |
+
$review_data['icon_url'] = $icon_url;
|
153 |
+
$review_data['message'] = $message;
|
154 |
+
|
155 |
+
return $review_data;
|
156 |
+
}
|
157 |
+
}
|
158 |
|
159 |
+
add_filter( 'ig_es_review_message_data', 'ig_es_review_message_data', 10 );
|
160 |
+
|
161 |
+
if ( ! function_exists( 'ig_es_can_ask_user_for_review' ) ) {
|
162 |
+
/**
|
163 |
+
* Can we ask user for 5 star review?
|
164 |
+
*
|
165 |
+
* @return bool
|
166 |
+
*
|
167 |
+
* @since 4.3.8
|
168 |
+
*/
|
169 |
+
function ig_es_can_ask_user_for_review( $enable, $review_data ) {
|
170 |
+
|
171 |
+
if ( $enable ) {
|
172 |
+
|
173 |
+
if ( ! ES()->is_es_admin_screen() ) {
|
174 |
+
return false;
|
175 |
+
}
|
176 |
+
|
177 |
+
$total_contacts = ES()->contacts_db->count_active_contacts_by_list_id();
|
178 |
+
$total_email_sent = ES_DB_Mailing_Queue::get_notifications_count();
|
179 |
+
|
180 |
+
// Don't show if - less than 3 post notifications or Newsletters sent OR less than 10 subscribers
|
181 |
+
if ( $total_contacts < 10 && $total_email_sent < 3 ) {
|
182 |
+
return false;
|
183 |
+
}
|
184 |
+
}
|
185 |
+
|
186 |
+
return $enable;
|
187 |
+
}
|
188 |
}
|
189 |
|
190 |
+
add_filter( 'ig_es_can_ask_user_for_review', 'ig_es_can_ask_user_for_review', 10, 2 );
|
lite/includes/feedback/class-ig-feedback.php
CHANGED
@@ -4,22 +4,30 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
4 |
exit; // Exit if accessed directly.
|
5 |
}
|
6 |
|
7 |
-
if ( ! class_exists( '
|
8 |
/**
|
9 |
* IG Feedback
|
10 |
*
|
11 |
* The IG Feedback class adds functionality to get quick interactive feedback from users.
|
12 |
* There are different types of feedabck widget like Stars, Emoji, Thubms Up/ Down, Number etc.
|
13 |
*
|
14 |
-
* @class
|
15 |
* @since 1.0.0
|
16 |
* @copyright Copyright (c) 2019, Icegram
|
17 |
* @license https://opensource.org/licenses/gpl-license GNU Public License
|
18 |
* @author Icegram
|
19 |
* @package feedback
|
20 |
*/
|
21 |
-
class
|
22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
/**
|
24 |
* The API URL where we will send feedback data.
|
25 |
*
|
@@ -104,11 +112,227 @@ if ( ! class_exists( 'IG_Feedback_V_1_0_11' ) ) {
|
|
104 |
|
105 |
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_styles' ) );
|
106 |
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
}
|
108 |
|
109 |
/**
|
110 |
-
|
111 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
* @since 1.0.0
|
113 |
*/
|
114 |
public function render_deactivate_feedback() {
|
@@ -132,19 +356,19 @@ if ( ! class_exists( 'IG_Feedback_V_1_0_11' ) ) {
|
|
132 |
* @since 1.0.1
|
133 |
*/
|
134 |
public function enqueue_styles() {
|
135 |
-
wp_register_style( 'sweetalert', plugin_dir_url( __FILE__ ) . 'assets/css/sweetalert2.min.css' );
|
136 |
wp_enqueue_style( 'sweetalert' );
|
137 |
|
138 |
-
wp_register_style( 'animate', plugin_dir_url( __FILE__ ) . 'assets/css/animate.min.css' );
|
139 |
wp_enqueue_style( 'animate' );
|
140 |
|
141 |
-
wp_register_style( 'ig-feedback-star-rating', plugin_dir_url( __FILE__ ) . 'assets/css/star-rating.min.css' );
|
142 |
wp_enqueue_style( 'ig-feedback-star-rating' );
|
143 |
|
144 |
-
wp_register_style( 'ig-feedback-emoji', plugin_dir_url( __FILE__ ) . 'assets/css/emoji.min.css' );
|
145 |
wp_enqueue_style( 'ig-feedback-emoji' );
|
146 |
|
147 |
-
wp_register_style( 'ig-feedback', plugin_dir_url( __FILE__ ) . 'assets/css/feedback.min.css' );
|
148 |
wp_enqueue_style( 'ig-feedback' );
|
149 |
}
|
150 |
|
@@ -180,6 +404,13 @@ if ( ! class_exists( 'IG_Feedback_V_1_0_11' ) ) {
|
|
180 |
return $params;
|
181 |
}
|
182 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
public function render_widget( $params = array() ) {
|
184 |
|
185 |
$params = $this->prepare_widget_params( $params );
|
@@ -733,7 +964,7 @@ if ( ! class_exists( 'IG_Feedback_V_1_0_11' ) ) {
|
|
733 |
event.preventDefault();
|
734 |
loader(true);
|
735 |
if (!$form.find('input[type=radio]:checked').val()) {
|
736 |
-
$form.find('.ig-deactivate-survey-footer').prepend('<span class="error"><?php echo esc_js( __( 'Please select an option',
|
737 |
return;
|
738 |
}
|
739 |
|
@@ -928,34 +1159,34 @@ if ( ! class_exists( 'IG_Feedback_V_1_0_11' ) ) {
|
|
928 |
|
929 |
$options = array(
|
930 |
1 => array(
|
931 |
-
'title' => esc_html__( 'I no longer need the plugin',
|
932 |
'slug' => 'i-no-longer-need-the-plugin'
|
933 |
),
|
934 |
2 => array(
|
935 |
-
'title' => esc_html__( 'I\'m switching to a different plugin',
|
936 |
'slug' => 'i-am-switching-to-a-different-plugin',
|
937 |
-
'details' => esc_html__( 'Please share which plugin',
|
938 |
),
|
939 |
3 => array(
|
940 |
-
'title' => esc_html__( 'I couldn\'t get the plugin to work',
|
941 |
'slug' => 'i-could-not-get-the-plugin-to-work'
|
942 |
),
|
943 |
4 => array(
|
944 |
-
'title' => esc_html__( 'It\'s a temporary deactivation',
|
945 |
'slug' => 'it-is-a-temporary-deactivation'
|
946 |
),
|
947 |
5 => array(
|
948 |
-
'title' => esc_html__( 'Other',
|
949 |
'slug' => 'other',
|
950 |
-
'details' => esc_html__( 'Please share the reason',
|
951 |
),
|
952 |
);
|
953 |
?>
|
954 |
<div class="ig-deactivate-survey-modal" id="ig-deactivate-survey-<?php echo $this->plugin; ?>">
|
955 |
<div class="ig-deactivate-survey-wrap">
|
956 |
<form class="ig-deactivate-survey" method="post">
|
957 |
-
<span class="ig-deactivate-survey-title"><span class="dashicons dashicons-testimonial"></span><?php echo ' ' . esc_html__( 'Quick Feedback',
|
958 |
-
<span class="ig-deactivate-survey-desc"><?php echo sprintf( esc_html__( 'If you have a moment, please share why you are deactivating %s:',
|
959 |
<div class="ig-deactivate-survey-options">
|
960 |
<?php foreach ( $options as $id => $option ) : ?>
|
961 |
<div class="ig-deactivate-survey-option">
|
@@ -978,9 +1209,9 @@ if ( ! class_exists( 'IG_Feedback_V_1_0_11' ) ) {
|
|
978 |
<input type="text" class="ig-deactivate-survey-info-email-address" id="ig-deactivate-survey-info-email-address" name="ig-deactivate-survey-info-email-address" value="<?php echo $email; ?>"/>
|
979 |
</div>
|
980 |
<div class="ig-deactivate-survey-footer">
|
981 |
-
<button type="submit" class="ig-deactivate-survey-submit button button-primary button-large"><?php echo sprintf( esc_html__( 'Submit %s Deactivate',
|
982 |
<img class="ig-deactivate-survey-loader" id="ig-deactivate-survey-loader" src="<?php echo plugin_dir_url( __FILE__ ); ?>/assets/images/loading.gif"/>
|
983 |
-
<a href="#" class="ig-deactivate-survey-deactivate"><?php echo sprintf( esc_html__( 'Skip %s Deactivate',
|
984 |
</div>
|
985 |
</form>
|
986 |
</div>
|
@@ -1017,6 +1248,7 @@ if ( ! class_exists( 'IG_Feedback_V_1_0_11' ) ) {
|
|
1017 |
public function is_plugin_page() {
|
1018 |
|
1019 |
$screen = function_exists( 'get_current_screen' ) ? get_current_screen() : false;
|
|
|
1020 |
if ( empty( $screen ) ) {
|
1021 |
return false;
|
1022 |
}
|
4 |
exit; // Exit if accessed directly.
|
5 |
}
|
6 |
|
7 |
+
if ( ! class_exists( 'IG_Feedback_V_1_0_15' ) ) {
|
8 |
/**
|
9 |
* IG Feedback
|
10 |
*
|
11 |
* The IG Feedback class adds functionality to get quick interactive feedback from users.
|
12 |
* There are different types of feedabck widget like Stars, Emoji, Thubms Up/ Down, Number etc.
|
13 |
*
|
14 |
+
* @class IG_Feedback_V_1_0_15
|
15 |
* @since 1.0.0
|
16 |
* @copyright Copyright (c) 2019, Icegram
|
17 |
* @license https://opensource.org/licenses/gpl-license GNU Public License
|
18 |
* @author Icegram
|
19 |
* @package feedback
|
20 |
*/
|
21 |
+
class IG_Feedback_V_1_0_15 {
|
22 |
|
23 |
+
/**
|
24 |
+
* Version of Feedback Library
|
25 |
+
*
|
26 |
+
* @since 1.0.13
|
27 |
+
* @var string
|
28 |
+
*
|
29 |
+
*/
|
30 |
+
public $version = '1.0.15';
|
31 |
/**
|
32 |
* The API URL where we will send feedback data.
|
33 |
*
|
112 |
|
113 |
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_styles' ) );
|
114 |
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
|
115 |
+
|
116 |
+
/**
|
117 |
+
* Show 5 star review notice to user
|
118 |
+
*
|
119 |
+
* @since 1.0.12
|
120 |
+
*/
|
121 |
+
add_action( 'admin_notices', array( &$this, 'show_review_notice' ) );
|
122 |
}
|
123 |
|
124 |
/**
|
125 |
+
* Ask for user review
|
126 |
+
*
|
127 |
+
* @since 1.0.12
|
128 |
+
*/
|
129 |
+
public function show_review_notice() {
|
130 |
+
|
131 |
+
if ( ! defined( 'DOING_AJAX' ) && is_admin() ) {
|
132 |
+
|
133 |
+
$enable_review_notice = apply_filters( $this->plugin_abbr . '_enable_review_notice', true );
|
134 |
+
|
135 |
+
$can_ask_user_for_review = true;
|
136 |
+
|
137 |
+
if ( $enable_review_notice ) {
|
138 |
+
|
139 |
+
$current_user_id = get_current_user_id();
|
140 |
+
|
141 |
+
$review_done_option = $this->plugin_abbr . '_feedback_review_done';
|
142 |
+
$no_bug_option = $this->plugin_abbr . '_feedback_do_not_ask_again';
|
143 |
+
$already_did_option = $this->plugin_abbr . '_feedback_already_did';
|
144 |
+
$maybe_later_option = $this->plugin_abbr . '_feedback_maybe_later';
|
145 |
+
$review_done_time_option = $review_done_option . '_time';
|
146 |
+
$no_bug_time_option = $no_bug_option . '_time';
|
147 |
+
$already_did_time_option = $already_did_option . '_time';
|
148 |
+
$maybe_later_time_option = $maybe_later_option . '_time';
|
149 |
+
|
150 |
+
$no_bug_days_before = 1;
|
151 |
+
$no_bug_value = get_user_meta( $current_user_id, $no_bug_option, true );
|
152 |
+
$no_bug_time_value = get_user_meta( $current_user_id, $no_bug_time_option, true );
|
153 |
+
|
154 |
+
$review_done_value = get_user_meta( $current_user_id, $review_done_option, true );
|
155 |
+
$review_done_time_value = get_user_meta( $current_user_id, $review_done_time_option, true );
|
156 |
+
|
157 |
+
if ( ! empty( $no_bug_time_value ) && 0 !== $no_bug_time_value ) {
|
158 |
+
$no_bug_time_diff = time() - $no_bug_time_value;
|
159 |
+
$no_bug_days_before = floor( $no_bug_time_diff / 86400 ); // 86400 seconds == 1 day
|
160 |
+
}
|
161 |
+
|
162 |
+
$already_did_value = get_user_meta( $current_user_id, $already_did_option, true );
|
163 |
+
$already_did_time_value = get_user_meta( $current_user_id, $already_did_time_option, true );
|
164 |
+
|
165 |
+
$maybe_later_days_before = 1;
|
166 |
+
$maybe_later_value = get_user_meta( $current_user_id, $maybe_later_option, true );
|
167 |
+
$maybe_later_time_value = get_user_meta( $current_user_id, $maybe_later_time_option, true );
|
168 |
+
|
169 |
+
if ( $maybe_later_value && ! empty( $maybe_later_time_value ) && 0 !== $maybe_later_time_value ) {
|
170 |
+
$maybe_later_time_diff = time() - $maybe_later_time_value;
|
171 |
+
$maybe_later_days_before = floor( $maybe_later_time_diff / 86400 ); // 86400 seconds == 1 day
|
172 |
+
}
|
173 |
+
|
174 |
+
// Is user fall in love with our plugin in 15 days after when they said may be later?
|
175 |
+
// But, make sure we are asking user only after 15 days.
|
176 |
+
// We are good people. Respect the user decision.
|
177 |
+
if ( $review_done_value || $no_bug_value || $already_did_value || ( $maybe_later_value && $maybe_later_days_before < 15 ) || $already_did_value ) {
|
178 |
+
$can_ask_user_for_review = false;
|
179 |
+
}
|
180 |
+
|
181 |
+
$review_data = array(
|
182 |
+
'review_done_value' => $review_done_value,
|
183 |
+
'review_done_time_value' => $review_done_time_value,
|
184 |
+
'no_bug_value' => $no_bug_value,
|
185 |
+
'no_bug_time_value' => $no_bug_time_value,
|
186 |
+
'maybe_later_value' => $maybe_later_value,
|
187 |
+
'maybe_later_time_value' => $maybe_later_time_value,
|
188 |
+
'already_did_value' => $already_did_value,
|
189 |
+
'already_did_time_value' => $already_did_time_value,
|
190 |
+
);
|
191 |
+
|
192 |
+
$can_ask_user_for_review = apply_filters( $this->plugin_abbr . '_can_ask_user_for_review', $can_ask_user_for_review, $review_data );
|
193 |
+
|
194 |
+
if ( $can_ask_user_for_review ) {
|
195 |
+
|
196 |
+
$current_page_url = "//" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
|
197 |
+
|
198 |
+
$got_feedback = false;
|
199 |
+
/************** Update Review Status ********************/
|
200 |
+
$nonce = ! empty( $_GET['ig_feedback_nonce'] ) ? esc_attr( wp_unslash( $_GET['ig_feedback_nonce'] ) ) : '';
|
201 |
+
$nonce_verified = wp_verify_nonce( $nonce, 'review' );
|
202 |
+
|
203 |
+
$action = '';
|
204 |
+
if ( $nonce_verified ) {
|
205 |
+
$action = ! empty( $_GET['ig_feedback_action'] ) ? esc_attr( wp_unslash( $_GET['ig_feedback_action'] ) ) : '';
|
206 |
+
|
207 |
+
if ( ! empty( $action ) && $this->is_valid_action( $action ) ) {
|
208 |
+
update_user_meta( $current_user_id, $action, 1 );
|
209 |
+
update_user_meta( $current_user_id, $action . "_time", time() );
|
210 |
+
|
211 |
+
// Got the review request?
|
212 |
+
// Redirect them to review page
|
213 |
+
if ( $action === $review_done_option ) {
|
214 |
+
|
215 |
+
$url = ! empty( $_GET['review_url'] ) ? $_GET['review_url'] : '';
|
216 |
+
|
217 |
+
if ( ! empty( $url ) ) {
|
218 |
+
?>
|
219 |
+
|
220 |
+
<meta http-equiv="refresh" content="0; url=<?php echo $url; ?>"/>
|
221 |
+
|
222 |
+
<?php
|
223 |
+
}
|
224 |
+
}
|
225 |
+
}
|
226 |
+
|
227 |
+
$got_feedback = true;
|
228 |
+
}
|
229 |
+
/************** Update Review Status (End) ********************/
|
230 |
+
|
231 |
+
if ( ! $got_feedback ) {
|
232 |
+
|
233 |
+
$review_url = "https://wordpress.org/support/plugin/{$this->plugin}/reviews/";
|
234 |
+
$icon_url = plugin_dir_url( __FILE__ ) . 'assets/images/icon-64.png';
|
235 |
+
$message = __( sprintf( "<span><p>We hope you're enjoying <b>%s</b> plugin! Could you please do us a BIG favor and give us a 5-star rating on WordPress to help us spread the word and boost our motivation?</p>", $this->name ), $this->plugin );
|
236 |
+
|
237 |
+
$message_data = array(
|
238 |
+
'review_url' => $review_url,
|
239 |
+
'icon_url' => $icon_url,
|
240 |
+
'message' => $message
|
241 |
+
);
|
242 |
+
|
243 |
+
$message_data = apply_filters( $this->plugin_abbr . '_review_message_data', $message_data );
|
244 |
+
|
245 |
+
$message = ! empty( $message_data['message'] ) ? $message_data['message'] : '';
|
246 |
+
$review_url = ! empty( $message_data['review_url'] ) ? $message_data['review_url'] : '';
|
247 |
+
$icon_url = ! empty( $message_data['icon_url'] ) ? $message_data['icon_url'] : '';
|
248 |
+
|
249 |
+
$nonce = wp_create_nonce( 'review' );
|
250 |
+
|
251 |
+
$review_url = add_query_arg( 'review_url', $review_url, add_query_arg( 'ig_feedback_nonce', $nonce, add_query_arg( 'ig_feedback_action', $review_done_option, $current_page_url ) ) );
|
252 |
+
$maybe_later_url = add_query_arg( 'ig_feedback_nonce', $nonce, add_query_arg( 'ig_feedback_action', $maybe_later_option, $current_page_url ) );
|
253 |
+
$already_did_url = add_query_arg( 'ig_feedback_nonce', $nonce, add_query_arg( 'ig_feedback_action', $already_did_option, $current_page_url ) );
|
254 |
+
$no_bug_url = add_query_arg( 'ig_feedback_nonce', $nonce, add_query_arg( 'ig_feedback_action', $no_bug_option, $current_page_url ) );
|
255 |
+
|
256 |
+
?>
|
257 |
+
|
258 |
+
<style type="text/css">
|
259 |
+
|
260 |
+
.ig-feedback-notice-links li {
|
261 |
+
display: inline-block;
|
262 |
+
margin-right: 15px;
|
263 |
+
}
|
264 |
+
|
265 |
+
.ig-feedback-notice-links li a {
|
266 |
+
display: inline-block;
|
267 |
+
color: #10738b;
|
268 |
+
text-decoration: none;
|
269 |
+
padding-left: 26px;
|
270 |
+
position: relative;
|
271 |
+
}
|
272 |
+
|
273 |
+
.ig-feedback-notice {
|
274 |
+
display: flex;
|
275 |
+
align-items: center;
|
276 |
+
}
|
277 |
+
|
278 |
+
.ig-feedback-plugin-icon {
|
279 |
+
style =
|
280 |
+
float: left;
|
281 |
+
margin-right: 0.5em;
|
282 |
+
}
|
283 |
+
|
284 |
+
</style>
|
285 |
+
|
286 |
+
<?php
|
287 |
+
|
288 |
+
echo '<div class="notice notice-success ig-feedback-notice">';
|
289 |
+
echo '<span class="ig-feedback-plugin-icon"> <img src="' . $icon_url . '" alt="Logo"/></span>';
|
290 |
+
echo $message;
|
291 |
+
echo "<ul class='ig-feedback-notice-links'>";
|
292 |
+
echo sprintf( '<li><a href="%s" class="button-primary" target="_blank" data-rated="' . esc_attr__( "Thank You :) ",
|
293 |
+
$this->plugin ) . '"><span class="dashicons dashicons-external"></span> Ok, you deserve it</a></li> <li><a href="%s"><span class="dashicons dashicons-calendar-alt"></span> Maybe later</a></li><li><a href="%s"><span class="dashicons dashicons-smiley"></span> I already did!</a></li><li><a href="%s"><span class="dashicons dashicons-no"></span> Don\'t ask me again</a></li>',
|
294 |
+
esc_url( $review_url ), esc_url( $maybe_later_url ), esc_url( $already_did_url ), esc_url( $no_bug_url ) );
|
295 |
+
echo "</ul></span>";
|
296 |
+
echo '</div>';
|
297 |
+
}
|
298 |
+
}
|
299 |
+
}
|
300 |
+
}
|
301 |
+
}
|
302 |
+
|
303 |
+
/**
|
304 |
+
* Is valid action?
|
305 |
+
*
|
306 |
+
* @param string $action
|
307 |
+
*
|
308 |
+
* @return bool
|
309 |
+
*
|
310 |
+
* @since 1.0.14
|
311 |
+
*/
|
312 |
+
public function is_valid_action( $action = '' ) {
|
313 |
+
if ( empty( $action ) ) {
|
314 |
+
return false;
|
315 |
+
}
|
316 |
+
|
317 |
+
$available_actions = array(
|
318 |
+
'_feedback_review_done',
|
319 |
+
'_feedback_already_did',
|
320 |
+
'_feedback_maybe_later',
|
321 |
+
'_feedback_do_not_ask_again',
|
322 |
+
);
|
323 |
+
|
324 |
+
foreach ( $available_actions as $available_action ) {
|
325 |
+
if ( strpos( $action, $available_action ) !== false ) {
|
326 |
+
return true;
|
327 |
+
}
|
328 |
+
}
|
329 |
+
|
330 |
+
return false;
|
331 |
+
}
|
332 |
+
|
333 |
+
/**
|
334 |
+
* Render Deactivation Feedback
|
335 |
+
*
|
336 |
* @since 1.0.0
|
337 |
*/
|
338 |
public function render_deactivate_feedback() {
|
356 |
* @since 1.0.1
|
357 |
*/
|
358 |
public function enqueue_styles() {
|
359 |
+
wp_register_style( 'sweetalert', plugin_dir_url( __FILE__ ) . 'assets/css/sweetalert2.min.css', array(), $this->version );
|
360 |
wp_enqueue_style( 'sweetalert' );
|
361 |
|
362 |
+
wp_register_style( 'animate', plugin_dir_url( __FILE__ ) . 'assets/css/animate.min.css', array(), $this->version );
|
363 |
wp_enqueue_style( 'animate' );
|
364 |
|
365 |
+
wp_register_style( 'ig-feedback-star-rating', plugin_dir_url( __FILE__ ) . 'assets/css/star-rating.min.css', array(), $this->version );
|
366 |
wp_enqueue_style( 'ig-feedback-star-rating' );
|
367 |
|
368 |
+
wp_register_style( 'ig-feedback-emoji', plugin_dir_url( __FILE__ ) . 'assets/css/emoji.min.css', array(), $this->version );
|
369 |
wp_enqueue_style( 'ig-feedback-emoji' );
|
370 |
|
371 |
+
wp_register_style( 'ig-feedback', plugin_dir_url( __FILE__ ) . 'assets/css/feedback.min.css', array(), $this->version );
|
372 |
wp_enqueue_style( 'ig-feedback' );
|
373 |
}
|
374 |
|
404 |
return $params;
|
405 |
}
|
406 |
|
407 |
+
/**
|
408 |
+
* Render Widget
|
409 |
+
*
|
410 |
+
* @param array $params
|
411 |
+
*
|
412 |
+
* @since 1.0.0
|
413 |
+
*/
|
414 |
public function render_widget( $params = array() ) {
|
415 |
|
416 |
$params = $this->prepare_widget_params( $params );
|
964 |
event.preventDefault();
|
965 |
loader(true);
|
966 |
if (!$form.find('input[type=radio]:checked').val()) {
|
967 |
+
$form.find('.ig-deactivate-survey-footer').prepend('<span class="error"><?php echo esc_js( __( 'Please select an option', $this->plugin ) ); ?></span>');
|
968 |
return;
|
969 |
}
|
970 |
|
1159 |
|
1160 |
$options = array(
|
1161 |
1 => array(
|
1162 |
+
'title' => esc_html__( 'I no longer need the plugin', $this->plugin ),
|
1163 |
'slug' => 'i-no-longer-need-the-plugin'
|
1164 |
),
|
1165 |
2 => array(
|
1166 |
+
'title' => esc_html__( 'I\'m switching to a different plugin', $this->plugin ),
|
1167 |
'slug' => 'i-am-switching-to-a-different-plugin',
|
1168 |
+
'details' => esc_html__( 'Please share which plugin', $this->plugin ),
|
1169 |
),
|
1170 |
3 => array(
|
1171 |
+
'title' => esc_html__( 'I couldn\'t get the plugin to work', $this->plugin ),
|
1172 |
'slug' => 'i-could-not-get-the-plugin-to-work'
|
1173 |
),
|
1174 |
4 => array(
|
1175 |
+
'title' => esc_html__( 'It\'s a temporary deactivation', $this->plugin ),
|
1176 |
'slug' => 'it-is-a-temporary-deactivation'
|
1177 |
),
|
1178 |
5 => array(
|
1179 |
+
'title' => esc_html__( 'Other', $this->plugin ),
|
1180 |
'slug' => 'other',
|
1181 |
+
'details' => esc_html__( 'Please share the reason', $this->plugin ),
|
1182 |
),
|
1183 |
);
|
1184 |
?>
|
1185 |
<div class="ig-deactivate-survey-modal" id="ig-deactivate-survey-<?php echo $this->plugin; ?>">
|
1186 |
<div class="ig-deactivate-survey-wrap">
|
1187 |
<form class="ig-deactivate-survey" method="post">
|
1188 |
+
<span class="ig-deactivate-survey-title"><span class="dashicons dashicons-testimonial"></span><?php echo ' ' . esc_html__( 'Quick Feedback', $this->plugin ); ?></span>
|
1189 |
+
<span class="ig-deactivate-survey-desc"><?php echo sprintf( esc_html__( 'If you have a moment, please share why you are deactivating %s:', $this->plugin ), $this->name ); ?></span>
|
1190 |
<div class="ig-deactivate-survey-options">
|
1191 |
<?php foreach ( $options as $id => $option ) : ?>
|
1192 |
<div class="ig-deactivate-survey-option">
|
1209 |
<input type="text" class="ig-deactivate-survey-info-email-address" id="ig-deactivate-survey-info-email-address" name="ig-deactivate-survey-info-email-address" value="<?php echo $email; ?>"/>
|
1210 |
</div>
|
1211 |
<div class="ig-deactivate-survey-footer">
|
1212 |
+
<button type="submit" class="ig-deactivate-survey-submit button button-primary button-large"><?php echo sprintf( esc_html__( 'Submit %s Deactivate', $this->plugin ), '&' ); ?></button>
|
1213 |
<img class="ig-deactivate-survey-loader" id="ig-deactivate-survey-loader" src="<?php echo plugin_dir_url( __FILE__ ); ?>/assets/images/loading.gif"/>
|
1214 |
+
<a href="#" class="ig-deactivate-survey-deactivate"><?php echo sprintf( esc_html__( 'Skip %s Deactivate', $this->plugin ), '&' ); ?></a>
|
1215 |
</div>
|
1216 |
</form>
|
1217 |
</div>
|
1248 |
public function is_plugin_page() {
|
1249 |
|
1250 |
$screen = function_exists( 'get_current_screen' ) ? get_current_screen() : false;
|
1251 |
+
|
1252 |
if ( empty( $screen ) ) {
|
1253 |
return false;
|
1254 |
}
|
lite/includes/feedback/class-ig-tracker.php
CHANGED
@@ -4,15 +4,15 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
4 |
exit; // Exit if accessed directly.
|
5 |
}
|
6 |
|
7 |
-
if ( ! class_exists( '
|
8 |
|
9 |
/**
|
10 |
-
* Class
|
11 |
*
|
12 |
* Icegram tracker handler class is responsible for sending anonymous plugin
|
13 |
* data to Icegram servers for users that actively allowed data tracking.
|
14 |
*
|
15 |
-
* @class
|
16 |
* @since 1.0.0
|
17 |
*
|
18 |
* @copyright Copyright (c) 2019, Icegram
|
@@ -20,7 +20,7 @@ if ( ! class_exists( 'IG_Tracker_V_1_0_11' ) ) {
|
|
20 |
* @author Icegram
|
21 |
* @package feedback
|
22 |
*/
|
23 |
-
class
|
24 |
|
25 |
/**
|
26 |
* Get Active, Inactive or all plugins info
|
4 |
exit; // Exit if accessed directly.
|
5 |
}
|
6 |
|
7 |
+
if ( ! class_exists( 'IG_Tracker_V_1_0_15' ) ) {
|
8 |
|
9 |
/**
|
10 |
+
* Class IG_Tracker_V_1_0_15
|
11 |
*
|
12 |
* Icegram tracker handler class is responsible for sending anonymous plugin
|
13 |
* data to Icegram servers for users that actively allowed data tracking.
|
14 |
*
|
15 |
+
* @class IG_Tracker_V_1_0_15
|
16 |
* @since 1.0.0
|
17 |
*
|
18 |
* @copyright Copyright (c) 2019, Icegram
|
20 |
* @author Icegram
|
21 |
* @package feedback
|
22 |
*/
|
23 |
+
class IG_Tracker_V_1_0_15 {
|
24 |
|
25 |
/**
|
26 |
* Get Active, Inactive or all plugins info
|
lite/includes/notices/class-es-admin-notices.php
CHANGED
@@ -92,8 +92,8 @@ class ES_Admin_Notices {
|
|
92 |
* Hide a notice if the GET variable is set.
|
93 |
*/
|
94 |
public static function hide_notices() {
|
95 |
-
$hide_notice
|
96 |
-
$ig_es_hide_notice_nonce = ig_es_get_request_data('_ig_es_notice_nonce');
|
97 |
if ( isset( $_GET['ig-es-hide-notice'] ) && isset( $_GET['_ig_es_notice_nonce'] ) ) { // WPCS: input var ok, CSRF ok.
|
98 |
if ( ! wp_verify_nonce( sanitize_key( $ig_es_hide_notice_nonce ), 'ig_es_hide_notices_nonce' ) ) { // WPCS: input var ok, CSRF ok.
|
99 |
wp_die( esc_html__( 'Action failed. Please refresh the page and retry.', 'email-subscribers' ) );
|
@@ -114,22 +114,10 @@ class ES_Admin_Notices {
|
|
114 |
return;
|
115 |
}
|
116 |
|
117 |
-
|
118 |
-
$screen_id = $screen ? $screen->id : '';
|
119 |
-
$show_on_screens = array(
|
120 |
-
'toplevel_page_es_dashboard',
|
121 |
-
'email-subscribers_page_es_subscribers',
|
122 |
-
'email-subscribers_page_es_forms',
|
123 |
-
'email-subscribers_page_es_campaigns',
|
124 |
-
'email-subscribers_page_es_reports',
|
125 |
-
'email-subscribers_page_es_settings',
|
126 |
-
'email-subscribers_page_es_general_information',
|
127 |
-
'email-subscribers_page_es_pricing',
|
128 |
-
);
|
129 |
-
|
130 |
-
if ( ! in_array( $screen_id, $show_on_screens, true ) ) {
|
131 |
return;
|
132 |
}
|
|
|
133 |
foreach ( $notices as $notice ) {
|
134 |
if ( ! empty( self::$core_notices[ $notice ] ) ) {
|
135 |
add_action( 'admin_notices', array( __CLASS__, self::$core_notices[ $notice ] ) );
|
@@ -159,14 +147,14 @@ class ES_Admin_Notices {
|
|
159 |
if ( ! empty( $notices ) ) {
|
160 |
foreach ( $notices as $notice ) {
|
161 |
if ( empty( self::$core_notices[ $notice ] ) ) {
|
162 |
-
$notice_args
|
163 |
-
$timezone_format
|
164 |
-
$ig_current_date
|
165 |
-
if( $notice_args['include'] ){
|
166 |
include_once( $notice_args['include'] );
|
167 |
}
|
168 |
-
if( !empty($notice_args['html']) ){
|
169 |
-
echo
|
170 |
}
|
171 |
// if ( $notice_html ) {
|
172 |
// include dirname( __FILE__ ) . '/views/html-notice-custom.php';
|
@@ -198,7 +186,7 @@ class ES_Admin_Notices {
|
|
198 |
/**
|
199 |
* If we need to update, include a message with the update button.
|
200 |
*/
|
201 |
-
public static function es_dismiss_admin_notice(){
|
202 |
$es_dismiss_admin_notice = ig_es_get_request_data( 'es_dismiss_admin_notice' );
|
203 |
$option_name = ig_es_get_request_data( 'option_name' );
|
204 |
if ( $es_dismiss_admin_notice == '1' && ! empty( $option_name ) ) {
|
@@ -228,7 +216,6 @@ class ES_Admin_Notices {
|
|
228 |
}
|
229 |
|
230 |
|
231 |
-
|
232 |
}
|
233 |
|
234 |
ES_Admin_Notices::init();
|
92 |
* Hide a notice if the GET variable is set.
|
93 |
*/
|
94 |
public static function hide_notices() {
|
95 |
+
$hide_notice = ig_es_get_request_data( 'ig-es-hide-notice' );
|
96 |
+
$ig_es_hide_notice_nonce = ig_es_get_request_data( '_ig_es_notice_nonce' );
|
97 |
if ( isset( $_GET['ig-es-hide-notice'] ) && isset( $_GET['_ig_es_notice_nonce'] ) ) { // WPCS: input var ok, CSRF ok.
|
98 |
if ( ! wp_verify_nonce( sanitize_key( $ig_es_hide_notice_nonce ), 'ig_es_hide_notices_nonce' ) ) { // WPCS: input var ok, CSRF ok.
|
99 |
wp_die( esc_html__( 'Action failed. Please refresh the page and retry.', 'email-subscribers' ) );
|
114 |
return;
|
115 |
}
|
116 |
|
117 |
+
if ( ! ES()->is_es_admin_screen() ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
return;
|
119 |
}
|
120 |
+
|
121 |
foreach ( $notices as $notice ) {
|
122 |
if ( ! empty( self::$core_notices[ $notice ] ) ) {
|
123 |
add_action( 'admin_notices', array( __CLASS__, self::$core_notices[ $notice ] ) );
|
147 |
if ( ! empty( $notices ) ) {
|
148 |
foreach ( $notices as $notice ) {
|
149 |
if ( empty( self::$core_notices[ $notice ] ) ) {
|
150 |
+
$notice_args = get_option( 'ig_es_custom_admin_notice_' . $notice );
|
151 |
+
$timezone_format = _x( 'Y-m-d', 'timezone date format' );
|
152 |
+
$ig_current_date = strtotime( date_i18n( $timezone_format ) );
|
153 |
+
if ( $notice_args['include'] ) {
|
154 |
include_once( $notice_args['include'] );
|
155 |
}
|
156 |
+
if ( ! empty( $notice_args['html'] ) ) {
|
157 |
+
echo $notice_args['html'];
|
158 |
}
|
159 |
// if ( $notice_html ) {
|
160 |
// include dirname( __FILE__ ) . '/views/html-notice-custom.php';
|
186 |
/**
|
187 |
* If we need to update, include a message with the update button.
|
188 |
*/
|
189 |
+
public static function es_dismiss_admin_notice() {
|
190 |
$es_dismiss_admin_notice = ig_es_get_request_data( 'es_dismiss_admin_notice' );
|
191 |
$option_name = ig_es_get_request_data( 'option_name' );
|
192 |
if ( $es_dismiss_admin_notice == '1' && ! empty( $option_name ) ) {
|
216 |
}
|
217 |
|
218 |
|
|
|
219 |
}
|
220 |
|
221 |
ES_Admin_Notices::init();
|
lite/languages/email-subscribers.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Email Subscribers & Newsletters\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
-
"POT-Creation-Date: 2019-
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
@@ -15,42 +15,165 @@ msgstr ""
|
|
15 |
"X-Generator: Loco https://localise.biz/\n"
|
16 |
"X-Loco-Version: 2.3.0; wp-5.2.3"
|
17 |
|
18 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/email-subscribers.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
msgid "Email Subscribers Premium"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
msgid "Sequence"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
msgid "Local time is "
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:
|
31 |
-
|
32 |
-
msgid "Email has been sent. Please check your inbox"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
msgid "Track Clicks"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:
|
40 |
msgid "Check this if you want to track link clicks."
|
41 |
msgstr ""
|
42 |
|
|
|
|
|
|
|
|
|
43 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-post-digest.php:24
|
44 |
msgid "Post Digest"
|
45 |
msgstr ""
|
46 |
|
47 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-post-digest.php:37
|
48 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
49 |
msgid "Select template"
|
50 |
msgstr ""
|
51 |
|
52 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-post-digest.php:38
|
53 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
54 |
msgid "Content of the selected template will be sent out as post notification."
|
55 |
msgstr ""
|
56 |
|
@@ -155,7 +278,7 @@ msgid "Add Sequence name"
|
|
155 |
msgstr ""
|
156 |
|
157 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:71
|
158 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:
|
159 |
msgid "Save All"
|
160 |
msgstr ""
|
161 |
|
@@ -165,10 +288,10 @@ msgstr ""
|
|
165 |
|
166 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:125
|
167 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:186
|
168 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
169 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
170 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
171 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
172 |
msgid "Please select list."
|
173 |
msgstr ""
|
174 |
|
@@ -185,183 +308,197 @@ msgstr ""
|
|
185 |
msgid "Sequence has been updated successfully!"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:
|
189 |
msgid "Recipients : "
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:
|
193 |
-
|
|
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:
|
197 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/
|
198 |
-
|
199 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/admin/class-es-admin-settings.php:441
|
200 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/admin/class-es-admin-settings.php:483
|
201 |
-
msgid "Content"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:
|
205 |
-
msgid "
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:
|
209 |
-
|
|
|
|
|
|
|
|
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:
|
213 |
-
msgid "
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:
|
217 |
-
msgid "
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:
|
221 |
msgid " after"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:
|
225 |
msgid " after subscription"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
|
|
|
|
|
|
|
|
229 |
msgid ""
|
230 |
"<span class=\"es-send-success es-icon\"></span>We will take care of it. You "
|
231 |
"don't need to visit this URL manually."
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
235 |
msgid "SMTP Host"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
239 |
msgid "None"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
243 |
msgid "SSL"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
247 |
msgid "TLS"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
251 |
msgid "Encryption"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
255 |
msgid "SMTP Port"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
259 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-es-integrations.php:286
|
260 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
261 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
262 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
263 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
264 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
265 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
266 |
msgid "No"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
270 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-es-integrations.php:289
|
271 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
272 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
273 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
274 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
275 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
276 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
277 |
msgid "Yes"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
281 |
msgid "Authentication"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
285 |
msgid "SMTP Username"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
289 |
msgid "SMTP Password"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
293 |
msgid "Block Known Attackers"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
297 |
msgid ""
|
298 |
"Stop known spam bot attacker domains from signing up. Keeps this list up-to-"
|
299 |
"date with Icegram servers."
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
303 |
msgid "Block Temporary / Fake Emails"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
307 |
msgid ""
|
308 |
"Plenty of sites provide disposable / fake / temporary email addresses. "
|
309 |
"People use them when they don't want to give you their real email. Block "
|
310 |
"these to keep your list clean. Automatically updated."
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
314 |
msgid "Show a captcha in subscription forms to protect from bot signups."
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
|
|
|
|
|
|
|
|
318 |
msgid "User Roles"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
322 |
msgid "Roles"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
326 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:
|
327 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:
|
328 |
msgid "Audience"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
332 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:
|
333 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:
|
334 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/dashboard.php:89
|
335 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
336 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
337 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
338 |
msgid "Forms"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
342 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:
|
343 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:
|
344 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/dashboard.php:90
|
345 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
346 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
347 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
348 |
msgid "Campaigns"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
352 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:
|
353 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:
|
354 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
355 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
356 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
357 |
msgid "Reports"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
361 |
msgid "Sequences"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:
|
|
|
|
|
|
|
|
|
365 |
msgid "Inline CSS"
|
366 |
msgstr ""
|
367 |
|
@@ -413,13 +550,13 @@ msgid "Events Manger"
|
|
413 |
msgstr ""
|
414 |
|
415 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-es-integrations.php:241
|
416 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
417 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
418 |
msgid "Please select list"
|
419 |
msgstr ""
|
420 |
|
421 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-es-integrations.php:249
|
422 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
423 |
msgid "Settings have been saved successfully!"
|
424 |
msgstr ""
|
425 |
|
@@ -427,8 +564,8 @@ msgstr ""
|
|
427 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-es-integrations.php:365
|
428 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-es-integrations.php:502
|
429 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-es-integrations.php:589
|
430 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
431 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
432 |
msgid "Select List"
|
433 |
msgstr ""
|
434 |
|
@@ -438,8 +575,8 @@ msgid "Opt-In Consent Text"
|
|
438 |
msgstr ""
|
439 |
|
440 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-es-integrations.php:326
|
441 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
442 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
443 |
msgid "Save Settings"
|
444 |
msgstr ""
|
445 |
|
@@ -571,55 +708,47 @@ msgid ""
|
|
571 |
"Select the list in which you want to make Ninja Forms contacts subscribed to"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:
|
575 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
576 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
577 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
578 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
579 |
msgid "Email Subscribers"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:
|
583 |
msgid "Dashboard"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:
|
587 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/help.php:112
|
588 |
msgid "Post Notifications"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:
|
592 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
593 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
594 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
595 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
596 |
msgid "Broadcast"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:
|
600 |
msgid "Template Preview"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:
|
604 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/dashboard.php:91
|
605 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
606 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
607 |
msgid "Lists"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:
|
611 |
msgid "Settings"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/
|
615 |
-
msgid "Something went wrong"
|
616 |
-
msgstr ""
|
617 |
-
|
618 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-email-subscribers.php:297
|
619 |
-
msgid "Email Subscribers Pro"
|
620 |
-
msgstr ""
|
621 |
-
|
622 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-email-subscribers.php:318
|
623 |
#, php-format
|
624 |
msgid ""
|
625 |
"WordPress Cron is disable on your site. Email notifications from Email "
|
@@ -627,114 +756,96 @@ msgid ""
|
|
627 |
"target=\"_blank\" >Here's how you can enable it.</a>"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-email-subscribers.php:
|
631 |
#, php-format
|
632 |
msgid "Or schedule Cron in <a href=\"%s\" target=\"_blank\">cPanel</a>"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-email-subscribers.php:
|
636 |
#, php-format
|
637 |
msgid ""
|
638 |
"Or use <strong><a href=\"%s\" target=\"_blank\">Email Subscribers Pro</a>"
|
639 |
"</strong> for automatic Cron support"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-email-subscribers.php:
|
643 |
msgid "OK, I Got it!"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-
|
647 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
648 |
msgid "Subscribed"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:
|
652 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
653 |
msgid "Unconfirmed"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:
|
657 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
|
|
658 |
msgid "Unsubscribed"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:
|
662 |
-
|
663 |
-
msgstr ""
|
664 |
-
|
665 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:118
|
666 |
-
msgid "Send email immediately"
|
667 |
-
msgstr ""
|
668 |
-
|
669 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:119
|
670 |
-
msgid "Send email via cron job"
|
671 |
-
msgstr ""
|
672 |
-
|
673 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:265
|
674 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/admin/class-es-post-notifications.php:298
|
675 |
msgid "Select Status"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:
|
679 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/admin/class-es-forms-table.php:827
|
680 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/admin/class-es-lists-table.php:623
|
681 |
-
msgid "Enable"
|
682 |
-
msgstr ""
|
683 |
-
|
684 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:267
|
685 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/admin/class-es-forms-table.php:828
|
686 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/admin/class-es-lists-table.php:624
|
687 |
-
msgid "Disable"
|
688 |
-
msgstr ""
|
689 |
-
|
690 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:306
|
691 |
msgid "Select Template"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:
|
695 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
696 |
msgid "Active"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:
|
700 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/admin/class-es-campaigns-table.php:201
|
701 |
msgid "Inactive"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:
|
705 |
msgid "Select Categories"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:
|
709 |
msgid "All Categories (Also include all categories which will create later)"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:
|
713 |
msgid "No Custom Post Types Available"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:
|
717 |
msgid "Single Opt-In"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:
|
721 |
msgid "Double Opt-In"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:
|
725 |
msgid "Full Size"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:
|
729 |
msgid "Medium Size"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:
|
733 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
734 |
msgid "Thumbnail"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-install.php:
|
738 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/upgrade/es-update-functions.php:773
|
739 |
msgid ""
|
740 |
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
@@ -742,42 +853,34 @@ msgid ""
|
|
742 |
"spam/junk folder."
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
746 |
-
|
747 |
-
msgstr ""
|
748 |
-
|
749 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/es-backward.php:111
|
750 |
-
msgid "Confirm Your Subscription!"
|
751 |
-
msgstr ""
|
752 |
-
|
753 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:63
|
754 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:90
|
755 |
msgid "Send"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:
|
759 |
msgid ""
|
760 |
-
"Allow Email Subscribers to
|
761 |
-
"data is collected."
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:
|
765 |
msgid "Not a member yet?"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:
|
769 |
msgid "Join"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:
|
773 |
msgid "Email Subscribers Secret Club"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:
|
777 |
msgid "on Facebook"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:
|
781 |
msgid "Join Now"
|
782 |
msgstr ""
|
783 |
|
@@ -939,54 +1042,54 @@ msgid ""
|
|
939 |
msgstr ""
|
940 |
|
941 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/class-email-subscribers-public.php:110
|
942 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
943 |
msgid "Please enter email address"
|
944 |
msgstr ""
|
945 |
|
946 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/class-email-subscribers-public.php:111
|
947 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
948 |
msgid "You need to wait for sometime before subscribing again"
|
949 |
msgstr ""
|
950 |
|
951 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/class-email-subscribers-public.php:112
|
952 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
953 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/upgrade/es-update-functions.php:773
|
954 |
msgid "Successfully Subscribed."
|
955 |
msgstr ""
|
956 |
|
957 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/class-email-subscribers-public.php:114
|
958 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
959 |
msgid "Email Address already exists!"
|
960 |
msgstr ""
|
961 |
|
962 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/class-email-subscribers-public.php:115
|
963 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
964 |
msgid "Oops.. Unexpected error occurred."
|
965 |
msgstr ""
|
966 |
|
967 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/class-email-subscribers-public.php:116
|
968 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
969 |
msgid "Invalid email address"
|
970 |
msgstr ""
|
971 |
|
972 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/class-email-subscribers-public.php:117
|
973 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
974 |
msgid "Please try after some time"
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/class-email-subscribers-public.php:
|
978 |
msgid "You are already subscribed!"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/class-email-subscribers-public.php:
|
982 |
msgid "You are already unsubscribed!"
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/class-email-subscribers-public.php:
|
986 |
msgid "Sorry, we couldn't find you. Please contact admin."
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/class-email-subscribers-public.php:
|
990 |
msgid "Are you sure you want to unsubscribe?"
|
991 |
msgstr ""
|
992 |
|
@@ -1131,22 +1234,22 @@ msgid ""
|
|
1131 |
msgstr ""
|
1132 |
|
1133 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/dashboard.php:67
|
1134 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1135 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1136 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1137 |
#, php-format
|
1138 |
msgid "I have read and agreed to your %s."
|
1139 |
msgstr ""
|
1140 |
|
1141 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/dashboard.php:67
|
1142 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1143 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1144 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1145 |
msgid "Privacy Policy"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/dashboard.php:69
|
1149 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1150 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/partials/class-es-shortcode.php:131
|
1151 |
msgid "Subscribe"
|
1152 |
msgstr ""
|
@@ -1156,7 +1259,6 @@ msgid "Overview"
|
|
1156 |
msgstr ""
|
1157 |
|
1158 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/dashboard.php:88
|
1159 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/admin/class-es-lists-table.php:494
|
1160 |
msgid "Active Contacts"
|
1161 |
msgstr ""
|
1162 |
|
@@ -1213,7 +1315,7 @@ msgid "Version: %s"
|
|
1213 |
msgstr ""
|
1214 |
|
1215 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/help.php:10
|
1216 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1217 |
msgid "Help & Info"
|
1218 |
msgstr ""
|
1219 |
|
@@ -1486,36 +1588,36 @@ msgid ""
|
|
1486 |
"target=\"_blank\">add Rainmaker’s form in Email Subscribers</a>"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1490 |
#, php-format
|
1491 |
msgid ""
|
1492 |
"Created two Lists - <a href=\"%s\" target=\"_blank\">Main</a> and <a "
|
1493 |
"href=\"%s\" target=\"_blank\">Test</a>"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1497 |
msgid "Added yourself"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1501 |
msgid "to both lists"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1505 |
#, php-format
|
1506 |
msgid ""
|
1507 |
"Created a <a href=\"%s\" target=\"_blank\"> subscription / lead collection "
|
1508 |
"optin form</a>"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1512 |
#, php-format
|
1513 |
msgid ""
|
1514 |
"Added optin form to <a href=\"%s\" target=\"_blank\">default widget area</a> "
|
1515 |
"to show it on your site"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1519 |
msgid ""
|
1520 |
" We will create \"<strong>Newsletter Broadcast</strong>\" and \"<strong>New "
|
1521 |
"Post Notification</strong>\" campaigns. Next step is to test everything by "
|
@@ -1524,854 +1626,922 @@ msgid ""
|
|
1524 |
msgstr ""
|
1525 |
|
1526 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:17
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1527 |
msgid "Add an email to send a test to:"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1531 |
msgid "Create and Send test camapigns"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1535 |
#, php-format
|
1536 |
msgid "We sent two Campaigns to %s and email you have added."
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1540 |
msgid ""
|
1541 |
"They may take a few minutes to arrive. But do confirm you received them."
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1545 |
msgid "Yes, I received the test emails"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1549 |
msgid "No, I haven't received them yet"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1553 |
msgid ""
|
1554 |
"Everything is setup now. It's a perfect time to get better at email "
|
1555 |
"marketing now. Sign up below to get our highly acclaimed course for free."
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1559 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1560 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1561 |
msgid "Signup and send me the course for free"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1565 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1566 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1567 |
msgid "Skip and goto Dashboard"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1571 |
msgid "1. Check your spam or junk folder"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1575 |
#, php-format
|
1576 |
msgid ""
|
1577 |
"2. <a href=\"%s\" target=\"_blank\">Send another test email</a> with "
|
1578 |
"different email address "
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1582 |
msgid "Explore more"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1586 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1587 |
msgid ""
|
1588 |
"Also, it's a perfect time to get better at email marketing now. Sign up "
|
1589 |
"below to get our highly acclaimed course for free."
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:
|
1593 |
msgid "Explore more about problems"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1597 |
msgid "You do not have permission to update settings"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1601 |
msgid "General"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1605 |
msgid "Notifications"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1609 |
msgid "Email Sending"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1613 |
msgid "Security"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1617 |
-
|
1618 |
-
|
1619 |
-
|
1620 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1621 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1622 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1623 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1624 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/admin/class-es-forms-table.php:302
|
1625 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/admin/class-es-forms-table.php:713
|
1626 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/admin/class-es-lists-table.php:266
|
1627 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/admin/class-es-lists-table.php:493
|
1628 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/partials/class-es-shortcode.php:151
|
1629 |
msgid "Name"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1633 |
msgid "Choose a FROM name for all the emails to be sent from this plugin."
|
1634 |
msgstr ""
|
1635 |
|
1636 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1637 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1638 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1639 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1640 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1641 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1642 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/partials/class-es-shortcode.php:150
|
1643 |
msgid "Email"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1647 |
msgid ""
|
1648 |
"Choose a FROM email address for all the emails to be sent from this plugin"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1652 |
msgid "Email Address"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1656 |
msgid "Email Addresses"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1660 |
msgid ""
|
1661 |
"Enter the admin email addresses that should receive notifications (separated "
|
1662 |
"by comma)."
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1666 |
msgid "Opt-in Type"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1670 |
msgid "Image Size"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1674 |
msgid ""
|
1675 |
"<p>Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
1676 |
"Emails.</p>"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1680 |
msgid "Track Opens"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1684 |
msgid "Check this if you want to track email opening."
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1688 |
msgid "Message to display after form submission"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1692 |
msgid "Show Unsubscribe Message In Email Footer"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1696 |
msgid ""
|
1697 |
"Add text which you want your contact to see in footer to unsubscribe. Use "
|
1698 |
"{{UNSUBSCRIBE-LINK}} keyword to add unsubscribe link."
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1702 |
msgid "Subscription Success/ Error Messages"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1706 |
msgid "You have been subscribed successfully!"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1710 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1711 |
msgid "Success Message"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1715 |
msgid ""
|
1716 |
"Show this message if contact is successfully subscribed from Double Opt-In "
|
1717 |
"(Confirmation) Email"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1721 |
msgid ""
|
1722 |
"Oops.. Your request couldn't be completed. This email address seems to be "
|
1723 |
"already subscribed / blocked."
|
1724 |
msgstr ""
|
1725 |
|
1726 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1727 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1728 |
msgid "Error Message"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1732 |
msgid ""
|
1733 |
"Show this message if any error occured after clicking confirmation link from "
|
1734 |
"Double Opt-In (Confirmation) Email."
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1738 |
msgid "Unsubscribe Success/ Error Messages"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1742 |
msgid ""
|
1743 |
"Thank You, You have been successfully unsubscribed. You will no longer hear "
|
1744 |
"from us."
|
1745 |
msgstr ""
|
1746 |
|
1747 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1748 |
msgid ""
|
1749 |
"Once contact clicks on unsubscribe link, he/she will be redirected to a page "
|
1750 |
"where this message will be shown."
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1754 |
msgid ""
|
1755 |
"Show this message if any error occured after clicking on unsubscribe link."
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1759 |
msgid "Welcome Email"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1763 |
msgid "Enable?"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1767 |
msgid "Send welcome email to new contact after signup."
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1771 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1772 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1773 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1774 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1775 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1776 |
msgid "Subject"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1780 |
msgid ""
|
1781 |
"Available keywords. {{FIRSTNAME}}, {{LASTNAME}}, {{NAME}}, {{EMAIL}}, {{LIST}"
|
1782 |
"}, {{UNSUBSCRIBE-LINK}}"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1786 |
msgid "Confirmation Email"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1790 |
msgid ""
|
1791 |
"If Double Optin is set, contact will receive confirmation email with above "
|
1792 |
"content. You can use {{FIRSTNAME}}, {{LASTNAME}}, {{NAME}}, {{EMAIL}}, "
|
1793 |
"{{SUBSCRIBE-LINK}} keywords"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1797 |
msgid "Admin Notification On New Subscription"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1801 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1802 |
msgid "Notify?"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1806 |
msgid "Set this option to \"Yes\" to notify admin(s) for new contact signup."
|
1807 |
msgstr ""
|
1808 |
|
1809 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1810 |
msgid ""
|
1811 |
"Subject for the admin email whenever a new contact signs up and is confirmed"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1815 |
msgid "New email subscription"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1819 |
msgid ""
|
1820 |
"Content for the admin email whenever a new subscriber signs up and is "
|
1821 |
"confirmed. Available Keywords: {{NAME}}, {{EMAIL}}, {{LIST}}"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1825 |
msgid "Admin Notification On Every Campaign Sent"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1829 |
msgid "Set this option to \"Yes\" to notify admin(s) on every campaign sent."
|
1830 |
msgstr ""
|
1831 |
|
1832 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1833 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1834 |
msgid "Campaign Sent!"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1838 |
msgid ""
|
1839 |
"Send report to admin(s) whenever campaign is successfully sent to all "
|
1840 |
"contacts. Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1844 |
msgid "Cron URL"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1848 |
msgid "Disable WordPress Cron"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1852 |
msgid ""
|
1853 |
"Check this if you do not want Email Subscribers to use WP cron for sending "
|
1854 |
"emails"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1858 |
msgid "Maximum Emails To Send In An Hour"
|
1859 |
msgstr ""
|
1860 |
|
1861 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1862 |
msgid "Total emails your host can send in an hour."
|
1863 |
msgstr ""
|
1864 |
|
1865 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1866 |
msgid "Send Test Email"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1870 |
msgid "Enter email address to send test email."
|
1871 |
msgstr ""
|
1872 |
|
1873 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1874 |
msgid "Select Mailer"
|
1875 |
msgstr ""
|
1876 |
|
1877 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1878 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1879 |
msgid "Pepipost API key"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1883 |
msgid "Select a mailer to send mail"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1887 |
msgid "Blocked Domain(s)"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1891 |
msgid ""
|
1892 |
"Seeing spam signups from particular domains? Enter domains names (one per "
|
1893 |
"line) that you want to block here."
|
1894 |
msgstr ""
|
1895 |
|
1896 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1897 |
msgid "Signup for Pepipost"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1901 |
msgid "How to find"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1905 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1906 |
msgid "Campaign"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1910 |
msgid "Number of campaigns per page"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1914 |
msgid "Create Post Notification"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1918 |
msgid "Send Broadcast"
|
1919 |
msgstr ""
|
1920 |
|
1921 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1922 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1923 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1924 |
msgid "Manage Templates"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1928 |
msgid "No Campaigns Found."
|
1929 |
msgstr ""
|
1930 |
|
1931 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1932 |
msgid "All"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1936 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1937 |
#, php-format
|
1938 |
msgid "<a href=\"?page=%s&action=%s&list=%s&_wpnonce=%s\">Edit</a>"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1942 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1943 |
#, php-format
|
1944 |
msgid ""
|
1945 |
"<a href=\"?page=%s&action=%s&list=%s&_wpnonce=%s\" onclick=\"return "
|
1946 |
"checkDelete()\">Delete</a>"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1950 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1951 |
msgid "Type"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1955 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1956 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1957 |
msgid "List"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1961 |
msgid "Categories"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1965 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1966 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1967 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1968 |
msgid "Status"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1972 |
msgid "Search Campaigns"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1976 |
msgid "You are not allowed to delete campaign."
|
1977 |
msgstr ""
|
1978 |
|
1979 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1980 |
msgid "Campaign has been deleted successfully!"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1984 |
msgid "Campaign(s) have been deleted successfully!"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1988 |
msgid "Please check campaign(s) to delete."
|
1989 |
msgstr ""
|
1990 |
|
1991 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1992 |
msgid "Contact"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
1996 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
|
|
1997 |
msgid "Contacts"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2001 |
msgid "Number of contacts per page"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2005 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2006 |
msgid "Add New Contact"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2010 |
-
|
2011 |
-
msgid "Export Contacts"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2015 |
-
|
|
|
2016 |
msgstr ""
|
2017 |
|
2018 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2019 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/admin/class-es-handle-sync-wp-user.php:98
|
2020 |
msgid "Sync"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2024 |
msgid "New"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2028 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2029 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2030 |
msgid "Manage Lists"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2034 |
msgid "Audience > Contacts"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2038 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2039 |
msgid "Edit Contact"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2043 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2044 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2045 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2046 |
msgid "Add New"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2050 |
msgid "Contact already exist."
|
2051 |
msgstr ""
|
2052 |
|
2053 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2054 |
msgid "Contact has been added successfully!"
|
2055 |
msgstr ""
|
2056 |
|
2057 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2058 |
msgid "Contact has been updated successfully!"
|
2059 |
msgstr ""
|
2060 |
|
2061 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2062 |
msgid "Please Enter First Name"
|
2063 |
msgstr ""
|
2064 |
|
2065 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2066 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2067 |
msgid "Please Select List"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2071 |
msgid "Please Enter Valid Email Address"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2075 |
-
msgid "Contact updated successfully!"
|
2076 |
-
msgstr ""
|
2077 |
-
|
2078 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/admin/class-es-contacts-table.php:546
|
2079 |
msgid "No list found"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2083 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2084 |
msgid "First Name"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2088 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2089 |
msgid "Last Name"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2093 |
msgid "Send Welcome Email?"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2097 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2098 |
msgid "List(s)"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2102 |
msgid "Save Changes"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
|
|
|
|
|
|
|
|
2106 |
#, php-format
|
2107 |
msgid "<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\">Edit</a>"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2111 |
#, php-format
|
2112 |
msgid ""
|
2113 |
"<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\" onclick=\"return "
|
2114 |
"checkDelete()\">Delete</a>"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2118 |
#, php-format
|
2119 |
msgid ""
|
2120 |
"<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\">Resend "
|
2121 |
"Confirmation<a>"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2125 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2126 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2127 |
msgid "Created"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2131 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2132 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2133 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2134 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2135 |
msgid "Delete"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2139 |
msgid "Move To List"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2143 |
msgid "Add To List"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2147 |
msgid "Change Status"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2151 |
msgid "Search Contacts"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2155 |
msgid "All Statuses"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2159 |
msgid "All Lists"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2163 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2164 |
msgid "Contact(s) have been deleted successfully!"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2168 |
msgid "Confirmation email has been sent successfully!"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2172 |
msgid "Please select subscribers to update."
|
2173 |
msgstr ""
|
2174 |
|
2175 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2176 |
msgid "Please select status."
|
2177 |
msgstr ""
|
2178 |
|
2179 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2180 |
msgid "Status has been changed successfully!"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2184 |
msgid "Contact(s) have been moved to list successfully!"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2188 |
msgid "Contact(s) have been added to list successfully!"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2192 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2196 |
msgid "Emails sent successfully!"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2200 |
msgid "Emails not found."
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2204 |
msgid "No notifications found to send."
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2208 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2209 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2210 |
msgid "Invalid GUID."
|
2211 |
msgstr ""
|
2212 |
|
2213 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2214 |
msgid "Not allowed to process request."
|
2215 |
msgstr ""
|
2216 |
|
2217 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2218 |
msgid "GUID is empty."
|
2219 |
msgstr ""
|
2220 |
|
2221 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2222 |
msgid "Please try after sometime."
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2226 |
msgid ""
|
2227 |
"You have hit your hourly email sending limit. Please try after sometime."
|
2228 |
msgstr ""
|
2229 |
|
2230 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
|
|
|
|
|
|
|
|
2231 |
msgid "No data available"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2235 |
msgid "No."
|
2236 |
msgstr ""
|
2237 |
|
2238 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2239 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2240 |
msgid "Total Contacts"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2244 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2245 |
msgid "Export"
|
2246 |
msgstr ""
|
2247 |
|
2248 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2249 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2250 |
msgid "All Contacts"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2254 |
msgid "Subscribed Contacts"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2258 |
msgid "Unsubscribed Contacts"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2262 |
msgid "Unconfirmed Contacts"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2266 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2267 |
msgid "Download"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2271 |
msgid "Audience > Export Contacts"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2275 |
msgid "Export the Subscribers"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2279 |
msgid "Opt-In Type"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2283 |
msgid "Created On"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2287 |
msgid "Email Subscribers Form"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2291 |
msgid "Number of forms per page"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2295 |
msgid "You do not have permission to edit this form."
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2299 |
msgid "Please add form name."
|
2300 |
msgstr ""
|
2301 |
|
2302 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2303 |
msgid "Please select list(s) in which contact will be subscribed."
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2307 |
msgid "Form has been added successfully!"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2311 |
msgid "Form has been updated successfully!"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2315 |
msgid "Sorry, form not found"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2319 |
msgid "New Form"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2323 |
msgid "Edit Form"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2327 |
msgid "Form Name"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2331 |
msgid "Description"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2335 |
msgid "Form Fields"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2339 |
msgid "Field"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2343 |
msgid "Show?"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2347 |
msgid "Required?"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2351 |
msgid "Label"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2355 |
msgid "Place Holder"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2359 |
msgid "Button"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2363 |
msgid "Contacts will be added into selected list(s)"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2367 |
msgid "Allow contact to choose list(s)"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2371 |
msgid "Allow contacts to choose list(s) in which they want to subscribe."
|
2372 |
msgstr ""
|
2373 |
|
2374 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2375 |
#, php-format
|
2376 |
msgid ""
|
2377 |
"Secure your form and avoid spam signups with Email Subscribers Starter Plan "
|
@@ -2379,527 +2549,492 @@ msgid ""
|
|
2379 |
"decoration:none\" href=\"%s\">Get started</a>"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2383 |
#, php-format
|
2384 |
msgid "<a href=\"?page=%s&action=%s&form=%s&_wpnonce=%s\">Edit</a>"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2388 |
#, php-format
|
2389 |
msgid ""
|
2390 |
"<a href=\"?page=%s&action=%s&form=%s&_wpnonce=%s\" onclick=\"return "
|
2391 |
"checkDelete()\">Delete</a>"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2395 |
msgid "Shortcode"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2399 |
msgid "Search Forms"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2403 |
msgid "You do not have permission to delete this form."
|
2404 |
msgstr ""
|
2405 |
|
2406 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2407 |
msgid "Form has been deleted successfully!"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2411 |
msgid "Form(s) have been deleted successfully!"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2415 |
msgid "Please select form(s) to delete."
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2419 |
msgid "No Forms avaliable."
|
2420 |
msgstr ""
|
2421 |
|
2422 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2423 |
msgid "Invalid name"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2427 |
msgid "Oops...unable to add subscriber"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2431 |
msgid "You do not have permission to add subscriber"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2435 |
msgid "Please select the list"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2439 |
msgid "Invalid Captcha"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2443 |
msgid "Sync WordPress Users?"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2447 |
msgid ""
|
2448 |
"Whenever someone signup, it will automatically be added into selected list"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2452 |
msgid "Select the list in which newly registered user will be subscribed to"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2456 |
msgid "Audience > Sync Contacts"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2460 |
msgid "WordPress"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2464 |
-
msgid "Import Subscribers"
|
2465 |
-
msgstr ""
|
2466 |
-
|
2467 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/admin/class-es-import-subscribers.php:28
|
2468 |
msgid "Sorry, you do not have permission to import contacts."
|
2469 |
msgstr ""
|
2470 |
|
2471 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2472 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2473 |
#, php-format
|
2474 |
msgid "Total %d contacts have been imported successfully!"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2478 |
#, php-format
|
2479 |
msgid "%d contacts are already exists."
|
2480 |
msgstr ""
|
2481 |
|
2482 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2483 |
#, php-format
|
2484 |
msgid "%d contacts are invalid."
|
2485 |
msgstr ""
|
2486 |
|
2487 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2488 |
msgid "Error: Please Select List"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2492 |
msgid "Error: Please select status"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2496 |
msgid "Error: Please Upload only CSV File"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2500 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2501 |
msgid "Error: Please Upload File"
|
2502 |
msgstr ""
|
2503 |
|
2504 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2505 |
msgid "Select CSV file"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2509 |
msgid "Check CSV structure"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2513 |
msgid "from here"
|
2514 |
msgstr ""
|
2515 |
|
2516 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2517 |
msgid "Select status"
|
2518 |
msgstr ""
|
2519 |
|
2520 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2521 |
msgid "Select list"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2525 |
msgid "Import"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2529 |
msgid "Audience > Import Contacts"
|
2530 |
msgstr ""
|
2531 |
|
2532 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2533 |
msgid "<span class=\"es-fire-sale\"> 🔥 </span> Go Pro"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2537 |
msgid "Number of lists per page"
|
2538 |
msgstr ""
|
2539 |
|
2540 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2541 |
msgid "Audience > Lists"
|
2542 |
msgstr ""
|
2543 |
|
2544 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2545 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2546 |
msgid "You do not have permission to edit list"
|
2547 |
msgstr ""
|
2548 |
|
2549 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2550 |
msgid "Please add list name"
|
2551 |
msgstr ""
|
2552 |
|
2553 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2554 |
msgid "List already exists. Please choose different name"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2558 |
msgid "List has been added successfully!"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2562 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2563 |
msgid "List has been updated successfully!"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2567 |
msgid "Edit List"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2571 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
|
|
|
|
2572 |
#, php-format
|
2573 |
msgid "<a href=\"%s\" target=\"_blank\">%d</a>"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2577 |
msgid "Search Lists"
|
2578 |
msgstr ""
|
2579 |
|
2580 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2581 |
msgid "You do not have permission to delete list"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2585 |
msgid "List has been deleted successfully!"
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2589 |
msgid "List(s) have been deleted successfully"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2593 |
msgid "No lists avaliable."
|
2594 |
msgstr ""
|
2595 |
|
2596 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
|
|
|
|
|
|
|
|
|
|
2597 |
msgid "Please add message body or select template"
|
2598 |
msgstr ""
|
2599 |
|
2600 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2601 |
msgid "Please add the subject"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2605 |
msgid "Please add message content"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2609 |
msgid "Campaigns > Broadcast"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2613 |
msgid "From Email"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2617 |
msgid "Design template"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2621 |
msgid "New Broadcast"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2625 |
msgid "Pre Header"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
|
|
|
|
|
|
|
|
2629 |
msgid "Body"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2633 |
msgid "Recipients"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2637 |
msgid "Preview this email in browser"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2641 |
msgid "Widget Title"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2645 |
msgid "Short description about subscription form"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2649 |
msgid "Display Name Field"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2653 |
msgid "YES"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2657 |
msgid "NO"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2661 |
msgid "Subscriber Group"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2665 |
msgid "Please select categories."
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2669 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2670 |
msgid "Please select template."
|
2671 |
msgstr ""
|
2672 |
|
2673 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2674 |
msgid "Please select Categories."
|
2675 |
msgstr ""
|
2676 |
|
2677 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2678 |
msgid "Campaigns > New Post Notification"
|
2679 |
msgstr ""
|
2680 |
|
2681 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2682 |
msgid "Campaigns > Edit Post Notification"
|
2683 |
msgstr ""
|
2684 |
|
2685 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2686 |
msgid ""
|
2687 |
"Contacts from the selected list will be notified about new post notification."
|
2688 |
msgstr ""
|
2689 |
|
2690 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2691 |
msgid "Select Post Category"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2695 |
msgid ""
|
2696 |
"Notification will be sent out when any post from selected categories will be "
|
2697 |
"published."
|
2698 |
msgstr ""
|
2699 |
|
2700 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2701 |
msgid "Select custom post type(s)"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2705 |
msgid ""
|
2706 |
"(Optional) Select custom post type for which you want to send notification."
|
2707 |
msgstr ""
|
2708 |
|
2709 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2710 |
msgid "Report"
|
2711 |
msgstr ""
|
2712 |
|
2713 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2714 |
#, php-format
|
2715 |
msgid ""
|
2716 |
"<a href='%s' target='_blank' class='page-title-action es-imp-button'>Send "
|
2717 |
"Queued Emails Now</a>"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2721 |
msgid ""
|
2722 |
"<span class='page-title-action button-disabled'>Send Queued Emails Now</span>"
|
2723 |
msgstr ""
|
2724 |
|
2725 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2726 |
msgid "<br /><span class='es-helper'>No emails found in queue</span>"
|
2727 |
msgstr ""
|
2728 |
|
2729 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2730 |
msgid "Sr No"
|
2731 |
msgstr ""
|
2732 |
|
2733 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2734 |
msgid "Sent Date"
|
2735 |
msgstr ""
|
2736 |
|
2737 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2738 |
msgid "Viewed Status"
|
2739 |
msgstr ""
|
2740 |
|
2741 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2742 |
msgid "Viewed Date"
|
2743 |
msgstr ""
|
2744 |
|
2745 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2746 |
msgid "Viewed"
|
2747 |
msgstr ""
|
2748 |
|
2749 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2750 |
msgid "Not yet viewed"
|
2751 |
msgstr ""
|
2752 |
|
2753 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2754 |
msgid "No Reports avaliable."
|
2755 |
msgstr ""
|
2756 |
|
2757 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2758 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2759 |
msgid "Post Notification"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2763 |
msgid "Completed"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2767 |
msgid "View"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2771 |
msgid "Preview"
|
2772 |
msgstr ""
|
2773 |
|
2774 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2775 |
msgid "Start Date"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2779 |
msgid "End Date"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2783 |
msgid "You do not have permission to view notification"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2787 |
msgid "You do not have permission to delete notification"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2791 |
msgid "Report has been deleted successfully!"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2795 |
msgid "You do not have permission to preview notification"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2799 |
msgid "Reports have been deleted successfully!"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2803 |
msgid "Preview Email"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2807 |
msgid ""
|
2808 |
"This is how the email you sent may look. <br>Note: Different email services "
|
2809 |
"(like gmail, yahoo etc) display email content differently. So there could be "
|
2810 |
"a slight variation on how your customer will view the email content."
|
2811 |
msgstr ""
|
2812 |
|
2813 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2814 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2815 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2816 |
msgid "Available Keywords"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2820 |
msgid "for Broadcast:"
|
2821 |
msgstr ""
|
2822 |
|
2823 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2824 |
msgid "for Post Digest:"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2828 |
msgid "Any keywords related Post Notification"
|
2829 |
msgstr ""
|
2830 |
|
2831 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2832 |
msgid "Preview Template"
|
2833 |
msgstr ""
|
2834 |
|
2835 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2836 |
msgid "Template Type"
|
2837 |
msgstr ""
|
2838 |
|
2839 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2840 |
msgid "Duplicate"
|
2841 |
msgstr ""
|
2842 |
|
2843 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2844 |
-
|
2845 |
-
msgid "Test email to %s"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/
|
2849 |
msgid "Email Subscribers Widget"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback/class-ig-feedback.php:732
|
2853 |
-
msgid "Please select an option"
|
2854 |
-
msgstr ""
|
2855 |
-
|
2856 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback/class-ig-feedback.php:927
|
2857 |
-
msgid "I no longer need the plugin"
|
2858 |
-
msgstr ""
|
2859 |
-
|
2860 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback/class-ig-feedback.php:931
|
2861 |
-
msgid "I'm switching to a different plugin"
|
2862 |
-
msgstr ""
|
2863 |
-
|
2864 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback/class-ig-feedback.php:933
|
2865 |
-
msgid "Please share which plugin"
|
2866 |
-
msgstr ""
|
2867 |
-
|
2868 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback/class-ig-feedback.php:936
|
2869 |
-
msgid "I couldn't get the plugin to work"
|
2870 |
-
msgstr ""
|
2871 |
-
|
2872 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback/class-ig-feedback.php:940
|
2873 |
-
msgid "It's a temporary deactivation"
|
2874 |
-
msgstr ""
|
2875 |
-
|
2876 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback/class-ig-feedback.php:944
|
2877 |
-
msgid "Other"
|
2878 |
-
msgstr ""
|
2879 |
-
|
2880 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback/class-ig-feedback.php:946
|
2881 |
-
msgid "Please share the reason"
|
2882 |
-
msgstr ""
|
2883 |
-
|
2884 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback/class-ig-feedback.php:953
|
2885 |
-
msgid "Quick Feedback"
|
2886 |
-
msgstr ""
|
2887 |
-
|
2888 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback/class-ig-feedback.php:954
|
2889 |
-
#, php-format
|
2890 |
-
msgid "If you have a moment, please share why you are deactivating %s:"
|
2891 |
-
msgstr ""
|
2892 |
-
|
2893 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback/class-ig-feedback.php:977
|
2894 |
-
#, php-format
|
2895 |
-
msgid "Submit %s Deactivate"
|
2896 |
-
msgstr ""
|
2897 |
-
|
2898 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback/class-ig-feedback.php:979
|
2899 |
-
#, php-format
|
2900 |
-
msgid "Skip %s Deactivate"
|
2901 |
-
msgstr ""
|
2902 |
-
|
2903 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/notices/class-es-admin-notices.php:99
|
2904 |
msgid "Action failed. Please refresh the page and retry."
|
2905 |
msgstr ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Email Subscribers & Newsletters\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2019-12-23 09:08+0000\n"
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
15 |
"X-Generator: Loco https://localise.biz/\n"
|
16 |
"X-Loco-Version: 2.3.0; wp-5.2.3"
|
17 |
|
18 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/email-subscribers.php:58
|
19 |
+
#, php-format
|
20 |
+
msgid ""
|
21 |
+
"You are using older version of <strong>Email Subscribers Premium</strong> "
|
22 |
+
"plugin. It won't work because it needs plugin to be updated. Please update "
|
23 |
+
"%s plugin."
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/email-subscribers.php:59
|
27 |
msgid "Email Subscribers Premium"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/inc/ig-upgrade-v-0.4.5.php:929
|
31 |
+
msgid "Check for updates"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/inc/ig-upgrade-v-0.4.5.php:930
|
35 |
+
msgid "Docs"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/inc/ig-upgrade-v-0.4.5.php:931
|
39 |
+
msgid "Go Pro"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/inc/ig-upgrade-v-0.4.5.php:934
|
43 |
+
msgid "Disconnect from Icegram"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/inc/ig-upgrade-v-0.4.5.php:936
|
47 |
+
msgid "Connect to Icegram"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:94
|
51 |
msgid "Sequence"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:181
|
55 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:468
|
56 |
+
msgid "Google Analytics link tracking"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:182
|
60 |
+
msgid "Get Spam Score"
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:192
|
64 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:469
|
65 |
+
msgid "Campaign Name"
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:192
|
69 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:469
|
70 |
+
msgid ""
|
71 |
+
"This will be appended to every URL in this template with parameters: "
|
72 |
+
"utm_source=es&utm_medium=email&utm_campaign=campaign_name "
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:200
|
76 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:475
|
77 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:358
|
78 |
+
msgid "Check"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:204
|
82 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:479
|
83 |
+
msgid "Awesome score. Your email is almost perfect."
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:205
|
87 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:480
|
88 |
+
msgid "Ouch! your email needs improvement. "
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:207
|
92 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:482
|
93 |
+
msgid "Here are some things to fix: "
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:401
|
97 |
+
msgid "Clean My List"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:402
|
101 |
+
msgid "List cleanup is in progress..."
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:403
|
105 |
+
msgid "List cleanup completed successfully."
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:411
|
109 |
+
msgid "Email Status"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:447
|
113 |
+
msgid "Email Sent Successfully "
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:448
|
117 |
+
msgid "Something went wrong. Please try again later"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:452
|
121 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:382
|
122 |
+
msgid "When to send"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:454
|
126 |
+
msgid "Date"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:460
|
130 |
+
msgid "Time"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:463
|
134 |
msgid "Local time is "
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:474
|
138 |
+
msgid "Get spam score"
|
|
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:492
|
142 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:401
|
143 |
+
msgid "Something went wrong"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:514
|
147 |
+
msgid "SUCCESS"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:525
|
151 |
+
msgid "Select page"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:560
|
155 |
msgid "Track Clicks"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:562
|
159 |
msgid "Check this if you want to track link clicks."
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:614
|
163 |
+
msgid "Clicked"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-post-digest.php:24
|
167 |
msgid "Post Digest"
|
168 |
msgstr ""
|
169 |
|
170 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-post-digest.php:37
|
171 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:284
|
172 |
msgid "Select template"
|
173 |
msgstr ""
|
174 |
|
175 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-post-digest.php:38
|
176 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:285
|
177 |
msgid "Content of the selected template will be sent out as post notification."
|
178 |
msgstr ""
|
179 |
|
278 |
msgstr ""
|
279 |
|
280 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:71
|
281 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:280
|
282 |
msgid "Save All"
|
283 |
msgstr ""
|
284 |
|
288 |
|
289 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:125
|
290 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:186
|
291 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1075
|
292 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1096
|
293 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:50
|
294 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:45
|
295 |
msgid "Please select list."
|
296 |
msgstr ""
|
297 |
|
308 |
msgid "Sequence has been updated successfully!"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:264
|
312 |
msgid "Recipients : "
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:304
|
316 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:377
|
317 |
+
msgid " day"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:304
|
321 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:377
|
322 |
+
msgid " days"
|
|
|
|
|
|
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:336
|
326 |
+
msgid "Email Subject"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:340
|
330 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:355
|
331 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:384
|
332 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:419
|
333 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:461
|
334 |
+
msgid "Content"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:357
|
338 |
+
msgid "Get your spam score now"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:362
|
342 |
+
msgid "Add campaign name for utm tracking"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:384
|
346 |
msgid " after"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-sequences.php:386
|
350 |
msgid " after subscription"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:178
|
354 |
+
msgid "Are You a Human? "
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:292
|
358 |
msgid ""
|
359 |
"<span class=\"es-send-success es-icon\"></span>We will take care of it. You "
|
360 |
"don't need to visit this URL manually."
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:303
|
364 |
msgid "SMTP Host"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:310
|
368 |
msgid "None"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:310
|
372 |
msgid "SSL"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:310
|
376 |
msgid "TLS"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:315
|
380 |
msgid "Encryption"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:327
|
384 |
msgid "SMTP Port"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:334
|
388 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-es-integrations.php:286
|
389 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:329
|
390 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:402
|
391 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:438
|
392 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:365
|
393 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-sync-wp-user.php:65
|
394 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-widget.php:49
|
395 |
msgid "No"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:334
|
399 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-es-integrations.php:289
|
400 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:329
|
401 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:401
|
402 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:437
|
403 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:361
|
404 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-sync-wp-user.php:68
|
405 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-widget.php:49
|
406 |
msgid "Yes"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:339
|
410 |
msgid "Authentication"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:351
|
414 |
msgid "SMTP Username"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:363
|
418 |
msgid "SMTP Password"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:373
|
422 |
msgid "Block Known Attackers"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:374
|
426 |
msgid ""
|
427 |
"Stop known spam bot attacker domains from signing up. Keeps this list up-to-"
|
428 |
"date with Icegram servers."
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:381
|
432 |
msgid "Block Temporary / Fake Emails"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:382
|
436 |
msgid ""
|
437 |
"Plenty of sites provide disposable / fake / temporary email addresses. "
|
438 |
"People use them when they don't want to give you their real email. Block "
|
439 |
"these to keep your list clean. Automatically updated."
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:391
|
443 |
msgid "Show a captcha in subscription forms to protect from bot signups."
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:482
|
447 |
+
msgid "Custom CSS"
|
448 |
+
msgstr ""
|
449 |
+
|
450 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:555
|
451 |
msgid "User Roles"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:575
|
455 |
msgid "Roles"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:576
|
459 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:165
|
460 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:165
|
461 |
msgid "Audience"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:577
|
465 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:159
|
466 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:159
|
467 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/dashboard.php:89
|
468 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:38
|
469 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:39
|
470 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:81
|
471 |
msgid "Forms"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:578
|
475 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:149
|
476 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:149
|
477 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/dashboard.php:90
|
478 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:93
|
479 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:103
|
480 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:258
|
481 |
msgid "Campaigns"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:579
|
485 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:174
|
486 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:174
|
487 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:20
|
488 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:36
|
489 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:75
|
490 |
msgid "Reports"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:580
|
494 |
msgid "Sequences"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:788
|
498 |
+
msgid "Unsubscribe from all the lists"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-email-subscribers.php:879
|
502 |
msgid "Inline CSS"
|
503 |
msgstr ""
|
504 |
|
550 |
msgstr ""
|
551 |
|
552 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-es-integrations.php:241
|
553 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-sync-wp-user.php:29
|
554 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:626
|
555 |
msgid "Please select list"
|
556 |
msgstr ""
|
557 |
|
558 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-es-integrations.php:249
|
559 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-sync-wp-user.php:37
|
560 |
msgid "Settings have been saved successfully!"
|
561 |
msgstr ""
|
562 |
|
564 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-es-integrations.php:365
|
565 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-es-integrations.php:502
|
566 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-es-integrations.php:589
|
567 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-sync-wp-user.php:75
|
568 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:272
|
569 |
msgid "Select List"
|
570 |
msgstr ""
|
571 |
|
575 |
msgstr ""
|
576 |
|
577 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-es-integrations.php:326
|
578 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:750
|
579 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-sync-wp-user.php:89
|
580 |
msgid "Save Settings"
|
581 |
msgstr ""
|
582 |
|
708 |
"Select the list in which you want to make Ninja Forms contacts subscribed to"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:141
|
712 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-form-widget.php:11
|
713 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-old-widget.php:11
|
714 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-old-widget.php:12
|
715 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-widget.php:11
|
716 |
msgid "Email Subscribers"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:144
|
720 |
msgid "Dashboard"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:152
|
724 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/help.php:112
|
725 |
msgid "Post Notifications"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:153
|
729 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:260
|
730 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:195
|
731 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-templates-table.php:34
|
732 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-templates-table.php:242
|
733 |
msgid "Broadcast"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:154
|
737 |
msgid "Template Preview"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:169
|
741 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/dashboard.php:91
|
742 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:336
|
743 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:37
|
744 |
msgid "Lists"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:178
|
748 |
msgid "Settings"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-email-subscribers.php:291
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
752 |
#, php-format
|
753 |
msgid ""
|
754 |
"WordPress Cron is disable on your site. Email notifications from Email "
|
756 |
"target=\"_blank\" >Here's how you can enable it.</a>"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-email-subscribers.php:292
|
760 |
#, php-format
|
761 |
msgid "Or schedule Cron in <a href=\"%s\" target=\"_blank\">cPanel</a>"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-email-subscribers.php:293
|
765 |
#, php-format
|
766 |
msgid ""
|
767 |
"Or use <strong><a href=\"%s\" target=\"_blank\">Email Subscribers Pro</a>"
|
768 |
"</strong> for automatic Cron support"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-email-subscribers.php:294
|
772 |
msgid "OK, I Got it!"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-email-subscribers.php:871
|
776 |
+
#, php-format
|
777 |
+
msgid "%1$s in %2$s on line %3$s"
|
778 |
+
msgstr ""
|
779 |
+
|
780 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:89
|
781 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:270
|
782 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:497
|
783 |
msgid "Subscribed"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:90
|
787 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:499
|
788 |
msgid "Unconfirmed"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:91
|
792 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:274
|
793 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:498
|
794 |
msgid "Unsubscribed"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:114
|
798 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:299
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
799 |
msgid "Select Status"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:234
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
803 |
msgid "Select Template"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:272
|
807 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:223
|
808 |
msgid "Active"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:273
|
|
|
812 |
msgid "Inactive"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:341
|
816 |
msgid "Select Categories"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:353
|
820 |
msgid "All Categories (Also include all categories which will create later)"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:385
|
824 |
msgid "No Custom Post Types Available"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:401
|
828 |
msgid "Single Opt-In"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:402
|
832 |
msgid "Double Opt-In"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:417
|
836 |
msgid "Full Size"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:418
|
840 |
msgid "Medium Size"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-common.php:419
|
844 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-templates-table.php:223
|
845 |
msgid "Thumbnail"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/class-es-install.php:768
|
849 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/upgrade/es-update-functions.php:773
|
850 |
msgid ""
|
851 |
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
853 |
"spam/junk folder."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:57
|
857 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:84
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
858 |
msgid "Send"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:58
|
862 |
msgid ""
|
863 |
+
"Allow Email Subscribers to send plugin settings. It will help us to "
|
864 |
+
"understand your issue better. We guarantee no sensitive data is collected."
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:119
|
868 |
msgid "Not a member yet?"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:121
|
872 |
msgid "Join"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:121
|
876 |
msgid "Email Subscribers Secret Club"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:121
|
880 |
msgid "on Facebook"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:125
|
884 |
msgid "Join Now"
|
885 |
msgstr ""
|
886 |
|
1042 |
msgstr ""
|
1043 |
|
1044 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/class-email-subscribers-public.php:110
|
1045 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-subscription.php:420
|
1046 |
msgid "Please enter email address"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/class-email-subscribers-public.php:111
|
1050 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-subscription.php:421
|
1051 |
msgid "You need to wait for sometime before subscribing again"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/class-email-subscribers-public.php:112
|
1055 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-subscription.php:422
|
1056 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/upgrade/es-update-functions.php:773
|
1057 |
msgid "Successfully Subscribed."
|
1058 |
msgstr ""
|
1059 |
|
1060 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/class-email-subscribers-public.php:114
|
1061 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-subscription.php:423
|
1062 |
msgid "Email Address already exists!"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/class-email-subscribers-public.php:115
|
1066 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-subscription.php:424
|
1067 |
msgid "Oops.. Unexpected error occurred."
|
1068 |
msgstr ""
|
1069 |
|
1070 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/class-email-subscribers-public.php:116
|
1071 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-subscription.php:425
|
1072 |
msgid "Invalid email address"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/class-email-subscribers-public.php:117
|
1076 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-subscription.php:427
|
1077 |
msgid "Please try after some time"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/class-email-subscribers-public.php:236
|
1081 |
msgid "You are already subscribed!"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/class-email-subscribers-public.php:238
|
1085 |
msgid "You are already unsubscribed!"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/class-email-subscribers-public.php:243
|
1089 |
msgid "Sorry, we couldn't find you. Please contact admin."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/class-email-subscribers-public.php:401
|
1093 |
msgid "Are you sure you want to unsubscribe?"
|
1094 |
msgstr ""
|
1095 |
|
1234 |
msgstr ""
|
1235 |
|
1236 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/dashboard.php:67
|
1237 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:52
|
1238 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:77
|
1239 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:100
|
1240 |
#, php-format
|
1241 |
msgid "I have read and agreed to your %s."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/dashboard.php:67
|
1245 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:52
|
1246 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:77
|
1247 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:100
|
1248 |
msgid "Privacy Policy"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/dashboard.php:69
|
1252 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:243
|
1253 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/partials/class-es-shortcode.php:131
|
1254 |
msgid "Subscribe"
|
1255 |
msgstr ""
|
1259 |
msgstr ""
|
1260 |
|
1261 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/dashboard.php:88
|
|
|
1262 |
msgid "Active Contacts"
|
1263 |
msgstr ""
|
1264 |
|
1315 |
msgstr ""
|
1316 |
|
1317 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/help.php:10
|
1318 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-info.php:17
|
1319 |
msgid "Help & Info"
|
1320 |
msgstr ""
|
1321 |
|
1588 |
"target=\"_blank\">add Rainmaker’s form in Email Subscribers</a>"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:9
|
1592 |
#, php-format
|
1593 |
msgid ""
|
1594 |
"Created two Lists - <a href=\"%s\" target=\"_blank\">Main</a> and <a "
|
1595 |
"href=\"%s\" target=\"_blank\">Test</a>"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:10
|
1599 |
msgid "Added yourself"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:10
|
1603 |
msgid "to both lists"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:11
|
1607 |
#, php-format
|
1608 |
msgid ""
|
1609 |
"Created a <a href=\"%s\" target=\"_blank\"> subscription / lead collection "
|
1610 |
"optin form</a>"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:12
|
1614 |
#, php-format
|
1615 |
msgid ""
|
1616 |
"Added optin form to <a href=\"%s\" target=\"_blank\">default widget area</a> "
|
1617 |
"to show it on your site"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:16
|
1621 |
msgid ""
|
1622 |
" We will create \"<strong>Newsletter Broadcast</strong>\" and \"<strong>New "
|
1623 |
"Post Notification</strong>\" campaigns. Next step is to test everything by "
|
1626 |
msgstr ""
|
1627 |
|
1628 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:17
|
1629 |
+
msgid "But before test <strong>verify your sender details</strong>"
|
1630 |
+
msgstr ""
|
1631 |
+
|
1632 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:20
|
1633 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:161
|
1634 |
+
msgid "Sender"
|
1635 |
+
msgstr ""
|
1636 |
+
|
1637 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:23
|
1638 |
msgid "Add an email to send a test to:"
|
1639 |
msgstr ""
|
1640 |
|
1641 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:25
|
1642 |
msgid "Create and Send test camapigns"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:33
|
1646 |
#, php-format
|
1647 |
msgid "We sent two Campaigns to %s and email you have added."
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:34
|
1651 |
msgid ""
|
1652 |
"They may take a few minutes to arrive. But do confirm you received them."
|
1653 |
msgstr ""
|
1654 |
|
1655 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:38
|
1656 |
msgid "Yes, I received the test emails"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:39
|
1660 |
msgid "No, I haven't received them yet"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:45
|
1664 |
msgid ""
|
1665 |
"Everything is setup now. It's a perfect time to get better at email "
|
1666 |
"marketing now. Sign up below to get our highly acclaimed course for free."
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:54
|
1670 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:79
|
1671 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:102
|
1672 |
msgid "Signup and send me the course for free"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:55
|
1676 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:80
|
1677 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:103
|
1678 |
msgid "Skip and goto Dashboard"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:64
|
1682 |
msgid "1. Check your spam or junk folder"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:65
|
1686 |
#, php-format
|
1687 |
msgid ""
|
1688 |
"2. <a href=\"%s\" target=\"_blank\">Send another test email</a> with "
|
1689 |
"different email address "
|
1690 |
msgstr ""
|
1691 |
|
1692 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:67
|
1693 |
msgid "Explore more"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:70
|
1697 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:93
|
1698 |
msgid ""
|
1699 |
"Also, it's a perfect time to get better at email marketing now. Sign up "
|
1700 |
"below to get our highly acclaimed course for free."
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:90
|
1704 |
msgid "Explore more about problems"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:35
|
1708 |
msgid "You do not have permission to update settings"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:118
|
1712 |
msgid "General"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:119
|
1716 |
msgid "Notifications"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:120
|
1720 |
msgid "Email Sending"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:121
|
1724 |
msgid "Security"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:165
|
1728 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:168
|
1729 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:339
|
1730 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:802
|
1731 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:310
|
1732 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:693
|
1733 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:263
|
1734 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:496
|
|
|
|
|
|
|
|
|
1735 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/partials/class-es-shortcode.php:151
|
1736 |
msgid "Name"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:166
|
1740 |
msgid "Choose a FROM name for all the emails to be sent from this plugin."
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:174
|
1744 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:600
|
1745 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:803
|
1746 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:295
|
1747 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:303
|
1748 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:90
|
1749 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/partials/class-es-shortcode.php:150
|
1750 |
msgid "Email"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:175
|
1754 |
msgid ""
|
1755 |
"Choose a FROM email address for all the emails to be sent from this plugin"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:177
|
1759 |
msgid "Email Address"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:185
|
1763 |
msgid "Email Addresses"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:187
|
1767 |
msgid ""
|
1768 |
"Enter the admin email addresses that should receive notifications (separated "
|
1769 |
"by comma)."
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:193
|
1773 |
msgid "Opt-in Type"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:202
|
1777 |
msgid "Image Size"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:205
|
1781 |
msgid ""
|
1782 |
"<p>Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
1783 |
"Emails.</p>"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:211
|
1787 |
msgid "Track Opens"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:213
|
1791 |
msgid "Check this if you want to track email opening."
|
1792 |
msgstr ""
|
1793 |
|
1794 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:224
|
1795 |
msgid "Message to display after form submission"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:234
|
1799 |
msgid "Show Unsubscribe Message In Email Footer"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:235
|
1803 |
msgid ""
|
1804 |
"Add text which you want your contact to see in footer to unsubscribe. Use "
|
1805 |
"{{UNSUBSCRIBE-LINK}} keyword to add unsubscribe link."
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:242
|
1809 |
msgid "Subscription Success/ Error Messages"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:249
|
1813 |
msgid "You have been subscribed successfully!"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:251
|
1817 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:281
|
1818 |
msgid "Success Message"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:252
|
1822 |
msgid ""
|
1823 |
"Show this message if contact is successfully subscribed from Double Opt-In "
|
1824 |
"(Confirmation) Email"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:260
|
1828 |
msgid ""
|
1829 |
"Oops.. Your request couldn't be completed. This email address seems to be "
|
1830 |
"already subscribed / blocked."
|
1831 |
msgstr ""
|
1832 |
|
1833 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:262
|
1834 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:293
|
1835 |
msgid "Error Message"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:263
|
1839 |
msgid ""
|
1840 |
"Show this message if any error occured after clicking confirmation link from "
|
1841 |
"Double Opt-In (Confirmation) Email."
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:271
|
1845 |
msgid "Unsubscribe Success/ Error Messages"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:279
|
1849 |
msgid ""
|
1850 |
"Thank You, You have been successfully unsubscribed. You will no longer hear "
|
1851 |
"from us."
|
1852 |
msgstr ""
|
1853 |
|
1854 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:282
|
1855 |
msgid ""
|
1856 |
"Once contact clicks on unsubscribe link, he/she will be redirected to a page "
|
1857 |
"where this message will be shown."
|
1858 |
msgstr ""
|
1859 |
|
1860 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:294
|
1861 |
msgid ""
|
1862 |
"Show this message if any error occured after clicking on unsubscribe link."
|
1863 |
msgstr ""
|
1864 |
|
1865 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:324
|
1866 |
msgid "Welcome Email"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:334
|
1870 |
msgid "Enable?"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:335
|
1874 |
msgid "Send welcome email to new contact after signup."
|
1875 |
msgstr ""
|
1876 |
|
1877 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:345
|
1878 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:373
|
1879 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:411
|
1880 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:450
|
1881 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:121
|
1882 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:270
|
1883 |
msgid "Subject"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:356
|
1887 |
msgid ""
|
1888 |
"Available keywords. {{FIRSTNAME}}, {{LASTNAME}}, {{NAME}}, {{EMAIL}}, {{LIST}"
|
1889 |
"}, {{UNSUBSCRIBE-LINK}}"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:363
|
1893 |
msgid "Confirmation Email"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:385
|
1897 |
msgid ""
|
1898 |
"If Double Optin is set, contact will receive confirmation email with above "
|
1899 |
"content. You can use {{FIRSTNAME}}, {{LASTNAME}}, {{NAME}}, {{EMAIL}}, "
|
1900 |
"{{SUBSCRIBE-LINK}} keywords"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:393
|
1904 |
msgid "Admin Notification On New Subscription"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:398
|
1908 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:434
|
1909 |
msgid "Notify?"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:404
|
1913 |
msgid "Set this option to \"Yes\" to notify admin(s) for new contact signup."
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:413
|
1917 |
msgid ""
|
1918 |
"Subject for the admin email whenever a new contact signs up and is confirmed"
|
1919 |
msgstr ""
|
1920 |
|
1921 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:414
|
1922 |
msgid "New email subscription"
|
1923 |
msgstr ""
|
1924 |
|
1925 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:421
|
1926 |
msgid ""
|
1927 |
"Content for the admin email whenever a new subscriber signs up and is "
|
1928 |
"confirmed. Available Keywords: {{NAME}}, {{EMAIL}}, {{LIST}}"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:429
|
1932 |
msgid "Admin Notification On Every Campaign Sent"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:440
|
1936 |
msgid "Set this option to \"Yes\" to notify admin(s) on every campaign sent."
|
1937 |
msgstr ""
|
1938 |
|
1939 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:448
|
1940 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-mailer.php:344
|
1941 |
msgid "Campaign Sent!"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:462
|
1945 |
msgid ""
|
1946 |
"Send report to admin(s) whenever campaign is successfully sent to all "
|
1947 |
"contacts. Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:479
|
1951 |
msgid "Cron URL"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:489
|
1955 |
msgid "Disable WordPress Cron"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:490
|
1959 |
msgid ""
|
1960 |
"Check this if you do not want Email Subscribers to use WP cron for sending "
|
1961 |
"emails"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:495
|
1965 |
+
msgid "Send Emails At Most Every"
|
1966 |
+
msgstr ""
|
1967 |
+
|
1968 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:498
|
1969 |
+
msgid "<p>Optional if a real cron service is used</p>"
|
1970 |
+
msgstr ""
|
1971 |
+
|
1972 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:508
|
1973 |
msgid "Maximum Emails To Send In An Hour"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:509
|
1977 |
msgid "Total emails your host can send in an hour."
|
1978 |
msgstr ""
|
1979 |
|
1980 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:518
|
1981 |
+
msgid "Maximum Emails To Send At once"
|
1982 |
+
msgstr ""
|
1983 |
+
|
1984 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:519
|
1985 |
+
msgid "Maximum emails you want to send on every cron request."
|
1986 |
+
msgstr ""
|
1987 |
+
|
1988 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:529
|
1989 |
msgid "Send Test Email"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:530
|
1993 |
msgid "Enter email address to send test email."
|
1994 |
msgstr ""
|
1995 |
|
1996 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:539
|
1997 |
msgid "Select Mailer"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:551
|
2001 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:791
|
2002 |
msgid "Pepipost API key"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:568
|
2006 |
msgid "Select a mailer to send mail"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:578
|
2010 |
msgid "Blocked Domain(s)"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:580
|
2014 |
msgid ""
|
2015 |
"Seeing spam signups from particular domains? Enter domains names (one per "
|
2016 |
"line) that you want to block here."
|
2017 |
msgstr ""
|
2018 |
|
2019 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:790
|
2020 |
msgid "Signup for Pepipost"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:791
|
2024 |
msgid "How to find"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:36
|
2028 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:37
|
2029 |
msgid "Campaign"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:56
|
2033 |
msgid "Number of campaigns per page"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:94
|
2037 |
msgid "Create Post Notification"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:95
|
2041 |
msgid "Send Broadcast"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:97
|
2045 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:104
|
2046 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:262
|
2047 |
msgid "Manage Templates"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:207
|
2051 |
msgid "No Campaigns Found."
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:222
|
2055 |
+
msgid "In Active"
|
2056 |
+
msgstr ""
|
2057 |
+
|
2058 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:224
|
2059 |
+
msgid "Scheduled"
|
2060 |
+
msgstr ""
|
2061 |
+
|
2062 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:225
|
2063 |
+
msgid "Queued"
|
2064 |
+
msgstr ""
|
2065 |
+
|
2066 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:226
|
2067 |
+
msgid "Paused"
|
2068 |
+
msgstr ""
|
2069 |
+
|
2070 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:227
|
2071 |
+
msgid "Finished"
|
2072 |
+
msgstr ""
|
2073 |
+
|
2074 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:268
|
2075 |
msgid "All"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:319
|
2079 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:478
|
2080 |
#, php-format
|
2081 |
msgid "<a href=\"?page=%s&action=%s&list=%s&_wpnonce=%s\">Edit</a>"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:320
|
2085 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:479
|
2086 |
#, php-format
|
2087 |
msgid ""
|
2088 |
"<a href=\"?page=%s&action=%s&list=%s&_wpnonce=%s\" onclick=\"return "
|
2089 |
"checkDelete()\">Delete</a>"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:340
|
2093 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:271
|
2094 |
msgid "Type"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:341
|
2098 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:296
|
2099 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:36
|
2100 |
msgid "List"
|
2101 |
msgstr ""
|
2102 |
|
2103 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:342
|
2104 |
msgid "Categories"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:343
|
2108 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:297
|
2109 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:91
|
2110 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:272
|
2111 |
msgid "Status"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:392
|
2115 |
msgid "Search Campaigns"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:431
|
2119 |
msgid "You are not allowed to delete campaign."
|
2120 |
msgstr ""
|
2121 |
|
2122 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:437
|
2123 |
msgid "Campaign has been deleted successfully!"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:455
|
2127 |
msgid "Campaign(s) have been deleted successfully!"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:459
|
2131 |
msgid "Please check campaign(s) to delete."
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:54
|
2135 |
msgid "Contact"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:55
|
2139 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:263
|
2140 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:76
|
2141 |
msgid "Contacts"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:83
|
2145 |
msgid "Number of contacts per page"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:105
|
2149 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:300
|
2150 |
msgid "Add New Contact"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:114
|
2154 |
+
msgid "Import Contacts"
|
|
|
2155 |
msgstr ""
|
2156 |
|
2157 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:123
|
2158 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:67
|
2159 |
+
msgid "Export Contacts"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:132
|
|
|
2163 |
msgid "Sync"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:134
|
2167 |
msgid "New"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:141
|
2171 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:301
|
2172 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:254
|
2173 |
msgid "Manage Lists"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:193
|
2177 |
msgid "Audience > Contacts"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:267
|
2181 |
+
msgid "Last 60 Days"
|
2182 |
+
msgstr ""
|
2183 |
+
|
2184 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:278
|
2185 |
+
msgid "Opened"
|
2186 |
+
msgstr ""
|
2187 |
+
|
2188 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:305
|
2189 |
msgid "Edit Contact"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:306
|
2193 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:81
|
2194 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:248
|
2195 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:260
|
2196 |
msgid "Add New"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:364
|
2200 |
msgid "Contact already exist."
|
2201 |
msgstr ""
|
2202 |
|
2203 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:401
|
2204 |
msgid "Contact has been added successfully!"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:403
|
2208 |
msgid "Contact has been updated successfully!"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:410
|
2212 |
msgid "Please Enter First Name"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:415
|
2216 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:33
|
2217 |
msgid "Please Select List"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:420
|
2221 |
msgid "Please Enter Valid Email Address"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:582
|
|
|
|
|
|
|
|
|
2225 |
msgid "No list found"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:590
|
2229 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:293
|
2230 |
msgid "First Name"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:595
|
2234 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:294
|
2235 |
msgid "Last Name"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:606
|
2239 |
msgid "Send Welcome Email?"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:613
|
2243 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:804
|
2244 |
msgid "List(s)"
|
2245 |
msgstr ""
|
2246 |
|
2247 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:624
|
2248 |
msgid "Save Changes"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:639
|
2252 |
+
msgid "No contacts avaliable."
|
2253 |
+
msgstr ""
|
2254 |
+
|
2255 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:783
|
2256 |
#, php-format
|
2257 |
msgid "<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\">Edit</a>"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:784
|
2261 |
#, php-format
|
2262 |
msgid ""
|
2263 |
"<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\" onclick=\"return "
|
2264 |
"checkDelete()\">Delete</a>"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:787
|
2268 |
#, php-format
|
2269 |
msgid ""
|
2270 |
"<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\">Resend "
|
2271 |
"Confirmation<a>"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:805
|
2275 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:695
|
2276 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:501
|
2277 |
msgid "Created"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:838
|
2281 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:723
|
2282 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:530
|
2283 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:254
|
2284 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:337
|
2285 |
msgid "Delete"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:839
|
2289 |
msgid "Move To List"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:840
|
2293 |
msgid "Add To List"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:841
|
2297 |
msgid "Change Status"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:862
|
2301 |
msgid "Search Contacts"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:867
|
2305 |
msgid "All Statuses"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:873
|
2309 |
msgid "All Lists"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:978
|
2313 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1043
|
2314 |
msgid "Contact(s) have been deleted successfully!"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1004
|
2318 |
msgid "Confirmation email has been sent successfully!"
|
2319 |
msgstr ""
|
2320 |
|
2321 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1031
|
2322 |
msgid "Please select subscribers to update."
|
2323 |
msgstr ""
|
2324 |
|
2325 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1054
|
2326 |
msgid "Please select status."
|
2327 |
msgstr ""
|
2328 |
|
2329 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1064
|
2330 |
msgid "Status has been changed successfully!"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1084
|
2334 |
msgid "Contact(s) have been moved to list successfully!"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1105
|
2338 |
msgid "Contact(s) have been added to list successfully!"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-cron.php:272
|
2342 |
+
msgid "10 minutes"
|
2343 |
+
msgstr ""
|
2344 |
+
|
2345 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-cron.php:273
|
2346 |
+
msgid "15 minutes"
|
2347 |
+
msgstr ""
|
2348 |
+
|
2349 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-cron.php:274
|
2350 |
+
msgid "20 minutes"
|
2351 |
+
msgstr ""
|
2352 |
+
|
2353 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-cron.php:275
|
2354 |
+
msgid "25 minutes"
|
2355 |
+
msgstr ""
|
2356 |
+
|
2357 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-cron.php:276
|
2358 |
+
msgid "30 minutes"
|
2359 |
msgstr ""
|
2360 |
|
2361 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-cron.php:545
|
2362 |
msgid "Emails sent successfully!"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-cron.php:546
|
2366 |
msgid "Emails not found."
|
2367 |
msgstr ""
|
2368 |
|
2369 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-cron.php:547
|
2370 |
msgid "No notifications found to send."
|
2371 |
msgstr ""
|
2372 |
|
2373 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-cron.php:548
|
2374 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-cron.php:549
|
2375 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-cron.php:550
|
2376 |
msgid "Invalid GUID."
|
2377 |
msgstr ""
|
2378 |
|
2379 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-cron.php:551
|
2380 |
msgid "Not allowed to process request."
|
2381 |
msgstr ""
|
2382 |
|
2383 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-cron.php:552
|
2384 |
msgid "GUID is empty."
|
2385 |
msgstr ""
|
2386 |
|
2387 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-cron.php:553
|
2388 |
msgid "Please try after sometime."
|
2389 |
msgstr ""
|
2390 |
|
2391 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-cron.php:554
|
2392 |
msgid ""
|
2393 |
"You have hit your hourly email sending limit. Please try after sometime."
|
2394 |
msgstr ""
|
2395 |
|
2396 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-cron.php:555
|
2397 |
+
msgid "Cron lock enabled. Please try after sometime."
|
2398 |
+
msgstr ""
|
2399 |
+
|
2400 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:44
|
2401 |
msgid "No data available"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:75
|
2405 |
msgid "No."
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:77
|
2409 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:275
|
2410 |
msgid "Total Contacts"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:78
|
2414 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:502
|
2415 |
msgid "Export"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:92
|
2419 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:500
|
2420 |
msgid "All Contacts"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:93
|
2424 |
msgid "Subscribed Contacts"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:94
|
2428 |
msgid "Unsubscribed Contacts"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:96
|
2432 |
msgid "Unconfirmed Contacts"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:115
|
2436 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:443
|
2437 |
msgid "Download"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:133
|
2441 |
msgid "Audience > Export Contacts"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:224
|
2445 |
msgid "Export the Subscribers"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:298
|
2449 |
msgid "Opt-In Type"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:299
|
2453 |
msgid "Created On"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-form-widget.php:11
|
2457 |
msgid "Email Subscribers Form"
|
2458 |
msgstr ""
|
2459 |
|
2460 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:56
|
2461 |
msgid "Number of forms per page"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:111
|
2465 |
msgid "You do not have permission to edit this form."
|
2466 |
msgstr ""
|
2467 |
|
2468 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:114
|
2469 |
msgid "Please add form name."
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:119
|
2473 |
msgid "Please select list(s) in which contact will be subscribed."
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:165
|
2477 |
msgid "Form has been added successfully!"
|
2478 |
msgstr ""
|
2479 |
|
2480 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:210
|
2481 |
msgid "Form has been updated successfully!"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:219
|
2485 |
msgid "Sorry, form not found"
|
2486 |
msgstr ""
|
2487 |
|
2488 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:258
|
2489 |
msgid "New Form"
|
2490 |
msgstr ""
|
2491 |
|
2492 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:260
|
2493 |
msgid "Edit Form"
|
2494 |
msgstr ""
|
2495 |
|
2496 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:275
|
2497 |
msgid "Form Name"
|
2498 |
msgstr ""
|
2499 |
|
2500 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:283
|
2501 |
msgid "Description"
|
2502 |
msgstr ""
|
2503 |
|
2504 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:291
|
2505 |
msgid "Form Fields"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:296
|
2509 |
msgid "Field"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:297
|
2513 |
msgid "Show?"
|
2514 |
msgstr ""
|
2515 |
|
2516 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:298
|
2517 |
msgid "Required?"
|
2518 |
msgstr ""
|
2519 |
|
2520 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:299
|
2521 |
msgid "Label"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:300
|
2525 |
msgid "Place Holder"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:325
|
2529 |
msgid "Button"
|
2530 |
msgstr ""
|
2531 |
|
2532 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:337
|
2533 |
msgid "Contacts will be added into selected list(s)"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:355
|
2537 |
msgid "Allow contact to choose list(s)"
|
2538 |
msgstr ""
|
2539 |
|
2540 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:356
|
2541 |
msgid "Allow contacts to choose list(s) in which they want to subscribe."
|
2542 |
msgstr ""
|
2543 |
|
2544 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:388
|
2545 |
#, php-format
|
2546 |
msgid ""
|
2547 |
"Secure your form and avoid spam signups with Email Subscribers Starter Plan "
|
2549 |
"decoration:none\" href=\"%s\">Get started</a>"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:677
|
2553 |
#, php-format
|
2554 |
msgid "<a href=\"?page=%s&action=%s&form=%s&_wpnonce=%s\">Edit</a>"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:678
|
2558 |
#, php-format
|
2559 |
msgid ""
|
2560 |
"<a href=\"?page=%s&action=%s&form=%s&_wpnonce=%s\" onclick=\"return "
|
2561 |
"checkDelete()\">Delete</a>"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:694
|
2565 |
msgid "Shortcode"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:742
|
2569 |
msgid "Search Forms"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:780
|
2573 |
msgid "You do not have permission to delete this form."
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:787
|
2577 |
msgid "Form has been deleted successfully!"
|
2578 |
msgstr ""
|
2579 |
|
2580 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:802
|
2581 |
msgid "Form(s) have been deleted successfully!"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:805
|
2585 |
msgid "Please select form(s) to delete."
|
2586 |
msgstr ""
|
2587 |
|
2588 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:816
|
2589 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:637
|
2590 |
+
msgid "Enable"
|
2591 |
+
msgstr ""
|
2592 |
+
|
2593 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:817
|
2594 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:638
|
2595 |
+
msgid "Disable"
|
2596 |
+
msgstr ""
|
2597 |
+
|
2598 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:829
|
2599 |
msgid "No Forms avaliable."
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-subscription.php:426
|
2603 |
msgid "Invalid name"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-subscription.php:428
|
2607 |
msgid "Oops...unable to add subscriber"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-subscription.php:429
|
2611 |
msgid "You do not have permission to add subscriber"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-subscription.php:430
|
2615 |
msgid "Please select the list"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-subscription.php:431
|
2619 |
msgid "Invalid Captcha"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-sync-wp-user.php:57
|
2623 |
msgid "Sync WordPress Users?"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-sync-wp-user.php:59
|
2627 |
msgid ""
|
2628 |
"Whenever someone signup, it will automatically be added into selected list"
|
2629 |
msgstr ""
|
2630 |
|
2631 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-sync-wp-user.php:77
|
2632 |
msgid "Select the list in which newly registered user will be subscribed to"
|
2633 |
msgstr ""
|
2634 |
|
2635 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-sync-wp-user.php:174
|
2636 |
msgid "Audience > Sync Contacts"
|
2637 |
msgstr ""
|
2638 |
|
2639 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-sync-wp-user.php:192
|
2640 |
msgid "WordPress"
|
2641 |
msgstr ""
|
2642 |
|
2643 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:32
|
|
|
|
|
|
|
|
|
2644 |
msgid "Sorry, you do not have permission to import contacts."
|
2645 |
msgstr ""
|
2646 |
|
2647 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:153
|
2648 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:157
|
2649 |
#, php-format
|
2650 |
msgid "Total %d contacts have been imported successfully!"
|
2651 |
msgstr ""
|
2652 |
|
2653 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:161
|
2654 |
#, php-format
|
2655 |
msgid "%d contacts are already exists."
|
2656 |
msgstr ""
|
2657 |
|
2658 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:166
|
2659 |
#, php-format
|
2660 |
msgid "%d contacts are invalid."
|
2661 |
msgstr ""
|
2662 |
|
2663 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:176
|
2664 |
msgid "Error: Please Select List"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:180
|
2668 |
msgid "Error: Please select status"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:184
|
2672 |
msgid "Error: Please Upload only CSV File"
|
2673 |
msgstr ""
|
2674 |
|
2675 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:188
|
2676 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:192
|
2677 |
msgid "Error: Please Upload File"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:211
|
2681 |
msgid "Select CSV file"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:213
|
2685 |
msgid "Check CSV structure"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:214
|
2689 |
msgid "from here"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:225
|
2693 |
msgid "Select status"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:237
|
2697 |
msgid "Select list"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:250
|
2701 |
msgid "Import"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:272
|
2705 |
msgid "Audience > Import Contacts"
|
2706 |
msgstr ""
|
2707 |
|
2708 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-info.php:20
|
2709 |
msgid "<span class=\"es-fire-sale\"> 🔥 </span> Go Pro"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:54
|
2713 |
msgid "Number of lists per page"
|
2714 |
msgstr ""
|
2715 |
|
2716 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:75
|
2717 |
msgid "Audience > Lists"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:109
|
2721 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:585
|
2722 |
msgid "You do not have permission to edit list"
|
2723 |
msgstr ""
|
2724 |
|
2725 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:111
|
2726 |
msgid "Please add list name"
|
2727 |
msgstr ""
|
2728 |
|
2729 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:113
|
2730 |
msgid "List already exists. Please choose different name"
|
2731 |
msgstr ""
|
2732 |
|
2733 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:158
|
2734 |
msgid "List has been added successfully!"
|
2735 |
msgstr ""
|
2736 |
|
2737 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:207
|
2738 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:589
|
2739 |
msgid "List has been updated successfully!"
|
2740 |
msgstr ""
|
2741 |
|
2742 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:250
|
2743 |
msgid "Edit List"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:406
|
2747 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:415
|
2748 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:424
|
2749 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:433
|
2750 |
#, php-format
|
2751 |
msgid "<a href=\"%s\" target=\"_blank\">%d</a>"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:549
|
2755 |
msgid "Search Lists"
|
2756 |
msgstr ""
|
2757 |
|
2758 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:601
|
2759 |
msgid "You do not have permission to delete list"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:608
|
2763 |
msgid "List has been deleted successfully!"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:623
|
2767 |
msgid "List(s) have been deleted successfully"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:650
|
2771 |
msgid "No lists avaliable."
|
2772 |
msgstr ""
|
2773 |
|
2774 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-mailer.php:501
|
2775 |
+
#, php-format
|
2776 |
+
msgid "Test email to %s"
|
2777 |
+
msgstr ""
|
2778 |
+
|
2779 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:47
|
2780 |
msgid "Please add message body or select template"
|
2781 |
msgstr ""
|
2782 |
|
2783 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:53
|
2784 |
msgid "Please add the subject"
|
2785 |
msgstr ""
|
2786 |
|
2787 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:79
|
2788 |
msgid "Please add message content"
|
2789 |
msgstr ""
|
2790 |
|
2791 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:102
|
2792 |
msgid "Campaigns > Broadcast"
|
2793 |
msgstr ""
|
2794 |
|
2795 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:116
|
2796 |
msgid "From Email"
|
2797 |
msgstr ""
|
2798 |
|
2799 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:119
|
2800 |
msgid "Design template"
|
2801 |
msgstr ""
|
2802 |
|
2803 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:121
|
2804 |
msgid "New Broadcast"
|
2805 |
msgstr ""
|
2806 |
|
2807 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:122
|
2808 |
msgid "Pre Header"
|
2809 |
msgstr ""
|
2810 |
|
2811 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:122
|
2812 |
+
msgid "Add Pre header"
|
2813 |
+
msgstr ""
|
2814 |
+
|
2815 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:124
|
2816 |
msgid "Body"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:142
|
2820 |
msgid "Recipients"
|
2821 |
msgstr ""
|
2822 |
|
2823 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:147
|
2824 |
msgid "Preview this email in browser"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-old-widget.php:72
|
2828 |
msgid "Widget Title"
|
2829 |
msgstr ""
|
2830 |
|
2831 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-old-widget.php:76
|
2832 |
msgid "Short description about subscription form"
|
2833 |
msgstr ""
|
2834 |
|
2835 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-old-widget.php:80
|
2836 |
msgid "Display Name Field"
|
2837 |
msgstr ""
|
2838 |
|
2839 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-old-widget.php:82
|
2840 |
msgid "YES"
|
2841 |
msgstr ""
|
2842 |
|
2843 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-old-widget.php:83
|
2844 |
msgid "NO"
|
2845 |
msgstr ""
|
2846 |
|
2847 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-old-widget.php:87
|
2848 |
msgid "Subscriber Group"
|
2849 |
msgstr ""
|
2850 |
|
2851 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:53
|
2852 |
msgid "Please select categories."
|
2853 |
msgstr ""
|
2854 |
|
2855 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:74
|
2856 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:202
|
2857 |
msgid "Please select template."
|
2858 |
msgstr ""
|
2859 |
|
2860 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:209
|
2861 |
msgid "Please select Categories."
|
2862 |
msgstr ""
|
2863 |
|
2864 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:244
|
2865 |
msgid "Campaigns > New Post Notification"
|
2866 |
msgstr ""
|
2867 |
|
2868 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:247
|
2869 |
msgid "Campaigns > Edit Post Notification"
|
2870 |
msgstr ""
|
2871 |
|
2872 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:273
|
2873 |
msgid ""
|
2874 |
"Contacts from the selected list will be notified about new post notification."
|
2875 |
msgstr ""
|
2876 |
|
2877 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:311
|
2878 |
msgid "Select Post Category"
|
2879 |
msgstr ""
|
2880 |
|
2881 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:312
|
2882 |
msgid ""
|
2883 |
"Notification will be sent out when any post from selected categories will be "
|
2884 |
"published."
|
2885 |
msgstr ""
|
2886 |
|
2887 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:325
|
2888 |
msgid "Select custom post type(s)"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:326
|
2892 |
msgid ""
|
2893 |
"(Optional) Select custom post type for which you want to send notification."
|
2894 |
msgstr ""
|
2895 |
|
2896 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:19
|
2897 |
msgid "Report"
|
2898 |
msgstr ""
|
2899 |
|
2900 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:41
|
2901 |
#, php-format
|
2902 |
msgid ""
|
2903 |
"<a href='%s' target='_blank' class='page-title-action es-imp-button'>Send "
|
2904 |
"Queued Emails Now</a>"
|
2905 |
msgstr ""
|
2906 |
|
2907 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:43
|
2908 |
msgid ""
|
2909 |
"<span class='page-title-action button-disabled'>Send Queued Emails Now</span>"
|
2910 |
msgstr ""
|
2911 |
|
2912 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:44
|
2913 |
msgid "<br /><span class='es-helper'>No emails found in queue</span>"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:89
|
2917 |
msgid "Sr No"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:92
|
2921 |
msgid "Sent Date"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:93
|
2925 |
msgid "Viewed Status"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:94
|
2929 |
msgid "Viewed Date"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:158
|
2933 |
msgid "Viewed"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:158
|
2937 |
msgid "Not yet viewed"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:171
|
2941 |
msgid "No Reports avaliable."
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:191
|
2945 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-templates-table.php:35
|
2946 |
msgid "Post Notification"
|
2947 |
msgstr ""
|
2948 |
|
2949 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:213
|
2950 |
msgid "Completed"
|
2951 |
msgstr ""
|
2952 |
|
2953 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:253
|
2954 |
msgid "View"
|
2955 |
msgstr ""
|
2956 |
|
2957 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:255
|
2958 |
msgid "Preview"
|
2959 |
msgstr ""
|
2960 |
|
2961 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:273
|
2962 |
msgid "Start Date"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:274
|
2966 |
msgid "End Date"
|
2967 |
msgstr ""
|
2968 |
|
2969 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:422
|
2970 |
msgid "You do not have permission to view notification"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:434
|
2974 |
msgid "You do not have permission to delete notification"
|
2975 |
msgstr ""
|
2976 |
|
2977 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:440
|
2978 |
msgid "Report has been deleted successfully!"
|
2979 |
msgstr ""
|
2980 |
|
2981 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:449
|
2982 |
msgid "You do not have permission to preview notification"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:467
|
2986 |
msgid "Reports have been deleted successfully!"
|
2987 |
msgstr ""
|
2988 |
|
2989 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:479
|
2990 |
msgid "Preview Email"
|
2991 |
msgstr ""
|
2992 |
|
2993 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:482
|
2994 |
msgid ""
|
2995 |
"This is how the email you sent may look. <br>Note: Different email services "
|
2996 |
"(like gmail, yahoo etc) display email content differently. So there could be "
|
2997 |
"a slight variation on how your customer will view the email content."
|
2998 |
msgstr ""
|
2999 |
|
3000 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-templates-table.php:66
|
3001 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-templates-table.php:71
|
3002 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-templates-table.php:75
|
3003 |
msgid "Available Keywords"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-templates-table.php:71
|
3007 |
msgid "for Broadcast:"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-templates-table.php:75
|
3011 |
msgid "for Post Digest:"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-templates-table.php:76
|
3015 |
msgid "Any keywords related Post Notification"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-templates-table.php:116
|
3019 |
msgid "Preview Template"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-templates-table.php:222
|
3023 |
msgid "Template Type"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-templates-table.php:259
|
3027 |
msgid "Duplicate"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-tools.php:54
|
3031 |
+
msgid "Email has been sent. Please check your inbox"
|
|
|
3032 |
msgstr ""
|
3033 |
|
3034 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-widget.php:11
|
3035 |
msgid "Email Subscribers Widget"
|
3036 |
msgstr ""
|
3037 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3038 |
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/notices/class-es-admin-notices.php:99
|
3039 |
msgid "Action failed. Please refresh the page and retry."
|
3040 |
msgstr ""
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Author URI: https://www.icegram.com/
|
5 |
Tags: subscription, newsletter, email marketing, post notification, email newsletter form, email signup, email widget, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation, welcome email, contacts
|
6 |
Requires at least: 3.9
|
7 |
-
Tested up to: 5.3.
|
8 |
-
Stable tag: 4.3.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses
|
11 |
|
@@ -299,6 +299,10 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
|
|
299 |
|
300 |
== Changelog ==
|
301 |
|
|
|
|
|
|
|
|
|
302 |
**4.3.7 (18.12.2019)**
|
303 |
* Update: Improved import contacts functionality. Now, we are able to import ".CSV" file which contains only emails
|
304 |
* Fix: Multiple emails to contacts
|
4 |
Author URI: https://www.icegram.com/
|
5 |
Tags: subscription, newsletter, email marketing, post notification, email newsletter form, email signup, email widget, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation, welcome email, contacts
|
6 |
Requires at least: 3.9
|
7 |
+
Tested up to: 5.3.2
|
8 |
+
Stable tag: 4.3.8
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses
|
11 |
|
299 |
|
300 |
== Changelog ==
|
301 |
|
302 |
+
**4.3.8 (25.12.2019)**
|
303 |
+
* Fix: Include Javascript issue with localised WordPress
|
304 |
+
* Fix: Duplicate entries of contacts
|
305 |
+
|
306 |
**4.3.7 (18.12.2019)**
|
307 |
* Update: Improved import contacts functionality. Now, we are able to import ".CSV" file which contains only emails
|
308 |
* Fix: Multiple emails to contacts
|