Email Subscribers & Newsletters - Version 3.1.1

Version Description

  • Fix: call_user_func_array() expects parameter 1 to be a valid callback, function 'es_admin_option' not found or invalid function name
  • Fix: Incorrect plugin name in admin dashboard
  • Fix: Warnings in console on submitting subscription form in Chrome
  • Update: Revised Help & Info page inside plugin
  • Update: Added translation for missing texts
  • Update: Updated POT file
  • Tweaks: Minor tweaks
Download this release

Release Info

Developer storeapps
Plugin Icon 128x128 Email Subscribers & Newsletters
Version 3.1.1
Comparing to
See all releases

Code changes from version 3.1 to 3.1.1

base/es-defined.php CHANGED
@@ -11,7 +11,8 @@ if(!defined('ES_PLG_DIR')) define('ES_PLG_DIR', dirname($es_current_folder).DS);
11
  if(!defined('ES_DIR')) define('ES_DIR', $es_current_folder.DS);
12
  if(!defined('ES_URL')) define('ES_URL',plugins_url().'/'.strtolower('email-subscribers').'/');
13
  define('ES_FILE',ES_DIR.'email-subscribers.php');
14
- if(!defined('ES_FAV')) define('ES_FAV', 'http://www.storeapps.org/support/contact-us/');
 
15
  if(!defined('ES_ADMINURL')) define('ES_ADMINURL', get_option('siteurl') . '/wp-admin/admin.php');
16
  define('ES_OFFICIAL', 'If you like <strong>Email Subscribers</strong> please leave us <a target="_blank" href="https://wordpress.org/support/view/plugin-reviews/email-subscribers?filter=5#postform">&#9733;&#9733;&#9733;&#9733;&#9733;</a> a rating. A huge thank you from StoreApps in advance!');
17
 
11
  if(!defined('ES_DIR')) define('ES_DIR', $es_current_folder.DS);
12
  if(!defined('ES_URL')) define('ES_URL',plugins_url().'/'.strtolower('email-subscribers').'/');
13
  define('ES_FILE',ES_DIR.'email-subscribers.php');
14
+ $admin_help_url = admin_url( 'admin.php?page=es-general-information' );
15
+ if(!defined('ES_FAV')) define('ES_FAV', $admin_help_url);
16
  if(!defined('ES_ADMINURL')) define('ES_ADMINURL', get_option('siteurl') . '/wp-admin/admin.php');
17
  define('ES_OFFICIAL', 'If you like <strong>Email Subscribers</strong> please leave us <a target="_blank" href="https://wordpress.org/support/view/plugin-reviews/email-subscribers?filter=5#postform">&#9733;&#9733;&#9733;&#9733;&#9733;</a> a rating. A huge thank you from StoreApps in advance!');
18
 
changelog.txt CHANGED
@@ -4,6 +4,16 @@ Author : Store Apps
4
  Author URI : http://www.storeapps.org/
5
  License : GPLv3
6
 
 
 
 
 
 
 
 
 
 
 
7
  ********************************Version 3.1************************************************************
8
 
9
  * New: Scripts and styles are now localized and can be translated
4
  Author URI : http://www.storeapps.org/
5
  License : GPLv3
6
 
7
+ ********************************Version 3.1.1************************************************************
8
+
9
+ * Fix: call_user_func_array() expects parameter 1 to be a valid callback, function 'es_admin_option' not found or invalid function name
10
+ * Fix: Incorrect plugin name in admin dashboard
11
+ * Fix: Warnings in console on submitting subscription form in Chrome
12
+ * Update: Revised Help & Info page inside plugin
13
+ * Update: Added translation for missing texts
14
+ * Update: Updated POT file
15
+ * Tweaks: Minor tweaks
16
+
17
  ********************************Version 3.1************************************************************
18
 
19
  * New: Scripts and styles are now localized and can be translated
classes/es-common.php CHANGED
@@ -130,7 +130,7 @@ class es_cls_common
130
  $report = $report. "End Time: ###ENDTIME### \n";
131
  $report = $report. "For more information, Login to your Dashboard and go to Sent Mails menu in Email Subscribers. \n\n";
132
  $report = $report. "Thank You \n";
133
- $report = $report. "http://www.storeapps.org/ \n";
134
  return $report;
135
  }
136
 
@@ -144,7 +144,7 @@ class es_cls_common
144
  $report = $report. "End Time: ###ENDTIME### <br/>";
145
  $report = $report. "For more information, Login to your Dashboard and go to Sent Mails menu in Email Subscribers. <br/><br/>";
146
  $report = $report. "Thank You <br/>";
147
- $report = $report. "http://www.storeapps.org/ <br/>";
148
  return $report;
149
  }
150
 
130
  $report = $report. "End Time: ###ENDTIME### \n";
131
  $report = $report. "For more information, Login to your Dashboard and go to Sent Mails menu in Email Subscribers. \n\n";
132
  $report = $report. "Thank You \n";
133
+ $report = $report. "www.storeapps.org \n";
134
  return $report;
135
  }
136
 
144
  $report = $report. "End Time: ###ENDTIME### <br/>";
145
  $report = $report. "For more information, Login to your Dashboard and go to Sent Mails menu in Email Subscribers. <br/><br/>";
146
  $report = $report. "Thank You <br/>";
147
+ $report = $report. "www.storeapps.org <br/>";
148
  return $report;
149
  }
150
 
classes/es-loadwidget.php CHANGED
@@ -15,7 +15,7 @@ class es_cls_widget
15
  }
16
 
17
  $es = $es . "<div>";
18
-
19
  if( $es_desc <> "" ) {
20
  $es = $es . '<div class="es_caption">'.$es_desc.'</div>';
21
  }
15
  }
16
 
17
  $es = $es . "<div>";
18
+
19
  if( $es_desc <> "" ) {
20
  $es = $es . '<div class="es_caption">'.$es_desc.'</div>';
21
  }
classes/es-register.php CHANGED
@@ -4,7 +4,7 @@ class es_cls_registerhook
4
  public static function es_activation()
5
  {
6
  global $wpdb;
7
-
8
  add_option('email-subscribers', "2.9");
9
 
10
  // Plugin tables
@@ -43,7 +43,7 @@ class es_cls_registerhook
43
  $errors[] = __('These tables could not be created on installation ' . implode(', ',$missingtables), 'email-subscribers');
44
  $has_errors=true;
45
  }
46
-
47
  // if error call wp_die()
48
  if($has_errors)
49
  {
@@ -105,7 +105,7 @@ class es_cls_registerhook
105
  {
106
  // do not generate any output here
107
  }
108
-
109
  public static function es_adminmenu()
110
  {
111
  $es_c_rolesandcapabilities = get_option('es_c_rolesandcapabilities', 'norecord');
@@ -130,36 +130,35 @@ class es_cls_registerhook
130
  $es_roles_help = $es_c_rolesandcapabilities['es_roles_help'];
131
  }
132
 
133
- add_menu_page( __( 'Email Subscriber', 'email-subscribers' ),
134
- __( 'Email Subscriber', 'email-subscribers' ), 'admin_dashboard', 'email-subscribers', 'es_admin_option', ES_URL.'images/mail.png', 51 );
135
-
136
  add_submenu_page('email-subscribers', __( 'Subscribers', 'email-subscribers' ),
137
- __( 'Subscribers', 'email-subscribers' ), $es_roles_subscriber, 'es-view-subscribers', array( 'es_cls_intermediate', 'es_subscribers' ));
138
-
139
  add_submenu_page('email-subscribers', __( 'Compose', 'email-subscribers' ),
140
  __( 'Compose', 'email-subscribers' ), $es_roles_mail, 'es-compose', array( 'es_cls_intermediate', 'es_compose' ));
141
-
142
  add_submenu_page('email-subscribers', __( 'Notification', 'email-subscribers' ),
143
  __( 'Notification', 'email-subscribers' ), $es_roles_notification, 'es-notification', array( 'es_cls_intermediate', 'es_notification' ));
144
-
145
  add_submenu_page('email-subscribers', __( 'Send Email', 'email-subscribers' ),
146
  __( 'Send Email', 'email-subscribers' ), $es_roles_sendmail, 'es-sendemail', array( 'es_cls_intermediate', 'es_sendemail' ));
147
-
148
  add_submenu_page('email-subscribers', __( 'Cron', 'email-subscribers' ),
149
  __( 'Cron Mail', 'email-subscribers' ), $es_roles_sendmail, 'es-cron', array( 'es_cls_intermediate', 'es_cron' ));
150
-
151
  add_submenu_page('email-subscribers', __( 'Settings', 'email-subscribers' ),
152
  __( 'Settings', 'email-subscribers' ), $es_roles_setting, 'es-settings', array( 'es_cls_intermediate', 'es_settings' ));
153
-
154
  add_submenu_page('email-subscribers', __( 'Roles', 'email-subscribers' ),
155
  __( 'Roles', 'email-subscribers' ), 'administrator', 'es-roles', array( 'es_cls_intermediate', 'es_roles' ));
156
-
157
  add_submenu_page('email-subscribers', __( 'Sent Mails', 'email-subscribers' ),
158
  __( 'Sent Mails', 'email-subscribers' ), $es_roles_sentmail, 'es-sentmail', array( 'es_cls_intermediate', 'es_sentmail' ));
159
-
160
  add_submenu_page('email-subscribers', __( 'Help & Info', 'email-subscribers' ),
161
- __( 'Help & Info', 'email-subscribers' ), $es_roles_help, 'es-general-information', array( 'es_cls_intermediate', 'es_information' ));
162
-
163
  }
164
 
