Version Description
(03.05.2019) = * New : New keywords added : {{TOTAL-CONTACTC}} in form description * Fix : Post/page editor issue with RTL sites
Download this release
Release Info
Developer | Icegram |
Plugin | Email Subscribers & Newsletters |
Version | 4.0.17 |
Comparing to | |
See all releases |
Code changes from version 4.0.16 to 4.0.17
- admin/class-email-subscribers-admin.php +58 -25
- admin/images/dont-miss-opportunity.png +0 -0
- admin/images/es-hero-launching-soon-option-1.png +0 -0
- admin/images/es-hero-launching-soon-option-2.png +0 -0
- admin/images/hot-cakes.png +0 -0
- admin/images/pricing.png +0 -0
- admin/images/reliable-email-marketing-for-bloggers.png +0 -0
- admin/images/simple-insanely-affordable-banner.png +0 -0
- admin/images/what-are-you-waiting-for.png +0 -0
- admin/js/email-subscribers-admin.js +0 -5
- admin/partials/pricing.php +35 -8
- email-subscribers.php +2 -2
- includes/class-email-subscribers.php +4 -138
- includes/class-es-common.php +11 -9
- languages/email-subscribers.pot +993 -992
- public/class-email-subscribers-public.php +1 -0
- public/partials/class-es-shortcode.php +4 -3
- readme.txt +5 -1
admin/class-email-subscribers-admin.php
CHANGED
@@ -64,8 +64,9 @@ class Email_Subscribers_Admin {
|
|
64 |
|
65 |
add_action( 'admin_menu', array( $this, 'email_subscribers_admin_menu' ) );
|
66 |
add_action( 'wp_ajax_es_klawoo_subscribe', array( $this, 'klawoo_subscribe' ) );
|
|
|
67 |
|
68 |
-
self::admin_show();
|
69 |
}
|
70 |
|
71 |
/**
|
@@ -74,7 +75,27 @@ class Email_Subscribers_Admin {
|
|
74 |
* @since 4.0
|
75 |
*/
|
76 |
public function enqueue_styles() {
|
77 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
/**
|
79 |
* This function is provided for demonstration purposes only.
|
80 |
*
|
@@ -93,7 +114,7 @@ class Email_Subscribers_Admin {
|
|
93 |
$get_page = Email_Subscribers::get_request( 'page' );
|
94 |
|
95 |
if ( ! empty( $get_page ) && 'es_settings' === $get_page ) {
|
96 |
-
wp_enqueue_style( 'thickbox' );
|
97 |
wp_enqueue_style( 'email-jquery-ui', plugin_dir_url( __FILE__ ) . 'css/jquery-ui.css', array(), $this->version, 'all' );
|
98 |
}
|
99 |
}
|
@@ -104,32 +125,44 @@ class Email_Subscribers_Admin {
|
|
104 |
* @since 4.0
|
105 |
*/
|
106 |
public function enqueue_scripts() {
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
}
|
129 |
-
|
130 |
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 );
|
131 |
}
|
132 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
public function email_subscribers_admin_menu() {
|
134 |
// This adds the main menu page
|
135 |
add_menu_page( __( 'Email Subscribers', 'email-subscribers' ), __( 'Email Subscribers', 'email-subscribers' ), 'edit_posts', 'es_dashboard', array( $this, 'es_dashboard_callback' ), 'dashicons-email', 30 );
|
64 |
|
65 |
add_action( 'admin_menu', array( $this, 'email_subscribers_admin_menu' ) );
|
66 |
add_action( 'wp_ajax_es_klawoo_subscribe', array( $this, 'klawoo_subscribe' ) );
|
67 |
+
add_action('admin_footer', array( $this, 'remove_submenu') );
|
68 |
|
69 |
+
// self::admin_show();
|
70 |
}
|
71 |
|
72 |
/**
|
75 |
* @since 4.0
|
76 |
*/
|
77 |
public function enqueue_styles() {
|
78 |
+
$screen = get_current_screen();
|
79 |
+
$screen_id = $screen ? $screen->id : '';
|
80 |
+
$enqueue_on_screens = array(
|
81 |
+
'toplevel_page_es_dashboard',
|
82 |
+
'email-subscribers_page_es_subscribers',
|
83 |
+
'email-subscribers_page_es_lists',
|
84 |
+
'email-subscribers_page_es_forms',
|
85 |
+
'email-subscribers_page_es_campaigns',
|
86 |
+
'email-subscribers_page_es_newsletters',
|
87 |
+
'email-subscribers_page_es_notifications',
|
88 |
+
'edit-es_template',
|
89 |
+
'email-subscribers_page_es_reports',
|
90 |
+
'email-subscribers_page_es_tools',
|
91 |
+
'email-subscribers_page_es_settings',
|
92 |
+
'email-subscribers_page_es_general_information',
|
93 |
+
'email-subscribers_page_es_pricing',
|
94 |
+
);
|
95 |
+
//all admin notice
|
96 |
+
if ( ! in_array( $screen_id, $enqueue_on_screens, true ) ) {
|
97 |
+
return;
|
98 |
+
}
|
99 |
/**
|
100 |
* This function is provided for demonstration purposes only.
|
101 |
*
|
114 |
$get_page = Email_Subscribers::get_request( 'page' );
|
115 |
|
116 |
if ( ! empty( $get_page ) && 'es_settings' === $get_page ) {
|
117 |
+
// wp_enqueue_style( 'thickbox' );
|
118 |
wp_enqueue_style( 'email-jquery-ui', plugin_dir_url( __FILE__ ) . 'css/jquery-ui.css', array(), $this->version, 'all' );
|
119 |
}
|
120 |
}
|
125 |
* @since 4.0
|
126 |
*/
|
127 |
public function enqueue_scripts() {
|
128 |
+
$screen = get_current_screen();
|
129 |
+
$screen_id = $screen ? $screen->id : '';
|
130 |
+
$enqueue_on_screens = array(
|
131 |
+
'toplevel_page_es_dashboard',
|
132 |
+
'email-subscribers_page_es_subscribers',
|
133 |
+
'email-subscribers_page_es_lists',
|
134 |
+
'email-subscribers_page_es_forms',
|
135 |
+
'email-subscribers_page_es_campaigns',
|
136 |
+
'email-subscribers_page_es_newsletters',
|
137 |
+
'email-subscribers_page_es_notifications',
|
138 |
+
'edit-es_template',
|
139 |
+
'email-subscribers_page_es_reports',
|
140 |
+
'email-subscribers_page_es_tools',
|
141 |
+
'email-subscribers_page_es_settings',
|
142 |
+
'email-subscribers_page_es_general_information',
|
143 |
+
'email-subscribers_page_es_pricing',
|
144 |
+
);
|
145 |
+
//all admin notice
|
146 |
+
if ( ! in_array( $screen_id, $enqueue_on_screens, true ) ) {
|
147 |
+
return;
|
|
|
148 |
}
|
|
|
149 |
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 );
|
150 |
}
|
151 |
|
152 |
+
public function remove_submenu(){
|
153 |
+
//remove submenues
|
154 |
+
?>
|
155 |
+
<script type="text/javascript">
|
156 |
+
jQuery(document).ready(function () {
|
157 |
+
var removeSubmenu = ['ig-es-broadcast', 'ig-es-lists', 'ig-es-post-notifications'];
|
158 |
+
jQuery.each(removeSubmenu, function (key, id) {
|
159 |
+
jQuery("#" + id).parent('a').parent('li').hide();
|
160 |
+
});
|
161 |
+
})
|
162 |
+
</script>
|
163 |
+
<?php
|
164 |
+
}
|
165 |
+
|
166 |
public function email_subscribers_admin_menu() {
|
167 |
// This adds the main menu page
|
168 |
add_menu_page( __( 'Email Subscribers', 'email-subscribers' ), __( 'Email Subscribers', 'email-subscribers' ), 'edit_posts', 'es_dashboard', array( $this, 'es_dashboard_callback' ), 'dashicons-email', 30 );
|
admin/images/dont-miss-opportunity.png
DELETED
Binary file
|
admin/images/es-hero-launching-soon-option-1.png
DELETED
Binary file
|
admin/images/es-hero-launching-soon-option-2.png
DELETED
Binary file
|
admin/images/hot-cakes.png
DELETED
Binary file
|
admin/images/pricing.png
CHANGED
Binary file
|
admin/images/reliable-email-marketing-for-bloggers.png
DELETED
Binary file
|
admin/images/simple-insanely-affordable-banner.png
DELETED
Binary file
|
admin/images/what-are-you-waiting-for.png
DELETED
Binary file
|
admin/js/email-subscribers-admin.js
CHANGED
@@ -58,11 +58,6 @@
|
|
58 |
jQuery('.es-templ-img').html(img);
|
59 |
});
|
60 |
|
61 |
-
var removeSubmenu = ['ig-es-broadcast', 'ig-es-lists', 'ig-es-post-notifications'];
|
62 |
-
$.each(removeSubmenu, function (key, id) {
|
63 |
-
$("#" + id).parent('a').parent('li').hide();
|
64 |
-
});
|
65 |
-
|
66 |
//send test emails
|
67 |
$(document).on('click', '#es-send-test', function (e) {
|
68 |
e.preventDefault();
|
58 |
jQuery('.es-templ-img').html(img);
|
59 |
});
|
60 |
|
|
|
|
|
|
|
|
|
|
|
61 |
//send test emails
|
62 |
$(document).on('click', '#es-send-test', function (e) {
|
63 |
e.preventDefault();
|
admin/partials/pricing.php
CHANGED
@@ -12,14 +12,41 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
12 |
text-align: center;
|
13 |
padding: 2em 0 0.5em 0;
|
14 |
}
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
}
|
18 |
</style>
|
19 |
-
<
|
20 |
-
<
|
21 |
-
|
22 |
-
<
|
23 |
-
<
|
24 |
</div>
|
25 |
-
</a>
|
12 |
text-align: center;
|
13 |
padding: 2em 0 0.5em 0;
|
14 |
}
|
15 |
+
#wpwrap{
|
16 |
+
background: #FFF;
|
17 |
+
}
|
18 |
+
.mid-or{
|
19 |
+
display: inline-block;
|
20 |
+
margin: 2em;
|
21 |
+
}
|
22 |
+
.button.large{
|
23 |
+
padding: 2em;
|
24 |
+
color: #FFF;
|
25 |
+
border: 0;
|
26 |
+
box-shadow: none;
|
27 |
+
font-size: 1.5em;
|
28 |
+
line-height: 0.1em;
|
29 |
+
}
|
30 |
+
.button.large:hover{
|
31 |
+
background: #4fad43;
|
32 |
+
color: #FFF;
|
33 |
+
transform:scale(1.075);
|
34 |
+
}
|
35 |
+
.button.green{
|
36 |
+
background: #12a200;
|
37 |
+
}
|
38 |
+
.button.green-light{
|
39 |
+
background: #4fad43;
|
40 |
+
}
|
41 |
+
@media only screen and (max-width: 1362px) {
|
42 |
+
.es-starter-gopro img{
|
43 |
+
width: 90%;
|
44 |
+
}
|
45 |
}
|
46 |
</style>
|
47 |
+
<div class="es-starter-gopro">
|
48 |
+
<img src="<?php echo EMAIL_SUBSCRIBERS_URL.'/admin/images/pricing.png' ?>"/><br/>
|
49 |
+
<a class="button large green-light" href="https://www.icegram.com/email-subscribers-pricing/?utm_source=in_app&utm_medium=go_pro&utm_campaign=starter_launch" target="_blank"> <?php _e('Get Started @ $5/month', 'email-subscribers') ?></a>
|
50 |
+
<div class="mid-or">OR</div>
|
51 |
+
<a class="button large green" href="https://www.icegram.com/email-subscribers-pricing/?utm_source=in_app&utm_medium=go_pro&utm_campaign=starter_launch" target="_blank"> <?php _e('Get Started @ $29/year', 'email-subscribers') ?></a>
|
52 |
</div>
|
|
email-subscribers.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Email Subscribers & Newsletters
|
4 |
* Plugin URI: https://www.icegram.com/
|
5 |
* Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
|
6 |
-
* Version: 4.0.
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.9
|
@@ -24,7 +24,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
24 |
* Define constants
|
25 |
*/
|
26 |
define( 'ES_PLUGIN_DIR', dirname( __FILE__ ) );
|
27 |
-
define( 'ES_PLUGIN_VERSION', '4.0.
|
28 |
define( 'ES_PLUGIN_BASE_NAME', plugin_basename( __FILE__ ) );
|
29 |
|
30 |
if ( ! defined( 'ES_PLUGIN_FILE' ) ) {
|
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.0.17
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.9
|
24 |
* Define constants
|
25 |
*/
|
26 |
define( 'ES_PLUGIN_DIR', dirname( __FILE__ ) );
|
27 |
+
define( 'ES_PLUGIN_VERSION', '4.0.17' );
|
28 |
define( 'ES_PLUGIN_BASE_NAME', plugin_basename( __FILE__ ) );
|
29 |
|
30 |
if ( ! defined( 'ES_PLUGIN_FILE' ) ) {
|
includes/class-email-subscribers.php
CHANGED
@@ -94,27 +94,6 @@ class Email_Subscribers {
|
|
94 |
}
|
95 |
|
96 |
public function add_version_notice() {
|
97 |
-
//get pages to show notices
|
98 |
-
$screen = get_current_screen();
|
99 |
-
$screen_id = $screen ? $screen->id : '';
|
100 |
-
$show_on_screens = array(
|
101 |
-
'dashboard',
|
102 |
-
'plugins',
|
103 |
-
'toplevel_page_es_dashboard',
|
104 |
-
'email-subscribers_page_es_subscribers',
|
105 |
-
'email-subscribers_page_es_lists',
|
106 |
-
'email-subscribers_page_es_forms',
|
107 |
-
'email-subscribers_page_es_campaigns',
|
108 |
-
'email-subscribers_page_es_newsletters',
|
109 |
-
'email-subscribers_page_es_notifications',
|
110 |
-
'edit-es_template',
|
111 |
-
'email-subscribers_page_es_reports',
|
112 |
-
'email-subscribers_page_es_tools',
|
113 |
-
'email-subscribers_page_es_settings',
|
114 |
-
'email-subscribers_page_es_general_information',
|
115 |
-
// 'email-subscribers_page_es_pricing',
|
116 |
-
);
|
117 |
-
|
118 |
//Email Subscribers Pro update notice
|
119 |
$active_plugins = get_option( 'active_plugins', array() );
|
120 |
if ( is_multisite() ) {
|
@@ -151,129 +130,16 @@ class Email_Subscribers {
|
|
151 |
echo '<div class="notice notice-warning" style="background-color: #FFF;"><p style="letter-spacing: 0.6px;">' . $disable_wp_cron_notice . '<a style="float:right" class="es-admin-btn es-admin-btn-secondary " href="' . admin_url() . '?es_dismiss_admin_notice=1&option_name=wp_cron_notice">' . __( 'OK, I Got it!',
|
152 |
'email-subscribers' ) . '</a></p></div>';
|
153 |
}
|
154 |
-
//all admin notice
|
155 |
-
if ( ! in_array( $screen_id, $show_on_screens, true ) ) {
|
156 |
-
return;
|
157 |
-
}
|
158 |
-
//already pro user return
|
159 |
-
if ( in_array( 'email-subscribers-premium/email-subscribers-premium.php', $active_plugins ) || array_key_exists( 'email-subscribers-premium/email-subscribers-premium.php', $active_plugins ) ) {
|
160 |
-
return;
|
161 |
-
}
|
162 |
-
//ES stater teaser
|
163 |
-
$timezone_format = _x( 'Y-m-d', 'timezone date format' );
|
164 |
-
$es_current_date = strtotime( date_i18n( $timezone_format ) );
|
165 |
-
?>
|
166 |
-
<style type="text/css">
|
167 |
-
.es-starter-banner {
|
168 |
-
margin: auto;
|
169 |
-
text-align: center;
|
170 |
-
padding: 2em 0 0.5em 0;
|
171 |
-
}
|
172 |
-
|
173 |
-
.es-starter-banner img {
|
174 |
-
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
|
175 |
-
}
|
176 |
-
|
177 |
-
.es-stater-banner-hide {
|
178 |
-
color: #5d5d5d;
|
179 |
-
}
|
180 |
-
|
181 |
-
.es-starter-hide {
|
182 |
-
text-align: right;
|
183 |
-
width: 80%;
|
184 |
-
}
|
185 |
-
</style>
|
186 |
-
<?php
|
187 |
-
// 5-16 :start
|
188 |
-
$starter_banner_option = get_option( 'ig_es_starter_banner', 'no' );
|
189 |
-
$starter_banner_hide_option = get_option( 'ig_es_starter_banner_hide', 'no' );
|
190 |
-
$es_banner_start = strtotime( "2019-04-05" );
|
191 |
-
$es_banner_end = strtotime( "2019-04-16" );
|
192 |
-
if ( ( $es_current_date >= $es_banner_start ) && ( $es_current_date <= $es_banner_end ) && 'yes' !== $starter_banner_option && 'yes' !== $starter_banner_hide_option ) {
|
193 |
-
$image_array = array( EMAIL_SUBSCRIBERS_URL . "/admin/images/es-hero-launching-soon-option-1.png", EMAIL_SUBSCRIBERS_URL . "/admin/images/es-hero-launching-soon-option-2.png" );
|
194 |
-
$image_url = $image_array[ array_rand( $image_array ) ];
|
195 |
-
echo '<a href="?es_dismiss_admin_notice=1&option_name=starter_banner">
|
196 |
-
<div class="es-starter-banner"><img src="' . $image_url . '"/></div></a>
|
197 |
-
<div class="es-starter-hide"><a href="?es_dismiss_admin_notice=1&option_name=starter_banner_hide" class="es-stater-banner-hide"href="#">' . __( 'Hide This', 'email-subscribers' ) . '</a></div>';
|
198 |
-
|
199 |
-
}
|
200 |
-
// 5-16 :End
|
201 |
-
//17th-27th
|
202 |
-
?>
|
203 |
-
<style type="text/css">
|
204 |
-
.es-admin-notices {
|
205 |
-
background: #654ea3; /* fallback for old browsers */
|
206 |
-
background: -webkit-linear-gradient(to right, #48b7d4, #add9ef); /* Chrome 10-25, Safari 5.1-6 */
|
207 |
-
background: linear-gradient(to right, #48b7d4, #add9ef); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
|
208 |
-
padding: 1em;
|
209 |
-
color: #fff;
|
210 |
-
font-size: 1.2em;
|
211 |
-
|
212 |
-
}
|
213 |
-
</style>
|
214 |
-
<?php
|
215 |
-
$admin_notice_1_option = get_option( 'ig_es_admin_notice_1_option', 'no' );
|
216 |
-
$admin_notice_1_hide_option = get_option( 'ig_es_admin_notice_1_hide_option', 'no' );
|
217 |
-
$hot_cakes_option = get_option( 'ig_es_hot_cakes_option', 'no' );
|
218 |
-
$hot_cakes_hide_option = get_option( 'ig_es_hot_cakes_hide_option', 'no' );
|
219 |
-
$es_admin_notice_1_start = strtotime( "2019-04-17" );
|
220 |
-
$es_admin_notice_1_end = strtotime( "2019-04-27" );
|
221 |
-
if ( ( $es_current_date >= $es_admin_notice_1_start ) && ( $es_current_date <= $es_admin_notice_1_end ) ) {
|
222 |
-
if( 'yes' !== $admin_notice_1_option && 'yes' !== $admin_notice_1_hide_option ){
|
223 |
-
$starter_banner_hide_18 = get_option( 'ig_es_admin_notice_1_hide_option', false );
|
224 |
-
if ( $starter_banner_hide_18 ) {
|
225 |
-
echo "<div class='notice es-admin-notices'><strong>" . __( "🤗 Insane Launch Offer: ", 'email-subscribers' ) . "</strong>" . __( 'Email Subscribers Starter Plan ',
|
226 |
-
'email-subscribers' ) . "<a href='?es_dismiss_admin_notice=1&option_name=admin_notice_1_option'>[" . __( "Click to claim limited time offer" ) . "]<a href='?es_dismiss_admin_notice=1&option_name=admin_notice_1_hide_option' style='float:right; font-size:0.8em;' > " . __( "Dissmiss", 'email-subscribers' ) . " </a></div>";
|
227 |
-
}
|
228 |
-
$image_url = EMAIL_SUBSCRIBERS_URL . "/admin/images/reliable-email-marketing-for-bloggers.png";
|
229 |
-
echo '<a href="?es_dismiss_admin_notice=1&option_name=admin_notice_1_option">
|
230 |
-
<div class="es-starter-banner"><img src="' . $image_url . '"/></div></a>
|
231 |
-
<div class="es-starter-hide"><a href="?es_dismiss_admin_notice=1&option_name=admin_notice_1_hide_option" class="es-stater-banner-hide"href="#">' . __( 'Hide This', 'email-subscribers' ) . '</a></div>';
|
232 |
-
}else if( ( 'yes' === $admin_notice_1_option || 'yes' === $admin_notice_1_hide_option ) && 'yes' !== $hot_cakes_option && 'yes' !== $hot_cakes_hide_option ){
|
233 |
-
$image_url = EMAIL_SUBSCRIBERS_URL . "/admin/images/hot-cakes.png";
|
234 |
-
echo '<a href="?es_dismiss_admin_notice=1&option_name=hot_cakes_option">
|
235 |
-
<div class="es-starter-banner"><img src="' . $image_url . '"/></div></a>
|
236 |
-
<div class="es-starter-hide"><a href="?es_dismiss_admin_notice=1&option_name=hot_cakes_hide_option" class="es-stater-banner-hide"href="#">' . __( 'Hide This', 'email-subscribers' ) . '</a></div>';
|
237 |
-
}
|
238 |
-
}
|
239 |
-
//17th-27th :End
|
240 |
-
//28th-29th
|
241 |
-
$admin_notice_2_option = get_option( 'ig_es_starter_campaign_28_29', 'no' );
|
242 |
-
$admin_notice_2_hide_option = get_option( 'ig_es_admin_notice_2_hide_option', 'no' );
|
243 |
-
$es_admin_notice_2_start = strtotime( "2019-04-28" );
|
244 |
-
$es_admin_notice_2_end = strtotime( "2019-04-29" );
|
245 |
-
if ( ( $es_current_date >= $es_admin_notice_2_start ) && ( $es_current_date <= $es_admin_notice_2_end ) && 'yes' !== $admin_notice_2_option && 'yes' !== $admin_notice_2_hide_option ) {
|
246 |
-
$image_url = EMAIL_SUBSCRIBERS_URL . "/admin/images/dont-miss-opportunity.png";
|
247 |
-
echo '<a href="?es_dismiss_admin_notice=1&option_name=starter_campaign_28_29">
|
248 |
-
<div class="es-starter-banner"><img style="box-shadow:none" src="' . $image_url . '"/></div></a>
|
249 |
-
<div class="es-starter-hide"><a href="?es_dismiss_admin_notice=1&option_name=admin_notice_2_hide_option" class="es-stater-banner-hide"href="#">' . __( 'Hide This', 'email-subscribers' ) . '</a></div>';
|
250 |
-
}
|
251 |
-
//30th
|
252 |
-
$admin_notice_3_option = get_option( 'ig_es_starter_campaign_30', 'no' );
|
253 |
-
$admin_notice_3_hide_option = get_option( 'ig_es_admin_notice_3_hide_option', 'no' );
|
254 |
-
$es_admin_notice_3_start = strtotime( "2019-04-30" );
|
255 |
-
$es_admin_notice_3_end = strtotime( "2019-05-1" );
|
256 |
-
if ( ( $es_current_date >= $es_admin_notice_3_start ) && ( $es_current_date < $es_admin_notice_3_end ) && 'yes' !== $admin_notice_3_option && 'yes' !== $admin_notice_3_hide_option ) {
|
257 |
-
$image_url = EMAIL_SUBSCRIBERS_URL . "/admin/images/what-are-you-waiting-for.png";
|
258 |
-
echo '<a href="?es_dismiss_admin_notice=1&option_name=starter_campaign_30">
|
259 |
-
<div class="es-starter-banner"><img src="' . $image_url . '"/></div></a>
|
260 |
-
<div class="es-starter-hide"><a href="?es_dismiss_admin_notice=1&option_name=admin_notice_3_hide_option" class="es-stater-banner-hide"href="#">' . __( 'Hide This', 'email-subscribers' ) . '</a></div>';
|
261 |
-
}
|
262 |
-
|
263 |
}
|
264 |
|
265 |
public function es_dismiss_admin_notice() {
|
266 |
if ( isset( $_GET['es_dismiss_admin_notice'] ) && $_GET['es_dismiss_admin_notice'] == '1' && isset( $_GET['option_name'] ) ) {
|
267 |
$option_name = sanitize_text_field( $_GET['option_name'] );
|
268 |
update_option( 'ig_es_' . $option_name, 'yes' );
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
$referer = wp_get_referer();
|
274 |
-
wp_safe_redirect( $referer );
|
275 |
-
exit();
|
276 |
-
}
|
277 |
}
|
278 |
}
|
279 |
|
94 |
}
|
95 |
|
96 |
public function add_version_notice() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
//Email Subscribers Pro update notice
|
98 |
$active_plugins = get_option( 'active_plugins', array() );
|
99 |
if ( is_multisite() ) {
|
130 |
echo '<div class="notice notice-warning" style="background-color: #FFF;"><p style="letter-spacing: 0.6px;">' . $disable_wp_cron_notice . '<a style="float:right" class="es-admin-btn es-admin-btn-secondary " href="' . admin_url() . '?es_dismiss_admin_notice=1&option_name=wp_cron_notice">' . __( 'OK, I Got it!',
|
131 |
'email-subscribers' ) . '</a></p></div>';
|
132 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
}
|
134 |
|
135 |
public function es_dismiss_admin_notice() {
|
136 |
if ( isset( $_GET['es_dismiss_admin_notice'] ) && $_GET['es_dismiss_admin_notice'] == '1' && isset( $_GET['option_name'] ) ) {
|
137 |
$option_name = sanitize_text_field( $_GET['option_name'] );
|
138 |
update_option( 'ig_es_' . $option_name, 'yes' );
|
139 |
+
|
140 |
+
$referer = wp_get_referer();
|
141 |
+
wp_safe_redirect( $referer );
|
142 |
+
exit();
|
|
|
|
|
|
|
|
|
143 |
}
|
144 |
}
|
145 |
|
includes/class-es-common.php
CHANGED
@@ -69,14 +69,14 @@ Class ES_Common {
|
|
69 |
$data = apply_filters( 'es_after_process_template_body', $data );
|
70 |
$content = $data['content'];
|
71 |
//total contacts
|
72 |
-
$total_contacts = ES_DB_Contacts::count_active_subscribers_by_list_id();
|
73 |
-
$content
|
74 |
//blog title
|
75 |
$blog_name = get_option( 'blogname' );
|
76 |
-
$content
|
77 |
// site url
|
78 |
$site_url = home_url( '/' );
|
79 |
-
$content
|
80 |
|
81 |
return $content;
|
82 |
}
|
@@ -586,13 +586,16 @@ Class ES_Common {
|
|
586 |
parse_str( $cron_url, $result );
|
587 |
}
|
588 |
|
|
|
589 |
if ( empty( $result['guid'] ) ) {
|
590 |
-
$guid
|
591 |
-
|
592 |
-
$
|
593 |
-
update_option( 'ig_es_cronurl', $cron_url );
|
594 |
}
|
595 |
|
|
|
|
|
|
|
596 |
if ( ! empty( $campaign_hash ) ) {
|
597 |
$cron_url = add_query_arg( 'campaign_hash', $campaign_hash, $cron_url );
|
598 |
}
|
@@ -605,7 +608,6 @@ Class ES_Common {
|
|
605 |
$cron_url = add_query_arg( 'es_pro', true, $cron_url );
|
606 |
}
|
607 |
|
608 |
-
|
609 |
return $cron_url;
|
610 |
}
|
611 |
|
69 |
$data = apply_filters( 'es_after_process_template_body', $data );
|
70 |
$content = $data['content'];
|
71 |
//total contacts
|
72 |
+
$total_contacts = ES_DB_Contacts::count_active_subscribers_by_list_id();
|
73 |
+
$content = str_replace( "{{TOTAL-CONTACTS}}", $total_contacts, $content );
|
74 |
//blog title
|
75 |
$blog_name = get_option( 'blogname' );
|
76 |
+
$content = str_replace( "{{SITENAME}}", $blog_name, $content );
|
77 |
// site url
|
78 |
$site_url = home_url( '/' );
|
79 |
+
$content = str_replace( "{{SITEURL}}", $site_url, $content );
|
80 |
|
81 |
return $content;
|
82 |
}
|
586 |
parse_str( $cron_url, $result );
|
587 |
}
|
588 |
|
589 |
+
$cron_url = add_query_arg( 'es', 'cron', site_url() );
|
590 |
if ( empty( $result['guid'] ) ) {
|
591 |
+
$guid = ES_Common::generate_guid();
|
592 |
+
} else {
|
593 |
+
$guid = $result['guid'];
|
|
|
594 |
}
|
595 |
|
596 |
+
$cron_url = add_query_arg( 'guid', $guid, $cron_url );
|
597 |
+
update_option( 'ig_es_cronurl', $cron_url );
|
598 |
+
|
599 |
if ( ! empty( $campaign_hash ) ) {
|
600 |
$cron_url = add_query_arg( 'campaign_hash', $campaign_hash, $cron_url );
|
601 |
}
|
608 |
$cron_url = add_query_arg( 'es_pro', true, $cron_url );
|
609 |
}
|
610 |
|
|
|
611 |
return $cron_url;
|
612 |
}
|
613 |
|
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,86 +15,88 @@ msgstr ""
|
|
15 |
"X-Generator: Loco https://localise.biz/\n"
|
16 |
"X-Loco-Version: 2.2.0; wp-5.1"
|
17 |
|
18 |
-
#:
|
19 |
-
#:
|
20 |
-
#:
|
21 |
-
#:
|
22 |
-
#:
|
23 |
msgid "Email Subscribers"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#:
|
27 |
msgid "Dashboard"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#:
|
31 |
-
#:
|
32 |
-
#:
|
33 |
-
#:
|
34 |
msgid "Lists"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#:
|
38 |
-
#:
|
39 |
msgid "Post Notifications"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#:
|
43 |
-
#:
|
44 |
-
#:
|
45 |
-
#:
|
46 |
-
#:
|
47 |
msgid "Broadcast"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#:
|
51 |
-
#:
|
52 |
-
#:
|
53 |
-
#:
|
54 |
msgid "Reports"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#:
|
58 |
msgid "Audience"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#:
|
62 |
-
#:
|
63 |
-
#:
|
64 |
-
#:
|
65 |
-
#:
|
66 |
-
#:
|
67 |
msgid "Campaigns"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#:
|
71 |
msgid "Settings"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#:
|
75 |
-
#:
|
76 |
-
#:
|
77 |
-
#:
|
78 |
-
#:
|
79 |
-
#:
|
80 |
msgid "Forms"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#:
|
84 |
-
|
85 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-tools.php:90
|
86 |
-
msgid "Tools"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#:
|
90 |
-
msgid "
|
|
|
|
|
|
|
|
|
91 |
msgstr ""
|
92 |
|
93 |
-
#:
|
94 |
msgid "Email Subscribers Pro"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#:
|
98 |
#, php-format
|
99 |
msgid ""
|
100 |
"WordPress Cron is disable on your site. Email notifications from Email "
|
@@ -102,575 +104,367 @@ msgid ""
|
|
102 |
"target=\"_blank\" >Here's how you can enable it.</a>"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#:
|
106 |
#, php-format
|
107 |
msgid "Or schedule Cron in <a href=\"%s\" target=\"_blank\">cPanel</a>"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#:
|
111 |
#, php-format
|
112 |
msgid ""
|
113 |
"Or use <strong><a href=\"%s\" target=\"_blank\">Email Subscribners Pro</a>"
|
114 |
"</strong> for automatic Cron support"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#:
|
118 |
msgid "OK, I Got it!"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#:
|
122 |
-
#:
|
123 |
-
#:
|
124 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/class-email-subscribers.php:253
|
125 |
-
msgid "Hide This"
|
126 |
-
msgstr ""
|
127 |
-
|
128 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/class-email-subscribers.php:222
|
129 |
-
msgid "🤗 Insane Launch Offer: "
|
130 |
-
msgstr ""
|
131 |
-
|
132 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/class-email-subscribers.php:222
|
133 |
-
msgid "Email Subscribers Starter Plan "
|
134 |
-
msgstr ""
|
135 |
-
|
136 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/class-email-subscribers.php:223
|
137 |
-
msgid "Dissmiss"
|
138 |
-
msgstr ""
|
139 |
-
|
140 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/class-es-common.php:90
|
141 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-export-subscribers.php:234
|
142 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:484
|
143 |
msgid "Subscribed"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#:
|
147 |
-
#:
|
148 |
msgid "Unconfirmed"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#:
|
152 |
-
#:
|
153 |
-
#:
|
154 |
msgid "Unsubscribed"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#:
|
158 |
msgid "Disable email notification"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#:
|
162 |
msgid "Send email immediately"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#:
|
166 |
msgid "Send email via cron job"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#:
|
170 |
-
#:
|
171 |
msgid "Select Status"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#:
|
175 |
-
#:
|
176 |
-
#:
|
177 |
msgid "Enable"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#:
|
181 |
-
#:
|
182 |
-
#:
|
183 |
msgid "Disable"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#:
|
187 |
-
#:
|
188 |
msgid "Select Template"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#:
|
192 |
-
#:
|
193 |
msgid "Active"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#:
|
197 |
-
#:
|
198 |
msgid "Inactive"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#:
|
202 |
msgid "No Custom Post Types Available"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#:
|
206 |
msgid "Single Opt-In"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#:
|
210 |
msgid "Double Opt-In"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#:
|
214 |
msgid "Full Size"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#:
|
218 |
msgid "Medium Size"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#:
|
222 |
-
#:
|
223 |
msgid "Thumbnail"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#:
|
227 |
-
|
228 |
-
msgstr ""
|
229 |
-
|
230 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/es-backward.php:101
|
231 |
-
msgid "Confirm Your Subscription!"
|
232 |
-
msgstr ""
|
233 |
-
|
234 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/public/class-email-subscribers-public.php:109
|
235 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-handle-subscription.php:381
|
236 |
msgid "Please enter email address"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#:
|
240 |
-
#:
|
241 |
msgid "You need to wait for sometime before subscribing again"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#:
|
245 |
-
#:
|
246 |
msgid "Successfully Subscribed."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#:
|
250 |
-
#:
|
251 |
msgid ""
|
252 |
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
253 |
"subscription. If you don't see the email within a few minutes, check the "
|
254 |
"spam/junk folder."
|
255 |
msgstr ""
|
256 |
|
257 |
-
#:
|
258 |
-
#:
|
259 |
msgid "Email Address already exists!"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#:
|
263 |
-
#:
|
264 |
msgid "Oops.. Unexpected error occurred."
|
265 |
msgstr ""
|
266 |
|
267 |
-
#:
|
268 |
-
#:
|
269 |
msgid "Invalid email address"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#:
|
273 |
-
#:
|
274 |
msgid "Please try after some time"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#:
|
278 |
msgid "Sorry, we couldn't find you. Please contact admin."
|
279 |
msgstr ""
|
280 |
|
281 |
-
#:
|
282 |
-
|
283 |
-
msgstr ""
|
284 |
-
|
285 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:62
|
286 |
-
#, php-format
|
287 |
-
msgid ""
|
288 |
-
"1. Newsletters are now <b>Broadcasts</b>. Broadcasts and Post notifications "
|
289 |
-
"are now merged in <a href=\"%s\" target=\"_blank\">Campaigns</a>"
|
290 |
-
msgstr ""
|
291 |
-
|
292 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:63
|
293 |
-
#, php-format
|
294 |
-
msgid ""
|
295 |
-
"2. Subscribers are now called <b>Contacts</b> and part of an <a href=\"%s\" "
|
296 |
-
"target=\"_blank\">Audience</a>"
|
297 |
-
msgstr ""
|
298 |
-
|
299 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:64
|
300 |
-
#, php-format
|
301 |
-
msgid "3. Groups are now called <a href=\"%s\" target=\"_blank\">Lists</a>"
|
302 |
-
msgstr ""
|
303 |
-
|
304 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:65
|
305 |
-
#, php-format
|
306 |
-
msgid "4. Find <a href=\"%s\" target=\"_blank\">Forms</a> here"
|
307 |
-
msgstr ""
|
308 |
-
|
309 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:67
|
310 |
-
msgid "Explore all changes"
|
311 |
-
msgstr ""
|
312 |
-
|
313 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:69
|
314 |
-
msgid "Hello! 👋"
|
315 |
-
msgstr ""
|
316 |
-
|
317 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:70
|
318 |
-
msgid ""
|
319 |
-
"Email Subscribers is a complete newsletter plugin that lets you collect "
|
320 |
-
"leads, send automated new blog post notification emails, send newsletters "
|
321 |
-
"and more. It’s your tool to build an audience and engage with them ongoingly."
|
322 |
-
msgstr ""
|
323 |
-
|
324 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:71
|
325 |
-
msgid "We’ve setup the basics to save you time."
|
326 |
-
msgstr ""
|
327 |
-
|
328 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:72
|
329 |
-
msgid "Please read this carefully and make changes as needed"
|
330 |
-
msgstr ""
|
331 |
-
|
332 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:74
|
333 |
-
msgid ""
|
334 |
-
"1. We created two lists - <b>Main List</b> and <b>Test List</b>. Also added "
|
335 |
-
"yourself to the Test List. That way you can test campaigns on the Test List "
|
336 |
-
"before sending them to the Main List ;-)"
|
337 |
-
msgstr ""
|
338 |
-
|
339 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:75
|
340 |
-
#, php-format
|
341 |
-
msgid ""
|
342 |
-
"2. We also created a lead collection / subscription form and added it the "
|
343 |
-
"default widget area on your site. <a href=\"%s\" target=\"blank\" ><b>Review "
|
344 |
-
"and rearrange the form from Widgets.</b></a> You can also learn about <a "
|
345 |
-
"href=\"%s\" target=\"_blank\">adding a form to another place from this help "
|
346 |
-
"article.</a>"
|
347 |
-
msgstr ""
|
348 |
-
|
349 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:76
|
350 |
-
#, php-format
|
351 |
-
msgid ""
|
352 |
-
"3. BTW, we also sent a few test emails to the Test List. <a href=\"%s\" "
|
353 |
-
"target=\"_blank\">We sent both those campaigns</b> </a>(newsletter and new "
|
354 |
-
"post notification).<b> So check your email \""
|
355 |
-
msgstr ""
|
356 |
-
|
357 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:76
|
358 |
-
msgid "\" and confirm you got those test emails.</b>"
|
359 |
-
msgstr ""
|
360 |
-
|
361 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:77
|
362 |
-
#, php-format
|
363 |
-
msgid ""
|
364 |
-
"4. Go ahead and take a look around. Tweak settings, review <a href=\"%s\" "
|
365 |
-
"target=\"_blank\">design templates</a> or go through the documentation."
|
366 |
-
msgstr ""
|
367 |
-
|
368 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:78
|
369 |
-
msgid "5. And don’t forget to signup for the free course below."
|
370 |
-
msgstr ""
|
371 |
-
|
372 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:85
|
373 |
-
msgid "Free Course - Email Marketing Mastery"
|
374 |
-
msgstr ""
|
375 |
-
|
376 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:89
|
377 |
-
msgid "In short 5 weeks: build your list and succeed with email marketing"
|
378 |
-
msgstr ""
|
379 |
-
|
380 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:90
|
381 |
-
msgid ""
|
382 |
-
"Do you want to build your list, keep off spam, write emails that people open "
|
383 |
-
"and click through? Do you want to build your brand and nurture an amazing "
|
384 |
-
"tribe?\n"
|
385 |
-
"\t\t\t\t\t\t\t\t\t\t\t\tEnter your name and email on the form to get it all."
|
386 |
-
msgstr ""
|
387 |
-
|
388 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:99
|
389 |
-
#, php-format
|
390 |
-
msgid "I have read and agreed to your %s."
|
391 |
-
msgstr ""
|
392 |
-
|
393 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:99
|
394 |
-
msgid "Privacy Policy"
|
395 |
-
msgstr ""
|
396 |
-
|
397 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:101
|
398 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/public/partials/class-es-shortcode.php:190
|
399 |
-
msgid "Subscribe"
|
400 |
-
msgstr ""
|
401 |
-
|
402 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:120
|
403 |
-
msgid "Overview"
|
404 |
-
msgstr ""
|
405 |
-
|
406 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:121
|
407 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-lists-table.php:437
|
408 |
-
msgid "Active Contacts"
|
409 |
-
msgstr ""
|
410 |
-
|
411 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:127
|
412 |
-
msgid "Help & How to's"
|
413 |
-
msgstr ""
|
414 |
-
|
415 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:128
|
416 |
-
msgid "How to create and show subscription forms."
|
417 |
-
msgstr ""
|
418 |
-
|
419 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:129
|
420 |
-
msgid "How to create a new campaign for new blog post "
|
421 |
-
msgstr ""
|
422 |
-
|
423 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:130
|
424 |
-
msgid "How to create new template for Post Notification or Broadcast"
|
425 |
-
msgstr ""
|
426 |
-
|
427 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:131
|
428 |
-
msgid "How to Create and Send Broadcasts Emails"
|
429 |
-
msgstr ""
|
430 |
-
|
431 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:132
|
432 |
-
msgid "How to add WordPress users to your lists"
|
433 |
-
msgstr ""
|
434 |
-
|
435 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:133
|
436 |
-
msgid "All Documentation"
|
437 |
-
msgstr ""
|
438 |
-
|
439 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:136
|
440 |
-
msgid "<span>Join our</span> Email Subscribers Secret Club!"
|
441 |
-
msgstr ""
|
442 |
-
|
443 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:137
|
444 |
-
msgid ""
|
445 |
-
"Be a part of development, share your valuable feedback and get early access "
|
446 |
-
"to our upcoming <strong>Email Subscribers 5.0</strong>"
|
447 |
-
msgstr ""
|
448 |
-
|
449 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:142
|
450 |
-
msgid "Questions? Need Help?"
|
451 |
-
msgstr ""
|
452 |
-
|
453 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:143
|
454 |
-
msgid "Contact Us"
|
455 |
-
msgstr ""
|
456 |
-
|
457 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/dashboard.php:144
|
458 |
-
#, php-format
|
459 |
-
msgid "Version: %s"
|
460 |
-
msgstr ""
|
461 |
-
|
462 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/admin/partials/help.php:10
|
463 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-info.php:17
|
464 |
msgid "Help & Info"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#:
|
468 |
msgid "Feature Overview"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#:
|
472 |
msgid ""
|
473 |
"Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
|
474 |
"Code)."
|
475 |
msgstr ""
|
476 |
|
477 |
-
#:
|
478 |
msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
|
479 |
msgstr ""
|
480 |
|
481 |
-
#:
|
482 |
msgid "Send automatic welcome email to subscribers."
|
483 |
msgstr ""
|
484 |
|
485 |
-
#:
|
486 |
msgid ""
|
487 |
"Send new post notification emails to subscribers when new posts are "
|
488 |
"published on your website."
|
489 |
msgstr ""
|
490 |
|
491 |
-
#:
|
492 |
msgid "Send email notification to admin when a new user signs up."
|
493 |
msgstr ""
|
494 |
|
495 |
-
#:
|
496 |
msgid "Automatically add Unsubscribe link in the email."
|
497 |
msgstr ""
|
498 |
|
499 |
-
#:
|
500 |
msgid "Easily migrate subscribers from another app using Import & Export."
|
501 |
msgstr ""
|
502 |
|
503 |
-
#:
|
504 |
msgid ""
|
505 |
"Use HTML editor to create broadcast (Newsletters) and post notifications."
|
506 |
msgstr ""
|
507 |
|
508 |
-
#:
|
509 |
msgid "Send broadcast to different lists."
|
510 |
msgstr ""
|
511 |
|
512 |
-
#:
|
513 |
msgid "Get detailed sent email reports."
|
514 |
msgstr ""
|
515 |
|
516 |
-
#:
|
517 |
msgid "Supports localization and internationalization."
|
518 |
msgstr ""
|
519 |
|
520 |
-
#:
|
521 |
msgid "Additional form settings"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#:
|
525 |
msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#:
|
529 |
msgid "How to add captcha in Subscribe form of Email Subscribers?"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#:
|
533 |
msgid "General Plugin Configuration"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#:
|
537 |
msgid "Modify "
|
538 |
msgstr ""
|
539 |
|
540 |
-
#:
|
541 |
msgid "default text, email contents"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#:
|
545 |
msgid ""
|
546 |
" (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
|
547 |
"Roles"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#:
|
551 |
msgid "How does Sync work?"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#:
|
555 |
msgid "How to Import or Export Email Addresses?"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#:
|
559 |
msgid "How to Add/Update Existing Subscribers List & Status?"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#:
|
563 |
msgid "How to change/update/translate any texts from the plugin?"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#:
|
567 |
msgid "How to add Unsubscribe link in emails?"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#:
|
571 |
msgid "How to check sent emails?"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#:
|
575 |
msgid "Newsletters"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#:
|
579 |
msgid "Create and Send Newsletter Emails"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#:
|
583 |
msgid "Keywords in the Newsletters"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#:
|
587 |
msgid "Cron Job Setup"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#:
|
591 |
msgid "What is Cron and how to Schedule Cron Emails?"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#:
|
595 |
msgid "Schedule Cron Emails in cPanel"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#:
|
599 |
msgid "Schedule Cron Emails in Parallels Plesk"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#:
|
603 |
msgid "Hosting doesn’t support Cron Jobs?"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#:
|
607 |
msgid "[GDPR] Email Subscribers"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#:
|
611 |
msgid "How to enable consent checkbox in the subscribe form?"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#:
|
615 |
msgid "What data Email Subscribers stores on your end?"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#:
|
619 |
msgid "Create and Send Post Notification Emails when new posts are published"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#:
|
623 |
msgid "Keywords in the Post Notifications"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#:
|
627 |
msgid "Send a test post notification email to myself/testgroup"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#:
|
631 |
msgid "Troubleshooting Steps"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#:
|
635 |
msgid "Subscribers are not receiving Emails?"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#:
|
639 |
msgid "CSS Help"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#:
|
643 |
msgid "FAQ's"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#:
|
647 |
msgid "Want to do more? Here's how.."
|
648 |
msgstr ""
|
649 |
|
650 |
-
#:
|
651 |
msgid "Show your subscribe form inside attractive popups"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#:
|
655 |
msgid ""
|
656 |
"Don't limit your subscriber form to a widget. Embed it within popups, hello "
|
657 |
"bars, slide-ins, sidebars, full screen popups etc."
|
658 |
msgstr ""
|
659 |
|
660 |
-
#:
|
661 |
msgid ""
|
662 |
"Using Email Subscribers you can achieve this easily with our <b>free</b> "
|
663 |
"plugin <a target=\"_blank\" class=\"es-cta\" href=\"https://wordpress."
|
664 |
"org/plugins/icegram/\">Icegram</a>"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#:
|
668 |
msgid ""
|
669 |
"Icegram's beautiful designs instantly capture user attention and help "
|
670 |
"increase sign-ups to your WordPress website."
|
671 |
msgstr ""
|
672 |
|
673 |
-
#:
|
674 |
msgid ""
|
675 |
"How to <a href=\"https://www.icegram.com/documentation/es-how-to-show-"
|
676 |
"subscribe-form-inside-a-popup/?"
|
@@ -678,30 +472,30 @@ msgid ""
|
|
678 |
"target=\"_blank\">show subscribe form inside a popup</a>"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#:
|
682 |
msgid "Get beautiful and elegant form styles"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#:
|
686 |
msgid ""
|
687 |
"Email subscribers easily integrates with another <b>free</b> plugin <a "
|
688 |
"class=\"es-cta\" target=\"_blank\" href=\"https://wordpress."
|
689 |
"org/plugins/icegram-rainmaker/\">Rainmaker</a>"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#:
|
693 |
msgid ""
|
694 |
"Rainmaker extends the core features of Email Subscribers and provides "
|
695 |
"elegant form styles."
|
696 |
msgstr ""
|
697 |
|
698 |
-
#:
|
699 |
msgid ""
|
700 |
"These styles are well designed and beautify your subscription form making it "
|
701 |
"more appealing."
|
702 |
msgstr ""
|
703 |
|
704 |
-
#:
|
705 |
msgid ""
|
706 |
"How to <a href=\"https://www.icegram.com/documentation/es-how-to-use-"
|
707 |
"rainmakers-form-in-email-subscribers/?"
|
@@ -709,1164 +503,1371 @@ msgid ""
|
|
709 |
"target=\"_blank\">add Rainmaker’s form in Email Subscribers</a>"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#:
|
713 |
-
msgid "
|
714 |
-
msgstr ""
|
715 |
-
|
716 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-admin-settings.php:78
|
717 |
-
msgid "Notifications"
|
718 |
-
msgstr ""
|
719 |
-
|
720 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-admin-settings.php:79
|
721 |
-
msgid "Email Sending"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#:
|
725 |
-
msgid "
|
726 |
msgstr ""
|
727 |
|
728 |
-
#:
|
729 |
-
msgid "
|
730 |
msgstr ""
|
731 |
|
732 |
-
#:
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-lists-table.php:223
|
738 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-lists-table.php:436
|
739 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:365
|
740 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:550
|
741 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/public/partials/class-es-shortcode.php:137
|
742 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/public/partials/class-es-shortcode.php:137
|
743 |
-
msgid "Name"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#:
|
747 |
-
|
|
|
|
|
|
|
748 |
msgstr ""
|
749 |
|
750 |
-
#:
|
751 |
-
|
752 |
-
|
753 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-reports-table.php:97
|
754 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:369
|
755 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:551
|
756 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/public/partials/class-es-shortcode.php:168
|
757 |
-
msgid "Email"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#:
|
761 |
-
|
762 |
-
"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#:
|
766 |
-
msgid "
|
767 |
msgstr ""
|
768 |
|
769 |
-
#:
|
770 |
-
msgid "
|
771 |
msgstr ""
|
772 |
|
773 |
-
#:
|
774 |
msgid ""
|
775 |
-
"
|
776 |
-
"
|
|
|
777 |
msgstr ""
|
778 |
|
779 |
-
#:
|
780 |
-
msgid "
|
781 |
msgstr ""
|
782 |
|
783 |
-
#:
|
784 |
-
msgid ""
|
785 |
-
"Select whether to send HTML or Plain Text email using WordPress or PHP mail()"
|
786 |
-
". We recommend to send email using WordPres"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#:
|
790 |
-
msgid "
|
|
|
|
|
|
|
791 |
msgstr ""
|
792 |
|
793 |
-
#:
|
794 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
795 |
msgstr ""
|
796 |
|
797 |
-
#:
|
|
|
798 |
msgid ""
|
799 |
-
"
|
800 |
-
"
|
|
|
801 |
msgstr ""
|
802 |
|
803 |
-
#:
|
804 |
-
msgid "
|
805 |
msgstr ""
|
806 |
|
807 |
-
#:
|
|
|
808 |
msgid ""
|
809 |
-
"
|
810 |
-
"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#:
|
814 |
-
msgid "
|
815 |
msgstr ""
|
816 |
|
817 |
-
#:
|
818 |
-
msgid "
|
819 |
msgstr ""
|
820 |
|
821 |
-
#:
|
822 |
-
|
823 |
-
msgid "Success Message"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#:
|
827 |
msgid ""
|
828 |
-
"
|
829 |
-
"
|
|
|
|
|
830 |
msgstr ""
|
831 |
|
832 |
-
#:
|
833 |
-
|
834 |
-
"
|
835 |
-
"already subscribed / blocked."
|
836 |
msgstr ""
|
837 |
|
838 |
-
#:
|
839 |
-
|
840 |
-
msgid "Error Message"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#:
|
844 |
-
|
845 |
-
|
846 |
-
"Double Opt-In (Confirmation) Email."
|
847 |
msgstr ""
|
848 |
|
849 |
-
#:
|
850 |
-
msgid "
|
851 |
msgstr ""
|
852 |
|
853 |
-
#:
|
854 |
-
|
855 |
-
"
|
856 |
-
"from us."
|
857 |
msgstr ""
|
858 |
|
859 |
-
#:
|
860 |
-
msgid ""
|
861 |
-
|
862 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
863 |
msgstr ""
|
864 |
|
865 |
-
#:
|
866 |
msgid ""
|
867 |
-
"
|
|
|
868 |
msgstr ""
|
869 |
|
870 |
-
#:
|
871 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
872 |
msgstr ""
|
873 |
|
874 |
-
#:
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
#:
|
879 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
880 |
msgid "Yes"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#:
|
884 |
-
#:
|
885 |
-
#:
|
886 |
-
#:
|
887 |
-
#:
|
888 |
-
#:
|
889 |
-
#:
|
890 |
-
#:
|
891 |
msgid "No"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#:
|
895 |
-
|
|
|
896 |
msgstr ""
|
897 |
|
898 |
-
#:
|
899 |
-
|
|
|
|
|
|
|
900 |
msgstr ""
|
901 |
|
902 |
-
#:
|
903 |
-
|
904 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-admin-settings.php:367
|
905 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-admin-settings.php:406
|
906 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-reports-table.php:265
|
907 |
-
msgid "Subject"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#:
|
911 |
-
#:
|
912 |
-
#:
|
913 |
-
|
914 |
-
msgid "Content"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#:
|
918 |
-
|
|
|
|
|
|
|
|
|
919 |
msgstr ""
|
920 |
|
921 |
-
#:
|
922 |
-
msgid "
|
923 |
msgstr ""
|
924 |
|
925 |
-
#:
|
926 |
-
msgid ""
|
927 |
-
"If Double Optin is set, contact will receive confirmation email with above "
|
928 |
-
"content. You can use {{NAME}}, {{EMAIL}}, {{SUBSCRIBE-LINK}} keywords"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#:
|
932 |
-
msgid "
|
933 |
msgstr ""
|
934 |
|
935 |
-
#:
|
936 |
-
|
937 |
-
msgid "Notify?"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#:
|
941 |
-
msgid "
|
942 |
msgstr ""
|
943 |
|
944 |
-
#:
|
945 |
-
msgid ""
|
946 |
-
"Subject for the admin email whenever a new contact signs up and is confirmed"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#:
|
950 |
-
msgid "
|
951 |
msgstr ""
|
952 |
|
953 |
-
#:
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
msgstr ""
|
958 |
|
959 |
-
#:
|
960 |
-
msgid "
|
961 |
msgstr ""
|
962 |
|
963 |
-
#:
|
964 |
-
|
|
|
|
|
|
|
|
|
965 |
msgstr ""
|
966 |
|
967 |
-
#:
|
968 |
-
#:
|
969 |
-
|
|
|
|
|
970 |
msgstr ""
|
971 |
|
972 |
-
#:
|
973 |
-
|
974 |
-
"
|
975 |
-
"contacts. Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#:
|
979 |
-
|
|
|
980 |
msgstr ""
|
981 |
|
982 |
-
#:
|
983 |
-
|
|
|
|
|
|
|
|
|
|
|
984 |
msgstr ""
|
985 |
|
986 |
-
#:
|
987 |
-
msgid "
|
988 |
msgstr ""
|
989 |
|
990 |
-
#:
|
991 |
-
msgid "
|
992 |
msgstr ""
|
993 |
|
994 |
-
#:
|
995 |
-
msgid ""
|
996 |
-
|
997 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#:
|
1001 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1002 |
msgid "Save Changes"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#:
|
1006 |
-
|
1007 |
-
msgid "
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#:
|
1011 |
-
|
|
|
|
|
|
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#:
|
1015 |
-
|
1016 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#:
|
1020 |
-
|
1021 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1022 |
msgid "Manage Templates"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#:
|
1026 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#:
|
1030 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1031 |
#, php-format
|
1032 |
-
msgid "
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#:
|
1036 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-lists-table.php:420
|
1037 |
#, php-format
|
1038 |
-
msgid ""
|
1039 |
-
"<a href=\"?page=%s&action=%s&list=%s&_wpnonce=%s\" onclick=\"return "
|
1040 |
-
"checkDelete()\">Delete</a>"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#:
|
1044 |
-
|
|
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#:
|
1048 |
-
msgid "
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#:
|
1052 |
-
msgid "
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#:
|
1056 |
-
msgid "
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#:
|
1060 |
-
|
|
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#:
|
1064 |
-
msgid "
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#:
|
1068 |
-
|
1069 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-import-subscribers.php:224
|
1070 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:55
|
1071 |
-
msgid "Export Contacts"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#:
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#:
|
1081 |
-
#:
|
1082 |
msgid "Total Contacts"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#:
|
1086 |
msgid "Export"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#:
|
1090 |
-
#:
|
1091 |
msgid "All Contacts"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#:
|
1095 |
msgid "Subscribed Contacts"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#:
|
1099 |
msgid "Unsubscribed Contacts"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#:
|
1103 |
msgid "Download"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#:
|
1107 |
msgid "Audience > Export Contacts"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#:
|
1111 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:70
|
1112 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-import-subscribers.php:223
|
1113 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:54
|
1114 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:120
|
1115 |
-
msgid "Add New Contact"
|
1116 |
-
msgstr ""
|
1117 |
-
|
1118 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-export-subscribers.php:104
|
1119 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:56
|
1120 |
-
msgid "Import Contacts"
|
1121 |
-
msgstr ""
|
1122 |
-
|
1123 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-export-subscribers.php:105
|
1124 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:72
|
1125 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-import-subscribers.php:225
|
1126 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-lists-table.php:212
|
1127 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:58
|
1128 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:121
|
1129 |
-
msgid "Manage Lists"
|
1130 |
-
msgstr ""
|
1131 |
-
|
1132 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-export-subscribers.php:192
|
1133 |
msgid "Export the Subscribers"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#:
|
1137 |
-
#:
|
1138 |
-
#:
|
1139 |
msgid "Status"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
#. __( 'List', 'email-subscribers' ),
|
1143 |
-
#:
|
1144 |
msgid "Created On"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#:
|
1148 |
-
msgid "
|
1149 |
-
msgstr ""
|
1150 |
-
|
1151 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-forms-table.php:42
|
1152 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-lists-table.php:206
|
1153 |
-
msgid "Add New"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#:
|
1157 |
-
msgid "
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#:
|
1161 |
-
msgid "
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#:
|
1165 |
-
msgid "
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#:
|
1169 |
-
msgid "
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#:
|
1173 |
-
msgid "
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#:
|
1177 |
-
msgid "
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#:
|
1181 |
-
msgid "
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#:
|
1185 |
-
msgid "
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#:
|
1189 |
-
msgid "
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#:
|
1193 |
-
msgid "
|
|
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#:
|
1197 |
-
msgid "
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#:
|
1201 |
-
msgid "
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#:
|
1205 |
-
msgid "
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#:
|
1209 |
-
msgid "
|
|
|
|
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#:
|
1213 |
-
msgid "
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#:
|
1217 |
-
msgid "
|
|
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#:
|
1221 |
-
msgid "
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#:
|
1225 |
-
|
1226 |
-
msgid "<a href=\"?page=%s&action=%s&form=%s&_wpnonce=%s\">Edit</a>"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#:
|
1230 |
-
|
1231 |
-
msgid ""
|
1232 |
-
"<a href=\"?page=%s&action=%s&form=%s&_wpnonce=%s\" onclick=\"return "
|
1233 |
-
"checkDelete()\">Delete</a>"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#:
|
1237 |
-
msgid "
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#:
|
1241 |
-
|
1242 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:553
|
1243 |
-
msgid "Created"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#:
|
1247 |
-
|
1248 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-reports-table.php:249
|
1249 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-reports-table.php:330
|
1250 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:583
|
1251 |
-
msgid "Delete"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#:
|
1255 |
-
msgid "
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#:
|
1259 |
-
msgid "
|
|
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#:
|
1263 |
-
msgid "
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#:
|
1267 |
-
msgid "
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#:
|
1271 |
-
msgid "
|
|
|
|
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#:
|
1275 |
-
msgid "
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#:
|
1279 |
-
msgid "
|
|
|
|
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#:
|
1283 |
-
msgid "
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#:
|
1287 |
-
msgid "
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#:
|
1291 |
-
msgid "
|
|
|
|
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#:
|
1295 |
-
msgid "
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#:
|
1299 |
-
|
1300 |
-
msgid "Sync"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#:
|
1304 |
-
msgid "
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#:
|
1308 |
-
msgid "
|
|
|
|
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#:
|
1312 |
-
msgid "
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#:
|
1316 |
-
msgid "
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#:
|
1320 |
-
|
|
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#:
|
1324 |
-
msgid "
|
|
|
|
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#:
|
1328 |
-
|
1329 |
-
|
1330 |
-
|
1331 |
msgstr ""
|
1332 |
|
1333 |
-
#:
|
1334 |
-
|
1335 |
-
msgid "
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#:
|
1339 |
-
|
1340 |
-
|
|
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#:
|
1344 |
-
msgid "
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#:
|
1348 |
-
msgid "
|
|
|
|
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#:
|
1352 |
-
msgid "
|
|
|
|
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#:
|
1356 |
-
|
1357 |
-
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#:
|
1361 |
-
msgid "
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#:
|
1365 |
-
msgid "
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#:
|
1369 |
-
msgid "
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#:
|
1373 |
-
|
|
|
|
|
|
|
|
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#:
|
1377 |
-
|
|
|
|
|
|
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#:
|
1381 |
-
msgid "
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#:
|
1385 |
-
msgid "
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#:
|
1389 |
-
msgid "
|
|
|
|
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#:
|
1393 |
-
msgid "
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#:
|
1397 |
-
#:
|
1398 |
-
msgid "
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#:
|
1402 |
-
msgid "
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#:
|
1406 |
-
msgid "
|
|
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#:
|
1410 |
-
|
1411 |
-
msgid "List has been updated successfully!"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
-
#:
|
1415 |
-
msgid "
|
|
|
|
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#:
|
1419 |
-
|
1420 |
-
#, php-format
|
1421 |
-
msgid "<a href=\"%s\" target=\"_blank\">%d</a>"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#:
|
1425 |
-
msgid "
|
1426 |
msgstr ""
|
1427 |
|
1428 |
-
#:
|
1429 |
-
msgid "
|
|
|
|
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#:
|
1433 |
-
msgid "
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#:
|
1437 |
-
msgid "
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#:
|
1441 |
-
msgid "
|
|
|
|
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#:
|
1445 |
-
|
1446 |
-
msgid "Please select template."
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#:
|
1450 |
-
|
1451 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:779
|
1452 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:799
|
1453 |
-
msgid "Please select list."
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#:
|
1457 |
-
msgid "
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#:
|
1461 |
-
msgid "
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#:
|
1465 |
-
|
1466 |
-
msgid "Select List"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#:
|
1470 |
-
msgid "
|
|
|
|
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#:
|
1474 |
msgid "Widget Title"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#:
|
1478 |
msgid "Short description about subscription form"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#:
|
1482 |
msgid "Display Name Field"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#:
|
1486 |
msgid "YES"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#:
|
1490 |
msgid "NO"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#:
|
1494 |
msgid "Subscriber Group"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#:
|
1498 |
-
msgid "
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#:
|
1502 |
-
|
|
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#:
|
1506 |
-
msgid "Post
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#:
|
1510 |
-
msgid "Campaigns
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#:
|
1514 |
-
|
|
|
|
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#:
|
|
|
|
|
1518 |
msgid ""
|
1519 |
-
"
|
1520 |
-
|
1521 |
-
|
1522 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-post-notifications.php:259
|
1523 |
-
msgid "Select template"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#:
|
1527 |
-
msgid "
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#:
|
1531 |
-
msgid "
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#:
|
1535 |
-
msgid ""
|
1536 |
-
"Notification will be sent out when any post from selected categories will be "
|
1537 |
-
"published."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#:
|
1541 |
-
msgid "
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#:
|
1545 |
-
msgid ""
|
1546 |
-
"(Optional) Select custom post type for which you want to send notification."
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#:
|
1550 |
msgid "Report"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#:
|
1554 |
#, php-format
|
1555 |
msgid ""
|
1556 |
"<a href='%s' target='_blank' class='page-title-action es-imp-button'>Send "
|
1557 |
"Queued Emails Now</a>"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#:
|
1561 |
msgid ""
|
1562 |
"<span class='page-title-action button-disabled'>Send Queued Emails Now</span>"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#:
|
1566 |
msgid "<br /><span class='es-helper'>No emails found in queue</span>"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#:
|
1570 |
msgid "Sent Date"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#:
|
1574 |
msgid "Viewed Status"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#:
|
1578 |
msgid "Viewed Date"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#:
|
1582 |
msgid "Viewed"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#:
|
1586 |
msgid "Not yet viewed"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#:
|
1590 |
msgid "No Reports avaliable."
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#:
|
1594 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-templates-table.php:40
|
1595 |
-
msgid "Post Notification"
|
1596 |
-
msgstr ""
|
1597 |
-
|
1598 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-reports-table.php:209
|
1599 |
msgid "Completed"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#:
|
1603 |
msgid "View"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#:
|
1607 |
msgid "Preview"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#:
|
1611 |
msgid "Type"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#:
|
1615 |
msgid "Start Date"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#:
|
1619 |
msgid "End Date"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#:
|
1623 |
msgid "You do not have permission to view notification"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#:
|
1627 |
msgid "You do not have permission to delete notification"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#:
|
1631 |
msgid "Report has been deleted successfully!"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#:
|
1635 |
msgid "You do not have permission to preview notification"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#:
|
1639 |
msgid "Reports have been deleted successfully!"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#:
|
1643 |
msgid "Preview Email"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#:
|
1647 |
msgid ""
|
1648 |
"This is how the email you sent may look. <br>Note: Different email services "
|
1649 |
"(like gmail, yahoo etc) display email content differently. So there could be "
|
1650 |
"a slight variation on how your customer will view the email content."
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#:
|
1654 |
-
msgid "
|
1655 |
-
msgstr ""
|
1656 |
-
|
1657 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:53
|
1658 |
-
msgid "Audience > Contacts"
|
1659 |
-
msgstr ""
|
1660 |
-
|
1661 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:145
|
1662 |
-
msgid "Please Select List"
|
1663 |
-
msgstr ""
|
1664 |
-
|
1665 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:184
|
1666 |
-
msgid "Contact has been added successfully!"
|
1667 |
-
msgstr ""
|
1668 |
-
|
1669 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:188
|
1670 |
-
msgid "Contact already exist."
|
1671 |
-
msgstr ""
|
1672 |
-
|
1673 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:322
|
1674 |
-
msgid "Contact updated successfully!"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#:
|
1678 |
-
|
|
|
1679 |
msgstr ""
|
1680 |
|
1681 |
-
#:
|
1682 |
-
msgid "
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#:
|
1686 |
-
|
1687 |
-
msgid "List(s)"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
-
#:
|
1691 |
-
|
1692 |
-
msgid "
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#:
|
1696 |
-
|
1697 |
-
msgid ""
|
1698 |
-
"<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\" onclick=\"return "
|
1699 |
-
"checkDelete()\">Delete</a>"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
-
#:
|
|
|
1703 |
#, php-format
|
1704 |
-
msgid ""
|
1705 |
-
"<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\">Resend "
|
1706 |
-
"Confirmation<a>"
|
1707 |
-
msgstr ""
|
1708 |
-
|
1709 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:584
|
1710 |
-
msgid "Move To List"
|
1711 |
-
msgstr ""
|
1712 |
-
|
1713 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:585
|
1714 |
-
msgid "Add To List"
|
1715 |
-
msgstr ""
|
1716 |
-
|
1717 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:586
|
1718 |
-
msgid "Change Status"
|
1719 |
-
msgstr ""
|
1720 |
-
|
1721 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:597
|
1722 |
-
msgid "Search Contacts"
|
1723 |
-
msgstr ""
|
1724 |
-
|
1725 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:602
|
1726 |
-
msgid "All Statuses"
|
1727 |
-
msgstr ""
|
1728 |
-
|
1729 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:608
|
1730 |
-
msgid "All Lists"
|
1731 |
-
msgstr ""
|
1732 |
-
|
1733 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:670
|
1734 |
-
msgid "Contact have been updated successfully!"
|
1735 |
-
msgstr ""
|
1736 |
-
|
1737 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:687
|
1738 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:747
|
1739 |
-
msgid "Contact(s) have been deleted successfully!"
|
1740 |
-
msgstr ""
|
1741 |
-
|
1742 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-subscribers-table.php:717
|
1743 |
-
msgid "Confirmation email has been sent successfully!"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#:
|
1747 |
-
msgid "
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#:
|
1751 |
-
msgid "
|
1752 |
msgstr ""
|
1753 |
|
1754 |
-
#:
|
1755 |
-
msgid "
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#:
|
1759 |
-
msgid "
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#:
|
1763 |
-
msgid "
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#:
|
1767 |
-
msgid "
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#:
|
1771 |
-
|
1772 |
-
msgid "Available Keywords"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#:
|
1776 |
-
msgid "
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#:
|
1780 |
-
msgid "
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#:
|
1784 |
-
msgid "
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#:
|
1788 |
-
|
|
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#:
|
1792 |
msgid "Email has been sent. Please check your inbox"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#:
|
1796 |
-
msgid "
|
1797 |
-
msgstr ""
|
1798 |
-
|
1799 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-tools.php:108
|
1800 |
-
msgid "Send a Test Email"
|
1801 |
-
msgstr ""
|
1802 |
-
|
1803 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-tools.php:159
|
1804 |
-
#, php-format
|
1805 |
-
msgid "Test email to %s"
|
1806 |
-
msgstr ""
|
1807 |
-
|
1808 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/includes/admin/class-es-widget.php:11
|
1809 |
-
msgid "Email Subscribers Widget"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#:
|
1813 |
msgid "Action failed. Please refresh the page and retry."
|
1814 |
msgstr ""
|
1815 |
|
1816 |
#. %d: interval
|
1817 |
-
#:
|
1818 |
#, php-format
|
1819 |
msgid "Every %d minutes"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#:
|
1823 |
-
msgid "
|
1824 |
msgstr ""
|
1825 |
|
1826 |
-
#:
|
1827 |
-
msgid "
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#:
|
1831 |
-
msgid "
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#:
|
1835 |
-
msgid "
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#:
|
1839 |
-
#:
|
1840 |
msgid "Email Subscribers data update"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#:
|
1844 |
msgid "We need to update your data store to the latest version."
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#:
|
1848 |
msgid "Run the updater"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#:
|
1852 |
msgid "Are you sure you wish to run the updater now?"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#:
|
1856 |
msgid "Dismiss"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#:
|
1860 |
msgid ""
|
1861 |
"Email Subscribers data update complete. Thank you for updating to the latest "
|
1862 |
"version!"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
-
#:
|
1866 |
msgid "Your database is being updated in the background."
|
1867 |
msgstr ""
|
1868 |
|
1869 |
-
#:
|
1870 |
msgid "Taking a while? Click here to run it now."
|
1871 |
msgstr ""
|
1872 |
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Email Subscribers & Newsletters\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2019-05-03 05:19+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.2.0; wp-5.1"
|
17 |
|
18 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:168
|
19 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-widget.php:11
|
20 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:11
|
21 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:12
|
22 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-form-widget.php:11
|
23 |
msgid "Email Subscribers"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:171
|
27 |
msgid "Dashboard"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:172
|
31 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:124
|
32 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:290
|
33 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:66
|
34 |
msgid "Lists"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:173
|
38 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:80
|
39 |
msgid "Post Notifications"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:174
|
43 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:39
|
44 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:213
|
45 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:186
|
46 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:191
|
47 |
msgid "Broadcast"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:175
|
51 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:20
|
52 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:43
|
53 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:82
|
54 |
msgid "Reports"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:176
|
58 |
msgid "Audience"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:177
|
62 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:123
|
63 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:76
|
64 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:234
|
65 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:36
|
66 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:49
|
67 |
msgid "Campaigns"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:178
|
71 |
msgid "Settings"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:179
|
75 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:122
|
76 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:19
|
77 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:20
|
78 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:42
|
79 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:66
|
80 |
msgid "Forms"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:180
|
84 |
+
msgid "Template Preview"
|
|
|
|
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/es-backward.php:101
|
88 |
+
msgid "Confirm Your Subscription!"
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-mailer.php:105
|
92 |
+
msgid "Welcome !"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-email-subscribers.php:111
|
96 |
msgid "Email Subscribers Pro"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-email-subscribers.php:127
|
100 |
#, php-format
|
101 |
msgid ""
|
102 |
"WordPress Cron is disable on your site. Email notifications from Email "
|
104 |
"target=\"_blank\" >Here's how you can enable it.</a>"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-email-subscribers.php:128
|
108 |
#, php-format
|
109 |
msgid "Or schedule Cron in <a href=\"%s\" target=\"_blank\">cPanel</a>"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-email-subscribers.php:129
|
113 |
#, php-format
|
114 |
msgid ""
|
115 |
"Or use <strong><a href=\"%s\" target=\"_blank\">Email Subscribners Pro</a>"
|
116 |
"</strong> for automatic Cron support"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-email-subscribers.php:130
|
120 |
msgid "OK, I Got it!"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:99
|
124 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:484
|
125 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:234
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
msgid "Subscribed"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:100
|
130 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:485
|
131 |
msgid "Unconfirmed"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:101
|
135 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:486
|
136 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:234
|
137 |
msgid "Unsubscribed"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:116
|
141 |
msgid "Disable email notification"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:117
|
145 |
msgid "Send email immediately"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:118
|
149 |
msgid "Send email via cron job"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:261
|
153 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:273
|
154 |
msgid "Select Status"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:262
|
158 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:754
|
159 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:571
|
160 |
msgid "Enable"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:263
|
164 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:755
|
165 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:572
|
166 |
msgid "Disable"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:302
|
170 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:121
|
171 |
msgid "Select Template"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:331
|
175 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:182
|
176 |
msgid "Active"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:332
|
180 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:182
|
181 |
msgid "Inactive"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:418
|
185 |
msgid "No Custom Post Types Available"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:439
|
189 |
msgid "Single Opt-In"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:440
|
193 |
msgid "Double Opt-In"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:448
|
197 |
msgid "Full Size"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:449
|
201 |
msgid "Medium Size"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:450
|
205 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:194
|
206 |
msgid "Thumbnail"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:109
|
210 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:381
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
211 |
msgid "Please enter email address"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:110
|
215 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:382
|
216 |
msgid "You need to wait for sometime before subscribing again"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:111
|
220 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:383
|
221 |
msgid "Successfully Subscribed."
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:112
|
225 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:384
|
226 |
msgid ""
|
227 |
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
228 |
"subscription. If you don't see the email within a few minutes, check the "
|
229 |
"spam/junk folder."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:113
|
233 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:385
|
234 |
msgid "Email Address already exists!"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:114
|
238 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:386
|
239 |
msgid "Oops.. Unexpected error occurred."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:115
|
243 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:387
|
244 |
msgid "Invalid email address"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:116
|
248 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:389
|
249 |
msgid "Please try after some time"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:187
|
253 |
msgid "Sorry, we couldn't find you. Please contact admin."
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:10
|
257 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-info.php:17
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
msgid "Help & Info"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:15
|
262 |
msgid "Feature Overview"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:17
|
266 |
msgid ""
|
267 |
"Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
|
268 |
"Code)."
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:18
|
272 |
msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:19
|
276 |
msgid "Send automatic welcome email to subscribers."
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:20
|
280 |
msgid ""
|
281 |
"Send new post notification emails to subscribers when new posts are "
|
282 |
"published on your website."
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:21
|
286 |
msgid "Send email notification to admin when a new user signs up."
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:22
|
290 |
msgid "Automatically add Unsubscribe link in the email."
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:23
|
294 |
msgid "Easily migrate subscribers from another app using Import & Export."
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:24
|
298 |
msgid ""
|
299 |
"Use HTML editor to create broadcast (Newsletters) and post notifications."
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:25
|
303 |
msgid "Send broadcast to different lists."
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:26
|
307 |
msgid "Get detailed sent email reports."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:27
|
311 |
msgid "Supports localization and internationalization."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:33
|
315 |
msgid "Additional form settings"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:35
|
319 |
msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:36
|
323 |
msgid "How to add captcha in Subscribe form of Email Subscribers?"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:40
|
327 |
msgid "General Plugin Configuration"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:42
|
331 |
msgid "Modify "
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:42
|
335 |
msgid "default text, email contents"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:43
|
339 |
msgid ""
|
340 |
" (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
|
341 |
"Roles"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:44
|
345 |
msgid "How does Sync work?"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:45
|
349 |
msgid "How to Import or Export Email Addresses?"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:46
|
353 |
msgid "How to Add/Update Existing Subscribers List & Status?"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:47
|
357 |
msgid "How to change/update/translate any texts from the plugin?"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:48
|
361 |
msgid "How to add Unsubscribe link in emails?"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:49
|
365 |
msgid "How to check sent emails?"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:57
|
369 |
msgid "Newsletters"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:59
|
373 |
msgid "Create and Send Newsletter Emails"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:60
|
377 |
msgid "Keywords in the Newsletters"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:64
|
381 |
msgid "Cron Job Setup"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:66
|
385 |
msgid "What is Cron and how to Schedule Cron Emails?"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:67
|
389 |
msgid "Schedule Cron Emails in cPanel"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:68
|
393 |
msgid "Schedule Cron Emails in Parallels Plesk"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:69
|
397 |
msgid "Hosting doesn’t support Cron Jobs?"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:73
|
401 |
msgid "[GDPR] Email Subscribers"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:75
|
405 |
msgid "How to enable consent checkbox in the subscribe form?"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:76
|
409 |
msgid "What data Email Subscribers stores on your end?"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:82
|
413 |
msgid "Create and Send Post Notification Emails when new posts are published"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:83
|
417 |
msgid "Keywords in the Post Notifications"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:84
|
421 |
msgid "Send a test post notification email to myself/testgroup"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:88
|
425 |
msgid "Troubleshooting Steps"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:90
|
429 |
msgid "Subscribers are not receiving Emails?"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:91
|
433 |
msgid "CSS Help"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:92
|
437 |
msgid "FAQ's"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:97
|
441 |
msgid "Want to do more? Here's how.."
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:100
|
445 |
msgid "Show your subscribe form inside attractive popups"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:102
|
449 |
msgid ""
|
450 |
"Don't limit your subscriber form to a widget. Embed it within popups, hello "
|
451 |
"bars, slide-ins, sidebars, full screen popups etc."
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:103
|
455 |
msgid ""
|
456 |
"Using Email Subscribers you can achieve this easily with our <b>free</b> "
|
457 |
"plugin <a target=\"_blank\" class=\"es-cta\" href=\"https://wordpress."
|
458 |
"org/plugins/icegram/\">Icegram</a>"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:104
|
462 |
msgid ""
|
463 |
"Icegram's beautiful designs instantly capture user attention and help "
|
464 |
"increase sign-ups to your WordPress website."
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:105
|
468 |
msgid ""
|
469 |
"How to <a href=\"https://www.icegram.com/documentation/es-how-to-show-"
|
470 |
"subscribe-form-inside-a-popup/?"
|
472 |
"target=\"_blank\">show subscribe form inside a popup</a>"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:108
|
476 |
msgid "Get beautiful and elegant form styles"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:110
|
480 |
msgid ""
|
481 |
"Email subscribers easily integrates with another <b>free</b> plugin <a "
|
482 |
"class=\"es-cta\" target=\"_blank\" href=\"https://wordpress."
|
483 |
"org/plugins/icegram-rainmaker/\">Rainmaker</a>"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:111
|
487 |
msgid ""
|
488 |
"Rainmaker extends the core features of Email Subscribers and provides "
|
489 |
"elegant form styles."
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:112
|
493 |
msgid ""
|
494 |
"These styles are well designed and beautify your subscription form making it "
|
495 |
"more appealing."
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:113
|
499 |
msgid ""
|
500 |
"How to <a href=\"https://www.icegram.com/documentation/es-how-to-use-"
|
501 |
"rainmakers-form-in-email-subscribers/?"
|
503 |
"target=\"_blank\">add Rainmaker’s form in Email Subscribers</a>"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/pricing.php:49
|
507 |
+
msgid "Get Started @ $5/month"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/pricing.php:51
|
511 |
+
msgid "Get Started @ $29/year"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:61
|
515 |
+
msgid "Here's a quick look at changes within the plugin:"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:62
|
519 |
+
#, php-format
|
520 |
+
msgid ""
|
521 |
+
"1. Newsletters are now <b>Broadcasts</b>. Broadcasts and Post notifications "
|
522 |
+
"are now merged in <a href=\"%s\" target=\"_blank\">Campaigns</a>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:63
|
526 |
+
#, php-format
|
527 |
+
msgid ""
|
528 |
+
"2. Subscribers are now called <b>Contacts</b> and part of an <a href=\"%s\" "
|
529 |
+
"target=\"_blank\">Audience</a>"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:64
|
533 |
+
#, php-format
|
534 |
+
msgid "3. Groups are now called <a href=\"%s\" target=\"_blank\">Lists</a>"
|
|
|
|
|
|
|
|
|
|
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:65
|
538 |
+
#, php-format
|
539 |
+
msgid "4. Find <a href=\"%s\" target=\"_blank\">Forms</a> here"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:67
|
543 |
+
msgid "Explore all changes"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:69
|
547 |
+
msgid "Hello! 👋"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:70
|
551 |
msgid ""
|
552 |
+
"Email Subscribers is a complete newsletter plugin that lets you collect "
|
553 |
+
"leads, send automated new blog post notification emails, send newsletters "
|
554 |
+
"and more. It’s your tool to build an audience and engage with them ongoingly."
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:71
|
558 |
+
msgid "We’ve setup the basics to save you time."
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:72
|
562 |
+
msgid "Please read this carefully and make changes as needed"
|
|
|
|
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:74
|
566 |
+
msgid ""
|
567 |
+
"1. We created two lists - <b>Main List</b> and <b>Test List</b>. Also added "
|
568 |
+
"yourself to the Test List. That way you can test campaigns on the Test List "
|
569 |
+
"before sending them to the Main List ;-)"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:75
|
573 |
+
#, php-format
|
574 |
+
msgid ""
|
575 |
+
"2. We also created a lead collection / subscription form and added it the "
|
576 |
+
"default widget area on your site. <a href=\"%s\" target=\"blank\" ><b>Review "
|
577 |
+
"and rearrange the form from Widgets.</b></a> You can also learn about <a "
|
578 |
+
"href=\"%s\" target=\"_blank\">adding a form to another place from this help "
|
579 |
+
"article.</a>"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:76
|
583 |
+
#, php-format
|
584 |
msgid ""
|
585 |
+
"3. BTW, we also sent a few test emails to the Test List. <a href=\"%s\" "
|
586 |
+
"target=\"_blank\">We sent both those campaigns</b> </a>(newsletter and new "
|
587 |
+
"post notification).<b> So check your email \""
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:76
|
591 |
+
msgid "\" and confirm you got those test emails.</b>"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:77
|
595 |
+
#, php-format
|
596 |
msgid ""
|
597 |
+
"4. Go ahead and take a look around. Tweak settings, review <a href=\"%s\" "
|
598 |
+
"target=\"_blank\">design templates</a> or go through the documentation."
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:78
|
602 |
+
msgid "5. And don’t forget to signup for the free course below."
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:85
|
606 |
+
msgid "Free Course - Email Marketing Mastery"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:89
|
610 |
+
msgid "In short 5 weeks: build your list and succeed with email marketing"
|
|
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:90
|
614 |
msgid ""
|
615 |
+
"Do you want to build your list, keep off spam, write emails that people open "
|
616 |
+
"and click through? Do you want to build your brand and nurture an amazing "
|
617 |
+
"tribe?\n"
|
618 |
+
"\t\t\t\t\t\t\t\t\t\t\t\tEnter your name and email on the form to get it all."
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:99
|
622 |
+
#, php-format
|
623 |
+
msgid "I have read and agreed to your %s."
|
|
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:99
|
627 |
+
msgid "Privacy Policy"
|
|
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:101
|
631 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/public/partials/class-es-shortcode.php:194
|
632 |
+
msgid "Subscribe"
|
|
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:120
|
636 |
+
msgid "Overview"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:121
|
640 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:436
|
641 |
+
msgid "Active Contacts"
|
|
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:127
|
645 |
+
msgid "Help & How to's"
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:128
|
649 |
+
msgid "How to create and show subscription forms."
|
650 |
+
msgstr ""
|
651 |
+
|
652 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:129
|
653 |
+
msgid "How to create a new campaign for new blog post "
|
654 |
+
msgstr ""
|
655 |
+
|
656 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:130
|
657 |
+
msgid "How to create new template for Post Notification or Broadcast"
|
658 |
+
msgstr ""
|
659 |
+
|
660 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:131
|
661 |
+
msgid "How to Create and Send Broadcasts Emails"
|
662 |
+
msgstr ""
|
663 |
+
|
664 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:132
|
665 |
+
msgid "How to add WordPress users to your lists"
|
666 |
+
msgstr ""
|
667 |
+
|
668 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:133
|
669 |
+
msgid "All Documentation"
|
670 |
+
msgstr ""
|
671 |
+
|
672 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:136
|
673 |
+
msgid "<span>Join our</span> Email Subscribers Secret Club!"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:137
|
677 |
msgid ""
|
678 |
+
"Be a part of development, share your valuable feedback and get early access "
|
679 |
+
"to our upcoming <strong>Email Subscribers 5.0</strong>"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:142
|
683 |
+
msgid "Questions? Need Help?"
|
684 |
+
msgstr ""
|
685 |
+
|
686 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:143
|
687 |
+
msgid "Contact Us"
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:144
|
691 |
+
#, php-format
|
692 |
+
msgid "Version: %s"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:42
|
696 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:206
|
697 |
+
msgid "Add New"
|
698 |
+
msgstr ""
|
699 |
+
|
700 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:85
|
701 |
+
msgid "You do not have permission to edit this form."
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:88
|
705 |
+
msgid "Please add form name."
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:93
|
709 |
+
msgid "Please select list(s) in which contact will be subscribed."
|
710 |
+
msgstr ""
|
711 |
+
|
712 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:138
|
713 |
+
msgid "Form has been added successfully!"
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:183
|
717 |
+
msgid "Form has been updated successfully!"
|
718 |
+
msgstr ""
|
719 |
+
|
720 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:192
|
721 |
+
msgid "Sorry, form not found"
|
722 |
+
msgstr ""
|
723 |
+
|
724 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:226
|
725 |
+
msgid "New Form"
|
726 |
+
msgstr ""
|
727 |
+
|
728 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:228
|
729 |
+
msgid "Edit Form"
|
730 |
+
msgstr ""
|
731 |
+
|
732 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:245
|
733 |
+
msgid "Form Name"
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:253
|
737 |
+
msgid "Description"
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:261
|
741 |
+
msgid "Form Fields"
|
742 |
+
msgstr ""
|
743 |
+
|
744 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:266
|
745 |
+
msgid "Field"
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:267
|
749 |
+
msgid "Show?"
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:268
|
753 |
+
msgid "Required?"
|
754 |
+
msgstr ""
|
755 |
+
|
756 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:271
|
757 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:369
|
758 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:551
|
759 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:223
|
760 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:144
|
761 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:97
|
762 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/public/partials/class-es-shortcode.php:172
|
763 |
+
msgid "Email"
|
764 |
+
msgstr ""
|
765 |
+
|
766 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:276
|
767 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:634
|
768 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:365
|
769 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:550
|
770 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:222
|
771 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:135
|
772 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:138
|
773 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:223
|
774 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:435
|
775 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/public/partials/class-es-shortcode.php:141
|
776 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/public/partials/class-es-shortcode.php:141
|
777 |
+
msgid "Name"
|
778 |
+
msgstr ""
|
779 |
+
|
780 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:291
|
781 |
+
msgid "Contacts will be added into selected list(s)"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:309
|
785 |
+
msgid "Allow contact to choose list(s)"
|
786 |
+
msgstr ""
|
787 |
+
|
788 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:310
|
789 |
+
msgid "Allow contacts to choose list(s) in which they want to subscribe."
|
790 |
+
msgstr ""
|
791 |
+
|
792 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:315
|
793 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-widget.php:49
|
794 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:110
|
795 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:297
|
796 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:369
|
797 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:405
|
798 |
msgid "Yes"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:319
|
802 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-widget.php:49
|
803 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:58
|
804 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:109
|
805 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:297
|
806 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:370
|
807 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:406
|
808 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:96
|
809 |
msgid "No"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:618
|
813 |
+
#, php-format
|
814 |
+
msgid "<a href=\"?page=%s&action=%s&form=%s&_wpnonce=%s\">Edit</a>"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:619
|
818 |
+
#, php-format
|
819 |
+
msgid ""
|
820 |
+
"<a href=\"?page=%s&action=%s&form=%s&_wpnonce=%s\" onclick=\"return "
|
821 |
+
"checkDelete()\">Delete</a>"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:635
|
825 |
+
msgid "Shortcode"
|
|
|
|
|
|
|
|
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:636
|
829 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:553
|
830 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:438
|
831 |
+
msgid "Created"
|
|
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:663
|
835 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:583
|
836 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:249
|
837 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:330
|
838 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:465
|
839 |
+
msgid "Delete"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:673
|
843 |
+
msgid "Search Forms"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:709
|
847 |
+
msgid "You do not have permission to delete this form."
|
|
|
|
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:716
|
851 |
+
msgid "Form has been deleted successfully!"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:731
|
855 |
+
msgid "Form(s) have been deleted successfully!"
|
|
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:734
|
859 |
+
msgid "Please select form(s) to delete."
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:767
|
863 |
+
msgid "No Forms avaliable."
|
|
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:20
|
867 |
+
msgid "Contact"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:21
|
871 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:107
|
872 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:59
|
873 |
+
msgid "Contacts"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:53
|
877 |
+
msgid "Audience > Contacts"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:54
|
881 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:120
|
882 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:222
|
883 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:103
|
884 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:70
|
885 |
+
msgid "Add New Contact"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:55
|
889 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:223
|
890 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:50
|
891 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:71
|
892 |
+
msgid "Export Contacts"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:56
|
896 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:104
|
897 |
+
msgid "Import Contacts"
|
|
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:57
|
901 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:12
|
902 |
+
msgid "Sync"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:58
|
906 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:121
|
907 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:224
|
908 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:105
|
909 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:72
|
910 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:212
|
911 |
+
msgid "Manage Lists"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:145
|
915 |
+
msgid "Please Select List"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:184
|
919 |
+
msgid "Contact has been added successfully!"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:188
|
923 |
+
msgid "Contact already exist."
|
924 |
+
msgstr ""
|
925 |
+
|
926 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:322
|
927 |
+
msgid "Contact updated successfully!"
|
928 |
+
msgstr ""
|
929 |
+
|
930 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:327
|
931 |
+
msgid "Edit Contact"
|
932 |
+
msgstr ""
|
933 |
+
|
934 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:358
|
935 |
+
msgid "No list found"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:373
|
939 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:552
|
940 |
+
msgid "List(s)"
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:383
|
944 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:627
|
945 |
msgid "Save Changes"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:527
|
949 |
+
#, php-format
|
950 |
+
msgid "<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\">Edit</a>"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:528
|
954 |
+
#, php-format
|
955 |
+
msgid ""
|
956 |
+
"<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\" onclick=\"return "
|
957 |
+
"checkDelete()\">Delete</a>"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:534
|
961 |
+
#, php-format
|
962 |
+
msgid ""
|
963 |
+
"<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\">Resend "
|
964 |
+
"Confirmation<a>"
|
965 |
+
msgstr ""
|
966 |
+
|
967 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:584
|
968 |
+
msgid "Move To List"
|
969 |
+
msgstr ""
|
970 |
+
|
971 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:585
|
972 |
+
msgid "Add To List"
|
973 |
+
msgstr ""
|
974 |
+
|
975 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:586
|
976 |
+
msgid "Change Status"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:597
|
980 |
+
msgid "Search Contacts"
|
981 |
+
msgstr ""
|
982 |
+
|
983 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:602
|
984 |
+
msgid "All Statuses"
|
985 |
+
msgstr ""
|
986 |
+
|
987 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:608
|
988 |
+
msgid "All Lists"
|
989 |
+
msgstr ""
|
990 |
+
|
991 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:670
|
992 |
+
msgid "Contact have been updated successfully!"
|
993 |
+
msgstr ""
|
994 |
+
|
995 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:687
|
996 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:747
|
997 |
+
msgid "Contact(s) have been deleted successfully!"
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:717
|
1001 |
+
msgid "Confirmation email has been sent successfully!"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:735
|
1005 |
+
msgid "Please select subscribers to update."
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:758
|
1009 |
+
msgid "Please select status."
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:768
|
1013 |
+
msgid "Status has been changed successfully!"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:779
|
1017 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:799
|
1018 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:49
|
1019 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:43
|
1020 |
+
msgid "Please select list."
|
1021 |
+
msgstr ""
|
1022 |
+
|
1023 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:788
|
1024 |
+
msgid "Contact(s) have been moved to list successfully!"
|
1025 |
+
msgstr ""
|
1026 |
+
|
1027 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:808
|
1028 |
+
msgid "Contact(s) have been added to list successfully!"
|
1029 |
+
msgstr ""
|
1030 |
+
|
1031 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:818
|
1032 |
+
msgid "No contacts avaliable."
|
1033 |
+
msgstr ""
|
1034 |
+
|
1035 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-cron.php:135
|
1036 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:416
|
1037 |
+
msgid "Campaign Sent!"
|
1038 |
+
msgstr ""
|
1039 |
+
|
1040 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:46
|
1041 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:51
|
1042 |
+
msgid "Please select template."
|
1043 |
+
msgstr ""
|
1044 |
+
|
1045 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:75
|
1046 |
+
msgid "Campaigns > Broadcast"
|
1047 |
+
msgstr ""
|
1048 |
+
|
1049 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:77
|
1050 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:238
|
1051 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:52
|
1052 |
msgid "Manage Templates"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:84
|
1056 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:51
|
1057 |
+
msgid "Send Broadcast"
|
1058 |
+
msgstr ""
|
1059 |
+
|
1060 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:127
|
1061 |
+
msgid "Content of the selected template will be broadcasted."
|
1062 |
+
msgstr ""
|
1063 |
+
|
1064 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:133
|
1065 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:247
|
1066 |
+
msgid "Select List"
|
1067 |
+
msgstr ""
|
1068 |
+
|
1069 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:139
|
1070 |
+
msgid "Contacts from the selected list will be notified."
|
1071 |
+
msgstr ""
|
1072 |
+
|
1073 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:40
|
1074 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:187
|
1075 |
+
msgid "Post Notification"
|
1076 |
+
msgstr ""
|
1077 |
+
|
1078 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:45
|
1079 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:49
|
1080 |
+
msgid "Available Keywords"
|
1081 |
+
msgstr ""
|
1082 |
+
|
1083 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:49
|
1084 |
+
msgid "for Newsletter:"
|
1085 |
+
msgstr ""
|
1086 |
+
|
1087 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:87
|
1088 |
+
msgid "Preview Template"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:193
|
1092 |
+
msgid "Template Type"
|
1093 |
+
msgstr ""
|
1094 |
+
|
1095 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:15
|
1096 |
+
msgid "Import Subscribers"
|
1097 |
+
msgstr ""
|
1098 |
+
|
1099 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:114
|
1100 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:118
|
1101 |
#, php-format
|
1102 |
+
msgid "Total %d contacts have been imported successfully!"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:122
|
|
|
1106 |
#, php-format
|
1107 |
+
msgid "%d contacts are already exists."
|
|
|
|
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:127
|
1111 |
+
#, php-format
|
1112 |
+
msgid "%d contacts are invalid."
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:137
|
1116 |
+
msgid "Error: Please Select List"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:141
|
1120 |
+
msgid "Error: Please select status"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:145
|
1124 |
+
msgid "Error: Please Upload only CSV File"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:149
|
1128 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:153
|
1129 |
+
msgid "Error: Please Upload File"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:172
|
1133 |
+
msgid "Select CSV file"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:174
|
1137 |
+
msgid "Check CSV structure"
|
|
|
|
|
|
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:175
|
1141 |
+
msgid "from here"
|
1142 |
+
msgstr ""
|
1143 |
+
|
1144 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:186
|
1145 |
+
msgid "Select status"
|
1146 |
+
msgstr ""
|
1147 |
+
|
1148 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:198
|
1149 |
+
msgid "Select list"
|
1150 |
+
msgstr ""
|
1151 |
+
|
1152 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:210
|
1153 |
+
msgid "Import"
|
1154 |
+
msgstr ""
|
1155 |
+
|
1156 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:221
|
1157 |
+
msgid "Audience > Import Contacts"
|
1158 |
+
msgstr ""
|
1159 |
+
|
1160 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-widget.php:11
|
1161 |
+
msgid "Email Subscribers Widget"
|
1162 |
+
msgstr ""
|
1163 |
+
|
1164 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:27
|
1165 |
+
msgid "No data available"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:60
|
1169 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:270
|
1170 |
msgid "Total Contacts"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:61
|
1174 |
msgid "Export"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:70
|
1178 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:437
|
1179 |
msgid "All Contacts"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:71
|
1183 |
msgid "Subscribed Contacts"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:72
|
1187 |
msgid "Unsubscribed Contacts"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:89
|
1191 |
msgid "Download"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:102
|
1195 |
msgid "Audience > Export Contacts"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:192
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1199 |
msgid "Export the Subscribers"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:224
|
1203 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:98
|
1204 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:267
|
1205 |
msgid "Status"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
#. __( 'List', 'email-subscribers' ),
|
1209 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:225
|
1210 |
msgid "Created On"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:69
|
1214 |
+
msgid "Audience > Sync Contacts"
|
|
|
|
|
|
|
|
|
|
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:84
|
1218 |
+
msgid "Please select List"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:104
|
1222 |
+
msgid "Sync newly registered users to subscribers list"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:117
|
1226 |
+
msgid "Select list to add newly registered users to"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:130
|
1230 |
+
msgid "Sync Now"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:59
|
1234 |
+
msgid "Please select categories."
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:78
|
1238 |
+
msgid "Post notification has been added successfully!"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:191
|
1242 |
+
msgid "Post notification has been updated successfully!"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:218
|
1246 |
+
msgid "Campaigns > New Post Notification"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:221
|
1250 |
+
msgid "Campigns > Edit Post Notification"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:248
|
1254 |
+
msgid ""
|
1255 |
+
"Contacts from the selected list will be notified about new post notification."
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:259
|
1259 |
+
msgid "Select template"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:260
|
1263 |
+
msgid "Content of the selected template will be sent out as post notification."
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:285
|
1267 |
+
msgid "Select Post Category"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:286
|
1271 |
+
msgid ""
|
1272 |
+
"Notification will be sent out when any post from selected categories will be "
|
1273 |
+
"published."
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:299
|
1277 |
+
msgid "Select custom post type(s)"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:300
|
1281 |
+
msgid ""
|
1282 |
+
"(Optional) Select custom post type for which you want to send notification."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-info.php:22
|
1286 |
+
msgid "<span class=\"es-fire-sale\"> 🔥 </span> Go Pro"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:81
|
1290 |
+
msgid "General"
|
|
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:82
|
1294 |
+
msgid "Notifications"
|
|
|
|
|
|
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:83
|
1298 |
+
msgid "Email Sending"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:84
|
1302 |
+
msgid "Security"
|
|
|
|
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:131
|
1306 |
+
msgid "Sender"
|
|
|
|
|
|
|
|
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:136
|
1310 |
+
msgid "Choose a FROM name for all the emails to be sent from this plugin."
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:145
|
1314 |
+
msgid ""
|
1315 |
+
"Choose a FROM email address for all the emails to be sent from this plugin"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:147
|
1319 |
+
msgid "Email Address"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:155
|
1323 |
+
msgid "Email Addresses"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:157
|
1327 |
+
msgid ""
|
1328 |
+
"Enter the admin email addresses that should receive notifications (separated "
|
1329 |
+
"by comma)."
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:163
|
1333 |
+
msgid "Email Type"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:164
|
1337 |
+
msgid ""
|
1338 |
+
"Select whether to send HTML or Plain Text email using WordPress or PHP mail()"
|
1339 |
+
". We recommend to send email using WordPres"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:172
|
1343 |
+
msgid "Opt-in Type"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:181
|
1347 |
+
msgid "Image Size"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:184
|
1351 |
+
msgid ""
|
1352 |
+
"<p>Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
1353 |
+
"Emails.</p>"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:190
|
1357 |
+
msgid "Track Opens"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:192
|
1361 |
+
msgid "Check this if you want to track email opening."
|
|
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:204
|
1365 |
+
msgid "Show Unsubscribe Message In Email Footer"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:205
|
1369 |
+
msgid ""
|
1370 |
+
"Add text which you want your contact to see in footer to unsubscribe. Use "
|
1371 |
+
"{{UNSUBSCRIBE-LINK}} keyword to add unsubscribe link."
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:212
|
1375 |
+
msgid "Subscription Success/ Error Messages"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:219
|
1379 |
+
msgid "You have been subscribed successfully!"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:221
|
1383 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:251
|
1384 |
+
msgid "Success Message"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:222
|
1388 |
+
msgid ""
|
1389 |
+
"Show this message if contact is successfully subscribed from Double Opt-In "
|
1390 |
+
"(Confirmation) Email"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:230
|
1394 |
+
msgid ""
|
1395 |
+
"Oops.. Your request couldn't be completed. This email address seems to be "
|
1396 |
+
"already subscribed / blocked."
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:232
|
1400 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:263
|
1401 |
+
msgid "Error Message"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:233
|
1405 |
+
msgid ""
|
1406 |
+
"Show this message if any error occured after clicking confirmation link from "
|
1407 |
+
"Double Opt-In (Confirmation) Email."
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:241
|
1411 |
+
msgid "Unsubscribe Success/ Error Messages"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:249
|
1415 |
+
msgid ""
|
1416 |
+
"Thank You, You have been successfully unsubscribed. You will no longer hear "
|
1417 |
+
"from us."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:252
|
1421 |
+
msgid ""
|
1422 |
+
"Once contact clicks on unsubscribe link, he/she will be redirected to a page "
|
1423 |
+
"where this message will be shown."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:264
|
1427 |
+
msgid ""
|
1428 |
+
"Show this message if any error occured after clicking on unsubscribe link."
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:292
|
1432 |
+
msgid "Welcome Email"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:302
|
1436 |
+
msgid "Enable?"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:303
|
1440 |
+
msgid "Send welcome email to new contact after signup."
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:313
|
1444 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:341
|
1445 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:379
|
1446 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:418
|
1447 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:265
|
1448 |
+
msgid "Subject"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:323
|
1452 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:352
|
1453 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:387
|
1454 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:429
|
1455 |
+
msgid "Content"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:324
|
1459 |
+
msgid "Available keywords. {{NAME}}, {{EMAIL}}, {{LIST}}, {{UNSUBSCRIBE-LINK}}"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:331
|
1463 |
+
msgid "Confirmation Email"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:353
|
1467 |
+
msgid ""
|
1468 |
+
"If Double Optin is set, contact will receive confirmation email with above "
|
1469 |
+
"content. You can use {{NAME}}, {{EMAIL}}, {{SUBSCRIBE-LINK}} keywords"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:361
|
1473 |
+
msgid "Admin Notification On New Subscription"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:366
|
1477 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:402
|
1478 |
+
msgid "Notify?"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:372
|
1482 |
+
msgid "Set this option to \"Yes\" to notify admin(s) for new contact signup."
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:381
|
1486 |
+
msgid ""
|
1487 |
+
"Subject for the admin email whenever a new contact signs up and is confirmed"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:382
|
1491 |
+
msgid "New email subscription"
|
|
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:389
|
1495 |
+
msgid ""
|
1496 |
+
"Content for the admin email whenever a new subscriber signs up and is "
|
1497 |
+
"confirmed. Available Keywords: {{NAME}}, {{EMAIL}}, {{LIST}}"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:397
|
1501 |
+
msgid "Admin Notification On Every Campaign Sent"
|
|
|
|
|
1502 |
msgstr ""
|
1503 |
|
1504 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:408
|
1505 |
+
msgid "Set this option to \"Yes\" to notify admin(s) on every campaign sent."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:430
|
1509 |
+
msgid ""
|
1510 |
+
"Send report to admin(s) whenever campaign is successfully sent to all "
|
1511 |
+
"contacts. Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:445
|
1515 |
+
msgid "Cron URL"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:455
|
1519 |
+
msgid "Disable WordPress Cron"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:456
|
1523 |
+
msgid ""
|
1524 |
+
"Check this if you do not want Email Subscribers to use WP cron for sending "
|
1525 |
+
"emails"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:465
|
1529 |
+
msgid "Maximum Emails To Send In An Hour"
|
|
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:466
|
1533 |
+
msgid "Total emails your host can send in an hour."
|
|
|
|
|
|
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:476
|
1537 |
+
msgid "Send Test Email"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:477
|
1541 |
+
msgid "Enter email address to send test email."
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:484
|
1545 |
+
msgid "Blocked Domain(s)"
|
|
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:486
|
1549 |
+
msgid ""
|
1550 |
+
"Seeing spam signups from particular domains? Enter domains names (one per "
|
1551 |
+
"line) that you want to block here."
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:72
|
1555 |
msgid "Widget Title"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:76
|
1559 |
msgid "Short description about subscription form"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:80
|
1563 |
msgid "Display Name Field"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:82
|
1567 |
msgid "YES"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:83
|
1571 |
msgid "NO"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:87
|
1575 |
msgid "Subscriber Group"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-form-widget.php:11
|
1579 |
+
msgid "Email Subscribers Form"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:19
|
1583 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:20
|
1584 |
+
msgid "Campaign"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:50
|
1588 |
+
msgid "Create Post Notification"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:158
|
1592 |
+
msgid "No Campaigns Found."
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:233
|
1596 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:418
|
1597 |
+
#, php-format
|
1598 |
+
msgid "<a href=\"?page=%s&action=%s&list=%s&_wpnonce=%s\">Edit</a>"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:236
|
1602 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:419
|
1603 |
+
#, php-format
|
1604 |
msgid ""
|
1605 |
+
"<a href=\"?page=%s&action=%s&list=%s&_wpnonce=%s\" onclick=\"return "
|
1606 |
+
"checkDelete()\">Delete</a>"
|
|
|
|
|
|
|
1607 |
msgstr ""
|
1608 |
|
1609 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:296
|
1610 |
+
msgid "Search Campaigns"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:333
|
1614 |
+
msgid "You are not allowed to delete campaign."
|
1615 |
msgstr ""
|
1616 |
|
1617 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:337
|
1618 |
+
msgid "Campaign has been deleted successfully!"
|
|
|
|
|
1619 |
msgstr ""
|
1620 |
|
1621 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:356
|
1622 |
+
msgid "Campaign(s) have been deleted successfully!"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:361
|
1626 |
+
msgid "Please check campaign(s) to delete."
|
|
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:19
|
1630 |
msgid "Report"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:48
|
1634 |
#, php-format
|
1635 |
msgid ""
|
1636 |
"<a href='%s' target='_blank' class='page-title-action es-imp-button'>Send "
|
1637 |
"Queued Emails Now</a>"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:50
|
1641 |
msgid ""
|
1642 |
"<span class='page-title-action button-disabled'>Send Queued Emails Now</span>"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:51
|
1646 |
msgid "<br /><span class='es-helper'>No emails found in queue</span>"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:99
|
1650 |
msgid "Sent Date"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:100
|
1654 |
msgid "Viewed Status"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:101
|
1658 |
msgid "Viewed Date"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:154
|
1662 |
msgid "Viewed"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:154
|
1666 |
msgid "Not yet viewed"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:167
|
1670 |
msgid "No Reports avaliable."
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:209
|
|
|
|
|
|
|
|
|
|
|
1674 |
msgid "Completed"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:248
|
1678 |
msgid "View"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:250
|
1682 |
msgid "Preview"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:266
|
1686 |
msgid "Type"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:268
|
1690 |
msgid "Start Date"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:269
|
1694 |
msgid "End Date"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:368
|
1698 |
msgid "You do not have permission to view notification"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:380
|
1702 |
msgid "You do not have permission to delete notification"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:385
|
1706 |
msgid "Report has been deleted successfully!"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:394
|
1710 |
msgid "You do not have permission to preview notification"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:412
|
1714 |
msgid "Reports have been deleted successfully!"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:433
|
1718 |
msgid "Preview Email"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:436
|
1722 |
msgid ""
|
1723 |
"This is how the email you sent may look. <br>Note: Different email services "
|
1724 |
"(like gmail, yahoo etc) display email content differently. So there could be "
|
1725 |
"a slight variation on how your customer will view the email content."
|
1726 |
msgstr ""
|
1727 |
|
1728 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:42
|
1729 |
+
msgid "Audience > Lists"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1730 |
msgstr ""
|
1731 |
|
1732 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:83
|
1733 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:512
|
1734 |
+
msgid "You do not have permission to edit list"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:85
|
1738 |
+
msgid "Please add list name"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:128
|
1742 |
+
msgid "List has been added successfully!"
|
|
|
1743 |
msgstr ""
|
1744 |
|
1745 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:169
|
1746 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:516
|
1747 |
+
msgid "List has been updated successfully!"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:208
|
1751 |
+
msgid "Edit List"
|
|
|
|
|
|
|
1752 |
msgstr ""
|
1753 |
|
1754 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:368
|
1755 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:377
|
1756 |
#, php-format
|
1757 |
+
msgid "<a href=\"%s\" target=\"_blank\">%d</a>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:475
|
1761 |
+
msgid "Search Lists"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:528
|
1765 |
+
msgid "You do not have permission to delete list"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:533
|
1769 |
+
msgid "List has been deleted successfully!"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:548
|
1773 |
+
msgid "List(s) have been deleted successfully"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:551
|
1777 |
+
msgid "Please select list"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:388
|
1781 |
+
msgid "Invalid name"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:390
|
1785 |
+
msgid "Oops...unable to add subscriber"
|
|
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:391
|
1789 |
+
msgid "You do not have permission to add subscriber"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:392
|
1793 |
+
msgid "Please select the list"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:393
|
1797 |
+
msgid "Invalid Captcha"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-tools.php:31
|
1801 |
+
#, php-format
|
1802 |
+
msgid "Test email to %s"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-tools.php:35
|
1806 |
msgid "Email has been sent. Please check your inbox"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-tools.php:38
|
1810 |
+
msgid "Something went wrong"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1811 |
msgstr ""
|
1812 |
|
1813 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/notices/class-es-admin-notices.php:97
|
1814 |
msgid "Action failed. Please refresh the page and retry."
|
1815 |
msgstr ""
|
1816 |
|
1817 |
#. %d: interval
|
1818 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/upgrade/class-es-background-process.php:171
|
1819 |
#, php-format
|
1820 |
msgid "Every %d minutes"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/public/partials/cron-message.php:33
|
1824 |
+
msgid "Total Emails Sent"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/public/partials/cron-message.php:37
|
1828 |
+
msgid "Total Emails In Queue"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/public/partials/class-es-shortcode.php:139
|
1832 |
+
msgid "Enter Name"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/public/partials/class-es-shortcode.php:171
|
1836 |
+
msgid "Enter Email Address"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/notices/views/html-notice-update.php:19
|
1840 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/notices/views/html-notice-updating.php:19
|
1841 |
msgid "Email Subscribers data update"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/notices/views/html-notice-update.php:19
|
1845 |
msgid "We need to update your data store to the latest version."
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/notices/views/html-notice-update.php:23
|
1849 |
msgid "Run the updater"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/notices/views/html-notice-update.php:29
|
1853 |
msgid "Are you sure you wish to run the updater now?"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/notices/views/html-notice-updated.php:12
|
1857 |
msgid "Dismiss"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/notices/views/html-notice-updated.php:14
|
1861 |
msgid ""
|
1862 |
"Email Subscribers data update complete. Thank you for updating to the latest "
|
1863 |
"version!"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/notices/views/html-notice-updating.php:19
|
1867 |
msgid "Your database is being updated in the background."
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: ../../../../wpRepos/gitlab/email-subscribers/includes/notices/views/html-notice-updating.php:21
|
1871 |
msgid "Taking a while? Click here to run it now."
|
1872 |
msgstr ""
|
1873 |
|
public/class-email-subscribers-public.php
CHANGED
@@ -132,6 +132,7 @@ class Email_Subscribers_Public {
|
|
132 |
//initialize
|
133 |
new ES_Cron();
|
134 |
new ES_Handle_Subscription();
|
|
|
135 |
|
136 |
$option = ! empty( $_REQUEST['es'] ) ? $_REQUEST['es'] : '';
|
137 |
$db_id = ! empty( $_REQUEST['db'] ) ? $_REQUEST['db'] : '';
|
132 |
//initialize
|
133 |
new ES_Cron();
|
134 |
new ES_Handle_Subscription();
|
135 |
+
new ES_Shortcode();
|
136 |
|
137 |
$option = ! empty( $_REQUEST['es'] ) ? $_REQUEST['es'] : '';
|
138 |
$db_id = ! empty( $_REQUEST['db'] ) ? $_REQUEST['db'] : '';
|
public/partials/class-es-shortcode.php
CHANGED
@@ -123,6 +123,10 @@ class ES_Shortcode {
|
|
123 |
$form_id = ! empty( $data['form_id'] ) ? $data['form_id'] : 0;
|
124 |
$list = ! empty( $data['list'] ) ? $data['list'] : 0;
|
125 |
$desc = ! empty( $data['desc'] ) ? $data['desc'] : 0;
|
|
|
|
|
|
|
|
|
126 |
$current_page = get_the_ID();
|
127 |
$current_page_url = get_the_permalink( get_the_ID() );
|
128 |
|
@@ -230,7 +234,4 @@ class ES_Shortcode {
|
|
230 |
|
231 |
}
|
232 |
|
233 |
-
add_action( 'init', function () {
|
234 |
-
$obj = new ES_Shortcode();
|
235 |
-
} );
|
236 |
|
123 |
$form_id = ! empty( $data['form_id'] ) ? $data['form_id'] : 0;
|
124 |
$list = ! empty( $data['list'] ) ? $data['list'] : 0;
|
125 |
$desc = ! empty( $data['desc'] ) ? $data['desc'] : 0;
|
126 |
+
//replace total contact
|
127 |
+
$total_contacts = ES_DB_Contacts::count_active_subscribers_by_list_id();
|
128 |
+
$desc = str_replace( "{{TOTAL-CONTACTS}}", $total_contacts, $desc );
|
129 |
+
|
130 |
$current_page = get_the_ID();
|
131 |
$current_page_url = get_the_permalink( get_the_ID() );
|
132 |
|
234 |
|
235 |
}
|
236 |
|
|
|
|
|
|
|
237 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ 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.1.1
|
8 |
-
Stable tag: 4.0.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses
|
11 |
|
@@ -301,6 +301,10 @@ Use our free plugin [Email Subscribers - Group Selector](https://wordpress.org/p
|
|
301 |
|
302 |
== Changelog ==
|
303 |
|
|
|
|
|
|
|
|
|
304 |
= 4.0.16 (23.04.2019) =
|
305 |
* New : New keywords added : {{TOTAL-CONTACTC}} , {{SITEURL}}, {{SITENAME}}
|
306 |
* New : Added option to enable/ disable WordPress Cron for Email Subscribers
|
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.1.1
|
8 |
+
Stable tag: 4.0.17
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses
|
11 |
|
301 |
|
302 |
== Changelog ==
|
303 |
|
304 |
+
= 4.0.17 (03.05.2019) =
|
305 |
+
* New : New keywords added : {{TOTAL-CONTACTC}} in form description
|
306 |
+
* Fix : Post/page editor issue with RTL sites
|
307 |
+
|
308 |
= 4.0.16 (23.04.2019) =
|
309 |
* New : New keywords added : {{TOTAL-CONTACTC}} , {{SITEURL}}, {{SITENAME}}
|
310 |
* New : Added option to enable/ disable WordPress Cron for Email Subscribers
|