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