165
  public static function es_load_scripts() {
@@ -167,8 +166,8 @@ class es_cls_registerhook
167
  if( !empty( $_GET['page'] ) ) {
168
  switch ( $_GET['page'] ) {
169
  case 'es-view-subscribers':
170
- wp_register_script( 'es-view-subscriber', ES_URL . 'subscribers/view-subscriber.js' );
171
- wp_enqueue_script( 'es-view-subscriber', ES_URL . 'subscribers/view-subscriber.js' );
172
  $es_select_params = array(
173
  'es_subscriber_email' => _x( 'Please enter subscriber email address.', 'view-subscriber-enhanced-select', 'email-subscribers' ),
174
  'es_subscriber_email_status' => _x( 'Please select subscriber email status.', 'view-subscriber-enhanced-select', 'email-subscribers' ),
@@ -183,7 +182,7 @@ class es_cls_registerhook
183
  'es_subscriber_export' => _x( 'Do you want to export the emails?', 'view-subscriber-enhanced-select', 'email-subscribers' ),
184
  'es_subscriber_csv_file' => _x( 'Please select only csv file. Please check official website for csv structure..', 'view-subscriber-enhanced-select', 'email-subscribers' )
185
  );
186
- wp_localize_script( 'es-view-subscriber', 'es_view_subscriber_notices', $es_select_params );
187
  break;
188
  case 'es-compose':
189
  wp_register_script( 'es-compose', ES_URL . 'compose/compose.js' );
@@ -193,7 +192,7 @@ class es_cls_registerhook
193
  'es_configuration_template' => _x( 'Please select template for this configuration.', 'compose-enhanced-select', 'email-subscribers' ),
194
  'es_compose_delete_record' => _x( 'Do you want to delete this record?', 'compose-enhanced-select', 'email-subscribers' )
195
  );
196
- wp_localize_script( 'es-compose', 'es_compose_notices', $es_select_params );
197
  break;
198
  case 'es-notification':
199
  wp_register_script( 'es-notification', ES_URL . 'notification/notification.js' );
@@ -293,7 +292,49 @@ class es_cls_registerhook
293
 
294
  public static function es_widget_loading() {
295
  register_widget( 'es_widget_register' );
296
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
297
  }
298
 
299
  function es_sync_registereduser( $user_id )
4
  public static function es_activation()
5
  {
6
  global $wpdb;
7
+
8
  add_option('email-subscribers', "2.9");
9
 
10
  // Plugin tables
43
  $errors[] = __('These tables could not be created on installation ' . implode(', ',$missingtables), 'email-subscribers');
44
  $has_errors=true;
45
  }
46
+
47
  // if error call wp_die()
48
  if($has_errors)
49
  {
105
  {
106
  // do not generate any output here
107
  }
108
+
109
  public static function es_adminmenu()
110
  {
111
  $es_c_rolesandcapabilities = get_option('es_c_rolesandcapabilities', 'norecord');
130
  $es_roles_help = $es_c_rolesandcapabilities['es_roles_help'];
131
  }
132
 
133
+ add_menu_page( __( 'Email Subscribers', 'email-subscribers' ),
134
+ __( 'Email Subscribers', 'email-subscribers' ), 'admin_dashboard', 'email-subscribers', array( 'es_cls_registerhook', 'es_admin_option'), ES_URL.'images/mail.png', 51 );
135
+
136
  add_submenu_page('email-subscribers', __( 'Subscribers', 'email-subscribers' ),
137
+ __( 'Subscribers', 'email-subscribers' ), $es_roles_subscriber, 'es-view-subscribers', array( 'es_cls_intermediate', 'es_subscribers' ));
138
+
139
  add_submenu_page('email-subscribers', __( 'Compose', 'email-subscribers' ),
140
  __( 'Compose', 'email-subscribers' ), $es_roles_mail, 'es-compose', array( 'es_cls_intermediate', 'es_compose' ));
141
+
142
  add_submenu_page('email-subscribers', __( 'Notification', 'email-subscribers' ),
143
  __( 'Notification', 'email-subscribers' ), $es_roles_notification, 'es-notification', array( 'es_cls_intermediate', 'es_notification' ));
144
+
145
  add_submenu_page('email-subscribers', __( 'Send Email', 'email-subscribers' ),
146
  __( 'Send Email', 'email-subscribers' ), $es_roles_sendmail, 'es-sendemail', array( 'es_cls_intermediate', 'es_sendemail' ));
147
+
148
  add_submenu_page('email-subscribers', __( 'Cron', 'email-subscribers' ),
149
  __( 'Cron Mail', 'email-subscribers' ), $es_roles_sendmail, 'es-cron', array( 'es_cls_intermediate', 'es_cron' ));
150
+
151
  add_submenu_page('email-subscribers', __( 'Settings', 'email-subscribers' ),
152
  __( 'Settings', 'email-subscribers' ), $es_roles_setting, 'es-settings', array( 'es_cls_intermediate', 'es_settings' ));
153
+
154
  add_submenu_page('email-subscribers', __( 'Roles', 'email-subscribers' ),
155
  __( 'Roles', 'email-subscribers' ), 'administrator', 'es-roles', array( 'es_cls_intermediate', 'es_roles' ));
156
+
157
  add_submenu_page('email-subscribers', __( 'Sent Mails', 'email-subscribers' ),
158
  __( 'Sent Mails', 'email-subscribers' ), $es_roles_sentmail, 'es-sentmail', array( 'es_cls_intermediate', 'es_sentmail' ));
159
+
160
  add_submenu_page('email-subscribers', __( 'Help & Info', 'email-subscribers' ),
161
+ __( '<span style="color:#f18500;font-weight:bolder;">Help & Info', 'email-subscribers' ), $es_roles_help, 'es-general-information', array( 'es_cls_intermediate', 'es_information' ));
 
162
  }
163
 
164
  public static function es_load_scripts() {
166
  if( !empty( $_GET['page'] ) ) {
167
  switch ( $_GET['page'] ) {
168
  case 'es-view-subscribers':
169
+ wp_register_script( 'es-view-subscribers', ES_URL . 'subscribers/view-subscriber.js' );
170
+ wp_enqueue_script( 'es-view-subscribers', ES_URL . 'subscribers/view-subscriber.js' );
171
  $es_select_params = array(
172
  'es_subscriber_email' => _x( 'Please enter subscriber email address.', 'view-subscriber-enhanced-select', 'email-subscribers' ),
173
  'es_subscriber_email_status' => _x( 'Please select subscriber email status.', 'view-subscriber-enhanced-select', 'email-subscribers' ),
182
  'es_subscriber_export' => _x( 'Do you want to export the emails?', 'view-subscriber-enhanced-select', 'email-subscribers' ),
183
  'es_subscriber_csv_file' => _x( 'Please select only csv file. Please check official website for csv structure..', 'view-subscriber-enhanced-select', 'email-subscribers' )
184
  );
185
+ wp_localize_script( 'es-view-subscribers', 'es_view_subscriber_notices', $es_select_params );
186
  break;
187
  case 'es-compose':
188
  wp_register_script( 'es-compose', ES_URL . 'compose/compose.js' );
192
  'es_configuration_template' => _x( 'Please select template for this configuration.', 'compose-enhanced-select', 'email-subscribers' ),
193
  'es_compose_delete_record' => _x( 'Do you want to delete this record?', 'compose-enhanced-select', 'email-subscribers' )
194
  );
195
+ wp_localize_script( 'es-compose', 'es_compose_notices', $es_select_params );
196
  break;
197
  case 'es-notification':
198
  wp_register_script( 'es-notification', ES_URL . 'notification/notification.js' );
292
 
293
  public static function es_widget_loading() {
294
  register_widget( 'es_widget_register' );
295
+ }
296
+
297
+ public static function klawoo_subscribe() {
298
+ $url = 'http://app.klawoo.com/subscribe';
299
+
300
+ if( !empty( $_POST ) ) {
301
+ $params = $_POST;
302
+ } else {
303
+ exit();
304
+ }
305
+ $method = 'POST';
306
+ $qs = http_build_query( $params );
307
+
308
+ $options = array(
309
+ 'timeout' => 15,
310
+ 'method' => $method
311
+ );
312
+
313
+ if ( $method == 'POST' ) {
314
+ $options['body'] = $qs;
315
+ } else {
316
+ if ( strpos( $url, '?' ) !== false ) {
317
+ $url .= '&'.$qs;
318
+ } else {
319
+ $url .= '?'.$qs;
320
+ }
321
+ }
322
+
323
+ $response = wp_remote_request( $url, $options );
324
+
325
+ if ( wp_remote_retrieve_response_code( $response ) == 200 ) {
326
+ $data = $response['body'];
327
+ if ( $data != 'error' ) {
328
+
329
+ $message_start = substr( $data, strpos( $data,'<body>' ) + 6 );
330
+ $remove = substr( $message_start, strpos( $message_start,'</body>' ) );
331
+ $message = trim( str_replace( $remove, '', $message_start ) );
332
+ echo ( $message );
333
+ exit();
334
+ }
335
+ }
336
+ exit();
337
+ }
338
  }
339
 
340
  function es_sync_registereduser( $user_id )
compose/compose.js CHANGED
@@ -29,5 +29,5 @@ function _es_redirect()
29
 
30
  function _es_help()
31
  {
32
- window.open("http://www.storeapps.org/support/contact-us/");
33
  }
29
 
30
  function _es_help()
31
  {
32
+ window.open("https://wordpress.org/plugins/email-subscribers/faq/");
33
  }
cron/cron-add.php CHANGED
@@ -94,10 +94,10 @@ if ($es_error_found == FALSE && strlen($es_success) > 0)
94
  </form>
95
  </div>
96
  <div class="tool-box">
97
- <h3><?php _e('How to setup auto emails?', 'email-subscribers'); ?></h3>
98
- <p><?php _e('I strongly recommend you to use "Send mail via cron job" option to send your newsletters and notification. The following link explains how to create a CRON job through the cPanel or Plesk.', 'email-subscribers'); ?></p>
99
- <p><?php _e('How to setup auto emails (cron job) in Plesk', 'email-subscribers'); ?> <a target="_blank" href="http://www.gopiplus.com/work/2015/08/02/how-to-schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-plesk/"><?php _e('Click here', 'email-subscribers'); ?></a>.</p>
100
- <p><?php _e('How to setup auto emails (cron job) in cPanal', 'email-subscribers'); ?> <a target="_blank" href="http://www.gopiplus.com/work/2015/08/04/how-to-schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-cpanel/"><?php _e('Click here', 'email-subscribers'); ?></a>.</p>
101
- <p><?php _e('Hosting doesnt support cron jobs?', 'email-subscribers'); ?> <a target="_blank" href="http://www.gopiplus.com/work/2015/08/08/email-subscribers-wordpress-plugin-how-to-schedule-auto-mails-cron-mails/"><?php _e('Click here', 'email-subscribers'); ?></a> for solution.</p>
102
  </div>
103
- </div>
 
94
  </form>
95
  </div>
96
  <div class="tool-box">
97
+ <h3><?php _e( 'How to setup auto emails using CRON Job through the cPanel or Plesk?', 'email-subscribers' ); ?></h3>
98
+ <li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2015/08/02/how-to-schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-plesk/">Setup cron job in Plesk</a>', 'email-subscribers' ); ?></li>
99
+ <li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2015/08/04/how-to-schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-cpanel/">Setup cron job in cPanal</a>', 'email-subscribers' ); ?></li>
100
+ <li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2015/08/08/email-subscribers-wordpress-plugin-how-to-schedule-auto-mails-cron-mails/">Hosting doesnt support cron jobs?</a>', 'email-subscribers' ); ?></li><br>
 
101
  </div>
102
+ </div>
103
+ <p class="description"><?php echo ES_OFFICIAL; ?></p>
cron/cron.js CHANGED
@@ -21,5 +21,5 @@ function _es_redirect()
21
 
22
  function _es_help()
23
  {
24
- window.open("http://www.storeapps.org/support/contact-us/");
25
  }
21
 
22
  function _es_help()
23
  {
24
+ window.open("https://wordpress.org/plugins/email-subscribers/faq/");
25
  }
email-subscribers.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Email Subscribers
4
  * Plugin URI: http://www.storeapps.org/
5
  * Description: Email subscribers plugin has options to send newsletters to subscribers. It has a separate page with HTML editor to create a HTML newsletter. Also have options to send notification email to subscribers when new posts are published to your blog. Separate page available to include and exclude categories to send notifications.
6
- * Version: 3.1
7
  * Author: Store Apps
8
  * Author URI: http://www.storeapps.org/
9
  * Donate link: http://www.storeapps.org/
@@ -13,7 +13,7 @@
13
  * Domain Path: /languages/
14
  * License: GPLv3
15
  * Copyright (c) 2015, 2016 Store Apps
16
- */
17
 
18
  if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You are not allowed to call this page directly.'); }
19
 
@@ -28,6 +28,8 @@ register_deactivation_hook( ES_FILE, array( 'es_cls_registerhook', 'es_deactivat
28
  add_action( 'widgets_init', array( 'es_cls_registerhook', 'es_widget_loading' ));
29
  add_shortcode( 'email-subscribers', 'es_shortcode' );
30
 
 
 
31
  require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'classes'.DIRECTORY_SEPARATOR.'es-directly.php');
32
 
33
  function es_textdomain() {
3
  * Plugin Name: Email Subscribers
4
  * Plugin URI: http://www.storeapps.org/
5
  * Description: Email subscribers plugin has options to send newsletters to subscribers. It has a separate page with HTML editor to create a HTML newsletter. Also have options to send notification email to subscribers when new posts are published to your blog. Separate page available to include and exclude categories to send notifications.
6
+ * Version: 3.1.1
7
  * Author: Store Apps
8
  * Author URI: http://www.storeapps.org/
9
  * Donate link: http://www.storeapps.org/
13
  * Domain Path: /languages/
14
  * License: GPLv3
15
  * Copyright (c) 2015, 2016 Store Apps
16
+ */
17
 
18
  if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You are not allowed to call this page directly.'); }
19
 
28
  add_action( 'widgets_init', array( 'es_cls_registerhook', 'es_widget_loading' ));
29
  add_shortcode( 'email-subscribers', 'es_shortcode' );
30
 
31
+ add_action( 'wp_ajax_es_klawoo_subscribe', array( 'es_cls_registerhook', 'klawoo_subscribe' ) );
32
+
33
  require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'classes'.DIRECTORY_SEPARATOR.'es-directly.php');
34
 
35
  function es_textdomain() {
help/help.php CHANGED
@@ -1,30 +1,108 @@
1
  <?php if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You are not allowed to call this page directly.'); } ?>
2
- <div class="wrap">
3
- <h2><?php _e(ES_PLUGIN_DISPLAY, 'email-subscribers'); ?></h2>
4
- <h3>Frequently Asked Questions</h3>
5
- <ol>
6
- <li>What are all the steps to do after plugin activation?</li>
7
- <li>How to setup subscription box widget?</li>
8
- <li>How to import and export email address to subscriber list?</li>
9
- <li>How to compose static newsletter?</li>
10
- <li>How to add subscription box in posts?</li>
11
- <li>How to modify the existing mails (Opt-in mail, Welcome mail, Admin mails) content?</li>
12
- <li>How to send static newsletter manually?</li>
13
- <li>Where to check sent mails?</li>
14
- <li>How to configure notification email to subscribers when new posts are published?</li>
15
- <li>How to update default alert message from subscription box?</li>
16
- <li>How to add new subscribers group?</li>
17
- <li>Is plugin contain bulk update option for subscribers group?</li>
18
- <li>Is Mail not working on Email Subscribers wordpress plugin?</li>
19
- <li>How to install and activate Email Subscribers on multisite installation blogs?</li>
20
- <li>How to schedule auto mails (Cron mails)?</li>
21
- </ol>
22
- <p>Check official website for FAQ answer <a target="_blank" href="http://www.gopiplus.com/work/2014/05/02/email-subscribers-wordpress-plugin/">click here</a></p>
23
- <h3>How to setup auto emails?</h3>
24
- I strongly recommend you to use "Send mail via cron job" option to send your newsletters and notification. The following link explains how to create a CRON job through the cPanel or Plesk.
25
- <ol>
26
- <li>How to setup auto emails (cron job) in Plesk <a target="_blank" href="http://www.gopiplus.com/work/2015/08/02/how-to-schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-plesk/">Click here</a>.</li>
27
- <li>How to setup auto emails (cron job) in cPanal <a target="_blank" href="http://www.gopiplus.com/work/2015/08/04/how-to-schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-cpanel/">Click here</a>.</li>
28
- <li>Hosting doesnt support cron jobs? <a target="_blank" href="http://www.gopiplus.com/work/2015/08/08/email-subscribers-wordpress-plugin-how-to-schedule-auto-mails-cron-mails/">Click here</a> for solution.</li>
29
- </ol>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  </div>
1
  <?php if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You are not allowed to call this page directly.'); } ?>
2
+ <div class="about_wrap">
3
+
4
+ <style>
5
+ .about_wrap {
6
+ right: 1.3em;
7
+ background-color: transparent;
8
+ margin: 25px 40px 0 20px;
9
+ box-shadow: none;
10
+ -webkit-box-shadow: none;
11
+ }
12
+
13
+ .about_header {
14
+ background-color: #FFF;
15
+ padding: 1em 1em 0.5em 1em;
16
+ -webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, .2);
17
+ box-shadow: 0 0 7px 0 rgba(0, 0, 0, .2);
18
+ }
19
+ </style>
20
+
21
+ <div class="about_header">
22
+
23
+ <h1><?php _e('Welcome to Email Subscribers!', 'email-subscribers'); ?></h1>
24
+
25
+ <div><?php _e( 'Thanks for installing! We hope you enjoy using it.', 'email-subscribers'); ?></div>
26
+
27
+ <div class="wrap">
28
+ <table class="form-table">
29
+ <tr>
30
+ <th scope="row"><?php _e( 'For more help and tips...', 'email-subscribers' ) ?></th>
31
+ <td>
32
+ <form name="klawoo_subscribe" action="#" method="POST" accept-charset="utf-8">
33
+ <input class="ltr" type="text" name="name" id="name" placeholder="Name"/>
34
+ <input class="regular-text ltr" type="text" name="email" id="email" placeholder="Email"/>
35
+ <input type="hidden" name="list" value="hN8OkYzujUlKgDgfCTEcIA"/>
36
+ <input type="submit" name="submit" id="submit" class="button button-primary" value="Subscribe">
37
+ <br/>
38
+ <div id="klawoo_response"></div>
39
+ </form>
40
+ </td>
41
+ </tr>
42
+ </table>
43
+ </div>
44
+ </div>
45
+ <script type="text/javascript">
46
+ jQuery(function () {
47
+ jQuery("form[name=klawoo_subscribe]").submit(function (e) {
48
+ e.preventDefault();
49
+
50
+ jQuery('#klawoo_response').html('');
51
+ params = jQuery("form[name=klawoo_subscribe]").serializeArray();
52
+ params.push( {name: 'action', value: 'es_klawoo_subscribe' });
53
+
54
+ jQuery.ajax({
55
+ method: 'POST',
56
+ type: 'text',
57
+ url: "<?php echo admin_url( 'admin-ajax.php' ); ?>",
58
+ async: false,
59
+ data: params,
60
+ success: function(response) {
61
+
62
+ if (response != '') {
63
+ jQuery('#klawoo_response').html(response);
64
+ } else {
65
+ jQuery('#klawoo_response').html('error!');
66
+ }
67
+ }
68
+ });
69
+ });
70
+ });
71
+ </script>
72
+
73
+ <div class="faqs">
74
+
75
+ <h3><?php _e( 'Frequently Asked Questions', 'email-subscribers' ); ?></h3>
76
+ <ol>
77
+ <li><?php _e( '<strong>How to setup subscription box widget?</strong> - There are 3 ways to add Subscription box to your website:', 'email-subscribers' ); ?><br>
78
+ <br><?php _e( '(A) Use Shortcode <code>[email-subscribers namefield="YES" desc="" group="Public"]</code> in any page or post.' ,'email-subscribers' ); ?><br>
79
+ <br><?php _e( '(B) Go to Dashboard->Appearance->Widgets. You will see a widget called Email subscribers. Click Add Widget button or drag it to the sidebar on the right.' ,'email-subscribers' ); ?><br>
80
+ <br><?php _e( '(C) Copy and past this php code to your desired template location : <code>es_subbox( $namefield = "YES", $desc = "", $group = "" );</code> ' ,'email-subscribers' ); ?>
81
+ <br><?php _e( 'Read more from <a target="_blank" href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscription-box/">here</a>.<br>', 'email-subscribers' );?>
82
+ </li>
83
+ <li><?php _e( '<strong>How to update default alert message from subscription box?</strong> - Use any translation plugin (eg: <strong>Loco Translate</strong>) and translate the text that you want to update.', 'email-subscribers' ); ?></li>
84
+ <li><?php _e( '<a target="_blank" href="https://wordpress.org/plugins/email-subscribers/faq/">Notifications are not getting send to subscriber list</a>', 'email-subscribers' ); ?></li>
85
+ <li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscriber-management-and-import-and-export-email-address/">How to import and export email address to subscriber list?</a>', 'email-subscribers' ); ?></li>
86
+ <li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-compose-html-emails/">How to compose static newsletter?</a></a>', 'email-subscribers' ); ?></li>
87
+ <li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscription-box/">How to add subscription box in posts?</a>', 'email-subscribers' ); ?></li>
88
+ <li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-general-settings/">How to modify the existing mails (Opt-in mail, Welcome mail, Admin mails) content?</a>', 'email-subscribers' ); ?></li>
89
+ <li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-send-email-newsletters/">How to send static newsletter manually?</a>', 'email-subscribers' ); ?></li>
90
+ <li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-send-email-newsletters/">Where to check sent mails?</a>', 'email-subscribers' ); ?></li>
91
+ <li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-notifications-settings/">How to configure notification email to subscribers when new posts are published?</a>', 'email-subscribers' ); ?></li>
92
+ <li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscriber-management-and-import-and-export-email-address/">How to add new subscribers group?</a>', 'email-subscribers' ); ?></li>
93
+ <li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscriber-management-and-import-and-export-email-address/">Is plugin contain bulk update option for subscribers group?</a>', 'email-subscribers' ); ?></li>
94
+ <li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2014/08/17/mail-not-working-on-email-subscribers-wordpress-plugin/">Is Mail not working on Email Subscribers wordpress plugin?</a>', 'email-subscribers' ); ?></li>
95
+ <li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2014/08/31/email-subscribers-wordpress-plugin-network-activation-for-multisite-installation/">How to install and activate Email Subscribers on multisite installation blogs?</a>', 'email-subscribers' ); ?></li>
96
+ </ol>
97
+ <h3><?php _e( 'How to setup auto emails using CRON Job through the cPanel or Plesk?', 'email-subscribers' ); ?></h3>
98
+ <ol>
99
+ <li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2015/08/02/how-to-schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-plesk/">Setup cron job in Plesk</a>', 'email-subscribers' ); ?></li>
100
+ <li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2015/08/04/how-to-schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-cpanel/">Setup cron job in cPanal</a>', 'email-subscribers' ); ?></li>
101
+ <li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2015/08/08/email-subscribers-wordpress-plugin-how-to-schedule-auto-mails-cron-mails/">Hosting doesnt support cron jobs?</a>', 'email-subscribers' ); ?></li>
102
+ </ol>
103
+
104
+ </div>
105
+
106
+ <p class="contact-us"><?php _e( 'If you still can\'t find solution even after checking in above links, click <a target="_blank" href="http://www.storeapps.org/support/contact-us/"> here</a>.', 'email-subscribers' ) ?></p>
107
+
108
  </div>
images/banner-772x250.png CHANGED
Binary file
images/gopiplus.png DELETED
Binary file
languages/email-subscribers-de_DE.mo CHANGED
Binary file
languages/email-subscribers-de_DE.po CHANGED
@@ -1,381 +1,366 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Email subscribers\n"
4
- "POT-Creation-Date: 2015-11-28 14:28+0800\n"
5
- "PO-Revision-Date: 2015-11-28 14:29+0800\n"
 
6
  "Last-Translator: \n"
7
  "Language-Team: www.gopiplus.com <www.gopiplus.com>\n"
8
  "Language: nl\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.5.7\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../classes/es-loadwidget.php:28 ../classes/es-register.php:250
19
- #: ../subscribers/view-subscriber-show.php:326
20
- #: ../subscribers/view-subscriber-show.php:339
21
- msgid "Name"
22
- msgstr "Name"
23
-
24
- #: ../classes/es-loadwidget.php:33 ../classes/es-register.php:255
25
- msgid "Email *"
26
- msgstr "E-Mail-Adresse*"
27
-
28
- #: ../classes/es-loadwidget.php:38 ../classes/es-register.php:260
29
- msgid "Subscribe"
30
- msgstr "Aktivieren"
31
-
32
- #: ../classes/es-register.php:43
33
- msgid "These tables could not be created on installation "
34
- msgstr "Die Tabellen konnten während der Installation nicht erstellt werden"
35
-
36
- #: ../classes/es-register.php:133 ../classes/es-register.php:134
37
- msgid "Email Subscriber"
38
- msgstr "E-Mail Empfänger"
39
-
40
- #: ../classes/es-register.php:136 ../classes/es-register.php:137
41
- msgid "Subscribers"
42
- msgstr "Empfänger"
43
-
44
- #: ../classes/es-register.php:139 ../classes/es-register.php:140
45
- msgid "Compose"
46
- msgstr "Erstellen"
47
 
48
- #: ../classes/es-register.php:142 ../classes/es-register.php:143
49
- #: ../notification/notification-show.php:45
50
- msgid "Notification"
51
- msgstr "Benachrichtigung"
52
 
53
- #: ../classes/es-register.php:145 ../classes/es-register.php:146
54
- #: ../sendmail/sendmail.php:95 ../sendmail/sendmail.php:257
55
- #: ../sendmail/sendmail.php:259
56
- msgid "Send Email"
57
- msgstr "E-Mail senden"
 
 
 
58
 
59
- #: ../classes/es-register.php:148
60
- msgid "Cron"
61
  msgstr ""
62
 
63
- #: ../classes/es-register.php:149
64
  #, fuzzy
65
- msgid "Cron Mail"
66
- msgstr "E-Mail erstellen"
67
-
68
- #: ../classes/es-register.php:151 ../classes/es-register.php:152
69
- #: ../settings/settings-edit.php:190
70
- msgid "Settings"
71
- msgstr "Einstellungen"
72
 
73
- #: ../classes/es-register.php:154 ../classes/es-register.php:155
74
- msgid "Roles"
75
  msgstr ""
76
 
77
- #: ../classes/es-register.php:157 ../classes/es-register.php:158
78
- #: ../sentmail/sentmail-show.php:54
79
- msgid "Sent Mails"
80
- msgstr "Gesendete E-Mails"
81
-
82
- #: ../classes/es-register.php:160 ../classes/es-register.php:161
83
- msgid "Help & Info"
84
- msgstr "Hilfe & Info"
85
-
86
- #: ../classes/es-register.php:296
87
- msgid "Widget Title"
88
- msgstr "Widget Titel"
89
-
90
- #: ../classes/es-register.php:300
91
- msgid "Display Name Field"
92
- msgstr "Eingaefeld für Namen anzeigen"
93
 
94
- #: ../classes/es-register.php:307
95
- msgid "Short Description"
96
- msgstr "Kurzbeschreibung"
 
 
 
 
 
97
 
98
- #: ../classes/es-register.php:309
99
- msgid "Short description about your subscription form."
100
- msgstr "Kurzbeschreibung des Anmeldeformulars"
101
 
102
- #: ../classes/es-register.php:312
103
- msgid "Subscriber Group"
104
- msgstr "Empfängergruppe"
105
 
106
- #: ../compose/compose-add.php:25 ../compose/compose-edit.php:40
107
- msgid "Please enter template heading."
108
- msgstr "Bitte Vorlagenkopf eingeben."
109
 
110
- #: ../compose/compose-add.php:39
111
- msgid "Template was successfully created."
112
- msgstr "Die Vorlage wurde erstellt."
113
 
114
- #: ../compose/compose-add.php:60 ../compose/compose-edit.php:71
115
- #: ../cron/cron-add.php:100 ../cron/cron-add.php:101 ../cron/cron-add.php:102
116
- #: ../notification/notification-add.php:91
117
- #: ../notification/notification-edit.php:100 ../roles/roles-add.php:81
118
- #: ../settings/settings-edit.php:173 ../subscribers/view-subscriber-add.php:92
119
- #: ../subscribers/view-subscriber-add.php:101
120
- #: ../subscribers/view-subscriber-edit.php:86
121
- #: ../subscribers/view-subscriber-import.php:107
122
- #: ../subscribers/view-subscriber-import.php:138
123
  msgid "Click here"
124
  msgstr "Hier klicken"
125
 
126
- #: ../compose/compose-add.php:61 ../compose/compose-edit.php:72
127
- #: ../notification/notification-add.php:92
128
- #: ../notification/notification-edit.php:101 ../roles/roles-add.php:81
129
- #: ../settings/settings-edit.php:174 ../subscribers/view-subscriber-add.php:92
130
- #: ../subscribers/view-subscriber-add.php:101
131
- #: ../subscribers/view-subscriber-edit.php:86
132
- #: ../subscribers/view-subscriber-import.php:107
133
- #: ../subscribers/view-subscriber-import.php:138
134
  msgid " to view the details"
135
  msgstr "um Details anzuzeigen"
136
 
137
- #: ../compose/compose-add.php:70 ../compose/compose-edit.php:83
138
- #: ../compose/compose-show.php:59
139
- msgid "Compose Mail"
140
- msgstr "E-Mail erstellen"
141
-
142
- #: ../compose/compose-add.php:73 ../compose/compose-edit.php:86
143
- #: ../settings/settings-edit.php:206
144
- msgid "Mail type"
145
- msgstr "E-Mail-Typ"
146
-
147
- #: ../compose/compose-add.php:78 ../compose/compose-edit.php:91
148
- #: ../sendmail/sendmail.php:50
149
- msgid "Please select your mail type."
150
- msgstr "Bitte E-Mail-Typ auswählen."
151
-
152
- #: ../compose/compose-add.php:80 ../compose/compose-edit.php:93
153
- msgid "Enter mail subject."
154
- msgstr "E-Mail Betreff eingeben."
155
-
156
- #: ../compose/compose-add.php:82 ../compose/compose-edit.php:95
157
- msgid "Please enter your mail subject."
158
- msgstr "Bitte geben Sie einen Betreff ein."
159
 
160
- #: ../compose/compose-add.php:85 ../compose/compose-edit.php:97
161
- msgid "Mail content"
162
- msgstr "E-Mail Inhalt"
163
 
164
- #: ../compose/compose-add.php:88 ../compose/compose-edit.php:100
165
- msgid "Please enter content for your mail."
166
- msgstr "Bitte geben Sie einen Inhalt für das E-Mail ein."
 
 
 
 
167
 
168
- #: ../compose/compose-add.php:91 ../compose/compose-edit.php:103
169
- #: ../compose/compose-show.php:71 ../compose/compose-show.php:79
170
- #: ../sentmail/deliverreport-show.php:40 ../sentmail/deliverreport-show.php:52
171
- #: ../sentmail/sentmail-show.php:75 ../sentmail/sentmail-show.php:88
172
- #: ../subscribers/view-subscriber-add.php:122
173
- #: ../subscribers/view-subscriber-edit.php:106
174
- #: ../subscribers/view-subscriber-import.php:156
175
- #: ../subscribers/view-subscriber-show.php:327
176
- #: ../subscribers/view-subscriber-show.php:340
177
- msgid "Status"
178
- msgstr "Status"
179
 
180
- #: ../compose/compose-add.php:95 ../compose/compose-edit.php:107
181
- msgid "Please select your mail status."
182
- msgstr "Bitte geben Sie Ihren E-Mail Status an."
 
 
 
 
 
183
 
184
- #: ../compose/compose-add.php:99 ../compose/compose-edit.php:112
185
- #: ../cron/cron-add.php:90 ../notification/notification-add.php:216
186
- #: ../notification/notification-edit.php:237 ../roles/roles-add.php:154
187
- #: ../subscribers/view-subscriber-add.php:154
188
- #: ../subscribers/view-subscriber-edit.php:147
189
- #: ../subscribers/view-subscriber-sync.php:156
190
- msgid "Submit"
191
- msgstr "Senden"
192
 
193
- #: ../compose/compose-add.php:100 ../compose/compose-edit.php:113
194
- #: ../cron/cron-add.php:91 ../notification/notification-add.php:217
195
- #: ../notification/notification-edit.php:238 ../roles/roles-add.php:155
196
- #: ../sendmail/sendmail.php:261 ../settings/settings-edit.php:381
197
- #: ../subscribers/view-subscriber-add.php:155
198
- #: ../subscribers/view-subscriber-edit.php:148
199
- #: ../subscribers/view-subscriber-sync.php:157
200
- msgid "Cancel"
201
- msgstr "Abbrechen"
202
 
203
- #: ../compose/compose-add.php:101 ../compose/compose-edit.php:114
204
- #: ../compose/compose-preview.php:31 ../compose/compose-show.php:121
205
- #: ../cron/cron-add.php:92 ../notification/notification-add.php:218
206
- #: ../notification/notification-edit.php:239
207
- #: ../notification/notification-show.php:153 ../roles/roles-add.php:156
208
- #: ../sendmail/sendmail.php:262 ../sentmail/deliverreport-show.php:120
209
- #: ../sentmail/sentmail-preview.php:33 ../settings/settings-edit.php:382
210
- #: ../subscribers/view-subscriber-add.php:156
211
- #: ../subscribers/view-subscriber-edit.php:149
212
- #: ../subscribers/view-subscriber-export.php:70
213
- #: ../subscribers/view-subscriber-import.php:190
214
- #: ../subscribers/view-subscriber-show.php:448
215
- #: ../subscribers/view-subscriber-sync.php:158
216
- msgid "Help"
217
- msgstr "Hilfe"
218
 
219
- #: ../compose/compose-edit.php:11 ../compose/compose-preview.php:10
220
- #: ../compose/compose-show.php:30 ../notification/notification-edit.php:11
221
- #: ../notification/notification-show.php:16
222
- #: ../sentmail/sentmail-preview.php:12 ../sentmail/sentmail-show.php:18
223
- #: ../settings/settings-edit.php:11 ../subscribers/view-subscriber-edit.php:12
224
- #: ../subscribers/view-subscriber-show.php:46
225
- msgid "Oops, selected details doesnt exist."
226
- msgstr "Hoppla, die ausgewählten Details sind nicht vorhanden."
227
 
228
- #: ../compose/compose-edit.php:55
229
- msgid "Template was successfully updated."
230
- msgstr "Die Vorlage wurde upgedatet."
231
 
232
- #: ../compose/compose-preview.php:17 ../sentmail/sentmail-preview.php:19
233
- msgid "Preview Mail"
234
- msgstr "Vorschau E-Mail"
 
 
 
 
235
 
236
- #: ../compose/compose-preview.php:29 ../sentmail/deliverreport-show.php:119
237
- #: ../sentmail/sentmail-preview.php:32
238
- #: ../subscribers/view-subscriber-export.php:69
239
- #: ../subscribers/view-subscriber-import.php:189
240
- msgid "Back"
241
- msgstr "Zurück"
242
 
243
- #: ../compose/compose-preview.php:30 ../compose/compose-show.php:99
244
- #: ../notification/notification-show.php:91
245
- #: ../subscribers/view-subscriber-show.php:374
246
- msgid "Edit"
247
- msgstr "Bearbeiten"
248
 
249
- #: ../compose/compose-show.php:10 ../sendmail/sendmail.php:11
250
- #: ../subscribers/view-subscriber-show.php:11
251
- #, fuzzy
252
- msgid "Click Here"
253
- msgstr "Hier klicken"
254
 
255
- #: ../compose/compose-show.php:45 ../notification/notification-show.php:31
256
- #: ../sentmail/sentmail-show.php:33 ../subscribers/view-subscriber-show.php:60
257
- #: ../subscribers/view-subscriber-show.php:104
258
- msgid "Selected record was successfully deleted."
259
- msgstr "Der ausgewählte Eintrag wurde erfolgreich gelöscht."
 
 
260
 
261
- #: ../compose/compose-show.php:60 ../compose/compose-show.php:120
262
- #: ../notification/notification-show.php:46
263
- #: ../notification/notification-show.php:152
264
- #: ../subscribers/view-subscriber-show.php:233
265
- #: ../subscribers/view-subscriber-show.php:444
266
- msgid "Add New"
267
- msgstr "Hinzufügen"
268
 
269
- #: ../compose/compose-show.php:70 ../compose/compose-show.php:78
270
- msgid "Email subject"
271
- msgstr "E-Mail Betreff"
 
 
272
 
273
- #: ../compose/compose-show.php:72 ../compose/compose-show.php:80
274
- #: ../sentmail/deliverreport-show.php:41 ../sentmail/deliverreport-show.php:53
275
- #: ../sentmail/sentmail-show.php:76 ../sentmail/sentmail-show.php:89
276
- msgid "Type"
277
- msgstr "Typ"
278
 
279
- #: ../compose/compose-show.php:73 ../compose/compose-show.php:81
280
- #: ../sentmail/sentmail-show.php:80 ../sentmail/sentmail-show.php:93
281
- #: ../subscribers/view-subscriber-export.php:32
282
- #: ../subscribers/view-subscriber-export.php:40
283
- #: ../subscribers/view-subscriber-show.php:330
284
- #: ../subscribers/view-subscriber-show.php:343
285
- msgid "Action"
286
- msgstr "Aktion"
287
 
288
- #: ../compose/compose-show.php:100 ../notification/notification-show.php:94
289
- #: ../subscribers/view-subscriber-show.php:377
290
- #: ../subscribers/view-subscriber-show.php:422
291
- msgid "Delete"
292
- msgstr "Löschen"
293
 
294
- #: ../compose/compose-show.php:101 ../sentmail/sentmail-show.php:73
295
- #: ../sentmail/sentmail-show.php:86
296
- msgid "Preview"
297
- msgstr "Vorschau"
 
 
 
298
 
299
- #: ../compose/compose-show.php:110 ../notification/notification-show.php:142
300
- #: ../sentmail/deliverreport-show.php:84 ../sentmail/sentmail-show.php:132
301
- msgid "No records available."
302
- msgstr "Keine Einträge vorhanden."
303
 
304
- #: ../cron/cron-add.php:18
305
- #, fuzzy
306
- msgid "Please enter valid mail count."
307
- msgstr "Bitte geben Sie einen Betreff ein."
 
 
308
 
309
- #: ../cron/cron-add.php:29
310
- #, fuzzy
311
- msgid "Cron details successfully updated."
312
- msgstr "Die Details wurden erfolgreich upgedatet."
313
 
314
- #: ../cron/cron-add.php:73
315
- msgid "Cron Details"
 
 
316
  msgstr ""
 
 
317
 
318
- #: ../cron/cron-add.php:76
319
- msgid "Cron job URL"
320
- msgstr ""
321
 
322
- #: ../cron/cron-add.php:78
323
  msgid ""
324
- "Please find your cron job URL. This is read only field not able to modify "
325
- "from admin."
326
  msgstr ""
 
 
 
327
 
328
- #: ../cron/cron-add.php:80
329
- #, fuzzy
330
- msgid "Mail Count"
331
- msgstr "E-Mail Inhalt"
332
 
333
- #: ../cron/cron-add.php:82
334
- msgid "Enter number of mails you want to send per hour/trigger."
 
 
335
  msgstr ""
 
 
336
 
337
- #: ../cron/cron-add.php:84
338
- #, fuzzy
339
- msgid "Admin Report"
340
- msgstr "Berichte anzeigen"
341
 
342
- #: ../cron/cron-add.php:86
343
- msgid "Send above mail to admin whenever cron URL triggered in your server."
344
- msgstr ""
345
 
346
- #: ../cron/cron-add.php:98
347
- msgid "How to setup auto emails?"
348
- msgstr ""
349
 
350
- #: ../cron/cron-add.php:99
351
  msgid ""
352
- "I strongly recommend you to use \"Send mail via cron job\" option to send "
353
- "your newsletters and notification. The following link explains how to create "
354
- "a CRON job through the cPanel or Plesk."
355
  msgstr ""
 
 
356
 
357
- #: ../cron/cron-add.php:100
358
- msgid "How to setup auto emails (cron job) in Plesk"
359
- msgstr ""
360
 
361
- #: ../cron/cron-add.php:101
362
- msgid "How to setup auto emails (cron job) in cPanal"
 
363
  msgstr ""
 
 
364
 
365
- #: ../cron/cron-add.php:102
366
- msgid "Hosting doesnt support cron jobs?"
367
- msgstr ""
368
 
369
- #: ../export/export-email-address.php:39 ../export/export-email-address.php:45
370
- #: ../export/export-email-address.php:50
371
- msgid "Unexpected url submit has been detected"
372
- msgstr "Es wurde eine unerwartete URL-Übermittlung entdeckt"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
373
 
374
- #: ../job/es-optin.php:64 ../job/es-optin.php:79 ../job/es-unsubscribe.php:60
375
- #: ../job/es-unsubscribe.php:70
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
376
  msgid ""
377
- "Oops.. We are getting some technical error. Please try again or contact "
378
- "admin."
379
  msgstr ""
380
  "Hoppla! Wir hatten gerade ein technisches Problem. Bitte versuchen Sie es "
381
  "nochmals oder kontaktieren Sie den Administrator."
@@ -384,927 +369,1248 @@ msgstr ""
384
  msgid "This email address has already been confirmed."
385
  msgstr "Diese E-Mail-Adresse wurde bereits bestätigt."
386
 
387
- #: ../notification/notification-add.php:26
388
- #: ../notification/notification-add.php:120
389
- #: ../notification/notification-edit.php:40
390
- msgid "Please select subscribers group."
391
- msgstr "Bitte wählen Sie eine Empfängergruppe."
392
-
393
- #: ../notification/notification-add.php:32
394
- #: ../notification/notification-add.php:212
395
- #: ../notification/notification-edit.php:46
396
- #: ../notification/notification-edit.php:232
397
- msgid "Please select notification status."
398
- msgstr "Bitte wählen Sie einen Benachrichtigungsstatus."
399
 
400
- #: ../notification/notification-add.php:38
401
- #: ../notification/notification-add.php:139
402
- #: ../notification/notification-edit.php:52
403
- #: ../notification/notification-edit.php:143
404
- msgid ""
405
- "Please select notification mail subject. Use compose menu to create new."
406
- msgstr ""
407
- "Bitte wählen Sie einen Betreff für das Benachrichtigungs-E-Mail. Über das "
408
- "Menü Erstellen können Sie einen neuen anlegen."
409
 
410
- #: ../notification/notification-add.php:44
411
- #: ../notification/notification-add.php:171
412
- #: ../notification/notification-edit.php:58
413
- #: ../notification/notification-edit.php:183
414
- msgid "Please select post categories."
415
- msgstr "Bitte Beitragskategorien auswählen."
416
 
417
- #: ../notification/notification-add.php:69
418
- msgid "Notification was successfully created."
419
- msgstr "Die Benachrichtigung wurde erfolgreich erstellt."
420
 
421
- #: ../notification/notification-add.php:101
422
- msgid "Add Notification"
423
- msgstr "Benachrichtigung hinzufügen"
 
424
 
425
- #: ../notification/notification-add.php:104
426
- #: ../notification/notification-edit.php:115
427
- #: ../notification/notification-show.php:57
428
- #: ../notification/notification-show.php:65
429
- msgid "Subscribers Group"
430
- msgstr "Empfängergruppe"
431
 
432
- #: ../notification/notification-add.php:106
433
- #: ../notification/notification-add.php:124
434
- #: ../notification/notification-edit.php:123 ../sendmail/sendmail.php:108
435
- #: ../sendmail/sendmail.php:154 ../subscribers/view-subscriber-add.php:133
436
- #: ../subscribers/view-subscriber-edit.php:117
437
- #: ../subscribers/view-subscriber-import.php:167
438
- #: ../subscribers/view-subscriber-sync.php:99
439
- #: ../subscribers/view-subscriber-sync.php:130
440
- msgid "Select"
441
- msgstr "Auswählen"
442
 
443
- #: ../notification/notification-add.php:122
444
- #: ../notification/notification-edit.php:121
445
- msgid "Notification Mail"
446
- msgstr "Benachrichtigungs-E-Mail"
 
447
 
448
- #: ../notification/notification-add.php:141
449
- #: ../notification/notification-edit.php:145
450
- msgid "Post Categories"
451
- msgstr "Beitragskategorien"
452
 
453
- #: ../notification/notification-add.php:173
454
- #: ../notification/notification-edit.php:185
455
- msgid "Custom post type"
456
- msgstr ""
457
 
458
- #: ../notification/notification-add.php:204
459
- #: ../notification/notification-edit.php:224
460
  #, fuzzy
461
- msgid "Please select your custom post type (Optional)."
462
- msgstr "Bitte E-Mail-Typ auswählen."
463
 
464
- #: ../notification/notification-add.php:206
465
- #: ../notification/notification-edit.php:226
466
- #: ../notification/notification-show.php:59
467
- #: ../notification/notification-show.php:67
468
- msgid "Notification Status"
469
- msgstr "Benachrichtigungsstatus"
 
470
 
471
- #: ../notification/notification-edit.php:84
472
- msgid "Notification was successfully updated."
473
- msgstr "Die Benachrichtigung wurde erfolgreich upgedatet."
 
474
 
475
- #: ../notification/notification-edit.php:112
476
- msgid "Edit Notification"
477
- msgstr "Benachrichtigung bearbeiten"
478
 
479
- #: ../notification/notification-edit.php:119
480
- msgid "Not allowed to update the subscribers group in edit page."
481
- msgstr ""
482
- "Die Empfängergruppe kann in der Seitenbearbeitung nicht upgedatet werden."
483
 
484
- #: ../notification/notification-show.php:56
485
- #: ../notification/notification-show.php:64
486
- msgid "Mail Subject"
487
- msgstr "E-Mail Betreff"
488
 
489
- #: ../notification/notification-show.php:58
490
- #: ../notification/notification-show.php:66
491
- msgid "Categories / Custom Post"
 
492
  msgstr ""
 
 
493
 
494
- #: ../roles/roles-add.php:92
495
- msgid "Roles and Capabilities"
496
- msgstr ""
497
 
498
- #: ../roles/roles-add.php:94
499
- #, fuzzy
500
- msgid "Subscribers Menu"
501
- msgstr "Empfänger"
 
502
 
503
- #: ../roles/roles-add.php:100
504
- msgid ""
505
- "Select user role to access plugin Subscribers Menu. Only Admin user can "
506
- "change this value."
507
- msgstr ""
508
 
509
- #: ../roles/roles-add.php:103
510
- #, fuzzy
511
- msgid "Compose Menu"
512
- msgstr "E-Mail erstellen"
513
 
514
- #: ../roles/roles-add.php:109
515
- msgid ""
516
- "Select user role to access plugin Compose Menu. Only Admin user can change "
517
- "this value."
518
- msgstr ""
 
519
 
520
- #: ../roles/roles-add.php:111
521
- #, fuzzy
522
- msgid "Notification Menu"
523
- msgstr "Benachrichtigung"
524
 
525
- #: ../roles/roles-add.php:117
526
- msgid ""
527
- "Select user role to access plugin Notification Menu. Only Admin user can "
528
- "change this value."
529
- msgstr ""
530
 
531
- #: ../roles/roles-add.php:119
532
- msgid "Send Email Menu/Cron Menu"
533
- msgstr ""
534
 
535
- #: ../roles/roles-add.php:125
536
- msgid ""
537
- "Select user role to access plugin Send Email Menu. Only Admin user can "
538
- "change this value."
539
- msgstr ""
540
 
541
- #: ../roles/roles-add.php:127
542
- #, fuzzy
543
- msgid "Settings Menu"
544
- msgstr "Einstellungen"
 
545
 
546
- #: ../roles/roles-add.php:133
547
- msgid ""
548
- "Select user role to access plugin Settings Menu. Only Admin user can change "
549
- "this value."
550
- msgstr ""
551
 
552
- #: ../roles/roles-add.php:135
553
- #, fuzzy
554
- msgid "Sent Mails Menu"
555
- msgstr "Gesendete E-Mails"
556
 
557
- #: ../roles/roles-add.php:141
558
- msgid ""
559
- "Select user role to access plugin Sent Mails Menu. Only Admin user can "
560
- "change this value."
561
- msgstr ""
562
 
563
- #: ../roles/roles-add.php:143
564
- #, fuzzy
565
- msgid "Help & Info Menu"
566
- msgstr "Hilfe & Info"
567
 
568
- #: ../roles/roles-add.php:149
569
- msgid ""
570
- "Select user role to access plugin Help & Info Menu. Only Admin user can "
571
- "change this value."
572
- msgstr ""
573
 
574
- #: ../sendmail/sendmail.php:35
575
- msgid "Please select your mail subject."
576
- msgstr "Bitte E-Mail Betreff auswählen."
577
-
578
- #: ../sendmail/sendmail.php:43
579
- msgid "No email address selected."
580
- msgstr "Keine E-Mail-Adresse ausgewählt."
581
-
582
- #: ../sendmail/sendmail.php:58
583
- msgid "Mail sent successfully"
584
- msgstr "E-Mail erfolgreich gesendet"
585
-
586
- #: ../sendmail/sendmail.php:64
587
- msgid "Click here for details"
588
- msgstr "Hier klicken für Details"
589
 
590
- #: ../sendmail/sendmail.php:73
591
- msgid "Oops.. We are getting some error. mail not sending."
592
- msgstr "Hoppla, ein Fehler! E-Mail kann nicht gesendet werden."
 
593
 
594
- #: ../sendmail/sendmail.php:102
595
- msgid "Select your mail subject"
596
- msgstr "E-Mail Betreff wählen"
 
 
597
 
598
- #: ../sendmail/sendmail.php:103
599
- msgid ""
600
- "Select a mail subject from available list. Go to Compose page to create new "
601
- "mail."
602
  msgstr ""
603
- "Wählen Sie einen verfügbaren E-Mail Betreff aus der Liste. Auf der Seite "
604
- "Erstellen können Sie eine neue E-Mail schreiben."
605
 
606
- #: ../sendmail/sendmail.php:133
607
- #, fuzzy
608
- msgid "Mail Type"
609
- msgstr "E-Mail-Typ"
610
-
611
- #: ../sendmail/sendmail.php:134
612
  #, fuzzy
613
- msgid "Select your mail type."
614
- msgstr "Bitte E-Mail-Typ auswählen."
615
-
616
- #: ../sendmail/sendmail.php:148
617
- msgid "Select subscriber group"
618
- msgstr "Empfängergruppe wählen"
619
-
620
- #: ../sendmail/sendmail.php:149
621
- msgid "Select your subscriber group to send email."
622
- msgstr "Wählen Sie eine Empfängergruppe, um das E-Mail zu senden."
623
-
624
- #: ../sendmail/sendmail.php:174
625
- msgid "Check All"
626
- msgstr "Alle auswählen"
627
 
628
- #: ../sendmail/sendmail.php:175
629
- msgid "Uncheck All"
630
- msgstr "Alle abwählen"
631
 
632
- #: ../sendmail/sendmail.php:238
633
- msgid "No subscribers available for this search criteria."
634
- msgstr "Keine Empfänger für diese Suchkriterien verfügbar."
635
 
636
- #: ../sentmail/deliverreport-show.php:11
637
- msgid "Oops.. Unexpected error occurred. Please try again."
638
- msgstr "Hoppla, ein unerwarteter Fehler. Bitte versuchen Sie es nochmals!"
 
639
 
640
- #: ../sentmail/deliverreport-show.php:19
641
- msgid "Delivery Report"
642
- msgstr "Zustellungsbericht"
 
643
 
644
- #: ../sentmail/deliverreport-show.php:37 ../sentmail/deliverreport-show.php:49
645
- #: ../subscribers/view-subscriber-export.php:29
646
- #: ../subscribers/view-subscriber-export.php:37
647
- #: ../subscribers/view-subscriber-show.php:324
648
- #: ../subscribers/view-subscriber-show.php:337
649
- msgid "Sno"
650
- msgstr "Sno"
651
 
652
- #: ../sentmail/deliverreport-show.php:38 ../sentmail/deliverreport-show.php:50
653
- msgid "Email"
654
- msgstr "E-Mail"
 
655
 
656
- #: ../sentmail/deliverreport-show.php:39 ../sentmail/deliverreport-show.php:51
657
- msgid "Sent Date"
658
- msgstr "Versanddatum"
 
659
 
660
- #: ../sentmail/deliverreport-show.php:42 ../sentmail/deliverreport-show.php:54
661
- msgid "Viewed Status"
662
- msgstr "Gesehen Status"
 
663
 
664
- #: ../sentmail/deliverreport-show.php:43 ../sentmail/deliverreport-show.php:55
665
- msgid "Viewed Date"
666
- msgstr "Gesehen Datum"
 
667
 
668
- #: ../sentmail/deliverreport-show.php:44 ../sentmail/deliverreport-show.php:56
669
- #: ../subscribers/view-subscriber-show.php:329
670
- #: ../subscribers/view-subscriber-show.php:342
671
- msgid "Database ID"
672
- msgstr "Datenbank-ID"
 
673
 
674
- #: ../sentmail/deliverreport-show.php:96 ../sentmail/sentmail-show.php:144
675
- msgid " &lt;&lt; "
676
- msgstr "&lt;&lt;"
 
677
 
678
- #: ../sentmail/deliverreport-show.php:97 ../sentmail/sentmail-show.php:145
679
- msgid " &gt;&gt; "
680
- msgstr "&gt;&gt;"
 
681
 
682
- #: ../sentmail/sentmail-show.php:42
683
- msgid "Successfully deleted all reports except latest 10."
684
- msgstr "Alle außer den letzten 10 Berichten wurden erfolgreich gelöscht."
 
685
 
686
- #: ../sentmail/sentmail-show.php:72 ../sentmail/sentmail-show.php:85
687
- msgid "View Reports"
688
- msgstr "Berichte anzeigen"
 
 
689
 
690
- #: ../sentmail/sentmail-show.php:74 ../sentmail/sentmail-show.php:87
691
- #, fuzzy
692
- msgid "Source"
693
- msgstr "Versand Quelle"
694
 
695
- #: ../sentmail/sentmail-show.php:77 ../sentmail/sentmail-show.php:90
696
- #, fuzzy
697
- msgid "Start Date"
698
- msgstr "Versand Startdatum"
699
 
700
- #: ../sentmail/sentmail-show.php:78 ../sentmail/sentmail-show.php:91
701
- #, fuzzy
702
- msgid "End Date"
703
- msgstr "Versand Enddatum"
704
 
705
- #: ../sentmail/sentmail-show.php:79 ../sentmail/sentmail-show.php:92
706
- #, fuzzy
707
- msgid "Total"
708
- msgstr "E-Mails gesamt"
709
 
710
- #: ../sentmail/sentmail-show.php:168 ../sentmail/sentmail-show.php:170
711
- msgid "Optimize Table"
712
- msgstr "Tabelle optimieren"
 
713
 
714
- #: ../sentmail/sentmail-show.php:180
715
- msgid ""
716
- "Note: Please click <strong>Optimize Table</strong> button to delete all "
717
- "reports except latest 10."
718
  msgstr ""
719
- "Achtung: Bitte klicken Sie auf <strong>Tabelle optimieren</strong>, um alle "
720
- "Berichte außer den letzten 10 zu löschen."
721
 
722
- #: ../settings/setting-sync.php:8
723
- #, fuzzy
724
- msgid "Table sync completed successfully."
725
- msgstr "E-Mail erfolgreich gesendet"
726
 
727
- #: ../settings/setting-sync.php:21
728
- msgid "Sync plugin tables"
 
729
  msgstr ""
730
 
731
- #: ../settings/setting-sync.php:25
732
- msgid "Click to sync tables"
 
733
  msgstr ""
734
 
735
- #: ../settings/settings-edit.php:102
736
- msgid "Please enter sender of notifications from name."
737
- msgstr "Bitte geben Sie einen Absender Namen für Benachrichtigungen ein."
 
738
 
739
- #: ../settings/settings-edit.php:108
740
- msgid "Please enter sender of notifications from email."
 
741
  msgstr ""
742
- "Bitte geben Sie eine Absender E-Mail-Adresse für Benachrichtigungen ein."
743
 
744
- #: ../settings/settings-edit.php:143
745
- msgid "Details was successfully updated."
746
- msgstr "Die Details wurden erfolgreich upgedatet."
 
747
 
748
- #: ../settings/settings-edit.php:148
749
- msgid "Oops, details not update."
750
- msgstr "Hoppla, die Details konnten nicht upgedatet werden."
 
751
 
752
- #: ../settings/settings-edit.php:196
753
- msgid "Sender of notifications"
754
- msgstr "Absender für Benachrichtigungen"
 
755
 
756
- #: ../settings/settings-edit.php:197
757
- msgid ""
758
- "Choose a FROM name and FROM email address for all notifications emails from "
759
- "this plugin."
760
  msgstr ""
761
- "Wählen Sie einen ABSENDER Namen und eine ABSENDER E-Mail-Adresse für alle "
762
- "Benachrichtigungen von diesem Plugin."
763
 
764
- #: ../settings/settings-edit.php:207
765
- msgid ""
766
- "Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
767
- "Option 3 & 4 is to send mails with PHP method mail()"
768
  msgstr ""
769
- "Mit Option 1 & 2 werden E-Mails mit der Wordpress Standardmethode wp_mail() "
770
- "versendet. Mit Option 3 & 4 werden E-Mails mit der PHP-Methode mail() "
771
- "versendet."
772
 
773
- #: ../settings/settings-edit.php:221
774
- msgid "Opt-in option"
775
- msgstr "Opt-in Option"
 
776
 
777
- #: ../settings/settings-edit.php:222
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
778
  msgid ""
779
- "Double Opt In, means subscribers need to confirm their email address by an "
780
- "activation link sent them on a activation email message. Single Opt In, "
781
- "means subscribers do not need to confirm their email address."
 
782
  msgstr ""
783
- "Bei Double Opt-In müssen die Empfänger ihre E-Mail-Adresse mittels eines "
784
- "Aktivierungslinks bestätigen, welcher ihnen per E-Mail zugesandt wird. Bei "
785
- "Single Opt-In müssen die Empfänger ihre E-Mail-Adresse nicht bestätigen."
786
-
787
- #: ../settings/settings-edit.php:233
788
- msgid "Opt-in mail subject (Confirmation mail)"
789
- msgstr "Opt-In E-Mail Betreff (Bestätigungsmail)"
790
-
791
- #: ../settings/settings-edit.php:234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
792
  msgid ""
793
- "Enter the subject for Double Opt In mail. This will send whenever subscriber "
794
- "added email into our database."
 
 
795
  msgstr ""
796
- "Geben Sie den Betreff für das Double Opt-In E-Mail ein. Dieses wird immer "
797
- "gesendet, sobald eine E-Mail-Adresse registriert wird."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
798
 
799
- #: ../settings/settings-edit.php:240
800
- msgid "Opt-in mail content (Confirmation mail)"
801
- msgstr "Opt-in E-Mail Inhalt (Bestätigungsmail)"
802
 
803
- #: ../settings/settings-edit.php:241
804
- msgid ""
805
- "Enter the content for Double Opt In mail. This will send whenever subscriber "
806
- "added email into our database."
807
- msgstr ""
808
- "Geben Sie den Inhalt für das Double Opt-In E-Mail ein. Dieses wird immer "
809
- "gesendet, sobald eine E-Mail-Adresse registriert wird."
810
 
811
- #: ../settings/settings-edit.php:247
812
- msgid "Opt-in link (Confirmation link)"
813
- msgstr "Opt-In Link (Bestätigungslink)"
814
 
815
- #: ../settings/settings-edit.php:248
816
- msgid "Double Opt In confirmation link. You no need to change this value."
817
- msgstr "Double Opt-In Bestätigungslink. Sie müssen diesen nicht ändern."
818
 
819
- #: ../settings/settings-edit.php:254
820
- msgid "Text to display after email subscribed successfully"
821
- msgstr ""
822
- "Text zur Anzeige nachdem eine E-Mail-Adresse erfolgreich registriert wurde"
 
 
 
 
 
823
 
824
- #: ../settings/settings-edit.php:255
 
825
  msgid ""
826
- "This text will display once user clicked email confirmation link from opt-in "
827
- "(confirmation) email content."
828
  msgstr ""
829
- "Dieser Text wird angezeigt, sobald ein User den Bestätigungspink im Opt-In "
830
- "Bestätigungsmail angeklickt hat."
831
 
832
- #: ../settings/settings-edit.php:262
833
- msgid "Subscriber welcome email"
834
- msgstr "Empfänger Willkommensmail"
835
 
836
- #: ../settings/settings-edit.php:263
837
- msgid "To send welcome mail to subscriber, This option must be set to YES."
838
- msgstr ""
839
- "Diese Option muss auf JA gesetzt sein, damit ein Willkommensmail an neue "
840
- "Empfänger gesendet wird."
841
 
842
- #: ../settings/settings-edit.php:274
843
- msgid "Welcome mail subject"
844
- msgstr "Willkommensmail Betreff"
845
 
846
- #: ../settings/settings-edit.php:275
847
- msgid ""
848
- "Enter the subject for subscriber welcome mail. This will send whenever email "
849
- "subscribed (confirmed) successfully."
850
- msgstr ""
851
- "Geben Sie einen Betreff für das Willkommensmail an. Dieses wird immer "
852
- "gesendet, wenn eine neue E-Mail-Adresse registriert bzw. bestätigt wurde."
853
 
854
- #: ../settings/settings-edit.php:281
855
- msgid "Subscriber welcome mail content"
856
- msgstr "Willkommensmail Inhalt"
 
857
 
858
- #: ../settings/settings-edit.php:282
859
- msgid ""
860
- "Enter the content for subscriber welcome mail. This will send whenever email "
861
- "subscribed (confirmed) successfully."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
862
  msgstr ""
863
- "Geben Sie den Inhalt für das Willkommensmail an. Dieses wird immer gesendet, "
864
- "wenn eine neue E-Mail-Adresse registriert bzw. bestätigt wurde."
 
 
 
 
 
 
 
 
 
 
865
 
866
- #: ../settings/settings-edit.php:290
867
- msgid "Mail to admin"
868
- msgstr "Mail an den Administrator"
 
 
 
 
869
 
870
- #: ../settings/settings-edit.php:291
871
- msgid ""
872
- "To send admin notifications for new subscriber, This option must be set to "
873
- "YES."
874
  msgstr ""
875
- "Diese Option muss auf JA gesetzt sein, damit bei neuen Empfängern "
876
- "Benachrichtigungsmails an den Administrator gesendet werden."
877
 
878
- #: ../settings/settings-edit.php:302
879
- msgid "Admin email addresses"
880
- msgstr "Administrator E-Mail-Adressen"
 
881
 
882
- #: ../settings/settings-edit.php:303
 
 
 
 
 
 
 
 
 
883
  msgid ""
884
- "Enter the admin email addresses that should receive notifications (separate "
885
- "by comma)."
886
  msgstr ""
887
- "Geben Sie Administrator E-Mail-Adressen an, welche Benachrichtigungen "
888
- "erhalten sollen (kommagetrennt)."
889
 
890
- #: ../settings/settings-edit.php:309
891
- msgid "Admin mail subject"
892
- msgstr "Administrator E-Mail Betreff"
 
 
 
 
 
 
893
 
894
- #: ../settings/settings-edit.php:310
895
  msgid ""
896
- "Enter the subject for admin mail. This will send whenever new email added "
897
- "and confirmed into our database."
898
  msgstr ""
899
- "Geben Sie einen Betreff für Administratormails an. Diese werden immer "
900
- "gesendet, sobald eine neue E-Mail-Adresse als Empfänger hinzugefügt und "
901
- "bestätigt wurde."
902
 
903
- #: ../settings/settings-edit.php:316
904
- msgid "Admin mail content"
905
- msgstr "Administrator E-Mail Inhalt"
906
 
907
- #: ../settings/settings-edit.php:317
908
- msgid ""
909
- "Enter the mail content for admin. This will send whenever new email added "
910
- "and confirmed into our database."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
911
  msgstr ""
912
- "Geben Sie den Inhalt für Administratormails an. Diese werden immer gesendet, "
913
- "sobald eine neue E-Mail-Adresse als Empfänger hinzugefügt und bestätigt "
914
- "wurde."
915
 
916
- #: ../settings/settings-edit.php:324
917
- msgid "Unsubscribe link"
918
- msgstr "Abmeldelink"
919
 
920
- #: ../settings/settings-edit.php:325
921
- msgid "Unsubscribe link. You no need to change this value."
922
- msgstr "Abmeldelink. Sie müssen diesen Wert nicht ändern."
 
923
 
924
- #: ../settings/settings-edit.php:331
925
- msgid "Unsubscribe text in mail"
926
- msgstr "Text für Abmeldelink"
 
 
 
 
 
927
 
928
- #: ../settings/settings-edit.php:332
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
929
  msgid ""
930
- "Enter the text for unsubscribe link. This text is to add unsubscribe link "
931
- "with newsletter."
932
  msgstr ""
933
- "Geben Sie den Linktext für den Abmeldelink. Dieser Text wird für den "
934
- "Abmeldelink in allen Newsletters benötigt."
935
 
936
- #: ../settings/settings-edit.php:338
937
- msgid "Text to display after email unsubscribed"
938
- msgstr "Text der nach einer Abmeldung angezeigt wird"
 
 
 
 
 
 
939
 
940
- #: ../settings/settings-edit.php:339
 
941
  msgid ""
942
- "This text will display once user clicked unsubscribed link from our "
943
- "newsletter."
944
  msgstr ""
945
- "Dieser Text wird immer angezeigt, nachdem ein User den Abmeldelink in einem "
946
- "Newsletter angeklickt hat."
947
 
948
- #: ../settings/settings-edit.php:346
949
- msgid "Message 1"
950
- msgstr "Nachricht 1"
951
 
952
- #: ../settings/settings-edit.php:347
953
- msgid "Default message to display if any issue on confirmation link."
954
- msgstr "Standardnachricht bei Problemen mit dem Bestätigungslink."
 
955
 
956
- #: ../settings/settings-edit.php:353
957
- msgid "Message 2"
958
- msgstr "Nachricht 2"
959
 
960
- #: ../settings/settings-edit.php:354
961
- msgid "Default message to display if any issue on unsubscribe link."
962
- msgstr "Standardnachricht bei Problemen mit dem Abmeldelink."
963
 
964
- #: ../settings/settings-edit.php:361
965
- msgid "Sent report subject"
966
- msgstr "Sendebericht Betreff"
967
 
968
- #: ../settings/settings-edit.php:362
969
- msgid "Mail subject for sent mail report."
970
- msgstr "E-Mail Betreff für den Sendebericht."
971
 
972
- #: ../settings/settings-edit.php:368
973
- msgid "Sent report content"
974
- msgstr "Sendebericht Inhalt"
 
 
 
975
 
976
- #: ../settings/settings-edit.php:369
977
- msgid "Mail content for sent mail report."
978
- msgstr "E-Mail Inhalt für den Sendebericht."
 
979
 
980
- #: ../settings/settings-edit.php:380
981
- msgid "Save Settings"
982
- msgstr "Einstellungen speichern"
 
983
 
984
- #: ../subscribers/view-subscriber-add.php:28
985
- #: ../subscribers/view-subscriber-add.php:120
986
- #: ../subscribers/view-subscriber-edit.php:43
987
- #: ../subscribers/view-subscriber-edit.php:104
988
- msgid "Please enter subscriber email address."
989
- msgstr "Bitte Empfänger E-Mail-Adresse eingeben."
990
 
991
- #: ../subscribers/view-subscriber-add.php:45
992
- msgid "Please select or create your group for this email."
993
- msgstr ""
994
- "Bitte Empfängergruppe für diese E-Mail-Adresse auswählen oder erstellen."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
995
 
996
- #: ../subscribers/view-subscriber-add.php:54
997
- #: ../subscribers/view-subscriber-import.php:45
998
  msgid ""
999
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1000
- "the group name."
1001
  msgstr ""
 
 
1002
 
1003
- #: ../subscribers/view-subscriber-add.php:66
1004
- msgid "Email was successfully inserted."
1005
- msgstr "E-mail-Adresse erfolgreich hinzugefügt."
1006
-
1007
- #: ../subscribers/view-subscriber-add.php:70
1008
- msgid "Email already exist in our list."
1009
- msgstr "Diese E-Mail-Adresse ist bereits in der Liste vorhanden."
1010
 
1011
- #: ../subscribers/view-subscriber-add.php:75
1012
- msgid "Email is invalid."
1013
- msgstr "Diese E-Mail-Adresse ist ungültig."
1014
 
1015
- #: ../subscribers/view-subscriber-add.php:112
1016
- msgid "Add email"
1017
- msgstr "E-Mail-Adresse hinzufügen"
1018
 
1019
- #: ../subscribers/view-subscriber-add.php:114
1020
- #: ../subscribers/view-subscriber-edit.php:98
1021
- msgid "Enter full name"
1022
- msgstr "Vollständigen Namen eingeben"
1023
 
1024
- #: ../subscribers/view-subscriber-add.php:116
1025
- #: ../subscribers/view-subscriber-edit.php:100
1026
- msgid "Please enter subscriber full name."
1027
- msgstr "Bitte geben Sie den vollständigen Namen des Empfängers ein."
1028
 
1029
- #: ../subscribers/view-subscriber-add.php:118
1030
- #: ../subscribers/view-subscriber-edit.php:102
1031
- msgid "Enter email address."
1032
- msgstr "E-Mail-Adresse eingeben."
1033
 
1034
- #: ../subscribers/view-subscriber-add.php:129
1035
- #: ../subscribers/view-subscriber-edit.php:113
1036
- #: ../subscribers/view-subscriber-import.php:163
1037
- msgid "Please select subscriber email status."
1038
- msgstr "Bitte wählen Sie den E-Mail Status des Empfängers aus."
1039
 
1040
- #: ../subscribers/view-subscriber-add.php:131
1041
- #: ../subscribers/view-subscriber-import.php:165
1042
- msgid "Select (or) Create Group"
1043
- msgstr "Gruppe auswählen oder erstellen"
 
 
1044
 
1045
- #: ../subscribers/view-subscriber-add.php:149
1046
- #: ../subscribers/view-subscriber-edit.php:141
1047
- #: ../subscribers/view-subscriber-import.php:183
1048
- msgid "Please select or create group for this subscriber."
 
1049
  msgstr ""
1050
- "Bitte wählen Sie für diesen Empfänger eine Gruppe aus oder legen Sie eine "
1051
- "neue an."
1052
 
1053
- #: ../subscribers/view-subscriber-edit.php:54
1054
- msgid "Error: Special characters are not allowed in the group name."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1055
  msgstr ""
 
1056
 
1057
- #: ../subscribers/view-subscriber-edit.php:66
1058
- msgid "Email was successfully updated."
1059
- msgstr "E-Mail-Adresse erfolgreich upgedatet."
 
1060
 
1061
- #: ../subscribers/view-subscriber-edit.php:70
 
 
 
 
 
 
 
 
 
 
 
1062
  #, fuzzy
1063
- msgid "Email already exist for this group."
1064
- msgstr "Diese E-Mail-Adresse ist bereits in der Liste vorhanden."
1065
 
1066
- #: ../subscribers/view-subscriber-edit.php:96
1067
- msgid "Edit email"
1068
- msgstr "E-Mail-Adresse bearbeiten"
 
 
 
1069
 
1070
- #: ../subscribers/view-subscriber-edit.php:115
1071
- #: ../subscribers/view-subscriber-show.php:328
1072
- #: ../subscribers/view-subscriber-show.php:341
1073
- msgid "Group"
1074
- msgstr "Gruppe"
1075
 
1076
- #: ../subscribers/view-subscriber-export.php:24
1077
- msgid "Export email address in csv format"
1078
- msgstr "E-Mail-Adressen im CSV-Format exportieren"
1079
 
1080
- #: ../subscribers/view-subscriber-export.php:30
1081
- #: ../subscribers/view-subscriber-export.php:38
1082
- msgid "Export option"
1083
- msgstr "Exportoption"
1084
 
1085
- #: ../subscribers/view-subscriber-export.php:31
1086
- #: ../subscribers/view-subscriber-export.php:39
1087
- msgid "Total email"
1088
- msgstr "E-Mails gesamt"
1089
 
1090
- #: ../subscribers/view-subscriber-export.php:46
1091
- msgid "Subscriber email address"
1092
- msgstr "Empfänger E-Mail-Adresse"
1093
 
1094
- #: ../subscribers/view-subscriber-export.php:48
1095
- #: ../subscribers/view-subscriber-export.php:54
1096
- #: ../subscribers/view-subscriber-export.php:60
1097
- msgid "Click to export csv"
1098
- msgstr "Klicken für den CSV-Export"
1099
 
1100
- #: ../subscribers/view-subscriber-export.php:52
1101
- msgid "Registered email address"
1102
- msgstr "Registrierte E-Mail-Adresse"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1103
 
1104
- #: ../subscribers/view-subscriber-export.php:58
1105
- msgid "Comments author email address"
1106
- msgstr "E-Mail-Adresse des Kommentar-Autors"
1107
 
1108
- #: ../subscribers/view-subscriber-export.php:67
1109
- msgid "Add Email"
1110
- msgstr "E-Mail-Adresse hinzufügen"
1111
 
1112
- #: ../subscribers/view-subscriber-export.php:68
1113
- #: ../subscribers/view-subscriber-show.php:445
1114
- msgid "Import Email"
1115
- msgstr "E-Mail-Adressen importieren"
1116
 
1117
- #: ../subscribers/view-subscriber-import.php:103
1118
- msgid "Email(s) was successfully imported."
1119
- msgstr "E-Mail-Adressen erfolgreich importiert."
 
1120
 
1121
- #: ../subscribers/view-subscriber-import.php:104
1122
- msgid "Email(s) are already in our database."
1123
- msgstr "Die E-Mail-Adressen befinden sich bereits in unserer Datenbank."
 
1124
 
1125
- #: ../subscribers/view-subscriber-import.php:105
1126
- msgid "Email(s) are invalid."
1127
- msgstr "E-Mail-Adressen ungültig."
 
1128
 
1129
- #: ../subscribers/view-subscriber-import.php:115
1130
- msgid "File upload failed or no data available in the csv file."
1131
  msgstr ""
1132
- "Dateiupload fehlgeschlagen oder keine Daten in der CSV-Datei vorhanden."
1133
-
1134
- #: ../subscribers/view-subscriber-import.php:150
1135
- msgid "Upload email"
1136
- msgstr "E-Mail-Adressen uploaden"
1137
 
1138
- #: ../subscribers/view-subscriber-import.php:151
1139
- msgid "Select csv file"
1140
- msgstr "CSV-Datei auswählen"
1141
 
1142
- #: ../subscribers/view-subscriber-import.php:153
1143
  msgid ""
1144
- "Please select the input csv file. Please check official website for csv "
1145
- "structure."
1146
  msgstr ""
1147
- "Bitte wählen Sie eine CSV-Datei. Informationen zur CSV-Struktur finden Sie "
1148
- "auf unserer offiziellen Website."
1149
 
1150
- #: ../subscribers/view-subscriber-import.php:188
1151
- msgid "Upload CSV"
1152
- msgstr "CSV uploaden"
 
1153
 
1154
- #: ../subscribers/view-subscriber-show.php:72
1155
- #: ../subscribers/view-subscriber-show.php:125
1156
- msgid ""
1157
- "To send confirmation mail, Please change the Opt-in option to Double Opt In."
1158
  msgstr ""
1159
- "Bitte ändern Sie die Opt-In Option auf Double Opt-In, um Bestätigungsmails "
1160
- "zu senden."
1161
-
1162
- #: ../subscribers/view-subscriber-show.php:81
1163
- msgid "Confirmation email resent successfully."
1164
- msgstr "Bestätigungsmail erfolgreich gesendet."
1165
 
1166
- #: ../subscribers/view-subscriber-show.php:110
1167
- #: ../subscribers/view-subscriber-show.php:156
1168
- #: ../subscribers/view-subscriber-show.php:201
1169
- msgid "Oops, No record was selected."
1170
- msgstr "Hoppla, kein Eintrag ausgewählt."
1171
 
1172
- #: ../subscribers/view-subscriber-show.php:150
1173
- msgid "Confirmation email(s) resent successfully."
1174
- msgstr "Bestätigungsmail(s) erfolgreich gesendet."
1175
 
1176
- #: ../subscribers/view-subscriber-show.php:186
1177
- msgid "Selected subscribers group was successfully updated."
1178
- msgstr "Die ausgewählte Empfängergruppe wurde erfolgreich upgedatet."
1179
 
1180
- #: ../subscribers/view-subscriber-show.php:192
1181
- msgid "Oops, New group name was not selected."
1182
- msgstr "Hoppla, es wurde kein Name für die neue Gruppe ausgewählt."
 
 
 
1183
 
1184
- #: ../subscribers/view-subscriber-show.php:232
1185
- msgid "View subscriber"
1186
- msgstr "Empfänger anzeigen"
1187
 
1188
- #: ../subscribers/view-subscriber-show.php:280
1189
- #, fuzzy
1190
- msgid "All Groups"
1191
- msgstr "Gruppe"
1192
 
1193
- #: ../subscribers/view-subscriber-show.php:299
1194
- #, fuzzy
1195
- msgid "All Status"
1196
- msgstr "Status"
1197
 
1198
- #: ../subscribers/view-subscriber-show.php:300
1199
- msgid "Confirmed"
1200
- msgstr "Bestätigt"
1201
 
1202
- #: ../subscribers/view-subscriber-show.php:301
1203
- msgid "Unconfirmed"
1204
- msgstr "Unbestätigt"
1205
 
1206
- #: ../subscribers/view-subscriber-show.php:302
1207
- msgid "Unsubscribed"
1208
- msgstr "Abgemeldet"
1209
 
1210
- #: ../subscribers/view-subscriber-show.php:303
1211
- msgid "Single Opt In"
1212
- msgstr "Single Opt-In"
1213
 
1214
- #: ../subscribers/view-subscriber-show.php:325
1215
- #: ../subscribers/view-subscriber-show.php:338
1216
- msgid "Email address"
1217
- msgstr "E-Mail-Adresse"
1218
 
1219
- #: ../subscribers/view-subscriber-show.php:385
1220
- #: ../subscribers/view-subscriber-show.php:423
1221
- msgid "Resend Confirmation"
1222
- msgstr "Bestätigung erneut senden"
1223
 
1224
- #: ../subscribers/view-subscriber-show.php:401
1225
  msgid ""
1226
- "No records available. Please use the above alphabet search button to search."
 
1227
  msgstr ""
1228
- "Keine Einträge vorhanden. Bitte nutzen Sie die obenstehenden Buttons zur "
1229
- "alphabetischen Suche."
1230
 
1231
- #: ../subscribers/view-subscriber-show.php:421
1232
- msgid "Bulk Actions"
1233
- msgstr "Massenänderungs-Aktionen"
 
1234
 
1235
- #: ../subscribers/view-subscriber-show.php:424
1236
- msgid "Update Subscribers Group"
1237
- msgstr "Empfängergruppe updaten"
 
1238
 
1239
- #: ../subscribers/view-subscriber-show.php:427
1240
- msgid "Select Group"
1241
- msgstr "Gruppe auswählen"
1242
 
1243
- #: ../subscribers/view-subscriber-show.php:441
1244
- msgid "Apply"
1245
- msgstr "Zuordnen"
1246
 
1247
- #: ../subscribers/view-subscriber-show.php:446
1248
- #, fuzzy
1249
- msgid "Export Email"
1250
- msgstr "E-Mail-Adressen importieren"
1251
 
1252
- #: ../subscribers/view-subscriber-show.php:447
1253
- #, fuzzy
1254
- msgid "Sync Email"
1255
- msgstr "E-Mail senden"
1256
 
1257
- #: ../subscribers/view-subscriber-sync.php:33
1258
- #: ../subscribers/view-subscriber-sync.php:119
1259
- #, fuzzy
1260
- msgid "Please select default group to newly registered user."
 
 
1261
  msgstr ""
1262
- "Bitte wählen Sie für diesen Empfänger eine Gruppe aus oder legen Sie eine "
1263
- "neue an."
1264
 
1265
- #: ../subscribers/view-subscriber-sync.php:39
1266
- #: ../subscribers/view-subscriber-sync.php:150
1267
  #, fuzzy
1268
- msgid "Please select default group to newly commented user."
 
 
 
 
 
 
1269
  msgstr ""
1270
- "Bitte wählen Sie für diesen Empfänger eine Gruppe aus oder legen Sie eine "
1271
- "neue an."
1272
 
1273
- #: ../subscribers/view-subscriber-sync.php:56
1274
  #, fuzzy
1275
- msgid "Sync email successfully updated."
1276
- msgstr "E-Mail-Adresse erfolgreich upgedatet."
1277
 
1278
- #: ../subscribers/view-subscriber-sync.php:88
 
 
 
 
 
 
1279
  #, fuzzy
1280
- msgid "Sync email"
1281
- msgstr "E-Mail senden"
1282
 
1283
- #: ../subscribers/view-subscriber-sync.php:90
1284
- msgid "Sync newly registered user"
 
 
1285
  msgstr ""
1286
 
1287
- #: ../subscribers/view-subscriber-sync.php:95
 
 
 
 
1288
  msgid ""
1289
- "Automatically add a newly registered user email address to subscribers list."
 
1290
  msgstr ""
1291
 
1292
- #: ../subscribers/view-subscriber-sync.php:97
1293
- #: ../subscribers/view-subscriber-sync.php:128
1294
  #, fuzzy
1295
- msgid "Select default group"
1296
- msgstr "Gruppe auswählen"
1297
 
1298
- #: ../subscribers/view-subscriber-sync.php:121
1299
- msgid "Sync newly commented user"
 
 
1300
  msgstr ""
1301
 
1302
- #: ../subscribers/view-subscriber-sync.php:126
 
 
 
 
 
1303
  msgid ""
1304
- "Automatically add a newly commented (who posted comments) user email address "
1305
- "to subscribers list."
 
 
 
 
 
 
 
 
 
 
 
1306
  msgstr ""
1307
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1308
  #~ msgid "Mail Preview"
1309
  #~ msgstr "E-Mail Vorschau"
1310
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Email subscribers\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-02-10 17:02+0100\n"
6
+ "PO-Revision-Date: 2016-02-10 17:48+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: www.gopiplus.com <www.gopiplus.com>\n"
9
  "Language: nl\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.8.7\n"
14
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
15
  "X-Poedit-Basepath: .\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #. Name of the plugin
20
+ msgid "Email Subscribers"
21
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
 
23
+ #. URI of the plugin
24
+ msgid "http://www.storeapps.org"
25
+ msgstr ""
 
26
 
27
+ #. Description of the plugin
28
+ msgid ""
29
+ "Email subscribers plugin has options to send newsletters to subscribers. It "
30
+ "has a separate page with HTML editor to create a HTML newsletter. Also have "
31
+ "options to send notification email to subscribers when new posts are published "
32
+ "to your blog. Separate page available to include and exclude categories to "
33
+ "send notifications."
34
+ msgstr ""
35
 
36
+ #. Author of the plugin
37
+ msgid "Store Apps"
38
  msgstr ""
39
 
40
+ #: ../settings/setting-sync.php:8
41
  #, fuzzy
42
+ msgid "Table sync completed successfully."
43
+ msgstr "E-Mail erfolgreich gesendet"
 
 
 
 
 
44
 
45
+ #: ../settings/setting-sync.php:21
46
+ msgid "Sync plugin tables"
47
  msgstr ""
48
 
49
+ #: ../settings/setting-sync.php:25
50
+ msgid "Click to sync tables"
51
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
52
 
53
+ #: ../settings/settings-edit.php:11 ../sentmail/sentmail-show.php:18 ..
54
+ #: /sentmail/sentmail-preview.php:12 ../subscribers/view-subscriber-edit.php:12
55
+ #: /subscribers/view-subscriber-show.php:46
56
+ #: ../notification/notification-edit.php:11
57
+ #: ../notification/notification-show.php:16 ../compose/compose-edit.php:11
58
+ #: /compose/compose-show.php:30 ../compose/compose-preview.php:10
59
+ msgid "Oops, selected details doesnt exist."
60
+ msgstr "Hoppla, die ausgewählten Details sind nicht vorhanden."
61
 
62
+ #: ../settings/settings-edit.php:102
63
+ msgid "Please enter sender of notifications from name."
64
+ msgstr "Bitte geben Sie einen Absender Namen für Benachrichtigungen ein."
65
 
66
+ #: ../settings/settings-edit.php:108
67
+ msgid "Please enter sender of notifications from email."
68
+ msgstr "Bitte geben Sie eine Absender E-Mail-Adresse für Benachrichtigungen ein."
69
 
70
+ #: ../settings/settings-edit.php:143
71
+ msgid "Details was successfully updated."
72
+ msgstr "Die Details wurden erfolgreich upgedatet."
73
 
74
+ #: ../settings/settings-edit.php:148
75
+ msgid "Oops, details not update."
76
+ msgstr "Hoppla, die Details konnten nicht upgedatet werden."
77
 
78
+ #: ../settings/settings-edit.php:173 ../subscribers/view-subscriber-add.php:92 ..
79
+ #: /subscribers/view-subscriber-add.php:101 ../subscribers/view-subscriber-edit.
80
+ #: php:86 ../subscribers/view-subscriber-import.php:107 ../subscribers/view-
81
+ #: subscriber-import.php:138 ../notification/notification-edit.php:100
82
+ #: /notification/notification-add.php:91 ../compose/compose-edit.php:71
83
+ #: /compose/compose-add.php:60 ../cron/cron-add.php:99 ../cron/cron-add.php:100
84
+ #: /cron/cron-add.php:101 ../roles/roles-add.php:81
 
 
85
  msgid "Click here"
86
  msgstr "Hier klicken"
87
 
88
+ #: ../settings/settings-edit.php:174 ../subscribers/view-subscriber-add.php:92 ..
89
+ #: /subscribers/view-subscriber-add.php:101 ../subscribers/view-subscriber-edit.
90
+ #: php:86 ../subscribers/view-subscriber-import.php:107 ../subscribers/view-
91
+ #: subscriber-import.php:138 ../notification/notification-edit.php:101
92
+ #: /notification/notification-add.php:92 ../compose/compose-edit.php:72
93
+ #: /compose/compose-add.php:61 ../roles/roles-add.php:81
 
 
94
  msgid " to view the details"
95
  msgstr "um Details anzuzeigen"
96
 
97
+ #: ../settings/settings-edit.php:189 ../classes/es-register.php:151
98
+ #: ../classes/es- register.php:152
99
+ msgid "Settings"
100
+ msgstr "Einstellungen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
 
102
+ #: ../settings/settings-edit.php:195
103
+ msgid "Sender of notifications"
104
+ msgstr "Absender für Benachrichtigungen"
105
 
106
+ #: ../settings/settings-edit.php:196
107
+ msgid ""
108
+ "Choose a FROM name and FROM email address for all notifications emails from "
109
+ "this plugin."
110
+ msgstr ""
111
+ "Wählen Sie einen ABSENDER Namen und eine ABSENDER E-Mail-Adresse für alle "
112
+ "Benachrichtigungen von diesem Plugin."
113
 
114
+ #: ../settings/settings-edit.php:205 ../compose/compose-edit.php:85 ..
115
+ #: /compose/compose-add.php:72
116
+ msgid "Mail type"
117
+ msgstr "E-Mail-Typ"
 
 
 
 
 
 
 
118
 
119
+ #: ../settings/settings-edit.php:206
120
+ msgid ""
121
+ "Option 1 & 2 is to send mails with default Wordpress method wp_mail(). Option "
122
+ "3 & 4 is to send mails with PHP method mail()"
123
+ msgstr ""
124
+ "Mit Option 1 & 2 werden E-Mails mit der Wordpress Standardmethode wp_mail() "
125
+ "versendet. Mit Option 3 & 4 werden E-Mails mit der PHP-Methode mail() "
126
+ "versendet."
127
 
128
+ #: ../settings/settings-edit.php:220
129
+ msgid "Opt-in option"
130
+ msgstr "Opt-in Option"
 
 
 
 
 
131
 
132
+ #: ../settings/settings-edit.php:221
133
+ msgid ""
134
+ "Double Opt In, means subscribers need to confirm their email address by an "
135
+ "activation link sent them on a activation email message. Single Opt In, means "
136
+ "subscribers do not need to confirm their email address."
137
+ msgstr ""
138
+ "Bei Double Opt-In müssen die Empfänger ihre E-Mail-Adresse mittels eines "
139
+ "Aktivierungslinks bestätigen, welcher ihnen per E-Mail zugesandt wird. Bei "
140
+ "Single Opt-In müssen die Empfänger ihre E-Mail-Adresse nicht bestätigen."
141
 
142
+ #: ../settings/settings-edit.php:232
143
+ msgid "Opt-in mail subject (Confirmation mail)"
144
+ msgstr "Opt-In E-Mail Betreff (Bestätigungsmail)"
 
 
 
 
 
 
 
 
 
 
 
 
145
 
146
+ #: ../settings/settings-edit.php:233
147
+ msgid ""
148
+ "Enter the subject for Double Opt In mail. This will send whenever subscriber "
149
+ "added email into our database."
150
+ msgstr ""
151
+ "Geben Sie den Betreff für das Double Opt-In E-Mail ein. Dieses wird immer "
152
+ "gesendet, sobald eine E-Mail-Adresse registriert wird."
 
153
 
154
+ #: ../settings/settings-edit.php:239
155
+ msgid "Opt-in mail content (Confirmation mail)"
156
+ msgstr "Opt-in E-Mail Inhalt (Bestätigungsmail)"
157
 
158
+ #: ../settings/settings-edit.php:240
159
+ msgid ""
160
+ "Enter the content for Double Opt In mail. This will send whenever subscriber "
161
+ "added email into our database."
162
+ msgstr ""
163
+ "Geben Sie den Inhalt für das Double Opt-In E-Mail ein. Dieses wird immer "
164
+ "gesendet, sobald eine E-Mail-Adresse registriert wird."
165
 
166
+ #: ../settings/settings-edit.php:246
167
+ msgid "Opt-in link (Confirmation link)"
168
+ msgstr "Opt-In Link (Bestätigungslink)"
 
 
 
169
 
170
+ #: ../settings/settings-edit.php:247
171
+ msgid "Double Opt In confirmation link. You no need to change this value."
172
+ msgstr "Double Opt-In Bestätigungslink. Sie müssen diesen nicht ändern."
 
 
173
 
174
+ #: ../settings/settings-edit.php:253
175
+ msgid "Text to display after email subscribed successfully"
176
+ msgstr ""
177
+ "Text zur Anzeige nachdem eine E-Mail-Adresse erfolgreich registriert wurde"
 
178
 
179
+ #: ../settings/settings-edit.php:254
180
+ msgid ""
181
+ "This text will display once user clicked email confirmation link from opt-in "
182
+ "(confirmation) email content."
183
+ msgstr ""
184
+ "Dieser Text wird angezeigt, sobald ein User den Bestätigungspink im Opt-In "
185
+ "Bestätigungsmail angeklickt hat."
186
 
187
+ #: ../settings/settings-edit.php:261
188
+ msgid "Subscriber welcome email"
189
+ msgstr "Empfänger Willkommensmail"
 
 
 
 
190
 
191
+ #: ../settings/settings-edit.php:262
192
+ msgid "To send welcome mail to subscriber, This option must be set to YES."
193
+ msgstr ""
194
+ "Diese Option muss auf JA gesetzt sein, damit ein Willkommensmail an neue "
195
+ "Empfänger gesendet wird."
196
 
197
+ #: ../settings/settings-edit.php:273
198
+ msgid "Welcome mail subject"
199
+ msgstr "Willkommensmail Betreff"
 
 
200
 
201
+ #: ../settings/settings-edit.php:274
202
+ msgid ""
203
+ "Enter the subject for subscriber welcome mail. This will send whenever email "
204
+ "subscribed (confirmed) successfully."
205
+ msgstr ""
206
+ "Geben Sie einen Betreff für das Willkommensmail an. Dieses wird immer "
207
+ "gesendet, wenn eine neue E-Mail-Adresse registriert bzw. bestätigt wurde."
 
208
 
209
+ #: ../settings/settings-edit.php:280
210
+ msgid "Subscriber welcome mail content"
211
+ msgstr "Willkommensmail Inhalt"
 
 
212
 
213
+ #: ../settings/settings-edit.php:281
214
+ msgid ""
215
+ "Enter the content for subscriber welcome mail. This will send whenever email "
216
+ "subscribed (confirmed) successfully."
217
+ msgstr ""
218
+ "Geben Sie den Inhalt für das Willkommensmail an. Dieses wird immer gesendet, "
219
+ "wenn eine neue E-Mail-Adresse registriert bzw. bestätigt wurde."
220
 
221
+ #: ../settings/settings-edit.php:289
222
+ msgid "Mail to admin"
223
+ msgstr "Mail an den Administrator"
 
224
 
225
+ #: ../settings/settings-edit.php:290
226
+ msgid ""
227
+ "To send admin notifications for new subscriber, This option must be set to YES."
228
+ msgstr ""
229
+ "Diese Option muss auf JA gesetzt sein, damit bei neuen Empfängern "
230
+ "Benachrichtigungsmails an den Administrator gesendet werden."
231
 
232
+ #: ../settings/settings-edit.php:301
233
+ msgid "Admin email addresses"
234
+ msgstr "Administrator E-Mail-Adressen"
 
235
 
236
+ #: ../settings/settings-edit.php:302
237
+ msgid ""
238
+ "Enter the admin email addresses that should receive notifications (separate by "
239
+ "comma)."
240
  msgstr ""
241
+ "Geben Sie Administrator E-Mail-Adressen an, welche Benachrichtigungen erhalten "
242
+ "sollen (kommagetrennt)."
243
 
244
+ #: ../settings/settings-edit.php:308
245
+ msgid "Admin mail subject"
246
+ msgstr "Administrator E-Mail Betreff"
247
 
248
+ #: ../settings/settings-edit.php:309
249
  msgid ""
250
+ "Enter the subject for admin mail. This will send whenever new email added and "
251
+ "confirmed into our database."
252
  msgstr ""
253
+ "Geben Sie einen Betreff für Administratormails an. Diese werden immer "
254
+ "gesendet, sobald eine neue E-Mail-Adresse als Empfänger hinzugefügt und "
255
+ "bestätigt wurde."
256
 
257
+ #: ../settings/settings-edit.php:315
258
+ msgid "Admin mail content"
259
+ msgstr "Administrator E-Mail Inhalt"
 
260
 
261
+ #: ../settings/settings-edit.php:316
262
+ msgid ""
263
+ "Enter the mail content for admin. This will send whenever new email added and "
264
+ "confirmed into our database."
265
  msgstr ""
266
+ "Geben Sie den Inhalt für Administratormails an. Diese werden immer gesendet, "
267
+ "sobald eine neue E-Mail-Adresse als Empfänger hinzugefügt und bestätigt wurde."
268
 
269
+ #: ../settings/settings-edit.php:323
270
+ msgid "Unsubscribe link"
271
+ msgstr "Abmeldelink"
 
272
 
273
+ #: ../settings/settings-edit.php:324
274
+ msgid "Unsubscribe link. You no need to change this value."
275
+ msgstr "Abmeldelink. Sie müssen diesen Wert nicht ändern."
276
 
277
+ #: ../settings/settings-edit.php:330
278
+ msgid "Unsubscribe text in mail"
279
+ msgstr "Text für Abmeldelink"
280
 
281
+ #: ../settings/settings-edit.php:331
282
  msgid ""
283
+ "Enter the text for unsubscribe link. This text is to add unsubscribe link with "
284
+ "newsletter."
 
285
  msgstr ""
286
+ "Geben Sie den Linktext für den Abmeldelink. Dieser Text wird für den "
287
+ "Abmeldelink in allen Newsletters benötigt."
288
 
289
+ #: ../settings/settings-edit.php:337
290
+ msgid "Text to display after email unsubscribed"
291
+ msgstr "Text der nach einer Abmeldung angezeigt wird"
292
 
293
+ #: ../settings/settings-edit.php:338
294
+ msgid ""
295
+ "This text will display once user clicked unsubscribed link from our newsletter."
296
  msgstr ""
297
+ "Dieser Text wird immer angezeigt, nachdem ein User den Abmeldelink in einem "
298
+ "Newsletter angeklickt hat."
299
 
300
+ #: ../settings/settings-edit.php:345
301
+ msgid "Message 1"
302
+ msgstr "Nachricht 1"
303
 
304
+ #: ../settings/settings-edit.php:346
305
+ msgid "Default message to display if any issue on confirmation link."
306
+ msgstr "Standardnachricht bei Problemen mit dem Bestätigungslink."
307
+
308
+ #: ../settings/settings-edit.php:352
309
+ msgid "Message 2"
310
+ msgstr "Nachricht 2"
311
+
312
+ #: ../settings/settings-edit.php:353
313
+ msgid "Default message to display if any issue on unsubscribe link."
314
+ msgstr "Standardnachricht bei Problemen mit dem Abmeldelink."
315
+
316
+ #: ../settings/settings-edit.php:360
317
+ msgid "Sent report subject"
318
+ msgstr "Sendebericht Betreff"
319
+
320
+ #: ../settings/settings-edit.php:361
321
+ msgid "Mail subject for sent mail report."
322
+ msgstr "E-Mail Betreff für den Sendebericht."
323
+
324
+ #: ../settings/settings-edit.php:367
325
+ msgid "Sent report content"
326
+ msgstr "Sendebericht Inhalt"
327
+
328
+ #: ../settings/settings-edit.php:368
329
+ msgid "Mail content for sent mail report."
330
+ msgstr "E-Mail Inhalt für den Sendebericht."
331
+
332
+ #: ../settings/settings-edit.php:379
333
+ msgid "Save Settings"
334
+ msgstr "Einstellungen speichern"
335
+
336
+ #: ../settings/settings-edit.php:380 ../subscribers/view-subscriber-add.php:154
337
+ #: .. /subscribers/view-subscriber-sync.php:157
338
+ #: ../subscribers/view-subscriber-edit. php:147
339
+ #: ../notification/notification-edit.php:237 ../notification/notification-
340
+ #: add.php:216 ../compose/compose-edit.php:112 ../compose/compose-add.php:99
341
+ #: /cron/cron-add.php:90 ../sendmail/sendmail.php:260 ../roles/roles-add.php:154
342
+ msgid "Cancel"
343
+ msgstr "Abbrechen"
344
 
345
+ #: ../settings/settings-edit.php:381 ../sentmail/sentmail-preview.php:33 ..
346
+ #: /sentmail/deliverreport-show.php:120 ../subscribers/view-subscriber-add.php:
347
+ #: 155 ../subscribers/view-subscriber-sync.php:158
348
+ #: ../subscribers/view-subscriber- export.php:68
349
+ #: ../subscribers/view-subscriber-edit.php:148 ../subscribers/view-
350
+ #: subscriber-import.php:189 ../subscribers/view-subscriber-show.php:448
351
+ #: /notification/notification-edit.php:238
352
+ #: ../notification/notification-add.php:217
353
+ #: ../notification/notification-show.php:152 ../compose/compose-edit.php:113 .
354
+ #: compose/compose-show.php:120 ../compose/compose-preview.php:30
355
+ #: /compose/compose-add.php:100 ../cron/cron-add.php:91
356
+ #: ../sendmail/sendmail.php:261 ../roles/roles-add.php:155
357
+ msgid "Help"
358
+ msgstr "Hilfe"
359
+
360
+ #: ../job/es-optin.php:64 ../job/es-optin.php:79 ../job/es-unsubscribe.php:60 ..
361
+ #: /job/es-unsubscribe.php:70
362
  msgid ""
363
+ "Oops.. We are getting some technical error. Please try again or contact admin."
 
364
  msgstr ""
365
  "Hoppla! Wir hatten gerade ein technisches Problem. Bitte versuchen Sie es "
366
  "nochmals oder kontaktieren Sie den Administrator."
369
  msgid "This email address has already been confirmed."
370
  msgstr "Diese E-Mail-Adresse wurde bereits bestätigt."
371
 
372
+ #: ../sentmail/sentmail-show.php:33 ../subscribers/view-subscriber-show.php:60 ..
373
+ #: /subscribers/view-subscriber-show.php:104 ../notification/notification-show.
374
+ #: php:31 ../compose/compose-show.php:45
375
+ msgid "Selected record was successfully deleted."
376
+ msgstr "Der ausgewählte Eintrag wurde erfolgreich gelöscht."
 
 
 
 
 
 
 
377
 
378
+ #: ../sentmail/sentmail-show.php:42
379
+ msgid "Successfully deleted all reports except latest 10."
380
+ msgstr "Alle außer den letzten 10 Berichten wurden erfolgreich gelöscht."
 
 
 
 
 
 
381
 
382
+ #: ../sentmail/sentmail-show.php:53 ../classes/es-register.php:157 ../classes/es-
383
+ #: register.php:158
384
+ msgid "Sent Mails"
385
+ msgstr "Gesendete E-Mails"
 
 
386
 
387
+ #: ../sentmail/sentmail-show.php:71 ../sentmail/sentmail-show.php:84
388
+ msgid "View Reports"
389
+ msgstr "Berichte anzeigen"
390
 
391
+ #: ../sentmail/sentmail-show.php:72 ../sentmail/sentmail-show.php:85 ..
392
+ #: /compose/compose-show.php:100
393
+ msgid "Preview"
394
+ msgstr "Vorschau"
395
 
396
+ #: ../sentmail/sentmail-show.php:73 ../sentmail/sentmail-show.php:86
397
+ #, fuzzy
398
+ msgid "Source"
399
+ msgstr "Versand Quelle"
 
 
400
 
401
+ #: ../sentmail/sentmail-show.php:74 ../sentmail/sentmail-show.php:87 ..
402
+ #: /sentmail/deliverreport-show.php:40 ../sentmail/deliverreport-show.php:52
403
+ #: /subscribers/view-subscriber-add.php:121 ../subscribers/view-subscriber-edit.
404
+ #: php:105 ../subscribers/view-subscriber-import.php:155 ../subscribers/view-
405
+ #: subscriber-show.php:327 ../subscribers/view-subscriber-show.php:340
406
+ #: /compose/compose-edit.php:102 ../compose/compose-show.php:70
407
+ #: /compose/compose-show.php:78 ../compose/compose-add.php:90
408
+ msgid "Status"
409
+ msgstr "Status"
 
410
 
411
+ #: ../sentmail/sentmail-show.php:75 ../sentmail/sentmail-show.php:88 ..
412
+ #: /sentmail/deliverreport-show.php:41 ../sentmail/deliverreport-show.php:53
413
+ #: /compose/compose-show.php:71 ../compose/compose-show.php:79
414
+ msgid "Type"
415
+ msgstr "Typ"
416
 
417
+ #: ../sentmail/sentmail-show.php:76 ../sentmail/sentmail-show.php:89
418
+ #, fuzzy
419
+ msgid "Start Date"
420
+ msgstr "Versand Startdatum"
421
 
422
+ #: ../sentmail/sentmail-show.php:77 ../sentmail/sentmail-show.php:90
423
+ #, fuzzy
424
+ msgid "End Date"
425
+ msgstr "Versand Enddatum"
426
 
427
+ #: ../sentmail/sentmail-show.php:78 ../sentmail/sentmail-show.php:91
 
428
  #, fuzzy
429
+ msgid "Total"
430
+ msgstr "E-Mails gesamt"
431
 
432
+ #: ../sentmail/sentmail-show.php:79 ../sentmail/sentmail-show.php:92 ..
433
+ #: /subscribers/view-subscriber-export.php:30 ../subscribers/view-subscriber-
434
+ #: export.php:38 ../subscribers/view-subscriber-show.php:330 ../subscribers/view-
435
+ #: subscriber-show.php:343 ../compose/compose-show.php:72
436
+ #: ../compose/compose-show. php:80
437
+ msgid "Action"
438
+ msgstr "Aktion"
439
 
440
+ #: ../sentmail/sentmail-show.php:131 ../sentmail/deliverreport-show.php:84 ..
441
+ #: /notification/notification-show.php:141 ../compose/compose-show.php:109
442
+ msgid "No records available."
443
+ msgstr "Keine Einträge vorhanden."
444
 
445
+ #: ../sentmail/sentmail-show.php:143 ../sentmail/deliverreport-show.php:96
446
+ msgid " &lt;&lt; "
447
+ msgstr "&lt;&lt;"
448
 
449
+ #: ../sentmail/sentmail-show.php:144 ../sentmail/deliverreport-show.php:97
450
+ msgid " &gt;&gt; "
451
+ msgstr "&gt;&gt;"
 
452
 
453
+ #: ../sentmail/sentmail-show.php:167 ../sentmail/sentmail-show.php:169
454
+ msgid "Optimize Table"
455
+ msgstr "Tabelle optimieren"
 
456
 
457
+ #: ../sentmail/sentmail-show.php:179
458
+ msgid ""
459
+ "Note: Please click <strong>Optimize Table</strong> button to delete all "
460
+ "reports except latest 10."
461
  msgstr ""
462
+ "Achtung: Bitte klicken Sie auf <strong>Tabelle optimieren</strong>, um alle "
463
+ "Berichte außer den letzten 10 zu löschen."
464
 
465
+ #: ../sentmail/sentmail-preview.php:19 ../compose/compose-preview.php:16
466
+ msgid "Preview Mail"
467
+ msgstr "Vorschau E-Mail"
468
 
469
+ #: ../sentmail/sentmail-preview.php:32 ../sentmail/deliverreport-show.php:119 ..
470
+ #: /subscribers/view-subscriber-export.php:67 ../subscribers/view-subscriber-
471
+ #: import.php:188 ../compose/compose-preview.php:28
472
+ msgid "Back"
473
+ msgstr "Zurück"
474
 
475
+ #: ../sentmail/deliverreport-show.php:11
476
+ msgid "Oops.. Unexpected error occurred. Please try again."
477
+ msgstr "Hoppla, ein unerwarteter Fehler. Bitte versuchen Sie es nochmals!"
 
 
478
 
479
+ #: ../sentmail/deliverreport-show.php:19
480
+ msgid "Delivery Report"
481
+ msgstr "Zustellungsbericht"
 
482
 
483
+ #: ../sentmail/deliverreport-show.php:37 ../sentmail/deliverreport-show.php:49 ..
484
+ #: /subscribers/view-subscriber-export.php:27 ../subscribers/view-subscriber-
485
+ #: export.php:35 ../subscribers/view-subscriber-show.php:324 ../subscribers/view-
486
+ #: subscriber-show.php:337
487
+ msgid "Sno"
488
+ msgstr "Sno"
489
 
490
+ #: ../sentmail/deliverreport-show.php:38 ../sentmail/deliverreport-show.php:50
491
+ msgid "Email"
492
+ msgstr "E-Mail"
 
493
 
494
+ #: ../sentmail/deliverreport-show.php:39 ../sentmail/deliverreport-show.php:51
495
+ msgid "Sent Date"
496
+ msgstr "Versanddatum"
 
 
497
 
498
+ #: ../sentmail/deliverreport-show.php:42 ../sentmail/deliverreport-show.php:54
499
+ msgid "Viewed Status"
500
+ msgstr "Gesehen Status"
501
 
502
+ #: ../sentmail/deliverreport-show.php:43 ../sentmail/deliverreport-show.php:55
503
+ msgid "Viewed Date"
504
+ msgstr "Gesehen Datum"
 
 
505
 
506
+ #: ../sentmail/deliverreport-show.php:44 ../sentmail/deliverreport-show.php:56 ..
507
+ #: /subscribers/view-subscriber-show.php:329 ../subscribers/view-subscriber-show.
508
+ #: php:342
509
+ msgid "Database ID"
510
+ msgstr "Datenbank-ID"
511
 
512
+ #: ../classes/es-loadwidget.php:24 ../classes/es-register.php:374 ..
513
+ #: /subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-show.
514
+ #: php:339
515
+ msgid "Name"
516
+ msgstr "Name"
517
 
518
+ #: ../classes/es-loadwidget.php:29 ../classes/es-register.php:379
519
+ msgid "Email *"
520
+ msgstr "E-Mail-Adresse*"
 
521
 
522
+ #: ../classes/es-loadwidget.php:34 ../classes/es-register.php:384
523
+ msgid "Subscribe"
524
+ msgstr "Abonnieren"
 
 
525
 
526
+ #: ../classes/es-register.php:133 ../classes/es-register.php:134
527
+ msgid "Email Subscriber"
528
+ msgstr "E-Mail Empfänger"
 
529
 
530
+ #: ../classes/es-register.php:136 ../classes/es-register.php:137
531
+ msgid "Subscribers"
532
+ msgstr "Empfänger"
 
 
533
 
534
+ #: ../classes/es-register.php:139 ../classes/es-register.php:140
535
+ msgid "Compose"
536
+ msgstr "Erstellen"
 
 
 
 
 
 
 
 
 
 
 
 
537
 
538
+ #: ../classes/es-register.php:142 ../classes/es-register.php:143 ..
539
+ #: /notification/notification-show.php:44
540
+ msgid "Notification"
541
+ msgstr "Benachrichtigung"
542
 
543
+ #: ../classes/es-register.php:145 ../classes/es-register.php:146 ..
544
+ #: /sendmail/sendmail.php:94 ../sendmail/sendmail.php:256 ../sendmail/sendmail.
545
+ #: php:258
546
+ msgid "Send Email"
547
+ msgstr "E-Mail senden"
548
 
549
+ #: ../classes/es-register.php:148
550
+ msgid "Cron"
 
 
551
  msgstr ""
 
 
552
 
553
+ #: ../classes/es-register.php:149
 
 
 
 
 
554
  #, fuzzy
555
+ msgid "Cron Mail"
556
+ msgstr "E-Mail erstellen"
 
 
 
 
 
 
 
 
 
 
 
 
557
 
558
+ #: ../classes/es-register.php:154 ../classes/es-register.php:155
559
+ msgid "Roles"
560
+ msgstr ""
561
 
562
+ #: ../classes/es-register.php:160 ../classes/es-register.php:161
563
+ msgid "Help & Info"
564
+ msgstr "Hilfe & Info"
565
 
566
+ #: ../classes/es-register.php:173
567
+ msgctxt "view-subscriber-enhanced-select"
568
+ msgid "Please enter subscriber email address."
569
+ msgstr ""
570
 
571
+ #: ../classes/es-register.php:174
572
+ msgctxt "view-subscriber-enhanced-select"
573
+ msgid "Please select subscriber email status."
574
+ msgstr ""
575
 
576
+ #: ../classes/es-register.php:175
577
+ msgctxt "view-subscriber-enhanced-select"
578
+ msgid "Please select or create group for this subscriber."
579
+ msgstr ""
 
 
 
580
 
581
+ #: ../classes/es-register.php:176
582
+ msgctxt "view-subscriber-enhanced-select"
583
+ msgid "Do you want to delete this record?"
584
+ msgstr ""
585
 
586
+ #: ../classes/es-register.php:177
587
+ msgctxt "view-subscriber-enhanced-select"
588
+ msgid "Please select the bulk action."
589
+ msgstr ""
590
 
591
+ #: ../classes/es-register.php:178
592
+ msgctxt "view-subscriber-enhanced-select"
593
+ msgid "Do you want to delete selected record(s)?"
594
+ msgstr ""
595
 
596
+ #: ../classes/es-register.php:179
597
+ msgctxt "view-subscriber-enhanced-select"
598
+ msgid "Are you sure you want to delete?"
599
+ msgstr ""
600
 
601
+ #: ../classes/es-register.php:180
602
+ msgctxt "view-subscriber-enhanced-select"
603
+ msgid ""
604
+ "Do you want to resend confirmation email? \\nAlso please note, this will "
605
+ "update subscriber current status to 'Unconfirmed'."
606
+ msgstr ""
607
 
608
+ #: ../classes/es-register.php:181
609
+ msgctxt "view-subscriber-enhanced-select"
610
+ msgid "Please select new subscriber group."
611
+ msgstr ""
612
 
613
+ #: ../classes/es-register.php:182
614
+ msgctxt "view-subscriber-enhanced-select"
615
+ msgid "Do you want to update subscribers group?"
616
+ msgstr ""
617
 
618
+ #: ../classes/es-register.php:183
619
+ msgctxt "view-subscriber-enhanced-select"
620
+ msgid "Do you want to export the emails?"
621
+ msgstr ""
622
 
623
+ #: ../classes/es-register.php:184
624
+ msgctxt "view-subscriber-enhanced-select"
625
+ msgid ""
626
+ "Please select only csv file. Please check official website for csv structure.."
627
+ msgstr ""
628
 
629
+ #: ../classes/es-register.php:192
630
+ msgctxt "compose-enhanced-select"
631
+ msgid "Please enter name for configuration."
632
+ msgstr ""
633
 
634
+ #: ../classes/es-register.php:193
635
+ msgctxt "compose-enhanced-select"
636
+ msgid "Please select template for this configuration."
637
+ msgstr ""
638
 
639
+ #: ../classes/es-register.php:194
640
+ msgctxt "compose-enhanced-select"
641
+ msgid "Do you want to delete this record?"
642
+ msgstr ""
643
 
644
+ #: ../classes/es-register.php:202
645
+ msgctxt "notification-enhanced-select"
646
+ msgid "Please select subscribers group."
647
+ msgstr ""
648
 
649
+ #: ../classes/es-register.php:203
650
+ msgctxt "notification-enhanced-select"
651
+ msgid "Please select notification mail subject. Use compose menu to create new."
652
+ msgstr ""
653
 
654
+ #: ../classes/es-register.php:204
655
+ msgctxt "notification-enhanced-select"
656
+ msgid "Please select notification status."
 
657
  msgstr ""
 
 
658
 
659
+ #: ../classes/es-register.php:205
660
+ msgctxt "notification-enhanced-select"
661
+ msgid "Do you want to delete this record?"
662
+ msgstr ""
663
 
664
+ #: ../classes/es-register.php:213
665
+ msgctxt "sendmail-enhanced-select"
666
+ msgid "Please select your mail subject."
667
  msgstr ""
668
 
669
+ #: ../classes/es-register.php:214
670
+ msgctxt "sendmail-enhanced-select"
671
+ msgid "Please select subscriber email status."
672
  msgstr ""
673
 
674
+ #: ../classes/es-register.php:215
675
+ msgctxt "sendmail-enhanced-select"
676
+ msgid "Are you sure you want to send email to all selected email address?"
677
+ msgstr ""
678
 
679
+ #: ../classes/es-register.php:227
680
+ msgctxt "sentmail-enhanced-select"
681
+ msgid "Do you want to delete this record?"
682
  msgstr ""
 
683
 
684
+ #: ../classes/es-register.php:228
685
+ msgctxt "sentmail-enhanced-select"
686
+ msgid "Do you want to delete all records except latest 10?"
687
+ msgstr ""
688
 
689
+ #: ../classes/es-register.php:236
690
+ msgctxt "roles-enhanced-select"
691
+ msgid "Please enter subscriber email address."
692
+ msgstr ""
693
 
694
+ #: ../classes/es-register.php:237
695
+ msgctxt "roles-enhanced-select"
696
+ msgid "Please select subscriber email status."
697
+ msgstr ""
698
 
699
+ #: ../classes/es-register.php:238
700
+ msgctxt "roles-enhanced-select"
701
+ msgid "Please select or create group for this subscriber."
 
702
  msgstr ""
 
 
703
 
704
+ #: ../classes/es-register.php:246
705
+ msgctxt "cron-enhanced-select"
706
+ msgid "Please select enter number of mails you want to send per hour/trigger."
 
707
  msgstr ""
 
 
 
708
 
709
+ #: ../classes/es-register.php:247
710
+ msgctxt "cron-enhanced-select"
711
+ msgid "Please enter the mail count, only number."
712
+ msgstr ""
713
 
714
+ #: ../classes/es-register.php:259
715
+ msgctxt "widget-enhanced-select"
716
+ msgid "Please enter email address."
717
+ msgstr "Bitte eine E-Mail Adresse angeben."
718
+
719
+ #: ../classes/es-register.php:260
720
+ msgctxt "widget-enhanced-select"
721
+ msgid "Please provide a valid email address."
722
+ msgstr "Bitte eine gültige E-Mail Adresse angeben."
723
+
724
+ #: ../classes/es-register.php:261
725
+ msgctxt "widget-enhanced-select"
726
+ msgid "loading..."
727
+ msgstr "Laden..."
728
+
729
+ #: ../classes/es-register.php:262
730
+ msgctxt "widget-enhanced-select"
731
+ msgid "Cannot create XMLHTTP instance"
732
+ msgstr "Kann nicht XMLHTTP Instanz erstellen"
733
+
734
+ #: ../classes/es-register.php:263
735
+ msgctxt "widget-enhanced-select"
736
+ msgid "Subscribed successfully."
737
+ msgstr "Erfolgreich Abonniert."
738
+
739
+ #: ../classes/es-register.php:264
740
+ msgctxt "widget-enhanced-select"
741
  msgid ""
742
+ "You have successfully subscribed to the newsletter. You will receive a "
743
+ "confirmation email in few minutes. Please follow the link in it to confirm "
744
+ "your subscription. If the email takes more than 15 minutes to appear in your "
745
+ "mailbox, please check your spam folder."
746
  msgstr ""
747
+ "Du hast erfolgreich unseren Blog abonniert. Damit wir dich regelmäßig über "
748
+ "neue Beiträge informieren können, bestätige bitte noch kurz deine E-Mail-"
749
+ "Adresse innerhalb der gesendeten E-Mail."
750
+
751
+ #: ../classes/es-register.php:265
752
+ msgctxt "widget-enhanced-select"
753
+ msgid "Email already exist."
754
+ msgstr "E-Mail gibt es bereits."
755
+
756
+ #: ../classes/es-register.php:266
757
+ msgctxt "widget-enhanced-select"
758
+ msgid "Oops.. Unexpected error occurred."
759
+ msgstr "Oops .. unerwarteter Fehler aufgetreten."
760
+
761
+ #: ../classes/es-register.php:267
762
+ msgctxt "widget-enhanced-select"
763
+ msgid "Invalid email address."
764
+ msgstr "Ungültige Email Adresse."
765
+
766
+ #: ../classes/es-register.php:268
767
+ msgctxt "widget-enhanced-select"
768
+ msgid "Please try after some time."
769
+ msgstr "Bitte versuchen Sie es nach einiger Zeit."
770
+
771
+ #: ../classes/es-register.php:269
772
+ msgctxt "widget-enhanced-select"
773
+ msgid "There was a problem with the request."
774
+ msgstr "Es gab ein Problem mit der Bitte."
775
+
776
+ #: ../classes/es-register.php:276
777
+ msgctxt "widget-page-enhanced-select"
778
+ msgid "Please enter email address."
779
+ msgstr "Bitte eine E-Mail Adresse angeben."
780
+
781
+ #: ../classes/es-register.php:277
782
+ msgctxt "widget-page-enhanced-select"
783
+ msgid "Please provide a valid email address."
784
+ msgstr "Bitte eine gültige E-Mail Adresse angeben."
785
+
786
+ #: ../classes/es-register.php:278
787
+ msgctxt "widget-page-enhanced-select"
788
+ msgid "loading..."
789
+ msgstr "Laden..."
790
+
791
+ #: ../classes/es-register.php:279
792
+ msgctxt "widget-page-enhanced-select"
793
+ msgid "Cannot create XMLHTTP instance"
794
+ msgstr "Kann nicht XMLHTTP Instanz erstellen"
795
+
796
+ #: ../classes/es-register.php:280
797
+ msgctxt "widget-page-enhanced-select"
798
+ msgid "Subscribed successfully."
799
+ msgstr "erfolgreich abonniert."
800
+
801
+ #: ../classes/es-register.php:281
802
+ msgctxt "widget-page-enhanced-select"
803
  msgid ""
804
+ "You have successfully subscribed to the newsletter. You will receive a "
805
+ "confirmation email in few minutes. Please follow the link in it to confirm "
806
+ "your subscription. If the email takes more than 15 minutes to appear in your "
807
+ "mailbox, please check your spam folder."
808
  msgstr ""
809
+ "Du hast erfolgreich unseren Blog abonniert. Damit wir dich regelmäßig über "
810
+ "neue Beiträge informieren können, bestätige bitte noch kurz deine E-Mail-"
811
+ "Adresse innerhalb der gesendeten E-Mail."
812
+
813
+ #: ../classes/es-register.php:282
814
+ msgctxt "widget-page-enhanced-select"
815
+ msgid "Email already exist."
816
+ msgstr "E-Mail gibt es bereits."
817
+
818
+ #: ../classes/es-register.php:283
819
+ msgctxt "widget-page-enhanced-select"
820
+ msgid "Oops.. Unexpected error occurred."
821
+ msgstr "Oops .. unerwarteter Fehler aufgetreten."
822
+
823
+ #: ../classes/es-register.php:284
824
+ msgctxt "widget-page-enhanced-select"
825
+ msgid "Invalid email address."
826
+ msgstr "Ungültige Email Adresse."
827
+
828
+ #: ../classes/es-register.php:285
829
+ msgctxt "widget-page-enhanced-select"
830
+ msgid "Please try after some time."
831
+ msgstr "Bitte versuchen Sie es nach einiger Zeit."
832
+
833
+ #: ../classes/es-register.php:286
834
+ msgctxt "widget-page-enhanced-select"
835
+ msgid "There was a problem with the request."
836
+ msgstr "Es gab ein Problem mit der Bitte."
837
+
838
+ #: ../classes/es-register.php:420
839
+ msgid "Widget Title"
840
+ msgstr "Widget Titel"
841
 
842
+ #: ../classes/es-register.php:424
843
+ msgid "Display Name Field"
844
+ msgstr "Eingaefeld für Namen anzeigen"
845
 
846
+ #: ../classes/es-register.php:431
847
+ msgid "Short Description"
848
+ msgstr "Kurzbeschreibung"
 
 
 
 
849
 
850
+ #: ../classes/es-register.php:433
851
+ msgid "Short description about your subscription form."
852
+ msgstr "Kurzbeschreibung des Anmeldeformulars"
853
 
854
+ #: ../classes/es-register.php:436
855
+ msgid "Subscriber Group"
856
+ msgstr "Empfängergruppe"
857
 
858
+ #: ../subscribers/view-subscriber-add.php:28 ../subscribers/view-subscriber-add.
859
+ #: php:119 ../subscribers/view-subscriber-edit.php:43 ../subscribers/view-
860
+ #: subscriber-edit.php:103
861
+ msgid "Please enter subscriber email address."
862
+ msgstr "Bitte Empfänger E-Mail-Adresse eingeben."
863
+
864
+ #: ../subscribers/view-subscriber-add.php:45
865
+ msgid "Please select or create your group for this email."
866
+ msgstr "Bitte Empfängergruppe für diese E-Mail-Adresse auswählen oder erstellen."
867
 
868
+ #: ../subscribers/view-subscriber-add.php:54 ../subscribers/view-subscriber-
869
+ #: import.php:45
870
  msgid ""
871
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
872
+ "the group name."
873
  msgstr ""
 
 
874
 
875
+ #: ../subscribers/view-subscriber-add.php:66
876
+ msgid "Email was successfully inserted."
877
+ msgstr "E-mail-Adresse erfolgreich hinzugefügt."
878
 
879
+ #: ../subscribers/view-subscriber-add.php:70
880
+ msgid "Email already exist in our list."
881
+ msgstr "Diese E-Mail-Adresse ist bereits in der Liste vorhanden."
 
 
882
 
883
+ #: ../subscribers/view-subscriber-add.php:75
884
+ msgid "Email is invalid."
885
+ msgstr "Diese E-Mail-Adresse ist ungültig."
886
 
887
+ #: ../subscribers/view-subscriber-add.php:111
888
+ msgid "Add email"
889
+ msgstr "E-Mail-Adresse hinzufügen"
 
 
 
 
890
 
891
+ #: ../subscribers/view-subscriber-add.php:113
892
+ #: ../subscribers/view-subscriber-edit. php:97
893
+ msgid "Enter full name"
894
+ msgstr "Vollständigen Namen eingeben"
895
 
896
+ #: ../subscribers/view-subscriber-add.php:115
897
+ #: ../subscribers/view-subscriber-edit. php:99
898
+ msgid "Please enter subscriber full name."
899
+ msgstr "Bitte geben Sie den vollständigen Namen des Empfängers ein."
900
+
901
+ #: ../subscribers/view-subscriber-add.php:117
902
+ #: ../subscribers/view-subscriber-edit. php:101
903
+ msgid "Enter email address."
904
+ msgstr "E-Mail-Adresse eingeben."
905
+
906
+ #: ../subscribers/view-subscriber-add.php:128
907
+ #: ../subscribers/view-subscriber-edit. php:112
908
+ #: ../subscribers/view-subscriber-import.php:162
909
+ msgid "Please select subscriber email status."
910
+ msgstr "Bitte wählen Sie den E-Mail Status des Empfängers aus."
911
+
912
+ #: ../subscribers/view-subscriber-add.php:130 ../subscribers/view-subscriber-
913
+ #: import.php:164
914
+ msgid "Select (or) Create Group"
915
+ msgstr "Gruppe auswählen oder erstellen"
916
+
917
+ #: ../subscribers/view-subscriber-add.php:132
918
+ #: ../subscribers/view-subscriber-sync. php:99
919
+ #: ../subscribers/view-subscriber-sync.php:130 ../subscribers/view-
920
+ #: subscriber-edit.php:116 ../subscribers/view-subscriber-import.php:166 ..
921
+ #: /notification/notification-edit.php:122
922
+ #: ../notification/notification-add.php:105
923
+ #: ../notification/notification-add.php:123 ../sendmail/sendmail.php:107
924
+ #: /sendmail/sendmail.php:153
925
+ msgid "Select"
926
+ msgstr "Auswählen"
927
+
928
+ #: ../subscribers/view-subscriber-add.php:148
929
+ #: ../subscribers/view-subscriber-edit. php:140
930
+ #: ../subscribers/view-subscriber-import.php:182
931
+ msgid "Please select or create group for this subscriber."
932
  msgstr ""
933
+ "Bitte wählen Sie für diesen Empfänger eine Gruppe aus oder legen Sie eine neue "
934
+ "an."
935
+
936
+ #: ../subscribers/view-subscriber-add.php:153
937
+ #: ../subscribers/view-subscriber-sync. php:156
938
+ #: ../subscribers/view-subscriber-edit.php:146 ..
939
+ #: /notification/notification-edit.php:236
940
+ #: ../notification/notification-add.php:215 ../compose/compose-edit.php:111
941
+ #: ../compose/compose-add.php:98 ../cron/cron- add.php:89
942
+ #: ../roles/roles-add.php:153
943
+ msgid "Submit"
944
+ msgstr "Senden"
945
 
946
+ #: ../subscribers/view-subscriber-sync.php:33
947
+ #: ../subscribers/view-subscriber-sync. php:119
948
+ #, fuzzy
949
+ msgid "Please select default group to newly registered user."
950
+ msgstr ""
951
+ "Bitte wählen Sie für diesen Empfänger eine Gruppe aus oder legen Sie eine neue "
952
+ "an."
953
 
954
+ #: ../subscribers/view-subscriber-sync.php:39
955
+ #: ../subscribers/view-subscriber-sync. php:150
956
+ #, fuzzy
957
+ msgid "Please select default group to newly commented user."
958
  msgstr ""
959
+ "Bitte wählen Sie für diesen Empfänger eine Gruppe aus oder legen Sie eine neue "
960
+ "an."
961
 
962
+ #: ../subscribers/view-subscriber-sync.php:56
963
+ #, fuzzy
964
+ msgid "Sync email successfully updated."
965
+ msgstr "E-Mail-Adresse erfolgreich upgedatet."
966
 
967
+ #: ../subscribers/view-subscriber-sync.php:88
968
+ #, fuzzy
969
+ msgid "Sync email"
970
+ msgstr "E-Mail senden"
971
+
972
+ #: ../subscribers/view-subscriber-sync.php:90
973
+ msgid "Sync newly registered user"
974
+ msgstr ""
975
+
976
+ #: ../subscribers/view-subscriber-sync.php:95
977
  msgid ""
978
+ "Automatically add a newly registered user email address to subscribers list."
 
979
  msgstr ""
 
 
980
 
981
+ #: ../subscribers/view-subscriber-sync.php:97
982
+ #: ../subscribers/view-subscriber-sync. php:128
983
+ #, fuzzy
984
+ msgid "Select default group"
985
+ msgstr "Gruppe auswählen"
986
+
987
+ #: ../subscribers/view-subscriber-sync.php:121
988
+ msgid "Sync newly commented user"
989
+ msgstr ""
990
 
991
+ #: ../subscribers/view-subscriber-sync.php:126
992
  msgid ""
993
+ "Automatically add a newly commented (who posted comments) user email address "
994
+ "to subscribers list."
995
  msgstr ""
 
 
 
996
 
997
+ #: ../subscribers/view-subscriber-export.php:22
998
+ msgid "Export email address in csv format"
999
+ msgstr "E-Mail-Adressen im CSV-Format exportieren"
1000
 
1001
+ #: ../subscribers/view-subscriber-export.php:28 ../subscribers/view-subscriber-
1002
+ #: export.php:36
1003
+ msgid "Export option"
1004
+ msgstr "Exportoption"
1005
+
1006
+ #: ../subscribers/view-subscriber-export.php:29 ../subscribers/view-subscriber-
1007
+ #: export.php:37
1008
+ msgid "Total email"
1009
+ msgstr "E-Mails gesamt"
1010
+
1011
+ #: ../subscribers/view-subscriber-export.php:44
1012
+ msgid "Subscriber email address"
1013
+ msgstr "Empfänger E-Mail-Adresse"
1014
+
1015
+ #: ../subscribers/view-subscriber-export.php:46 ../subscribers/view-subscriber-
1016
+ #: export.php:52 ../subscribers/view-subscriber-export.php:58
1017
+ msgid "Click to export csv"
1018
+ msgstr "Klicken für den CSV-Export"
1019
+
1020
+ #: ../subscribers/view-subscriber-export.php:50
1021
+ msgid "Registered email address"
1022
+ msgstr "Registrierte E-Mail-Adresse"
1023
+
1024
+ #: ../subscribers/view-subscriber-export.php:56
1025
+ msgid "Comments author email address"
1026
+ msgstr "E-Mail-Adresse des Kommentar-Autors"
1027
+
1028
+ #: ../subscribers/view-subscriber-export.php:65
1029
+ msgid "Add Email"
1030
+ msgstr "E-Mail-Adresse hinzufügen"
1031
+
1032
+ #: ../subscribers/view-subscriber-export.php:66 ../subscribers/view-subscriber-
1033
+ #: show.php:445
1034
+ msgid "Import Email"
1035
+ msgstr "E-Mail-Adressen importieren"
1036
+
1037
+ #: ../subscribers/view-subscriber-edit.php:54
1038
+ msgid "Error: Special characters are not allowed in the group name."
1039
  msgstr ""
 
 
 
1040
 
1041
+ #: ../subscribers/view-subscriber-edit.php:66
1042
+ msgid "Email was successfully updated."
1043
+ msgstr "E-Mail-Adresse erfolgreich upgedatet."
1044
 
1045
+ #: ../subscribers/view-subscriber-edit.php:70
1046
+ #, fuzzy
1047
+ msgid "Email already exist for this group."
1048
+ msgstr "Diese E-Mail-Adresse ist bereits in der Liste vorhanden."
1049
 
1050
+ #: ../subscribers/view-subscriber-edit.php:95
1051
+ msgid "Edit email"
1052
+ msgstr "E-Mail-Adresse bearbeiten"
1053
+
1054
+ #: ../subscribers/view-subscriber-edit.php:114 ../subscribers/view-subscriber-
1055
+ #: show.php:328 ../subscribers/view-subscriber-show.php:341
1056
+ msgid "Group"
1057
+ msgstr "Gruppe"
1058
 
1059
+ #: ../subscribers/view-subscriber-import.php:103
1060
+ msgid "Email(s) was successfully imported."
1061
+ msgstr "E-Mail-Adressen erfolgreich importiert."
1062
+
1063
+ #: ../subscribers/view-subscriber-import.php:104
1064
+ msgid "Email(s) are already in our database."
1065
+ msgstr "Die E-Mail-Adressen befinden sich bereits in unserer Datenbank."
1066
+
1067
+ #: ../subscribers/view-subscriber-import.php:105
1068
+ msgid "Email(s) are invalid."
1069
+ msgstr "E-Mail-Adressen ungültig."
1070
+
1071
+ #: ../subscribers/view-subscriber-import.php:115
1072
+ msgid "File upload failed or no data available in the csv file."
1073
+ msgstr "Dateiupload fehlgeschlagen oder keine Daten in der CSV-Datei vorhanden."
1074
+
1075
+ #: ../subscribers/view-subscriber-import.php:149
1076
+ msgid "Upload email"
1077
+ msgstr "E-Mail-Adressen uploaden"
1078
+
1079
+ #: ../subscribers/view-subscriber-import.php:150
1080
+ msgid "Select csv file"
1081
+ msgstr "CSV-Datei auswählen"
1082
+
1083
+ #: ../subscribers/view-subscriber-import.php:152
1084
  msgid ""
1085
+ "Please select the input csv file. Please check official website for csv "
1086
+ "structure."
1087
  msgstr ""
1088
+ "Bitte wählen Sie eine CSV-Datei. Informationen zur CSV-Struktur finden Sie auf "
1089
+ "unserer offiziellen Website."
1090
 
1091
+ #: ../subscribers/view-subscriber-import.php:187
1092
+ msgid "Upload CSV"
1093
+ msgstr "CSV uploaden"
1094
+
1095
+ #: ../subscribers/view-subscriber-show.php:11 ../compose/compose-show.php:10 ..
1096
+ #: /sendmail/sendmail.php:11
1097
+ #, fuzzy
1098
+ msgid "Click Here"
1099
+ msgstr "Hier klicken"
1100
 
1101
+ #: ../subscribers/view-subscriber-show.php:72
1102
+ #: ../subscribers/view-subscriber-show. php:125
1103
  msgid ""
1104
+ "To send confirmation mail, Please change the Opt-in option to Double Opt In."
 
1105
  msgstr ""
1106
+ "Bitte ändern Sie die Opt-In Option auf Double Opt-In, um Bestätigungsmails zu "
1107
+ "senden."
1108
 
1109
+ #: ../subscribers/view-subscriber-show.php:81
1110
+ msgid "Confirmation email resent successfully."
1111
+ msgstr "Bestätigungsmail erfolgreich gesendet."
1112
 
1113
+ #: ../subscribers/view-subscriber-show.php:110 ../subscribers/view-subscriber-
1114
+ #: show.php:156 ../subscribers/view-subscriber-show.php:201
1115
+ msgid "Oops, No record was selected."
1116
+ msgstr "Hoppla, kein Eintrag ausgewählt."
1117
 
1118
+ #: ../subscribers/view-subscriber-show.php:150
1119
+ msgid "Confirmation email(s) resent successfully."
1120
+ msgstr "Bestätigungsmail(s) erfolgreich gesendet."
1121
 
1122
+ #: ../subscribers/view-subscriber-show.php:186
1123
+ msgid "Selected subscribers group was successfully updated."
1124
+ msgstr "Die ausgewählte Empfängergruppe wurde erfolgreich upgedatet."
1125
 
1126
+ #: ../subscribers/view-subscriber-show.php:192
1127
+ msgid "Oops, New group name was not selected."
1128
+ msgstr "Hoppla, es wurde kein Name für die neue Gruppe ausgewählt."
1129
 
1130
+ #: ../subscribers/view-subscriber-show.php:232
1131
+ msgid "View subscriber"
1132
+ msgstr "Empfänger anzeigen"
1133
 
1134
+ #: ../subscribers/view-subscriber-show.php:233 ../subscribers/view-subscriber-
1135
+ #: show.php:444 ../notification/notification-show.php:45 ..
1136
+ #: /notification/notification-show.php:151 ../compose/compose-show.php:59
1137
+ #: /compose/compose-show.php:119
1138
+ msgid "Add New"
1139
+ msgstr "Hinzufügen"
1140
 
1141
+ #: ../subscribers/view-subscriber-show.php:280
1142
+ #, fuzzy
1143
+ msgid "All Groups"
1144
+ msgstr "Gruppe"
1145
 
1146
+ #: ../subscribers/view-subscriber-show.php:299
1147
+ #, fuzzy
1148
+ msgid "All Status"
1149
+ msgstr "Status"
1150
 
1151
+ #: ../subscribers/view-subscriber-show.php:300
1152
+ msgid "Confirmed"
1153
+ msgstr "Bestätigt"
 
 
 
1154
 
1155
+ #: ../subscribers/view-subscriber-show.php:301
1156
+ msgid "Unconfirmed"
1157
+ msgstr "Unbestätigt"
1158
+
1159
+ #: ../subscribers/view-subscriber-show.php:302
1160
+ msgid "Unsubscribed"
1161
+ msgstr "Abgemeldet"
1162
+
1163
+ #: ../subscribers/view-subscriber-show.php:303
1164
+ msgid "Single Opt In"
1165
+ msgstr "Single Opt-In"
1166
+
1167
+ #: ../subscribers/view-subscriber-show.php:325 ../subscribers/view-subscriber-
1168
+ #: show.php:338
1169
+ msgid "Email address"
1170
+ msgstr "E-Mail-Adresse"
1171
+
1172
+ #: ../subscribers/view-subscriber-show.php:374 ../notification/notification-show.
1173
+ #: php:90 ../compose/compose-show.php:98 ../compose/compose-preview.php:29
1174
+ msgid "Edit"
1175
+ msgstr "Bearbeiten"
1176
+
1177
+ #: ../subscribers/view-subscriber-show.php:377 ../subscribers/view-subscriber-
1178
+ #: show.php:422 ../notification/notification-show.php:93 ../compose/compose-show.
1179
+ #: php:99
1180
+ msgid "Delete"
1181
+ msgstr "Löschen"
1182
+
1183
+ #: ../subscribers/view-subscriber-show.php:385 ../subscribers/view-subscriber-
1184
+ #: show.php:423
1185
+ msgid "Resend Confirmation"
1186
+ msgstr "Bestätigung erneut senden"
1187
 
1188
+ #: ../subscribers/view-subscriber-show.php:401
 
1189
  msgid ""
1190
+ "No records available. Please use the above alphabet search button to search."
 
1191
  msgstr ""
1192
+ "Keine Einträge vorhanden. Bitte nutzen Sie die obenstehenden Buttons zur "
1193
+ "alphabetischen Suche."
1194
 
1195
+ #: ../subscribers/view-subscriber-show.php:421
1196
+ msgid "Bulk Actions"
1197
+ msgstr "Massenänderungs-Aktionen"
 
 
 
 
1198
 
1199
+ #: ../subscribers/view-subscriber-show.php:424
1200
+ msgid "Update Subscribers Group"
1201
+ msgstr "Empfängergruppe updaten"
1202
 
1203
+ #: ../subscribers/view-subscriber-show.php:427
1204
+ msgid "Select Group"
1205
+ msgstr "Gruppe auswählen"
1206
 
1207
+ #: ../subscribers/view-subscriber-show.php:441
1208
+ msgid "Apply"
1209
+ msgstr "Zuordnen"
 
1210
 
1211
+ #: ../subscribers/view-subscriber-show.php:446
1212
+ #, fuzzy
1213
+ msgid "Export Email"
1214
+ msgstr "E-Mail-Adressen importieren"
1215
 
1216
+ #: ../subscribers/view-subscriber-show.php:447
1217
+ #, fuzzy
1218
+ msgid "Sync Email"
1219
+ msgstr "E-Mail senden"
1220
 
1221
+ #: ../notification/notification-edit.php:40
1222
+ #: ../notification/notification-add.php:26
1223
+ #: ../notification/notification-add.php:119
1224
+ msgid "Please select subscribers group."
1225
+ msgstr "Bitte wählen Sie eine Empfängergruppe."
1226
 
1227
+ #: ../notification/notification-edit.php:46
1228
+ #: ../notification/notification-edit.php:231
1229
+ #: ../notification/notification-add.php:32 ../notification/notification-add.
1230
+ #: php:211
1231
+ msgid "Please select notification status."
1232
+ msgstr "Bitte wählen Sie einen Benachrichtigungsstatus."
1233
 
1234
+ #: ../notification/notification-edit.php:52
1235
+ #: ../notification/notification-edit.php:142
1236
+ #: ../notification/notification-add.php:38 ../notification/notification-add.
1237
+ #: php:138
1238
+ msgid "Please select notification mail subject. Use compose menu to create new."
1239
  msgstr ""
1240
+ "Bitte wählen Sie einen Betreff für das Benachrichtigungs-E-Mail. Über das Menü "
1241
+ "Erstellen können Sie einen neuen anlegen."
1242
 
1243
+ #: ../notification/notification-edit.php:58
1244
+ #: ../notification/notification-edit.php:182
1245
+ #: ../notification/notification-add.php:44 ../notification/notification-add.
1246
+ #: php:170
1247
+ msgid "Please select post categories."
1248
+ msgstr "Bitte Beitragskategorien auswählen."
1249
+
1250
+ #: ../notification/notification-edit.php:84
1251
+ msgid "Notification was successfully updated."
1252
+ msgstr "Die Benachrichtigung wurde erfolgreich upgedatet."
1253
+
1254
+ #: ../notification/notification-edit.php:111
1255
+ msgid "Edit Notification"
1256
+ msgstr "Benachrichtigung bearbeiten"
1257
+
1258
+ #: ../notification/notification-edit.php:114
1259
+ #: ../notification/notification-add.php:103
1260
+ #: ../notification/notification-show.php:56 ../notification/notification-show.
1261
+ #: php:64
1262
+ msgid "Subscribers Group"
1263
+ msgstr "Empfängergruppe"
1264
+
1265
+ #: ../notification/notification-edit.php:118
1266
+ msgid "Not allowed to update the subscribers group in edit page."
1267
  msgstr ""
1268
+ "Die Empfängergruppe kann in der Seitenbearbeitung nicht upgedatet werden."
1269
 
1270
+ #: ../notification/notification-edit.php:120
1271
+ #: ../notification/notification-add.php:121
1272
+ msgid "Notification Mail"
1273
+ msgstr "Benachrichtigungs-E-Mail"
1274
 
1275
+ #: ../notification/notification-edit.php:144
1276
+ #: ../notification/notification-add.php:140
1277
+ msgid "Post Categories"
1278
+ msgstr "Beitragskategorien"
1279
+
1280
+ #: ../notification/notification-edit.php:184
1281
+ #: ../notification/notification-add.php:172
1282
+ msgid "Custom post type"
1283
+ msgstr ""
1284
+
1285
+ #: ../notification/notification-edit.php:223
1286
+ #: ../notification/notification-add.php:203
1287
  #, fuzzy
1288
+ msgid "Please select your custom post type (Optional)."
1289
+ msgstr "Bitte E-Mail-Typ auswählen."
1290
 
1291
+ #: ../notification/notification-edit.php:225
1292
+ #: ../notification/notification-add.php:205
1293
+ #: ../notification/notification-show.php:58 ../notification/notification-show.
1294
+ #: php:66
1295
+ msgid "Notification Status"
1296
+ msgstr "Benachrichtigungsstatus"
1297
 
1298
+ #: ../notification/notification-add.php:69
1299
+ msgid "Notification was successfully created."
1300
+ msgstr "Die Benachrichtigung wurde erfolgreich erstellt."
 
 
1301
 
1302
+ #: ../notification/notification-add.php:100
1303
+ msgid "Add Notification"
1304
+ msgstr "Benachrichtigung hinzufügen"
1305
 
1306
+ #: ../notification/notification-show.php:55
1307
+ #: ../notification/notification-show.php:63
1308
+ msgid "Mail Subject"
1309
+ msgstr "E-Mail Betreff"
1310
 
1311
+ #: ../notification/notification-show.php:57
1312
+ #: ../notification/notification-show.php:65
1313
+ msgid "Categories / Custom Post"
1314
+ msgstr ""
1315
 
1316
+ #: ../compose/compose-edit.php:40 ../compose/compose-add.php:25
1317
+ msgid "Please enter template heading."
1318
+ msgstr "Bitte Vorlagenkopf eingeben."
1319
 
1320
+ #: ../compose/compose-edit.php:55
1321
+ msgid "Template was successfully updated."
1322
+ msgstr "Die Vorlage wurde upgedatet."
 
 
1323
 
1324
+ #: ../compose/compose-edit.php:82 ../compose/compose-show.php:58 ..
1325
+ #: /compose/compose-add.php:69
1326
+ msgid "Compose Mail"
1327
+ msgstr "E-Mail erstellen"
1328
+
1329
+ #: ../compose/compose-edit.php:90 ../compose/compose-add.php:77 ..
1330
+ #: /sendmail/sendmail.php:50
1331
+ msgid "Please select your mail type."
1332
+ msgstr "Bitte E-Mail-Typ auswählen."
1333
+
1334
+ #: ../compose/compose-edit.php:92 ../compose/compose-add.php:79
1335
+ msgid "Enter mail subject."
1336
+ msgstr "E-Mail Betreff eingeben."
1337
+
1338
+ #: ../compose/compose-edit.php:94 ../compose/compose-add.php:81
1339
+ msgid "Please enter your mail subject."
1340
+ msgstr "Bitte geben Sie einen Betreff ein."
1341
+
1342
+ #: ../compose/compose-edit.php:96 ../compose/compose-add.php:84
1343
+ msgid "Mail content"
1344
+ msgstr "E-Mail Inhalt"
1345
+
1346
+ #: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
1347
+ msgid "Please enter content for your mail."
1348
+ msgstr "Bitte geben Sie einen Inhalt für das E-Mail ein."
1349
 
1350
+ #: ../compose/compose-edit.php:106 ../compose/compose-add.php:94
1351
+ msgid "Please select your mail status."
1352
+ msgstr "Bitte geben Sie Ihren E-Mail Status an."
1353
 
1354
+ #: ../compose/compose-show.php:69 ../compose/compose-show.php:77
1355
+ msgid "Email subject"
1356
+ msgstr "E-Mail Betreff"
1357
 
1358
+ #: ../compose/compose-add.php:39
1359
+ msgid "Template was successfully created."
1360
+ msgstr "Die Vorlage wurde erstellt."
 
1361
 
1362
+ #: ../export/export-email-address.php:39 ../export/export-email-address.php:45 ..
1363
+ #: /export/export-email-address.php:50
1364
+ msgid "Unexpected url submit has been detected"
1365
+ msgstr "Es wurde eine unerwartete URL-Übermittlung entdeckt"
1366
 
1367
+ #: ../cron/cron-add.php:18
1368
+ #, fuzzy
1369
+ msgid "Please enter valid mail count."
1370
+ msgstr "Bitte geben Sie einen Betreff ein."
1371
 
1372
+ #: ../cron/cron-add.php:29
1373
+ #, fuzzy
1374
+ msgid "Cron details successfully updated."
1375
+ msgstr "Die Details wurden erfolgreich upgedatet."
1376
 
1377
+ #: ../cron/cron-add.php:72
1378
+ msgid "Cron Details"
1379
  msgstr ""
 
 
 
 
 
1380
 
1381
+ #: ../cron/cron-add.php:75
1382
+ msgid "Cron job URL"
1383
+ msgstr ""
1384
 
1385
+ #: ../cron/cron-add.php:77
1386
  msgid ""
1387
+ "Please find your cron job URL. This is read only field not able to modify from "
1388
+ "admin."
1389
  msgstr ""
 
 
1390
 
1391
+ #: ../cron/cron-add.php:79
1392
+ #, fuzzy
1393
+ msgid "Mail Count"
1394
+ msgstr "E-Mail Inhalt"
1395
 
1396
+ #: ../cron/cron-add.php:81
1397
+ msgid "Enter number of mails you want to send per hour/trigger."
 
 
1398
  msgstr ""
 
 
 
 
 
 
1399
 
1400
+ #: ../cron/cron-add.php:83
1401
+ #, fuzzy
1402
+ msgid "Admin Report"
1403
+ msgstr "Berichte anzeigen"
 
1404
 
1405
+ #: ../cron/cron-add.php:85
1406
+ msgid "Send above mail to admin whenever cron URL triggered in your server."
1407
+ msgstr ""
1408
 
1409
+ #: ../cron/cron-add.php:97
1410
+ msgid "How to setup auto emails?"
1411
+ msgstr ""
1412
 
1413
+ #: ../cron/cron-add.php:98
1414
+ msgid ""
1415
+ "I strongly recommend you to use \"Send mail via cron job\" option to send your "
1416
+ "newsletters and notification. The following link explains how to create a CRON "
1417
+ "job through the cPanel or Plesk."
1418
+ msgstr ""
1419
 
1420
+ #: ../cron/cron-add.php:99
1421
+ msgid "How to setup auto emails (cron job) in Plesk"
1422
+ msgstr ""
1423
 
1424
+ #: ../cron/cron-add.php:100
1425
+ msgid "How to setup auto emails (cron job) in cPanal"
1426
+ msgstr ""
 
1427
 
1428
+ #: ../cron/cron-add.php:101
1429
+ msgid "Hosting doesnt support cron jobs?"
1430
+ msgstr ""
 
1431
 
1432
+ #: ../sendmail/sendmail.php:35
1433
+ msgid "Please select your mail subject."
1434
+ msgstr "Bitte E-Mail Betreff auswählen."
1435
 
1436
+ #: ../sendmail/sendmail.php:43
1437
+ msgid "No email address selected."
1438
+ msgstr "Keine E-Mail-Adresse ausgewählt."
1439
 
1440
+ #: ../sendmail/sendmail.php:58
1441
+ msgid "Mail sent successfully"
1442
+ msgstr "E-Mail erfolgreich gesendet"
1443
 
1444
+ #: ../sendmail/sendmail.php:64
1445
+ msgid "Click here for details"
1446
+ msgstr "Hier klicken für Details"
1447
 
1448
+ #: ../sendmail/sendmail.php:73
1449
+ msgid "Oops.. We are getting some error. mail not sending."
1450
+ msgstr "Hoppla, ein Fehler! E-Mail kann nicht gesendet werden."
 
1451
 
1452
+ #: ../sendmail/sendmail.php:101
1453
+ msgid "Select your mail subject"
1454
+ msgstr "E-Mail Betreff wählen"
 
1455
 
1456
+ #: ../sendmail/sendmail.php:102
1457
  msgid ""
1458
+ "Select a mail subject from available list. Go to Compose page to create new "
1459
+ "mail."
1460
  msgstr ""
1461
+ "Wählen Sie einen verfügbaren E-Mail Betreff aus der Liste. Auf der Seite "
1462
+ "Erstellen können Sie eine neue E-Mail schreiben."
1463
 
1464
+ #: ../sendmail/sendmail.php:132
1465
+ #, fuzzy
1466
+ msgid "Mail Type"
1467
+ msgstr "E-Mail-Typ"
1468
 
1469
+ #: ../sendmail/sendmail.php:133
1470
+ #, fuzzy
1471
+ msgid "Select your mail type."
1472
+ msgstr "Bitte E-Mail-Typ auswählen."
1473
 
1474
+ #: ../sendmail/sendmail.php:147
1475
+ msgid "Select subscriber group"
1476
+ msgstr "Empfängergruppe wählen"
1477
 
1478
+ #: ../sendmail/sendmail.php:148
1479
+ msgid "Select your subscriber group to send email."
1480
+ msgstr "Wählen Sie eine Empfängergruppe, um das E-Mail zu senden."
1481
 
1482
+ #: ../sendmail/sendmail.php:173
1483
+ msgid "Check All"
1484
+ msgstr "Alle auswählen"
 
1485
 
1486
+ #: ../sendmail/sendmail.php:174
1487
+ msgid "Uncheck All"
1488
+ msgstr "Alle abwählen"
 
1489
 
1490
+ #: ../sendmail/sendmail.php:237
1491
+ msgid "No subscribers available for this search criteria."
1492
+ msgstr "Keine Empfänger für diese Suchkriterien verfügbar."
1493
+
1494
+ #: ../roles/roles-add.php:91
1495
+ msgid "Roles and Capabilities"
1496
  msgstr ""
 
 
1497
 
1498
+ #: ../roles/roles-add.php:93
 
1499
  #, fuzzy
1500
+ msgid "Subscribers Menu"
1501
+ msgstr "Empfänger"
1502
+
1503
+ #: ../roles/roles-add.php:99
1504
+ msgid ""
1505
+ "Select user role to access plugin Subscribers Menu. Only Admin user can change "
1506
+ "this value."
1507
  msgstr ""
 
 
1508
 
1509
+ #: ../roles/roles-add.php:102
1510
  #, fuzzy
1511
+ msgid "Compose Menu"
1512
+ msgstr "E-Mail erstellen"
1513
 
1514
+ #: ../roles/roles-add.php:108
1515
+ msgid ""
1516
+ "Select user role to access plugin Compose Menu. Only Admin user can change "
1517
+ "this value."
1518
+ msgstr ""
1519
+
1520
+ #: ../roles/roles-add.php:110
1521
  #, fuzzy
1522
+ msgid "Notification Menu"
1523
+ msgstr "Benachrichtigung"
1524
 
1525
+ #: ../roles/roles-add.php:116
1526
+ msgid ""
1527
+ "Select user role to access plugin Notification Menu. Only Admin user can "
1528
+ "change this value."
1529
  msgstr ""
1530
 
1531
+ #: ../roles/roles-add.php:118
1532
+ msgid "Send Email Menu/Cron Menu"
1533
+ msgstr ""
1534
+
1535
+ #: ../roles/roles-add.php:124
1536
  msgid ""
1537
+ "Select user role to access plugin Send Email Menu. Only Admin user can change "
1538
+ "this value."
1539
  msgstr ""
1540
 
1541
+ #: ../roles/roles-add.php:126
 
1542
  #, fuzzy
1543
+ msgid "Settings Menu"
1544
+ msgstr "Einstellungen"
1545
 
1546
+ #: ../roles/roles-add.php:132
1547
+ msgid ""
1548
+ "Select user role to access plugin Settings Menu. Only Admin user can change "
1549
+ "this value."
1550
  msgstr ""
1551
 
1552
+ #: ../roles/roles-add.php:134
1553
+ #, fuzzy
1554
+ msgid "Sent Mails Menu"
1555
+ msgstr "Gesendete E-Mails"
1556
+
1557
+ #: ../roles/roles-add.php:140
1558
  msgid ""
1559
+ "Select user role to access plugin Sent Mails Menu. Only Admin user can change "
1560
+ "this value."
1561
+ msgstr ""
1562
+
1563
+ #: ../roles/roles-add.php:142
1564
+ #, fuzzy
1565
+ msgid "Help & Info Menu"
1566
+ msgstr "Hilfe & Info"
1567
+
1568
+ #: ../roles/roles-add.php:148
1569
+ msgid ""
1570
+ "Select user role to access plugin Help & Info Menu. Only Admin user can change "
1571
+ "this value."
1572
  msgstr ""
1573
 
1574
+ #~ msgid "These tables could not be created on installation "
1575
+ #~ msgstr "Die Tabellen konnten während der Installation nicht erstellt werden"
1576
+
1577
+ #~ msgid "Please enter email address."
1578
+ #~ msgstr "Bitte eine E-Mail Adresse angeben."
1579
+
1580
+ #~ msgid "Please provide a valid email address."
1581
+ #~ msgstr "Bitte eine gültige E-Mail Adresse angeben."
1582
+
1583
+ #~ msgid "loading..."
1584
+ #~ msgstr "Laden..."
1585
+
1586
+ #~ msgid "Subscribed successfully."
1587
+ #~ msgstr "erfolgreich abonniert."
1588
+
1589
+ #~ msgid ""
1590
+ #~ "You have successfully subscribed to the newsletter. You will receive a "
1591
+ #~ "confirmation email in few minutes. Please follow the link in it to confirm "
1592
+ #~ "your subscription. If the email takes more than 15 minutes to appear in "
1593
+ #~ "your mailbox, please check your spam folder."
1594
+ #~ msgstr ""
1595
+ #~ "Du hast erfolgreich unseren Blog abonniert. Damit wir dich regelmäßig über "
1596
+ #~ "neue Beiträge informieren können, bestätige bitte noch kurz deine E-Mail-"
1597
+ #~ "Adresse innerhalb der gesendeten E-Mail."
1598
+
1599
+ #~ msgid "Email already exist."
1600
+ #~ msgstr "E-Mail gibt es bereits."
1601
+
1602
+ #~ msgid "Oops.. Unexpected error occurred."
1603
+ #~ msgstr "Oops .. unerwarteter Fehler aufgetreten."
1604
+
1605
+ #~ msgid "Invalid email address."
1606
+ #~ msgstr "Ungültige Email Adresse."
1607
+
1608
+ #~ msgid "Please try after some time."
1609
+ #~ msgstr "Bitte versuchen Sie es nach einiger Zeit."
1610
+
1611
+ #~ msgid "There was a problem with the request."
1612
+ #~ msgstr "Es gab ein Problem mit der Bitte."
1613
+
1614
  #~ msgid "Mail Preview"
1615
  #~ msgstr "E-Mail Vorschau"
1616
 
languages/email-subscribers.pot CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Email Subscribers\n"
6
  "Report-Msgid-Bugs-To: \n"
7
  "POT-Creation-Date: Tue Feb 09 2016 16:21:13 GMT+0530 (IST)\n"
8
- "POT-Revision-Date: Tue Feb 09 2016 16:34:01 GMT+0530 (IST)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
@@ -86,8 +86,7 @@ msgstr ""
86
  #: php:86 ../subscribers/view-subscriber-import.php:107 ../subscribers/view-
87
  #: subscriber-import.php:138 ../notification/notification-edit.php:100 ..
88
  #: /notification/notification-add.php:91 ../compose/compose-edit.php:71 ..
89
- #: /compose/compose-add.php:60 ../cron/cron-add.php:99 ../cron/cron-add.php:100 ..
90
- #: /cron/cron-add.php:101 ../roles/roles-add.php:81
91
  msgid "Click here"
92
  msgstr ""
93
 
@@ -473,24 +472,20 @@ msgstr ""
473
  msgid "Database ID"
474
  msgstr ""
475
 
476
- #: ../classes/es-loadwidget.php:24 ../classes/es-register.php:374 ..
477
  #: /subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-show.
478
  #: php:339
479
  msgid "Name"
480
  msgstr ""
481
 
482
- #: ../classes/es-loadwidget.php:29 ../classes/es-register.php:379
483
  msgid "Email *"
484
  msgstr ""
485
 
486
- #: ../classes/es-loadwidget.php:34 ../classes/es-register.php:384
487
  msgid "Subscribe"
488
  msgstr ""
489
 
490
- #: ../classes/es-register.php:133 ../classes/es-register.php:134
491
- msgid "Email Subscriber"
492
- msgstr ""
493
-
494
  #: ../classes/es-register.php:136 ../classes/es-register.php:137
495
  msgid "Subscribers"
496
  msgstr ""
@@ -522,185 +517,189 @@ msgstr ""
522
  msgid "Roles"
523
  msgstr ""
524
 
525
- #: ../classes/es-register.php:160 ../classes/es-register.php:161
526
  msgid "Help & Info"
527
  msgstr ""
528
 
529
- #: ../classes/es-register.php:173
 
 
 
 
530
  msgctxt "view-subscriber-enhanced-select"
531
  msgid "Please enter subscriber email address."
532
  msgstr ""
533
 
534
- #: ../classes/es-register.php:174
535
  msgctxt "view-subscriber-enhanced-select"
536
  msgid "Please select subscriber email status."
537
  msgstr ""
538
 
539
- #: ../classes/es-register.php:175
540
  msgctxt "view-subscriber-enhanced-select"
541
  msgid "Please select or create group for this subscriber."
542
  msgstr ""
543
 
544
- #: ../classes/es-register.php:176
545
  msgctxt "view-subscriber-enhanced-select"
546
  msgid "Do you want to delete this record?"
547
  msgstr ""
548
 
549
- #: ../classes/es-register.php:177
550
  msgctxt "view-subscriber-enhanced-select"
551
  msgid "Please select the bulk action."
552
  msgstr ""
553
 
554
- #: ../classes/es-register.php:178
555
  msgctxt "view-subscriber-enhanced-select"
556
  msgid "Do you want to delete selected record(s)?"
557
  msgstr ""
558
 
559
- #: ../classes/es-register.php:179
560
  msgctxt "view-subscriber-enhanced-select"
561
  msgid "Are you sure you want to delete?"
562
  msgstr ""
563
 
564
- #: ../classes/es-register.php:180
565
  msgctxt "view-subscriber-enhanced-select"
566
  msgid ""
567
  "Do you want to resend confirmation email? \\nAlso please note, this will "
568
  "update subscriber current status to 'Unconfirmed'."
569
  msgstr ""
570
 
571
- #: ../classes/es-register.php:181
572
  msgctxt "view-subscriber-enhanced-select"
573
  msgid "Please select new subscriber group."
574
  msgstr ""
575
 
576
- #: ../classes/es-register.php:182
577
  msgctxt "view-subscriber-enhanced-select"
578
  msgid "Do you want to update subscribers group?"
579
  msgstr ""
580
 
581
- #: ../classes/es-register.php:183
582
  msgctxt "view-subscriber-enhanced-select"
583
  msgid "Do you want to export the emails?"
584
  msgstr ""
585
 
586
- #: ../classes/es-register.php:184
587
  msgctxt "view-subscriber-enhanced-select"
588
  msgid ""
589
  "Please select only csv file. Please check official website for csv structure."
590
  "."
591
  msgstr ""
592
 
593
- #: ../classes/es-register.php:192
594
  msgctxt "compose-enhanced-select"
595
  msgid "Please enter name for configuration."
596
  msgstr ""
597
 
598
- #: ../classes/es-register.php:193
599
  msgctxt "compose-enhanced-select"
600
  msgid "Please select template for this configuration."
601
  msgstr ""
602
 
603
- #: ../classes/es-register.php:194
604
  msgctxt "compose-enhanced-select"
605
  msgid "Do you want to delete this record?"
606
  msgstr ""
607
 
608
- #: ../classes/es-register.php:202
609
  msgctxt "notification-enhanced-select"
610
  msgid "Please select subscribers group."
611
  msgstr ""
612
 
613
- #: ../classes/es-register.php:203
614
  msgctxt "notification-enhanced-select"
615
  msgid "Please select notification mail subject. Use compose menu to create new."
616
  msgstr ""
617
 
618
- #: ../classes/es-register.php:204
619
  msgctxt "notification-enhanced-select"
620
  msgid "Please select notification status."
621
  msgstr ""
622
 
623
- #: ../classes/es-register.php:205
624
  msgctxt "notification-enhanced-select"
625
  msgid "Do you want to delete this record?"
626
  msgstr ""
627
 
628
- #: ../classes/es-register.php:213
629
  msgctxt "sendmail-enhanced-select"
630
  msgid "Please select your mail subject."
631
  msgstr ""
632
 
633
- #: ../classes/es-register.php:214
634
  msgctxt "sendmail-enhanced-select"
635
  msgid "Please select subscriber email status."
636
  msgstr ""
637
 
638
- #: ../classes/es-register.php:215
639
  msgctxt "sendmail-enhanced-select"
640
  msgid "Are you sure you want to send email to all selected email address?"
641
  msgstr ""
642
 
643
- #: ../classes/es-register.php:227
644
  msgctxt "sentmail-enhanced-select"
645
  msgid "Do you want to delete this record?"
646
  msgstr ""
647
 
648
- #: ../classes/es-register.php:228
649
  msgctxt "sentmail-enhanced-select"
650
  msgid "Do you want to delete all records except latest 10?"
651
  msgstr ""
652
 
653
- #: ../classes/es-register.php:236
654
  msgctxt "roles-enhanced-select"
655
  msgid "Please enter subscriber email address."
656
  msgstr ""
657
 
658
- #: ../classes/es-register.php:237
659
  msgctxt "roles-enhanced-select"
660
  msgid "Please select subscriber email status."
661
  msgstr ""
662
 
663
- #: ../classes/es-register.php:238
664
  msgctxt "roles-enhanced-select"
665
  msgid "Please select or create group for this subscriber."
666
  msgstr ""
667
 
668
- #: ../classes/es-register.php:246
669
  msgctxt "cron-enhanced-select"
670
  msgid "Please select enter number of mails you want to send per hour/trigger."
671
  msgstr ""
672
 
673
- #: ../classes/es-register.php:247
674
  msgctxt "cron-enhanced-select"
675
  msgid "Please enter the mail count, only number."
676
  msgstr ""
677
 
678
- #: ../classes/es-register.php:259
679
  msgctxt "widget-enhanced-select"
680
  msgid "Please enter email address."
681
  msgstr ""
682
 
683
- #: ../classes/es-register.php:260
684
  msgctxt "widget-enhanced-select"
685
  msgid "Please provide a valid email address."
686
  msgstr ""
687
 
688
- #: ../classes/es-register.php:261
689
  msgctxt "widget-enhanced-select"
690
  msgid "loading..."
691
  msgstr ""
692
 
693
- #: ../classes/es-register.php:262
694
  msgctxt "widget-enhanced-select"
695
  msgid "Cannot create XMLHTTP instance"
696
  msgstr ""
697
 
698
- #: ../classes/es-register.php:263
699
  msgctxt "widget-enhanced-select"
700
  msgid "Subscribed successfully."
701
  msgstr ""
702
 
703
- #: ../classes/es-register.php:264
704
  msgctxt "widget-enhanced-select"
705
  msgid ""
706
  "You have successfully subscribed to the newsletter. You will receive a "
@@ -709,57 +708,57 @@ msgid ""
709
  "mailbox, please check your spam folder."
710
  msgstr ""
711
 
712
- #: ../classes/es-register.php:265
713
  msgctxt "widget-enhanced-select"
714
  msgid "Email already exist."
715
  msgstr ""
716
 
717
- #: ../classes/es-register.php:266
718
  msgctxt "widget-enhanced-select"
719
  msgid "Oops.. Unexpected error occurred."
720
  msgstr ""
721
 
722
- #: ../classes/es-register.php:267
723
  msgctxt "widget-enhanced-select"
724
  msgid "Invalid email address."
725
  msgstr ""
726
 
727
- #: ../classes/es-register.php:268
728
  msgctxt "widget-enhanced-select"
729
  msgid "Please try after some time."
730
  msgstr ""
731
 
732
- #: ../classes/es-register.php:269
733
  msgctxt "widget-enhanced-select"
734
  msgid "There was a problem with the request."
735
  msgstr ""
736
 
737
- #: ../classes/es-register.php:276
738
  msgctxt "widget-page-enhanced-select"
739
  msgid "Please enter email address."
740
  msgstr ""
741
 
742
- #: ../classes/es-register.php:277
743
  msgctxt "widget-page-enhanced-select"
744
  msgid "Please provide a valid email address."
745
  msgstr ""
746
 
747
- #: ../classes/es-register.php:278
748
  msgctxt "widget-page-enhanced-select"
749
  msgid "loading..."
750
  msgstr ""
751
 
752
- #: ../classes/es-register.php:279
753
  msgctxt "widget-page-enhanced-select"
754
  msgid "Cannot create XMLHTTP instance"
755
  msgstr ""
756
 
757
- #: ../classes/es-register.php:280
758
  msgctxt "widget-page-enhanced-select"
759
  msgid "Subscribed successfully."
760
  msgstr ""
761
 
762
- #: ../classes/es-register.php:281
763
  msgctxt "widget-page-enhanced-select"
764
  msgid ""
765
  "You have successfully subscribed to the newsletter. You will receive a "
@@ -768,48 +767,48 @@ msgid ""
768
  "mailbox, please check your spam folder."
769
  msgstr ""
770
 
771
- #: ../classes/es-register.php:282
772
  msgctxt "widget-page-enhanced-select"
773
  msgid "Email already exist."
774
  msgstr ""
775
 
776
- #: ../classes/es-register.php:283
777
  msgctxt "widget-page-enhanced-select"
778
  msgid "Oops.. Unexpected error occurred."
779
  msgstr ""
780
 
781
- #: ../classes/es-register.php:284
782
  msgctxt "widget-page-enhanced-select"
783
  msgid "Invalid email address."
784
  msgstr ""
785
 
786
- #: ../classes/es-register.php:285
787
  msgctxt "widget-page-enhanced-select"
788
  msgid "Please try after some time."
789
  msgstr ""
790
 
791
- #: ../classes/es-register.php:286
792
  msgctxt "widget-page-enhanced-select"
793
  msgid "There was a problem with the request."
794
  msgstr ""
795
 
796
- #: ../classes/es-register.php:420
797
  msgid "Widget Title"
798
  msgstr ""
799
 
800
- #: ../classes/es-register.php:424
801
  msgid "Display Name Field"
802
  msgstr ""
803
 
804
- #: ../classes/es-register.php:431
805
  msgid "Short Description"
806
  msgstr ""
807
 
808
- #: ../classes/es-register.php:433
809
  msgid "Short description about your subscription form."
810
  msgstr ""
811
 
812
- #: ../classes/es-register.php:436
813
  msgid "Subscriber Group"
814
  msgstr ""
815
 
@@ -1318,27 +1317,29 @@ msgstr ""
1318
  msgid "Send above mail to admin whenever cron URL triggered in your server."
1319
  msgstr ""
1320
 
1321
- #: ../cron/cron-add.php:97
1322
- msgid "How to setup auto emails?"
1323
  msgstr ""
1324
 
1325
- #: ../cron/cron-add.php:98
1326
  msgid ""
1327
- "I strongly recommend you to use \"Send mail via cron job\" option to send your "
1328
- "newsletters and notification. The following link explains how to create a "
1329
- "CRON job through the cPanel or Plesk."
1330
- msgstr ""
1331
-
1332
- #: ../cron/cron-add.php:99
1333
- msgid "How to setup auto emails (cron job) in Plesk"
1334
  msgstr ""
1335
 
1336
- #: ../cron/cron-add.php:100
1337
- msgid "How to setup auto emails (cron job) in cPanal"
 
 
 
1338
  msgstr ""
1339
 
1340
- #: ../cron/cron-add.php:101
1341
- msgid "Hosting doesnt support cron jobs?"
 
 
 
1342
  msgstr ""
1343
 
1344
  #: ../sendmail/sendmail.php:35
@@ -1472,3 +1473,150 @@ msgid ""
1472
  "Select user role to access plugin Help & Info Menu. Only Admin user can "
1473
  "change this value."
1474
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  "Project-Id-Version: Email Subscribers\n"
6
  "Report-Msgid-Bugs-To: \n"
7
  "POT-Creation-Date: Tue Feb 09 2016 16:21:13 GMT+0530 (IST)\n"
8
+ "POT-Revision-Date: Mon Mar 07 2016 10:28:25 GMT+0530 (IST)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
86
  #: php:86 ../subscribers/view-subscriber-import.php:107 ../subscribers/view-
87
  #: subscriber-import.php:138 ../notification/notification-edit.php:100 ..
88
  #: /notification/notification-add.php:91 ../compose/compose-edit.php:71 ..
89
+ #: /compose/compose-add.php:60 ../roles/roles-add.php:81
 
90
  msgid "Click here"
91
  msgstr ""
92
 
472
  msgid "Database ID"
473
  msgstr ""
474
 
475
+ #: ../classes/es-loadwidget.php:24 ../classes/es-register.php:415 ..
476
  #: /subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-show.
477
  #: php:339
478
  msgid "Name"
479
  msgstr ""
480
 
481
+ #: ../classes/es-loadwidget.php:29 ../classes/es-register.php:420
482
  msgid "Email *"
483
  msgstr ""
484
 
485
+ #: ../classes/es-loadwidget.php:34 ../classes/es-register.php:425
486
  msgid "Subscribe"
487
  msgstr ""
488
 
 
 
 
 
489
  #: ../classes/es-register.php:136 ../classes/es-register.php:137
490
  msgid "Subscribers"
491
  msgstr ""
517
  msgid "Roles"
518
  msgstr ""
519
 
520
+ #: ../classes/es-register.php:160
521
  msgid "Help & Info"
522
  msgstr ""
523
 
524
+ #: ../classes/es-register.php:161
525
+ msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
526
+ msgstr ""
527
+
528
+ #: ../classes/es-register.php:172
529
  msgctxt "view-subscriber-enhanced-select"
530
  msgid "Please enter subscriber email address."
531
  msgstr ""
532
 
533
+ #: ../classes/es-register.php:173
534
  msgctxt "view-subscriber-enhanced-select"
535
  msgid "Please select subscriber email status."
536
  msgstr ""
537
 
538
+ #: ../classes/es-register.php:174
539
  msgctxt "view-subscriber-enhanced-select"
540
  msgid "Please select or create group for this subscriber."
541
  msgstr ""
542
 
543
+ #: ../classes/es-register.php:175
544
  msgctxt "view-subscriber-enhanced-select"
545
  msgid "Do you want to delete this record?"
546
  msgstr ""
547
 
548
+ #: ../classes/es-register.php:176
549
  msgctxt "view-subscriber-enhanced-select"
550
  msgid "Please select the bulk action."
551
  msgstr ""
552
 
553
+ #: ../classes/es-register.php:177
554
  msgctxt "view-subscriber-enhanced-select"
555
  msgid "Do you want to delete selected record(s)?"
556
  msgstr ""
557
 
558
+ #: ../classes/es-register.php:178
559
  msgctxt "view-subscriber-enhanced-select"
560
  msgid "Are you sure you want to delete?"
561
  msgstr ""
562
 
563
+ #: ../classes/es-register.php:179
564
  msgctxt "view-subscriber-enhanced-select"
565
  msgid ""
566
  "Do you want to resend confirmation email? \\nAlso please note, this will "
567
  "update subscriber current status to 'Unconfirmed'."
568
  msgstr ""
569
 
570
+ #: ../classes/es-register.php:180
571
  msgctxt "view-subscriber-enhanced-select"
572
  msgid "Please select new subscriber group."
573
  msgstr ""
574
 
575
+ #: ../classes/es-register.php:181
576
  msgctxt "view-subscriber-enhanced-select"
577
  msgid "Do you want to update subscribers group?"
578
  msgstr ""
579
 
580
+ #: ../classes/es-register.php:182
581
  msgctxt "view-subscriber-enhanced-select"
582
  msgid "Do you want to export the emails?"
583
  msgstr ""
584
 
585
+ #: ../classes/es-register.php:183
586
  msgctxt "view-subscriber-enhanced-select"
587
  msgid ""
588
  "Please select only csv file. Please check official website for csv structure."
589
  "."
590
  msgstr ""
591
 
592
+ #: ../classes/es-register.php:191
593
  msgctxt "compose-enhanced-select"
594
  msgid "Please enter name for configuration."
595
  msgstr ""
596
 
597
+ #: ../classes/es-register.php:192
598
  msgctxt "compose-enhanced-select"
599
  msgid "Please select template for this configuration."
600
  msgstr ""
601
 
602
+ #: ../classes/es-register.php:193
603
  msgctxt "compose-enhanced-select"
604
  msgid "Do you want to delete this record?"
605
  msgstr ""
606
 
607
+ #: ../classes/es-register.php:201
608
  msgctxt "notification-enhanced-select"
609
  msgid "Please select subscribers group."
610
  msgstr ""
611
 
612
+ #: ../classes/es-register.php:202
613
  msgctxt "notification-enhanced-select"
614
  msgid "Please select notification mail subject. Use compose menu to create new."
615
  msgstr ""
616
 
617
+ #: ../classes/es-register.php:203
618
  msgctxt "notification-enhanced-select"
619
  msgid "Please select notification status."
620
  msgstr ""
621
 
622
+ #: ../classes/es-register.php:204
623
  msgctxt "notification-enhanced-select"
624
  msgid "Do you want to delete this record?"
625
  msgstr ""
626
 
627
+ #: ../classes/es-register.php:212
628
  msgctxt "sendmail-enhanced-select"
629
  msgid "Please select your mail subject."
630
  msgstr ""
631
 
632
+ #: ../classes/es-register.php:213
633
  msgctxt "sendmail-enhanced-select"
634
  msgid "Please select subscriber email status."
635
  msgstr ""
636
 
637
+ #: ../classes/es-register.php:214
638
  msgctxt "sendmail-enhanced-select"
639
  msgid "Are you sure you want to send email to all selected email address?"
640
  msgstr ""
641
 
642
+ #: ../classes/es-register.php:226
643
  msgctxt "sentmail-enhanced-select"
644
  msgid "Do you want to delete this record?"
645
  msgstr ""
646
 
647
+ #: ../classes/es-register.php:227
648
  msgctxt "sentmail-enhanced-select"
649
  msgid "Do you want to delete all records except latest 10?"
650
  msgstr ""
651
 
652
+ #: ../classes/es-register.php:235
653
  msgctxt "roles-enhanced-select"
654
  msgid "Please enter subscriber email address."
655
  msgstr ""
656
 
657
+ #: ../classes/es-register.php:236
658
  msgctxt "roles-enhanced-select"
659
  msgid "Please select subscriber email status."
660
  msgstr ""
661
 
662
+ #: ../classes/es-register.php:237
663
  msgctxt "roles-enhanced-select"
664
  msgid "Please select or create group for this subscriber."
665
  msgstr ""
666
 
667
+ #: ../classes/es-register.php:245
668
  msgctxt "cron-enhanced-select"
669
  msgid "Please select enter number of mails you want to send per hour/trigger."
670
  msgstr ""
671
 
672
+ #: ../classes/es-register.php:246
673
  msgctxt "cron-enhanced-select"
674
  msgid "Please enter the mail count, only number."
675
  msgstr ""
676
 
677
+ #: ../classes/es-register.php:258
678
  msgctxt "widget-enhanced-select"
679
  msgid "Please enter email address."
680
  msgstr ""
681
 
682
+ #: ../classes/es-register.php:259
683
  msgctxt "widget-enhanced-select"
684
  msgid "Please provide a valid email address."
685
  msgstr ""
686
 
687
+ #: ../classes/es-register.php:260
688
  msgctxt "widget-enhanced-select"
689
  msgid "loading..."
690
  msgstr ""
691
 
692
+ #: ../classes/es-register.php:261
693
  msgctxt "widget-enhanced-select"
694
  msgid "Cannot create XMLHTTP instance"
695
  msgstr ""
696
 
697
+ #: ../classes/es-register.php:262
698
  msgctxt "widget-enhanced-select"
699
  msgid "Subscribed successfully."
700
  msgstr ""
701
 
702
+ #: ../classes/es-register.php:263
703
  msgctxt "widget-enhanced-select"
704
  msgid ""
705
  "You have successfully subscribed to the newsletter. You will receive a "
708
  "mailbox, please check your spam folder."
709
  msgstr ""
710
 
711
+ #: ../classes/es-register.php:264
712
  msgctxt "widget-enhanced-select"
713
  msgid "Email already exist."
714
  msgstr ""
715
 
716
+ #: ../classes/es-register.php:265
717
  msgctxt "widget-enhanced-select"
718
  msgid "Oops.. Unexpected error occurred."
719
  msgstr ""
720
 
721
+ #: ../classes/es-register.php:266
722
  msgctxt "widget-enhanced-select"
723
  msgid "Invalid email address."
724
  msgstr ""
725
 
726
+ #: ../classes/es-register.php:267
727
  msgctxt "widget-enhanced-select"
728
  msgid "Please try after some time."
729
  msgstr ""
730
 
731
+ #: ../classes/es-register.php:268
732
  msgctxt "widget-enhanced-select"
733
  msgid "There was a problem with the request."
734
  msgstr ""
735
 
736
+ #: ../classes/es-register.php:275
737
  msgctxt "widget-page-enhanced-select"
738
  msgid "Please enter email address."
739
  msgstr ""
740
 
741
+ #: ../classes/es-register.php:276
742
  msgctxt "widget-page-enhanced-select"
743
  msgid "Please provide a valid email address."
744
  msgstr ""
745
 
746
+ #: ../classes/es-register.php:277
747
  msgctxt "widget-page-enhanced-select"
748
  msgid "loading..."
749
  msgstr ""
750
 
751
+ #: ../classes/es-register.php:278
752
  msgctxt "widget-page-enhanced-select"
753
  msgid "Cannot create XMLHTTP instance"
754
  msgstr ""
755
 
756
+ #: ../classes/es-register.php:279
757
  msgctxt "widget-page-enhanced-select"
758
  msgid "Subscribed successfully."
759
  msgstr ""
760
 
761
+ #: ../classes/es-register.php:280
762
  msgctxt "widget-page-enhanced-select"
763
  msgid ""
764
  "You have successfully subscribed to the newsletter. You will receive a "
767
  "mailbox, please check your spam folder."
768
  msgstr ""
769
 
770
+ #: ../classes/es-register.php:281
771
  msgctxt "widget-page-enhanced-select"
772
  msgid "Email already exist."
773
  msgstr ""
774
 
775
+ #: ../classes/es-register.php:282
776
  msgctxt "widget-page-enhanced-select"
777
  msgid "Oops.. Unexpected error occurred."
778
  msgstr ""
779
 
780
+ #: ../classes/es-register.php:283
781
  msgctxt "widget-page-enhanced-select"
782
  msgid "Invalid email address."
783
  msgstr ""
784
 
785
+ #: ../classes/es-register.php:284
786
  msgctxt "widget-page-enhanced-select"
787
  msgid "Please try after some time."
788
  msgstr ""
789
 
790
+ #: ../classes/es-register.php:285
791
  msgctxt "widget-page-enhanced-select"
792
  msgid "There was a problem with the request."
793
  msgstr ""
794
 
795
+ #: ../classes/es-register.php:461
796
  msgid "Widget Title"
797
  msgstr ""
798
 
799
+ #: ../classes/es-register.php:465
800
  msgid "Display Name Field"
801
  msgstr ""
802
 
803
+ #: ../classes/es-register.php:472
804
  msgid "Short Description"
805
  msgstr ""
806
 
807
+ #: ../classes/es-register.php:474
808
  msgid "Short description about your subscription form."
809
  msgstr ""
810
 
811
+ #: ../classes/es-register.php:477
812
  msgid "Subscriber Group"
813
  msgstr ""
814
 
1317
  msgid "Send above mail to admin whenever cron URL triggered in your server."
1318
  msgstr ""
1319
 
1320
+ #: ../cron/cron-add.php:97 ../help/help.php:97
1321
+ msgid "How to setup auto emails using CRON Job through the cPanel or Plesk?"
1322
  msgstr ""
1323
 
1324
+ #: ../cron/cron-add.php:98 ../help/help.php:99
1325
  msgid ""
1326
+ "<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/02/how-to-"
1327
+ "schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-"
1328
+ "plesk/\">Setup cron job in Plesk</a>"
 
 
 
 
1329
  msgstr ""
1330
 
1331
+ #: ../cron/cron-add.php:99 ../help/help.php:100
1332
+ msgid ""
1333
+ "<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/04/how-to-"
1334
+ "schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-"
1335
+ "cpanel/\">Setup cron job in cPanal</a>"
1336
  msgstr ""
1337
 
1338
+ #: ../cron/cron-add.php:100 ../help/help.php:101
1339
+ msgid ""
1340
+ "<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/08/email-"
1341
+ "subscribers-wordpress-plugin-how-to-schedule-auto-mails-cron-mails/\">Hosting "
1342
+ "doesnt support cron jobs?</a>"
1343
  msgstr ""
1344
 
1345
  #: ../sendmail/sendmail.php:35
1473
  "Select user role to access plugin Help & Info Menu. Only Admin user can "
1474
  "change this value."
1475
  msgstr ""
1476
+
1477
+ #: ../help/help.php:23
1478
+ msgid "Welcome to Email Subscribers!"
1479
+ msgstr ""
1480
+
1481
+ #: ../help/help.php:25
1482
+ msgid "Thanks for installing! We hope you enjoy using it."
1483
+ msgstr ""
1484
+
1485
+ #: ../help/help.php:30
1486
+ msgid "For more help and tips..."
1487
+ msgstr ""
1488
+
1489
+ #: ../help/help.php:75
1490
+ msgid "Frequently Asked Questions"
1491
+ msgstr ""
1492
+
1493
+ #: ../help/help.php:77
1494
+ msgid ""
1495
+ "<strong>How to setup subscription box widget?</strong> - There are 3 ways to "
1496
+ "add Subscription box to your website:"
1497
+ msgstr ""
1498
+
1499
+ #: ../help/help.php:78
1500
+ msgid ""
1501
+ "(A) Use Shortcode <code>[email-subscribers namefield=\"YES\" desc=\"\" "
1502
+ "group=\"Public\"]</code> in any page or post."
1503
+ msgstr ""
1504
+
1505
+ #: ../help/help.php:79
1506
+ msgid ""
1507
+ "(B) Go to Dashboard->Appearance->Widgets. You will see a widget called Email "
1508
+ "subscribers. Click Add Widget button or drag it to the sidebar on the right."
1509
+ msgstr ""
1510
+
1511
+ #: ../help/help.php:80
1512
+ msgid ""
1513
+ "(C) Copy and past this php code to your desired template location : "
1514
+ "<code>es_subbox( $namefield = \"YES\", $desc = \"\", $group = \"\" );</code> "
1515
+ msgstr ""
1516
+
1517
+ #: ../help/help.php:81
1518
+ msgid ""
1519
+ "Read more from <a target=\"_blank\" href=\"http://www.gopiplus."
1520
+ "com/work/2014/05/06/email-subscribers-wordpress-plugin-subscription-"
1521
+ "box/\">here</a>.<br>"
1522
+ msgstr ""
1523
+
1524
+ #: ../help/help.php:83
1525
+ msgid ""
1526
+ "<strong>How to update default alert message from subscription box?</strong> -"
1527
+ " Use any translation plugin (eg: <strong>Loco Translate</strong>) and "
1528
+ "translate the text that you want to update."
1529
+ msgstr ""
1530
+
1531
+ #: ../help/help.php:84
1532
+ msgid ""
1533
+ "<a target=\"_blank\" href=\"https://wordpress.org/plugins/email-"
1534
+ "subscribers/faq/\">Notifications are not getting send to subscriber list</a>"
1535
+ msgstr ""
1536
+
1537
+ #: ../help/help.php:85
1538
+ msgid ""
1539
+ "<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
1540
+ "subscribers-wordpress-plugin-subscriber-management-and-import-and-export-"
1541
+ "email-address/\">How to import and export email address to subscriber list?"
1542
+ "</a>"
1543
+ msgstr ""
1544
+
1545
+ #: ../help/help.php:86
1546
+ msgid ""
1547
+ "<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
1548
+ "subscribers-wordpress-plugin-compose-html-emails/\">How to compose static "
1549
+ "newsletter?</a></a>"
1550
+ msgstr ""
1551
+
1552
+ #: ../help/help.php:87
1553
+ msgid ""
1554
+ "<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
1555
+ "subscribers-wordpress-plugin-subscription-box/\">How to add subscription box "
1556
+ "in posts?</a>"
1557
+ msgstr ""
1558
+
1559
+ #: ../help/help.php:88
1560
+ msgid ""
1561
+ "<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
1562
+ "subscribers-wordpress-plugin-general-settings/\">How to modify the existing "
1563
+ "mails (Opt-in mail, Welcome mail, Admin mails) content?</a>"
1564
+ msgstr ""
1565
+
1566
+ #: ../help/help.php:89
1567
+ msgid ""
1568
+ "<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
1569
+ "subscribers-wordpress-plugin-send-email-newsletters/\">How to send static "
1570
+ "newsletter manually?</a>"
1571
+ msgstr ""
1572
+
1573
+ #: ../help/help.php:90
1574
+ msgid ""
1575
+ "<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
1576
+ "subscribers-wordpress-plugin-send-email-newsletters/\">Where to check sent "
1577
+ "mails?</a>"
1578
+ msgstr ""
1579
+
1580
+ #: ../help/help.php:91
1581
+ msgid ""
1582
+ "<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
1583
+ "subscribers-wordpress-plugin-notifications-settings/\">How to configure "
1584
+ "notification email to subscribers when new posts are published?</a>"
1585
+ msgstr ""
1586
+
1587
+ #: ../help/help.php:92
1588
+ msgid ""
1589
+ "<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
1590
+ "subscribers-wordpress-plugin-subscriber-management-and-import-and-export-"
1591
+ "email-address/\">How to add new subscribers group?</a>"
1592
+ msgstr ""
1593
+
1594
+ #: ../help/help.php:93
1595
+ msgid ""
1596
+ "<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
1597
+ "subscribers-wordpress-plugin-subscriber-management-and-import-and-export-"
1598
+ "email-address/\">Is plugin contain bulk update option for subscribers group?"
1599
+ "</a>"
1600
+ msgstr ""
1601
+
1602
+ #: ../help/help.php:94
1603
+ msgid ""
1604
+ "<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/08/17/mail-not-"
1605
+ "working-on-email-subscribers-wordpress-plugin/\">Is Mail not working on Email "
1606
+ "Subscribers wordpress plugin?</a>"
1607
+ msgstr ""
1608
+
1609
+ #: ../help/help.php:95
1610
+ msgid ""
1611
+ "<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/08/31/email-"
1612
+ "subscribers-wordpress-plugin-network-activation-for-multisite-"
1613
+ "installation/\">How to install and activate Email Subscribers on multisite "
1614
+ "installation blogs?</a>"
1615
+ msgstr ""
1616
+
1617
+ #: ../help/help.php:106
1618
+ msgid ""
1619
+ "If you still can't find solution even after checking in above links, click "
1620
+ "<a target=\"_blank\" href=\"http://www.storeapps.org/support/contact-us/\"> "
1621
+ "here</a>."
1622
+ msgstr ""
notification/notification.js CHANGED
@@ -36,5 +36,5 @@ function _es_redirect()
36
 
37
  function _es_help()
38
  {
39
- window.open("http://www.storeapps.org/support/contact-us/");
40
  }
36
 
37
  function _es_help()
38
  {
39
+ window.open("https://wordpress.org/plugins/email-subscribers/faq/");
40
  }
query/db_default.php CHANGED
@@ -110,7 +110,7 @@ class es_cls_default
110
  $form['es_email_type'] = 'Dynamic Template';
111
  $action = es_cls_compose::es_template_ins($form, $action = "insert");
112
 
113
- $Sample = '<strong style="color: #990000"> Email subscribersr</strong><p>Email subscribers plugin has options to send newsletters to subscribers. It has a separate page with HTML editor to create a HTML newsletter.';
114
  $Sample .= ' Also have options to send notification email to subscribers when new posts are published to your blog. Separate page available to include and exclude categories to send notifications.';
115
  $Sample .= ' Using plugin Import and Export options admins can easily import registered users and commenters to subscriptions list.</p>';
116
  $Sample .= ' <strong style="color: #990000">Plugin Features</strong><ol>';
110
  $form['es_email_type'] = 'Dynamic Template';
111
  $action = es_cls_compose::es_template_ins($form, $action = "insert");
112
 
113
+ $Sample = '<strong style="color: #990000"> Email Subscribers</strong><p>Email Subscribers plugin has options to send newsletters to subscribers. It has a separate page with HTML editor to create a HTML newsletter.';
114
  $Sample .= ' Also have options to send notification email to subscribers when new posts are published to your blog. Separate page available to include and exclude categories to send notifications.';
115
  $Sample .= ' Using plugin Import and Export options admins can easily import registered users and commenters to subscriptions list.</p>';
116
  $Sample .= ' <strong style="color: #990000">Plugin Features</strong><ol>';
query/db_notification.php CHANGED
@@ -65,7 +65,7 @@ class es_cls_notification
65
  $wpdb->query($sSql);
66
  return true;
67
  }
68
-
69
  public static function es_notification_prepare($post_id = 0)
70
  {
71
  global $wpdb;
65
  $wpdb->query($sSql);
66
  return true;
67
  }
68
+
69
  public static function es_notification_prepare($post_id = 0)
70
  {
71
  global $wpdb;
readme.txt CHANGED
@@ -1,425 +1,490 @@
1
- === Email Subscribers ===
2
- Contributors: storeapps
3
- Donate link: http://www.storeapps.org/
4
- Author URI: http://www.storeapps.org/
5
- Plugin URI: http://www.storeapps.org/
6
- Tags: email, email sign-up, email marketing, email newsletter form, email signup, email widget, email newsletter, newsletter, newsletter form, newsletter marketing, newsletter plugin, newsletter sending, newsletter signup, newsletter widget, subscribe, subscribers, subscribe form, subscription, subscription form, subscription, plugin, send, sendmail, marketing, registration form, bulk, feedburner, form, iscrizione, list, mailup, signup, smtp, widget
7
- Requires at least: 3.4
8
- Tested up to: 4.4.2
9
- Stable tag: 3.1
10
- License: GPLv3
11
-
12
- Easily add a subscription form to your website or blog, then send HTML newsletters to subscribers. You can also send notification emails to subscribers when a new post is published automatically.
13
-
14
- == Description ==
15
-
16
- Email Subscriber is a fully featured newsletter plugin. It helps you achieve all your newsletter related tasks effectively in one single place.
17
-
18
- Email Subscriber plugin has a separate page with the HTML editor. You can easily create HTML newsletters using this editor in around 5 minutes. You also have a separate page to select the include and exclude categories before sending each newsletter. You can quickly import/ export email addresses of registered users and commentators to the subscription list using the import-export option in the plugin.
19
-
20
- This plugin also has a subscription box and it allows users to publicly subscribe by submitting their email addresses. You can add the subscription box to your sidebar (use widget), posts (use shortcode) and theme file (use php code).
21
-
22
- ### Main advantage
23
-
24
- 1. Easily **collect emails by adding a subscription form** to your sidebar (using widget), post (using shortcode) or theme file (using php code)
25
- 2. **Send beautifully crafted HTML newsletters** and send them to your subscribers. Either manually (or schedule it)
26
- 3. Send notifications **newsletters notifying your subscribers about the newly published post on your blog**
27
- 4. **Auto generate latest available posts in the blog and send to your subscribers via cron job**
28
-
29
- ### Plugin Features
30
-
31
- * Send **notification emails** to subscribers when **new posts are published**.
32
- * Option to **schedule mail (Cron job option)** or **send them manually**.
33
- * **Collect customer emails by adding a subscription box (Widget/Shortcode/PHP Code)**.
34
- * **Double opt-in and single opt-in** facility for subscribers.
35
- * **Email notification** to admin when user **signs up** (Optional).
36
- * **Automatic welcome mail** to subscribers (Optional).
37
- * **Unsubscribe link** in the mail.
38
- * **Import/Export subscriber emails**.
39
- * **HTML editor** to compose newsletters.
40
- * Send newsletters.
41
- * **Alphabetized list** in send mail page.
42
- * Sent **mail status** and when it was viewed.
43
- * Support **localization or internationalization**.
44
- * **Include/exclude categories** while sending a newsletter.
45
- * **Ability to control user access** (Roles and Capabilities).
46
-
47
- Read what clients have to say:
48
-
49
- > As many of my subscribers won't be too technical with computers, or use facebook/twitter etc., I was looking for a plug in that would be easy to use from a subscribers point of view. This works very well - the subscriber doesn't have to mess about with member settings and completing a profile etc, or have to opt out of categories, tags and such...they only have to enter their name and email address in a widget or page where the shortcode has been placed, then later click a link in a confirmatory email, and they're all set up to receive new posts updates. SIMPLE and effective. Well done to the developer, this is great as it's flexible and easy for the webmaster to set up and customise, but more importantly it's end user friendly.
50
- > - [RegTheDonk](https://wordpress.org/support/topic/nice-1139)
51
-
52
- And here's another customer's review:
53
-
54
- > I have tried quite a few subscribe by email type plugins and this by far blows them all out of the water. Beautiful emails and and great backend design for the admin. This works so nice and works well with SMTP solutions
55
- > - [Mike Price](https://wordpress.org/support/topic/best-email-subscriber-plugin)
56
-
57
- And one more:
58
-
59
- > This works very well indeed... It does all the necessary things for a newsletter/email list(s)... It is simple, clean, easy to engage, and looks good... I was also easily able to do some styling on the input forms by adding its widget css into my child's style.css file and add and/or change some properties and values... Thanks much for making this available and staying on top of it... :-)
60
- > - [crzyhrse](https://wordpress.org/support/topic/very-well-indeed)
61
-
62
- ### Translators
63
-
64
- * English (en_EN)
65
- * Turkish (tr_TR) - Dr Abdullah Manaz
66
- * Tamil (ta) - Gopi Ramasamy
67
- * Dutch (nl_NL) - John van Halderen
68
- * Dutch (nl_NL_2) - Paul't Hoen
69
- * Serbian (sr_RS) - Ogi Djuraskovic
70
- * German (de_DE) - Stefanie Drucker
71
- * Russian (ru_RU) - everyonesdesign
72
- * Polish (pl) - Abdul Sattar
73
-
74
- == Installation ==
75
-
76
- Option 1:
77
-
78
- 1. Go to WordPress Dashboard->Plugins->Add New
79
- 2. Search Email Subscribers plugin using search option
80
- 3. Find the plugin and click Install Now button
81
- 4. After installtion, click on Activate Plugin link to activate the plugin.
82
-
83
- Option 2:
84
-
85
- 1. Download the plugin email-subscribers.zip
86
- 2. Unpack the email-subscribers.zip file and extract the email-subscribers folder
87
- 3. Upload the plugin folder to your /wp-content/plugins/ directory
88
- 4. Go to WordPress dashboard, click on Plugins from the menu
89
- 5. Locate the Email Subscribers plugin and click on Activate link to activate the plugin.
90
-
91
- Option 3:
92
-
93
- 1. Download the plugin email-subscribers.zip
94
- 2. Go to WordPress Dashboard->Plugins->Add New
95
- 3. Click on Upload Plugin link from top
96
- 4. Upload the downloaded email-subscribers.zip file and click on Install Now
97
- 5. After installtion, click on Activate Plugin link to activate the plugin.
98
-
99
- == Frequently Asked Questions ==
100
-
101
- * Q1. What are all the steps to do after plugin activation?
102
- * Q2. How to setup subscription box widget?
103
- * Q3. How to import and export email address to subscriber list?
104
- * Q4. How to compose static newsletter?
105
- * Q5. How to add subscription box in posts?
106
- * Q6. How to modify Opt-in mail, Welcome mail, Admin mail contents?
107
- * Q7. How to send static newsletter manually?
108
- * Q8. Where to check sent mails?
109
- * Q9. How to configure notification email to subscribers when new posts are published?
110
- * Q10. How to update default alert message from subscription box?
111
- * Q11. How to add new subscribers group?
112
- * Q12. Is plugin contain bulk update option for subscribers group?
113
- * Q13. Is Mail not working on Email Subscribers wordpress plugin?
114
- * Q14. How to install and activate Email Subscribers on multisite installation blogs?
115
- * Q14. How to assign user roles to plugin menu?
116
- * Q15. How to schedule auto mails (Cron mails)?
117
- * Q16. How to schedule auto emails for Email subscribers wordpress plugin in cPanel?
118
- * Q17. How to schedule auto emails for Email subscribers wordpress plugin in Parallels Plesk?
119
- * Q18. How to add Group Selection in front end subscription box?
120
-
121
- FAQ Answer [http://www.gopiplus.com/work/2014/05/02/email-subscribers-wordpress-plugin/](http://www.gopiplus.com/work/2014/05/02/email-subscribers-wordpress-plugin/)
122
-
123
- = How to install and activate the plugin? and How to setup subscription box widget? =
124
-
125
- [youtube http://www.youtube.com/watch?v=xTlvNCTF46k]
126
-
127
- = How to compose Newsletter and How to Send Newsletter Emails to subscribers? =
128
-
129
- [youtube http://www.youtube.com/watch?v=_Gwxvs9oAIs]
130
-
131
- = How to setup notification mail when news posts are published in the blog? =
132
-
133
- [youtube http://www.youtube.com/watch?v=-qd4HvXRW7k]
134
-
135
- = How to Import & Export email address? =
136
-
137
- [youtube http://www.youtube.com/watch?v=SZEJCijAS1o]
138
-
139
- = How to update default alert message from subscription box? =
140
-
141
- [youtube http://www.youtube.com/watch?v=VwgEqsE5Ozw]
142
-
143
- == Screenshots ==
144
-
145
- 1. Front Page - Subscription box
146
-
147
- 2. Subscribers Management Admin page
148
-
149
- 3. Compose Mail Admin page
150
-
151
- 4. Notification Management Admin page
152
-
153
- 5. Send Mail Admin page
154
-
155
- 6. Cron Job Detailes Admin page (Schedule mail)
156
-
157
- 7. Settings Admin page
158
-
159
- 8. Roles and Capabilities Management Admin page
160
-
161
- 9. Sent Mails Admin page
162
-
163
- 10. Delivery Report Admin page
164
-
165
- == Changelog ==
166
-
167
- = 3.1 =
168
-
169
- * New: Scripts and styles are now localized and can be translated
170
- * Fix: Subscribe button not visible correctly in Chrome
171
- * Update: Added POT file
172
-
173
- = 3.0.1 =
174
-
175
- * New contributor name has been added successfully.
176
-
177
- = 3.0 =
178
-
179
- * Tested upto 4.4
180
-
181
- = 2.9.2 =
182
-
183
- * Add-on plugin available for advanced subscribers form (Users can select interested group in subscribers form).
184
- * Polish language file added in the language directory.
185
- * Text Domain slug has been added for Language Packs.
186
-
187
- = 2.9.1 =
188
-
189
- * Fixed cross-site scripting vulnerabilities and a potential SQL injection.
190
-
191
- = 2.9 =
192
-
193
- * Tested upto 4.3
194
- * Option available to add same email address to multiple group name
195
- * Cron Mail option added. With this option you can schedule cron jobs for newsletter and notification emails. Using this cron option you can schedule mail (example 100 mails per hour)
196
- * Group Name added in the export list.
197
- * Mail Type option has been added in the Send Mail admin page. With this option you can add the mails into cron job or you can send the mail immediately.
198
- * Notification Status option has been added in the notification setup page. With this option you can add notification mails into cron job or you can send the mail immediately when new post is published.
199
- * Group name filter has been added in the subscriber admin page.
200
-
201
- = 2.8 =
202
-
203
- * Tested upto 4.2
204
- * Fixed warning message bug on Roles page
205
- * Sync Email option has been added in the subscribers admin page. with this option all newly registered email address will be synced automatically into the plugin subscribers group.
206
-
207
- = 2.7 =
208
-
209
- * Up to plugin version 2.6 only administrator level users can manage this plugin in dashboard. From this version I have introduced new feature called Roles. The user role can be selected using this Roles Menu. For example, If you want to give Send Email feature to Editor. Go to plugin Roles menu using administrator login and select Editor role to Send Email Menu, So that your Editor level user can access plugin Send Email menu to publish newsletter emails.
210
-
211
- = 2.6 =
212
-
213
- * Added new option in the Email Import page to select Email Status and Email Group. with this option you can select (or create) group name and emails status when you import the email address.
214
-
215
- = 2.5 =
216
-
217
- * Now plugin supports custom post type. i.e. With this plugin, you can able to send automatic newsletter/notification emails when you publish custom posts.
218
-
219
- = 2.4 =
220
-
221
- * Tested upto 4.1
222
- * Fixed special character bug on Sender of Notification FROM email name.
223
-
224
- = 2.3 =
225
-
226
- * This warning issue has been fixed (Warning: call_user_func_array() expects parameter 1 to be a valid callback, function 'es_admin_option' not found or invalid function name)
227
-
228
- = 2.2 =
229
-
230
- * Warning message issue has been fix on notification mails. previously $post object was submitted to notification mail method without filtering post_id.
231
- * Added new keywords ###POSTLINK-ONLY###, ###POSTLINK-WITHTITLE### for notification mail content.
232
- ###POSTLINK-ONLY### - Use this key word to add post link in the mail content (Post link cannot be clickable)
233
- ###POSTLINK-WITHTITLE### - Use this key word to display post link with title (Clickable post title)
234
- ###POSTLINK### - Use this key word to display clickable post link.
235
-
236
- = 2.1 =
237
-
238
- * In view subscribers admin page, Filter option and paging moved to the top right corner (Previous version it was in bottom).
239
- * Plugin tested for multisite installation blogs.
240
-
241
- = 2.0 =
242
-
243
- * Tested up to WordPress 4.0
244
- * In view subscribers admin page, new option added to filter the email address based on status.
245
- * Paging option added on view subscribers admin page. In default it will show only first 200 emails, you have drop down box to navigate another page (i.e. 201 to 400 emails etc..).
246
- * Warning message fix on email address import page (i.e Strict standards: Only variables should be passed by reference) - Fixed
247
-
248
- = 1.9 =
249
-
250
- * New option added in admin setting page to update Sent Mail Report Subject/Content. For each newsletter mail and notification mail, plugin will send one report mail to admin with default content. Now with this option, admin can update that default mail content.
251
-
252
- = 1.8 =
253
-
254
- * Bug fixed on Double Opt-In welcome mail check (Previously it was not checking admin setting for welcome mail).
255
- * Tested up to WordPress 3.9.2
256
-
257
- = 1.7 =
258
-
259
- * Bug fixed on individual subscriber delete option.
260
- * Bug fixed on individual subscriber resend confirmation mail option.
261
-
262
- = 1.6 =
263
-
264
- * Bug fix on Send Mail/Notification warning message (i.e Call to undefined method issue has been fixed)
265
- * Call to undefined method es_cls_common::es_sent_report_plain() - Fixed
266
- * Call to undefined method es_cls_common::es_sent_report_html() - Fixed
267
-
268
- = 1.5 =
269
-
270
- * Bug fix on admin notification email for new subscribers.
271
-
272
- = 1.4 =
273
-
274
- * Scheduled published posts issue has been fixed (From this version onwards, Notification emails will be triggered for scheduled posts)
275
- * Bulk update option for subscribers group in admin view subscribers page.
276
-
277
- = 1.3 =
278
-
279
- * Fixed small error on mail compose page.
280
- * Added check for Already Confirmed emails. This is to prevent user clicking optin email link multiple time.
281
-
282
- = 1.2 =
283
-
284
- * Widget translation issue has been fixed
285
- * PHP warning message from Subscribers Export page has been removed.
286
-
287
- = 1.1 =
288
-
289
- * Subscriber admin page, Check ALL & Uncheck All bug fixed.
290
- * Updated Help documents.
291
-
292
- = 1.0 =
293
-
294
- * First version
295
-
296
- == Upgrade Notice ==
297
-
298
- = 3.1 =
299
-
300
- * New: Scripts and styles are now localized and can be translated
301
- * Fix: Subscribe button not visible correctly in Chrome
302
- * Update: Added POT file
303
-
304
- = 3.0.1 =
305
-
306
- * New contributor name has been added successfully.
307
-
308
- = 3.0 =
309
-
310
- * Tested upto 4.4
311
-
312
- = 2.9.2 =
313
-
314
- * Add-on plugin available for advanced subscribers form (Users can select interested group in subscribers form).
315
- * Polish language file added in the language directory.
316
- * Text Domain slug has been added for Language Packs.
317
-
318
- = 2.9.1 =
319
-
320
- * Fixed cross-site scripting vulnerabilities and a potential SQL injection.
321
-
322
- = 2.9 =
323
-
324
- * Tested upto 4.3
325
- * Option available to add same email address to multiple group name
326
- * Cron Mail option added. With this option you can schedule cron jobs for newsletter and notification emails. Using this cron option you can schedule mail (example 100 mails per hour)
327
- * Group Name added in the export list.
328
- * Mail Type option has been added in the Send Mail admin page. With this option you can add the mails into cron job or you can send the mail immediately.
329
- * Notification Status option has been added in the notification setup page. With this option you can add notification mails into cron job or you can send the mail immediately when new post is published.
330
- * Group name filter has been added in the subscriber admin page.
331
-
332
- = 2.8 =
333
-
334
- * Tested upto 4.2
335
- * Fixed warning message bug on Roles page
336
- * Sync Email option has been added in the subscribers admin page. with this option all newly registered email address will be synced automatically into the plugin subscribers group.
337
-
338
- = 2.7 =
339
-
340
- * Up to plugin version 2.6 only administrator level users can manage this plugin in dashboard. From this version I have introduced new feature called Roles. The user role can be selected using this Roles Menu. For example, If you want to give Send Email feature to Editor. Go to plugin Roles menu using administrator login and select Editor role to Send Email Menu, So that your Editor level user can access plugin Send Email menu to publish newsletter emails.
341
-
342
- = 2.6 =
343
-
344
- * Added new option in the Email Import page to select Email Status and Email Group. with this option you can select (or create) group name and emails status when you import the email address.
345
-
346
- = 2.5 =
347
-
348
- * Now plugin supports custom post type. i.e. With this plugin, you can able to send automatic newsletter/notification emails when you publish custom posts.
349
-
350
- = 2.4 =
351
-
352
- * Tested upto 4.1
353
- * Fixed special character bug on Sender of Notification FROM email name.
354
-
355
- = 2.3 =
356
-
357
- * This warning issue has been fixed (Warning: call_user_func_array() expects parameter 1 to be a valid callback, function 'es_admin_option' not found or invalid function name)
358
-
359
- = 2.2 =
360
-
361
- * Warning message issue has been fix on notification mails. previously $post object was submitted to notification mail method without filtering post_id.
362
- * Added new keywords ###POSTLINK-ONLY###, ###POSTLINK-WITHTITLE### for notification mail content.
363
- ###POSTLINK-ONLY### - Use this key word to add post link in the mail content (Post link cannot be clickable)
364
- ###POSTLINK-WITHTITLE### - Use this key word to display post link with title (Clickable post title)
365
- ###POSTLINK### - Use this key word to display clickable post link.
366
-
367
- = 2.1 =
368
-
369
- * In view subscribers admin page, Filter option and paging moved to the top right corner (Previous version it was in bottom).
370
- * Plugin tested for multisite installation blogs.
371
-
372
- = 2.0 =
373
-
374
- * Tested up to WordPress 4.0
375
- * In view subscribers admin page, new option added to filter the email address based on status.
376
- * Paging option added on view subscribers admin page. In default it will show only first 200 emails, you have drop down box to navigate another page (i.e. 201 to 400 emails etc..).
377
- * Warning message fix on email address import page (i.e Strict standards: Only variables should be passed by reference) - Fixed
378
-
379
- = 1.9 =
380
-
381
- * New option added in admin setting page to update Sent Mail Report Subject/Content. For each newsletter mail and notification mail, plugin will send one report mail to admin with default content. Now with this option, admin can update that default mail content.
382
-
383
- = 1.8 =
384
-
385
- * Bug fixed on Double Opt-In welcome mail check (Previously it was not checking admin setting for welcome mail).
386
- * Tested up to WordPress 3.9.2
387
-
388
- = 1.7 =
389
-
390
- * Bug fixed on individual subscriber delete option.
391
- * Bug fixed on individual subscriber resend confirmation mail option.
392
-
393
- = 1.6 =
394
-
395
- * Bug fix on Send Mail/Notification warning message (i.e Call to undefined method issue has been fixed)
396
- * Call to undefined method es_cls_common::es_sent_report_plain() - Fixed
397
- * Call to undefined method es_cls_common::es_sent_report_html() - Fixed
398
-
399
- = 1.5 =
400
-
401
- * Bug fix on admin notification email for new subscribers.
402
-
403
- = 1.4 =
404
-
405
- * Scheduled published posts issue has been fixed (From this version onwards, Notification emails will be triggered for scheduled posts)
406
- * Bulk update option for subscribers group in admin view subscribers page.
407
-
408
- = 1.3 =
409
-
410
- * Fixed small error on mail compose page.
411
- * Added check for Already Confirmed emails. This is to prevent user clicking optin email link multiple time.
412
-
413
- = 1.2 =
414
-
415
- * Widget translation issue has been fixed
416
- * PHP warning message from Subscribers Export page has been removed.
417
-
418
- = 1.1 =
419
-
420
- * Subscriber admin page, Check ALL & Uncheck All bug fixed.
421
- * Updated Help documents.
422
-
423
- = 1.0 =
424
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
425
  * First version
1
+ === Email Subscribers ===
2
+ Contributors: storeapps, niravmehta, Mansi Shah
3
+ Donate link: http://www.storeapps.org/
4
+ Author URI: http://www.storeapps.org/
5
+ Plugin URI: http://www.storeapps.org/
6
+ Tags: email, email sign-up, email marketing, email newsletter form, email signup, email widget, email newsletter, newsletter, newsletter form, newsletter marketing, newsletter plugin, newsletter sending, newsletter signup, newsletter widget, subscribe, subscribers, subscribe form, subscription, subscription form, subscription, plugin, send, sendmail, marketing, registration form, bulk, feedburner, form, iscrizione, list, mailup, signup, smtp, widget
7
+ Requires at least: 3.4
8
+ Tested up to: 4.4.2
9
+ Stable tag: 3.1.1
10
+ License: GPLv3
11
+
12
+ Add subscription form on website,send HTML newsletters to subscribers & automatically notify them about new blog posts once it gets published.
13
+
14
+ == Description ==
15
+
16
+ Email Subscribers is a fully featured newsletter plugin. It helps you achieve all your newsletter related tasks effectively in one single place.
17
+
18
+ Email Subscribers plugin has a separate page with the HTML editor. You can easily create HTML newsletters using this editor in around 5 minutes. You also have a separate page to select the include and exclude categories before sending each newsletter. You can quickly import/ export email addresses of registered users and commentators to the subscription list using the import-export option in the plugin.
19
+
20
+ Email Subscribers plugin also has a subscription box and it allows users to publicly subscribe by submitting their email addresses. You can add the subscription box to your site using
21
+
22
+ * Shortcode for any posts or pages
23
+
24
+ `[email-subscribers namefield="YES" desc="" group="Public"]`
25
+
26
+ * Widget option
27
+
28
+ Go to Dashboard->Appearance->Widgets. Drag and drop the Email Subscribers widget to your sidebar location.
29
+
30
+ * Add directly in the theme
31
+
32
+ `<?php es_subbox( $namefield = "YES", $desc = "", $group = "" ); ?>`
33
+
34
+ ### Main advantages
35
+
36
+ 1. Easily **collect emails by adding a subscription form** to your sidebar (using widget), post (using shortcode) or theme file (using php code)
37
+ 2. **Send beautifully crafted HTML newsletters** and send them to your subscribers. Either manually (or schedule it)
38
+ 3. Send notifications **newsletters notifying your subscribers about the newly published post on your blog**
39
+ 4. **Auto generate latest available posts in the blog and send to your subscribers via cron job**
40
+
41
+ ### Plugin Features
42
+
43
+ * Send **notification emails** to subscribers when **new posts are published**.
44
+ * Option to **schedule mail (Cron job option)** or **send them manually**.
45
+ * **Collect customer emails by adding a subscription box (Widget/Shortcode/PHP Code)**.
46
+ * **Double opt-in and single opt-in** facility for subscribers.
47
+ * **Email notification** to admin when user **signs up** (Optional).
48
+ * **Automatic welcome mail** to subscribers (Optional).
49
+ * **Unsubscribe link** in the mail.
50
+ * **Import/Export subscribers emails**.
51
+ * **HTML editor** to compose newsletters.
52
+ * Send newsletters.
53
+ * **Alphabetized list** in send mail page.
54
+ * Sent **mail status** and when it was viewed.
55
+ * Support **localization or internationalization**.
56
+ * **Include/exclude categories** while sending a newsletter.
57
+ * **Ability to control user access** (Roles and Capabilities).
58
+
59
+ ### Use Email Subscribers with it's Free Addon
60
+
61
+ Use Email Subscribers with it's free Addon - [Email Subscribers Advanced Form](https://wordpress.org/plugins/email-subscribers-advanced-form/).
62
+ It will extend Email Subscribers Form functionality by providing an option to your users to select interested group in the Subscribers Form.
63
+
64
+ ### Read what clients have to say:
65
+
66
+ > As many of my subscribers won't be too technical with computers, or use facebook/twitter etc., I was looking for a plug in that would be easy to use from a subscribers point of view. This works very well - the subscriber doesn't have to mess about with member settings and completing a profile etc, or have to opt out of categories, tags and such...they only have to enter their name and email address in a widget or page where the shortcode has been placed, then later click a link in a confirmatory email, and they're all set up to receive new posts updates. SIMPLE and effective. Well done to the developer, this is great as it's flexible and easy for the webmaster to set up and customise, but more importantly it's end user friendly.
67
+ > - [RegTheDonk](https://wordpress.org/support/topic/nice-1139)
68
+
69
+ And here's another customer's review:
70
+
71
+ > I have tried quite a few subscribe by email type plugins and this by far blows them all out of the water. Beautiful emails and and great backend design for the admin. This works so nice and works well with SMTP solutions
72
+ > - [Mike Price](https://wordpress.org/support/topic/best-email-subscriber-plugin)
73
+
74
+ And one more:
75
+
76
+ > This works very well indeed... It does all the necessary things for a newsletter/email list(s)... It is simple, clean, easy to engage, and looks good... I was also easily able to do some styling on the input forms by adding its widget css into my child's style.css file and add and/or change some properties and values... Thanks much for making this available and staying on top of it... :-)
77
+ > - [crzyhrse](https://wordpress.org/support/topic/very-well-indeed)
78
+
79
+ ### Help Fellow WordPressers by Writing a Review
80
+
81
+ If you like Email Subscribers, please leave a **five star** review on WordPress. That helps fellow website owners assess Email Subscribers easily and benefit from it!
82
+
83
+ ### Translators
84
+
85
+ * Turkish (tr_TR) - Dr Abdullah Manaz
86
+ * Tamil (ta) - Gopi Ramasamy
87
+ * Dutch (nl_NL) - John van Halderen
88
+ * Dutch (nl_NL_2) - Paul't Hoen
89
+ * Serbian (sr_RS) - Ogi Djuraskovic
90
+ * German (de_DE) - Stefanie Drucker, Vineet Talwar
91
+ * Russian (ru_RU) - everyonesdesign
92
+ * Polish (pl) - Abdul Sattar
93
+
94
+ **Note**: Translations of above language files are not updated w.r.t Email Subscribers version 3.1. If you have updated translation files of the same language, then please write to us from [here](http://www.storeapps.org/support/contact-us/).
95
+
96
+ == Installation ==
97
+
98
+ Option 1:
99
+
100
+ 1. Go to WordPress Dashboard->Plugins->Add New
101
+ 2. Search Email Subscribers plugin using search option
102
+ 3. Find the plugin and click Install Now button
103
+ 4. After installtion, click on Activate Plugin link to activate the plugin.
104
+
105
+ Option 2:
106
+
107
+ 1. Download the plugin email-subscribers.zip
108
+ 2. Unpack the email-subscribers.zip file and extract the email-subscribers folder
109
+ 3. Upload the plugin folder to your /wp-content/plugins/ directory
110
+ 4. Go to WordPress dashboard, click on Plugins from the menu
111
+ 5. Locate the Email Subscribers plugin and click on Activate link to activate the plugin.
112
+
113
+ Option 3:
114
+
115
+ 1. Download the plugin email-subscribers.zip
116
+ 2. Go to WordPress Dashboard->Plugins->Add New
117
+ 3. Click on Upload Plugin link from top
118
+ 4. Upload the downloaded email-subscribers.zip file and click on Install Now
119
+ 5. After installtion, click on Activate Plugin link to activate the plugin.
120
+
121
+ == Frequently Asked Questions ==
122
+
123
+ ### Email Notifications are not being received by Subscribers?
124
+
125
+ Make sure you are using latest version of Email subscribers. Then please confirm that you have followed all the steps from here : [Configure notification email to subscribers when new posts are published](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-notifications-settings/). You can also ask your Subscriber's to check in your SPAM/JUNK folder as emails might be ending up there.
126
+ Also check that the new post that you are publishing, that category is checked under the Notification tab. Because if that category is not checked, then post published to that category won't be send to subscribers.
127
+
128
+ Sometimes, there is a delay of sending emails from the server due to excess number of emails being send. Have a check with your Host Provider if the emails are being send by checking in email log file or if the emails are getting bounced back or if your host provider has not blocked email domains to whom you are sending notifications.
129
+ If your Host Provider is blocking your emails, then try sending emails in Plain Text format instead of HTML format and then check.
130
+ If your Host Provider is not blocking your emails and you are getting a email send notice & a record of it in email log file, then there is a possibility that your Subscriber's Host Provider is blocking the emails.
131
+
132
+ Also, just for testing, create one sample notification and try sending it to 1 or 2 subscribers (including yourself) and then check if you are receiving the emails or not.
133
+
134
+ If you are sending emails using Cron, then in Cron, initially you can send only 50 emails per hour and this value can be changed from WordPress -> Email Subscribers -> Cron Mail -> Cron Count.
135
+
136
+ ### How to update default alert message from subscription box?
137
+
138
+ Use any translation plugin (eg: **Loco Translate**) and translate the text that you want to update.
139
+
140
+ * [What are all the steps to do after plugin activation?](http://www.gopiplus.com/work/2014/05/07/email-subscribers-wordpress-plugin-how-to-install-and-errors-fix/)
141
+
142
+ * [Setup subscription box widget](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscription-box/)
143
+
144
+ * [Import and export email address to subscribers list](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscriber-management-and-import-and-export-email-address/)
145
+
146
+ * [How to compose static newsletters?](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-compose-html-emails/)
147
+
148
+ * [Modify Opt-in mail, Welcome mail, Admin mail contents](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-general-settings/)
149
+
150
+ * [How to send static newsletter manually?](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-send-email-newsletters/)
151
+
152
+ * [Where to check sent mails?](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-send-email-newsletters/)
153
+
154
+ * [Configure notification email to subscribers when new posts are published](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-notifications-settings/)
155
+
156
+ * [How to add new subscribers group?](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscriber-management-and-import-and-export-email-address/)
157
+
158
+ * [Does plugin contain bulk update option for subscribers group?](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscriber-management-and-import-and-export-email-address/)
159
+
160
+ * [Is Mail not working on Email Subscribers wordpress plugin?](http://www.gopiplus.com/work/2014/08/17/mail-not-working-on-email-subscribers-wordpress-plugin/)
161
+
162
+ * [How to install and activate Email Subscribers on multisite installation blogs?](http://www.gopiplus.com/work/2014/08/31/email-subscribers-wordpress-plugin-network-activation-for-multisite-installation/)
163
+
164
+ * [Schedule auto mails/Cron mails](http://www.gopiplus.com/work/2015/08/08/email-subscribers-wordpress-plugin-how-to-schedule-auto-mails-cron-mails/)
165
+
166
+ * [Schedule auto emails for Email Subscribers in cPanel](http://www.gopiplus.com/work/2015/08/04/how-to-schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-cpanel/)?
167
+
168
+ * [Schedule auto emails for Email Subscribers in Parallels Plesk](http://www.gopiplus.com/work/2015/08/02/how-to-schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-plesk/)
169
+
170
+ * [Add Group Selection in front end subscription box](http://www.gopiplus.com/work/2015/09/24/email-subscribers-advanced-form-wordpress-plugin/)
171
+
172
+ = How to install and activate the plugin? and How to setup subscription box widget? =
173
+
174
+ [youtube http://www.youtube.com/watch?v=xTlvNCTF46k]
175
+
176
+ = How to compose Newsletter and How to Send Newsletter Emails to subscribers? =
177
+
178
+ [youtube http://www.youtube.com/watch?v=_Gwxvs9oAIs]
179
+
180
+ = How to setup notification mail when news posts are published in the blog? =
181
+
182
+ [youtube http://www.youtube.com/watch?v=-qd4HvXRW7k]
183
+
184
+ = How to Import & Export email address? =
185
+
186
+ [youtube http://www.youtube.com/watch?v=SZEJCijAS1o]
187
+
188
+ == Screenshots ==
189
+
190
+ 1. Front Page - Subscription box
191
+
192
+ 2. Subscribers Management Admin page
193
+
194
+ 3. Compose Mail Admin page
195
+
196
+ 4. Notification Management Admin page
197
+
198
+ 5. Send Mail Admin page
199
+
200
+ 6. Cron Job Detailes Admin page (Schedule mail)
201
+
202
+ 7. Settings Admin page
203
+
204
+ 8. Roles and Capabilities Management Admin page
205
+
206
+ 9. Sent Mails Admin page
207
+
208
+ 10. Delivery Report Admin page
209
+
210
+ == Changelog ==
211
+
212
+ = 3.1.1 =
213
+
214
+ * Fix: call_user_func_array() expects parameter 1 to be a valid callback, function 'es_admin_option' not found or invalid function name
215
+ * Fix: Incorrect plugin name in admin dashboard
216
+ * Fix: Warnings in console on submitting subscription form in Chrome
217
+ * Update: Revised Help & Info page inside plugin
218
+ * Update: Added translation for missing texts
219
+ * Update: Updated POT file
220
+ * Tweaks: Minor tweaks
221
+
222
+ = 3.1 =
223
+
224
+ * New: Scripts and styles are now localized and can be translated
225
+ * Fix: Subscribe button not visible correctly in Chrome
226
+ * Update: Added POT file
227
+
228
+ = 3.0.1 =
229
+
230
+ * New contributor name has been added successfully.
231
+
232
+ = 3.0 =
233
+
234
+ * Tested upto 4.4
235
+
236
+ = 2.9.2 =
237
+
238
+ * Add-on plugin available for advanced subscribers form (Users can select interested group in subscribers form).
239
+ * Polish language file added in the language directory.
240
+ * Text Domain slug has been added for Language Packs.
241
+
242
+ = 2.9.1 =
243
+
244
+ * Fixed cross-site scripting vulnerabilities and a potential SQL injection.
245
+
246
+ = 2.9 =
247
+
248
+ * Tested upto 4.3
249
+ * Option available to add same email address to multiple group name
250
+ * Cron Mail option added. With this option you can schedule cron jobs for newsletter and notification emails. Using this cron option you can schedule mail (example 100 mails per hour)
251
+ * Group Name added in the export list.
252
+ * Mail Type option has been added in the Send Mail admin page. With this option you can add the mails into cron job or you can send the mail immediately.
253
+ * Notification Status option has been added in the notification setup page. With this option you can add notification mails into cron job or you can send the mail immediately when new post is published.
254
+ * Group name filter has been added in the subscriber admin page.
255
+
256
+ = 2.8 =
257
+
258
+ * Tested upto 4.2
259
+ * Fixed warning message bug on Roles page
260
+ * Sync Email option has been added in the subscribers admin page. with this option all newly registered email address will be synced automatically into the plugin subscribers group.
261
+
262
+ = 2.7 =
263
+
264
+ * Up to plugin version 2.6 only administrator level users can manage this plugin in dashboard. From this version I have introduced new feature called Roles. The user role can be selected using this Roles Menu. For example, If you want to give Send Email feature to Editor. Go to plugin Roles menu using administrator login and select Editor role to Send Email Menu, So that your Editor level user can access plugin Send Email menu to publish newsletter emails.
265
+
266
+ = 2.6 =
267
+
268
+ * Added new option in the Email Import page to select Email Status and Email Group. with this option you can select (or create) group name and emails status when you import the email address.
269
+
270
+ = 2.5 =
271
+
272
+ * Now plugin supports custom post type. i.e. With this plugin, you can able to send automatic newsletter/notification emails when you publish custom posts.
273
+
274
+ = 2.4 =
275
+
276
+ * Tested upto 4.1
277
+ * Fixed special character bug on Sender of Notification FROM email name.
278
+
279
+ = 2.3 =
280
+
281
+ * This warning issue has been fixed (Warning: call_user_func_array() expects parameter 1 to be a valid callback, function 'es_admin_option' not found or invalid function name)
282
+
283
+ = 2.2 =
284
+
285
+ * Warning message issue has been fix on notification mails. previously $post object was submitted to notification mail method without filtering post_id.
286
+ * Added new keywords ###POSTLINK-ONLY###, ###POSTLINK-WITHTITLE### for notification mail content.
287
+ ###POSTLINK-ONLY### - Use this key word to add post link in the mail content (Post link cannot be clickable)
288
+ ###POSTLINK-WITHTITLE### - Use this key word to display post link with title (Clickable post title)
289
+ ###POSTLINK### - Use this key word to display clickable post link.
290
+
291
+ = 2.1 =
292
+
293
+ * In view subscribers admin page, Filter option and paging moved to the top right corner (Previous version it was in bottom).
294
+ * Plugin tested for multisite installation blogs.
295
+
296
+ = 2.0 =
297
+
298
+ * Tested up to WordPress 4.0
299
+ * In view subscribers admin page, new option added to filter the email address based on status.
300
+ * Paging option added on view subscribers admin page. In default it will show only first 200 emails, you have drop down box to navigate another page (i.e. 201 to 400 emails etc..).
301
+ * Warning message fix on email address import page (i.e Strict standards: Only variables should be passed by reference) - Fixed
302
+
303
+ = 1.9 =
304
+
305
+ * New option added in admin setting page to update Sent Mail Report Subject/Content. For each newsletter mail and notification mail, plugin will send one report mail to admin with default content. Now with this option, admin can update that default mail content.
306
+
307
+ = 1.8 =
308
+
309
+ * Bug fixed on Double Opt-In welcome mail check (Previously it was not checking admin setting for welcome mail).
310
+ * Tested up to WordPress 3.9.2
311
+
312
+ = 1.7 =
313
+
314
+ * Bug fixed on individual subscriber delete option.
315
+ * Bug fixed on individual subscriber resend confirmation mail option.
316
+
317
+ = 1.6 =
318
+
319
+ * Bug fix on Send Mail/Notification warning message (i.e Call to undefined method issue has been fixed)
320
+ * Call to undefined method es_cls_common::es_sent_report_plain() - Fixed
321
+ * Call to undefined method es_cls_common::es_sent_report_html() - Fixed
322
+
323
+ = 1.5 =
324
+
325
+ * Bug fix on admin notification email for new subscribers.
326
+
327
+ = 1.4 =
328
+
329
+ * Scheduled published posts issue has been fixed (From this version onwards, Notification emails will be triggered for scheduled posts)
330
+ * Bulk update option for subscribers group in admin view subscribers page.
331
+
332
+ = 1.3 =
333
+
334
+ * Fixed small error on mail compose page.
335
+ * Added check for Already Confirmed emails. This is to prevent user clicking optin email link multiple time.
336
+
337
+ = 1.2 =
338
+
339
+ * Widget translation issue has been fixed
340
+ * PHP warning message from Subscribers Export page has been removed.
341
+
342
+ = 1.1 =
343
+
344
+ * Subscriber admin page, Check ALL & Uncheck All bug fixed.
345
+ * Updated Help documents.
346
+
347
+ = 1.0 =
348
+
349
+ * First version
350
+
351
+ == Upgrade Notice ==
352
+
353
+ = 3.1.1 =
354
+
355
+ * Fix: call_user_func_array() expects parameter 1 to be a valid callback, function 'es_admin_option' not found or invalid function name
356
+ * Fix: Incorrect plugin name in admin dashboard
357
+ * Fix: Warnings in console on submitting subscription form in Chrome
358
+ * Update: Revised Help & Info page inside plugin
359
+ * Update: Added translation for missing texts
360
+ * Update: Updated POT file
361
+ * Tweaks: Minor tweaks
362
+
363
+ = 3.1 =
364
+
365
+ * New: Scripts and styles are now localized and can be translated
366
+ * Fix: Subscribe button not visible correctly in Chrome
367
+ * Update: Added POT file
368
+
369
+ = 3.0.1 =
370
+
371
+ * New contributor name has been added successfully.
372
+
373
+ = 3.0 =
374
+
375
+ * Tested upto 4.4
376
+
377
+ = 2.9.2 =
378
+
379
+ * Add-on plugin available for advanced subscribers form (Users can select interested group in subscribers form).
380
+ * Polish language file added in the language directory.
381
+ * Text Domain slug has been added for Language Packs.
382
+
383
+ = 2.9.1 =
384
+
385
+ * Fixed cross-site scripting vulnerabilities and a potential SQL injection.
386
+
387
+ = 2.9 =
388
+
389
+ * Tested upto 4.3
390
+ * Option available to add same email address to multiple group name
391
+ * Cron Mail option added. With this option you can schedule cron jobs for newsletter and notification emails. Using this cron option you can schedule mail (example 100 mails per hour)
392
+ * Group Name added in the export list.
393
+ * Mail Type option has been added in the Send Mail admin page. With this option you can add the mails into cron job or you can send the mail immediately.
394
+ * Notification Status option has been added in the notification setup page. With this option you can add notification mails into cron job or you can send the mail immediately when new post is published.
395
+ * Group name filter has been added in the subscriber admin page.
396
+
397
+ = 2.8 =
398
+
399
+ * Tested upto 4.2
400
+ * Fixed warning message bug on Roles page
401
+ * Sync Email option has been added in the subscribers admin page. with this option all newly registered email address will be synced automatically into the plugin subscribers group.
402
+
403
+ = 2.7 =
404
+
405
+ * Up to plugin version 2.6 only administrator level users can manage this plugin in dashboard. From this version I have introduced new feature called Roles. The user role can be selected using this Roles Menu. For example, If you want to give Send Email feature to Editor. Go to plugin Roles menu using administrator login and select Editor role to Send Email Menu, So that your Editor level user can access plugin Send Email menu to publish newsletter emails.
406
+
407
+ = 2.6 =
408
+
409
+ * Added new option in the Email Import page to select Email Status and Email Group. with this option you can select (or create) group name and emails status when you import the email address.
410
+
411
+ = 2.5 =
412
+
413
+ * Now plugin supports custom post type. i.e. With this plugin, you can able to send automatic newsletter/notification emails when you publish custom posts.
414
+
415
+ = 2.4 =
416
+
417
+ * Tested upto 4.1
418
+ * Fixed special character bug on Sender of Notification FROM email name.
419
+
420
+ = 2.3 =
421
+
422
+ * This warning issue has been fixed (Warning: call_user_func_array() expects parameter 1 to be a valid callback, function 'es_admin_option' not found or invalid function name)
423
+
424
+ = 2.2 =
425
+
426
+ * Warning message issue has been fix on notification mails. previously $post object was submitted to notification mail method without filtering post_id.
427
+ * Added new keywords ###POSTLINK-ONLY###, ###POSTLINK-WITHTITLE### for notification mail content.
428
+ ###POSTLINK-ONLY### - Use this key word to add post link in the mail content (Post link cannot be clickable)
429
+ ###POSTLINK-WITHTITLE### - Use this key word to display post link with title (Clickable post title)
430
+ ###POSTLINK### - Use this key word to display clickable post link.
431
+
432
+ = 2.1 =
433
+
434
+ * In view subscribers admin page, Filter option and paging moved to the top right corner (Previous version it was in bottom).
435
+ * Plugin tested for multisite installation blogs.
436
+
437
+ = 2.0 =
438
+
439
+ * Tested up to WordPress 4.0
440
+ * In view subscribers admin page, new option added to filter the email address based on status.
441
+ * Paging option added on view subscribers admin page. In default it will show only first 200 emails, you have drop down box to navigate another page (i.e. 201 to 400 emails etc..).
442
+ * Warning message fix on email address import page (i.e Strict standards: Only variables should be passed by reference) - Fixed
443
+
444
+ = 1.9 =
445
+
446
+ * New option added in admin setting page to update Sent Mail Report Subject/Content. For each newsletter mail and notification mail, plugin will send one report mail to admin with default content. Now with this option, admin can update that default mail content.
447
+
448
+ = 1.8 =
449
+
450
+ * Bug fixed on Double Opt-In welcome mail check (Previously it was not checking admin setting for welcome mail).
451
+ * Tested up to WordPress 3.9.2
452
+
453
+ = 1.7 =
454
+
455
+ * Bug fixed on individual subscriber delete option.
456
+ * Bug fixed on individual subscriber resend confirmation mail option.
457
+
458
+ = 1.6 =
459
+
460
+ * Bug fix on Send Mail/Notification warning message (i.e Call to undefined method issue has been fixed)
461
+ * Call to undefined method es_cls_common::es_sent_report_plain() - Fixed
462
+ * Call to undefined method es_cls_common::es_sent_report_html() - Fixed
463
+
464
+ = 1.5 =
465
+
466
+ * Bug fix on admin notification email for new subscribers.
467
+
468
+ = 1.4 =
469
+
470
+ * Scheduled published posts issue has been fixed (From this version onwards, Notification emails will be triggered for scheduled posts)
471
+ * Bulk update option for subscribers group in admin view subscribers page.
472
+
473
+ = 1.3 =
474
+
475
+ * Fixed small error on mail compose page.
476
+ * Added check for Already Confirmed emails. This is to prevent user clicking optin email link multiple time.
477
+
478
+ = 1.2 =
479
+
480
+ * Widget translation issue has been fixed
481
+ * PHP warning message from Subscribers Export page has been removed.
482
+
483
+ = 1.1 =
484
+
485
+ * Subscriber admin page, Check ALL & Uncheck All bug fixed.
486
+ * Updated Help documents.
487
+
488
+ = 1.0 =
489
+
490
  * First version
roles/roles.js CHANGED
@@ -27,5 +27,5 @@ function _es_redirect()
27
 
28
  function _es_help()
29
  {
30
- window.open("http://www.storeapps.org/support/contact-us/");
31
  }
27
 
28
  function _es_help()
29
  {
30
+ window.open("https://wordpress.org/plugins/email-subscribers/faq/");
31
  }
sendmail/sendmail.js CHANGED
@@ -5,7 +5,7 @@ function _es_redirect()
5
 
6
  function _es_help()
7
  {
8
- window.open("http://www.storeapps.org/support/contact-us/");
9
  }
10
 
11
  function _es_checkall(FormName, FieldName, CheckValue)
5
 
6
  function _es_help()
7
  {
8
+ window.open("https://wordpress.org/plugins/email-subscribers/faq/");
9
  }
10
 
11
  function _es_checkall(FormName, FieldName, CheckValue)
sentmail/sentmail.js CHANGED
@@ -14,7 +14,7 @@ function _es_redirect()
14
 
15
  function _es_help()
16
  {
17
- window.open("http://www.storeapps.org/support/contact-us/");
18
  }
19
 
20
  function _es_bulkaction()
14
 
15
  function _es_help()
16
  {
17
+ window.open("https://wordpress.org/plugins/email-subscribers/faq/");
18
  }
19
 
20
  function _es_bulkaction()
settings/settings.js CHANGED
@@ -5,5 +5,5 @@ function _es_redirect()
5
 
6
  function _es_help()
7
  {
8
- window.open("http://www.storeapps.org/support/contact-us/");
9
  }
5
 
6
  function _es_help()
7
  {
8
+ window.open("https://wordpress.org/plugins/email-subscribers/faq/");
9
  }
subscribers/view-group.js CHANGED
@@ -36,5 +36,5 @@ function _es_group_redirect()
36
 
37
  function _es_group_help()
38
  {
39
- window.open("http://www.storeapps.org/support/contact-us/");
40
  }
36
 
37
  function _es_group_help()
38
  {
39
+ window.open("https://wordpress.org/plugins/email-subscribers/faq/");
40
  }
subscribers/view-subscriber.js CHANGED
@@ -5,7 +5,7 @@ function _es_redirect()
5
 
6
  function _es_help()
7
  {
8
- window.open("http://www.storeapps.org/support/contact-us/");
9
  }
10
 
11
  function _es_addemail()
@@ -124,8 +124,6 @@ function _es_search_count_action(cnt)
124
  document.frm_es_display.submit();
125
  }
126
 
127
-
128
-
129
  function _es_bulkaction()
130
  {
131
  if(document.frm_es_display.bulk_action.value=="")
5
 
6
  function _es_help()
7
  {
8
+ window.open("https://wordpress.org/plugins/email-subscribers/faq/");
9
  }
10
 
11
  function _es_addemail()
124
  document.frm_es_display.submit();
125
  }
126
 
 
 
127
  function _es_bulkaction()
128
  {
129
  if(document.frm_es_display.bulk_action.value=="")
widget/es-widget-page.js CHANGED
@@ -62,8 +62,8 @@ function es_submit_requests(url, parameters)
62
  http_req.onreadystatechange = eemail_submitresults;
63
  http_req.open('POST', url, true);
64
  http_req.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
65
- http_req.setRequestHeader("Content-length", parameters.length);
66
- http_req.setRequestHeader("Connection", "close");
67
  http_req.send(parameters);
68
  }
69
 
@@ -85,7 +85,7 @@ function eemail_submitresults()
85
  else if((http_req.responseText).trim() == "subscribed-pending-doubleoptin")
86
  {
87
  alert(es_widget_page_notices.es_success_notice);
88
- document.getElementById("es_msg_pg").innerHTML = "Subscribed successfully.";
89
  document.getElementById("es_txt_email_pg").value="";
90
  document.getElementById("es_txt_name_pg").value="";
91
  }
62
  http_req.onreadystatechange = eemail_submitresults;
63
  http_req.open('POST', url, true);
64
  http_req.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
65
+ // http_req.setRequestHeader("Content-length", parameters.length);
66
+ // http_req.setRequestHeader("Connection", "close");
67
  http_req.send(parameters);
68
  }
69
 
85
  else if((http_req.responseText).trim() == "subscribed-pending-doubleoptin")
86
  {
87
  alert(es_widget_page_notices.es_success_notice);
88
+ document.getElementById("es_msg_pg").innerHTML = es_widget_notices.es_success_message;
89
  document.getElementById("es_txt_email_pg").value="";
90
  document.getElementById("es_txt_name_pg").value="";
91
  }
widget/es-widget.js CHANGED
@@ -63,8 +63,8 @@ function es_submit_request(url, parameters)
63
  http_req.onreadystatechange = eemail_submitresult;
64
  http_req.open('POST', url, true);
65
  http_req.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
66
- http_req.setRequestHeader("Content-length", parameters.length);
67
- http_req.setRequestHeader("Connection", "close");
68
  http_req.send(parameters);
69
  }
70
 
@@ -86,7 +86,7 @@ function eemail_submitresult()
86
  else if((http_req.responseText).trim() == "subscribed-pending-doubleoptin")
87
  {
88
  alert(es_widget_notices.es_success_notice);
89
- document.getElementById("es_msg").innerHTML = "Subscribed successfully.";
90
  document.getElementById("es_txt_email").value="";
91
  document.getElementById("es_txt_name").value="";
92
  }
63
  http_req.onreadystatechange = eemail_submitresult;
64
  http_req.open('POST', url, true);
65
  http_req.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
66
+ // http_req.setRequestHeader("Content-length", parameters.length);
67
+ // http_req.setRequestHeader("Connection", "close");
68
  http_req.send(parameters);
69
  }
70
 
86
  else if((http_req.responseText).trim() == "subscribed-pending-doubleoptin")
87
  {
88
  alert(es_widget_notices.es_success_notice);
89
+ document.getElementById("es_msg").innerHTML = es_widget_notices.es_success_message;
90
  document.getElementById("es_txt_email").value="";
91
  document.getElementById("es_txt_name").value="";
92
  }