Version Description
(19.11.2018) =
- Update: Now, email subscription limit also check for non admin users.
Download this release
Release Info
Developer | Icegram |
Plugin | Email Subscribers & Newsletters |
Version | 3.5.17 |
Comparing to | |
See all releases |
Code changes from version 3.5.16 to 3.5.17
- classes/es-directly.php +1 -0
- classes/es-offer.php +4 -63
- classes/es-register.php +4 -4
- classes/es-subscription-throttling.php +1 -1
- email-subscribers.php +1 -1
- images/happy-hallowen.png +0 -0
- images/ig-offer.png +0 -0
- job/es-cron.php +51 -32
- job/es-subscribe.php +4 -0
- languages/email-subscribers.pot +2372 -5
- readme.txt +5 -1
- subscribers/view-subscriber-import.php +1 -1
classes/es-directly.php
CHANGED
@@ -8,6 +8,7 @@ function es_plugin_query_vars($vars) {
|
|
8 |
$vars[] = 'es';
|
9 |
return $vars;
|
10 |
}
|
|
|
11 |
add_filter('query_vars', 'es_plugin_query_vars');
|
12 |
|
13 |
function es_plugin_parse_request($qstring) {
|
8 |
$vars[] = 'es';
|
9 |
return $vars;
|
10 |
}
|
11 |
+
|
12 |
add_filter('query_vars', 'es_plugin_query_vars');
|
13 |
|
14 |
function es_plugin_parse_request($qstring) {
|
classes/es-offer.php
CHANGED
@@ -1,73 +1,14 @@
|
|
1 |
<?php
|
2 |
-
if( get_option('
|
3 |
?>
|
4 |
<style type="text/css">
|
5 |
.es_offer{
|
6 |
width: 70%;
|
7 |
-
|
8 |
-
margin: 1em auto;
|
9 |
text-align: center;
|
10 |
-
|
11 |
-
font-size: 1.2em;
|
12 |
-
letter-spacing: 3px;
|
13 |
-
line-height: 1em;
|
14 |
-
padding: 1.2em;
|
15 |
-
background-image: url('<?php echo ES_URL ?>/images/happy-hallowen.png');
|
16 |
-
background-repeat: no-repeat;
|
17 |
-
background-size: 40%;
|
18 |
-
background-position: left;
|
19 |
-
}
|
20 |
-
.es_offer_heading{
|
21 |
-
color: #FFF;
|
22 |
-
padding: 1em 0;
|
23 |
-
line-height: 1em;
|
24 |
-
margin-left: 9em;
|
25 |
-
}
|
26 |
-
.es_main_heading {
|
27 |
-
font-size: 5em;
|
28 |
-
color: #b70f0f;
|
29 |
-
font-weight: 600;
|
30 |
-
line-height: 1em;
|
31 |
-
position: relative;
|
32 |
-
}
|
33 |
-
|
34 |
-
.es_text{
|
35 |
-
font-size: 0.9em;
|
36 |
-
}
|
37 |
-
.es_left_text{
|
38 |
-
padding: 0.5em 0em;
|
39 |
-
color: #000;
|
40 |
-
}
|
41 |
-
.es_right_text{
|
42 |
-
color: #FFFFFF;
|
43 |
-
font-weight: 600;
|
44 |
-
max-width: 50%;
|
45 |
-
padding: 10px 56px;
|
46 |
-
width: auto;
|
47 |
-
margin: 0.3em 0em;
|
48 |
-
display: inline-block;
|
49 |
-
text-decoration: none;
|
50 |
-
background: #b70f0f;
|
51 |
-
font-size: 2em;
|
52 |
-
line-height: 1.2em;
|
53 |
-
}
|
54 |
-
.es_right_text:hover, .es_right_text:active{
|
55 |
-
color: inherit;
|
56 |
-
}
|
57 |
-
.es_offer_content{
|
58 |
-
margin-left: 35%;
|
59 |
}
|
60 |
</style>
|
61 |
<div class="es_offer">
|
62 |
-
<
|
63 |
-
<div class="es_offer_content">
|
64 |
-
<div class="es_offer_heading">— Halloween Sale —</div>
|
65 |
-
<div class="es_main_heading">Upto 50% OFF</div>
|
66 |
-
<div class="es_text">
|
67 |
-
<div class="es_left_text" style="font-size:1.1em;">Offer applicable on</div>
|
68 |
-
<div class="es_left_text" style="font-size:1.1em;"> <span style="color:#FFF;font-weight:bold">Icegram, Rainmaker & Email Subscribers</span></div>
|
69 |
-
<a href="?dismiss_admin_notice=1&option_name=es_offer_halloween_done_2018" target="_blank" class="es_right_text">Claim This Offer</a>
|
70 |
-
<div class="es_left_text">Offer ends on 2nd November, 2018 - so hurry.. </div>
|
71 |
-
</div>
|
72 |
-
</div>
|
73 |
</div>
|
1 |
<?php
|
2 |
+
if( get_option('es_offer_bfcm_done_2018_email_subscribers') == 'no' ) return;
|
3 |
?>
|
4 |
<style type="text/css">
|
5 |
.es_offer{
|
6 |
width: 70%;
|
7 |
+
margin: 0 auto;
|
|
|
8 |
text-align: center;
|
9 |
+
padding-top: 1.2em;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
}
|
11 |
</style>
|
12 |
<div class="es_offer">
|
13 |
+
<a target="_blank" href="?dismiss_admin_notice=1&option_name=es_offer_bfcm_done_2018"><img src="<?php echo ES_URL ?>/images/ig-offer.png" /></a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
</div>
|
classes/es-register.php
CHANGED
@@ -849,8 +849,8 @@ class es_cls_registerhook {
|
|
849 |
//halloween 2018 :start
|
850 |
$timezone_format = _x( 'Y-m-d', 'timezone date format' );
|
851 |
$ig_current_date = strtotime( date_i18n( $timezone_format ) );
|
852 |
-
$ig_offer_start = strtotime( "2018-
|
853 |
-
$ig_offer_end = strtotime( "2018-11-
|
854 |
if ( ( $ig_current_date >= $ig_offer_start ) && ( $ig_current_date <= $ig_offer_end ) ) {
|
855 |
include_once( 'es-offer.php' );
|
856 |
}
|
@@ -862,8 +862,8 @@ class es_cls_registerhook {
|
|
862 |
if ( isset( $_GET['dismiss_admin_notice'] ) && $_GET['dismiss_admin_notice'] == '1' && isset( $_GET['option_name'] ) ) {
|
863 |
$option_name = sanitize_text_field( $_GET['option_name'] );
|
864 |
update_option( $option_name . '_email_subscribers', 'no' );
|
865 |
-
if ( $option_name === '
|
866 |
-
header( "Location: https://www.icegram.com/latest-valid-coupons-discounts-offers-deals/?utm_source=in_app&utm_medium=es_banner&utm_campaign=
|
867 |
exit();
|
868 |
} else {
|
869 |
$referer = wp_get_referer();
|
849 |
//halloween 2018 :start
|
850 |
$timezone_format = _x( 'Y-m-d', 'timezone date format' );
|
851 |
$ig_current_date = strtotime( date_i18n( $timezone_format ) );
|
852 |
+
$ig_offer_start = strtotime( "2018-11-22" );
|
853 |
+
$ig_offer_end = strtotime( "2018-11-28" );
|
854 |
if ( ( $ig_current_date >= $ig_offer_start ) && ( $ig_current_date <= $ig_offer_end ) ) {
|
855 |
include_once( 'es-offer.php' );
|
856 |
}
|
862 |
if ( isset( $_GET['dismiss_admin_notice'] ) && $_GET['dismiss_admin_notice'] == '1' && isset( $_GET['option_name'] ) ) {
|
863 |
$option_name = sanitize_text_field( $_GET['option_name'] );
|
864 |
update_option( $option_name . '_email_subscribers', 'no' );
|
865 |
+
if ( $option_name === 'es_offer_bfcm_done_2018' ) {
|
866 |
+
header( "Location: https://www.icegram.com/latest-valid-coupons-discounts-offers-deals/?utm_source=in_app&utm_medium=es_banner&utm_campaign=bfcm_2018" );
|
867 |
exit();
|
868 |
} else {
|
869 |
$referer = wp_get_referer();
|
classes/es-subscription-throttling.php
CHANGED
@@ -11,7 +11,7 @@ class es_cls_subscription_throttaling {
|
|
11 |
|
12 |
global $wpdb;
|
13 |
|
14 |
-
if ( ! is_user_logged_in() ) {
|
15 |
|
16 |
$subscriber_ip = es_cls_helpers::getUserIP();
|
17 |
|
11 |
|
12 |
global $wpdb;
|
13 |
|
14 |
+
if ( ! ( is_user_logged_in() && is_super_admin() ) ) {
|
15 |
|
16 |
$subscriber_ip = es_cls_helpers::getUserIP();
|
17 |
|
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: 3.5.
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.9
|
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: 3.5.17
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.9
|
images/happy-hallowen.png
DELETED
Binary file
|
images/ig-offer.png
ADDED
Binary file
|
job/es-cron.php
CHANGED
@@ -7,47 +7,66 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
7 |
|
8 |
if( (isset($_GET['es'])) && ($_GET['es'] == "cron") ) {
|
9 |
|
|
|
10 |
$es_process_request = true;
|
11 |
$es_process_request = apply_filters( 'es_process_request' , $es_process_request );
|
12 |
-
if( false === $es_process_request )
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
}
|
32 |
-
|
33 |
-
$cronmailqueue = es_cls_sentmail::es_sentmail_cronmail_inqueue();
|
34 |
-
if(count($cronmailqueue) > 0) {
|
35 |
-
$crondeliveryqueue = es_cls_delivery::es_delivery_cronmail_inqueue($es_c_croncount, $cronmailqueue[0]['es_sent_guid']);
|
36 |
-
if(count($crondeliveryqueue) > 0) {
|
37 |
-
es_cls_sendmail::es_prepare_send_cronmail($cronmailqueue, $crondeliveryqueue);
|
38 |
}
|
39 |
|
40 |
-
$
|
41 |
-
if($
|
42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
}
|
|
|
|
|
|
|
|
|
|
|
44 |
}
|
45 |
-
|
46 |
-
$response =
|
47 |
-
|
48 |
}
|
|
|
|
|
|
|
49 |
}
|
|
|
|
|
|
|
50 |
}
|
|
|
51 |
}
|
|
|
|
|
|
|
|
|
|
|
52 |
}
|
53 |
die();
|
7 |
|
8 |
if( (isset($_GET['es'])) && ($_GET['es'] == "cron") ) {
|
9 |
|
10 |
+
$response = array('status' => 'SUCCESS', 'es_remaining_email_count' => 100);
|
11 |
$es_process_request = true;
|
12 |
$es_process_request = apply_filters( 'es_process_request' , $es_process_request );
|
13 |
+
if( false === $es_process_request ) {
|
14 |
+
$response['status'] = 'ERROR';
|
15 |
+
$response['message'] = 'DO_NOT_PROCESS_REQUEST';
|
16 |
+
} else {
|
17 |
+
$es_c_cronguid = isset($_GET['guid']) ? $_GET['guid'] : '';
|
18 |
+
$es_c_cronguid = trim($es_c_cronguid);
|
19 |
+
if($es_c_cronguid != "") {
|
20 |
+
$security1 = strlen($es_c_cronguid);
|
21 |
+
$es_c_cronguid_noslash = str_replace("-", "", $es_c_cronguid);
|
22 |
+
$security2 = strlen($es_c_cronguid_noslash);
|
23 |
+
if($security1 == 34 && $security2 == 30) {
|
24 |
+
if ( !preg_match('/[^a-z]/', $es_c_cronguid_noslash) ) {
|
25 |
+
$es_c_cronurl = get_option('ig_es_cronurl');
|
26 |
+
$es_c_croncount = get_option('ig_es_cron_mailcount');
|
27 |
+
$es_c_croncount = apply_filters('es_email_sending_limit', $es_c_croncount );
|
28 |
+
parse_str($es_c_cronurl, $output);
|
29 |
+
if($es_c_cronguid == $output['guid']) {
|
30 |
+
if( !is_numeric($es_c_croncount) ) { //if $es_c_croncount is coming empty, then set $es_c_croncount should be passed empty?
|
31 |
+
$es_c_croncount = 50;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
}
|
33 |
|
34 |
+
$cronmailqueue = es_cls_sentmail::es_sentmail_cronmail_inqueue();
|
35 |
+
if(count($cronmailqueue) > 0) {
|
36 |
+
$crondeliveryqueue = es_cls_delivery::es_delivery_cronmail_inqueue($es_c_croncount, $cronmailqueue[0]['es_sent_guid']);
|
37 |
+
if(count($crondeliveryqueue) > 0) {
|
38 |
+
es_cls_sendmail::es_prepare_send_cronmail($cronmailqueue, $crondeliveryqueue);
|
39 |
+
}
|
40 |
+
|
41 |
+
$cronmailqueuecnt = es_cls_delivery::es_delivery_cronmail_count($cronmailqueue[0]['es_sent_guid']);
|
42 |
+
if($cronmailqueuecnt == 0) {
|
43 |
+
es_cls_sentmail::es_sentmail_cronmail_ups($cronmailqueue[0]['es_sent_guid']);
|
44 |
+
}
|
45 |
}
|
46 |
+
$cronmailqueuecnt = (!empty($cronmailqueuecnt)) ? $cronmailqueuecnt : 0;
|
47 |
+
$response['es_remaining_email_count'] = $cronmailqueuecnt;
|
48 |
+
} else {
|
49 |
+
$response['status'] = 'ERROR';
|
50 |
+
$response['message'] = 'CRON_GUID_DOES_NOT_MATCH';
|
51 |
}
|
52 |
+
} else {
|
53 |
+
$response['status'] = 'ERROR';
|
54 |
+
$response['message'] = 'CRON_GUID_PATTERN_DOES_NOT_MATCH';
|
55 |
}
|
56 |
+
} else {
|
57 |
+
$response['status'] = 'ERROR';
|
58 |
+
$response['message'] = 'INVALID_CRON_GUID';
|
59 |
}
|
60 |
+
} else {
|
61 |
+
$response['status'] = 'ERROR';
|
62 |
+
$response['message'] = 'EMPTY_CRON_GUID';
|
63 |
}
|
64 |
+
|
65 |
}
|
66 |
+
|
67 |
+
echo json_encode($response);
|
68 |
+
die();
|
69 |
+
|
70 |
+
|
71 |
}
|
72 |
die();
|
job/es-subscribe.php
CHANGED
@@ -42,6 +42,9 @@ if ( ! class_exists( 'es_cls_job_subscribe' ) ) {
|
|
42 |
return $es_response;
|
43 |
}
|
44 |
|
|
|
|
|
|
|
45 |
//block address list
|
46 |
$es_disposable_list = array( '\.ru' );
|
47 |
if ( preg_match( '/(' . implode( '|', $es_disposable_list ) . ')$/i', trim( $_POST['esfpx_es_txt_email'] ) ) ) {
|
@@ -50,6 +53,7 @@ if ( ! class_exists( 'es_cls_job_subscribe' ) ) {
|
|
50 |
|
51 |
return $es_response;
|
52 |
}
|
|
|
53 |
|
54 |
if ( ( isset( $_POST['es'] ) ) && ( 'subscribe' === $_POST['es'] ) && !empty( $_POST['esfpx_es-subscribe'] ) ) {
|
55 |
|
42 |
return $es_response;
|
43 |
}
|
44 |
|
45 |
+
/*
|
46 |
+
* We have fixed spam issue in ES 3.5.16.
|
47 |
+
* So, we don't have to do *.ru restriction again here
|
48 |
//block address list
|
49 |
$es_disposable_list = array( '\.ru' );
|
50 |
if ( preg_match( '/(' . implode( '|', $es_disposable_list ) . ')$/i', trim( $_POST['esfpx_es_txt_email'] ) ) ) {
|
53 |
|
54 |
return $es_response;
|
55 |
}
|
56 |
+
*/
|
57 |
|
58 |
if ( ( isset( $_POST['es'] ) ) && ( 'subscribe' === $_POST['es'] ) && !empty( $_POST['esfpx_es-subscribe'] ) ) {
|
59 |
|
languages/email-subscribers.pot
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Email Subscribers & Newsletters 3.5.4\n"
|
6 |
"Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
|
7 |
-
"POT-Creation-Date: 2018-
|
8 |
"POT-Revision-Date: Mon Aug 06 2018 14:11:14 GMT+0530 (IST)\n"
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: \n"
|
@@ -24,6 +24,2377 @@ msgstr ""
|
|
24 |
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
25 |
"X-Generator: Loco https://localise.biz/"
|
26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
#. Plugin Name of the plugin/theme
|
28 |
msgid "Email Subscribers & Newsletters"
|
29 |
msgstr ""
|
@@ -38,7 +2409,3 @@ msgstr ""
|
|
38 |
#. Author URI of the plugin
|
39 |
msgid "https://www.icegram.com/"
|
40 |
msgstr ""
|
41 |
-
|
42 |
-
#. Author of the plugin/theme
|
43 |
-
msgid "Icegram"
|
44 |
-
msgstr ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Email Subscribers & Newsletters 3.5.4\n"
|
6 |
"Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
|
7 |
+
"POT-Creation-Date: 2018-11-19 07:33+0000\n"
|
8 |
"POT-Revision-Date: Mon Aug 06 2018 14:11:14 GMT+0530 (IST)\n"
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: \n"
|
24 |
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
25 |
"X-Generator: Loco https://localise.biz/"
|
26 |
|
27 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-common.php:13
|
28 |
+
msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-common.php:16
|
32 |
+
msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-common.php:19
|
36 |
+
msgid "<span style=\"color:#999900\">Unsubscribed</span>"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-common.php:22
|
40 |
+
msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-common.php:25
|
44 |
+
msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
|
45 |
+
msgstr ""
|
46 |
+
|
47 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-common.php:28
|
48 |
+
msgid "<span style=\"color:#999900;\">Nodata</span>"
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-common.php:31
|
52 |
+
msgid "<span style=\"color:#FF0000\">Disabled</span>"
|
53 |
+
msgstr ""
|
54 |
+
|
55 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-common.php:34
|
56 |
+
msgid "<span style=\"color:#FF0000\">In Queue</span>"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-common.php:37
|
60 |
+
msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-common.php:40
|
64 |
+
msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-common.php:43
|
68 |
+
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:186
|
72 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:187
|
73 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:918
|
74 |
+
msgid "Email Subscribers"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:189
|
78 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:190
|
79 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:242
|
80 |
+
msgid "Subscribers"
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:192
|
84 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:193
|
85 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:906
|
86 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:907
|
87 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:912
|
88 |
+
msgid "Templates"
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:195
|
92 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:196
|
93 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:430
|
94 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-show.php:52
|
95 |
+
msgid "Post Notifications"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:198
|
99 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:199
|
100 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:420
|
101 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:93
|
102 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:344
|
103 |
+
msgid "Newsletters"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:201
|
107 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:202
|
108 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:42
|
109 |
+
msgid "Settings"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:204
|
113 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:205
|
114 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/tools/tools.php:39
|
115 |
+
msgid "Tools"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:207
|
119 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:208
|
120 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:93
|
121 |
+
msgid "Reports"
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:210
|
125 |
+
msgid "Help & Info"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:211
|
129 |
+
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:214
|
133 |
+
msgid "Go Pro"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:215
|
137 |
+
msgid "<span style=\"color:#03a025;font-weight:bolder;\">Go Pro</span>"
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:234
|
141 |
+
msgid ""
|
142 |
+
"Save time using beautiful readymade templates <a href=\"https://www.icegram."
|
143 |
+
"com/documentation/how-ready-made-template-in-in-email-subscribers-look/?"
|
144 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=es_upsale\" target=\"_blank\">"
|
145 |
+
"Checkout here</a>"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:247
|
149 |
+
msgid ""
|
150 |
+
"Enable captcha to protect list from bot attacks <a href=\"https://www."
|
151 |
+
"icegram.com/documentation/es-how-to-add-captcha-in-subscribe-form-of-email-"
|
152 |
+
"subscribers/?utm_source=es&utm_medium=in_app&utm_campaign=es_upsale\" "
|
153 |
+
"target=\"_blank\">Lean more</a>"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:311
|
157 |
+
msgctxt "view-subscriber-enhanced-select"
|
158 |
+
msgid "Please enter subscriber email address."
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:312
|
162 |
+
msgctxt "view-subscriber-enhanced-select"
|
163 |
+
msgid "Please select subscriber email status."
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:313
|
167 |
+
msgctxt "view-subscriber-enhanced-select"
|
168 |
+
msgid "Please select or create group for this subscriber."
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:314
|
172 |
+
msgctxt "view-subscriber-enhanced-select"
|
173 |
+
msgid "Do you want to delete this record?"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:315
|
177 |
+
msgctxt "view-subscriber-enhanced-select"
|
178 |
+
msgid "Please select the bulk action."
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:316
|
182 |
+
msgctxt "view-subscriber-enhanced-select"
|
183 |
+
msgid "Are you sure you want to delete selected records?"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:317
|
187 |
+
msgctxt "view-subscriber-enhanced-select"
|
188 |
+
msgid ""
|
189 |
+
"Do you want to resend confirmation email? Also please note, this will update "
|
190 |
+
"subscriber current status to 'Unconfirmed'."
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:318
|
194 |
+
msgctxt "view-subscriber-enhanced-select"
|
195 |
+
msgid "Please select new subscriber group."
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:319
|
199 |
+
msgctxt "view-subscriber-enhanced-select"
|
200 |
+
msgid "Please select new status for subscribers"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:320
|
204 |
+
msgctxt "view-subscriber-enhanced-select"
|
205 |
+
msgid "Do you want to update subscribers group?"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:321
|
209 |
+
msgctxt "view-subscriber-enhanced-select"
|
210 |
+
msgid "Do you want to update subscribers status?"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:322
|
214 |
+
msgctxt "view-subscriber-enhanced-select"
|
215 |
+
msgid ""
|
216 |
+
"Please select only csv file. Please check official website for csv structure."
|
217 |
+
"."
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:330
|
221 |
+
msgctxt "notification-enhanced-select"
|
222 |
+
msgid "Please select subscribers group."
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:331
|
226 |
+
msgctxt "notification-enhanced-select"
|
227 |
+
msgid ""
|
228 |
+
"Please select notification mail subject. Use templates menu to create new."
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:332
|
232 |
+
msgctxt "notification-enhanced-select"
|
233 |
+
msgid "Please select notification status."
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:333
|
237 |
+
msgctxt "notification-enhanced-select"
|
238 |
+
msgid "Do you want to delete this record?"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:341
|
242 |
+
msgctxt "sendmail-enhanced-select"
|
243 |
+
msgid "Please select your mail subject."
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:342
|
247 |
+
msgctxt "sendmail-enhanced-select"
|
248 |
+
msgid "Please select your mail type."
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:343
|
252 |
+
msgctxt "sendmail-enhanced-select"
|
253 |
+
msgid ""
|
254 |
+
"Have you double checked your selected group? If so, let's go ahead and send "
|
255 |
+
"this."
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:351
|
259 |
+
msgctxt "sentmail-enhanced-select"
|
260 |
+
msgid "Do you want to delete this record?"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:352
|
264 |
+
msgctxt "sentmail-enhanced-select"
|
265 |
+
msgid "Do you want to delete all records except latest 10?"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:360
|
269 |
+
msgctxt "cron-enhanced-select"
|
270 |
+
msgid "Please select enter number of mails you want to send per hour/trigger."
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:361
|
274 |
+
msgctxt "cron-enhanced-select"
|
275 |
+
msgid "Please enter the mail count, only number."
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:374
|
279 |
+
msgctxt "widget-page-enhanced-select"
|
280 |
+
msgid "Please enter email address"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:375
|
284 |
+
msgctxt "widget-page-enhanced-select"
|
285 |
+
msgid "You need to wait for sometime before subscribing again"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:376
|
289 |
+
msgctxt "widget-page-enhanced-select"
|
290 |
+
msgid "Successfully Subscribed."
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:377
|
294 |
+
msgctxt "widget-page-enhanced-select"
|
295 |
+
msgid ""
|
296 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
297 |
+
"subscription. If you don't see the email within a few minutes, check the "
|
298 |
+
"spam/junk folder."
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:378
|
302 |
+
msgctxt "widget-page-enhanced-select"
|
303 |
+
msgid "Email Address already exists!"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:379
|
307 |
+
msgctxt "widget-page-enhanced-select"
|
308 |
+
msgid "Oops.. Unexpected error occurred."
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:380
|
312 |
+
msgctxt "widget-page-enhanced-select"
|
313 |
+
msgid "Invalid email address"
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:381
|
317 |
+
msgctxt "widget-page-enhanced-select"
|
318 |
+
msgid "Please try after some time"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:840
|
322 |
+
msgid ""
|
323 |
+
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
324 |
+
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
325 |
+
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
326 |
+
"</a> rating. A huge thank you from the team in advance!"
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:841
|
330 |
+
msgid ""
|
331 |
+
"If you like <strong>Email Subscribers</strong>, tell us more about your "
|
332 |
+
"experience and leave us <a target=\"_blank\" href=\"https://wordpress."
|
333 |
+
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
334 |
+
"★★★★</a> rating. A huge thank you from the team in "
|
335 |
+
"advance!"
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:846
|
339 |
+
msgid "No, I don't like it"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:883
|
343 |
+
msgid "Thank you for using Email Subscribers! A huge thank you from Icegram!"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:897
|
347 |
+
#, php-format
|
348 |
+
msgid "Email Subscribers version: <strong>%s</strong>"
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:908
|
352 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:909
|
353 |
+
msgid "Add new Template"
|
354 |
+
msgstr ""
|
355 |
+
|
356 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:910
|
357 |
+
msgid "Edit Templates"
|
358 |
+
msgstr ""
|
359 |
+
|
360 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:911
|
361 |
+
msgid "New Templates"
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:913
|
365 |
+
msgid "View Templates"
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:914
|
369 |
+
msgid "Search Templates"
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:915
|
373 |
+
msgid "No Templates found"
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:916
|
377 |
+
msgid "No Templates found in Trash"
|
378 |
+
msgstr ""
|
379 |
+
|
380 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:919
|
381 |
+
msgid "Thumbnail (For Visual Representation only)"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:920
|
385 |
+
msgid "Set thumbnail"
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:957
|
389 |
+
msgid "Template Type"
|
390 |
+
msgstr ""
|
391 |
+
|
392 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:958
|
393 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:124
|
394 |
+
msgid "Thumbnail"
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1010
|
398 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:108
|
399 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:121
|
400 |
+
msgid "Preview"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1032
|
404 |
+
#, php-format
|
405 |
+
msgid "%s for Post Notification: {{POSTTITLE}}"
|
406 |
+
msgstr ""
|
407 |
+
|
408 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1032
|
409 |
+
msgid "Available Keyword"
|
410 |
+
msgstr ""
|
411 |
+
|
412 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1039
|
413 |
+
msgid "Select your Email Template Type"
|
414 |
+
msgstr ""
|
415 |
+
|
416 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1043
|
417 |
+
msgid "Newsletter"
|
418 |
+
msgstr ""
|
419 |
+
|
420 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1046
|
421 |
+
msgid "Post Notification"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1108
|
425 |
+
msgid "Preview Template"
|
426 |
+
msgstr ""
|
427 |
+
|
428 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1127
|
429 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1143
|
430 |
+
#, php-format
|
431 |
+
msgid ""
|
432 |
+
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
433 |
+
"{{POSTIMAGE}}, {{POSTEXCERPT}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK}}, "
|
434 |
+
"{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1127
|
438 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1128
|
439 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1143
|
440 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1151
|
441 |
+
msgid "Available Keywords"
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1128
|
445 |
+
#, php-format
|
446 |
+
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1151
|
450 |
+
#, php-format
|
451 |
+
msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
452 |
+
msgstr ""
|
453 |
+
|
454 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1184
|
455 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:289
|
456 |
+
msgid "Name"
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1191
|
460 |
+
msgid "Email *"
|
461 |
+
msgstr ""
|
462 |
+
|
463 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1200
|
464 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:249
|
465 |
+
msgid "Subscribe"
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1317
|
469 |
+
msgid "Widget Title"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1321
|
473 |
+
msgid "Short description about subscription form"
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1325
|
477 |
+
msgid "Display Name Field"
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1327
|
481 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:143
|
482 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:228
|
483 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-sync.php:107
|
484 |
+
msgid "YES"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1328
|
488 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:144
|
489 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:229
|
490 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-sync.php:106
|
491 |
+
msgid "NO"
|
492 |
+
msgstr ""
|
493 |
+
|
494 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/classes/es-register.php:1332
|
495 |
+
msgid "Subscriber Group"
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/export/export-email-address.php:67
|
499 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/export/export-email-address.php:71
|
500 |
+
msgid "Unexpected url submit has been detected!"
|
501 |
+
msgstr ""
|
502 |
+
|
503 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:220
|
504 |
+
msgid "Welcome to the Email Subscribers Community!"
|
505 |
+
msgstr ""
|
506 |
+
|
507 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:221
|
508 |
+
msgid "We hope our plugin adds to your success 🏆"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:222
|
512 |
+
msgid "To get started, we did some initial setup to save your time 😊"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:224
|
516 |
+
msgid ""
|
517 |
+
"1. Created a lead collecting form and added it the default widget area in "
|
518 |
+
"your WP admin"
|
519 |
+
msgstr ""
|
520 |
+
|
521 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:225
|
522 |
+
msgid "2. Created a \"Test\" subscriber group and added \""
|
523 |
+
msgstr ""
|
524 |
+
|
525 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:225
|
526 |
+
msgid "\" to it."
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:226
|
530 |
+
msgid ""
|
531 |
+
"3. Sent a test post notification, test newsletter to the test subscriber "
|
532 |
+
"group."
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:231
|
536 |
+
msgid "Build your list and succeed with email marketing in 5 short weeks"
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:235
|
540 |
+
msgid ""
|
541 |
+
"Do you want to build your list, keep off spam, write emails that people open "
|
542 |
+
"and click through? Do you want to build your brand and nurture an amazing "
|
543 |
+
"tribe?"
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:236
|
547 |
+
msgid "Enter your name and email on the form on right to get it all."
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:237
|
551 |
+
msgid ""
|
552 |
+
"First part is about the greatest mistake lot of people make (and you may as "
|
553 |
+
"well be making). There are 5 steps to succeeding with email marketing and "
|
554 |
+
"we'll cover it all."
|
555 |
+
msgstr ""
|
556 |
+
|
557 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:238
|
558 |
+
msgid ""
|
559 |
+
"It's time to get to full speed - and you get this training for free. Sign up "
|
560 |
+
"now."
|
561 |
+
msgstr ""
|
562 |
+
|
563 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:247
|
564 |
+
#, php-format
|
565 |
+
msgid "I have read and agreed to your %s."
|
566 |
+
msgstr ""
|
567 |
+
|
568 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:247
|
569 |
+
msgid "Privacy Policy"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:259
|
573 |
+
#, php-format
|
574 |
+
msgid "Version: %s"
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:262
|
578 |
+
msgid "Questions? Need Help?"
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:263
|
582 |
+
msgid "Contact Us"
|
583 |
+
msgstr ""
|
584 |
+
|
585 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:268
|
586 |
+
#, php-format
|
587 |
+
msgid ""
|
588 |
+
"<b>Like Email Subscribers?</b> If yes, then consider %s to support further "
|
589 |
+
"developments."
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:268
|
593 |
+
msgid "donating to us"
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:318
|
597 |
+
msgid "Description"
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:320
|
601 |
+
msgid ""
|
602 |
+
"Email Subscribers is a complete newsletter plugin which lets you collect "
|
603 |
+
"leads, send automated new blog post notification emails, create & send "
|
604 |
+
"newsletters and manage all this in one single place."
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:322
|
608 |
+
msgid "Feature Overview"
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:325
|
612 |
+
msgid ""
|
613 |
+
"Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
|
614 |
+
"Code)."
|
615 |
+
msgstr ""
|
616 |
+
|
617 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:328
|
618 |
+
msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
|
619 |
+
msgstr ""
|
620 |
+
|
621 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:331
|
622 |
+
msgid "Send automatic welcome email to subscribers."
|
623 |
+
msgstr ""
|
624 |
+
|
625 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:334
|
626 |
+
msgid ""
|
627 |
+
"Send new post notification emails to subscribers when new posts are "
|
628 |
+
"published on your website."
|
629 |
+
msgstr ""
|
630 |
+
|
631 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:337
|
632 |
+
msgid "Schedule email (Cron job) or send them manually."
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:340
|
636 |
+
msgid "Send email notification to admin when a new user signs up."
|
637 |
+
msgstr ""
|
638 |
+
|
639 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:343
|
640 |
+
msgid "Automatically add Unsubscribe link in the email."
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:346
|
644 |
+
msgid "Easily migrate subscribers from another app using Import & Export."
|
645 |
+
msgstr ""
|
646 |
+
|
647 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:349
|
648 |
+
msgid "Use HTML editor to create newsletters and post notifications."
|
649 |
+
msgstr ""
|
650 |
+
|
651 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:352
|
652 |
+
msgid "Send newsletters to different groups."
|
653 |
+
msgstr ""
|
654 |
+
|
655 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:355
|
656 |
+
msgid "Get detailed sent email reports."
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:358
|
660 |
+
msgid "Control user access (User Roles and Capabilities)."
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:361
|
664 |
+
msgid "Supports localization and internationalization."
|
665 |
+
msgstr ""
|
666 |
+
|
667 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:368
|
668 |
+
msgid "Add Subscribe form"
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:370
|
672 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:381
|
673 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:384
|
674 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:396
|
675 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:399
|
676 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:402
|
677 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:405
|
678 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:408
|
679 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:411
|
680 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:423
|
681 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:426
|
682 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:433
|
683 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:436
|
684 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:439
|
685 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:447
|
686 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:450
|
687 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:453
|
688 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:456
|
689 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:462
|
690 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:465
|
691 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:468
|
692 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:476
|
693 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:479
|
694 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:494
|
695 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:497
|
696 |
+
#, php-format
|
697 |
+
msgid "%s"
|
698 |
+
msgstr ""
|
699 |
+
|
700 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:370
|
701 |
+
msgid "How to Add Subscription box to website?"
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:373
|
705 |
+
#, php-format
|
706 |
+
msgid ""
|
707 |
+
"Use any of the following 3 methods :<br>\n"
|
708 |
+
"\t\t\t\t\t\t\t\ta) Shortcode in any page/post : <strong>[email-subscribers "
|
709 |
+
"namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
|
710 |
+
"\t\t\t\t\t\t\t\tb) Go to Appearance -> Widgets. Click on widget Email "
|
711 |
+
"subscribers and drag it to the sidebar on the right <i>Or</i><br>\n"
|
712 |
+
"\t\t\t\t\t\t\t\tc) Copy and past this php code to your desired template "
|
713 |
+
"location : <strong>%s</strong>"
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:378
|
717 |
+
msgid "Additional form settings"
|
718 |
+
msgstr ""
|
719 |
+
|
720 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:381
|
721 |
+
msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
|
722 |
+
msgstr ""
|
723 |
+
|
724 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:384
|
725 |
+
msgid "How to add captcha in Subscribe form of Email Subscribers?"
|
726 |
+
msgstr ""
|
727 |
+
|
728 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:390
|
729 |
+
msgid "General Plugin Configuration"
|
730 |
+
msgstr ""
|
731 |
+
|
732 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:393
|
733 |
+
#, php-format
|
734 |
+
msgid "Modify %s"
|
735 |
+
msgstr ""
|
736 |
+
|
737 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:393
|
738 |
+
msgid "default text, email contents"
|
739 |
+
msgstr ""
|
740 |
+
|
741 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:393
|
742 |
+
msgid ""
|
743 |
+
" (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
|
744 |
+
"Roles"
|
745 |
+
msgstr ""
|
746 |
+
|
747 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:396
|
748 |
+
msgid "How does Sync work?"
|
749 |
+
msgstr ""
|
750 |
+
|
751 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:399
|
752 |
+
msgid "How to Import or Export Email Addresses?"
|
753 |
+
msgstr ""
|
754 |
+
|
755 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:402
|
756 |
+
msgid "How to Add/Update Existing Subscribers Group & Status?"
|
757 |
+
msgstr ""
|
758 |
+
|
759 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:405
|
760 |
+
msgid "How to change/update/translate any texts from the plugin?"
|
761 |
+
msgstr ""
|
762 |
+
|
763 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:408
|
764 |
+
msgid "How to add Unsubscribe link in emails?"
|
765 |
+
msgstr ""
|
766 |
+
|
767 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:411
|
768 |
+
msgid "How to check sent emails?"
|
769 |
+
msgstr ""
|
770 |
+
|
771 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:423
|
772 |
+
msgid "Create and Send Newsletter Emails"
|
773 |
+
msgstr ""
|
774 |
+
|
775 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:426
|
776 |
+
msgid "Keywords in the Newsletters"
|
777 |
+
msgstr ""
|
778 |
+
|
779 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:433
|
780 |
+
msgid "Create and Send Post Notification Emails when new posts are published"
|
781 |
+
msgstr ""
|
782 |
+
|
783 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:436
|
784 |
+
msgid "Keywords in the Post Notifications"
|
785 |
+
msgstr ""
|
786 |
+
|
787 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:439
|
788 |
+
msgid "Send a test post notification email to myself/testgroup"
|
789 |
+
msgstr ""
|
790 |
+
|
791 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:444
|
792 |
+
msgid "Cron Job Setup"
|
793 |
+
msgstr ""
|
794 |
+
|
795 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:447
|
796 |
+
msgid "What is Cron and how to Schedule Cron Emails?"
|
797 |
+
msgstr ""
|
798 |
+
|
799 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:450
|
800 |
+
msgid "Schedule Cron Emails in cPanel"
|
801 |
+
msgstr ""
|
802 |
+
|
803 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:453
|
804 |
+
msgid "Schedule Cron Emails in Parallels Plesk"
|
805 |
+
msgstr ""
|
806 |
+
|
807 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:456
|
808 |
+
msgid "Hosting doesn’t support Cron Jobs?"
|
809 |
+
msgstr ""
|
810 |
+
|
811 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:459
|
812 |
+
msgid "Troubleshooting Steps"
|
813 |
+
msgstr ""
|
814 |
+
|
815 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:462
|
816 |
+
msgid "Subscribers are not receiving Emails?"
|
817 |
+
msgstr ""
|
818 |
+
|
819 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:465
|
820 |
+
msgid "CSS Help"
|
821 |
+
msgstr ""
|
822 |
+
|
823 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:468
|
824 |
+
msgid "FAQ's"
|
825 |
+
msgstr ""
|
826 |
+
|
827 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:473
|
828 |
+
msgid "[GDPR] Email Subscribers"
|
829 |
+
msgstr ""
|
830 |
+
|
831 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:476
|
832 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:494
|
833 |
+
msgid "How to enable consent checkbox in the subscribe form?"
|
834 |
+
msgstr ""
|
835 |
+
|
836 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:479
|
837 |
+
msgid "What data Email Subscribers stores on your end?"
|
838 |
+
msgstr ""
|
839 |
+
|
840 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:491
|
841 |
+
msgid "[GDPR] Email Subscribers - Group Selector"
|
842 |
+
msgstr ""
|
843 |
+
|
844 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:497
|
845 |
+
msgid "What data Email Subscribers - Group Selector stores on your end?"
|
846 |
+
msgstr ""
|
847 |
+
|
848 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:506
|
849 |
+
msgid "Want to do more? Here's how.."
|
850 |
+
msgstr ""
|
851 |
+
|
852 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:509
|
853 |
+
msgid "Allow Subscribers to get subscribed to any group"
|
854 |
+
msgstr ""
|
855 |
+
|
856 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:514
|
857 |
+
msgid "Using our <b>free</b> "
|
858 |
+
msgstr ""
|
859 |
+
|
860 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:515
|
861 |
+
msgid "Group Selector"
|
862 |
+
msgstr ""
|
863 |
+
|
864 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:516
|
865 |
+
msgid ""
|
866 |
+
"plugin, you can extend Email Subscribers Form functionality by providing an "
|
867 |
+
"grouping option right next to the form."
|
868 |
+
msgstr ""
|
869 |
+
|
870 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:519
|
871 |
+
msgid "The user can then subscribe to whichever group most appeals to them."
|
872 |
+
msgstr ""
|
873 |
+
|
874 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:522
|
875 |
+
msgid "For example: Subscribe either to Updates or to Offers."
|
876 |
+
msgstr ""
|
877 |
+
|
878 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:526
|
879 |
+
msgid "Show your subscribe form inside attractive popups"
|
880 |
+
msgstr ""
|
881 |
+
|
882 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:531
|
883 |
+
msgid ""
|
884 |
+
"Don't limit your subscriber form to a widget. Embed it within popups, hello "
|
885 |
+
"bars, slide-ins, sidebars, full screen popups etc."
|
886 |
+
msgstr ""
|
887 |
+
|
888 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:534
|
889 |
+
msgid ""
|
890 |
+
"Using Email Subscribers you can achieve this easily with our <b>free</b> "
|
891 |
+
"plugin "
|
892 |
+
msgstr ""
|
893 |
+
|
894 |
+
#. Author of the plugin/theme
|
895 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:535
|
896 |
+
msgid "Icegram"
|
897 |
+
msgstr ""
|
898 |
+
|
899 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:538
|
900 |
+
msgid ""
|
901 |
+
"Icegram's beautiful designs instantly capture user attention and help "
|
902 |
+
"increase sign-ups to your WordPress website."
|
903 |
+
msgstr ""
|
904 |
+
|
905 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:541
|
906 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:561
|
907 |
+
#, php-format
|
908 |
+
msgid "How to %s"
|
909 |
+
msgstr ""
|
910 |
+
|
911 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:541
|
912 |
+
msgid "show subscribe form inside a popup"
|
913 |
+
msgstr ""
|
914 |
+
|
915 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:545
|
916 |
+
msgid "Get beautiful and elegant form styles"
|
917 |
+
msgstr ""
|
918 |
+
|
919 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:551
|
920 |
+
msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
921 |
+
msgstr ""
|
922 |
+
|
923 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:552
|
924 |
+
msgid "Rainmaker"
|
925 |
+
msgstr ""
|
926 |
+
|
927 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:555
|
928 |
+
msgid ""
|
929 |
+
"Rainmaker extends the core features of Email Subscribers and provides "
|
930 |
+
"elegant form styles."
|
931 |
+
msgstr ""
|
932 |
+
|
933 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:558
|
934 |
+
msgid ""
|
935 |
+
"These styles are well designed and beautify your subscription form making it "
|
936 |
+
"more appealing."
|
937 |
+
msgstr ""
|
938 |
+
|
939 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/help/help.php:561
|
940 |
+
msgid "add Rainmaker’s form in Email Subscribers"
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:33
|
944 |
+
msgid "Please select subscribers group."
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:39
|
948 |
+
msgid "Please select notification status."
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:45
|
952 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:61
|
953 |
+
msgid ""
|
954 |
+
"Please select notification mail subject. Use templates menu to create new."
|
955 |
+
msgstr ""
|
956 |
+
|
957 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:51
|
958 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:67
|
959 |
+
msgid "Please select post categories."
|
960 |
+
msgstr ""
|
961 |
+
|
962 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:71
|
963 |
+
msgid "Notification successfully created. "
|
964 |
+
msgstr ""
|
965 |
+
|
966 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:112
|
967 |
+
msgid "Add Notification"
|
968 |
+
msgstr ""
|
969 |
+
|
970 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:113
|
971 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:124
|
972 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-show.php:54
|
973 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:94
|
974 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/deliverreport-show.php:61
|
975 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-preview.php:28
|
976 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:94
|
977 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:43
|
978 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-add.php:118
|
979 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-edit.php:113
|
980 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:54
|
981 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:150
|
982 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:247
|
983 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-sync.php:92
|
984 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/templates/template-preview.php:33
|
985 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/tools/tools.php:40
|
986 |
+
msgid "Help"
|
987 |
+
msgstr ""
|
988 |
+
|
989 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:121
|
990 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:132
|
991 |
+
msgid "Subscribers Group to send post notification to"
|
992 |
+
msgstr ""
|
993 |
+
|
994 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:125
|
995 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:149
|
996 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:136
|
997 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:169
|
998 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:111
|
999 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:139
|
1000 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:154
|
1001 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-add.php:166
|
1002 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-edit.php:162
|
1003 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:194
|
1004 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-sync.php:119
|
1005 |
+
msgid "Select"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:143
|
1009 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:163
|
1010 |
+
msgid "Select Notification Email Subject"
|
1011 |
+
msgstr ""
|
1012 |
+
|
1013 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:144
|
1014 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:164
|
1015 |
+
msgid "(Use templates menu to create new)"
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:169
|
1019 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:192
|
1020 |
+
msgid "Select Post Categories"
|
1021 |
+
msgstr ""
|
1022 |
+
|
1023 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:197
|
1024 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:227
|
1025 |
+
msgid "Check All"
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:198
|
1029 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:228
|
1030 |
+
msgid "Uncheck All"
|
1031 |
+
msgstr ""
|
1032 |
+
|
1033 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:204
|
1034 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:235
|
1035 |
+
msgid "Select your Custom Post Type"
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:205
|
1039 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:236
|
1040 |
+
msgid "(Optional)"
|
1041 |
+
msgstr ""
|
1042 |
+
|
1043 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:234
|
1044 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:270
|
1045 |
+
msgid "No Custom Post Types Available"
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:241
|
1049 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:277
|
1050 |
+
msgid "Select Notification Status when a new post is published"
|
1051 |
+
msgstr ""
|
1052 |
+
|
1053 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:245
|
1054 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:281
|
1055 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-show.php:130
|
1056 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:140
|
1057 |
+
msgid "Send email immediately"
|
1058 |
+
msgstr ""
|
1059 |
+
|
1060 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:246
|
1061 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:282
|
1062 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-show.php:132
|
1063 |
+
msgid "Add to cron and send email via cron job"
|
1064 |
+
msgstr ""
|
1065 |
+
|
1066 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:247
|
1067 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:283
|
1068 |
+
msgid "Disable email notification"
|
1069 |
+
msgstr ""
|
1070 |
+
|
1071 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-add.php:256
|
1072 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:293
|
1073 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-edit.php:191
|
1074 |
+
msgid "Save"
|
1075 |
+
msgstr ""
|
1076 |
+
|
1077 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:20
|
1078 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-show.php:21
|
1079 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-preview.php:18
|
1080 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:22
|
1081 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-edit.php:22
|
1082 |
+
msgid "Oops, selected details does not exists."
|
1083 |
+
msgstr ""
|
1084 |
+
|
1085 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:49
|
1086 |
+
msgid "Please select subscribers group"
|
1087 |
+
msgstr ""
|
1088 |
+
|
1089 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:55
|
1090 |
+
msgid "Please select notification status"
|
1091 |
+
msgstr ""
|
1092 |
+
|
1093 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:89
|
1094 |
+
msgid "Notification successfully updated. "
|
1095 |
+
msgstr ""
|
1096 |
+
|
1097 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:122
|
1098 |
+
msgid "Edit Notification"
|
1099 |
+
msgstr ""
|
1100 |
+
|
1101 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-edit.php:123
|
1102 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-show.php:53
|
1103 |
+
msgid "Add New"
|
1104 |
+
msgstr ""
|
1105 |
+
|
1106 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-show.php:35
|
1107 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:36
|
1108 |
+
msgid "Selected record deleted."
|
1109 |
+
msgstr ""
|
1110 |
+
|
1111 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-show.php:57
|
1112 |
+
msgid ""
|
1113 |
+
"Use this to setup and send notification emails to your subscribers when a "
|
1114 |
+
"new post is published in your blog."
|
1115 |
+
msgstr ""
|
1116 |
+
|
1117 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-show.php:68
|
1118 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-show.php:76
|
1119 |
+
msgid "Email Subject"
|
1120 |
+
msgstr ""
|
1121 |
+
|
1122 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-show.php:69
|
1123 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-show.php:77
|
1124 |
+
msgid "Subscribers Group"
|
1125 |
+
msgstr ""
|
1126 |
+
|
1127 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-show.php:70
|
1128 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-show.php:78
|
1129 |
+
msgid "Post Categories / Custom Post Types"
|
1130 |
+
msgstr ""
|
1131 |
+
|
1132 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-show.php:71
|
1133 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-show.php:79
|
1134 |
+
msgid "Notification Status"
|
1135 |
+
msgstr ""
|
1136 |
+
|
1137 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-show.php:100
|
1138 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:424
|
1139 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/templates/template-preview.php:36
|
1140 |
+
msgid "Edit"
|
1141 |
+
msgstr ""
|
1142 |
+
|
1143 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-show.php:103
|
1144 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:301
|
1145 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:429
|
1146 |
+
msgid "Delete"
|
1147 |
+
msgstr ""
|
1148 |
+
|
1149 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/notification/notification-show.php:143
|
1150 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/deliverreport-show.php:128
|
1151 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:180
|
1152 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:463
|
1153 |
+
msgid "No records available."
|
1154 |
+
msgstr ""
|
1155 |
+
|
1156 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:177
|
1157 |
+
msgid "Go a notch higher"
|
1158 |
+
msgstr ""
|
1159 |
+
|
1160 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:178
|
1161 |
+
msgid "Get the Email Subscribers Pro / Max Plugin at"
|
1162 |
+
msgstr ""
|
1163 |
+
|
1164 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:183
|
1165 |
+
msgid "month"
|
1166 |
+
msgstr ""
|
1167 |
+
|
1168 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:184
|
1169 |
+
msgid "Get Pro Monthly"
|
1170 |
+
msgstr ""
|
1171 |
+
|
1172 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:188
|
1173 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:193
|
1174 |
+
msgid "year"
|
1175 |
+
msgstr ""
|
1176 |
+
|
1177 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:189
|
1178 |
+
msgid "Get Pro Annual"
|
1179 |
+
msgstr ""
|
1180 |
+
|
1181 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:194
|
1182 |
+
msgid "Get Max Annual"
|
1183 |
+
msgstr ""
|
1184 |
+
|
1185 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:198
|
1186 |
+
msgid "Get more with Email Subscribers Pro / Max"
|
1187 |
+
msgstr ""
|
1188 |
+
|
1189 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:200
|
1190 |
+
msgid "All features of Email Subscribers free plugin + everything below:"
|
1191 |
+
msgstr ""
|
1192 |
+
|
1193 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:203
|
1194 |
+
msgid "Protect your list from bot attacks"
|
1195 |
+
msgstr ""
|
1196 |
+
|
1197 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:204
|
1198 |
+
msgid "Use "
|
1199 |
+
msgstr ""
|
1200 |
+
|
1201 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:204
|
1202 |
+
msgid "captcha"
|
1203 |
+
msgstr ""
|
1204 |
+
|
1205 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:204
|
1206 |
+
msgid ""
|
1207 |
+
"to protect your email list from bots. The simple maths captcha helps "
|
1208 |
+
"identifying bots from humans and eliminates spam signups."
|
1209 |
+
msgstr ""
|
1210 |
+
|
1211 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:207
|
1212 |
+
msgid "Check email status & increase email success rate"
|
1213 |
+
msgstr ""
|
1214 |
+
|
1215 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:208
|
1216 |
+
msgid "Double check the status of the emails addresses and increase "
|
1217 |
+
msgstr ""
|
1218 |
+
|
1219 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:208
|
1220 |
+
msgid "email success rate"
|
1221 |
+
msgstr ""
|
1222 |
+
|
1223 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:208
|
1224 |
+
msgid "of your email campaign. "
|
1225 |
+
msgstr ""
|
1226 |
+
|
1227 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:216
|
1228 |
+
msgid "Fullproof email deliverability"
|
1229 |
+
msgstr ""
|
1230 |
+
|
1231 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:217
|
1232 |
+
msgid ""
|
1233 |
+
"Reduce the risk of emails ending in trash or spam. Increase email "
|
1234 |
+
"deliverability by double checking emails for their "
|
1235 |
+
msgstr ""
|
1236 |
+
|
1237 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:217
|
1238 |
+
msgid "spam score"
|
1239 |
+
msgstr ""
|
1240 |
+
|
1241 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:217
|
1242 |
+
msgid "before hitting send."
|
1243 |
+
msgstr ""
|
1244 |
+
|
1245 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:220
|
1246 |
+
msgid "Track email leads in Google"
|
1247 |
+
msgstr ""
|
1248 |
+
|
1249 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:221
|
1250 |
+
msgid "Insert "
|
1251 |
+
msgstr ""
|
1252 |
+
|
1253 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:221
|
1254 |
+
msgid "UTM tracking"
|
1255 |
+
msgstr ""
|
1256 |
+
|
1257 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:221
|
1258 |
+
msgid ""
|
1259 |
+
"in all your email CTA’s and track the effectiveness of your emails directly "
|
1260 |
+
"within Google. Know which/ how many leads landed up from your emails and "
|
1261 |
+
"tweak emails for better performance."
|
1262 |
+
msgstr ""
|
1263 |
+
|
1264 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:228
|
1265 |
+
msgid "Save time, use readymade email templates"
|
1266 |
+
msgstr ""
|
1267 |
+
|
1268 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:229
|
1269 |
+
msgid ""
|
1270 |
+
"Don’t waste time on HTML or CSS. Pick one from the many <strong>ready to use "
|
1271 |
+
"elegant templates</strong> to send your next email campaign."
|
1272 |
+
msgstr ""
|
1273 |
+
|
1274 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:232
|
1275 |
+
msgid "Customize confirmation and unsubscribe page"
|
1276 |
+
msgstr ""
|
1277 |
+
|
1278 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pricing/pricing.php:233
|
1279 |
+
msgid ""
|
1280 |
+
"Communicate with subscribers. Redirect them to beautifully designed <strong>"
|
1281 |
+
"confirmation and unsubscribe pages</strong> on your website."
|
1282 |
+
msgstr ""
|
1283 |
+
|
1284 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:18
|
1285 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:17
|
1286 |
+
msgid "Click Here"
|
1287 |
+
msgstr ""
|
1288 |
+
|
1289 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:40
|
1290 |
+
msgid "Please select your mail subject."
|
1291 |
+
msgstr ""
|
1292 |
+
|
1293 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:46
|
1294 |
+
msgid "Please select your mail type."
|
1295 |
+
msgstr ""
|
1296 |
+
|
1297 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:52
|
1298 |
+
msgid "Please select your group."
|
1299 |
+
msgstr ""
|
1300 |
+
|
1301 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:59
|
1302 |
+
msgid "Email sent successfully. "
|
1303 |
+
msgstr ""
|
1304 |
+
|
1305 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:63
|
1306 |
+
msgid "Click here to check Statistics"
|
1307 |
+
msgstr ""
|
1308 |
+
|
1309 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:69
|
1310 |
+
msgid "Oops.. We are getting some error. mail not sending."
|
1311 |
+
msgstr ""
|
1312 |
+
|
1313 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:97
|
1314 |
+
msgid "Use this to send newsletter emails to your subscribers."
|
1315 |
+
msgstr ""
|
1316 |
+
|
1317 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:106
|
1318 |
+
msgid "Select Email Subject from available list"
|
1319 |
+
msgstr ""
|
1320 |
+
|
1321 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:134
|
1322 |
+
msgid "Select Email Type"
|
1323 |
+
msgstr ""
|
1324 |
+
|
1325 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:141
|
1326 |
+
msgid "Send email via cron job"
|
1327 |
+
msgstr ""
|
1328 |
+
|
1329 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:149
|
1330 |
+
msgid "Select Subscribers group to Send Email"
|
1331 |
+
msgstr ""
|
1332 |
+
|
1333 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:181
|
1334 |
+
msgid "Recipients : 0 "
|
1335 |
+
msgstr ""
|
1336 |
+
|
1337 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:183
|
1338 |
+
#, php-format
|
1339 |
+
msgid "Recipients : %s"
|
1340 |
+
msgstr ""
|
1341 |
+
|
1342 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:186
|
1343 |
+
msgid ""
|
1344 |
+
"<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
|
1345 |
+
"that you change above Mail Type to Cron and Send Mail via Cron Job.</strong>"
|
1346 |
+
"<br>Click on Help for more information."
|
1347 |
+
msgstr ""
|
1348 |
+
|
1349 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:198
|
1350 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:200
|
1351 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/tools/tools.php:61
|
1352 |
+
msgid "Send Email"
|
1353 |
+
msgstr ""
|
1354 |
+
|
1355 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sendmail/sendmail.php:203
|
1356 |
+
msgid "Reset"
|
1357 |
+
msgstr ""
|
1358 |
+
|
1359 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/deliverreport-show.php:14
|
1360 |
+
msgid "Oops.. Unexpected error occurred. Please try again."
|
1361 |
+
msgstr ""
|
1362 |
+
|
1363 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/deliverreport-show.php:60
|
1364 |
+
msgid "Delivery Report"
|
1365 |
+
msgstr ""
|
1366 |
+
|
1367 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/deliverreport-show.php:72
|
1368 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/deliverreport-show.php:83
|
1369 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:61
|
1370 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:69
|
1371 |
+
msgid "Sno"
|
1372 |
+
msgstr ""
|
1373 |
+
|
1374 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/deliverreport-show.php:73
|
1375 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/deliverreport-show.php:84
|
1376 |
+
msgid "Email"
|
1377 |
+
msgstr ""
|
1378 |
+
|
1379 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/deliverreport-show.php:74
|
1380 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/deliverreport-show.php:85
|
1381 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:110
|
1382 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:123
|
1383 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:290
|
1384 |
+
msgid "Status"
|
1385 |
+
msgstr ""
|
1386 |
+
|
1387 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/deliverreport-show.php:75
|
1388 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/deliverreport-show.php:86
|
1389 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:111
|
1390 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:124
|
1391 |
+
msgid "Sent"
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/deliverreport-show.php:76
|
1395 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/deliverreport-show.php:87
|
1396 |
+
msgid "Sent Date"
|
1397 |
+
msgstr ""
|
1398 |
+
|
1399 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/deliverreport-show.php:77
|
1400 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/deliverreport-show.php:88
|
1401 |
+
msgid "Viewed Status"
|
1402 |
+
msgstr ""
|
1403 |
+
|
1404 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/deliverreport-show.php:78
|
1405 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/deliverreport-show.php:89
|
1406 |
+
msgid "Viewed Date"
|
1407 |
+
msgstr ""
|
1408 |
+
|
1409 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-preview.php:27
|
1410 |
+
msgid "Preview Email"
|
1411 |
+
msgstr ""
|
1412 |
+
|
1413 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-preview.php:31
|
1414 |
+
msgid ""
|
1415 |
+
"This is how the email you sent may look. <br>Note: Different email services "
|
1416 |
+
"(like gmail, yahoo etc) display email content differently. So there could be "
|
1417 |
+
"a slight variation on how your customer will view the email content."
|
1418 |
+
msgstr ""
|
1419 |
+
|
1420 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-preview.php:53
|
1421 |
+
msgid "Back"
|
1422 |
+
msgstr ""
|
1423 |
+
|
1424 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:43
|
1425 |
+
msgid "Successfully deleted all reports except latest 10."
|
1426 |
+
msgstr ""
|
1427 |
+
|
1428 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:97
|
1429 |
+
msgid ""
|
1430 |
+
"It will show reports for all Newsletters & Post Notification emails sent."
|
1431 |
+
msgstr ""
|
1432 |
+
|
1433 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:107
|
1434 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:120
|
1435 |
+
msgid "View Reports"
|
1436 |
+
msgstr ""
|
1437 |
+
|
1438 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:109
|
1439 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:122
|
1440 |
+
msgid "Type"
|
1441 |
+
msgstr ""
|
1442 |
+
|
1443 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:112
|
1444 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:125
|
1445 |
+
msgid "Start Date"
|
1446 |
+
msgstr ""
|
1447 |
+
|
1448 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:113
|
1449 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:126
|
1450 |
+
msgid "End Date"
|
1451 |
+
msgstr ""
|
1452 |
+
|
1453 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:114
|
1454 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:127
|
1455 |
+
msgid "Total"
|
1456 |
+
msgstr ""
|
1457 |
+
|
1458 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:115
|
1459 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:128
|
1460 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:64
|
1461 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:72
|
1462 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:293
|
1463 |
+
msgid "Action"
|
1464 |
+
msgstr ""
|
1465 |
+
|
1466 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:190
|
1467 |
+
msgid "Optimize Table & Delete Records"
|
1468 |
+
msgstr ""
|
1469 |
+
|
1470 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:201
|
1471 |
+
msgid ""
|
1472 |
+
"Note: Please click on <strong>Optimize Table & Delete Records</strong> "
|
1473 |
+
"button to delete all reports except latest 10."
|
1474 |
+
msgstr ""
|
1475 |
+
|
1476 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/sentmail/sentmail-show.php:216
|
1477 |
+
msgid ""
|
1478 |
+
"<strong>Note:</strong> If you delete record for the emails with Status = "
|
1479 |
+
"<span style=\"color:#FF0000;\">In Queue</span>, then cron job in queue will "
|
1480 |
+
"be deleted too and email will not be sent."
|
1481 |
+
msgstr ""
|
1482 |
+
|
1483 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/setting-sync.php:16
|
1484 |
+
msgid "Table sync completed successfully."
|
1485 |
+
msgstr ""
|
1486 |
+
|
1487 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/setting-sync.php:29
|
1488 |
+
msgid "Sync plugin tables"
|
1489 |
+
msgstr ""
|
1490 |
+
|
1491 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/setting-sync.php:33
|
1492 |
+
msgid "Click to sync tables"
|
1493 |
+
msgstr ""
|
1494 |
+
|
1495 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:23
|
1496 |
+
msgid "Admin"
|
1497 |
+
msgstr ""
|
1498 |
+
|
1499 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:24
|
1500 |
+
msgid "Signup Confirmation"
|
1501 |
+
msgstr ""
|
1502 |
+
|
1503 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:25
|
1504 |
+
msgid "Cron"
|
1505 |
+
msgstr ""
|
1506 |
+
|
1507 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:26
|
1508 |
+
msgid "User Roles"
|
1509 |
+
msgstr ""
|
1510 |
+
|
1511 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:67
|
1512 |
+
msgid "Save Settings"
|
1513 |
+
msgstr ""
|
1514 |
+
|
1515 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:78
|
1516 |
+
msgid "Sender of Notifications"
|
1517 |
+
msgstr ""
|
1518 |
+
|
1519 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:79
|
1520 |
+
msgid ""
|
1521 |
+
"Choose a FROM name and FROM email address for all the emails to be sent from "
|
1522 |
+
"this plugin."
|
1523 |
+
msgstr ""
|
1524 |
+
|
1525 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:89
|
1526 |
+
msgid "Email Type"
|
1527 |
+
msgstr ""
|
1528 |
+
|
1529 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:90
|
1530 |
+
msgid ""
|
1531 |
+
"Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
|
1532 |
+
"Option 3 & 4 is to send emails with PHP method mail()."
|
1533 |
+
msgstr ""
|
1534 |
+
|
1535 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:94
|
1536 |
+
msgid "1. WP HTML MAIL"
|
1537 |
+
msgstr ""
|
1538 |
+
|
1539 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:95
|
1540 |
+
msgid "2. WP PLAINTEXT MAIL"
|
1541 |
+
msgstr ""
|
1542 |
+
|
1543 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:96
|
1544 |
+
msgid "3. PHP HTML MAIL"
|
1545 |
+
msgstr ""
|
1546 |
+
|
1547 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:97
|
1548 |
+
msgid "4. PHP PLAINTEXT MAIL"
|
1549 |
+
msgstr ""
|
1550 |
+
|
1551 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:104
|
1552 |
+
msgid "Opt-In Type"
|
1553 |
+
msgstr ""
|
1554 |
+
|
1555 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:105
|
1556 |
+
msgid ""
|
1557 |
+
"Double Opt-In : In this type, the subscriber is sent an activation link as "
|
1558 |
+
"soon as they subscribe to your list. They have to confirm their subscription "
|
1559 |
+
"by clicking on the activation link.<br />Single Opt-In : In this type, the "
|
1560 |
+
"subscriber is not asked to confirm their email address. They are subscribed "
|
1561 |
+
"directly in the list."
|
1562 |
+
msgstr ""
|
1563 |
+
|
1564 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:109
|
1565 |
+
msgid "Double Opt In"
|
1566 |
+
msgstr ""
|
1567 |
+
|
1568 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:110
|
1569 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-add.php:155
|
1570 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-edit.php:150
|
1571 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:182
|
1572 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:326
|
1573 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:359
|
1574 |
+
msgid "Single Opt In"
|
1575 |
+
msgstr ""
|
1576 |
+
|
1577 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:117
|
1578 |
+
msgid "Image Size"
|
1579 |
+
msgstr ""
|
1580 |
+
|
1581 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:118
|
1582 |
+
msgid ""
|
1583 |
+
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
1584 |
+
"Emails."
|
1585 |
+
msgstr ""
|
1586 |
+
|
1587 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:122
|
1588 |
+
msgid "Full Size"
|
1589 |
+
msgstr ""
|
1590 |
+
|
1591 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:123
|
1592 |
+
msgid "Medium Size"
|
1593 |
+
msgstr ""
|
1594 |
+
|
1595 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:130
|
1596 |
+
msgid "Admin Email Addresses"
|
1597 |
+
msgstr ""
|
1598 |
+
|
1599 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:131
|
1600 |
+
msgid ""
|
1601 |
+
"Enter the admin email addresses that should receive notifications (separated "
|
1602 |
+
"by comma)."
|
1603 |
+
msgstr ""
|
1604 |
+
|
1605 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:137
|
1606 |
+
msgid "Notify Admin when a new subscriber signs up"
|
1607 |
+
msgstr ""
|
1608 |
+
|
1609 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:138
|
1610 |
+
msgid ""
|
1611 |
+
"To send admin email notifications for the new subscriber. This option must "
|
1612 |
+
"be set to YES."
|
1613 |
+
msgstr ""
|
1614 |
+
|
1615 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:150
|
1616 |
+
msgid "Admin Email Subject on new subscriber sign up"
|
1617 |
+
msgstr ""
|
1618 |
+
|
1619 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:151
|
1620 |
+
msgid ""
|
1621 |
+
"Subject for the admin email whenever a new subscriber signs up and is "
|
1622 |
+
"confirmed."
|
1623 |
+
msgstr ""
|
1624 |
+
|
1625 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:157
|
1626 |
+
msgid "Admin Email Content on new subscriber signs up"
|
1627 |
+
msgstr ""
|
1628 |
+
|
1629 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:158
|
1630 |
+
msgid ""
|
1631 |
+
"Content for the admin email whenever a new subscriber signs up and is "
|
1632 |
+
"confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
|
1633 |
+
msgstr ""
|
1634 |
+
|
1635 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:165
|
1636 |
+
msgid "Sent Report Subject"
|
1637 |
+
msgstr ""
|
1638 |
+
|
1639 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:166
|
1640 |
+
msgid ""
|
1641 |
+
"Subject for the email report which will be sent to admin.<br />(Will be sent "
|
1642 |
+
"only if sending email via immediately)"
|
1643 |
+
msgstr ""
|
1644 |
+
|
1645 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:172
|
1646 |
+
msgid "Sent Report Content"
|
1647 |
+
msgstr ""
|
1648 |
+
|
1649 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:173
|
1650 |
+
msgid ""
|
1651 |
+
"Content for the email report which will be sent to admin.<br />Available "
|
1652 |
+
"Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}<br />(Will be "
|
1653 |
+
"sent only if sending email via immediately)"
|
1654 |
+
msgstr ""
|
1655 |
+
|
1656 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:184
|
1657 |
+
msgid "Double Opt-In Email Subject (Confirmation Email)"
|
1658 |
+
msgstr ""
|
1659 |
+
|
1660 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:185
|
1661 |
+
msgid ""
|
1662 |
+
"Subject for the confirmation email to be sent for Double Opt-In whenever a "
|
1663 |
+
"subscriber signs up."
|
1664 |
+
msgstr ""
|
1665 |
+
|
1666 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:191
|
1667 |
+
msgid "Double Opt-In Email Content (Confirmation Email)"
|
1668 |
+
msgstr ""
|
1669 |
+
|
1670 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:192
|
1671 |
+
msgid ""
|
1672 |
+
"Content for the confirmation email to be sent for Double Opt-In whenever a "
|
1673 |
+
"subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
|
1674 |
+
msgstr ""
|
1675 |
+
|
1676 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:198
|
1677 |
+
msgid "Double Opt-In Confirmation Link"
|
1678 |
+
msgstr ""
|
1679 |
+
|
1680 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:199
|
1681 |
+
msgid "It is a readonly field and you are advised not to modify it."
|
1682 |
+
msgstr ""
|
1683 |
+
|
1684 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:206
|
1685 |
+
msgid ""
|
1686 |
+
"Text to display after an email address is successfully subscribed from "
|
1687 |
+
"Double Opt-In (Confirmation) Email"
|
1688 |
+
msgstr ""
|
1689 |
+
|
1690 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:207
|
1691 |
+
msgid ""
|
1692 |
+
"This text will be displayed once user clicks on email confirmation link from "
|
1693 |
+
"the Double Opt In (confirmation) Email."
|
1694 |
+
msgstr ""
|
1695 |
+
|
1696 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:223
|
1697 |
+
msgid "Send Welcome Email to New Subscribers after Sign Up?"
|
1698 |
+
msgstr ""
|
1699 |
+
|
1700 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:224
|
1701 |
+
msgid ""
|
1702 |
+
"To send welcome email to subscriber after successful signup. This option "
|
1703 |
+
"must be set to YES."
|
1704 |
+
msgstr ""
|
1705 |
+
|
1706 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:235
|
1707 |
+
msgid "Subject for Welcome Email"
|
1708 |
+
msgstr ""
|
1709 |
+
|
1710 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:236
|
1711 |
+
msgid ""
|
1712 |
+
"Subject for the subscriber welcome email. This will be sent whenever a "
|
1713 |
+
"user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
|
1714 |
+
"Opt-In) successfully."
|
1715 |
+
msgstr ""
|
1716 |
+
|
1717 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:242
|
1718 |
+
msgid "Email Content for Welcome Email"
|
1719 |
+
msgstr ""
|
1720 |
+
|
1721 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:243
|
1722 |
+
msgid ""
|
1723 |
+
"Content for the subscriber welcome email whenever a user's email is either "
|
1724 |
+
"confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
|
1725 |
+
"<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
|
1726 |
+
msgstr ""
|
1727 |
+
|
1728 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:251
|
1729 |
+
msgid "Unsubscribe Link"
|
1730 |
+
msgstr ""
|
1731 |
+
|
1732 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:252
|
1733 |
+
msgid ""
|
1734 |
+
"This unsubscribe link is automatically added to all the emails that are sent "
|
1735 |
+
"from this plugin. It is a readonly field and you are advised not to modify "
|
1736 |
+
"it."
|
1737 |
+
msgstr ""
|
1738 |
+
|
1739 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:258
|
1740 |
+
msgid "Unsubscribe Text in Email"
|
1741 |
+
msgstr ""
|
1742 |
+
|
1743 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:259
|
1744 |
+
msgid ""
|
1745 |
+
"The text for the unsubscribe link. This text is automatically added with "
|
1746 |
+
"unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
|
1747 |
+
msgstr ""
|
1748 |
+
|
1749 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:266
|
1750 |
+
msgid "Text to display after an email address is unsubscribed"
|
1751 |
+
msgstr ""
|
1752 |
+
|
1753 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:267
|
1754 |
+
msgid ""
|
1755 |
+
"This text will be displayed once user clicks on unsubscribe link from the "
|
1756 |
+
"email."
|
1757 |
+
msgstr ""
|
1758 |
+
|
1759 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:282
|
1760 |
+
msgid "Error in the Subscribe / Confirmation Link"
|
1761 |
+
msgstr ""
|
1762 |
+
|
1763 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:283
|
1764 |
+
msgid ""
|
1765 |
+
"Default message to display if there is any issue while clicking on subscribe "
|
1766 |
+
"/ confirmation link from the Double Opt-In (Confirmation) emails."
|
1767 |
+
msgstr ""
|
1768 |
+
|
1769 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:289
|
1770 |
+
msgid "Error in the Unsubscribe Link"
|
1771 |
+
msgstr ""
|
1772 |
+
|
1773 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:290
|
1774 |
+
msgid ""
|
1775 |
+
"Default message to display if there is any issue while clicking on "
|
1776 |
+
"unsubscribe link from the emails."
|
1777 |
+
msgstr ""
|
1778 |
+
|
1779 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:302
|
1780 |
+
msgid ""
|
1781 |
+
"Select user roles who can access following menus. Only Admin can change this."
|
1782 |
+
msgstr ""
|
1783 |
+
|
1784 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:308
|
1785 |
+
msgid "Subscribers Menu"
|
1786 |
+
msgstr ""
|
1787 |
+
|
1788 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:312
|
1789 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:324
|
1790 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:336
|
1791 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:348
|
1792 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:360
|
1793 |
+
msgid "Administrator Only"
|
1794 |
+
msgstr ""
|
1795 |
+
|
1796 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:313
|
1797 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:325
|
1798 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:337
|
1799 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:349
|
1800 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:361
|
1801 |
+
msgid "Administrator/Editor"
|
1802 |
+
msgstr ""
|
1803 |
+
|
1804 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:314
|
1805 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:326
|
1806 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:338
|
1807 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:350
|
1808 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:362
|
1809 |
+
msgid "Administrator/Editor/Author/Contributor"
|
1810 |
+
msgstr ""
|
1811 |
+
|
1812 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:320
|
1813 |
+
msgid "Templates Menu"
|
1814 |
+
msgstr ""
|
1815 |
+
|
1816 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:332
|
1817 |
+
msgid "Post Notifications Menu"
|
1818 |
+
msgstr ""
|
1819 |
+
|
1820 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:356
|
1821 |
+
msgid "Reports Menu"
|
1822 |
+
msgstr ""
|
1823 |
+
|
1824 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:373
|
1825 |
+
msgid "Cron job URL"
|
1826 |
+
msgstr ""
|
1827 |
+
|
1828 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:374
|
1829 |
+
msgid ""
|
1830 |
+
"This is your Cron Job URL. It is a readonly field and you are advised not to "
|
1831 |
+
"modify it."
|
1832 |
+
msgstr ""
|
1833 |
+
|
1834 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:384
|
1835 |
+
msgid "Email Count"
|
1836 |
+
msgstr ""
|
1837 |
+
|
1838 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:385
|
1839 |
+
msgid "Number of emails that you want to trigger per hour."
|
1840 |
+
msgstr ""
|
1841 |
+
|
1842 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:390
|
1843 |
+
msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
|
1844 |
+
msgstr ""
|
1845 |
+
|
1846 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:395
|
1847 |
+
msgid "Cron Report"
|
1848 |
+
msgstr ""
|
1849 |
+
|
1850 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:396
|
1851 |
+
msgid ""
|
1852 |
+
"Email to admin whenever a cron URL is triggered from your server.<br />"
|
1853 |
+
"Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
1854 |
+
msgstr ""
|
1855 |
+
|
1856 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:400
|
1857 |
+
msgid ""
|
1858 |
+
"Enabling this will send a cron report email on every successfully cron hit"
|
1859 |
+
msgstr ""
|
1860 |
+
|
1861 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:408
|
1862 |
+
msgid "What is Cron (auto emails) and how to setup Cron Job?"
|
1863 |
+
msgstr ""
|
1864 |
+
|
1865 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:409
|
1866 |
+
msgid ""
|
1867 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1868 |
+
"schedule-cron-emails/?"
|
1869 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
|
1870 |
+
"Cron?</a>"
|
1871 |
+
msgstr ""
|
1872 |
+
|
1873 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:410
|
1874 |
+
msgid ""
|
1875 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1876 |
+
"schedule-cron-emails-in-cpanel/?"
|
1877 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup "
|
1878 |
+
"cron job in cPanel</a>"
|
1879 |
+
msgstr ""
|
1880 |
+
|
1881 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:411
|
1882 |
+
msgid ""
|
1883 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1884 |
+
"schedule-cron-emails-in-parallels-plesk/?"
|
1885 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup "
|
1886 |
+
"cron job in Plesk</a>"
|
1887 |
+
msgstr ""
|
1888 |
+
|
1889 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:412
|
1890 |
+
msgid ""
|
1891 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-"
|
1892 |
+
"do-if-hosting-doesnt-support-cron-jobs/?"
|
1893 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
|
1894 |
+
"does not support cron jobs?</a>"
|
1895 |
+
msgstr ""
|
1896 |
+
|
1897 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:530
|
1898 |
+
msgid "Please enter sender of notifications from name."
|
1899 |
+
msgstr ""
|
1900 |
+
|
1901 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:535
|
1902 |
+
msgid "Please enter sender of notifications from email."
|
1903 |
+
msgstr ""
|
1904 |
+
|
1905 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:579
|
1906 |
+
msgid "Please enter valid email count."
|
1907 |
+
msgstr ""
|
1908 |
+
|
1909 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:594
|
1910 |
+
msgid "Settings Saved."
|
1911 |
+
msgstr ""
|
1912 |
+
|
1913 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/settings/settings-edit.php:597
|
1914 |
+
msgid "Oops, unable to update."
|
1915 |
+
msgstr ""
|
1916 |
+
|
1917 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-add.php:39
|
1918 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-edit.php:54
|
1919 |
+
msgid "Please enter subscriber email address."
|
1920 |
+
msgstr ""
|
1921 |
+
|
1922 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-add.php:52
|
1923 |
+
msgid "Please select or create your group for this email."
|
1924 |
+
msgstr ""
|
1925 |
+
|
1926 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-add.php:59
|
1927 |
+
msgid ""
|
1928 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1929 |
+
"the group name."
|
1930 |
+
msgstr ""
|
1931 |
+
|
1932 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-add.php:69
|
1933 |
+
msgid "Subscriber has been saved."
|
1934 |
+
msgstr ""
|
1935 |
+
|
1936 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-add.php:71
|
1937 |
+
msgid "Subscriber already exists."
|
1938 |
+
msgstr ""
|
1939 |
+
|
1940 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-add.php:74
|
1941 |
+
msgid "Invalid Email."
|
1942 |
+
msgstr ""
|
1943 |
+
|
1944 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-add.php:114
|
1945 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-edit.php:109
|
1946 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:51
|
1947 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:147
|
1948 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:243
|
1949 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-sync.php:89
|
1950 |
+
msgid "Add New Subscriber"
|
1951 |
+
msgstr ""
|
1952 |
+
|
1953 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-add.php:115
|
1954 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-edit.php:110
|
1955 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:52
|
1956 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:214
|
1957 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:244
|
1958 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-sync.php:90
|
1959 |
+
msgid "Import"
|
1960 |
+
msgstr ""
|
1961 |
+
|
1962 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-add.php:116
|
1963 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-edit.php:111
|
1964 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:148
|
1965 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:245
|
1966 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-sync.php:91
|
1967 |
+
msgid "Export"
|
1968 |
+
msgstr ""
|
1969 |
+
|
1970 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-add.php:117
|
1971 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-edit.php:112
|
1972 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:53
|
1973 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:149
|
1974 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:246
|
1975 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-sync.php:143
|
1976 |
+
msgid "Sync"
|
1977 |
+
msgstr ""
|
1978 |
+
|
1979 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-add.php:127
|
1980 |
+
msgid "Enter Subscriber's Full name"
|
1981 |
+
msgstr ""
|
1982 |
+
|
1983 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-add.php:137
|
1984 |
+
msgid "Enter Subscriber's Email Address"
|
1985 |
+
msgstr ""
|
1986 |
+
|
1987 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-add.php:147
|
1988 |
+
msgid "Select Subscriber's Status"
|
1989 |
+
msgstr ""
|
1990 |
+
|
1991 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-add.php:152
|
1992 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-edit.php:147
|
1993 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:179
|
1994 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:323
|
1995 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:356
|
1996 |
+
msgid "Confirmed"
|
1997 |
+
msgstr ""
|
1998 |
+
|
1999 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-add.php:153
|
2000 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-edit.php:148
|
2001 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:180
|
2002 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:324
|
2003 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:357
|
2004 |
+
msgid "Unconfirmed"
|
2005 |
+
msgstr ""
|
2006 |
+
|
2007 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-add.php:154
|
2008 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-edit.php:149
|
2009 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:181
|
2010 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:325
|
2011 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:358
|
2012 |
+
msgid "Unsubscribed"
|
2013 |
+
msgstr ""
|
2014 |
+
|
2015 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-add.php:162
|
2016 |
+
msgid "Select (or) Create Group for Subscriber"
|
2017 |
+
msgstr ""
|
2018 |
+
|
2019 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-add.php:178
|
2020 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:206
|
2021 |
+
msgid "(or)"
|
2022 |
+
msgstr ""
|
2023 |
+
|
2024 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-add.php:187
|
2025 |
+
msgid "Add Subscriber"
|
2026 |
+
msgstr ""
|
2027 |
+
|
2028 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-edit.php:64
|
2029 |
+
msgid "Error: Special characters are not allowed in the group name."
|
2030 |
+
msgstr ""
|
2031 |
+
|
2032 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-edit.php:74
|
2033 |
+
msgid "Subscriber details updated."
|
2034 |
+
msgstr ""
|
2035 |
+
|
2036 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-edit.php:76
|
2037 |
+
msgid "Subscriber already exists for this group."
|
2038 |
+
msgstr ""
|
2039 |
+
|
2040 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-edit.php:108
|
2041 |
+
msgid "Edit Subscriber"
|
2042 |
+
msgstr ""
|
2043 |
+
|
2044 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-edit.php:122
|
2045 |
+
msgid "Subscriber's Full Name"
|
2046 |
+
msgstr ""
|
2047 |
+
|
2048 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-edit.php:132
|
2049 |
+
msgid "Subscriber's Email Address"
|
2050 |
+
msgstr ""
|
2051 |
+
|
2052 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-edit.php:142
|
2053 |
+
msgid "Update Subscriber's Status"
|
2054 |
+
msgstr ""
|
2055 |
+
|
2056 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-edit.php:157
|
2057 |
+
msgid "Update Subscriber's Group"
|
2058 |
+
msgstr ""
|
2059 |
+
|
2060 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:12
|
2061 |
+
msgid ""
|
2062 |
+
"Oops! Looks like you are not the site administrator.<br><br>Only the site "
|
2063 |
+
"administrator can export subscriber list."
|
2064 |
+
msgstr ""
|
2065 |
+
|
2066 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:14
|
2067 |
+
msgid "Go back to Subscribers dashboard"
|
2068 |
+
msgstr ""
|
2069 |
+
|
2070 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:50
|
2071 |
+
msgid "Export Email Addresses"
|
2072 |
+
msgstr ""
|
2073 |
+
|
2074 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:62
|
2075 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:70
|
2076 |
+
msgid "Type of List to Export"
|
2077 |
+
msgstr ""
|
2078 |
+
|
2079 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:63
|
2080 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:71
|
2081 |
+
msgid "Total Emails Count"
|
2082 |
+
msgstr ""
|
2083 |
+
|
2084 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:77
|
2085 |
+
msgid "1"
|
2086 |
+
msgstr ""
|
2087 |
+
|
2088 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:78
|
2089 |
+
msgid "All Subscribers"
|
2090 |
+
msgstr ""
|
2091 |
+
|
2092 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:80
|
2093 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:86
|
2094 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:92
|
2095 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:98
|
2096 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:104
|
2097 |
+
msgid "Click to Export in CSV"
|
2098 |
+
msgstr ""
|
2099 |
+
|
2100 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:83
|
2101 |
+
msgid "2"
|
2102 |
+
msgstr ""
|
2103 |
+
|
2104 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:84
|
2105 |
+
msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
|
2106 |
+
msgstr ""
|
2107 |
+
|
2108 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:89
|
2109 |
+
msgid "3"
|
2110 |
+
msgstr ""
|
2111 |
+
|
2112 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:90
|
2113 |
+
msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
|
2114 |
+
msgstr ""
|
2115 |
+
|
2116 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:95
|
2117 |
+
msgid "4"
|
2118 |
+
msgstr ""
|
2119 |
+
|
2120 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:96
|
2121 |
+
msgid "WordPress Registered Users"
|
2122 |
+
msgstr ""
|
2123 |
+
|
2124 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:101
|
2125 |
+
msgid "5"
|
2126 |
+
msgstr ""
|
2127 |
+
|
2128 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-export.php:102
|
2129 |
+
msgid "Commented Authors"
|
2130 |
+
msgstr ""
|
2131 |
+
|
2132 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:45
|
2133 |
+
msgid ""
|
2134 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
2135 |
+
"the Group name."
|
2136 |
+
msgstr ""
|
2137 |
+
|
2138 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:96
|
2139 |
+
msgid "email imported."
|
2140 |
+
msgstr ""
|
2141 |
+
|
2142 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:97
|
2143 |
+
msgid "email already exists."
|
2144 |
+
msgstr ""
|
2145 |
+
|
2146 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:98
|
2147 |
+
msgid "email are invalid."
|
2148 |
+
msgstr ""
|
2149 |
+
|
2150 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:101
|
2151 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:130
|
2152 |
+
msgid "Click here"
|
2153 |
+
msgstr ""
|
2154 |
+
|
2155 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:101
|
2156 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:130
|
2157 |
+
msgid " to view details."
|
2158 |
+
msgstr ""
|
2159 |
+
|
2160 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:109
|
2161 |
+
msgid "File Upload Failed."
|
2162 |
+
msgstr ""
|
2163 |
+
|
2164 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:146
|
2165 |
+
msgid "Import Email Addresses"
|
2166 |
+
msgstr ""
|
2167 |
+
|
2168 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:159
|
2169 |
+
msgid "Select CSV file"
|
2170 |
+
msgstr ""
|
2171 |
+
|
2172 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:161
|
2173 |
+
msgid "Check CSV structure "
|
2174 |
+
msgstr ""
|
2175 |
+
|
2176 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:162
|
2177 |
+
msgid "from here"
|
2178 |
+
msgstr ""
|
2179 |
+
|
2180 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:173
|
2181 |
+
msgid "Select Subscribers Email Status"
|
2182 |
+
msgstr ""
|
2183 |
+
|
2184 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-import.php:189
|
2185 |
+
msgid "Select (or) Create Group for Subscribers"
|
2186 |
+
msgstr ""
|
2187 |
+
|
2188 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:45
|
2189 |
+
msgid "Selected details does not exists."
|
2190 |
+
msgstr ""
|
2191 |
+
|
2192 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:56
|
2193 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:95
|
2194 |
+
msgid "Record deleted."
|
2195 |
+
msgstr ""
|
2196 |
+
|
2197 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:67
|
2198 |
+
msgid ""
|
2199 |
+
"To send confirmation email, please change the Opt-in option to Double Opt In."
|
2200 |
+
msgstr ""
|
2201 |
+
|
2202 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:75
|
2203 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:134
|
2204 |
+
msgid "Confirmation emails resent successfully."
|
2205 |
+
msgstr ""
|
2206 |
+
|
2207 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:100
|
2208 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:139
|
2209 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:178
|
2210 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:217
|
2211 |
+
msgid "No record was selected."
|
2212 |
+
msgstr ""
|
2213 |
+
|
2214 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:115
|
2215 |
+
msgid ""
|
2216 |
+
"To send confirmation mail, please change the Opt-in option to Double Opt In."
|
2217 |
+
msgstr ""
|
2218 |
+
|
2219 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:164
|
2220 |
+
msgid "Subscribers Group updated."
|
2221 |
+
msgstr ""
|
2222 |
+
|
2223 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:169
|
2224 |
+
msgid "Please select New group to update."
|
2225 |
+
msgstr ""
|
2226 |
+
|
2227 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:203
|
2228 |
+
msgid "Subscribers Status updated."
|
2229 |
+
msgstr ""
|
2230 |
+
|
2231 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:208
|
2232 |
+
msgid "Please select New Status to update."
|
2233 |
+
msgstr ""
|
2234 |
+
|
2235 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:256
|
2236 |
+
msgid "Total Subscribers: "
|
2237 |
+
msgstr ""
|
2238 |
+
|
2239 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:258
|
2240 |
+
#, php-format
|
2241 |
+
msgid "Active Subscribers: %s"
|
2242 |
+
msgstr ""
|
2243 |
+
|
2244 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:288
|
2245 |
+
msgid "Email Address"
|
2246 |
+
msgstr ""
|
2247 |
+
|
2248 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:291
|
2249 |
+
msgid "Group"
|
2250 |
+
msgstr ""
|
2251 |
+
|
2252 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:292
|
2253 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
2254 |
+
msgstr ""
|
2255 |
+
|
2256 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:300
|
2257 |
+
msgid "Bulk Actions"
|
2258 |
+
msgstr ""
|
2259 |
+
|
2260 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:302
|
2261 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:420
|
2262 |
+
msgid "Resend Confirmation"
|
2263 |
+
msgstr ""
|
2264 |
+
|
2265 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:303
|
2266 |
+
msgid "Update Subscribers Group"
|
2267 |
+
msgstr ""
|
2268 |
+
|
2269 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:304
|
2270 |
+
msgid "Update Subscribers Status"
|
2271 |
+
msgstr ""
|
2272 |
+
|
2273 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:307
|
2274 |
+
msgid "Select Group"
|
2275 |
+
msgstr ""
|
2276 |
+
|
2277 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:322
|
2278 |
+
msgid "Select Status"
|
2279 |
+
msgstr ""
|
2280 |
+
|
2281 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:331
|
2282 |
+
msgid "Apply"
|
2283 |
+
msgstr ""
|
2284 |
+
|
2285 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:338
|
2286 |
+
msgid "All Groups"
|
2287 |
+
msgstr ""
|
2288 |
+
|
2289 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:355
|
2290 |
+
msgid "All Status"
|
2291 |
+
msgstr ""
|
2292 |
+
|
2293 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:366
|
2294 |
+
msgid "1 to 500 emails"
|
2295 |
+
msgstr ""
|
2296 |
+
|
2297 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:367
|
2298 |
+
msgid "501 to 1000"
|
2299 |
+
msgstr ""
|
2300 |
+
|
2301 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:368
|
2302 |
+
msgid "1001 to 1500"
|
2303 |
+
msgstr ""
|
2304 |
+
|
2305 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:369
|
2306 |
+
msgid "1501 to 2000"
|
2307 |
+
msgstr ""
|
2308 |
+
|
2309 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:370
|
2310 |
+
msgid "2001 to 4000"
|
2311 |
+
msgstr ""
|
2312 |
+
|
2313 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:371
|
2314 |
+
msgid "4001 to 6000"
|
2315 |
+
msgstr ""
|
2316 |
+
|
2317 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:372
|
2318 |
+
msgid "6001 to 10000"
|
2319 |
+
msgstr ""
|
2320 |
+
|
2321 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-show.php:373
|
2322 |
+
msgid "Display All"
|
2323 |
+
msgstr ""
|
2324 |
+
|
2325 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-sync.php:36
|
2326 |
+
msgid "Please select default group to newly registered user."
|
2327 |
+
msgstr ""
|
2328 |
+
|
2329 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-sync.php:50
|
2330 |
+
msgid "Emails Successfully Synced."
|
2331 |
+
msgstr ""
|
2332 |
+
|
2333 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-sync.php:88
|
2334 |
+
msgid "Sync Email"
|
2335 |
+
msgstr ""
|
2336 |
+
|
2337 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-sync.php:101
|
2338 |
+
msgid "Sync newly registered users to subscribers list"
|
2339 |
+
msgstr ""
|
2340 |
+
|
2341 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/subscribers/view-subscriber-sync.php:114
|
2342 |
+
msgid "Select group to add newly registered users to"
|
2343 |
+
msgstr ""
|
2344 |
+
|
2345 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/templates/template-preview.php:32
|
2346 |
+
msgid "Template Preview"
|
2347 |
+
msgstr ""
|
2348 |
+
|
2349 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/templates/template-preview.php:40
|
2350 |
+
msgid "This is how your email may look."
|
2351 |
+
msgstr ""
|
2352 |
+
|
2353 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/templates/template-preview.php:42
|
2354 |
+
msgid ""
|
2355 |
+
"<br><br>This Post Notification preview has replaced keywords from your last "
|
2356 |
+
"published blog post."
|
2357 |
+
msgstr ""
|
2358 |
+
|
2359 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/templates/template-preview.php:44
|
2360 |
+
msgid ""
|
2361 |
+
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
2362 |
+
"content differently. So there could be a slight variation on how your "
|
2363 |
+
"customer will view the email content."
|
2364 |
+
msgstr ""
|
2365 |
+
|
2366 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/tools/tools.php:23
|
2367 |
+
msgid "Test Email"
|
2368 |
+
msgstr ""
|
2369 |
+
|
2370 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/tools/tools.php:72
|
2371 |
+
msgid "Sende a Test Email"
|
2372 |
+
msgstr ""
|
2373 |
+
|
2374 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/tools/tools.php:73
|
2375 |
+
msgid ""
|
2376 |
+
"Type an email address here and then click a button below to generate a test "
|
2377 |
+
"email."
|
2378 |
+
msgstr ""
|
2379 |
+
|
2380 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/tools/tools.php:103
|
2381 |
+
msgid "Please enter email."
|
2382 |
+
msgstr ""
|
2383 |
+
|
2384 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/tools/tools.php:114
|
2385 |
+
msgid "Email have been sent successfully."
|
2386 |
+
msgstr ""
|
2387 |
+
|
2388 |
+
#. %s - email address a test email will be sent to.
|
2389 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/tools/tools.php:184
|
2390 |
+
#, php-format
|
2391 |
+
msgid "Test email to %s"
|
2392 |
+
msgstr ""
|
2393 |
+
|
2394 |
+
#: ../../../../../repositories/GitLab/icegram/email-subscribers/tools/tools.php:185
|
2395 |
+
msgid "This email was generated by the Email Subscribers WordPress plugin."
|
2396 |
+
msgstr ""
|
2397 |
+
|
2398 |
#. Plugin Name of the plugin/theme
|
2399 |
msgid "Email Subscribers & Newsletters"
|
2400 |
msgstr ""
|
2409 |
#. Author URI of the plugin
|
2410 |
msgid "https://www.icegram.com/"
|
2411 |
msgstr ""
|
|
|
|
|
|
|
|
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
|
6 |
Requires at least: 3.9
|
7 |
Tested up to: 4.9.8
|
8 |
-
Stable tag: 3.5.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses
|
11 |
|
@@ -342,6 +342,10 @@ Use our free plugin [Email Subscribers - Group Selector](https://wordpress.org/p
|
|
342 |
|
343 |
== Changelog ==
|
344 |
|
|
|
|
|
|
|
|
|
345 |
= 3.5.16 (14.11.2018) =
|
346 |
|
347 |
* Fix: spam subscription issue.
|
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
|
6 |
Requires at least: 3.9
|
7 |
Tested up to: 4.9.8
|
8 |
+
Stable tag: 3.5.17
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses
|
11 |
|
342 |
|
343 |
== Changelog ==
|
344 |
|
345 |
+
= 3.5.17 (19.11.2018) =
|
346 |
+
|
347 |
+
* Update: Now, email subscription limit also check for non admin users.
|
348 |
+
|
349 |
= 3.5.16 (14.11.2018) =
|
350 |
|
351 |
* Fix: spam subscription issue.
|
subscribers/view-subscriber-import.php
CHANGED
@@ -62,7 +62,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
62 |
|
63 |
// No errors found, we can add this Group to the table
|
64 |
if ( $es_error_found == FALSE ) {
|
65 |
-
|
66 |
$inserted = 0;
|
67 |
$duplicate = 0;
|
68 |
$invalid = 0;
|
62 |
|
63 |
// No errors found, we can add this Group to the table
|
64 |
if ( $es_error_found == FALSE ) {
|
65 |
+
if(count($csv) > 0) {
|
66 |
$inserted = 0;
|
67 |
$duplicate = 0;
|
68 |
$invalid = 0;
|