Email Subscribers & Newsletters - Version 3.2.8

Version Description

(20.03.2017) =

  • New: Added label tags to subscribe form
  • New: Show success / error messages below subscribe form instead of above
  • Fix: Single Opt In was sometimes giving 'Please try after some time' error
  • Fix: Re-subscribing same subscriber was not giving 'Email Address already exists' error incase of Single Opt In
  • Fix: Name field was not clearing on successful sign up from subscribe form
  • Fix: Show 'sent reports time' in site's timezone instead of UTC
  • Fix: Show only active (Confirmed & Single Opt In) subscribers while exporting subscribers list
  • Fix: Made few strings translatable
  • Update: Security check in files
  • Update: Code improvements when using $wpdb->prefix for queries
  • Update: Text correction & improvements
  • Update: POT file
  • Update: Translation for Polish (pl_PL) language updated (Thanks to Witold)
  • Update: Translation for Catalan (ca) language updated (Thanks to Jordi Jorda)
  • Update: Translation for Czech (cs_CZ) language updated (Thanks to Martin)
  • Update: Translation for Lithuanian (lt_LT) language updated (Thanks to Andrius)
Download this release

Release Info

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

Code changes from version 3.2.7 to 3.2.8

Files changed (60) hide show
  1. base/es-defined.php +8 -2
  2. changelog.txt +23 -4
  3. classes/es-common.php +10 -5
  4. classes/es-directly.php +5 -0
  5. classes/es-intermediate.php +5 -0
  6. classes/es-loadwidget.php +13 -8
  7. classes/es-register.php +42 -35
  8. classes/es-sendmail.php +7 -1
  9. classes/es-stater.php +5 -0
  10. compose/compose-add.php +3 -2
  11. compose/compose-edit.php +4 -3
  12. compose/compose-preview.php +3 -2
  13. compose/compose-show.php +4 -3
  14. cron/cron-add.php +7 -6
  15. email-subscribers.php +5 -3
  16. export/export-email-address.php +3 -3
  17. help/help.php +4 -3
  18. job/es-cron.php +3 -2
  19. job/es-optin.php +3 -2
  20. job/es-subscribe.php +7 -4
  21. job/es-unsubscribe.php +3 -2
  22. job/es-viewstatus.php +3 -2
  23. languages/email-subscribers-ca.mo +0 -0
  24. languages/email-subscribers-ca.po +289 -284
  25. languages/email-subscribers-cs_CZ.mo +0 -0
  26. languages/email-subscribers-cs_CZ.po +598 -574
  27. languages/email-subscribers-lt_LT.mo +0 -0
  28. languages/email-subscribers-lt_LT.po +821 -828
  29. languages/email-subscribers-pl_PL.mo +0 -0
  30. languages/email-subscribers-pl_PL.po +700 -719
  31. languages/email-subscribers.pot +573 -559
  32. notification/notification-add.php +3 -2
  33. notification/notification-edit.php +3 -2
  34. notification/notification-show.php +3 -2
  35. query/_db_group.php +0 -62
  36. query/db_compose.php +30 -14
  37. query/db_default.php +16 -6
  38. query/db_delivery.php +44 -19
  39. query/db_notification.php +38 -16
  40. query/db_optimize.php +10 -4
  41. query/db_sentmail.php +44 -19
  42. query/db_settings.php +18 -9
  43. query/db_subscriber.php +92 -70
  44. readme.txt +54 -15
  45. roles/roles-add.php +3 -2
  46. sendmail/sendmail.php +6 -5
  47. sentmail/deliverreport-show.php +21 -4
  48. sentmail/sentmail-preview.php +3 -2
  49. sentmail/sentmail-show.php +21 -4
  50. settings/setting-sync.php +3 -2
  51. settings/settings-edit.php +22 -21
  52. subscribers/view-subscriber-add.php +3 -2
  53. subscribers/view-subscriber-edit.php +3 -2
  54. subscribers/view-subscriber-export.php +9 -8
  55. subscribers/view-subscriber-import.php +3 -2
  56. subscribers/view-subscriber-show.php +4 -3
  57. subscribers/view-subscriber-sync.php +3 -2
  58. widget/es-widget-page.js +2 -3
  59. widget/es-widget.css +2 -3
  60. widget/es-widget.js +2 -3
base/es-defined.php CHANGED
@@ -1,5 +1,10 @@
1
  <?php
2
 
 
 
 
 
 
3
  $es_plugin_name = 'email-subscribers';
4
  $es_plugin_folder_name = dirname(dirname(plugin_basename(__FILE__)));
5
  $es_current_folder = dirname(dirname(__FILE__));
@@ -18,12 +23,13 @@ if(!defined('ES_DIR')) define('ES_DIR', $es_current_folder.DS);
18
 
19
  if(!defined('ES_URL')) define('ES_URL',plugins_url().'/'.strtolower('email-subscribers').'/');
20
 
21
- define('ES_FILE',ES_DIR.'email-subscribers.php');
22
 
23
  if(!defined('ES_FAV')) define('ES_FAV', admin_url( 'admin.php?page=es-general-information' ) );
24
 
25
  if(!defined('ES_ADMINURL')) define( 'ES_ADMINURL', site_url( '/wp-admin/admin.php' ) );
26
 
27
- define('ES_OFFICIAL', 'If you like <strong>Email Subscribers</strong>, please consider leaving us a <a target="_blank" href="https://wordpress.org/support/plugin/email-subscribers/reviews/?filter=5#new-post">&#9733;&#9733;&#9733;&#9733;&#9733;</a> rating. A huge thank you from Icegram in advance!');
 
28
 
29
  global $es_includes;
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
+ }
7
+
8
  $es_plugin_name = 'email-subscribers';
9
  $es_plugin_folder_name = dirname(dirname(plugin_basename(__FILE__)));
10
  $es_current_folder = dirname(dirname(__FILE__));
23
 
24
  if(!defined('ES_URL')) define('ES_URL',plugins_url().'/'.strtolower('email-subscribers').'/');
25
 
26
+ define( 'ES_FILE',ES_DIR.'email-subscribers.php' );
27
 
28
  if(!defined('ES_FAV')) define('ES_FAV', admin_url( 'admin.php?page=es-general-information' ) );
29
 
30
  if(!defined('ES_ADMINURL')) define( 'ES_ADMINURL', site_url( '/wp-admin/admin.php' ) );
31
 
32
+ $es_rating_text = __( 'If you like <strong>Email Subscribers</strong>, please consider leaving us a <a target="_blank" href="https://wordpress.org/support/plugin/email-subscribers/reviews/?filter=5#new-post">&#9733;&#9733;&#9733;&#9733;&#9733;</a> rating. A huge thank you from Icegram in advance!', ES_TDOMAIN );
33
+ define( 'ES_OFFICIAL', $es_rating_text );
34
 
35
  global $es_includes;
changelog.txt CHANGED
@@ -4,13 +4,32 @@ Author : Icegram
4
  Author URI : http://www.icegram.com/
5
  License : GPLv3
6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  ********************************Version 3.2.7************************************************************
8
 
9
  * Fix: Special characters in the post category name was not saving while creating Post Notifications
10
  * Fix: Post Notification emails were not sent for post categories with special characters in the category name
11
  * Fix: Multiple confirmation emails were sent when a subscriber subscribed to more than one group
12
  * Fix: esc_attr when sanitizing input fields submitted via form
13
- * Update: Renamed a few terms in Compose & Reorts screen for better accessibility
14
  * Update: Text correction & improvements
15
  * Update: POT file
16
  * New: Translation for Swedish (sv_SE) language added (Thanks to Rune Svennelid)
@@ -22,7 +41,7 @@ License : GPLv3
22
  * Update: Translation for Czech (cs_CZ) language updated (Thanks to Martin)
23
  * Update: Translation for Polish (pl_PL) language updated (Thanks to Witold)
24
  * Update: Translation for Russian (ru_RU) language removed
25
- * Tweak: Don't show Database id of subscribers on Delivery Report screen
26
 
27
  ********************************Version 3.2.6************************************************************
28
 
@@ -116,7 +135,7 @@ License : GPLv3
116
  ********************************Version 3.1.5************************************************************
117
 
118
  * New: Changed Notification Layout
119
- * New: Created Check,Uncheck All Buttons while selecting categories on the Notification screen
120
  * New: Translation for Czech (cs_CZ) language added (Thanks to Martin)
121
  * Fix: Subscribers subscribing via [Rainmaker](https://wordpress.org/plugins/icegram-rainmaker/) were not receving confirmation emails
122
  * Fix: Made few strings translatable
@@ -143,7 +162,7 @@ License : GPLv3
143
  * Update: Translation for Turkish (tr_TR) language updated (Thanks to Erkan ORUC)
144
  * Update: Text correction in few places
145
  * Update: Code Indentation
146
- * Tweak: Code improvements when using wp_enqueue_script
147
  * Tweak: Do not allow admin to edit sample cron job url from Cron Mail Settings
148
  * Tweak: CSS changes in Help & Info page inside plugin
149
 
4
  Author URI : http://www.icegram.com/
5
  License : GPLv3
6
 
7
+ ********************************Version 3.2.8************************************************************
8
+
9
+ * New: Added label tags to subscribe form
10
+ * New: Show success / error messages below subscribe form instead of above
11
+ * Fix: Single Opt In was sometimes giving 'Please try after some time' error
12
+ * Fix: Re-subscribing same subscriber was not giving 'Email Address already exists' error incase of Single Opt In
13
+ * Fix: Name field was not clearing on successful sign up from subscribe form
14
+ * Fix: Show 'sent reports time' in site's timezone instead of UTC
15
+ * Fix: Show only active (Confirmed & Single Opt In) subscribers while exporting subscribers list
16
+ * Fix: Made few strings translatable
17
+ * Update: Security check in files
18
+ * Update: Code improvements when using $wpdb->prefix for queries
19
+ * Update: Text correction & improvements
20
+ * Update: POT file
21
+ * Update: Translation for Polish (pl_PL) language updated (Thanks to Witold)
22
+ * Update: Translation for Catalan (ca) language updated (Thanks to Jordi Jorda)
23
+ * Update: Translation for Czech (cs_CZ) language updated (Thanks to Martin)
24
+ * Update: Translation for Lithuanian (lt_LT) language updated (Thanks to Andrius)
25
+
26
  ********************************Version 3.2.7************************************************************
27
 
28
  * Fix: Special characters in the post category name was not saving while creating Post Notifications
29
  * Fix: Post Notification emails were not sent for post categories with special characters in the category name
30
  * Fix: Multiple confirmation emails were sent when a subscriber subscribed to more than one group
31
  * Fix: esc_attr when sanitizing input fields submitted via form
32
+ * Update: Renamed a few terms in Compose & Reports page for better accessibility
33
  * Update: Text correction & improvements
34
  * Update: POT file
35
  * New: Translation for Swedish (sv_SE) language added (Thanks to Rune Svennelid)
41
  * Update: Translation for Czech (cs_CZ) language updated (Thanks to Martin)
42
  * Update: Translation for Polish (pl_PL) language updated (Thanks to Witold)
43
  * Update: Translation for Russian (ru_RU) language removed
44
+ * Tweak: Don't show Database id of subscribers on Delivery Report page
45
 
46
  ********************************Version 3.2.6************************************************************
47
 
135
  ********************************Version 3.1.5************************************************************
136
 
137
  * New: Changed Notification Layout
138
+ * New: Created Check,Uncheck All Buttons while selecting categories on the Notification page
139
  * New: Translation for Czech (cs_CZ) language added (Thanks to Martin)
140
  * Fix: Subscribers subscribing via [Rainmaker](https://wordpress.org/plugins/icegram-rainmaker/) were not receving confirmation emails
141
  * Fix: Made few strings translatable
162
  * Update: Translation for Turkish (tr_TR) language updated (Thanks to Erkan ORUC)
163
  * Update: Text correction in few places
164
  * Update: Code Indentation
165
+ * Update: Code improvements when using wp_enqueue_script
166
  * Tweak: Do not allow admin to edit sample cron job url from Cron Mail Settings
167
  * Tweak: CSS changes in Help & Info page inside plugin
168
 
classes/es-common.php CHANGED
@@ -1,5 +1,10 @@
1
  <?php
2
 
 
 
 
 
 
3
  class es_cls_common {
4
  public static function es_disp_status($value) {
5
  $returnstring = "";
@@ -106,18 +111,18 @@ class es_cls_common {
106
  }
107
 
108
  public static function es_sent_report_subject() {
109
- $report = "Newsletter Sent Report";
110
  return $report;
111
  }
112
 
113
  public static function es_sent_report_plain() {
114
  $report = "";
115
  $report = $report. "Hi Admin,\n\n";
116
- $report = $report. "Mail has been sent successfully to ###COUNT### email(s). Please find the details below.\n\n";
117
  $report = $report. "Unique ID : ###UNIQUE### \n";
118
  $report = $report. "Start Time: ###STARTTIME### \n";
119
  $report = $report. "End Time: ###ENDTIME### \n";
120
- $report = $report. "For more information, Login to your Dashboard and go to Sent Mails menu in Email Subscribers. \n\n";
121
  $report = $report. "Thank You. \n";
122
  return $report;
123
  }
@@ -125,11 +130,11 @@ class es_cls_common {
125
  public static function es_sent_report_html() {
126
  $report = "";
127
  $report = $report. "Hi Admin, <br/><br/>";
128
- $report = $report. "Mail has been sent successfully to ###COUNT### email(s). Please find the details below.<br/><br/>";
129
  $report = $report. "Unique ID : ###UNIQUE### <br/>";
130
  $report = $report. "Start Time: ###STARTTIME### <br/>";
131
  $report = $report. "End Time: ###ENDTIME### <br/>";
132
- $report = $report. "For more information, Login to your Dashboard and go to Sent Mails menu in Email Subscribers. <br/><br/>";
133
  $report = $report. "Thank You. <br/>";
134
  return $report;
135
  }
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
+ }
7
+
8
  class es_cls_common {
9
  public static function es_disp_status($value) {
10
  $returnstring = "";
111
  }
112
 
113
  public static function es_sent_report_subject() {
114
+ $report = "Your email has been sent";
115
  return $report;
116
  }
117
 
118
  public static function es_sent_report_plain() {
119
  $report = "";
120
  $report = $report. "Hi Admin,\n\n";
121
+ $report = $report. "Email has been sent successfully to ###COUNT### email(s). Please find the details below.\n\n";
122
  $report = $report. "Unique ID : ###UNIQUE### \n";
123
  $report = $report. "Start Time: ###STARTTIME### \n";
124
  $report = $report. "End Time: ###ENDTIME### \n";
125
+ $report = $report. "For more information, login to your dashboard and go to Reports menu in Email Subscribers. \n\n";
126
  $report = $report. "Thank You. \n";
127
  return $report;
128
  }
130
  public static function es_sent_report_html() {
131
  $report = "";
132
  $report = $report. "Hi Admin, <br/><br/>";
133
+ $report = $report. "Email has been sent successfully to ###COUNT### email(s). Please find the details below.<br/><br/>";
134
  $report = $report. "Unique ID : ###UNIQUE### <br/>";
135
  $report = $report. "Start Time: ###STARTTIME### <br/>";
136
  $report = $report. "End Time: ###ENDTIME### <br/>";
137
+ $report = $report. "For more information, login to your dashboard and go to Reports menu in Email Subscribers. <br/><br/>";
138
  $report = $report. "Thank You. <br/>";
139
  return $report;
140
  }
classes/es-directly.php CHANGED
@@ -1,5 +1,10 @@
1
  <?php
2
 
 
 
 
 
 
3
  function es_plugin_query_vars($vars) {
4
  $vars[] = 'es';
5
  return $vars;
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
+ }
7
+
8
  function es_plugin_query_vars($vars) {
9
  $vars[] = 'es';
10
  return $vars;
classes/es-intermediate.php CHANGED
@@ -1,5 +1,10 @@
1
  <?php
2
 
 
 
 
 
 
3
  class es_cls_intermediate {
4
  public static function es_subscribers() {
5
  global $wpdb;
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
+ }
7
+
8
  class es_cls_intermediate {
9
  public static function es_subscribers() {
10
  global $wpdb;
classes/es-loadwidget.php CHANGED
@@ -1,5 +1,10 @@
1
  <?php
2
 
 
 
 
 
 
3
  class es_cls_widget {
4
  public static function load_subscription($arr) {
5
  $es_name = trim($arr['es_name']);
@@ -19,24 +24,24 @@ class es_cls_widget {
19
  if( $es_desc != "" ) {
20
  $es = $es . '<div class="es_caption">'.$es_desc.'</div>';
21
  }
22
- $es = $es . '<div class="es_msg"><span id="es_msg_pg"></span></div>';
23
  if( $es_name == "YES" ) {
24
- $es = $es . '<div class="es_lablebox">'.__('Name', 'email-subscribers').'</div>';
25
  $es = $es . '<div class="es_textbox">';
26
- $es = $es . '<input class="es_textbox_class" name="es_txt_name_pg" id="es_txt_name_pg" value="" maxlength="225" type="text">';
27
  $es = $es . '</div>';
28
  }
29
- $es = $es . '<div class="es_lablebox">'.__('Email *', 'email-subscribers').'</div>';
30
  $es = $es . '<div class="es_textbox">';
31
- $es = $es . '<input class="es_textbox_class" name="es_txt_email_pg" id="es_txt_email_pg" onkeypress="if(event.keyCode==13) es_submit_pages('.$url.')" value="" maxlength="225" type="text">';
32
  $es = $es . '</div>';
33
  $es = $es . '<div class="es_button">';
34
- $es = $es . '<input class="es_textbox_button" name="es_txt_button_pg" id="es_txt_button_pg" onClick="return es_submit_pages('.$url.')" value="'.__('Subscribe', 'email-subscribers').'" type="button">';
35
  $es = $es . '</div>';
 
36
  if( $es_name != "YES" ) {
37
- $es = $es . '<input name="es_txt_name_pg" id="es_txt_name_pg" value="" type="hidden">';
38
  }
39
- $es = $es . '<input name="es_txt_group_pg" id="es_txt_group_pg" value="'.$es_group.'" type="hidden">';
40
 
41
  $es = $es . '</form>';
42
  $es = $es . '</div>';
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
+ }
7
+
8
  class es_cls_widget {
9
  public static function load_subscription($arr) {
10
  $es_name = trim($arr['es_name']);
24
  if( $es_desc != "" ) {
25
  $es = $es . '<div class="es_caption">'.$es_desc.'</div>';
26
  }
 
27
  if( $es_name == "YES" ) {
28
+ $es = $es . '<div class="es_lablebox"><label class="es_shortcode_form_name">'.__( 'Name', ES_TDOMAIN ).'</label></div>';
29
  $es = $es . '<div class="es_textbox">';
30
+ $es = $es . '<input type="text" class="es_textbox_class" name="es_txt_name_pg" id="es_txt_name_pg" value="" maxlength="225">';
31
  $es = $es . '</div>';
32
  }
33
+ $es = $es . '<div class="es_lablebox"><label class="es_shortcode_form_email">'.__( 'Email *', ES_TDOMAIN ).'</label></div>';
34
  $es = $es . '<div class="es_textbox">';
35
+ $es = $es . '<input type="text" class="es_textbox_class" name="es_txt_email_pg" id="es_txt_email_pg" onkeypress="if(event.keyCode==13) es_submit_pages('.$url.')" value="" maxlength="225">';
36
  $es = $es . '</div>';
37
  $es = $es . '<div class="es_button">';
38
+ $es = $es . '<input type="button" class="es_textbox_button" name="es_txt_button_pg" id="es_txt_button_pg" onClick="return es_submit_pages('.$url.')" value="'.__( 'Subscribe', ES_TDOMAIN ).'" >';
39
  $es = $es . '</div>';
40
+ $es = $es . '<div class="es_msg" id="es_shortcode_msg"><span id="es_msg_pg"></span></div>';
41
  if( $es_name != "YES" ) {
42
+ $es = $es . '<input type="hidden" name="es_txt_name_pg" id="es_txt_name_pg" value="">';
43
  }
44
+ $es = $es . '<input type="hidden" name="es_txt_group_pg" id="es_txt_group_pg" value="'.$es_group.'">';
45
 
46
  $es = $es . '</form>';
47
  $es = $es . '</div>';
classes/es-register.php CHANGED
@@ -1,5 +1,10 @@
1
  <?php
2
 
 
 
 
 
 
3
  class es_cls_registerhook {
4
  public static function es_activation() {
5
  global $wpdb;
@@ -103,7 +108,7 @@ class es_cls_registerhook {
103
  $cronurl = $home_url . "?es=cron&guid=". $guid;
104
  add_option('es_c_cronurl', $cronurl);
105
  add_option('es_cron_mailcount', "50");
106
- add_option('es_cron_adminmail', "Hi Admin, \r\n\r\nCron URL has been triggered successfully on ###DATE### for the mail ###SUBJECT###. And it sent mail to ###COUNT### recipient. \r\n\r\nThank You");
107
  update_option('email-subscribers', "2.9" );
108
  }
109
  }
@@ -183,7 +188,7 @@ class es_cls_registerhook {
183
  'es_subscriber_confirm_delete' => _x( 'Are you sure you want to delete selected records?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
184
  'es_subscriber_resend_email' => _x( 'Do you want to resend confirmation email? \nAlso please note, this will update subscriber current status to \'Unconfirmed\'.', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
185
  'es_subscriber_new_group' => _x( 'Please select new subscriber group.', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
186
- 'es_subscriber_new_status' => _x( 'Please select new status for subscribers', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
187
  'es_subscriber_group_update' => _x( 'Do you want to update subscribers group?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
188
  'es_subscriber_status_update' => _x( 'Do you want to update subscribers status?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
189
  'es_subscriber_export' => _x( 'Do you want to export the emails?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
@@ -249,34 +254,34 @@ class es_cls_registerhook {
249
  wp_register_script( 'es-widget', ES_URL . 'widget/es-widget.js', '', '', true );
250
  wp_enqueue_script( 'es-widget' );
251
  $es_select_params = array(
252
- 'es_email_notice' => _x( 'Please enter email address.', 'widget-enhanced-select', ES_TDOMAIN ),
253
- 'es_incorrect_email' => _x( 'Please provide a valid email address.', 'widget-enhanced-select', ES_TDOMAIN ),
254
  'es_load_more' => _x( 'loading...', 'widget-enhanced-select', ES_TDOMAIN ),
255
  'es_ajax_error' => _x( 'Cannot create XMLHTTP instance', 'widget-enhanced-select', ES_TDOMAIN ),
256
- 'es_success_message' => _x( 'Subscribed successfully.', 'widget-enhanced-select', ES_TDOMAIN ),
257
  'es_success_notice' => _x( 'Your subscription was successful! Within a few minutes, kindly check the mail in your mailbox and confirm your subscription. If you can\'t see the mail in your mailbox, please check your spam folder.', 'widget-enhanced-select', ES_TDOMAIN ),
258
- 'es_email_exists' => _x( 'Email Address already exists.', 'widget-enhanced-select', ES_TDOMAIN ),
259
  'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-enhanced-select', ES_TDOMAIN ),
260
- 'es_invalid_email' => _x( 'Invalid email address.', 'widget-enhanced-select', ES_TDOMAIN ),
261
- 'es_try_later' => _x( 'Please try after some time.', 'widget-enhanced-select', ES_TDOMAIN ),
262
- 'es_problem_request' => _x( 'There was a problem with the request.', 'widget-enhanced-select', ES_TDOMAIN )
263
  );
264
  wp_localize_script( 'es-widget', 'es_widget_notices', $es_select_params );
265
 
266
  wp_register_script( 'es-widget-page', ES_URL . 'widget/es-widget-page.js', '', '', true );
267
  wp_enqueue_script( 'es-widget-page' );
268
  $es_select_params = array(
269
- 'es_email_notice' => _x( 'Please enter email address.', 'widget-page-enhanced-select', ES_TDOMAIN ),
270
- 'es_incorrect_email' => _x( 'Please provide a valid email address.', 'widget-page-enhanced-select', ES_TDOMAIN ),
271
  'es_load_more' => _x( 'loading...', 'widget-page-enhanced-select', ES_TDOMAIN ),
272
  'es_ajax_error' => _x( 'Cannot create XMLHTTP instance', 'widget-page-enhanced-select', ES_TDOMAIN ),
273
- 'es_success_message' => _x( 'Subscribed successfully.', 'widget-page-enhanced-select', ES_TDOMAIN ),
274
  'es_success_notice' => _x( 'Your subscription was successful! Within a few minutes, kindly check the mail in your mailbox and confirm your subscription. If you can\'t see the mail in your mailbox, please check your spam folder.', 'widget-page-enhanced-select', ES_TDOMAIN ),
275
- 'es_email_exists' => _x( 'Email Address already exists.', 'widget-page-enhanced-select', ES_TDOMAIN ),
276
  'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-page-enhanced-select', ES_TDOMAIN ),
277
- 'es_invalid_email' => _x( 'Invalid email address.', 'widget-page-enhanced-select', ES_TDOMAIN ),
278
- 'es_try_later' => _x( 'Please try after some time.', 'widget-page-enhanced-select', ES_TDOMAIN ),
279
- 'es_problem_request' => _x( 'There was a problem with the request.', 'widget-page-enhanced-select', ES_TDOMAIN )
280
  );
281
  wp_localize_script( 'es-widget-page', 'es_widget_page_notices', $es_select_params );
282
 
@@ -528,6 +533,7 @@ class es_widget_register extends WP_Widget {
528
  if ( ! empty( $es_title ) ) {
529
  echo $args['before_title'] . $es_title . $args['after_title'];
530
  }
 
531
  // display widget method
532
  $url = home_url();
533
 
@@ -539,27 +545,29 @@ class es_widget_register extends WP_Widget {
539
 
540
  <div>
541
  <form class="es_widget_form">
542
- <?php if( $es_desc <> "" ) { ?>
543
- <div class="es_caption"><?php echo $es_desc; ?></div>
544
  <?php } ?>
545
- <div class="es_msg"><span id="es_msg"></span></div>
546
  <?php if( $es_name == "YES" ) { ?>
547
- <div class="es_lablebox"><?php _e('Name', 'email-subscribers'); ?></div>
548
- <div class="es_textbox">
549
- <input class="es_textbox_class" name="es_txt_name" id="es_txt_name" value="" maxlength="225" type="text">
550
- </div>
551
  <?php } ?>
552
- <div class="es_lablebox"><?php _e('Email *', 'email-subscribers'); ?></div>
553
  <div class="es_textbox">
554
- <input class="es_textbox_class" name="es_txt_email" id="es_txt_email" onkeypress="if(event.keyCode==13) es_submit_page('<?php echo $url; ?>')" value="" maxlength="225" type="text">
555
  </div>
556
  <div class="es_button">
557
- <input class="es_textbox_button" name="es_txt_button" id="es_txt_button" onClick="return es_submit_page('<?php echo $url; ?>')" value="<?php _e('Subscribe', 'email-subscribers'); ?>" type="button">
 
 
 
558
  </div>
559
  <?php if( $es_name != "YES" ) { ?>
560
- <input name="es_txt_name" id="es_txt_name" value="" type="hidden">
561
  <?php } ?>
562
- <input name="es_txt_group" id="es_txt_group" value="<?php echo $es_group; ?>" type="hidden">
563
  </form>
564
  </div>
565
  <?php
@@ -592,18 +600,17 @@ class es_widget_register extends WP_Widget {
592
  <label for="<?php echo $this->get_field_id('es_title'); ?>"><?php echo __( 'Widget Title', ES_TDOMAIN ); ?></label>
593
  <input class="widefat" id="<?php echo $this->get_field_id('es_title'); ?>" name="<?php echo $this->get_field_name('es_title'); ?>" type="text" value="<?php echo $es_title; ?>" />
594
  </p>
 
 
 
 
595
  <p>
596
  <label for="<?php echo $this->get_field_id('es_name'); ?>"><?php echo __( 'Display Name Field', ES_TDOMAIN ); ?></label>
597
  <select class="widefat" id="<?php echo $this->get_field_id('es_name'); ?>" name="<?php echo $this->get_field_name('es_name'); ?>">
598
- <option value="YES" <?php $this->es_selected($es_name == 'YES'); ?>>YES</option>
599
- <option value="NO" <?php $this->es_selected($es_name == 'NO'); ?>>NO</option>
600
  </select>
601
  </p>
602
- <p>
603
- <label for="<?php echo $this->get_field_id('es_desc'); ?>"><?php echo __( 'Short Description', ES_TDOMAIN ); ?></label>
604
- <input class="widefat" id="<?php echo $this->get_field_id('es_desc'); ?>" name="<?php echo $this->get_field_name('es_desc'); ?>" type="text" value="<?php echo $es_desc; ?>" />
605
- <?php _e('Short description about your subscription form.', 'email-subscribers'); ?>
606
- </p>
607
  <p>
608
  <label for="<?php echo $this->get_field_id('es_group'); ?>"><?php echo __( 'Subscriber Group', ES_TDOMAIN ); ?></label>
609
  <input class="widefat" id="<?php echo $this->get_field_id('es_group'); ?>" name="<?php echo $this->get_field_name('es_group'); ?>" type="text" value="<?php echo $es_group; ?>" />
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
+ }
7
+
8
  class es_cls_registerhook {
9
  public static function es_activation() {
10
  global $wpdb;
108
  $cronurl = $home_url . "?es=cron&guid=". $guid;
109
  add_option('es_c_cronurl', $cronurl);
110
  add_option('es_cron_mailcount', "50");
111
+ add_option('es_cron_adminmail', "Hi Admin, \r\n\r\nCron URL has been triggered successfully on ###DATE### for the email ###SUBJECT###. And it sent email to ###COUNT### recipient. \r\n\r\nThank You");
112
  update_option('email-subscribers', "2.9" );
113
  }
114
  }
188
  'es_subscriber_confirm_delete' => _x( 'Are you sure you want to delete selected records?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
189
  'es_subscriber_resend_email' => _x( 'Do you want to resend confirmation email? \nAlso please note, this will update subscriber current status to \'Unconfirmed\'.', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
190
  'es_subscriber_new_group' => _x( 'Please select new subscriber group.', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
191
+ 'es_subscriber_new_status' => _x( 'Please select new status for subscribers', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
192
  'es_subscriber_group_update' => _x( 'Do you want to update subscribers group?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
193
  'es_subscriber_status_update' => _x( 'Do you want to update subscribers status?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
194
  'es_subscriber_export' => _x( 'Do you want to export the emails?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
254
  wp_register_script( 'es-widget', ES_URL . 'widget/es-widget.js', '', '', true );
255
  wp_enqueue_script( 'es-widget' );
256
  $es_select_params = array(
257
+ 'es_email_notice' => _x( 'Please enter email address', 'widget-enhanced-select', ES_TDOMAIN ),
258
+ 'es_incorrect_email' => _x( 'Please provide a valid email address', 'widget-enhanced-select', ES_TDOMAIN ),
259
  'es_load_more' => _x( 'loading...', 'widget-enhanced-select', ES_TDOMAIN ),
260
  'es_ajax_error' => _x( 'Cannot create XMLHTTP instance', 'widget-enhanced-select', ES_TDOMAIN ),
261
+ 'es_success_message' => _x( 'Successfully Subscribed.', 'widget-enhanced-select', ES_TDOMAIN ),
262
  'es_success_notice' => _x( 'Your subscription was successful! Within a few minutes, kindly check the mail in your mailbox and confirm your subscription. If you can\'t see the mail in your mailbox, please check your spam folder.', 'widget-enhanced-select', ES_TDOMAIN ),
263
+ 'es_email_exists' => _x( 'Email Address already exists!', 'widget-enhanced-select', ES_TDOMAIN ),
264
  'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-enhanced-select', ES_TDOMAIN ),
265
+ 'es_invalid_email' => _x( 'Invalid email address', 'widget-enhanced-select', ES_TDOMAIN ),
266
+ 'es_try_later' => _x( 'Please try after some time', 'widget-enhanced-select', ES_TDOMAIN ),
267
+ 'es_problem_request' => _x( 'There was a problem with the request', 'widget-enhanced-select', ES_TDOMAIN )
268
  );
269
  wp_localize_script( 'es-widget', 'es_widget_notices', $es_select_params );
270
 
271
  wp_register_script( 'es-widget-page', ES_URL . 'widget/es-widget-page.js', '', '', true );
272
  wp_enqueue_script( 'es-widget-page' );
273
  $es_select_params = array(
274
+ 'es_email_notice' => _x( 'Please enter email address', 'widget-page-enhanced-select', ES_TDOMAIN ),
275
+ 'es_incorrect_email' => _x( 'Please provide a valid email address', 'widget-page-enhanced-select', ES_TDOMAIN ),
276
  'es_load_more' => _x( 'loading...', 'widget-page-enhanced-select', ES_TDOMAIN ),
277
  'es_ajax_error' => _x( 'Cannot create XMLHTTP instance', 'widget-page-enhanced-select', ES_TDOMAIN ),
278
+ 'es_success_message' => _x( 'Successfully Subscribed.', 'widget-page-enhanced-select', ES_TDOMAIN ),
279
  'es_success_notice' => _x( 'Your subscription was successful! Within a few minutes, kindly check the mail in your mailbox and confirm your subscription. If you can\'t see the mail in your mailbox, please check your spam folder.', 'widget-page-enhanced-select', ES_TDOMAIN ),
280
+ 'es_email_exists' => _x( 'Email Address already exists!', 'widget-page-enhanced-select', ES_TDOMAIN ),
281
  'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-page-enhanced-select', ES_TDOMAIN ),
282
+ 'es_invalid_email' => _x( 'Invalid email address', 'widget-page-enhanced-select', ES_TDOMAIN ),
283
+ 'es_try_later' => _x( 'Please try after some time', 'widget-page-enhanced-select', ES_TDOMAIN ),
284
+ 'es_problem_request' => _x( 'There was a problem with the request', 'widget-page-enhanced-select', ES_TDOMAIN )
285
  );
286
  wp_localize_script( 'es-widget-page', 'es_widget_page_notices', $es_select_params );
287
 
533
  if ( ! empty( $es_title ) ) {
534
  echo $args['before_title'] . $es_title . $args['after_title'];
535
  }
536
+
537
  // display widget method
538
  $url = home_url();
539
 
545
 
546
  <div>
547
  <form class="es_widget_form">
548
+ <?php if( $es_desc != "" ) { ?>
549
+ <div class="es_caption"><?php echo $es_desc; ?></div>
550
  <?php } ?>
 
551
  <?php if( $es_name == "YES" ) { ?>
552
+ <div class="es_lablebox"><label class="es_widget_form_name"><?php echo __( 'Name', ES_TDOMAIN ); ?></label></div>
553
+ <div class="es_textbox">
554
+ <input type="text" class="es_textbox_class" name="es_txt_name" id="es_txt_name" value="" maxlength="225">
555
+ </div>
556
  <?php } ?>
557
+ <div class="es_lablebox"><label class="es_widget_form_email"><?php echo __( 'Email *', ES_TDOMAIN ); ?></label></div>
558
  <div class="es_textbox">
559
+ <input type="text" class="es_textbox_class" name="es_txt_email" id="es_txt_email" onkeypress="if(event.keyCode==13) es_submit_page('<?php echo $url; ?>')" value="" maxlength="225">
560
  </div>
561
  <div class="es_button">
562
+ <input type="button" class="es_textbox_button" name="es_txt_button" id="es_txt_button" onClick="return es_submit_page('<?php echo $url; ?>')" value="<?php echo __( 'Subscribe', ES_TDOMAIN ); ?>">
563
+ </div>
564
+ <div class="es_msg" id="es_widget_msg">
565
+ <span id="es_msg"></span>
566
  </div>
567
  <?php if( $es_name != "YES" ) { ?>
568
+ <input type="hidden" name="es_txt_name" id="es_txt_name" value="">
569
  <?php } ?>
570
+ <input type="hidden" name="es_txt_group" id="es_txt_group" value="<?php echo $es_group; ?>">
571
  </form>
572
  </div>
573
  <?php
600
  <label for="<?php echo $this->get_field_id('es_title'); ?>"><?php echo __( 'Widget Title', ES_TDOMAIN ); ?></label>
601
  <input class="widefat" id="<?php echo $this->get_field_id('es_title'); ?>" name="<?php echo $this->get_field_name('es_title'); ?>" type="text" value="<?php echo $es_title; ?>" />
602
  </p>
603
+ <p>
604
+ <label for="<?php echo $this->get_field_id('es_desc'); ?>"><?php echo __( 'Short description about subscription form', ES_TDOMAIN ); ?></label>
605
+ <input class="widefat" id="<?php echo $this->get_field_id('es_desc'); ?>" name="<?php echo $this->get_field_name('es_desc'); ?>" type="text" value="<?php echo $es_desc; ?>" />
606
+ </p>
607
  <p>
608
  <label for="<?php echo $this->get_field_id('es_name'); ?>"><?php echo __( 'Display Name Field', ES_TDOMAIN ); ?></label>
609
  <select class="widefat" id="<?php echo $this->get_field_id('es_name'); ?>" name="<?php echo $this->get_field_name('es_name'); ?>">
610
+ <option value="YES" <?php $this->es_selected($es_name == 'YES'); ?>><?php echo __( 'YES', ES_TDOMAIN ); ?></option>
611
+ <option value="NO" <?php $this->es_selected($es_name == 'NO'); ?>><?php echo __( 'NO', ES_TDOMAIN ); ?></option>
612
  </select>
613
  </p>
 
 
 
 
 
614
  <p>
615
  <label for="<?php echo $this->get_field_id('es_group'); ?>"><?php echo __( 'Subscriber Group', ES_TDOMAIN ); ?></label>
616
  <input class="widefat" id="<?php echo $this->get_field_id('es_group'); ?>" name="<?php echo $this->get_field_name('es_group'); ?>" type="text" value="<?php echo $es_group; ?>" />
classes/es-sendmail.php CHANGED
@@ -1,4 +1,10 @@
1
  <?php
 
 
 
 
 
 
2
  class es_cls_sendmail {
3
  public static function es_prepare_optin($type= "", $id = 0, $idlist = "") {
4
  $subscribers = array();
@@ -304,7 +310,7 @@ class es_cls_sendmail {
304
  }
305
  }
306
 
307
- if($post_thumbnail <> "") {
308
  $post_thumbnail_link = "<a href='".$post_link."' target='_blank'>".$post_thumbnail."</a>";
309
  }
310
 
1
  <?php
2
+
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
+ }
7
+
8
  class es_cls_sendmail {
9
  public static function es_prepare_optin($type= "", $id = 0, $idlist = "") {
10
  $subscribers = array();
310
  }
311
  }
312
 
313
+ if($post_thumbnail != "") {
314
  $post_thumbnail_link = "<a href='".$post_link."' target='_blank'>".$post_thumbnail."</a>";
315
  }
316
 
classes/es-stater.php CHANGED
@@ -1,5 +1,10 @@
1
  <?php
2
 
 
 
 
 
 
3
  require_once(ES_DIR.'classes'.DIRECTORY_SEPARATOR.'es-register.php');
4
  require_once(ES_DIR.'classes'.DIRECTORY_SEPARATOR.'es-intermediate.php');
5
  require_once(ES_DIR.'classes'.DIRECTORY_SEPARATOR.'es-common.php');
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
+ }
7
+
8
  require_once(ES_DIR.'classes'.DIRECTORY_SEPARATOR.'es-register.php');
9
  require_once(ES_DIR.'classes'.DIRECTORY_SEPARATOR.'es-intermediate.php');
10
  require_once(ES_DIR.'classes'.DIRECTORY_SEPARATOR.'es-common.php');
compose/compose-add.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  ?>
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  ?>
compose/compose-edit.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  ?>
@@ -44,7 +45,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
44
 
45
  $form['es_templ_heading'] = isset($_POST['es_templ_heading']) ? $_POST['es_templ_heading'] : '';
46
  if ($form['es_templ_heading'] == '') {
47
- $es_errors[] = __('Please enter template heading.', 'email-subscribers');
48
  $es_error_found = TRUE;
49
  }
50
  $form['es_templ_body'] = isset($_POST['es_templ_body']) ? $_POST['es_templ_body'] : '';
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  ?>
45
 
46
  $form['es_templ_heading'] = isset($_POST['es_templ_heading']) ? $_POST['es_templ_heading'] : '';
47
  if ($form['es_templ_heading'] == '') {
48
+ $es_errors[] = __( 'Please enter template heading.', ES_TDOMAIN );
49
  $es_error_found = TRUE;
50
  }
51
  $form['es_templ_body'] = isset($_POST['es_templ_body']) ? $_POST['es_templ_body'] : '';
compose/compose-preview.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  $did = isset($_GET['did']) ? $_GET['did'] : '0';
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  $did = isset($_GET['did']) ? $_GET['did'] : '0';
compose/compose-show.php CHANGED
@@ -1,11 +1,12 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  $es_c_email_subscribers_ver = get_option('email-subscribers');
8
- if ($es_c_email_subscribers_ver <> "2.9") {
9
  ?>
10
  <div class="error fade">
11
  <p>
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  $es_c_email_subscribers_ver = get_option('email-subscribers');
9
+ if ($es_c_email_subscribers_ver != "2.9") {
10
  ?>
11
  <div class="error fade">
12
  <p>
cron/cron-add.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  ?>
@@ -51,7 +52,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
51
 
52
  $es_cron_adminmail = get_option('es_cron_adminmail', '');
53
  if($es_cron_adminmail == "") {
54
- add_option('es_cron_adminmail', "Hi Admin, \r\n\r\nCron URL has been triggered successfully on ###DATE### for the mail ###SUBJECT###. And it sent mail to ###COUNT### recipient. \r\n\r\nThank You");
55
  $es_cron_adminmail = get_option('es_cron_adminmail');
56
  }
57
 
@@ -93,8 +94,8 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
93
  </tr>
94
  <tr>
95
  <th scope="row">
96
- <label for="tag-image"><?php echo __( 'Mail Count', ES_TDOMAIN ); ?>
97
- <p class="description"><?php echo __( 'Number of mails you want to trigger per hour.', ES_TDOMAIN ); ?></p>
98
  </label>
99
  </th>
100
  <td>
@@ -104,7 +105,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
104
  </tr>
105
  <tr>
106
  <th scope="row">
107
- <label for="tag-image"><?php echo __( 'Admin Report', 'email-subscribers' ); ?>
108
  <p class="description"><?php echo __( 'Email to admin whenever cron URL is triggered from your server. (Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)', ES_TDOMAIN ); ?></p>
109
  </label>
110
  </th>
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  ?>
52
 
53
  $es_cron_adminmail = get_option('es_cron_adminmail', '');
54
  if($es_cron_adminmail == "") {
55
+ add_option('es_cron_adminmail', "Hi Admin, \r\n\r\nCron URL has been triggered successfully on ###DATE### for the email ###SUBJECT###. And it sent email to ###COUNT### recipient. \r\n\r\nThank You");
56
  $es_cron_adminmail = get_option('es_cron_adminmail');
57
  }
58
 
94
  </tr>
95
  <tr>
96
  <th scope="row">
97
+ <label for="tag-image"><?php echo __( 'Email Count', ES_TDOMAIN ); ?>
98
+ <p class="description"><?php echo __( 'Number of emails that you want to trigger per hour.', ES_TDOMAIN ); ?></p>
99
  </label>
100
  </th>
101
  <td>
105
  </tr>
106
  <tr>
107
  <th scope="row">
108
+ <label for="tag-image"><?php echo __( 'Admin Report', ES_TDOMAIN ); ?>
109
  <p class="description"><?php echo __( 'Email to admin whenever cron URL is triggered from your server. (Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)', ES_TDOMAIN ); ?></p>
110
  </label>
111
  </th>
email-subscribers.php CHANGED
@@ -3,11 +3,11 @@
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: http://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
6
- * Version: 3.2.7
7
  * Author: Icegram
8
  * Author URI: http://www.icegram.com/
9
  * Requires at least: 3.4
10
- * Tested up to: 4.7.2
11
  * Text Domain: email-subscribers
12
  * Domain Path: /languages/
13
  * License: GPLv3
@@ -15,7 +15,9 @@
15
  * Copyright (c) 2016, 2017 Icegram
16
  */
17
 
18
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You are not allowed to call this page directly.'); }
 
 
19
 
20
  require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'base'.DIRECTORY_SEPARATOR.'es-defined.php');
21
  require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'classes'.DIRECTORY_SEPARATOR.'es-stater.php');
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: http://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
6
+ * Version: 3.2.8
7
  * Author: Icegram
8
  * Author URI: http://www.icegram.com/
9
  * Requires at least: 3.4
10
+ * Tested up to: 4.7.3
11
  * Text Domain: email-subscribers
12
  * Domain Path: /languages/
13
  * License: GPLv3
15
  * Copyright (c) 2016, 2017 Icegram
16
  */
17
 
18
+ if ( preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF']) ) {
19
+ die('You are not allowed to call this page directly.');
20
+ }
21
 
22
  require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'base'.DIRECTORY_SEPARATOR.'es-defined.php');
23
  require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'classes'.DIRECTORY_SEPARATOR.'es-stater.php');
export/export-email-address.php CHANGED
@@ -14,8 +14,8 @@ if ( !empty($_SERVER) && !empty($_GET) && !empty($_GET['es']) && $_GET['es'] ==
14
  $option = isset($_REQUEST['option']) ? $_REQUEST['option'] : '';
15
  switch ($option) {
16
  case "view_subscriber":
17
- $sSql = "select es_email_mail as Email, es_email_name as Name, es_email_status as Status, es_email_created as Created,";
18
- $sSql = $sSql . " es_email_group as Emailgroup from ". $wpdb->prefix . "es_emaillist ORDER BY es_email_mail";
19
  $data = $wpdb->get_results($sSql);
20
  es_cls_common::download($data, 's', '');
21
  break;
@@ -25,7 +25,7 @@ if ( !empty($_SERVER) && !empty($_GET) && !empty($_GET['es']) && $_GET['es'] ==
25
  break;
26
  case "commentposed_user":
27
  $sSql = "SELECT DISTINCT(comment_author_email) as Email, comment_author as 'Name'";
28
- $sSql = $sSql . "from ". $wpdb->prefix . "comments WHERE comment_author_email <> '' ORDER BY comment_author_email";
29
  $data = $wpdb->get_results($sSql);
30
  es_cls_common::download($data, 'c', '');
31
  break;
14
  $option = isset($_REQUEST['option']) ? $_REQUEST['option'] : '';
15
  switch ($option) {
16
  case "view_subscriber":
17
+ $sSql = "SELECT es_email_mail as Email, es_email_name as Name, es_email_status as Status, es_email_created as Created,";
18
+ $sSql = $sSql . " es_email_group as Emailgroup from ". $wpdb->prefix . "es_emaillist WHERE es_email_status IN ( 'Confirmed', 'Single Opt In' ) ORDER BY es_email_mail";
19
  $data = $wpdb->get_results($sSql);
20
  es_cls_common::download($data, 's', '');
21
  break;
25
  break;
26
  case "commentposed_user":
27
  $sSql = "SELECT DISTINCT(comment_author_email) as Email, comment_author as 'Name'";
28
+ $sSql = $sSql . "from ". $wpdb->prefix . "comments WHERE comment_author_email != '' ORDER BY comment_author_email";
29
  $data = $wpdb->get_results($sSql);
30
  es_cls_common::download($data, 'c', '');
31
  break;
help/help.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  ?>
@@ -110,7 +111,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
110
 
111
  </style>
112
 
113
- <?php $subbox_code = esc_html( '<?php es_subbox( $namefield = "YES", $desc = "", $group = "" ); ?>' ); ?>
114
 
115
  <ol class="es_faq_list">
116
  <li class="es_faq">
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  ?>
111
 
112
  </style>
113
 
114
+ <?php $subbox_code = esc_html( '<?php es_subbox( $namefield = "YES", $desc = "", $group = "Public" ); ?>' ); ?>
115
 
116
  <ol class="es_faq_list">
117
  <li class="es_faq">
job/es-cron.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if( preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF']) ) {
4
- die( 'You are not allowed to call this page directly.' );
 
5
  }
6
 
7
  if( (isset($_GET['es'])) && ($_GET['es'] == "cron") ) {
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  if( (isset($_GET['es'])) && ($_GET['es'] == "cron") ) {
job/es-optin.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  if( (isset($_GET['es'])) && ($_GET['es'] == "optin") ) {
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  if( (isset($_GET['es'])) && ($_GET['es'] == "optin") ) {
job/es-subscribe.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  if( (isset($_GET['es'])) && ($_GET['es'] == "subscribe") ) {
@@ -58,8 +59,10 @@ if( (isset($_GET['es'])) && ($_GET['es'] == "subscribe") ) {
58
  if( $data['es_c_optinoption'] == "Double Opt In" ) {
59
  es_cls_sendmail::es_sendmail("optin", $template = 0, $subscribers, "optin", 0);
60
  echo "subscribed-pending-doubleoptin";
61
- } else if( $data['es_c_usermailoption'] == "YES" ) {
62
- es_cls_sendmail::es_sendmail("welcome", $template = 0, $subscribers, "welcome", 0);
 
 
63
  echo "subscribed-successfully";
64
  }
65
  }
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  if( (isset($_GET['es'])) && ($_GET['es'] == "subscribe") ) {
59
  if( $data['es_c_optinoption'] == "Double Opt In" ) {
60
  es_cls_sendmail::es_sendmail("optin", $template = 0, $subscribers, "optin", 0);
61
  echo "subscribed-pending-doubleoptin";
62
+ } else {
63
+ if ( $data['es_c_usermailoption'] == "YES" ) {
64
+ es_cls_sendmail::es_sendmail("welcome", $template = 0, $subscribers, "welcome", 0);
65
+ }
66
  echo "subscribed-successfully";
67
  }
68
  }
job/es-unsubscribe.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die( 'You are not allowed to call this page directly.' );
 
5
  }
6
 
7
  if( (isset($_GET['es'])) && ($_GET['es'] == "unsubscribe") ) {
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  if( (isset($_GET['es'])) && ($_GET['es'] == "unsubscribe") ) {
job/es-viewstatus.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die( 'You are not allowed to call this page directly.' );
 
5
  }
6
 
7
  if( ( isset($_GET['es']) ) && $_GET['es'] == "viewstatus" ) {
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  if( ( isset($_GET['es']) ) && $_GET['es'] == "viewstatus" ) {
languages/email-subscribers-ca.mo CHANGED
Binary file
languages/email-subscribers-ca.po CHANGED
@@ -1,12 +1,12 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.2.6\n"
4
  "Report-Msgid-Bugs-To: http://www.storeapps.org/support/contact-us/\n"
5
- "POT-Creation-Date: 2017-01-24 01:19+0000\n"
6
- "PO-Revision-Date: Fri Feb 10 2017 15:03:22 GMT+0530 (IST)\n"
7
- "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Catalan\n"
9
- "Language: Catalan\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -22,48 +22,6 @@ msgstr ""
22
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
  "X-Loco-Target-Locale: ca_ES"
24
 
25
- #: classes/es-register.php:148 classes/es-register.php:149
26
- #: notification/notification-show.php:51
27
- msgid "Post Notifications"
28
- msgstr "Notificacions posteriors"
29
-
30
- #: settings/settings-edit.php:335
31
- msgid ""
32
- "Default message to display if there is any issue while clicking on "
33
- "confirmation link from the Double Opt In (confirmation) Emails."
34
- msgstr ""
35
- "Missatge predeterminat que es mostra si hi ha algun problema mentre fa clic "
36
- "a l'enllaç de confirmació de l'adreça de correu electrònic pel Double Opt In "
37
- "(confirmació)."
38
-
39
- #: settings/settings-edit.php:342
40
- msgid ""
41
- "Default message to display if there is any issue while clicking on "
42
- "unsubscribe link from the Emails."
43
- msgstr ""
44
- "Missatge predeterminat que es mostra si hi ha algun problema mentre fa clic "
45
- "a l'enllaç per donar-se de baixa dels correus electrònics."
46
-
47
- #: settings/settings-edit.php:350
48
- msgid ""
49
- "Enter the admin email addresses that should receive notifications (separated "
50
- "by comma)."
51
- msgstr ""
52
- "Introduïu les adreces de correu electrònic d'administració que han de rebre "
53
- "notificacions (separades per comes)."
54
-
55
- #: settings/settings-edit.php:356
56
- msgid "Notify Admin about New Subscriber"
57
- msgstr "Notificar a administradors sobre Nou subscriptor"
58
-
59
- #: settings/settings-edit.php:357
60
- msgid ""
61
- "To send admin email notifications for the new subscriber. This option must "
62
- "be set to YES."
63
- msgstr ""
64
- "Per enviar notificacions per correu electrònic a l'administrador per un nou "
65
- "subscrit. Aquesta opció ha d'estar a YES."
66
-
67
  #: classes/es-common.php:8
68
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
69
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmat</span>"
@@ -89,8 +47,8 @@ msgid "<span style=\"color:#999900;\">Nodata</span>"
89
  msgstr "<span style=\"color:#999900;\">No hi ha dades</span>"
90
 
91
  #: classes/es-common.php:26
92
- msgid "<span style=\"color:#FF0000\">Disable</span>"
93
- msgstr "<span style=\"color:#FF0000\">Desactivar</span>"
94
 
95
  #: classes/es-common.php:29
96
  msgid "<span style=\"color:#FF0000\">In Queue</span>"
@@ -101,24 +59,24 @@ msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
101
  msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Enviat</span>"
102
 
103
  #: classes/es-common.php:35
104
- msgid "<span style=\"color:#ffd700;font-weight:bold;\">Cron Mail</span>"
105
- msgstr "<span style=\"color:#ffd700;font-weight:bold;\">Cron Mail</span>"
106
 
107
  #: classes/es-common.php:38
108
- msgid "<span style=\"color:#993399;\">Instant Mail</span>"
109
- msgstr "<span style=\"color:#993399;\">Correu instantani</span>"
110
 
111
- #: classes/es-loadwidget.php:24 classes/es-register.php:499
112
- #: subscribers/view-subscriber-show.php:353
113
  #: subscribers/view-subscriber-show.php:367
114
  msgid "Name"
115
  msgstr "Nom"
116
 
117
- #: classes/es-loadwidget.php:29 classes/es-register.php:504
118
  msgid "Email *"
119
  msgstr "Email*"
120
 
121
- #: classes/es-loadwidget.php:34 classes/es-register.php:509
122
  msgid "Subscribe"
123
  msgstr "Subscriure"
124
 
@@ -126,17 +84,22 @@ msgstr "Subscriure"
126
  msgid "Email Subscribers"
127
  msgstr "Email Subscribers"
128
 
129
- #: classes/es-register.php:142 classes/es-register.php:143
130
  #: subscribers/view-subscriber-show.php:240
131
  msgid "Subscribers"
132
  msgstr "Subscriptors"
133
 
134
- #: classes/es-register.php:145 classes/es-register.php:146
135
  #: compose/compose-show.php:63
136
  msgid "Compose"
137
  msgstr "Compondre"
138
 
139
- #: classes/es-register.php:151 classes/es-register.php:152
 
 
 
 
 
140
  #: sendmail/sendmail.php:92
141
  msgid "Newsletters"
142
  msgstr "Butlletins"
@@ -145,17 +108,17 @@ msgstr "Butlletins"
145
  msgid "Cron Settings"
146
  msgstr "configuració del cron"
147
 
148
- #: classes/es-register.php:157 classes/es-register.php:158
149
  #: settings/settings-edit.php:196
150
  msgid "Email Settings"
151
  msgstr "Configuració del email"
152
 
153
- #: classes/es-register.php:160 classes/es-register.php:161
154
  #: roles/roles-add.php:109
155
  msgid "User Roles"
156
  msgstr "Funcions d'usuari"
157
 
158
- #: classes/es-register.php:163 classes/es-register.php:164
159
  #: sentmail/sentmail-show.php:95
160
  msgid "Reports"
161
  msgstr "Informes"
@@ -263,7 +226,8 @@ msgstr "Selecciona el grup de subscriptors."
263
 
264
  #: classes/es-register.php:209
265
  msgctxt "notification-enhanced-select"
266
- msgid "Please select notification mail subject. Use compose menu to create new."
 
267
  msgstr ""
268
  "Seleccioneu l'assumpte del email de notificació. Utilitzeu menú de "
269
  "composició per crear-ne de nous."
@@ -443,7 +407,7 @@ msgctxt "widget-page-enhanced-select"
443
  msgid "There was a problem with the request."
444
  msgstr "Hi ha hagut un problema amb la sol·licitud."
445
 
446
- #: classes/es-register.php:408
447
  msgid ""
448
  "Email Subscribers recommends free plugin <b>Rainmaker</b> to collect leads "
449
  "instantly"
@@ -451,31 +415,31 @@ msgstr ""
451
  "Email Subscribers recomana el plugin gratuït <b> Rainmaker </ b> per "
452
  "recollir els cables a l'instant"
453
 
454
- #: classes/es-register.php:409
455
  msgid "Yes, I want this"
456
  msgstr "Si, ho vull"
457
 
458
- #: classes/es-register.php:409
459
  msgid "No, I don't want it"
460
  msgstr "No, no ho vull"
461
 
462
- #: classes/es-register.php:544
463
  msgid "Widget Title"
464
  msgstr "Títol del widget"
465
 
466
- #: classes/es-register.php:548
467
  msgid "Display Name Field"
468
  msgstr "Mostra nom del camp"
469
 
470
- #: classes/es-register.php:555
471
  msgid "Short Description"
472
  msgstr "Descripció breu"
473
 
474
- #: classes/es-register.php:557
475
  msgid "Short description about your subscription form."
476
  msgstr "Breu descripció sobre el seu formulari de subscripció."
477
 
478
- #: classes/es-register.php:560
479
  msgid "Subscriber Group"
480
  msgstr "Grup de subscriptor"
481
 
@@ -491,48 +455,47 @@ msgstr "Plantilla creada correctament."
491
  msgid "Add new Email"
492
  msgstr "Afegir un email nou"
493
 
494
- #: compose/compose-add.php:74 compose/compose-edit.php:85
495
- #: compose/compose-preview.php:27 compose/compose-show.php:65
496
- #: cron/cron-add.php:79 notification/notification-add.php:112
497
- #: notification/notification-edit.php:123
498
- #: notification/notification-show.php:53 roles/roles-add.php:110
499
- #: sendmail/sendmail.php:93 sentmail/deliverreport-show.php:60
500
- #: sentmail/sentmail-preview.php:27 sentmail/sentmail-show.php:96
501
- #: settings/settings-edit.php:197 subscribers/view-subscriber-add.php:113
502
- #: subscribers/view-subscriber-edit.php:112
503
- #: subscribers/view-subscriber-export.php:29
504
- #: subscribers/view-subscriber-import.php:145
505
- #: subscribers/view-subscriber-show.php:245
506
  #: subscribers/view-subscriber-sync.php:91
507
  msgid "Help"
508
  msgstr "Ajuda"
509
 
510
  #: compose/compose-add.php:77 compose/compose-edit.php:88
511
- msgid "Select your Mail Type"
512
- msgstr "Seleccioneu el Tipus de correu"
513
 
514
  #: compose/compose-add.php:79 compose/compose-edit.php:90
515
- msgid "Static Template (For Newsletter Emails)"
516
- msgstr "Plantilla estàtica (per Newsletter Emails)"
517
 
518
  #: compose/compose-add.php:80 compose/compose-edit.php:91
519
- msgid "Dynamic Template (For Post Notification Emails)"
520
- msgstr "Plantilla dinàmica (pels correus electrònics de notificació de correus)"
521
 
522
  #: compose/compose-add.php:84 compose/compose-edit.php:95
523
- msgid "Enter Mail Subject"
524
- msgstr "Entra l'assumpte del email"
525
 
526
  #: compose/compose-add.php:86 compose/compose-edit.php:97
527
  msgid "Keyword: ###POSTTITLE###"
528
  msgstr "Paraula clau: ###POSTTITLE###"
529
 
530
  #: compose/compose-add.php:88 compose/compose-edit.php:99
531
- msgid "Enter Content for your Mail"
532
- msgstr "Introdueixi el contingut del seu correu"
533
 
534
  #: compose/compose-add.php:92 compose/compose-edit.php:103
535
- #, c-format
536
  msgid ""
537
  "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
538
  "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
@@ -546,11 +509,10 @@ msgstr ""
546
  msgid "Available Keywords"
547
  msgstr "Paraules clau disponibles"
548
 
549
- #: compose/compose-add.php:96 compose/compose-edit.php:107
550
- #: compose/compose-show.php:77 compose/compose-show.php:85
551
- #: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:85
552
- #: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
553
- #: subscribers/view-subscriber-show.php:354
554
  #: subscribers/view-subscriber-show.php:368
555
  msgid "Status"
556
  msgstr "Estat"
@@ -563,17 +525,17 @@ msgstr "Publicat"
563
  msgid "Please select your mail status"
564
  msgstr "Si us plau selecciona el teu estat del correu"
565
 
566
- #: compose/compose-add.php:104 compose/compose-edit.php:116
567
- #: cron/cron-add.php:119 notification/notification-add.php:251
568
- #: notification/notification-edit.php:291 roles/roles-add.php:206
569
  #: subscribers/view-subscriber-edit.php:190
570
  msgid "Save"
571
  msgstr "Desar"
572
 
573
- #: compose/compose-edit.php:19 compose/compose-preview.php:17
574
- #: compose/compose-show.php:32 notification/notification-edit.php:19
575
- #: notification/notification-show.php:20 sentmail/sentmail-preview.php:17
576
- #: sentmail/sentmail-show.php:21 settings/settings-edit.php:19
577
  #: subscribers/view-subscriber-edit.php:21
578
  msgid "Oops, selected details does not exists."
579
  msgstr "Vaja, les dades seleccionades no existeixen."
@@ -586,7 +548,7 @@ msgstr "Plantilla actualitzada correctament."
586
  msgid "Edit Email"
587
  msgstr "Editar email"
588
 
589
- #: compose/compose-edit.php:84 compose/compose-show.php:64
590
  #: notification/notification-edit.php:122 notification/notification-show.php:52
591
  msgid "Add New"
592
  msgstr "Afegir nou"
@@ -595,49 +557,48 @@ msgstr "Afegir nou"
595
  msgid "Preview Mail"
596
  msgstr "Visió prèvia del correu"
597
 
598
- #: compose/compose-preview.php:39 compose/compose-show.php:103
599
- #: notification/notification-show.php:96
600
  #: subscribers/view-subscriber-show.php:398
601
  msgid "Edit"
602
  msgstr "Editar"
603
 
604
- #: compose/compose-show.php:13 sendmail/sendmail.php:17
605
  #: subscribers/view-subscriber-show.php:16
606
  msgid "Click Here"
607
  msgstr "Clica aquí"
608
 
609
- #: compose/compose-show.php:46 notification/notification-show.php:34
610
  #: sentmail/sentmail-show.php:35
611
  msgid "Selected record deleted."
612
  msgstr "Eliminat el registre seleccionat ."
613
 
614
- #: compose/compose-show.php:76 compose/compose-show.php:84
615
- msgid "Email subject"
616
- msgstr "Assumpte del email"
 
617
 
618
- #: compose/compose-show.php:78 compose/compose-show.php:86
619
- #: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:86
620
- #: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
621
- msgid "Type"
622
- msgstr "Tipus"
623
 
624
- #: compose/compose-show.php:79 compose/compose-show.php:87
625
  msgid "Actions"
626
  msgstr "Accions"
627
 
628
- #: compose/compose-show.php:104 notification/notification-show.php:99
629
- #: subscribers/view-subscriber-show.php:277
630
  #: subscribers/view-subscriber-show.php:403
631
  msgid "Delete"
632
  msgstr "Esborrar"
633
 
634
- #: compose/compose-show.php:105 sentmail/sentmail-show.php:110
635
  #: sentmail/sentmail-show.php:123
636
  msgid "Preview"
637
  msgstr "Vista previa"
638
 
639
- #: compose/compose-show.php:113 notification/notification-show.php:139
640
- #: sentmail/deliverreport-show.php:113 sentmail/sentmail-show.php:166
641
  #: subscribers/view-subscriber-show.php:426
642
  msgid "No records available."
643
  msgstr "No hi ha registres disponibles."
@@ -690,7 +651,8 @@ msgstr ""
690
 
691
  #: cron/cron-add.php:125
692
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
693
- msgstr "El que és Cron (correus electrònics automàtics) i com configurar Cron Job?"
 
694
 
695
  #: cron/cron-add.php:126
696
  msgid ""
@@ -718,12 +680,13 @@ msgstr ""
718
 
719
  #: cron/cron-add.php:129
720
  msgid ""
721
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-"
722
- "if-hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
 
723
  msgstr ""
724
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-"
725
- "if-hosting-doesnt-support-cron-jobs/\">El teu hosting no admet els treballs "
726
- "de cron?</a>"
727
 
728
  #: export/export-email-address.php:33 export/export-email-address.php:37
729
  msgid "Unexpected url submit has been detected"
@@ -734,7 +697,8 @@ msgid "Welcome to Email Subscribers!"
734
  msgstr "Benvingut a Email Subscribers!"
735
 
736
  #: help/help.php:47
737
- msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
 
738
  msgstr "Gràcies per instal·lar-lo i esperem que gaudeixi d'Email Subscribers."
739
 
740
  #: help/help.php:51
@@ -742,7 +706,6 @@ msgid "For more help and tips..."
742
  msgstr "Per obtenir més ajuda i consells ..."
743
 
744
  #: help/help.php:66
745
- #, c-format
746
  msgid "Like Email Subscribers? Please consider %s."
747
  msgstr "T'agrada Email Subscribers? Si us plau, consideri %s"
748
 
@@ -754,12 +717,11 @@ msgstr "contribuir amb nosaltres"
754
  msgid "Frequently Asked Questions"
755
  msgstr "Preguntes més freqüents (FAQ)"
756
 
757
- #: help/help.php:117 help/help.php:126 help/help.php:129 help/help.php:132
758
- #: help/help.php:135 help/help.php:138 help/help.php:141 help/help.php:144
759
- #: help/help.php:147 help/help.php:150 help/help.php:153 help/help.php:156
760
- #: help/help.php:159 help/help.php:162 help/help.php:165 help/help.php:168
761
  #: help/help.php:171 help/help.php:174 help/help.php:177
762
- #, c-format
763
  msgid "%s"
764
  msgstr "%s"
765
 
@@ -828,7 +790,8 @@ msgstr "Els subscriptors no estan rebent missatges de correu electrònic?"
828
 
829
  #: help/help.php:159
830
  msgid "How to show subscribe form inside a popup?"
831
- msgstr "Com mostrar el formulari de subscripció a l'interior d'una finestra emergent?"
 
832
 
833
  #: help/help.php:162
834
  msgid "How to use Rainmaker’s form in Email Subscribers?"
@@ -854,7 +817,7 @@ msgstr "Què fer si el teu Hosting no és compatible amb Cron Jobs?"
854
  msgid "Commonly Asked Questions"
855
  msgstr "Preguntes comuns"
856
 
857
- #: job/es-optin.php:57 job/es-optin.php:67 job/es-unsubscribe.php:54
858
  #: job/es-unsubscribe.php:61
859
  msgid ""
860
  "Oops.. We are getting some technical error. Please try again or contact "
@@ -876,7 +839,8 @@ msgid "Please select notification status."
876
  msgstr "Seleccioneu l'estat de la notificació."
877
 
878
  #: notification/notification-add.php:44 notification/notification-edit.php:60
879
- msgid "Please select notification mail subject. Use compose menu to create new."
 
880
  msgstr ""
881
  "Seleccioneu l'assumpte del email de notificació. Utilitzeu menú de "
882
  "composició per crear-ne de nous."
@@ -897,20 +861,20 @@ msgstr "Afegir notificació"
897
  msgid "Select Subscribers Group"
898
  msgstr "Seleccioneu Grup Subscriptors"
899
 
900
- #: notification/notification-add.php:123 notification/notification-add.php:147
901
- #: notification/notification-edit.php:134
902
- #: notification/notification-edit.php:167 sendmail/sendmail.php:109
903
- #: sendmail/sendmail.php:136 sendmail/sendmail.php:150
904
- #: subscribers/view-subscriber-add.php:161
905
- #: subscribers/view-subscriber-edit.php:161
906
- #: subscribers/view-subscriber-import.php:189
907
  #: subscribers/view-subscriber-sync.php:118
908
  msgid "Select"
909
  msgstr "seleccionar"
910
 
911
  #: notification/notification-add.php:141 notification/notification-edit.php:161
912
- msgid "Select Notification Mail Subject"
913
- msgstr "Seleccioneu l'assumpte del correu de notificació"
914
 
915
  #: notification/notification-add.php:142 notification/notification-edit.php:162
916
  msgid "(Use compose menu to create new)"
@@ -920,41 +884,45 @@ msgstr "(Utilitzeu el menú de composició per crear-ne de nou)"
920
  msgid "Select Post Categories"
921
  msgstr "Seleccioneu categoria de correu"
922
 
923
- #: notification/notification-add.php:193 notification/notification-edit.php:224
924
  msgid "Check All"
925
  msgstr "Seleccionar-ho tot"
926
 
927
- #: notification/notification-add.php:194 notification/notification-edit.php:225
928
  msgid "Uncheck All"
929
  msgstr "Deseleccionar-ho tot"
930
 
931
- #: notification/notification-add.php:200 notification/notification-edit.php:232
932
  msgid "Select your Custom Post Type"
933
  msgstr "Seleccioni el seu tipus personalitzat del Post"
934
 
935
- #: notification/notification-add.php:201 notification/notification-edit.php:233
936
  msgid "(Optional)"
937
  msgstr "(Opcional)"
938
 
939
- #: notification/notification-add.php:230 notification/notification-edit.php:267
940
  msgid "No Custom Post Types Available"
941
  msgstr "Sense tipus de Post personalitzats disponibles"
942
 
943
- #: notification/notification-add.php:237 notification/notification-edit.php:275
944
- msgid "Select Notification Status"
945
- msgstr "Tria un estat de notificació"
946
 
947
- #: notification/notification-add.php:241 notification/notification-edit.php:280
948
- msgid "Send mail immediately when new post is published"
949
- msgstr "Enviar correu immediatament quan es publica nova entrada"
 
 
950
 
951
- #: notification/notification-add.php:242 notification/notification-edit.php:281
952
- msgid "Add to cron when new post is published and send via cron job"
953
- msgstr "Afegir a cron quan es publica nova entrada i enviar a través de cron"
 
 
954
 
955
- #: notification/notification-add.php:243 notification/notification-edit.php:282
956
- msgid "Disable notification"
957
- msgstr "Desactivar la notificació"
958
 
959
  #: notification/notification-edit.php:48
960
  msgid "Please select subscribers group"
@@ -972,41 +940,38 @@ msgstr "Notificació actualitzada correctament."
972
  msgid "Edit Notification"
973
  msgstr "Editar la notificació"
974
 
975
- #: notification/notification-edit.php:130
976
  #: subscribers/view-subscriber-show.php:279
977
  msgid "Update Subscribers Group"
978
  msgstr "Actualitzar grups de subscriptors"
979
 
980
- #: notification/notification-show.php:64 notification/notification-show.php:72
981
- msgid "Mail Subject"
982
- msgstr "Assumpte del email"
 
 
 
 
983
 
984
- #: notification/notification-show.php:65 notification/notification-show.php:73
985
  msgid "Subscribers Group"
986
  msgstr "Grups de subscriptors"
987
 
988
- #: notification/notification-show.php:66 notification/notification-show.php:74
989
- msgid "Categories / Custom Post"
990
- msgstr "Categories / Custom Post"
991
 
992
- #: notification/notification-show.php:67 notification/notification-show.php:75
993
  msgid "Notification Status"
994
  msgstr "Estat de la notificació"
995
 
996
- #: notification/notification-show.php:126
997
- msgid "Send mail immediately when new post is published."
998
- msgstr "Enviar correu immediatament quan es publica nova entrada."
999
-
1000
- #: notification/notification-show.php:128
1001
- msgid "Add to cron and send mail via cron job."
1002
- msgstr "Afegir a cron i enviar correu a través de cron."
1003
-
1004
  #: roles/roles-add.php:52
1005
  msgid "Role Updated. "
1006
  msgstr "Rol actualitzat"
1007
 
1008
  #: roles/roles-add.php:113
1009
- msgid "Select user roles who can access following menus. Only Admin can change this."
 
1010
  msgstr ""
1011
  "Seleccioneu els rols d'usuaris que poden accedir als menús següents. Només "
1012
  "administrador pot canviar això."
@@ -1015,20 +980,20 @@ msgstr ""
1015
  msgid "Subscribers Menu"
1016
  msgstr "Menú dels subscriptors"
1017
 
1018
- #: roles/roles-add.php:124 roles/roles-add.php:136 roles/roles-add.php:148
1019
- #: roles/roles-add.php:160 roles/roles-add.php:172 roles/roles-add.php:184
1020
  #: roles/roles-add.php:196
1021
  msgid "Administrator Only"
1022
  msgstr "Només l'administrador"
1023
 
1024
- #: roles/roles-add.php:125 roles/roles-add.php:137 roles/roles-add.php:149
1025
- #: roles/roles-add.php:161 roles/roles-add.php:173 roles/roles-add.php:185
1026
  #: roles/roles-add.php:197
1027
  msgid "Administrator/Editor"
1028
  msgstr "Administrador/editor"
1029
 
1030
- #: roles/roles-add.php:126 roles/roles-add.php:138 roles/roles-add.php:150
1031
- #: roles/roles-add.php:162 roles/roles-add.php:174 roles/roles-add.php:186
1032
  #: roles/roles-add.php:198
1033
  msgid "Administrator/Editor/Author/Contributor"
1034
  msgstr "Administrador/editor/autor/contribuidor"
@@ -1095,13 +1060,9 @@ msgstr "Seleccioneu l'assumpte del correu de la llista disponible"
1095
  msgid "Select Mail Type"
1096
  msgstr "Selecciona el tipus de correu"
1097
 
1098
- #: sendmail/sendmail.php:137
1099
- msgid "Send mail immediately"
1100
- msgstr "Send mail immediately"
1101
-
1102
  #: sendmail/sendmail.php:138
1103
- msgid "Send mail via cron job"
1104
- msgstr "Enviar correu via Cron"
1105
 
1106
  #: sendmail/sendmail.php:145
1107
  msgid "Select Subscribers group to Send Mail"
@@ -1112,15 +1073,14 @@ msgid "Recipients : 0 "
1112
  msgstr "Destinataris: 0"
1113
 
1114
  #: sendmail/sendmail.php:179
1115
- #, c-format
1116
  msgid "Recipients : %s"
1117
  msgstr "Destinataris : %s"
1118
 
1119
  #: sendmail/sendmail.php:182
1120
  msgid ""
1121
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1122
- "that you change above Mail Type to Cron and Send Mail via Cron Job."
1123
- "</strong><br>Click on Help for more information."
1124
  msgstr ""
1125
  "<br> compten <strong> Els destinataris són superiors a 100. <br> És molt "
1126
  "recomanable que canviï mes Tipus de correu a Cron i enviar-lo via Cron Job. "
@@ -1150,34 +1110,35 @@ msgstr " &gt;&gt; "
1150
  msgid "Delivery Report"
1151
  msgstr "Informe de lliurament"
1152
 
1153
- #: sentmail/deliverreport-show.php:70 sentmail/deliverreport-show.php:82
1154
- #: subscribers/view-subscriber-export.php:36
1155
- #: subscribers/view-subscriber-export.php:44
1156
- #: subscribers/view-subscriber-show.php:351
1157
  #: subscribers/view-subscriber-show.php:365
1158
  msgid "Sno"
1159
  msgstr "Sno"
1160
 
1161
- #: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:83
1162
  msgid "Email"
1163
  msgstr "Email"
1164
 
1165
- #: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:84
 
 
 
 
 
1166
  msgid "Sent Date"
1167
  msgstr "data d'enviament"
1168
 
1169
- #: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:87
1170
  msgid "Viewed Status"
1171
  msgstr "Veure status"
1172
 
1173
- #: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:88
1174
  msgid "Viewed Date"
1175
  msgstr "Veure data"
1176
 
1177
- #: sentmail/deliverreport-show.php:77 sentmail/deliverreport-show.php:89
1178
- msgid "Database ID"
1179
- msgstr "ID de registre"
1180
-
1181
  #: sentmail/sentmail-preview.php:41
1182
  msgid "Back"
1183
  msgstr "Enrera"
@@ -1187,16 +1148,18 @@ msgid "Successfully deleted all reports except latest 10."
1187
  msgstr "S'han eliminat tots els informes excepte els 10 últims."
1188
 
1189
  #: sentmail/sentmail-show.php:99
1190
- msgid "It will show reports for all Newsletters & Post Notification emails sent."
1191
- msgstr "Es mostrarà informes de tots els Butlletins & Post notificació enviats."
 
 
1192
 
1193
  #: sentmail/sentmail-show.php:109 sentmail/sentmail-show.php:122
1194
  msgid "View Reports"
1195
  msgstr "Veure informes"
1196
 
1197
  #: sentmail/sentmail-show.php:111 sentmail/sentmail-show.php:124
1198
- msgid "Source"
1199
- msgstr "Font"
1200
 
1201
  #: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
1202
  msgid "Start Date"
@@ -1210,10 +1173,10 @@ msgstr "Data final"
1210
  msgid "Total"
1211
  msgstr "Total"
1212
 
1213
- #: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
1214
- #: subscribers/view-subscriber-export.php:39
1215
- #: subscribers/view-subscriber-export.php:47
1216
- #: subscribers/view-subscriber-show.php:357
1217
  #: subscribers/view-subscriber-show.php:371
1218
  msgid "Action"
1219
  msgstr "Acció"
@@ -1262,7 +1225,7 @@ msgstr "Vaja, no es pot actualitzar."
1262
  msgid "Sender of Notifications"
1263
  msgstr "Remitent de Notificacions"
1264
 
1265
- #: settings/settings-edit.php:206
1266
  msgid ""
1267
  "Choose a FROM name and FROM email address for all the emails to be sent from "
1268
  "this plugin."
@@ -1318,10 +1281,10 @@ msgstr ""
1318
  msgid "Double Opt In"
1319
  msgstr "Doble Opt In"
1320
 
1321
- #: settings/settings-edit.php:236 subscribers/view-subscriber-add.php:150
1322
- #: subscribers/view-subscriber-edit.php:149
1323
- #: subscribers/view-subscriber-import.php:177
1324
- #: subscribers/view-subscriber-show.php:302
1325
  #: subscribers/view-subscriber-show.php:329
1326
  msgid "Single Opt In"
1327
  msgstr "Opt In sencill"
@@ -1410,12 +1373,12 @@ msgstr ""
1410
  "Per enviar correu electrònic de benvinguda al subscriptor després del "
1411
  "registre amb èxit. Aquesta opció ha d'estar a YES."
1412
 
1413
- #: settings/settings-edit.php:289 settings/settings-edit.php:362
1414
  #: subscribers/view-subscriber-sync.php:106
1415
  msgid "YES"
1416
  msgstr "Si"
1417
 
1418
- #: settings/settings-edit.php:290 settings/settings-edit.php:363
1419
  #: subscribers/view-subscriber-sync.php:105
1420
  msgid "NO"
1421
  msgstr "No"
@@ -1480,14 +1443,51 @@ msgstr ""
1480
  msgid "Error in Confirmation Link"
1481
  msgstr "Error en la confirmació d'enllaç"
1482
 
 
 
 
 
 
 
 
 
 
1483
  #: settings/settings-edit.php:341
1484
  msgid "Error in Unsubscribe Link"
1485
  msgstr "Error en el enllaç de donar-se de baixa"
1486
 
 
 
 
 
 
 
 
 
1487
  #: settings/settings-edit.php:349
1488
  msgid "Admin Email Addresses"
1489
  msgstr "Adreces email dels administradors"
1490
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1491
  #: settings/settings-edit.php:369
1492
  msgid "Admin Email Subject"
1493
  msgstr "Assumpte pel email als administradors"
@@ -1518,7 +1518,8 @@ msgid "Sent Report Subject"
1518
  msgstr "Assumpte del informe enviat"
1519
 
1520
  #: settings/settings-edit.php:385
1521
- msgid "Enter the subject for the sent email report. It will be mailed to Admin."
 
1522
  msgstr ""
1523
  "Introduïu l'assumpte per a l'informe de correu electrònic per enviar. Que "
1524
  "serà enviat a l'administrador."
@@ -1540,14 +1541,15 @@ msgstr ""
1540
  msgid "Save Settings"
1541
  msgstr "Desa la configuració"
1542
 
1543
- #: subscribers/view-subscriber-add.php:35
1544
  #: subscribers/view-subscriber-edit.php:53
1545
  msgid "Please enter subscriber email address."
1546
  msgstr "Si us plau, introdueixi l'adreça de correu electrònic del subscriptor."
1547
 
1548
  #: subscribers/view-subscriber-add.php:48
1549
  msgid "Please select or create your group for this email."
1550
- msgstr "Si us plau seleccioni o creu el seu grup per a aquest correu electrònic."
 
1551
 
1552
  #: subscribers/view-subscriber-add.php:55
1553
  msgid ""
@@ -1569,37 +1571,37 @@ msgstr "Aquest subscriptor ja existeix"
1569
  msgid "Invalid Email."
1570
  msgstr "Email no vàlid"
1571
 
1572
- #: subscribers/view-subscriber-add.php:109
1573
- #: subscribers/view-subscriber-edit.php:108
1574
- #: subscribers/view-subscriber-export.php:26
1575
- #: subscribers/view-subscriber-import.php:142
1576
- #: subscribers/view-subscriber-show.php:241
1577
  #: subscribers/view-subscriber-sync.php:88
1578
  msgid "Add New Subscriber"
1579
  msgstr "Afegir nou subscriptor"
1580
 
1581
- #: subscribers/view-subscriber-add.php:110
1582
- #: subscribers/view-subscriber-edit.php:109
1583
- #: subscribers/view-subscriber-export.php:27
1584
- #: subscribers/view-subscriber-import.php:209
1585
- #: subscribers/view-subscriber-show.php:242
1586
  #: subscribers/view-subscriber-sync.php:89
1587
  msgid "Import"
1588
  msgstr "Importar"
1589
 
1590
- #: subscribers/view-subscriber-add.php:111
1591
- #: subscribers/view-subscriber-edit.php:110
1592
- #: subscribers/view-subscriber-import.php:143
1593
- #: subscribers/view-subscriber-show.php:243
1594
  #: subscribers/view-subscriber-sync.php:90
1595
  msgid "Export"
1596
  msgstr "Exportar"
1597
 
1598
- #: subscribers/view-subscriber-add.php:112
1599
- #: subscribers/view-subscriber-edit.php:111
1600
- #: subscribers/view-subscriber-export.php:28
1601
- #: subscribers/view-subscriber-import.php:144
1602
- #: subscribers/view-subscriber-show.php:244
1603
  #: subscribers/view-subscriber-sync.php:142
1604
  msgid "Sync"
1605
  msgstr "Sincronitzar"
@@ -1616,26 +1618,26 @@ msgstr "Entra l'adreça email del subscriptor"
1616
  msgid "Select Subscriber's Status"
1617
  msgstr "Selecciona l'estat del subscriptor"
1618
 
1619
- #: subscribers/view-subscriber-add.php:147
1620
- #: subscribers/view-subscriber-edit.php:146
1621
- #: subscribers/view-subscriber-import.php:174
1622
- #: subscribers/view-subscriber-show.php:299
1623
  #: subscribers/view-subscriber-show.php:326
1624
  msgid "Confirmed"
1625
  msgstr "Confirmat"
1626
 
1627
- #: subscribers/view-subscriber-add.php:148
1628
- #: subscribers/view-subscriber-edit.php:147
1629
- #: subscribers/view-subscriber-import.php:175
1630
- #: subscribers/view-subscriber-show.php:300
1631
  #: subscribers/view-subscriber-show.php:327
1632
  msgid "Unconfirmed"
1633
  msgstr "Per confirmar"
1634
 
1635
- #: subscribers/view-subscriber-add.php:149
1636
- #: subscribers/view-subscriber-edit.php:148
1637
- #: subscribers/view-subscriber-import.php:176
1638
- #: subscribers/view-subscriber-show.php:301
1639
  #: subscribers/view-subscriber-show.php:328
1640
  msgid "Unsubscribed"
1641
  msgstr "No subscrit"
@@ -1644,7 +1646,7 @@ msgstr "No subscrit"
1644
  msgid "Select (or) Create Group for Subscriber"
1645
  msgstr "Seleccionar (o) Crear grup de subscriptors"
1646
 
1647
- #: subscribers/view-subscriber-add.php:173
1648
  #: subscribers/view-subscriber-import.php:201
1649
  msgid "(or)"
1650
  msgstr "(o)"
@@ -1689,12 +1691,12 @@ msgstr "Actualitza el grup del subscriptor "
1689
  msgid "Export Email Addresses"
1690
  msgstr "Exportar adreces d'email"
1691
 
1692
- #: subscribers/view-subscriber-export.php:37
1693
  #: subscribers/view-subscriber-export.php:45
1694
  msgid "Type of List to Export"
1695
  msgstr "Tipus de llista per exportar"
1696
 
1697
- #: subscribers/view-subscriber-export.php:38
1698
  #: subscribers/view-subscriber-export.php:46
1699
  msgid "Total Emails"
1700
  msgstr "Total d'emails"
@@ -1707,8 +1709,8 @@ msgstr "1"
1707
  msgid "All Subscribers List"
1708
  msgstr "Tota la llista de subscriptors"
1709
 
1710
- #: subscribers/view-subscriber-export.php:55
1711
- #: subscribers/view-subscriber-export.php:61
1712
  #: subscribers/view-subscriber-export.php:67
1713
  msgid "Click to Export in CSV"
1714
  msgstr "Feu clic a Exportar a CSV"
@@ -1749,12 +1751,12 @@ msgstr "Aquest email ja existeix"
1749
  msgid "email are invalid."
1750
  msgstr "aquest email no és vàlid"
1751
 
1752
- #: subscribers/view-subscriber-import.php:96
1753
  #: subscribers/view-subscriber-import.php:125
1754
  msgid "Click here"
1755
  msgstr "Clica aquí"
1756
 
1757
- #: subscribers/view-subscriber-import.php:96
1758
  #: subscribers/view-subscriber-import.php:125
1759
  msgid " to view details."
1760
  msgstr "per veure els detalls."
@@ -1791,31 +1793,33 @@ msgstr "Selecciona o crea grup pels subscriptors"
1791
  msgid "Selected details does not exists."
1792
  msgstr "Les dades seleccionades no existeixen."
1793
 
1794
- #: subscribers/view-subscriber-show.php:55
1795
  #: subscribers/view-subscriber-show.php:94
1796
  msgid "Record deleted."
1797
  msgstr "Registre eliminat."
1798
 
1799
  #: subscribers/view-subscriber-show.php:66
1800
- msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
 
1801
  msgstr ""
1802
  "Per enviar correu electrònic de confirmació, si us plau, canvieu l'opció de "
1803
  "Opt-in a Double Opt In."
1804
 
1805
- #: subscribers/view-subscriber-show.php:74
1806
  #: subscribers/view-subscriber-show.php:133
1807
  msgid "Confirmation emails Resent Successfully."
1808
  msgstr "S'han reenviat correus electrònics de confirmació amb èxit."
1809
 
1810
- #: subscribers/view-subscriber-show.php:99
1811
- #: subscribers/view-subscriber-show.php:138
1812
- #: subscribers/view-subscriber-show.php:176
1813
  #: subscribers/view-subscriber-show.php:215
1814
  msgid "No record was selected."
1815
  msgstr "No has seleccionat cap registre"
1816
 
1817
  #: subscribers/view-subscriber-show.php:114
1818
- msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
 
1819
  msgstr ""
1820
  "Per enviar el correu de confirmació, si us plau, canvieu l'opció de Opt-in a "
1821
  "Double Opt In."
@@ -1840,7 +1844,7 @@ msgstr "Selecciona nou estat per actualitzar"
1840
  msgid "Bulk Actions"
1841
  msgstr "Accions en bloc"
1842
 
1843
- #: subscribers/view-subscriber-show.php:278
1844
  #: subscribers/view-subscriber-show.php:411
1845
  msgid "Resend Confirmation"
1846
  msgstr "Reenvia confirmació"
@@ -1853,7 +1857,7 @@ msgstr "Actualitzar l'estat dels subscriptors"
1853
  msgid "Select Group"
1854
  msgstr "Selecciona un grup"
1855
 
1856
- #: subscribers/view-subscriber-show.php:298
1857
  #: subscribers/view-subscriber-show.php:325
1858
  msgid "All Status"
1859
  msgstr "Tots els estats"
@@ -1902,17 +1906,17 @@ msgstr "5001 a 10000"
1902
  msgid "Display All"
1903
  msgstr "Mostra-ho tot"
1904
 
1905
- #: subscribers/view-subscriber-show.php:352
1906
  #: subscribers/view-subscriber-show.php:366
1907
  msgid "Email Address"
1908
  msgstr "Adreça del correu electrònic"
1909
 
1910
- #: subscribers/view-subscriber-show.php:355
1911
  #: subscribers/view-subscriber-show.php:369
1912
  msgid "Group"
1913
  msgstr "Grup"
1914
 
1915
- #: subscribers/view-subscriber-show.php:356
1916
  #: subscribers/view-subscriber-show.php:370
1917
  msgid "Signup Date<br>(YYYY-MM-DD)"
1918
  msgstr "data de registre<br>(AAAA-MM-DD)"
@@ -1933,7 +1937,8 @@ msgstr "sincronització del correu electrònic"
1933
 
1934
  #: subscribers/view-subscriber-sync.php:100
1935
  msgid "Sync newly registered users to subscribers list"
1936
- msgstr "Sincronitzar els usuaris registrats recentment a la llista de subscriptors"
 
1937
 
1938
  #: subscribers/view-subscriber-sync.php:113
1939
  msgid "Select group to add newly registered users to"
@@ -1953,10 +1958,10 @@ msgstr "http://www.icegram.com/"
1953
  #. Description of the plugin/theme
1954
  msgid ""
1955
  "Add subscription forms on website, send HTML newsletters & automatically "
1956
- "notify subscribers about new blog posts once it gets published."
1957
  msgstr ""
1958
  "Afegir formularis de subscripció a la pàgina web, enviar butlletins HTML i "
1959
- "notificar automàticament als subscriptors sobre nous missatges al blog una "
1960
  "vegada que es publiquen."
1961
 
1962
  #. Author of the plugin/theme
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.2.7\n"
4
  "Report-Msgid-Bugs-To: http://www.storeapps.org/support/contact-us/\n"
5
+ "POT-Creation-Date: 2017-03-09 00:10+0000\n"
6
+ "PO-Revision-Date: 2017-03-09 00:10+0000\n"
7
+ "Last-Translator: Jordi <jjorda@periodistes.org>\n"
8
  "Language-Team: Catalan\n"
9
+ "Language: ca\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
22
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
  "X-Loco-Target-Locale: ca_ES"
24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  #: classes/es-common.php:8
26
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
27
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmat</span>"
47
  msgstr "<span style=\"color:#999900;\">No hi ha dades</span>"
48
 
49
  #: classes/es-common.php:26
50
+ msgid "<span style=\"color:#FF0000\">Disabled</span>"
51
+ msgstr "<span style=\"color:#FF0000\">Desactivat</span>"
52
 
53
  #: classes/es-common.php:29
54
  msgid "<span style=\"color:#FF0000\">In Queue</span>"
59
  msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Enviat</span>"
60
 
61
  #: classes/es-common.php:35
62
+ msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
63
+ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
64
 
65
  #: classes/es-common.php:38
66
+ msgid "<span style=\"color:#993399;\">Immediately</span>"
67
+ msgstr "Immediatament"
68
 
69
+ #: classes/es-loadwidget.php:24 classes/es-register.php:547
70
+ #: subscribers/view-subscriber-show.php:353
71
  #: subscribers/view-subscriber-show.php:367
72
  msgid "Name"
73
  msgstr "Nom"
74
 
75
+ #: classes/es-loadwidget.php:29 classes/es-register.php:552
76
  msgid "Email *"
77
  msgstr "Email*"
78
 
79
+ #: classes/es-loadwidget.php:34 classes/es-register.php:557
80
  msgid "Subscribe"
81
  msgstr "Subscriure"
82
 
84
  msgid "Email Subscribers"
85
  msgstr "Email Subscribers"
86
 
87
+ #: classes/es-register.php:142 classes/es-register.php:143
88
  #: subscribers/view-subscriber-show.php:240
89
  msgid "Subscribers"
90
  msgstr "Subscriptors"
91
 
92
+ #: classes/es-register.php:145 classes/es-register.php:146
93
  #: compose/compose-show.php:63
94
  msgid "Compose"
95
  msgstr "Compondre"
96
 
97
+ #: classes/es-register.php:148 classes/es-register.php:149
98
+ #: notification/notification-show.php:51
99
+ msgid "Post Notifications"
100
+ msgstr "Notificacions de les entrades"
101
+
102
+ #: classes/es-register.php:151 classes/es-register.php:152
103
  #: sendmail/sendmail.php:92
104
  msgid "Newsletters"
105
  msgstr "Butlletins"
108
  msgid "Cron Settings"
109
  msgstr "configuració del cron"
110
 
111
+ #: classes/es-register.php:157 classes/es-register.php:158
112
  #: settings/settings-edit.php:196
113
  msgid "Email Settings"
114
  msgstr "Configuració del email"
115
 
116
+ #: classes/es-register.php:160 classes/es-register.php:161
117
  #: roles/roles-add.php:109
118
  msgid "User Roles"
119
  msgstr "Funcions d'usuari"
120
 
121
+ #: classes/es-register.php:163 classes/es-register.php:164
122
  #: sentmail/sentmail-show.php:95
123
  msgid "Reports"
124
  msgstr "Informes"
226
 
227
  #: classes/es-register.php:209
228
  msgctxt "notification-enhanced-select"
229
+ msgid ""
230
+ "Please select notification mail subject. Use compose menu to create new."
231
  msgstr ""
232
  "Seleccioneu l'assumpte del email de notificació. Utilitzeu menú de "
233
  "composició per crear-ne de nous."
407
  msgid "There was a problem with the request."
408
  msgstr "Hi ha hagut un problema amb la sol·licitud."
409
 
410
+ #: classes/es-register.php:456
411
  msgid ""
412
  "Email Subscribers recommends free plugin <b>Rainmaker</b> to collect leads "
413
  "instantly"
415
  "Email Subscribers recomana el plugin gratuït <b> Rainmaker </ b> per "
416
  "recollir els cables a l'instant"
417
 
418
+ #: classes/es-register.php:457
419
  msgid "Yes, I want this"
420
  msgstr "Si, ho vull"
421
 
422
+ #: classes/es-register.php:457
423
  msgid "No, I don't want it"
424
  msgstr "No, no ho vull"
425
 
426
+ #: classes/es-register.php:592
427
  msgid "Widget Title"
428
  msgstr "Títol del widget"
429
 
430
+ #: classes/es-register.php:596
431
  msgid "Display Name Field"
432
  msgstr "Mostra nom del camp"
433
 
434
+ #: classes/es-register.php:603
435
  msgid "Short Description"
436
  msgstr "Descripció breu"
437
 
438
+ #: classes/es-register.php:605
439
  msgid "Short description about your subscription form."
440
  msgstr "Breu descripció sobre el seu formulari de subscripció."
441
 
442
+ #: classes/es-register.php:608
443
  msgid "Subscriber Group"
444
  msgstr "Grup de subscriptor"
445
 
455
  msgid "Add new Email"
456
  msgstr "Afegir un email nou"
457
 
458
+ #: compose/compose-add.php:74 compose/compose-edit.php:85
459
+ #: compose/compose-preview.php:27 compose/compose-show.php:65
460
+ #: cron/cron-add.php:79 notification/notification-add.php:112
461
+ #: notification/notification-edit.php:123
462
+ #: notification/notification-show.php:53 roles/roles-add.php:110
463
+ #: sendmail/sendmail.php:93 sentmail/deliverreport-show.php:60
464
+ #: sentmail/sentmail-preview.php:27 sentmail/sentmail-show.php:96
465
+ #: settings/settings-edit.php:197 subscribers/view-subscriber-add.php:113
466
+ #: subscribers/view-subscriber-edit.php:112
467
+ #: subscribers/view-subscriber-export.php:29
468
+ #: subscribers/view-subscriber-import.php:145
469
+ #: subscribers/view-subscriber-show.php:245
470
  #: subscribers/view-subscriber-sync.php:91
471
  msgid "Help"
472
  msgstr "Ajuda"
473
 
474
  #: compose/compose-add.php:77 compose/compose-edit.php:88
475
+ msgid "Select your Mail Template"
476
+ msgstr "Selecciona la teva plantilla de correu"
477
 
478
  #: compose/compose-add.php:79 compose/compose-edit.php:90
479
+ msgid "Newsletter"
480
+ msgstr "Butlletí de notícies"
481
 
482
  #: compose/compose-add.php:80 compose/compose-edit.php:91
483
+ msgid "Post Notification"
484
+ msgstr "Notificació de l'entrada"
485
 
486
  #: compose/compose-add.php:84 compose/compose-edit.php:95
487
+ msgid "Enter your Email Subject"
488
+ msgstr "Entra el subject del teu email"
489
 
490
  #: compose/compose-add.php:86 compose/compose-edit.php:97
491
  msgid "Keyword: ###POSTTITLE###"
492
  msgstr "Paraula clau: ###POSTTITLE###"
493
 
494
  #: compose/compose-add.php:88 compose/compose-edit.php:99
495
+ msgid "Enter Content for your Email"
496
+ msgstr "Entra el contingut del teu email"
497
 
498
  #: compose/compose-add.php:92 compose/compose-edit.php:103
 
499
  msgid ""
500
  "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
501
  "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
509
  msgid "Available Keywords"
510
  msgstr "Paraules clau disponibles"
511
 
512
+ #: compose/compose-add.php:96 compose/compose-edit.php:107
513
+ #: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:83
514
+ #: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
515
+ #: subscribers/view-subscriber-show.php:354
 
516
  #: subscribers/view-subscriber-show.php:368
517
  msgid "Status"
518
  msgstr "Estat"
525
  msgid "Please select your mail status"
526
  msgstr "Si us plau selecciona el teu estat del correu"
527
 
528
+ #: compose/compose-add.php:104 compose/compose-edit.php:116
529
+ #: cron/cron-add.php:119 notification/notification-add.php:252
530
+ #: notification/notification-edit.php:289 roles/roles-add.php:206
531
  #: subscribers/view-subscriber-edit.php:190
532
  msgid "Save"
533
  msgstr "Desar"
534
 
535
+ #: compose/compose-edit.php:19 compose/compose-preview.php:17
536
+ #: compose/compose-show.php:32 notification/notification-edit.php:19
537
+ #: notification/notification-show.php:20 sentmail/sentmail-preview.php:17
538
+ #: sentmail/sentmail-show.php:21 settings/settings-edit.php:19
539
  #: subscribers/view-subscriber-edit.php:21
540
  msgid "Oops, selected details does not exists."
541
  msgstr "Vaja, les dades seleccionades no existeixen."
548
  msgid "Edit Email"
549
  msgstr "Editar email"
550
 
551
+ #: compose/compose-edit.php:84 compose/compose-show.php:64
552
  #: notification/notification-edit.php:122 notification/notification-show.php:52
553
  msgid "Add New"
554
  msgstr "Afegir nou"
557
  msgid "Preview Mail"
558
  msgstr "Visió prèvia del correu"
559
 
560
+ #: compose/compose-preview.php:39 compose/compose-show.php:100
561
+ #: notification/notification-show.php:99
562
  #: subscribers/view-subscriber-show.php:398
563
  msgid "Edit"
564
  msgstr "Editar"
565
 
566
+ #: compose/compose-show.php:13 sendmail/sendmail.php:17
567
  #: subscribers/view-subscriber-show.php:16
568
  msgid "Click Here"
569
  msgstr "Clica aquí"
570
 
571
+ #: compose/compose-show.php:46 notification/notification-show.php:34
572
  #: sentmail/sentmail-show.php:35
573
  msgid "Selected record deleted."
574
  msgstr "Eliminat el registre seleccionat ."
575
 
576
+ #: compose/compose-show.php:76 compose/compose-show.php:83
577
+ #: notification/notification-show.php:67 notification/notification-show.php:75
578
+ msgid "Email Subject"
579
+ msgstr "Subjecte del email"
580
 
581
+ #: compose/compose-show.php:77 compose/compose-show.php:84
582
+ msgid "Email Template"
583
+ msgstr "Olantilla del email"
 
 
584
 
585
+ #: compose/compose-show.php:78 compose/compose-show.php:85
586
  msgid "Actions"
587
  msgstr "Accions"
588
 
589
+ #: compose/compose-show.php:101 notification/notification-show.php:102
590
+ #: subscribers/view-subscriber-show.php:277
591
  #: subscribers/view-subscriber-show.php:403
592
  msgid "Delete"
593
  msgstr "Esborrar"
594
 
595
+ #: compose/compose-show.php:102 sentmail/sentmail-show.php:110
596
  #: sentmail/sentmail-show.php:123
597
  msgid "Preview"
598
  msgstr "Vista previa"
599
 
600
+ #: compose/compose-show.php:110 notification/notification-show.php:142
601
+ #: sentmail/deliverreport-show.php:110 sentmail/sentmail-show.php:166
602
  #: subscribers/view-subscriber-show.php:426
603
  msgid "No records available."
604
  msgstr "No hi ha registres disponibles."
651
 
652
  #: cron/cron-add.php:125
653
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
654
+ msgstr ""
655
+ "El que és Cron (correus electrònics automàtics) i com configurar Cron Job?"
656
 
657
  #: cron/cron-add.php:126
658
  msgid ""
680
 
681
  #: cron/cron-add.php:129
682
  msgid ""
683
+ "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-"
684
+ "do-if-hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?"
685
+ "</a>"
686
  msgstr ""
687
+ "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-"
688
+ "do-if-hosting-doesnt-support-cron-jobs/\">El teu hosting no admet els "
689
+ "treballs de cron?</a>"
690
 
691
  #: export/export-email-address.php:33 export/export-email-address.php:37
692
  msgid "Unexpected url submit has been detected"
697
  msgstr "Benvingut a Email Subscribers!"
698
 
699
  #: help/help.php:47
700
+ msgid ""
701
+ "Thanks for installing and we hope you will enjoy using Email Subscribers."
702
  msgstr "Gràcies per instal·lar-lo i esperem que gaudeixi d'Email Subscribers."
703
 
704
  #: help/help.php:51
706
  msgstr "Per obtenir més ajuda i consells ..."
707
 
708
  #: help/help.php:66
 
709
  msgid "Like Email Subscribers? Please consider %s."
710
  msgstr "T'agrada Email Subscribers? Si us plau, consideri %s"
711
 
717
  msgid "Frequently Asked Questions"
718
  msgstr "Preguntes més freqüents (FAQ)"
719
 
720
+ #: help/help.php:117 help/help.php:126 help/help.php:129 help/help.php:132
721
+ #: help/help.php:135 help/help.php:138 help/help.php:141 help/help.php:144
722
+ #: help/help.php:147 help/help.php:150 help/help.php:153 help/help.php:156
723
+ #: help/help.php:159 help/help.php:162 help/help.php:165 help/help.php:168
724
  #: help/help.php:171 help/help.php:174 help/help.php:177
 
725
  msgid "%s"
726
  msgstr "%s"
727
 
790
 
791
  #: help/help.php:159
792
  msgid "How to show subscribe form inside a popup?"
793
+ msgstr ""
794
+ "Com mostrar el formulari de subscripció a l'interior d'una finestra emergent?"
795
 
796
  #: help/help.php:162
797
  msgid "How to use Rainmaker’s form in Email Subscribers?"
817
  msgid "Commonly Asked Questions"
818
  msgstr "Preguntes comuns"
819
 
820
+ #: job/es-optin.php:57 job/es-optin.php:67 job/es-unsubscribe.php:54
821
  #: job/es-unsubscribe.php:61
822
  msgid ""
823
  "Oops.. We are getting some technical error. Please try again or contact "
839
  msgstr "Seleccioneu l'estat de la notificació."
840
 
841
  #: notification/notification-add.php:44 notification/notification-edit.php:60
842
+ msgid ""
843
+ "Please select notification mail subject. Use compose menu to create new."
844
  msgstr ""
845
  "Seleccioneu l'assumpte del email de notificació. Utilitzeu menú de "
846
  "composició per crear-ne de nous."
861
  msgid "Select Subscribers Group"
862
  msgstr "Seleccioneu Grup Subscriptors"
863
 
864
+ #: notification/notification-add.php:123 notification/notification-add.php:147
865
+ #: notification/notification-edit.php:134
866
+ #: notification/notification-edit.php:167 sendmail/sendmail.php:109
867
+ #: sendmail/sendmail.php:136 sendmail/sendmail.php:150
868
+ #: subscribers/view-subscriber-add.php:161
869
+ #: subscribers/view-subscriber-edit.php:161
870
+ #: subscribers/view-subscriber-import.php:189
871
  #: subscribers/view-subscriber-sync.php:118
872
  msgid "Select"
873
  msgstr "seleccionar"
874
 
875
  #: notification/notification-add.php:141 notification/notification-edit.php:161
876
+ msgid "Select Notification Email Subject"
877
+ msgstr "Selecciona notificació assumpte del correu"
878
 
879
  #: notification/notification-add.php:142 notification/notification-edit.php:162
880
  msgid "(Use compose menu to create new)"
884
  msgid "Select Post Categories"
885
  msgstr "Seleccioneu categoria de correu"
886
 
887
+ #: notification/notification-add.php:194 notification/notification-edit.php:224
888
  msgid "Check All"
889
  msgstr "Seleccionar-ho tot"
890
 
891
+ #: notification/notification-add.php:195 notification/notification-edit.php:225
892
  msgid "Uncheck All"
893
  msgstr "Deseleccionar-ho tot"
894
 
895
+ #: notification/notification-add.php:201 notification/notification-edit.php:232
896
  msgid "Select your Custom Post Type"
897
  msgstr "Seleccioni el seu tipus personalitzat del Post"
898
 
899
+ #: notification/notification-add.php:202 notification/notification-edit.php:233
900
  msgid "(Optional)"
901
  msgstr "(Opcional)"
902
 
903
+ #: notification/notification-add.php:231 notification/notification-edit.php:267
904
  msgid "No Custom Post Types Available"
905
  msgstr "Sense tipus de Post personalitzats disponibles"
906
 
907
+ #: notification/notification-add.php:238 notification/notification-edit.php:274
908
+ msgid "Select Notification Status when a new post is published"
909
+ msgstr "Tria un estat de notificació quan es publica una nova entrada"
910
 
911
+ #: notification/notification-add.php:242
912
+ #: notification/notification-edit.php:278
913
+ #: notification/notification-show.php:129 sendmail/sendmail.php:137
914
+ msgid "Send email immediately"
915
+ msgstr "Enviar email immediatamanet"
916
 
917
+ #: notification/notification-add.php:243
918
+ #: notification/notification-edit.php:279
919
+ #: notification/notification-show.php:131
920
+ msgid "Add to cron and send email via cron job"
921
+ msgstr "Afegir a cron i enviar correu electrònic a través de cron"
922
 
923
+ #: notification/notification-add.php:244 notification/notification-edit.php:280
924
+ msgid "Disable email notification"
925
+ msgstr "Desactivar la notificació de correu electrònic"
926
 
927
  #: notification/notification-edit.php:48
928
  msgid "Please select subscribers group"
940
  msgid "Edit Notification"
941
  msgstr "Editar la notificació"
942
 
943
+ #: notification/notification-edit.php:130
944
  #: subscribers/view-subscriber-show.php:279
945
  msgid "Update Subscribers Group"
946
  msgstr "Actualitzar grups de subscriptors"
947
 
948
+ #: notification/notification-show.php:56
949
+ msgid ""
950
+ "Use this to setup and send notification emails to your subscribers when a "
951
+ "new post is published in your blog."
952
+ msgstr ""
953
+ "Utilitzeu aquesta opció per configurar i enviar notificacions per correu "
954
+ "electrònic als subscriptors quan es publica una nova entrada al bloc."
955
 
956
+ #: notification/notification-show.php:68 notification/notification-show.php:76
957
  msgid "Subscribers Group"
958
  msgstr "Grups de subscriptors"
959
 
960
+ #: notification/notification-show.php:69 notification/notification-show.php:77
961
+ msgid "Post Categories / Custom Post Types"
962
+ msgstr "Categories de les entrades / Tipus personalitzats d'entrades"
963
 
964
+ #: notification/notification-show.php:70 notification/notification-show.php:78
965
  msgid "Notification Status"
966
  msgstr "Estat de la notificació"
967
 
 
 
 
 
 
 
 
 
968
  #: roles/roles-add.php:52
969
  msgid "Role Updated. "
970
  msgstr "Rol actualitzat"
971
 
972
  #: roles/roles-add.php:113
973
+ msgid ""
974
+ "Select user roles who can access following menus. Only Admin can change this."
975
  msgstr ""
976
  "Seleccioneu els rols d'usuaris que poden accedir als menús següents. Només "
977
  "administrador pot canviar això."
980
  msgid "Subscribers Menu"
981
  msgstr "Menú dels subscriptors"
982
 
983
+ #: roles/roles-add.php:124 roles/roles-add.php:136 roles/roles-add.php:148
984
+ #: roles/roles-add.php:160 roles/roles-add.php:172 roles/roles-add.php:184
985
  #: roles/roles-add.php:196
986
  msgid "Administrator Only"
987
  msgstr "Només l'administrador"
988
 
989
+ #: roles/roles-add.php:125 roles/roles-add.php:137 roles/roles-add.php:149
990
+ #: roles/roles-add.php:161 roles/roles-add.php:173 roles/roles-add.php:185
991
  #: roles/roles-add.php:197
992
  msgid "Administrator/Editor"
993
  msgstr "Administrador/editor"
994
 
995
+ #: roles/roles-add.php:126 roles/roles-add.php:138 roles/roles-add.php:150
996
+ #: roles/roles-add.php:162 roles/roles-add.php:174 roles/roles-add.php:186
997
  #: roles/roles-add.php:198
998
  msgid "Administrator/Editor/Author/Contributor"
999
  msgstr "Administrador/editor/autor/contribuidor"
1060
  msgid "Select Mail Type"
1061
  msgstr "Selecciona el tipus de correu"
1062
 
 
 
 
 
1063
  #: sendmail/sendmail.php:138
1064
+ msgid "Send email via cron job"
1065
+ msgstr "Enviar email via cron"
1066
 
1067
  #: sendmail/sendmail.php:145
1068
  msgid "Select Subscribers group to Send Mail"
1073
  msgstr "Destinataris: 0"
1074
 
1075
  #: sendmail/sendmail.php:179
 
1076
  msgid "Recipients : %s"
1077
  msgstr "Destinataris : %s"
1078
 
1079
  #: sendmail/sendmail.php:182
1080
  msgid ""
1081
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1082
+ "that you change above Mail Type to Cron and Send Mail via Cron Job.</strong>"
1083
+ "<br>Click on Help for more information."
1084
  msgstr ""
1085
  "<br> compten <strong> Els destinataris són superiors a 100. <br> És molt "
1086
  "recomanable que canviï mes Tipus de correu a Cron i enviar-lo via Cron Job. "
1110
  msgid "Delivery Report"
1111
  msgstr "Informe de lliurament"
1112
 
1113
+ #: sentmail/deliverreport-show.php:70 sentmail/deliverreport-show.php:81
1114
+ #: subscribers/view-subscriber-export.php:36
1115
+ #: subscribers/view-subscriber-export.php:44
1116
+ #: subscribers/view-subscriber-show.php:351
1117
  #: subscribers/view-subscriber-show.php:365
1118
  msgid "Sno"
1119
  msgstr "Sno"
1120
 
1121
+ #: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:82
1122
  msgid "Email"
1123
  msgstr "Email"
1124
 
1125
+ #: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:84
1126
+ #: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
1127
+ msgid "Sent"
1128
+ msgstr "Enviat"
1129
+
1130
+ #: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:85
1131
  msgid "Sent Date"
1132
  msgstr "data d'enviament"
1133
 
1134
+ #: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:86
1135
  msgid "Viewed Status"
1136
  msgstr "Veure status"
1137
 
1138
+ #: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:87
1139
  msgid "Viewed Date"
1140
  msgstr "Veure data"
1141
 
 
 
 
 
1142
  #: sentmail/sentmail-preview.php:41
1143
  msgid "Back"
1144
  msgstr "Enrera"
1148
  msgstr "S'han eliminat tots els informes excepte els 10 últims."
1149
 
1150
  #: sentmail/sentmail-show.php:99
1151
+ msgid ""
1152
+ "It will show reports for all Newsletters & Post Notification emails sent."
1153
+ msgstr ""
1154
+ "Es mostrarà informes de tots els Butlletins & Post notificació enviats."
1155
 
1156
  #: sentmail/sentmail-show.php:109 sentmail/sentmail-show.php:122
1157
  msgid "View Reports"
1158
  msgstr "Veure informes"
1159
 
1160
  #: sentmail/sentmail-show.php:111 sentmail/sentmail-show.php:124
1161
+ msgid "Type"
1162
+ msgstr "Tipus"
1163
 
1164
  #: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
1165
  msgid "Start Date"
1173
  msgid "Total"
1174
  msgstr "Total"
1175
 
1176
+ #: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
1177
+ #: subscribers/view-subscriber-export.php:39
1178
+ #: subscribers/view-subscriber-export.php:47
1179
+ #: subscribers/view-subscriber-show.php:357
1180
  #: subscribers/view-subscriber-show.php:371
1181
  msgid "Action"
1182
  msgstr "Acció"
1225
  msgid "Sender of Notifications"
1226
  msgstr "Remitent de Notificacions"
1227
 
1228
+ #: settings/settings-edit.php:205
1229
  msgid ""
1230
  "Choose a FROM name and FROM email address for all the emails to be sent from "
1231
  "this plugin."
1281
  msgid "Double Opt In"
1282
  msgstr "Doble Opt In"
1283
 
1284
+ #: settings/settings-edit.php:236 subscribers/view-subscriber-add.php:150
1285
+ #: subscribers/view-subscriber-edit.php:149
1286
+ #: subscribers/view-subscriber-import.php:177
1287
+ #: subscribers/view-subscriber-show.php:302
1288
  #: subscribers/view-subscriber-show.php:329
1289
  msgid "Single Opt In"
1290
  msgstr "Opt In sencill"
1373
  "Per enviar correu electrònic de benvinguda al subscriptor després del "
1374
  "registre amb èxit. Aquesta opció ha d'estar a YES."
1375
 
1376
+ #: settings/settings-edit.php:289 settings/settings-edit.php:362
1377
  #: subscribers/view-subscriber-sync.php:106
1378
  msgid "YES"
1379
  msgstr "Si"
1380
 
1381
+ #: settings/settings-edit.php:290 settings/settings-edit.php:363
1382
  #: subscribers/view-subscriber-sync.php:105
1383
  msgid "NO"
1384
  msgstr "No"
1443
  msgid "Error in Confirmation Link"
1444
  msgstr "Error en la confirmació d'enllaç"
1445
 
1446
+ #: settings/settings-edit.php:335
1447
+ msgid ""
1448
+ "Default message to display if there is any issue while clicking on "
1449
+ "confirmation link from the Double Opt In (confirmation) Emails."
1450
+ msgstr ""
1451
+ "Missatge predeterminat que es mostra si hi ha algun problema mentre fa clic "
1452
+ "a l'enllaç de confirmació de l'adreça de correu electrònic pel Double Opt In "
1453
+ "(confirmació)."
1454
+
1455
  #: settings/settings-edit.php:341
1456
  msgid "Error in Unsubscribe Link"
1457
  msgstr "Error en el enllaç de donar-se de baixa"
1458
 
1459
+ #: settings/settings-edit.php:342
1460
+ msgid ""
1461
+ "Default message to display if there is any issue while clicking on "
1462
+ "unsubscribe link from the Emails."
1463
+ msgstr ""
1464
+ "Missatge predeterminat que es mostra si hi ha algun problema mentre fa clic "
1465
+ "a l'enllaç per donar-se de baixa dels correus electrònics."
1466
+
1467
  #: settings/settings-edit.php:349
1468
  msgid "Admin Email Addresses"
1469
  msgstr "Adreces email dels administradors"
1470
 
1471
+ #: settings/settings-edit.php:350
1472
+ msgid ""
1473
+ "Enter the admin email addresses that should receive notifications (separated "
1474
+ "by comma)."
1475
+ msgstr ""
1476
+ "Introduïu les adreces de correu electrònic d'administració que han de rebre "
1477
+ "notificacions (separades per comes)."
1478
+
1479
+ #: settings/settings-edit.php:356
1480
+ msgid "Notify Admin about New Subscriber"
1481
+ msgstr "Notificar a administradors sobre Nou subscriptor"
1482
+
1483
+ #: settings/settings-edit.php:357
1484
+ msgid ""
1485
+ "To send admin email notifications for the new subscriber. This option must "
1486
+ "be set to YES."
1487
+ msgstr ""
1488
+ "Per enviar notificacions per correu electrònic a l'administrador per un nou "
1489
+ "subscrit. Aquesta opció ha d'estar a YES."
1490
+
1491
  #: settings/settings-edit.php:369
1492
  msgid "Admin Email Subject"
1493
  msgstr "Assumpte pel email als administradors"
1518
  msgstr "Assumpte del informe enviat"
1519
 
1520
  #: settings/settings-edit.php:385
1521
+ msgid ""
1522
+ "Enter the subject for the sent email report. It will be mailed to Admin."
1523
  msgstr ""
1524
  "Introduïu l'assumpte per a l'informe de correu electrònic per enviar. Que "
1525
  "serà enviat a l'administrador."
1541
  msgid "Save Settings"
1542
  msgstr "Desa la configuració"
1543
 
1544
+ #: subscribers/view-subscriber-add.php:35
1545
  #: subscribers/view-subscriber-edit.php:53
1546
  msgid "Please enter subscriber email address."
1547
  msgstr "Si us plau, introdueixi l'adreça de correu electrònic del subscriptor."
1548
 
1549
  #: subscribers/view-subscriber-add.php:48
1550
  msgid "Please select or create your group for this email."
1551
+ msgstr ""
1552
+ "Si us plau seleccioni o creu el seu grup per a aquest correu electrònic."
1553
 
1554
  #: subscribers/view-subscriber-add.php:55
1555
  msgid ""
1571
  msgid "Invalid Email."
1572
  msgstr "Email no vàlid"
1573
 
1574
+ #: subscribers/view-subscriber-add.php:109
1575
+ #: subscribers/view-subscriber-edit.php:108
1576
+ #: subscribers/view-subscriber-export.php:26
1577
+ #: subscribers/view-subscriber-import.php:142
1578
+ #: subscribers/view-subscriber-show.php:241
1579
  #: subscribers/view-subscriber-sync.php:88
1580
  msgid "Add New Subscriber"
1581
  msgstr "Afegir nou subscriptor"
1582
 
1583
+ #: subscribers/view-subscriber-add.php:110
1584
+ #: subscribers/view-subscriber-edit.php:109
1585
+ #: subscribers/view-subscriber-export.php:27
1586
+ #: subscribers/view-subscriber-import.php:209
1587
+ #: subscribers/view-subscriber-show.php:242
1588
  #: subscribers/view-subscriber-sync.php:89
1589
  msgid "Import"
1590
  msgstr "Importar"
1591
 
1592
+ #: subscribers/view-subscriber-add.php:111
1593
+ #: subscribers/view-subscriber-edit.php:110
1594
+ #: subscribers/view-subscriber-import.php:143
1595
+ #: subscribers/view-subscriber-show.php:243
1596
  #: subscribers/view-subscriber-sync.php:90
1597
  msgid "Export"
1598
  msgstr "Exportar"
1599
 
1600
+ #: subscribers/view-subscriber-add.php:112
1601
+ #: subscribers/view-subscriber-edit.php:111
1602
+ #: subscribers/view-subscriber-export.php:28
1603
+ #: subscribers/view-subscriber-import.php:144
1604
+ #: subscribers/view-subscriber-show.php:244
1605
  #: subscribers/view-subscriber-sync.php:142
1606
  msgid "Sync"
1607
  msgstr "Sincronitzar"
1618
  msgid "Select Subscriber's Status"
1619
  msgstr "Selecciona l'estat del subscriptor"
1620
 
1621
+ #: subscribers/view-subscriber-add.php:147
1622
+ #: subscribers/view-subscriber-edit.php:146
1623
+ #: subscribers/view-subscriber-import.php:174
1624
+ #: subscribers/view-subscriber-show.php:299
1625
  #: subscribers/view-subscriber-show.php:326
1626
  msgid "Confirmed"
1627
  msgstr "Confirmat"
1628
 
1629
+ #: subscribers/view-subscriber-add.php:148
1630
+ #: subscribers/view-subscriber-edit.php:147
1631
+ #: subscribers/view-subscriber-import.php:175
1632
+ #: subscribers/view-subscriber-show.php:300
1633
  #: subscribers/view-subscriber-show.php:327
1634
  msgid "Unconfirmed"
1635
  msgstr "Per confirmar"
1636
 
1637
+ #: subscribers/view-subscriber-add.php:149
1638
+ #: subscribers/view-subscriber-edit.php:148
1639
+ #: subscribers/view-subscriber-import.php:176
1640
+ #: subscribers/view-subscriber-show.php:301
1641
  #: subscribers/view-subscriber-show.php:328
1642
  msgid "Unsubscribed"
1643
  msgstr "No subscrit"
1646
  msgid "Select (or) Create Group for Subscriber"
1647
  msgstr "Seleccionar (o) Crear grup de subscriptors"
1648
 
1649
+ #: subscribers/view-subscriber-add.php:173
1650
  #: subscribers/view-subscriber-import.php:201
1651
  msgid "(or)"
1652
  msgstr "(o)"
1691
  msgid "Export Email Addresses"
1692
  msgstr "Exportar adreces d'email"
1693
 
1694
+ #: subscribers/view-subscriber-export.php:37
1695
  #: subscribers/view-subscriber-export.php:45
1696
  msgid "Type of List to Export"
1697
  msgstr "Tipus de llista per exportar"
1698
 
1699
+ #: subscribers/view-subscriber-export.php:38
1700
  #: subscribers/view-subscriber-export.php:46
1701
  msgid "Total Emails"
1702
  msgstr "Total d'emails"
1709
  msgid "All Subscribers List"
1710
  msgstr "Tota la llista de subscriptors"
1711
 
1712
+ #: subscribers/view-subscriber-export.php:55
1713
+ #: subscribers/view-subscriber-export.php:61
1714
  #: subscribers/view-subscriber-export.php:67
1715
  msgid "Click to Export in CSV"
1716
  msgstr "Feu clic a Exportar a CSV"
1751
  msgid "email are invalid."
1752
  msgstr "aquest email no és vàlid"
1753
 
1754
+ #: subscribers/view-subscriber-import.php:96
1755
  #: subscribers/view-subscriber-import.php:125
1756
  msgid "Click here"
1757
  msgstr "Clica aquí"
1758
 
1759
+ #: subscribers/view-subscriber-import.php:96
1760
  #: subscribers/view-subscriber-import.php:125
1761
  msgid " to view details."
1762
  msgstr "per veure els detalls."
1793
  msgid "Selected details does not exists."
1794
  msgstr "Les dades seleccionades no existeixen."
1795
 
1796
+ #: subscribers/view-subscriber-show.php:55
1797
  #: subscribers/view-subscriber-show.php:94
1798
  msgid "Record deleted."
1799
  msgstr "Registre eliminat."
1800
 
1801
  #: subscribers/view-subscriber-show.php:66
1802
+ msgid ""
1803
+ "To send confirmation email, please change the Opt-in option to Double Opt In."
1804
  msgstr ""
1805
  "Per enviar correu electrònic de confirmació, si us plau, canvieu l'opció de "
1806
  "Opt-in a Double Opt In."
1807
 
1808
+ #: subscribers/view-subscriber-show.php:74
1809
  #: subscribers/view-subscriber-show.php:133
1810
  msgid "Confirmation emails Resent Successfully."
1811
  msgstr "S'han reenviat correus electrònics de confirmació amb èxit."
1812
 
1813
+ #: subscribers/view-subscriber-show.php:99
1814
+ #: subscribers/view-subscriber-show.php:138
1815
+ #: subscribers/view-subscriber-show.php:176
1816
  #: subscribers/view-subscriber-show.php:215
1817
  msgid "No record was selected."
1818
  msgstr "No has seleccionat cap registre"
1819
 
1820
  #: subscribers/view-subscriber-show.php:114
1821
+ msgid ""
1822
+ "To send confirmation mail, please change the Opt-in option to Double Opt In."
1823
  msgstr ""
1824
  "Per enviar el correu de confirmació, si us plau, canvieu l'opció de Opt-in a "
1825
  "Double Opt In."
1844
  msgid "Bulk Actions"
1845
  msgstr "Accions en bloc"
1846
 
1847
+ #: subscribers/view-subscriber-show.php:278
1848
  #: subscribers/view-subscriber-show.php:411
1849
  msgid "Resend Confirmation"
1850
  msgstr "Reenvia confirmació"
1857
  msgid "Select Group"
1858
  msgstr "Selecciona un grup"
1859
 
1860
+ #: subscribers/view-subscriber-show.php:298
1861
  #: subscribers/view-subscriber-show.php:325
1862
  msgid "All Status"
1863
  msgstr "Tots els estats"
1906
  msgid "Display All"
1907
  msgstr "Mostra-ho tot"
1908
 
1909
+ #: subscribers/view-subscriber-show.php:352
1910
  #: subscribers/view-subscriber-show.php:366
1911
  msgid "Email Address"
1912
  msgstr "Adreça del correu electrònic"
1913
 
1914
+ #: subscribers/view-subscriber-show.php:355
1915
  #: subscribers/view-subscriber-show.php:369
1916
  msgid "Group"
1917
  msgstr "Grup"
1918
 
1919
+ #: subscribers/view-subscriber-show.php:356
1920
  #: subscribers/view-subscriber-show.php:370
1921
  msgid "Signup Date<br>(YYYY-MM-DD)"
1922
  msgstr "data de registre<br>(AAAA-MM-DD)"
1937
 
1938
  #: subscribers/view-subscriber-sync.php:100
1939
  msgid "Sync newly registered users to subscribers list"
1940
+ msgstr ""
1941
+ "Sincronitzar els usuaris registrats recentment a la llista de subscriptors"
1942
 
1943
  #: subscribers/view-subscriber-sync.php:113
1944
  msgid "Select group to add newly registered users to"
1958
  #. Description of the plugin/theme
1959
  msgid ""
1960
  "Add subscription forms on website, send HTML newsletters & automatically "
1961
+ "notify subscribers about new blog posts once it is published."
1962
  msgstr ""
1963
  "Afegir formularis de subscripció a la pàgina web, enviar butlletins HTML i "
1964
+ "notificar als subscriptors automàticament sobre nous missatges al blog una "
1965
  "vegada que es publiquen."
1966
 
1967
  #. Author of the plugin/theme
languages/email-subscribers-cs_CZ.mo CHANGED
Binary file
languages/email-subscribers-cs_CZ.po CHANGED
@@ -1,423 +1,120 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.2.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-01-18 05:36:03+00:00\n"
6
- "PO-Revision-Date: 2017-02-10 22:37+0100\n"
7
- "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
- "Language-Team: StoreApps <support@storeapps.org>\n"
9
- "Language: cs\n"
10
- "Plural-Forms: nplurals=3; plural=( n == 1 ) ? 0 : ( n >= 2 && n <= 4 ) ? 1 : 2;\n"
 
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Poedit 1.8.11\n"
16
  "X-Poedit-Basepath: .\n"
17
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;"
18
- "_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;"
19
- "_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;"
20
- "esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;"
21
- "comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
  "X-Loco-Target-Locale: cs_CZ\n"
23
- "X-Poedit-SearchPath-0: ..\n"
24
 
25
- #: classes/es-register.php:148 classes/es-register.php:149
26
- #: notification/notification-show.php:51
27
- msgid "Post Notifications"
28
- msgstr "Oznámení o příspěvcích"
29
-
30
- #: classes/es-register.php:151 classes/es-register.php:152 sendmail/sendmail.php:92
31
- msgid "Newsletters"
32
- msgstr "Zpravodaje"
33
-
34
- #: classes/es-register.php:154 classes/es-register.php:155 cron/cron-add.php:78
35
- msgid "Cron Settings"
36
- msgstr "Cron nastavení"
37
-
38
- #: classes/es-register.php:157 classes/es-register.php:158
39
- #: settings/settings-edit.php:196
40
- msgid "Email Settings"
41
- msgstr "Nastavení e-mailu"
42
 
43
- #: classes/es-register.php:160 classes/es-register.php:161 roles/roles-add.php:109
44
- msgid "User Roles"
45
- msgstr "Uživatelské úrovně"
46
 
47
- #: classes/es-register.php:163 classes/es-register.php:164
48
- #: sentmail/sentmail-show.php:95
49
- msgid "Reports"
50
- msgstr "Přehledy"
51
 
52
- #: compose/compose-add.php:73
53
- msgid "Add new Email"
54
- msgstr "Přidat nový e-mail"
55
 
56
  #: compose/compose-add.php:79 compose/compose-edit.php:90
57
- msgid "Static Template (For Newsletter Emails)"
58
- msgstr "Statická šablona (pro e-maily zpravodajů)"
59
 
60
  #: compose/compose-add.php:80 compose/compose-edit.php:91
61
- msgid "Dynamic Template (For Post Notification Emails)"
62
- msgstr "Dynamická šablona (pro e-mailová oznámení)"
63
-
64
- #: compose/compose-edit.php:83
65
- msgid "Edit Email"
66
- msgstr "Upravit e-mail"
67
-
68
- #: cron/cron-add.php:33
69
- msgid "Successfully updated."
70
- msgstr "Úspěšně upraveno."
71
-
72
- #: cron/cron-add.php:87
73
- msgid ""
74
- "This is your Cron Job URL. It is a readonly field and you are advised not to "
75
- "modify it."
76
- msgstr ""
77
- "Toto je URL vašeho cronu. Pole je pouze pro čtení, nedoporučujeme vám jej "
78
- "upravovat."
79
-
80
- #: cron/cron-add.php:97
81
- msgid "Number of mails you want to trigger per hour."
82
- msgstr "Zadejte počet emailů, které chcete poslat za hodinu pomocí trigeru."
83
-
84
- #: cron/cron-add.php:102
85
- msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
86
- msgstr "(Web host má své limity. Doporučujeme odesílat nejvíce 50 mailů za hodinu.)"
87
-
88
- #: cron/cron-add.php:108
89
- msgid ""
90
- "Email to admin whenever cron URL is triggered from your server. (Keywords: "
91
- "###DATE###, ###SUBJECT###, ###COUNT###)"
92
- msgstr ""
93
- "Poslat administrátorovi výše uvedený email kdykoli zapracuje cron URL ve vašem "
94
- "serveru <br /> (klíčová slova: ###DATE###, ###SUBJECT###, ###COUNT###)"
95
-
96
- #: cron/cron-add.php:125
97
- msgid "What is Cron (auto emails) and how to setup Cron Job?"
98
- msgstr "Co je to cron (automatický e-mail) a jak nastavit cron?"
99
-
100
- #: cron/cron-add.php:129
101
- msgid ""
102
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
103
- "hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
104
- msgstr ""
105
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
106
- "hosting-doesnt-support-cron-jobs/\">Hosting nepodporuje crony?</a>"
107
-
108
- #: help/help.php:66
109
- #, c-format
110
- msgid "Like Email Subscribers? Please consider %s."
111
- msgstr "Zvažte like pro Email Subscribers %s."
112
-
113
- #: help/help.php:66
114
- msgid "contributing to us"
115
- msgstr "kontaktujte nás"
116
-
117
- #: help/help.php:126
118
- msgid ""
119
- " (How to modify the existing email content like Confirmation email, Welcome email, "
120
- "Admin emails)"
121
- msgstr ""
122
- "(Jak upravit existující obsah potvrzovacího emailu, uvítacího emailu, emailu pro "
123
- "administrátora) "
124
-
125
- #: help/help.php:141
126
- msgid "How to Compose and Send Newsletter Emails?"
127
- msgstr "Jak vytvářet a odesílat emaily zpravodajů?"
128
-
129
- #: help/help.php:144
130
- msgid ""
131
- "How to Configure and Send Post Notification emails to subscribers when new posts "
132
- "are published?"
133
- msgstr ""
134
- "Jak nastavit a odesílat emailová oznámení odběratelům, jakmile jsou publikovány "
135
- "nové příspěvky?"
136
-
137
- #: help/help.php:150
138
- msgid "How to check Sent emails reports?"
139
- msgstr "Jak zkontrolovat přehled odeslaných emailů?"
140
-
141
- #: roles/roles-add.php:144
142
- msgid "Post Notifications Menu"
143
- msgstr "Oznámení o příspěvcích"
144
 
145
- #: roles/roles-add.php:156
146
- msgid "Newsletters + Cron Settings Menu"
147
- msgstr "Zpravodaje + Menu nastavení cronu"
148
-
149
- #: roles/roles-add.php:168
150
- msgid "Email Settings Menu"
151
- msgstr "Menu nastavení emailu"
152
-
153
- #: roles/roles-add.php:180
154
- msgid "Reports Menu"
155
- msgstr "Menu přehledů"
156
-
157
- #: sendmail/sendmail.php:96
158
- msgid "Use this to send newsletter emails to your subscribers."
159
- msgstr "Použijete při odeslání emailů svým odběratelům."
160
-
161
- #: sentmail/sentmail-show.php:99
162
- msgid "It will show reports for all Newsletters & Post Notification emails sent."
163
- msgstr "Zobrazí přehledy všech odeslaných zpravodajů a oznámení o příspěvcích."
164
-
165
- #: settings/settings-edit.php:204
166
- msgid "Sender of Notifications"
167
- msgstr "Odesílatel oznámení"
168
-
169
- #: settings/settings-edit.php:206
170
- msgid ""
171
- "Choose a FROM name and FROM email address for all the emails to be sent from this "
172
- "plugin."
173
- msgstr ""
174
- "Vyberte jméno a emailovou adresu ODESÍLATELE pro všechny oznamovací emaily z "
175
- "tohoto pluginu."
176
-
177
- #: settings/settings-edit.php:215
178
- msgid "Mail Type"
179
- msgstr "Typ emailu"
180
-
181
- #: settings/settings-edit.php:216
182
- msgid ""
183
- "Option 1 & 2 is to send mails with default Wordpress method wp_mail(). Option 3 & "
184
- "4 is to send mails with PHP method mail()."
185
- msgstr ""
186
- "Varianty 1 a 2 odesílají emaily výchozí Wordpress metodou wp_mail(). Varianty 3 a "
187
- "4 odesílají emaily PHP metodou mail()"
188
-
189
- #: settings/settings-edit.php:230
190
- msgid "Opt-in Option"
191
- msgstr "Nastavení potvrzení"
192
-
193
- #: settings/settings-edit.php:231
194
- msgid ""
195
- "Double Opt In means subscribers need to confirm their email address by an "
196
- "activation link sent them on a activation email message.<br />Single Opt In means "
197
- "subscribers do not need to confirm their email address."
198
- msgstr ""
199
- "Dvojité potvrzení, znamená, že požadujete aby odběratelé potvrdili svou emailovou "
200
- "adresu aktivačním odkazem zaslaným v aktivační emailové zprávě. Jednoduché "
201
- "potvrzení, znamená že odběratelé nemusí potvrdit svou emailovou adresu."
202
-
203
- #: settings/settings-edit.php:243
204
- msgid ""
205
- "Select image size for ###POSTIMAGE### to be shown in the Post Notification Emails."
206
- msgstr ""
207
- "Vyberte velikost obrázku ###POSTIMAGE###, který se zobrazí v emailu oznámení "
208
- "příspěvku"
209
-
210
- #: settings/settings-edit.php:255
211
- msgid "Double Opt In Mail Subject (Confirmation Email)"
212
- msgstr "Nastavení předmětu emailu (Potvrzovací email)"
213
-
214
- #: settings/settings-edit.php:256
215
- msgid ""
216
- "Enter the subject for the confirmation email to be sent Double Opt In whenever a "
217
- "user signs up."
218
- msgstr ""
219
- "Zadejte předmět potvrzovacího emailu pro odeslání uživateli při přihlášení "
220
- "dvojitým potvrzením."
221
-
222
- #: settings/settings-edit.php:262
223
- msgid "Double Opt In Mail Content (Confirmation Email)"
224
- msgstr "Nastavení obsahu emailu (Potvrzovací email)"
225
-
226
- #: settings/settings-edit.php:263
227
- msgid ""
228
- "Enter the content for the confirmation email to be sent for Double Opt In whenever "
229
- "a user signs up. (Keyword: ###NAME###)"
230
- msgstr ""
231
- "Zadejte obsah potvrzovacího emailu pro odeslání uživateli při přihlášení dvojitým "
232
- "potvrzením. (Klíčové slovo: ###NAME###)"
233
-
234
- #: settings/settings-edit.php:269
235
- msgid "Double Opt In Confirmation Link"
236
- msgstr "Potvrzovací odkaz pro dvojité potvrzení. Není nutné tuto hodnotu měnit."
237
-
238
- #: settings/settings-edit.php:270 settings/settings-edit.php:313
239
- msgid "It is a readonly field and you are advised not to modify it."
240
- msgstr "Toto je pole pouze pro čtení a doporučujeme hodnotu neupravovat."
241
-
242
- #: settings/settings-edit.php:276
243
- msgid ""
244
- "Text to display after Email is successfully subscribed from Double Opt In "
245
- "(confirmation) Email"
246
- msgstr "Text se zobrazí po úspěšném přihlášení emailu při dvojitém potvrzení emailu"
247
-
248
- #: settings/settings-edit.php:277
249
- msgid ""
250
- "This text will be displayed once user clicks on email confirmation link from the "
251
- "Double Opt In (confirmation) Email."
252
- msgstr ""
253
- "Tento text bude zobrazen po kliknutí na odkaz v potvrzovacím emailu při dvojitém "
254
- "potvrzení."
255
-
256
- #: settings/settings-edit.php:284
257
- msgid "Subscriber Welcome Email"
258
- msgstr "Uvítací email pro odběratele"
259
-
260
- #: settings/settings-edit.php:285
261
- msgid ""
262
- "To send welcome email to subscriber after successful signup. This option must be "
263
- "set to YES."
264
- msgstr ""
265
- "Chcete-li odeslat uvítací email odběrateli po úspěšné registraci musí být tato "
266
- "volba nastavena na hodnotu ANO."
267
-
268
- #: settings/settings-edit.php:296
269
- msgid "Subscriber Welcome Email Subject"
270
- msgstr "Předmět uvítacího emailu pro odběratele"
271
-
272
- #: settings/settings-edit.php:297
273
- msgid ""
274
- "Enter the subject for the subscriber welcome email. This will be sent whenever a "
275
- "user's email is either confirmed (if Double Opt In) / subscribed (if Single Op In) "
276
- "successfully."
277
- msgstr ""
278
- "Zadejte předmět uvítacího emailu. Bude odeslán jestliže uživatelský email bude "
279
- "úspěšně potvrzen (dvojité potvrzení) / přihlášen (jednoduché potvrzení)."
280
-
281
- #: settings/settings-edit.php:303
282
- msgid "Subscriber Welcome Email Content"
283
- msgstr "Obsah uvítacího emailu pro odběratele"
284
-
285
- #: settings/settings-edit.php:304
286
- msgid ""
287
- "Enter the content for the subscriber welcome email whenever a user's email is "
288
- "either confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully. "
289
- "(Keyword: ###NAME###)"
290
- msgstr ""
291
- "Zadejte předmět uvítacího emailu. Bude odeslán jestliže uživatelský email bude "
292
- "úspěšně potvrzen (dvojité potvrzení) / přihlášen (jednoduché potvrzení). (Klíčové "
293
- "slovo: ###NAME###)"
294
-
295
- #: settings/settings-edit.php:312
296
- msgid "Unsubscribe Link"
297
- msgstr "Odhlašovací odkaz"
298
-
299
- #: settings/settings-edit.php:319
300
- msgid "Unsubscribe Text in Email"
301
- msgstr "Text emailu pro odhlášení"
302
-
303
- #: settings/settings-edit.php:320
304
- msgid ""
305
- "Enter the text for the unsubscribe link. This text is added with unsubscribe link "
306
- "in the emails. (Keyword: ###LINK###)"
307
- msgstr ""
308
- "Zadejte text odkazu pro odhlášení. Tento text je přidán do odkazu pro odhlášení ve "
309
- "zpravodaji. (Klíčové slovo: ###LINK###)"
310
-
311
- #: settings/settings-edit.php:326
312
- msgid "Text to display after Email is unsubscribed"
313
- msgstr "Text bude zobrazen po odhlášení emailu"
314
-
315
- #: settings/settings-edit.php:327
316
- msgid "This text will be displayed once user clicks on unsubscribe link."
317
- msgstr "Tento text bude zobrazen při prvním kliknutí na odhlašovací odkaz"
318
-
319
- #: settings/settings-edit.php:334
320
- msgid "Error in Confirmation Link"
321
- msgstr "Chybové hlášení potvrzovacího odkazu"
322
-
323
- #: settings/settings-edit.php:335
324
- msgid ""
325
- "Default message to display if there is any issue while clicking on confirmation "
326
- "link from the Double Opt In (confirmation) Emails."
327
- msgstr ""
328
- "Základní zpráva k zobrazení po kliknutí na potvrzovací odkaz při dvojitém "
329
- "potvrzení emailu."
330
-
331
- #: settings/settings-edit.php:341
332
- msgid "Error in Unsubscribe Link"
333
- msgstr "Chybové hlášení odhlašovacího odkazu"
334
 
335
- #: settings/settings-edit.php:342
336
- msgid ""
337
- "Default message to display if there is any issue while clicking on unsubscribe "
338
- "link from the Emails."
339
- msgstr "Základní zpráva k zobrazení po kliknutí na odhlašovací odkaz v emailu."
340
 
341
- #: settings/settings-edit.php:349
342
- msgid "Admin Email Addresses"
343
- msgstr "Emailová adresa administrátora"
 
344
 
345
- #: settings/settings-edit.php:350
346
- msgid ""
347
- "Enter the admin email addresses that should receive notifications (separated by "
348
- "comma)."
349
- msgstr ""
350
- "Zadejte emailové adresy administrátorů, kteří by měli přijímat oznámení (oddělené "
351
- "čárkou)."
352
 
353
- #: settings/settings-edit.php:356
354
- msgid "Notify Admin about New Subscriber"
355
- msgstr "Oznámení administrátorovi o novém odběrateli"
356
 
357
- #: settings/settings-edit.php:357
358
- msgid ""
359
- "To send admin email notifications for the new subscriber. This option must be set "
360
- "to YES."
361
- msgstr ""
362
- "Pro odeslání oznámení administrátorovi o novém odběrateli, je nutné volbu nastavit "
363
- "na ANO."
364
 
365
- #: settings/settings-edit.php:369
366
- msgid "Admin Email Subject"
367
- msgstr "Subjekt emailu pro administrátora"
 
368
 
369
- #: settings/settings-edit.php:370
370
- msgid ""
371
- "Enter the subject for the admin email. This will be sent whenever a new email is "
372
- "added and confirmed."
373
- msgstr ""
374
- "Zadejte předmět pro email administrátorovi. Bude posílán kdykoli bude nový email "
375
- "přidán nebo potvrzen."
376
 
377
- #: settings/settings-edit.php:376
378
- msgid "Admin Email Content"
379
- msgstr "Obsah emailu pro administrátora"
380
 
381
- #: settings/settings-edit.php:377
382
  msgid ""
383
- "Enter the email content for the admin email. This will be sent whenever a new "
384
- "email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)"
385
  msgstr ""
386
- "Zadejte obsah emailu pro administrátora. Ten bude posílán kdykoli bude nový email "
387
- "přidán a potvrzen. (Klíčové slovo: ###NAME###, ###EMAIL###)"
388
 
389
- #: settings/settings-edit.php:384
390
- msgid "Sent Report Subject"
391
- msgstr "Předmět emailu pro hlášení o odeslání"
392
 
393
- #: settings/settings-edit.php:385
394
- msgid "Enter the subject for the sent email report. It will be mailed to Admin."
395
- msgstr ""
396
- "Zadejte předmět emailu s přehledem o odeslání. Bude odesílán administrátorovi."
397
 
398
- #: settings/settings-edit.php:391
399
- msgid "Sent Report Content"
400
- msgstr "Obsah hlášení o odeslání"
 
401
 
402
- #: settings/settings-edit.php:392
403
  msgid ""
404
- "Enter the content for the sent mail report. It will be mailed to Admin. (Keyword: "
405
- "###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
406
  msgstr ""
407
- "Zadejte obsah emailu s přehledem. Bude odesílán administrátorovi. (Klíčová slova: "
408
- "###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
409
-
410
- #: subscribers/view-subscriber-edit.php:121
411
- msgid "Subscriber's Full Name"
412
- msgstr "Celé jména odběratele"
413
-
414
- #: subscribers/view-subscriber-edit.php:131
415
- msgid "Subscriber's Email Address"
416
- msgstr "Emailová adresa odběratele"
417
-
418
- #: subscribers/view-subscriber-show.php:356 subscribers/view-subscriber-show.php:370
419
- msgid "Signup Date<br>(YYYY-MM-DD)"
420
- msgstr "Datum přihlášení<br>(YYYY-MM-DD)"
421
 
422
  #: classes/es-common.php:8
423
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
@@ -443,10 +140,6 @@ msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Zobrazeno</span>"
443
  msgid "<span style=\"color:#999900;\">Nodata</span>"
444
  msgstr "<span style=\"color:#999900;\">Neuvedeno</span>"
445
 
446
- #: classes/es-common.php:26
447
- msgid "<span style=\"color:#FF0000\">Disable</span>"
448
- msgstr "<span style=\"color:#FF0000\">Neaktivní</span>"
449
-
450
  #: classes/es-common.php:29
451
  msgid "<span style=\"color:#FF0000\">In Queue</span>"
452
  msgstr "<span style=\"color:#FF0000\">Ve frontě</span>"
@@ -455,30 +148,23 @@ msgstr "<span style=\"color:#FF0000\">Ve frontě</span>"
455
  msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
456
  msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Odesláno</span>"
457
 
458
- #: classes/es-common.php:35
459
- msgid "<span style=\"color:#ffd700;font-weight:bold;\">Cron Mail</span>"
460
- msgstr "<span style=\"color:#ffd700;font-weight:bold;\">Cron zpráva</span>"
461
-
462
- #: classes/es-common.php:38
463
- msgid "<span style=\"color:#993399;\">Instant Mail</span>"
464
- msgstr "<span style=\"color:#993399;\">Okamžitá zpráva</span>"
465
-
466
- #: classes/es-loadwidget.php:24 classes/es-register.php:499
467
- #: subscribers/view-subscriber-show.php:353 subscribers/view-subscriber-show.php:367
468
  msgid "Name"
469
  msgstr "Jméno"
470
 
471
- #: classes/es-loadwidget.php:29 classes/es-register.php:504
472
  msgid "Email *"
473
  msgstr "Email *"
474
 
475
- #: classes/es-loadwidget.php:34 classes/es-register.php:509
476
  msgid "Subscribe"
477
  msgstr "Odebírat"
478
 
479
  #: classes/es-register.php:139 classes/es-register.php:140
480
  msgid "Email Subscribers"
481
- msgstr "Email odběratele"
482
 
483
  #: classes/es-register.php:142 classes/es-register.php:143
484
  #: subscribers/view-subscriber-show.php:240
@@ -490,6 +176,33 @@ msgstr "Odběratelé"
490
  msgid "Compose"
491
  msgstr "Vytvořit"
492
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
493
  #: classes/es-register.php:166
494
  msgid "Help & Info"
495
  msgstr "Nápověda"
@@ -531,8 +244,8 @@ msgstr "Skutečně chcete smazat vybrané záznamy?"
531
  #: classes/es-register.php:184
532
  msgctxt "view-subscriber-enhanced-select"
533
  msgid ""
534
- "Do you want to resend confirmation email? \\nAlso please note, this will update "
535
- "subscriber current status to 'Unconfirmed'."
536
  msgstr ""
537
  "Chcete znovu odeslat potvrzovací email? \\nUpozorňujeme, že bude aktualizován "
538
  "současný stav odběratele na „Nepotvrzeno“."
@@ -565,10 +278,11 @@ msgstr "Chcete exportovat emaily?"
565
  #: classes/es-register.php:190
566
  msgctxt "view-subscriber-enhanced-select"
567
  msgid ""
568
- "Please select only csv file. Please check official website for csv structure.."
 
569
  msgstr ""
570
- "Použijte výhradně soubor ve formátu CSV. Zkontrolujte strukturu csv souboru na "
571
- "oficiálních internetových stránkách..."
572
 
573
  #: classes/es-register.php:198
574
  msgctxt "compose-enhanced-select"
@@ -594,7 +308,8 @@ msgstr "Vyberte skupinu odběratelů."
594
  msgctxt "notification-enhanced-select"
595
  msgid "Please select notification mail subject. Use compose menu to create new."
596
  msgstr ""
597
- "Vyberte předmět oznamovacího emailu. Pro vytvoření nového použijte menu „Vytvořit“."
 
598
 
599
  #: classes/es-register.php:210
600
  msgctxt "notification-enhanced-select"
@@ -619,7 +334,8 @@ msgstr "Vyberte typ zprávy."
619
  #: classes/es-register.php:221
620
  msgctxt "sendmail-enhanced-select"
621
  msgid ""
622
- "Have you double checked your selected group? If so, let's go ahead and send this."
 
623
  msgstr "Zkontrolovali jste si vybranou skupinu? Jestli ano, formulář můžete odeslat."
624
 
625
  #: classes/es-register.php:229
@@ -670,13 +386,13 @@ msgstr "Úspěnšně jste se přihlásili k odběru."
670
  #: classes/es-register.php:257
671
  msgctxt "widget-enhanced-select"
672
  msgid ""
673
- "Your subscription was successful! Within a few minutes, kindly check the mail in "
674
- "your mailbox and confirm your subscription. If you can't see the mail in your "
675
- "mailbox, please check your spam folder."
676
  msgstr ""
677
- "Úspěšně jste se přihlásili k odběru! Během několika minut zkontrolujte emaily ve "
678
- "své schránce a potvrďte registraci. Pokud email nenajdete, zkontrolujte prosím "
679
- "složku se spamem."
680
 
681
  #: classes/es-register.php:258
682
  msgctxt "widget-enhanced-select"
@@ -731,13 +447,13 @@ msgstr "Úspěnšně jste se přihlásili k odběru."
731
  #: classes/es-register.php:274
732
  msgctxt "widget-page-enhanced-select"
733
  msgid ""
734
- "Your subscription was successful! Within a few minutes, kindly check the mail in "
735
- "your mailbox and confirm your subscription. If you can't see the mail in your "
736
- "mailbox, please check your spam folder."
737
  msgstr ""
738
- "Úspěšně jste se přihlásili k odběru! Během několika minut zkontrolujte emaily ve "
739
- "své schránce a potvrďte registraci. Pokud email nenajdete, zkontrolujte prosím "
740
- "složku se spamem."
741
 
742
  #: classes/es-register.php:275
743
  msgctxt "widget-page-enhanced-select"
@@ -764,39 +480,39 @@ msgctxt "widget-page-enhanced-select"
764
  msgid "There was a problem with the request."
765
  msgstr "Došlo k potížím s požadavkem."
766
 
767
- #: classes/es-register.php:408
768
  msgid ""
769
  "Email Subscribers recommends free plugin <b>Rainmaker</b> to collect leads "
770
  "instantly"
771
  msgstr ""
772
- "Email Subscribers doporučuje bezplatný plugin <b>Rainmaker</b> k okamžitému zběru "
773
- "potenciálních zákazníků"
774
 
775
- #: classes/es-register.php:409
776
  msgid "Yes, I want this"
777
  msgstr "Ano, chci ho."
778
 
779
- #: classes/es-register.php:409
780
  msgid "No, I don't want it"
781
  msgstr "Ne, nechci ho."
782
 
783
- #: classes/es-register.php:544
784
  msgid "Widget Title"
785
  msgstr "Nadpis widgetu"
786
 
787
- #: classes/es-register.php:548
788
  msgid "Display Name Field"
789
  msgstr "Zobrazit pole „Jméno“"
790
 
791
- #: classes/es-register.php:555
792
  msgid "Short Description"
793
  msgstr "Stručný popis"
794
 
795
- #: classes/es-register.php:557
796
  msgid "Short description about your subscription form."
797
  msgstr "Krátký popis vašeho přihlašovacího formuláře."
798
 
799
- #: classes/es-register.php:560
800
  msgid "Subscriber Group"
801
  msgstr "Skupina odběratelů"
802
 
@@ -808,6 +524,10 @@ msgstr "Vyberte šablonu záhlaví."
808
  msgid "Template successfully created. "
809
  msgstr "Šablona byla úspěšně vytvořena."
810
 
 
 
 
 
811
  #: compose/compose-add.php:74 compose/compose-edit.php:85
812
  #: compose/compose-preview.php:27 compose/compose-show.php:65 cron/cron-add.php:79
813
  #: notification/notification-add.php:112 notification/notification-edit.php:123
@@ -815,48 +535,37 @@ msgstr "Šablona byla úspěšně vytvořena."
815
  #: sendmail/sendmail.php:93 sentmail/deliverreport-show.php:60
816
  #: sentmail/sentmail-preview.php:27 sentmail/sentmail-show.php:96
817
  #: settings/settings-edit.php:197 subscribers/view-subscriber-add.php:113
818
- #: subscribers/view-subscriber-edit.php:112 subscribers/view-subscriber-export.php:29
 
819
  #: subscribers/view-subscriber-import.php:145
820
  #: subscribers/view-subscriber-show.php:245 subscribers/view-subscriber-sync.php:91
821
  msgid "Help"
822
  msgstr "Nápověda"
823
 
824
- #: compose/compose-add.php:77 compose/compose-edit.php:88
825
- msgid "Select your Mail Type"
826
- msgstr "Vyberte typ zprávy."
827
-
828
- #: compose/compose-add.php:84 compose/compose-edit.php:95
829
- msgid "Enter Mail Subject"
830
- msgstr "Zadejte předmět zprávy"
831
-
832
  #: compose/compose-add.php:86 compose/compose-edit.php:97
833
  msgid "Keyword: ###POSTTITLE###"
834
  msgstr "Klíčové slovo: ###POSTTITLE###"
835
 
836
- #: compose/compose-add.php:88 compose/compose-edit.php:99
837
- msgid "Enter Content for your Mail"
838
- msgstr "Zadejte obsah zprávy"
839
-
840
  #: compose/compose-add.php:92 compose/compose-edit.php:103
841
  #, c-format
842
  msgid ""
843
  "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
844
- "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, "
845
- "###POSTFULL###"
846
  msgstr ""
847
  "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
848
- "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, "
849
- "###POSTFULL###"
850
 
851
  #: compose/compose-add.php:92 compose/compose-edit.php:103
852
  msgid "Available Keywords"
853
  msgstr "Dostupná klíčová slova"
854
 
855
  #: compose/compose-add.php:96 compose/compose-edit.php:107
856
- #: compose/compose-show.php:77 compose/compose-show.php:85
857
- #: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:85
858
  #: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
859
- #: subscribers/view-subscriber-show.php:354 subscribers/view-subscriber-show.php:368
 
860
  msgid "Status"
861
  msgstr "Stav"
862
 
@@ -869,7 +578,7 @@ msgid "Please select your mail status"
869
  msgstr "Vyberte stav zprávy"
870
 
871
  #: compose/compose-add.php:104 compose/compose-edit.php:116 cron/cron-add.php:119
872
- #: notification/notification-add.php:251 notification/notification-edit.php:291
873
  #: roles/roles-add.php:206 subscribers/view-subscriber-edit.php:190
874
  msgid "Save"
875
  msgstr "Uložit"
@@ -886,6 +595,10 @@ msgstr "Vybrané podrobnosti neexistují."
886
  msgid "Template successfully updated. "
887
  msgstr "Šablona byla úspěšně aktualizována."
888
 
 
 
 
 
889
  #: compose/compose-edit.php:84 compose/compose-show.php:64
890
  #: notification/notification-edit.php:122 notification/notification-show.php:52
891
  msgid "Add New"
@@ -895,8 +608,8 @@ msgstr "Vytvoit"
895
  msgid "Preview Mail"
896
  msgstr "Náhled emailu"
897
 
898
- #: compose/compose-preview.php:39 compose/compose-show.php:103
899
- #: notification/notification-show.php:96 subscribers/view-subscriber-show.php:398
900
  msgid "Edit"
901
  msgstr "Upravit"
902
 
@@ -910,32 +623,23 @@ msgstr "Klikněte zde"
910
  msgid "Selected record deleted."
911
  msgstr "Vybraný záznam byl smazán."
912
 
913
- #: compose/compose-show.php:76 compose/compose-show.php:84
914
- msgid "Email subject"
915
- msgstr "Předmět emailu"
916
-
917
- #: compose/compose-show.php:78 compose/compose-show.php:86
918
- #: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:86
919
- #: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
920
- msgid "Type"
921
- msgstr "Typ"
922
-
923
- #: compose/compose-show.php:79 compose/compose-show.php:87
924
  msgid "Actions"
925
  msgstr "Akce"
926
 
927
- #: compose/compose-show.php:104 notification/notification-show.php:99
928
- #: subscribers/view-subscriber-show.php:277 subscribers/view-subscriber-show.php:403
 
929
  msgid "Delete"
930
  msgstr "Smazat"
931
 
932
- #: compose/compose-show.php:105 sentmail/sentmail-show.php:110
933
  #: sentmail/sentmail-show.php:123
934
  msgid "Preview"
935
  msgstr "Náhled"
936
 
937
- #: compose/compose-show.php:113 notification/notification-show.php:139
938
- #: sentmail/deliverreport-show.php:113 sentmail/sentmail-show.php:166
939
  #: subscribers/view-subscriber-show.php:426
940
  msgid "No records available."
941
  msgstr "Žádné záznamy nejsou k dispozici."
@@ -944,18 +648,50 @@ msgstr "Žádné záznamy nejsou k dispozici."
944
  msgid "Please enter valid mail count."
945
  msgstr "Zadejte platný počet emailů."
946
 
 
 
 
 
947
  #: cron/cron-add.php:86
948
  msgid "Cron job URL"
949
  msgstr "URL cronu"
950
 
 
 
 
 
 
 
 
 
951
  #: cron/cron-add.php:96
952
  msgid "Mail Count"
953
  msgstr "Počet zpráv"
954
 
 
 
 
 
 
 
 
 
955
  #: cron/cron-add.php:107
956
  msgid "Admin Report"
957
  msgstr "Hlášení pro administrátora"
958
 
 
 
 
 
 
 
 
 
 
 
 
 
959
  #: cron/cron-add.php:126
960
  msgid ""
961
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
@@ -978,6 +714,14 @@ msgstr ""
978
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
979
  "schedule-cron-emails-in-cpanel/\">Nastavení cronu v cPanel</a>"
980
 
 
 
 
 
 
 
 
 
981
  #: export/export-email-address.php:33 export/export-email-address.php:37
982
  msgid "Unexpected url submit has been detected"
983
  msgstr "Byla zjištěna neočekávaná URL adresa"
@@ -994,6 +738,15 @@ msgstr "Děkujeme vám za instalaci a doufáme, že se vám Email Subscribers bu
994
  msgid "For more help and tips..."
995
  msgstr "Pro další pomoc a rady..."
996
 
 
 
 
 
 
 
 
 
 
997
  #: help/help.php:98
998
  msgid "Frequently Asked Questions"
999
  msgstr "Časté dotazy (anglicky)"
@@ -1015,6 +768,14 @@ msgstr "Jak na web přidat přihlašovací formulář?"
1015
  msgid "General Plugin Settings"
1016
  msgstr "Základní nastavení pluginu"
1017
 
 
 
 
 
 
 
 
 
1018
  #: help/help.php:129
1019
  msgid "How to Import or Export Email Addresses?"
1020
  msgstr "Jak importovat nebo exportovat emailové adresy?"
@@ -1031,10 +792,26 @@ msgstr "Jak do emailů přidat odkaz pro odhlášení?"
1031
  msgid "What are Static Templates and Dynamic Templates?"
1032
  msgstr "Co je statická šablona a dynamická šablona?"
1033
 
 
 
 
 
 
 
 
 
 
 
 
 
1034
  #: help/help.php:147
1035
  msgid "How to Send a sample new post notification email to testgroup/myself?"
1036
  msgstr "Jak poslat ukázku nového oznamovacího emailu testovací skupině/sobě?"
1037
 
 
 
 
 
1038
  #: help/help.php:153
1039
  msgid "How to Add/Update Existing Subscribers Group?"
1040
  msgstr "Jak přidat/aktualizovat existující skupinu odběratelů?"
@@ -1074,9 +851,11 @@ msgstr "Nejčastější dotazy"
1074
  #: job/es-optin.php:57 job/es-optin.php:67 job/es-unsubscribe.php:54
1075
  #: job/es-unsubscribe.php:61
1076
  msgid ""
1077
- "Oops.. We are getting some technical error. Please try again or contact admin."
 
1078
  msgstr ""
1079
- "Nastala technická chyba. Zkuste to prosím znovu nebo se obraťte na administrátora."
 
1080
 
1081
  #: job/es-optin.php:60
1082
  msgid "This email address has already been confirmed."
@@ -1093,7 +872,8 @@ msgstr "Vyberte stav oznámení."
1093
  #: notification/notification-add.php:44 notification/notification-edit.php:60
1094
  msgid "Please select notification mail subject. Use compose menu to create new."
1095
  msgstr ""
1096
- "Vyberte předmět oznamovacího emailu. Pro vytvoření nového použijte menu „Vytvořit“."
 
1097
 
1098
  #: notification/notification-add.php:50 notification/notification-edit.php:66
1099
  msgid "Please select post categories."
@@ -1120,10 +900,6 @@ msgstr "Vyberte skupinu odběratelů"
1120
  msgid "Select"
1121
  msgstr "Vybrat"
1122
 
1123
- #: notification/notification-add.php:141 notification/notification-edit.php:161
1124
- msgid "Select Notification Mail Subject"
1125
- msgstr "Vyberte předmět oznamovací zprávy"
1126
-
1127
  #: notification/notification-add.php:142 notification/notification-edit.php:162
1128
  msgid "(Use compose menu to create new)"
1129
  msgstr "(Pro nový předmět použijte menu „Vytvořit“)"
@@ -1132,43 +908,26 @@ msgstr "(Pro nový předmět použijte menu „Vytvořit“)"
1132
  msgid "Select Post Categories"
1133
  msgstr "Vyberte rubriky příspěvků"
1134
 
1135
- #: notification/notification-add.php:193 notification/notification-edit.php:224
1136
  msgid "Check All"
1137
  msgstr "Označit vše"
1138
 
1139
- #: notification/notification-add.php:194 notification/notification-edit.php:225
1140
  msgid "Uncheck All"
1141
  msgstr "Odznačit vše"
1142
 
1143
- #: notification/notification-add.php:200 notification/notification-edit.php:232
1144
  msgid "Select your Custom Post Type"
1145
  msgstr "Vyberte vlastní typ obsahu"
1146
 
1147
- #: notification/notification-add.php:201 notification/notification-edit.php:233
1148
  msgid "(Optional)"
1149
  msgstr "(nepovinné)"
1150
 
1151
- #: notification/notification-add.php:230 notification/notification-edit.php:267
1152
  msgid "No Custom Post Types Available"
1153
  msgstr "Vlastní typ obsahu není dostupný"
1154
 
1155
- #: notification/notification-add.php:237 notification/notification-edit.php:275
1156
- msgid "Select Notification Status"
1157
- msgstr "Vyberte stav oznámení"
1158
-
1159
- #: notification/notification-add.php:241 notification/notification-edit.php:280
1160
- msgid "Send mail immediately when new post is published"
1161
- msgstr "Odeslat zprávu ihned, jakmile je publikován nový příspěvek"
1162
-
1163
- #: notification/notification-add.php:242 notification/notification-edit.php:281
1164
- msgid "Add to cron when new post is published and send via cron job"
1165
- msgstr ""
1166
- "Přidat do cronu, když je nový příspěvek zveřejněn a odeslat prostřednictvím cronu"
1167
-
1168
- #: notification/notification-add.php:243 notification/notification-edit.php:282
1169
- msgid "Disable notification"
1170
- msgstr "Zakázat oznámení "
1171
-
1172
  #: notification/notification-edit.php:48
1173
  msgid "Please select subscribers group"
1174
  msgstr "Vyberte skupinu odběratelů"
@@ -1189,30 +948,14 @@ msgstr "Upravit oznámení"
1189
  msgid "Update Subscribers Group"
1190
  msgstr "Upravit skupinu odběratelů"
1191
 
1192
- #: notification/notification-show.php:64 notification/notification-show.php:72
1193
- msgid "Mail Subject"
1194
- msgstr "Předmět emailu"
1195
-
1196
- #: notification/notification-show.php:65 notification/notification-show.php:73
1197
  msgid "Subscribers Group"
1198
  msgstr "Skupina odběratelů"
1199
 
1200
- #: notification/notification-show.php:66 notification/notification-show.php:74
1201
- msgid "Categories / Custom Post"
1202
- msgstr "Rubriky / Vlastní příspěvek"
1203
-
1204
- #: notification/notification-show.php:67 notification/notification-show.php:75
1205
  msgid "Notification Status"
1206
  msgstr "Stav oznámení"
1207
 
1208
- #: notification/notification-show.php:126
1209
- msgid "Send mail immediately when new post is published."
1210
- msgstr "Odešle zprávu ihned, jakmile je publikován nový příspěvek."
1211
-
1212
- #: notification/notification-show.php:128
1213
- msgid "Add to cron and send mail via cron job."
1214
- msgstr "Přidá se do cronu a odešle zprávu cronem."
1215
-
1216
  #: roles/roles-add.php:52
1217
  msgid "Role Updated. "
1218
  msgstr "Oprávnění bylo aktualizováno."
@@ -1249,6 +992,22 @@ msgstr "Administrátor/Editor/Autor/Spolupracovník"
1249
  msgid "Compose Menu"
1250
  msgstr "Menu vytvořit"
1251
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1252
  #: roles/roles-add.php:192
1253
  msgid "Help & Info Menu"
1254
  msgstr "Menu Nápověda"
@@ -1277,6 +1036,10 @@ msgstr "Klikněte zde pro kontrolu statistik"
1277
  msgid "Oops.. We are getting some error. mail not sending."
1278
  msgstr "Nastala chyba. Zprávy se neodesílají."
1279
 
 
 
 
 
1280
  #: sendmail/sendmail.php:104
1281
  msgid "Select Mail Subject from available list"
1282
  msgstr "Vyberte předmět zprávy ze seznamu"
@@ -1285,14 +1048,6 @@ msgstr "Vyberte předmět zprávy ze seznamu"
1285
  msgid "Select Mail Type"
1286
  msgstr "Vyberte typ emailu"
1287
 
1288
- #: sendmail/sendmail.php:137
1289
- msgid "Send mail immediately"
1290
- msgstr "Odeslat zprávu okamžitě"
1291
-
1292
- #: sendmail/sendmail.php:138
1293
- msgid "Send mail via cron job"
1294
- msgstr "Odeslat zprávu cronem "
1295
-
1296
  #: sendmail/sendmail.php:145
1297
  msgid "Select Subscribers group to Send Mail"
1298
  msgstr "Vyberte skupinu odběratelů pro odeslání zprávy"
@@ -1308,13 +1063,13 @@ msgstr "Příjemců: %s"
1308
 
1309
  #: sendmail/sendmail.php:182
1310
  msgid ""
1311
- "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend that "
1312
- "you change above Mail Type to Cron and Send Mail via Cron Job.</strong><br>Click "
1313
- "on Help for more information."
1314
  msgstr ""
1315
- "<br><br><strong>Váš počet příjemců je vyšší než 100.<br>Důrazně doporučujeme, "
1316
- "abyste výše změnili typ emailu na cron a zprávy odeslali přes cron.</"
1317
- "strong><br>Pro více informací klikněte na nápovědu."
1318
 
1319
  #: sendmail/sendmail.php:193 sendmail/sendmail.php:195
1320
  msgid "Send Email"
@@ -1340,33 +1095,30 @@ msgstr " &gt;&gt; "
1340
  msgid "Delivery Report"
1341
  msgstr "Hlášení o doručení"
1342
 
1343
- #: sentmail/deliverreport-show.php:70 sentmail/deliverreport-show.php:82
1344
  #: subscribers/view-subscriber-export.php:36
1345
- #: subscribers/view-subscriber-export.php:44 subscribers/view-subscriber-show.php:351
 
1346
  #: subscribers/view-subscriber-show.php:365
1347
  msgid "Sno"
1348
  msgstr "Číslo"
1349
 
1350
- #: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:83
1351
  msgid "Email"
1352
  msgstr "Email"
1353
 
1354
- #: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:84
1355
  msgid "Sent Date"
1356
  msgstr "Datum odeslání"
1357
 
1358
- #: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:87
1359
  msgid "Viewed Status"
1360
  msgstr "Stav zobrazení"
1361
 
1362
- #: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:88
1363
  msgid "Viewed Date"
1364
  msgstr "Datum zobrazení"
1365
 
1366
- #: sentmail/deliverreport-show.php:77 sentmail/deliverreport-show.php:89
1367
- msgid "Database ID"
1368
- msgstr "ID databáze"
1369
-
1370
  #: sentmail/sentmail-preview.php:41
1371
  msgid "Back"
1372
  msgstr "Zpět"
@@ -1375,13 +1127,17 @@ msgstr "Zpět"
1375
  msgid "Successfully deleted all reports except latest 10."
1376
  msgstr "Úspěšně smazány všechny sestavy kromě posledních 10."
1377
 
 
 
 
 
1378
  #: sentmail/sentmail-show.php:109 sentmail/sentmail-show.php:122
1379
  msgid "View Reports"
1380
  msgstr "Zobrazit hlášení"
1381
 
1382
  #: sentmail/sentmail-show.php:111 sentmail/sentmail-show.php:124
1383
- msgid "Source"
1384
- msgstr "Zdroj"
1385
 
1386
  #: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
1387
  msgid "Start Date"
@@ -1397,7 +1153,8 @@ msgstr "Celkem"
1397
 
1398
  #: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
1399
  #: subscribers/view-subscriber-export.php:39
1400
- #: subscribers/view-subscriber-export.php:47 subscribers/view-subscriber-show.php:357
 
1401
  #: subscribers/view-subscriber-show.php:371
1402
  msgid "Action"
1403
  msgstr "Akce"
@@ -1408,11 +1165,11 @@ msgstr "Optimalizovat tabulku a smazat záznamy"
1408
 
1409
  #: sentmail/sentmail-show.php:185
1410
  msgid ""
1411
- "Note: Please click on <strong>Optimize Table & Delete Records</strong> button to "
1412
- "delete all reports except latest 10."
1413
  msgstr ""
1414
- "Poznámka: Klikněte na tlačítko <strong>Optimalizace tabulek a Smazání záznamů</"
1415
- "strong> pro vymazání všech zpráv kromě posledních 10."
1416
 
1417
  #: settings/setting-sync.php:15
1418
  msgid "Table sync completed successfully."
@@ -1442,6 +1199,30 @@ msgstr "Nastavení bylo uloženo."
1442
  msgid "Oops, unable to update."
1443
  msgstr "Nelze aktualizovat."
1444
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1445
  #: settings/settings-edit.php:220
1446
  msgid "1. WP HTML MAIL"
1447
  msgstr "1. WP HTML ZPRÁVA"
@@ -1458,6 +1239,21 @@ msgstr "3. PHP HTML ZPRÁVA"
1458
  msgid "4. PHP PLAINTEXT MAIL"
1459
  msgstr "4. PHP PROSTÝ TEXT"
1460
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1461
  #: settings/settings-edit.php:235
1462
  msgid "Double Opt In"
1463
  msgstr "Dvojí potvrzení"
@@ -1465,7 +1261,8 @@ msgstr "Dvojí potvrzení"
1465
  #: settings/settings-edit.php:236 subscribers/view-subscriber-add.php:150
1466
  #: subscribers/view-subscriber-edit.php:149
1467
  #: subscribers/view-subscriber-import.php:177
1468
- #: subscribers/view-subscriber-show.php:302 subscribers/view-subscriber-show.php:329
 
1469
  msgid "Single Opt In"
1470
  msgstr "Jednoduché potvrzení"
1471
 
@@ -1473,6 +1270,14 @@ msgstr "Jednoduché potvrzení"
1473
  msgid "Image Size"
1474
  msgstr "Velikost obrázku"
1475
 
 
 
 
 
 
 
 
 
1476
  #: settings/settings-edit.php:247
1477
  msgid "Full Size"
1478
  msgstr "Plná velikost"
@@ -1485,6 +1290,64 @@ msgstr "Střední velikost"
1485
  msgid "Thumbnail"
1486
  msgstr "Náhled"
1487
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1488
  #: settings/settings-edit.php:289 settings/settings-edit.php:362
1489
  #: subscribers/view-subscriber-sync.php:106
1490
  msgid "YES"
@@ -1495,6 +1358,149 @@ msgstr "ANO"
1495
  msgid "NO"
1496
  msgstr "NE"
1497
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1498
  #: settings/settings-edit.php:402
1499
  msgid "Save Settings"
1500
  msgstr "Uložit nastavení"
@@ -1509,10 +1515,11 @@ msgstr "Vyberte nebo vytvořte skupinu pro tento email."
1509
 
1510
  #: subscribers/view-subscriber-add.php:55
1511
  msgid ""
1512
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in the "
1513
- "group name."
1514
  msgstr ""
1515
- "Chyba: Speciální znaky (['^$%&*()}{@#~?><>,|=_+\\\"]) v názvu skupiny nelze použít."
 
1516
 
1517
  #: subscribers/view-subscriber-add.php:65
1518
  msgid "Subscriber has been saved."
@@ -1549,7 +1556,8 @@ msgstr "Export"
1549
  #: subscribers/view-subscriber-add.php:112 subscribers/view-subscriber-edit.php:111
1550
  #: subscribers/view-subscriber-export.php:28
1551
  #: subscribers/view-subscriber-import.php:144
1552
- #: subscribers/view-subscriber-show.php:244 subscribers/view-subscriber-sync.php:142
 
1553
  msgid "Sync"
1554
  msgstr "Synchronizovat"
1555
 
@@ -1567,19 +1575,22 @@ msgstr "Vyberte stav odběratele"
1567
 
1568
  #: subscribers/view-subscriber-add.php:147 subscribers/view-subscriber-edit.php:146
1569
  #: subscribers/view-subscriber-import.php:174
1570
- #: subscribers/view-subscriber-show.php:299 subscribers/view-subscriber-show.php:326
 
1571
  msgid "Confirmed"
1572
  msgstr "Potvrzeno"
1573
 
1574
  #: subscribers/view-subscriber-add.php:148 subscribers/view-subscriber-edit.php:147
1575
  #: subscribers/view-subscriber-import.php:175
1576
- #: subscribers/view-subscriber-show.php:300 subscribers/view-subscriber-show.php:327
 
1577
  msgid "Unconfirmed"
1578
  msgstr "Nepotvrzeno"
1579
 
1580
  #: subscribers/view-subscriber-add.php:149 subscribers/view-subscriber-edit.php:148
1581
  #: subscribers/view-subscriber-import.php:176
1582
- #: subscribers/view-subscriber-show.php:301 subscribers/view-subscriber-show.php:328
 
1583
  msgid "Unsubscribed"
1584
  msgstr "Zrušen odběr"
1585
 
@@ -1587,7 +1598,8 @@ msgstr "Zrušen odběr"
1587
  msgid "Select (or) Create Group for Subscriber"
1588
  msgstr "Vyberte (nebo) vytvořte skupinu pro odběratele"
1589
 
1590
- #: subscribers/view-subscriber-add.php:173 subscribers/view-subscriber-import.php:201
 
1591
  msgid "(or)"
1592
  msgstr "(nebo)"
1593
 
@@ -1611,6 +1623,14 @@ msgstr "Odběratel již v této skupině existuje."
1611
  msgid "Edit Subscriber"
1612
  msgstr "Upravit odběratele"
1613
 
 
 
 
 
 
 
 
 
1614
  #: subscribers/view-subscriber-edit.php:141
1615
  msgid "Update Subscriber's Status"
1616
  msgstr "Změna stavu odběratele"
@@ -1665,10 +1685,11 @@ msgstr "Autoři komentářů"
1665
 
1666
  #: subscribers/view-subscriber-import.php:43
1667
  msgid ""
1668
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in the "
1669
- "Group name."
1670
  msgstr ""
1671
- "Chyba: Speciální znaky (['^$%&*()}{@#~?><>,|=_+\\\"]) v názvu skupiny nelze použít."
 
1672
 
1673
  #: subscribers/view-subscriber-import.php:91
1674
  msgid "email imported."
@@ -1731,14 +1752,16 @@ msgstr "Záznam byl smazán."
1731
  #: subscribers/view-subscriber-show.php:66
1732
  msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1733
  msgstr ""
1734
- "Chcete-li odeslat potvrzovací email, změňte možnost potvrzení na dvojité potvrzení."
 
1735
 
1736
  #: subscribers/view-subscriber-show.php:74 subscribers/view-subscriber-show.php:133
1737
  msgid "Confirmation emails Resent Successfully."
1738
  msgstr "Potvrzovací emaily úspěšně odeslány."
1739
 
1740
  #: subscribers/view-subscriber-show.php:99 subscribers/view-subscriber-show.php:138
1741
- #: subscribers/view-subscriber-show.php:176 subscribers/view-subscriber-show.php:215
 
1742
  msgid "No record was selected."
1743
  msgstr "Není vybrán žádný záznam."
1744
 
@@ -1768,7 +1791,8 @@ msgstr "Vyberte nový stav ke změně."
1768
  msgid "Bulk Actions"
1769
  msgstr "Hromadné úpravy"
1770
 
1771
- #: subscribers/view-subscriber-show.php:278 subscribers/view-subscriber-show.php:411
 
1772
  msgid "Resend Confirmation"
1773
  msgstr "Znovu odeslat povtrzení"
1774
 
@@ -1780,7 +1804,8 @@ msgstr "Změna stavu odběratele"
1780
  msgid "Select Group"
1781
  msgstr "Vyberte skupinu"
1782
 
1783
- #: subscribers/view-subscriber-show.php:298 subscribers/view-subscriber-show.php:325
 
1784
  msgid "All Status"
1785
  msgstr "Všechny stavy"
1786
 
@@ -1828,14 +1853,21 @@ msgstr "5001 - 10000"
1828
  msgid "Display All"
1829
  msgstr "Zobrazit vše"
1830
 
1831
- #: subscribers/view-subscriber-show.php:352 subscribers/view-subscriber-show.php:366
 
1832
  msgid "Email Address"
1833
  msgstr "Emailová adresa"
1834
 
1835
- #: subscribers/view-subscriber-show.php:355 subscribers/view-subscriber-show.php:369
 
1836
  msgid "Group"
1837
  msgstr "Skupina"
1838
 
 
 
 
 
 
1839
  #: subscribers/view-subscriber-sync.php:35
1840
  msgid "Please select default group to newly registered user."
1841
  msgstr "Vyberte výchozí skupinu pro nově registrované uživatele"
@@ -1867,14 +1899,6 @@ msgstr "Email Subscribers & Newsletters"
1867
  msgid "http://www.icegram.com/"
1868
  msgstr "http://www.icegram.com/"
1869
 
1870
- #. Description of the plugin/theme
1871
- msgid ""
1872
- "Add subscription forms on website, send HTML newsletters & automatically notify "
1873
- "subscribers about new blog posts once it gets published."
1874
- msgstr ""
1875
- "Přidejte přihlašovací formulář na internetové stránky, posílejte HTML zpravodaje a "
1876
- "automaticky informujte odběratele o nových příspěvcích, jakmile budou zveřejněny. "
1877
-
1878
  #. Author of the plugin/theme
1879
  msgid "Icegram"
1880
  msgstr "Icegram"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.2.7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-03-02 12:49:44+00:00\n"
6
+ "PO-Revision-Date: Tue Mar 14 2017 17:34:22 GMT+0530 (IST)\n"
7
+ "Last-Translator: Martin <2mkower@gmail.com>\n"
8
+ "Language-Team: Icegram <hello@icegram.com>\n"
9
+ "Language: Czech\n"
10
+ "Plural-Forms: nplurals=3; plural=( n == 1 ) ? 0 : ( n >= 2 && n <= 4 ) ? 1 : "
11
+ "2\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Loco - https://localise.biz/\n"
17
  "X-Poedit-Basepath: .\n"
18
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
19
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
  "X-Loco-Target-Locale: cs_CZ\n"
24
+ "X-Poedit-SearchPath-0: .."
25
 
26
+ #: classes/es-common.php:26
27
+ msgid "<span style=\"color:#FF0000\">Disabled</span>"
28
+ msgstr "<span style=\"color:#FF0000\">Neaktivní</span>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
 
30
+ #: classes/es-common.php:35
31
+ msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
32
+ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">Cron email</span>"
33
 
34
+ #: classes/es-common.php:38
35
+ msgid "<span style=\"color:#993399;\">Immediately</span>"
36
+ msgstr "<span style=\"color:#993399;\">Okamžitý email</span>"
 
37
 
38
+ #: compose/compose-add.php:77 compose/compose-edit.php:88
39
+ msgid "Select your Mail Template"
40
+ msgstr "Vyberte šablonu emailu"
41
 
42
  #: compose/compose-add.php:79 compose/compose-edit.php:90
43
+ msgid "Newsletter"
44
+ msgstr "Zpravodaj"
45
 
46
  #: compose/compose-add.php:80 compose/compose-edit.php:91
47
+ msgid "Post Notification"
48
+ msgstr "Potvrzení příspěvku"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
 
50
+ #: compose/compose-add.php:84 compose/compose-edit.php:95
51
+ msgid "Enter your Email Subject"
52
+ msgstr "Zadejte předmět emailu"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
 
54
+ #: compose/compose-add.php:88 compose/compose-edit.php:99
55
+ msgid "Enter Content for your Email"
56
+ msgstr "Zadejte obsah emailu"
 
 
57
 
58
+ #: compose/compose-show.php:76 compose/compose-show.php:83
59
+ #: notification/notification-show.php:67 notification/notification-show.php:75
60
+ msgid "Email Subject"
61
+ msgstr "Předmět emailu"
62
 
63
+ #: compose/compose-show.php:77 compose/compose-show.php:84
64
+ msgid "Email Template"
65
+ msgstr "Šablona emailu"
 
 
 
 
66
 
67
+ #: notification/notification-add.php:141 notification/notification-edit.php:161
68
+ msgid "Select Notification Email Subject"
69
+ msgstr "Vyberte předmět oznamovacího emailu"
70
 
71
+ #: notification/notification-add.php:238 notification/notification-edit.php:274
72
+ msgid "Select Notification Status when a new post is published"
73
+ msgstr "Vybrat stav potvrzení pro nově publikovaný příspěvek"
 
 
 
 
74
 
75
+ #: notification/notification-add.php:242 notification/notification-edit.php:278
76
+ #: notification/notification-show.php:129 sendmail/sendmail.php:137
77
+ msgid "Send email immediately"
78
+ msgstr "Odeslat email okamžitě"
79
 
80
+ #: notification/notification-add.php:243 notification/notification-edit.php:279
81
+ #: notification/notification-show.php:131
82
+ msgid "Add to cron and send email via cron job"
83
+ msgstr "Přidat do cronu a odeslat cronem"
 
 
 
84
 
85
+ #: notification/notification-add.php:244 notification/notification-edit.php:280
86
+ msgid "Disable email notification"
87
+ msgstr "Zakázat oznamovací email"
88
 
89
+ #: notification/notification-show.php:56
90
  msgid ""
91
+ "Use this to setup and send notification emails to your subscribers when a "
92
+ "new post is published in your blog."
93
  msgstr ""
94
+ "Slouží k nastavení a odeslání oznamovacího emailu vašim odběratelům, když je "
95
+ "nový příspěvek publikován na vašem webu."
96
 
97
+ #: notification/notification-show.php:69 notification/notification-show.php:77
98
+ msgid "Post Categories / Custom Post Types"
99
+ msgstr "Kategorie příspěvků / Vlastní typy příspěvků"
100
 
101
+ #: sendmail/sendmail.php:138
102
+ msgid "Send email via cron job"
103
+ msgstr "Odeslat email cronem"
 
104
 
105
+ #: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:84
106
+ #: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
107
+ msgid "Sent"
108
+ msgstr "Odeslal"
109
 
110
+ #. Description of the plugin/theme
111
  msgid ""
112
+ "Add subscription forms on website, send HTML newsletters & automatically "
113
+ "notify subscribers about new blog posts once it is published."
114
  msgstr ""
115
+ "Přidejte formulář přihlášení k zasílání zpravodajů na internetové stránky, "
116
+ "posílejte HTML zpravodaje a automaticky informujte objednatele o nových "
117
+ "příspěvcích, jakmile budou zveřejněny."
 
 
 
 
 
 
 
 
 
 
 
118
 
119
  #: classes/es-common.php:8
120
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
140
  msgid "<span style=\"color:#999900;\">Nodata</span>"
141
  msgstr "<span style=\"color:#999900;\">Neuvedeno</span>"
142
 
 
 
 
 
143
  #: classes/es-common.php:29
144
  msgid "<span style=\"color:#FF0000\">In Queue</span>"
145
  msgstr "<span style=\"color:#FF0000\">Ve frontě</span>"
148
  msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
149
  msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Odesláno</span>"
150
 
151
+ #: classes/es-loadwidget.php:24 classes/es-register.php:547
152
+ #: subscribers/view-subscriber-show.php:353 subscribers/view-subscriber-show.php:
153
+ #: 367
 
 
 
 
 
 
 
154
  msgid "Name"
155
  msgstr "Jméno"
156
 
157
+ #: classes/es-loadwidget.php:29 classes/es-register.php:552
158
  msgid "Email *"
159
  msgstr "Email *"
160
 
161
+ #: classes/es-loadwidget.php:34 classes/es-register.php:557
162
  msgid "Subscribe"
163
  msgstr "Odebírat"
164
 
165
  #: classes/es-register.php:139 classes/es-register.php:140
166
  msgid "Email Subscribers"
167
+ msgstr "Email Subscribers"
168
 
169
  #: classes/es-register.php:142 classes/es-register.php:143
170
  #: subscribers/view-subscriber-show.php:240
176
  msgid "Compose"
177
  msgstr "Vytvořit"
178
 
179
+ #: classes/es-register.php:148 classes/es-register.php:149
180
+ #: notification/notification-show.php:51
181
+ msgid "Post Notifications"
182
+ msgstr "Oznámení o příspěvcích"
183
+
184
+ #: classes/es-register.php:151 classes/es-register.php:152 sendmail/sendmail.php:92
185
+ msgid "Newsletters"
186
+ msgstr "Zpravodaje"
187
+
188
+ #: classes/es-register.php:154 classes/es-register.php:155 cron/cron-add.php:78
189
+ msgid "Cron Settings"
190
+ msgstr "Cron nastavení"
191
+
192
+ #: classes/es-register.php:157 classes/es-register.php:158
193
+ #: settings/settings-edit.php:196
194
+ msgid "Email Settings"
195
+ msgstr "Nastavení e-mailu"
196
+
197
+ #: classes/es-register.php:160 classes/es-register.php:161 roles/roles-add.php:109
198
+ msgid "User Roles"
199
+ msgstr "Uživatelské úrovně"
200
+
201
+ #: classes/es-register.php:163 classes/es-register.php:164
202
+ #: sentmail/sentmail-show.php:95
203
+ msgid "Reports"
204
+ msgstr "Přehledy"
205
+
206
  #: classes/es-register.php:166
207
  msgid "Help & Info"
208
  msgstr "Nápověda"
244
  #: classes/es-register.php:184
245
  msgctxt "view-subscriber-enhanced-select"
246
  msgid ""
247
+ "Do you want to resend confirmation email? \\nAlso please note, this will "
248
+ "update subscriber current status to 'Unconfirmed'."
249
  msgstr ""
250
  "Chcete znovu odeslat potvrzovací email? \\nUpozorňujeme, že bude aktualizován "
251
  "současný stav odběratele na „Nepotvrzeno“."
278
  #: classes/es-register.php:190
279
  msgctxt "view-subscriber-enhanced-select"
280
  msgid ""
281
+ "Please select only csv file. Please check official website for csv structure."
282
+ "."
283
  msgstr ""
284
+ "Použijte výhradně soubor ve formátu CSV. Zkontrolujte strukturu csv souboru "
285
+ "na oficiálních internetových stránkách..."
286
 
287
  #: classes/es-register.php:198
288
  msgctxt "compose-enhanced-select"
308
  msgctxt "notification-enhanced-select"
309
  msgid "Please select notification mail subject. Use compose menu to create new."
310
  msgstr ""
311
+ "Vyberte předmět oznamovacího emailu. Pro vytvoření nového použijte menu "
312
+ "„Vytvořit“."
313
 
314
  #: classes/es-register.php:210
315
  msgctxt "notification-enhanced-select"
334
  #: classes/es-register.php:221
335
  msgctxt "sendmail-enhanced-select"
336
  msgid ""
337
+ "Have you double checked your selected group? If so, let's go ahead and send "
338
+ "this."
339
  msgstr "Zkontrolovali jste si vybranou skupinu? Jestli ano, formulář můžete odeslat."
340
 
341
  #: classes/es-register.php:229
386
  #: classes/es-register.php:257
387
  msgctxt "widget-enhanced-select"
388
  msgid ""
389
+ "Your subscription was successful! Within a few minutes, kindly check the "
390
+ "mail in your mailbox and confirm your subscription. If you can't see the "
391
+ "mail in your mailbox, please check your spam folder."
392
  msgstr ""
393
+ "Úspěšně jste se přihlásili k odběru! Během několika minut zkontrolujte "
394
+ "emaily ve své schránce a potvrďte registraci. Pokud email nenajdete, "
395
+ "zkontrolujte prosím složku se spamem."
396
 
397
  #: classes/es-register.php:258
398
  msgctxt "widget-enhanced-select"
447
  #: classes/es-register.php:274
448
  msgctxt "widget-page-enhanced-select"
449
  msgid ""
450
+ "Your subscription was successful! Within a few minutes, kindly check the "
451
+ "mail in your mailbox and confirm your subscription. If you can't see the "
452
+ "mail in your mailbox, please check your spam folder."
453
  msgstr ""
454
+ "Úspěšně jste se přihlásili k odběru! Během několika minut zkontrolujte "
455
+ "emaily ve své schránce a potvrďte registraci. Pokud email nenajdete, "
456
+ "zkontrolujte prosím složku se spamem."
457
 
458
  #: classes/es-register.php:275
459
  msgctxt "widget-page-enhanced-select"
480
  msgid "There was a problem with the request."
481
  msgstr "Došlo k potížím s požadavkem."
482
 
483
+ #: classes/es-register.php:456
484
  msgid ""
485
  "Email Subscribers recommends free plugin <b>Rainmaker</b> to collect leads "
486
  "instantly"
487
  msgstr ""
488
+ "Email Subscribers doporučuje bezplatný plugin <b>Rainmaker</b> k okamžitému "
489
+ "zběru potenciálních zákazníků"
490
 
491
+ #: classes/es-register.php:457
492
  msgid "Yes, I want this"
493
  msgstr "Ano, chci ho."
494
 
495
+ #: classes/es-register.php:457
496
  msgid "No, I don't want it"
497
  msgstr "Ne, nechci ho."
498
 
499
+ #: classes/es-register.php:592
500
  msgid "Widget Title"
501
  msgstr "Nadpis widgetu"
502
 
503
+ #: classes/es-register.php:596
504
  msgid "Display Name Field"
505
  msgstr "Zobrazit pole „Jméno“"
506
 
507
+ #: classes/es-register.php:603
508
  msgid "Short Description"
509
  msgstr "Stručný popis"
510
 
511
+ #: classes/es-register.php:605
512
  msgid "Short description about your subscription form."
513
  msgstr "Krátký popis vašeho přihlašovacího formuláře."
514
 
515
+ #: classes/es-register.php:608
516
  msgid "Subscriber Group"
517
  msgstr "Skupina odběratelů"
518
 
524
  msgid "Template successfully created. "
525
  msgstr "Šablona byla úspěšně vytvořena."
526
 
527
+ #: compose/compose-add.php:73
528
+ msgid "Add new Email"
529
+ msgstr "Přidat nový e-mail"
530
+
531
  #: compose/compose-add.php:74 compose/compose-edit.php:85
532
  #: compose/compose-preview.php:27 compose/compose-show.php:65 cron/cron-add.php:79
533
  #: notification/notification-add.php:112 notification/notification-edit.php:123
535
  #: sendmail/sendmail.php:93 sentmail/deliverreport-show.php:60
536
  #: sentmail/sentmail-preview.php:27 sentmail/sentmail-show.php:96
537
  #: settings/settings-edit.php:197 subscribers/view-subscriber-add.php:113
538
+ #: subscribers/view-subscriber-edit.php:112 subscribers/view-subscriber-export.
539
+ #: php:29
540
  #: subscribers/view-subscriber-import.php:145
541
  #: subscribers/view-subscriber-show.php:245 subscribers/view-subscriber-sync.php:91
542
  msgid "Help"
543
  msgstr "Nápověda"
544
 
 
 
 
 
 
 
 
 
545
  #: compose/compose-add.php:86 compose/compose-edit.php:97
546
  msgid "Keyword: ###POSTTITLE###"
547
  msgstr "Klíčové slovo: ###POSTTITLE###"
548
 
 
 
 
 
549
  #: compose/compose-add.php:92 compose/compose-edit.php:103
550
  #, c-format
551
  msgid ""
552
  "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
553
+ "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
554
+ "###POSTDESC###, ###POSTFULL###"
555
  msgstr ""
556
  "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
557
+ "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
558
+ "###POSTDESC###, ###POSTFULL###"
559
 
560
  #: compose/compose-add.php:92 compose/compose-edit.php:103
561
  msgid "Available Keywords"
562
  msgstr "Dostupná klíčová slova"
563
 
564
  #: compose/compose-add.php:96 compose/compose-edit.php:107
565
+ #: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:83
 
566
  #: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
567
+ #: subscribers/view-subscriber-show.php:354 subscribers/view-subscriber-show.php:
568
+ #: 368
569
  msgid "Status"
570
  msgstr "Stav"
571
 
578
  msgstr "Vyberte stav zprávy"
579
 
580
  #: compose/compose-add.php:104 compose/compose-edit.php:116 cron/cron-add.php:119
581
+ #: notification/notification-add.php:252 notification/notification-edit.php:289
582
  #: roles/roles-add.php:206 subscribers/view-subscriber-edit.php:190
583
  msgid "Save"
584
  msgstr "Uložit"
595
  msgid "Template successfully updated. "
596
  msgstr "Šablona byla úspěšně aktualizována."
597
 
598
+ #: compose/compose-edit.php:83
599
+ msgid "Edit Email"
600
+ msgstr "Upravit e-mail"
601
+
602
  #: compose/compose-edit.php:84 compose/compose-show.php:64
603
  #: notification/notification-edit.php:122 notification/notification-show.php:52
604
  msgid "Add New"
608
  msgid "Preview Mail"
609
  msgstr "Náhled emailu"
610
 
611
+ #: compose/compose-preview.php:39 compose/compose-show.php:100
612
+ #: notification/notification-show.php:99 subscribers/view-subscriber-show.php:398
613
  msgid "Edit"
614
  msgstr "Upravit"
615
 
623
  msgid "Selected record deleted."
624
  msgstr "Vybraný záznam byl smazán."
625
 
626
+ #: compose/compose-show.php:78 compose/compose-show.php:85
 
 
 
 
 
 
 
 
 
 
627
  msgid "Actions"
628
  msgstr "Akce"
629
 
630
+ #: compose/compose-show.php:101 notification/notification-show.php:102
631
+ #: subscribers/view-subscriber-show.php:277 subscribers/view-subscriber-show.php:
632
+ #: 403
633
  msgid "Delete"
634
  msgstr "Smazat"
635
 
636
+ #: compose/compose-show.php:102 sentmail/sentmail-show.php:110
637
  #: sentmail/sentmail-show.php:123
638
  msgid "Preview"
639
  msgstr "Náhled"
640
 
641
+ #: compose/compose-show.php:110 notification/notification-show.php:142
642
+ #: sentmail/deliverreport-show.php:110 sentmail/sentmail-show.php:166
643
  #: subscribers/view-subscriber-show.php:426
644
  msgid "No records available."
645
  msgstr "Žádné záznamy nejsou k dispozici."
648
  msgid "Please enter valid mail count."
649
  msgstr "Zadejte platný počet emailů."
650
 
651
+ #: cron/cron-add.php:33
652
+ msgid "Successfully updated."
653
+ msgstr "Úspěšně upraveno."
654
+
655
  #: cron/cron-add.php:86
656
  msgid "Cron job URL"
657
  msgstr "URL cronu"
658
 
659
+ #: cron/cron-add.php:87
660
+ msgid ""
661
+ "This is your Cron Job URL. It is a readonly field and you are advised not to "
662
+ "modify it."
663
+ msgstr ""
664
+ "Toto je URL vašeho cronu. Pole je pouze pro čtení, nedoporučujeme vám jej "
665
+ "upravovat."
666
+
667
  #: cron/cron-add.php:96
668
  msgid "Mail Count"
669
  msgstr "Počet zpráv"
670
 
671
+ #: cron/cron-add.php:97
672
+ msgid "Number of mails you want to trigger per hour."
673
+ msgstr "Zadejte počet emailů, které chcete poslat za hodinu pomocí trigeru."
674
+
675
+ #: cron/cron-add.php:102
676
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
677
+ msgstr "(Web host má své limity. Doporučujeme odesílat nejvíce 50 mailů za hodinu.)"
678
+
679
  #: cron/cron-add.php:107
680
  msgid "Admin Report"
681
  msgstr "Hlášení pro administrátora"
682
 
683
+ #: cron/cron-add.php:108
684
+ msgid ""
685
+ "Email to admin whenever cron URL is triggered from your server. (Keywords: "
686
+ "###DATE###, ###SUBJECT###, ###COUNT###)"
687
+ msgstr ""
688
+ "Poslat administrátorovi výše uvedený email kdykoli zapracuje cron URL ve "
689
+ "vašem serveru <br /> (klíčová slova: ###DATE###, ###SUBJECT###, ###COUNT###)"
690
+
691
+ #: cron/cron-add.php:125
692
+ msgid "What is Cron (auto emails) and how to setup Cron Job?"
693
+ msgstr "Co je to cron (automatický e-mail) a jak nastavit cron?"
694
+
695
  #: cron/cron-add.php:126
696
  msgid ""
697
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
714
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
715
  "schedule-cron-emails-in-cpanel/\">Nastavení cronu v cPanel</a>"
716
 
717
+ #: cron/cron-add.php:129
718
+ msgid ""
719
+ "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-"
720
+ "if-hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
721
+ msgstr ""
722
+ "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-"
723
+ "if-hosting-doesnt-support-cron-jobs/\">Hosting nepodporuje crony?</a>"
724
+
725
  #: export/export-email-address.php:33 export/export-email-address.php:37
726
  msgid "Unexpected url submit has been detected"
727
  msgstr "Byla zjištěna neočekávaná URL adresa"
738
  msgid "For more help and tips..."
739
  msgstr "Pro další pomoc a rady..."
740
 
741
+ #: help/help.php:66
742
+ #, c-format
743
+ msgid "Like Email Subscribers? Please consider %s."
744
+ msgstr "Zvažte like pro Email Subscribers %s."
745
+
746
+ #: help/help.php:66
747
+ msgid "contributing to us"
748
+ msgstr "kontaktujte nás"
749
+
750
  #: help/help.php:98
751
  msgid "Frequently Asked Questions"
752
  msgstr "Časté dotazy (anglicky)"
768
  msgid "General Plugin Settings"
769
  msgstr "Základní nastavení pluginu"
770
 
771
+ #: help/help.php:126
772
+ msgid ""
773
+ " (How to modify the existing email content like Confirmation email, Welcome "
774
+ "email, Admin emails)"
775
+ msgstr ""
776
+ "(Jak upravit existující obsah potvrzovacího emailu, uvítacího emailu, emailu "
777
+ "pro administrátora) "
778
+
779
  #: help/help.php:129
780
  msgid "How to Import or Export Email Addresses?"
781
  msgstr "Jak importovat nebo exportovat emailové adresy?"
792
  msgid "What are Static Templates and Dynamic Templates?"
793
  msgstr "Co je statická šablona a dynamická šablona?"
794
 
795
+ #: help/help.php:141
796
+ msgid "How to Compose and Send Newsletter Emails?"
797
+ msgstr "Jak vytvářet a odesílat emaily zpravodajů?"
798
+
799
+ #: help/help.php:144
800
+ msgid ""
801
+ "How to Configure and Send Post Notification emails to subscribers when new "
802
+ "posts are published?"
803
+ msgstr ""
804
+ "Jak nastavit a odesílat emailová oznámení odběratelům, jakmile jsou "
805
+ "publikovány nové příspěvky?"
806
+
807
  #: help/help.php:147
808
  msgid "How to Send a sample new post notification email to testgroup/myself?"
809
  msgstr "Jak poslat ukázku nového oznamovacího emailu testovací skupině/sobě?"
810
 
811
+ #: help/help.php:150
812
+ msgid "How to check Sent emails reports?"
813
+ msgstr "Jak zkontrolovat přehled odeslaných emailů?"
814
+
815
  #: help/help.php:153
816
  msgid "How to Add/Update Existing Subscribers Group?"
817
  msgstr "Jak přidat/aktualizovat existující skupinu odběratelů?"
851
  #: job/es-optin.php:57 job/es-optin.php:67 job/es-unsubscribe.php:54
852
  #: job/es-unsubscribe.php:61
853
  msgid ""
854
+ "Oops.. We are getting some technical error. Please try again or contact "
855
+ "admin."
856
  msgstr ""
857
+ "Nastala technická chyba. Zkuste to prosím znovu nebo se obraťte na "
858
+ "administrátora."
859
 
860
  #: job/es-optin.php:60
861
  msgid "This email address has already been confirmed."
872
  #: notification/notification-add.php:44 notification/notification-edit.php:60
873
  msgid "Please select notification mail subject. Use compose menu to create new."
874
  msgstr ""
875
+ "Vyberte předmět oznamovacího emailu. Pro vytvoření nového použijte menu "
876
+ "„Vytvořit“."
877
 
878
  #: notification/notification-add.php:50 notification/notification-edit.php:66
879
  msgid "Please select post categories."
900
  msgid "Select"
901
  msgstr "Vybrat"
902
 
 
 
 
 
903
  #: notification/notification-add.php:142 notification/notification-edit.php:162
904
  msgid "(Use compose menu to create new)"
905
  msgstr "(Pro nový předmět použijte menu „Vytvořit“)"
908
  msgid "Select Post Categories"
909
  msgstr "Vyberte rubriky příspěvků"
910
 
911
+ #: notification/notification-add.php:194 notification/notification-edit.php:224
912
  msgid "Check All"
913
  msgstr "Označit vše"
914
 
915
+ #: notification/notification-add.php:195 notification/notification-edit.php:225
916
  msgid "Uncheck All"
917
  msgstr "Odznačit vše"
918
 
919
+ #: notification/notification-add.php:201 notification/notification-edit.php:232
920
  msgid "Select your Custom Post Type"
921
  msgstr "Vyberte vlastní typ obsahu"
922
 
923
+ #: notification/notification-add.php:202 notification/notification-edit.php:233
924
  msgid "(Optional)"
925
  msgstr "(nepovinné)"
926
 
927
+ #: notification/notification-add.php:231 notification/notification-edit.php:267
928
  msgid "No Custom Post Types Available"
929
  msgstr "Vlastní typ obsahu není dostupný"
930
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
931
  #: notification/notification-edit.php:48
932
  msgid "Please select subscribers group"
933
  msgstr "Vyberte skupinu odběratelů"
948
  msgid "Update Subscribers Group"
949
  msgstr "Upravit skupinu odběratelů"
950
 
951
+ #: notification/notification-show.php:68 notification/notification-show.php:76
 
 
 
 
952
  msgid "Subscribers Group"
953
  msgstr "Skupina odběratelů"
954
 
955
+ #: notification/notification-show.php:70 notification/notification-show.php:78
 
 
 
 
956
  msgid "Notification Status"
957
  msgstr "Stav oznámení"
958
 
 
 
 
 
 
 
 
 
959
  #: roles/roles-add.php:52
960
  msgid "Role Updated. "
961
  msgstr "Oprávnění bylo aktualizováno."
992
  msgid "Compose Menu"
993
  msgstr "Menu vytvořit"
994
 
995
+ #: roles/roles-add.php:144
996
+ msgid "Post Notifications Menu"
997
+ msgstr "Oznámení o příspěvcích"
998
+
999
+ #: roles/roles-add.php:156
1000
+ msgid "Newsletters + Cron Settings Menu"
1001
+ msgstr "Zpravodaje + Menu nastavení cronu"
1002
+
1003
+ #: roles/roles-add.php:168
1004
+ msgid "Email Settings Menu"
1005
+ msgstr "Menu nastavení emailu"
1006
+
1007
+ #: roles/roles-add.php:180
1008
+ msgid "Reports Menu"
1009
+ msgstr "Menu přehledů"
1010
+
1011
  #: roles/roles-add.php:192
1012
  msgid "Help & Info Menu"
1013
  msgstr "Menu Nápověda"
1036
  msgid "Oops.. We are getting some error. mail not sending."
1037
  msgstr "Nastala chyba. Zprávy se neodesílají."
1038
 
1039
+ #: sendmail/sendmail.php:96
1040
+ msgid "Use this to send newsletter emails to your subscribers."
1041
+ msgstr "Použijete při odeslání emailů svým odběratelům."
1042
+
1043
  #: sendmail/sendmail.php:104
1044
  msgid "Select Mail Subject from available list"
1045
  msgstr "Vyberte předmět zprávy ze seznamu"
1048
  msgid "Select Mail Type"
1049
  msgstr "Vyberte typ emailu"
1050
 
 
 
 
 
 
 
 
 
1051
  #: sendmail/sendmail.php:145
1052
  msgid "Select Subscribers group to Send Mail"
1053
  msgstr "Vyberte skupinu odběratelů pro odeslání zprávy"
1063
 
1064
  #: sendmail/sendmail.php:182
1065
  msgid ""
1066
+ "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1067
+ "that you change above Mail Type to Cron and Send Mail via Cron Job."
1068
+ "</strong><br>Click on Help for more information."
1069
  msgstr ""
1070
+ "<br><br><strong>Váš počet příjemců je vyšší než 100.<br>Důrazně doporučujeme,"
1071
+ " abyste výše změnili typ emailu na cron a zprávy odeslali přes cron."
1072
+ "</strong><br>Pro více informací klikněte na nápovědu."
1073
 
1074
  #: sendmail/sendmail.php:193 sendmail/sendmail.php:195
1075
  msgid "Send Email"
1095
  msgid "Delivery Report"
1096
  msgstr "Hlášení o doručení"
1097
 
1098
+ #: sentmail/deliverreport-show.php:70 sentmail/deliverreport-show.php:81
1099
  #: subscribers/view-subscriber-export.php:36
1100
+ #: subscribers/view-subscriber-export.php:44 subscribers/view-subscriber-show.php:
1101
+ #: 351
1102
  #: subscribers/view-subscriber-show.php:365
1103
  msgid "Sno"
1104
  msgstr "Číslo"
1105
 
1106
+ #: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:82
1107
  msgid "Email"
1108
  msgstr "Email"
1109
 
1110
+ #: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:85
1111
  msgid "Sent Date"
1112
  msgstr "Datum odeslání"
1113
 
1114
+ #: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:86
1115
  msgid "Viewed Status"
1116
  msgstr "Stav zobrazení"
1117
 
1118
+ #: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:87
1119
  msgid "Viewed Date"
1120
  msgstr "Datum zobrazení"
1121
 
 
 
 
 
1122
  #: sentmail/sentmail-preview.php:41
1123
  msgid "Back"
1124
  msgstr "Zpět"
1127
  msgid "Successfully deleted all reports except latest 10."
1128
  msgstr "Úspěšně smazány všechny sestavy kromě posledních 10."
1129
 
1130
+ #: sentmail/sentmail-show.php:99
1131
+ msgid "It will show reports for all Newsletters & Post Notification emails sent."
1132
+ msgstr "Zobrazí přehledy všech odeslaných zpravodajů a oznámení o příspěvcích."
1133
+
1134
  #: sentmail/sentmail-show.php:109 sentmail/sentmail-show.php:122
1135
  msgid "View Reports"
1136
  msgstr "Zobrazit hlášení"
1137
 
1138
  #: sentmail/sentmail-show.php:111 sentmail/sentmail-show.php:124
1139
+ msgid "Type"
1140
+ msgstr "Typ"
1141
 
1142
  #: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
1143
  msgid "Start Date"
1153
 
1154
  #: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
1155
  #: subscribers/view-subscriber-export.php:39
1156
+ #: subscribers/view-subscriber-export.php:47 subscribers/view-subscriber-show.php:
1157
+ #: 357
1158
  #: subscribers/view-subscriber-show.php:371
1159
  msgid "Action"
1160
  msgstr "Akce"
1165
 
1166
  #: sentmail/sentmail-show.php:185
1167
  msgid ""
1168
+ "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1169
+ "button to delete all reports except latest 10."
1170
  msgstr ""
1171
+ "Poznámka: Klikněte na tlačítko <strong>Optimalizace tabulek a Smazání "
1172
+ "záznamů</strong> pro vymazání všech zpráv kromě posledních 10."
1173
 
1174
  #: settings/setting-sync.php:15
1175
  msgid "Table sync completed successfully."
1199
  msgid "Oops, unable to update."
1200
  msgstr "Nelze aktualizovat."
1201
 
1202
+ #: settings/settings-edit.php:204
1203
+ msgid "Sender of Notifications"
1204
+ msgstr "Odesílatel oznámení"
1205
+
1206
+ #: settings/settings-edit.php:205
1207
+ msgid ""
1208
+ "Choose a FROM name and FROM email address for all the emails to be sent from "
1209
+ "this plugin."
1210
+ msgstr ""
1211
+ "Vyberte jméno a emailovou adresu ODESÍLATELE pro všechny oznamovací emaily z "
1212
+ "tohoto pluginu."
1213
+
1214
+ #: settings/settings-edit.php:215
1215
+ msgid "Mail Type"
1216
+ msgstr "Typ emailu"
1217
+
1218
+ #: settings/settings-edit.php:216
1219
+ msgid ""
1220
+ "Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
1221
+ "Option 3 & 4 is to send mails with PHP method mail()."
1222
+ msgstr ""
1223
+ "Varianty 1 a 2 odesílají emaily výchozí Wordpress metodou wp_mail(). "
1224
+ "Varianty 3 a 4 odesílají emaily PHP metodou mail()"
1225
+
1226
  #: settings/settings-edit.php:220
1227
  msgid "1. WP HTML MAIL"
1228
  msgstr "1. WP HTML ZPRÁVA"
1239
  msgid "4. PHP PLAINTEXT MAIL"
1240
  msgstr "4. PHP PROSTÝ TEXT"
1241
 
1242
+ #: settings/settings-edit.php:230
1243
+ msgid "Opt-in Option"
1244
+ msgstr "Nastavení potvrzení"
1245
+
1246
+ #: settings/settings-edit.php:231
1247
+ msgid ""
1248
+ "Double Opt In means subscribers need to confirm their email address by an "
1249
+ "activation link sent them on a activation email message.<br />Single Opt In "
1250
+ "means subscribers do not need to confirm their email address."
1251
+ msgstr ""
1252
+ "Dvojité potvrzení, znamená, že požadujete aby odběratelé potvrdili svou "
1253
+ "emailovou adresu aktivačním odkazem zaslaným v aktivační emailové zprávě. "
1254
+ "Jednoduché potvrzení, znamená že odběratelé nemusí potvrdit svou emailovou "
1255
+ "adresu."
1256
+
1257
  #: settings/settings-edit.php:235
1258
  msgid "Double Opt In"
1259
  msgstr "Dvojí potvrzení"
1261
  #: settings/settings-edit.php:236 subscribers/view-subscriber-add.php:150
1262
  #: subscribers/view-subscriber-edit.php:149
1263
  #: subscribers/view-subscriber-import.php:177
1264
+ #: subscribers/view-subscriber-show.php:302 subscribers/view-subscriber-show.php:
1265
+ #: 329
1266
  msgid "Single Opt In"
1267
  msgstr "Jednoduché potvrzení"
1268
 
1270
  msgid "Image Size"
1271
  msgstr "Velikost obrázku"
1272
 
1273
+ #: settings/settings-edit.php:243
1274
+ msgid ""
1275
+ "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
1276
+ "Emails."
1277
+ msgstr ""
1278
+ "Vyberte velikost obrázku ###POSTIMAGE###, který se zobrazí v emailu oznámení "
1279
+ "příspěvku"
1280
+
1281
  #: settings/settings-edit.php:247
1282
  msgid "Full Size"
1283
  msgstr "Plná velikost"
1290
  msgid "Thumbnail"
1291
  msgstr "Náhled"
1292
 
1293
+ #: settings/settings-edit.php:255
1294
+ msgid "Double Opt In Mail Subject (Confirmation Email)"
1295
+ msgstr "Nastavení předmětu emailu (Potvrzovací email)"
1296
+
1297
+ #: settings/settings-edit.php:256
1298
+ msgid ""
1299
+ "Enter the subject for the confirmation email to be sent Double Opt In "
1300
+ "whenever a user signs up."
1301
+ msgstr ""
1302
+ "Zadejte předmět potvrzovacího emailu pro odeslání uživateli při přihlášení "
1303
+ "dvojitým potvrzením."
1304
+
1305
+ #: settings/settings-edit.php:262
1306
+ msgid "Double Opt In Mail Content (Confirmation Email)"
1307
+ msgstr "Nastavení obsahu emailu (Potvrzovací email)"
1308
+
1309
+ #: settings/settings-edit.php:263
1310
+ msgid ""
1311
+ "Enter the content for the confirmation email to be sent for Double Opt In "
1312
+ "whenever a user signs up. (Keyword: ###NAME###)"
1313
+ msgstr ""
1314
+ "Zadejte obsah potvrzovacího emailu pro odeslání uživateli při přihlášení "
1315
+ "dvojitým potvrzením. (Klíčové slovo: ###NAME###)"
1316
+
1317
+ #: settings/settings-edit.php:269
1318
+ msgid "Double Opt In Confirmation Link"
1319
+ msgstr "Potvrzovací odkaz pro dvojité potvrzení. Není nutné tuto hodnotu měnit."
1320
+
1321
+ #: settings/settings-edit.php:270 settings/settings-edit.php:313
1322
+ msgid "It is a readonly field and you are advised not to modify it."
1323
+ msgstr "Toto je pole pouze pro čtení a doporučujeme hodnotu neupravovat."
1324
+
1325
+ #: settings/settings-edit.php:276
1326
+ msgid ""
1327
+ "Text to display after Email is successfully subscribed from Double Opt In "
1328
+ "(confirmation) Email"
1329
+ msgstr "Text se zobrazí po úspěšném přihlášení emailu při dvojitém potvrzení emailu"
1330
+
1331
+ #: settings/settings-edit.php:277
1332
+ msgid ""
1333
+ "This text will be displayed once user clicks on email confirmation link from "
1334
+ "the Double Opt In (confirmation) Email."
1335
+ msgstr ""
1336
+ "Tento text bude zobrazen po kliknutí na odkaz v potvrzovacím emailu při "
1337
+ "dvojitém potvrzení."
1338
+
1339
+ #: settings/settings-edit.php:284
1340
+ msgid "Subscriber Welcome Email"
1341
+ msgstr "Uvítací email pro odběratele"
1342
+
1343
+ #: settings/settings-edit.php:285
1344
+ msgid ""
1345
+ "To send welcome email to subscriber after successful signup. This option "
1346
+ "must be set to YES."
1347
+ msgstr ""
1348
+ "Chcete-li odeslat uvítací email odběrateli po úspěšné registraci musí být "
1349
+ "tato volba nastavena na hodnotu ANO."
1350
+
1351
  #: settings/settings-edit.php:289 settings/settings-edit.php:362
1352
  #: subscribers/view-subscriber-sync.php:106
1353
  msgid "YES"
1358
  msgid "NO"
1359
  msgstr "NE"
1360
 
1361
+ #: settings/settings-edit.php:296
1362
+ msgid "Subscriber Welcome Email Subject"
1363
+ msgstr "Předmět uvítacího emailu pro odběratele"
1364
+
1365
+ #: settings/settings-edit.php:297
1366
+ msgid ""
1367
+ "Enter the subject for the subscriber welcome email. This will be sent "
1368
+ "whenever a user's email is either confirmed (if Double Opt In) / subscribed "
1369
+ "(if Single Op In) successfully."
1370
+ msgstr ""
1371
+ "Zadejte předmět uvítacího emailu. Bude odeslán jestliže uživatelský email "
1372
+ "bude úspěšně potvrzen (dvojité potvrzení) / přihlášen (jednoduché potvrzení)."
1373
+
1374
+ #: settings/settings-edit.php:303
1375
+ msgid "Subscriber Welcome Email Content"
1376
+ msgstr "Obsah uvítacího emailu pro odběratele"
1377
+
1378
+ #: settings/settings-edit.php:304
1379
+ msgid ""
1380
+ "Enter the content for the subscriber welcome email whenever a user's email "
1381
+ "is either confirmed (if Double Opt In) / subscribed (if Single Opt In) "
1382
+ "successfully. (Keyword: ###NAME###)"
1383
+ msgstr ""
1384
+ "Zadejte předmět uvítacího emailu. Bude odeslán jestliže uživatelský email "
1385
+ "bude úspěšně potvrzen (dvojité potvrzení) / přihlášen (jednoduché potvrzení)."
1386
+ " (Klíčové slovo: ###NAME###)"
1387
+
1388
+ #: settings/settings-edit.php:312
1389
+ msgid "Unsubscribe Link"
1390
+ msgstr "Odhlašovací odkaz"
1391
+
1392
+ #: settings/settings-edit.php:319
1393
+ msgid "Unsubscribe Text in Email"
1394
+ msgstr "Text emailu pro odhlášení"
1395
+
1396
+ #: settings/settings-edit.php:320
1397
+ msgid ""
1398
+ "Enter the text for the unsubscribe link. This text is added with unsubscribe "
1399
+ "link in the emails. (Keyword: ###LINK###)"
1400
+ msgstr ""
1401
+ "Zadejte text odkazu pro odhlášení. Tento text je přidán do odkazu pro "
1402
+ "odhlášení ve zpravodaji. (Klíčové slovo: ###LINK###)"
1403
+
1404
+ #: settings/settings-edit.php:326
1405
+ msgid "Text to display after Email is unsubscribed"
1406
+ msgstr "Text bude zobrazen po odhlášení emailu"
1407
+
1408
+ #: settings/settings-edit.php:327
1409
+ msgid "This text will be displayed once user clicks on unsubscribe link."
1410
+ msgstr "Tento text bude zobrazen při prvním kliknutí na odhlašovací odkaz"
1411
+
1412
+ #: settings/settings-edit.php:334
1413
+ msgid "Error in Confirmation Link"
1414
+ msgstr "Chybové hlášení potvrzovacího odkazu"
1415
+
1416
+ #: settings/settings-edit.php:335
1417
+ msgid ""
1418
+ "Default message to display if there is any issue while clicking on "
1419
+ "confirmation link from the Double Opt In (confirmation) Emails."
1420
+ msgstr ""
1421
+ "Základní zpráva k zobrazení po kliknutí na potvrzovací odkaz při dvojitém "
1422
+ "potvrzení emailu."
1423
+
1424
+ #: settings/settings-edit.php:341
1425
+ msgid "Error in Unsubscribe Link"
1426
+ msgstr "Chybové hlášení odhlašovacího odkazu"
1427
+
1428
+ #: settings/settings-edit.php:342
1429
+ msgid ""
1430
+ "Default message to display if there is any issue while clicking on "
1431
+ "unsubscribe link from the Emails."
1432
+ msgstr "Základní zpráva k zobrazení po kliknutí na odhlašovací odkaz v emailu."
1433
+
1434
+ #: settings/settings-edit.php:349
1435
+ msgid "Admin Email Addresses"
1436
+ msgstr "Emailová adresa administrátora"
1437
+
1438
+ #: settings/settings-edit.php:350
1439
+ msgid ""
1440
+ "Enter the admin email addresses that should receive notifications (separated "
1441
+ "by comma)."
1442
+ msgstr ""
1443
+ "Zadejte emailové adresy administrátorů, kteří by měli přijímat oznámení "
1444
+ "(oddělené čárkou)."
1445
+
1446
+ #: settings/settings-edit.php:356
1447
+ msgid "Notify Admin about New Subscriber"
1448
+ msgstr "Oznámení administrátorovi o novém odběrateli"
1449
+
1450
+ #: settings/settings-edit.php:357
1451
+ msgid ""
1452
+ "To send admin email notifications for the new subscriber. This option must "
1453
+ "be set to YES."
1454
+ msgstr ""
1455
+ "Pro odeslání oznámení administrátorovi o novém odběrateli, je nutné volbu "
1456
+ "nastavit na ANO."
1457
+
1458
+ #: settings/settings-edit.php:369
1459
+ msgid "Admin Email Subject"
1460
+ msgstr "Subjekt emailu pro administrátora"
1461
+
1462
+ #: settings/settings-edit.php:370
1463
+ msgid ""
1464
+ "Enter the subject for the admin email. This will be sent whenever a new "
1465
+ "email is added and confirmed."
1466
+ msgstr ""
1467
+ "Zadejte předmět pro email administrátorovi. Bude posílán kdykoli bude nový "
1468
+ "email přidán nebo potvrzen."
1469
+
1470
+ #: settings/settings-edit.php:376
1471
+ msgid "Admin Email Content"
1472
+ msgstr "Obsah emailu pro administrátora"
1473
+
1474
+ #: settings/settings-edit.php:377
1475
+ msgid ""
1476
+ "Enter the email content for the admin email. This will be sent whenever a "
1477
+ "new email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)"
1478
+ msgstr ""
1479
+ "Zadejte obsah emailu pro administrátora. Ten bude posílán kdykoli bude nový "
1480
+ "email přidán a potvrzen. (Klíčové slovo: ###NAME###, ###EMAIL###)"
1481
+
1482
+ #: settings/settings-edit.php:384
1483
+ msgid "Sent Report Subject"
1484
+ msgstr "Předmět emailu pro hlášení o odeslání"
1485
+
1486
+ #: settings/settings-edit.php:385
1487
+ msgid "Enter the subject for the sent email report. It will be mailed to Admin."
1488
+ msgstr ""
1489
+ "Zadejte předmět emailu s přehledem o odeslání. Bude odesílán "
1490
+ "administrátorovi."
1491
+
1492
+ #: settings/settings-edit.php:391
1493
+ msgid "Sent Report Content"
1494
+ msgstr "Obsah hlášení o odeslání"
1495
+
1496
+ #: settings/settings-edit.php:392
1497
+ msgid ""
1498
+ "Enter the content for the sent mail report. It will be mailed to Admin. "
1499
+ "(Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
1500
+ msgstr ""
1501
+ "Zadejte obsah emailu s přehledem. Bude odesílán administrátorovi. (Klíčová "
1502
+ "slova: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
1503
+
1504
  #: settings/settings-edit.php:402
1505
  msgid "Save Settings"
1506
  msgstr "Uložit nastavení"
1515
 
1516
  #: subscribers/view-subscriber-add.php:55
1517
  msgid ""
1518
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1519
+ "the group name."
1520
  msgstr ""
1521
+ "Chyba: Speciální znaky (['^$%&*()}{@#~?><>,|=_+\\\"]) v názvu skupiny nelze "
1522
+ "použít."
1523
 
1524
  #: subscribers/view-subscriber-add.php:65
1525
  msgid "Subscriber has been saved."
1556
  #: subscribers/view-subscriber-add.php:112 subscribers/view-subscriber-edit.php:111
1557
  #: subscribers/view-subscriber-export.php:28
1558
  #: subscribers/view-subscriber-import.php:144
1559
+ #: subscribers/view-subscriber-show.php:244 subscribers/view-subscriber-sync.php:
1560
+ #: 142
1561
  msgid "Sync"
1562
  msgstr "Synchronizovat"
1563
 
1575
 
1576
  #: subscribers/view-subscriber-add.php:147 subscribers/view-subscriber-edit.php:146
1577
  #: subscribers/view-subscriber-import.php:174
1578
+ #: subscribers/view-subscriber-show.php:299 subscribers/view-subscriber-show.php:
1579
+ #: 326
1580
  msgid "Confirmed"
1581
  msgstr "Potvrzeno"
1582
 
1583
  #: subscribers/view-subscriber-add.php:148 subscribers/view-subscriber-edit.php:147
1584
  #: subscribers/view-subscriber-import.php:175
1585
+ #: subscribers/view-subscriber-show.php:300 subscribers/view-subscriber-show.php:
1586
+ #: 327
1587
  msgid "Unconfirmed"
1588
  msgstr "Nepotvrzeno"
1589
 
1590
  #: subscribers/view-subscriber-add.php:149 subscribers/view-subscriber-edit.php:148
1591
  #: subscribers/view-subscriber-import.php:176
1592
+ #: subscribers/view-subscriber-show.php:301 subscribers/view-subscriber-show.php:
1593
+ #: 328
1594
  msgid "Unsubscribed"
1595
  msgstr "Zrušen odběr"
1596
 
1598
  msgid "Select (or) Create Group for Subscriber"
1599
  msgstr "Vyberte (nebo) vytvořte skupinu pro odběratele"
1600
 
1601
+ #: subscribers/view-subscriber-add.php:173 subscribers/view-subscriber-import.php:
1602
+ #: 201
1603
  msgid "(or)"
1604
  msgstr "(nebo)"
1605
 
1623
  msgid "Edit Subscriber"
1624
  msgstr "Upravit odběratele"
1625
 
1626
+ #: subscribers/view-subscriber-edit.php:121
1627
+ msgid "Subscriber's Full Name"
1628
+ msgstr "Celé jména odběratele"
1629
+
1630
+ #: subscribers/view-subscriber-edit.php:131
1631
+ msgid "Subscriber's Email Address"
1632
+ msgstr "Emailová adresa odběratele"
1633
+
1634
  #: subscribers/view-subscriber-edit.php:141
1635
  msgid "Update Subscriber's Status"
1636
  msgstr "Změna stavu odběratele"
1685
 
1686
  #: subscribers/view-subscriber-import.php:43
1687
  msgid ""
1688
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1689
+ "the Group name."
1690
  msgstr ""
1691
+ "Chyba: Speciální znaky (['^$%&*()}{@#~?><>,|=_+\\\"]) v názvu skupiny nelze "
1692
+ "použít."
1693
 
1694
  #: subscribers/view-subscriber-import.php:91
1695
  msgid "email imported."
1752
  #: subscribers/view-subscriber-show.php:66
1753
  msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1754
  msgstr ""
1755
+ "Chcete-li odeslat potvrzovací email, změňte možnost potvrzení na dvojité "
1756
+ "potvrzení."
1757
 
1758
  #: subscribers/view-subscriber-show.php:74 subscribers/view-subscriber-show.php:133
1759
  msgid "Confirmation emails Resent Successfully."
1760
  msgstr "Potvrzovací emaily úspěšně odeslány."
1761
 
1762
  #: subscribers/view-subscriber-show.php:99 subscribers/view-subscriber-show.php:138
1763
+ #: subscribers/view-subscriber-show.php:176 subscribers/view-subscriber-show.php:
1764
+ #: 215
1765
  msgid "No record was selected."
1766
  msgstr "Není vybrán žádný záznam."
1767
 
1791
  msgid "Bulk Actions"
1792
  msgstr "Hromadné úpravy"
1793
 
1794
+ #: subscribers/view-subscriber-show.php:278 subscribers/view-subscriber-show.php:
1795
+ #: 411
1796
  msgid "Resend Confirmation"
1797
  msgstr "Znovu odeslat povtrzení"
1798
 
1804
  msgid "Select Group"
1805
  msgstr "Vyberte skupinu"
1806
 
1807
+ #: subscribers/view-subscriber-show.php:298 subscribers/view-subscriber-show.php:
1808
+ #: 325
1809
  msgid "All Status"
1810
  msgstr "Všechny stavy"
1811
 
1853
  msgid "Display All"
1854
  msgstr "Zobrazit vše"
1855
 
1856
+ #: subscribers/view-subscriber-show.php:352 subscribers/view-subscriber-show.php:
1857
+ #: 366
1858
  msgid "Email Address"
1859
  msgstr "Emailová adresa"
1860
 
1861
+ #: subscribers/view-subscriber-show.php:355 subscribers/view-subscriber-show.php:
1862
+ #: 369
1863
  msgid "Group"
1864
  msgstr "Skupina"
1865
 
1866
+ #: subscribers/view-subscriber-show.php:356 subscribers/view-subscriber-show.php:
1867
+ #: 370
1868
+ msgid "Signup Date<br>(YYYY-MM-DD)"
1869
+ msgstr "Datum přihlášení<br>(YYYY-MM-DD)"
1870
+
1871
  #: subscribers/view-subscriber-sync.php:35
1872
  msgid "Please select default group to newly registered user."
1873
  msgstr "Vyberte výchozí skupinu pro nově registrované uživatele"
1899
  msgid "http://www.icegram.com/"
1900
  msgstr "http://www.icegram.com/"
1901
 
 
 
 
 
 
 
 
 
1902
  #. Author of the plugin/theme
1903
  msgid "Icegram"
1904
  msgstr "Icegram"
languages/email-subscribers-lt_LT.mo CHANGED
Binary file
languages/email-subscribers-lt_LT.po CHANGED
@@ -1,526 +1,29 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.2.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-01-18 05:36:03+00:00\n"
6
- "PO-Revision-Date: 2017-02-06 11:44+0000\n"
7
- "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
- "Language-Team: Lithuanian\n"
9
- "Language: lt-LT\n"
10
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 "
11
  "&&(n%100<10||n%100 >= 20)? 1 : 2)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Loco-Source-Locale: lt_LT\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-Basepath: .\n"
18
- "X-Poedit-SearchPath-0: ..\n"
19
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
20
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
21
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
22
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
23
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
24
- "X-Generator: Loco - https://localise.biz/\n"
25
- "X-Loco-Target-Locale: lt_LT\n"
26
- "X-Loco-Parser: loco_parse_po"
27
-
28
- #: subscribers/view-subscriber-show.php:99
29
- #: subscribers/view-subscriber-show.php:138
30
- #: subscribers/view-subscriber-show.php:176
31
- #: subscribers/view-subscriber-show.php:215
32
- msgid "No record was selected."
33
- msgstr "Nebuvo pasirinktas įrašas."
34
-
35
- #: subscribers/view-subscriber-show.php:162
36
- msgid "Subscribers Group updated."
37
- msgstr "Atnaujinta prenumeratorių grupė."
38
-
39
- #: subscribers/view-subscriber-show.php:167
40
- msgid "Please select New group to update."
41
- msgstr "Prašome pasirinkti naują grupę atnaujinimui."
42
-
43
- #: subscribers/view-subscriber-show.php:201
44
- msgid "Subscribers Status updated."
45
- msgstr "Prenumeratorių būsena atnaujinta."
46
-
47
- #: subscribers/view-subscriber-show.php:206
48
- msgid "Please select New Status to update."
49
- msgstr "Prašome pasirinkti naują būseną atnaujinimui."
50
-
51
- #: subscribers/view-subscriber-show.php:280
52
- msgid "Update Subscribers Status"
53
- msgstr "Atnaujinti prenumeratorių būseną"
54
-
55
- #: subscribers/view-subscriber-show.php:356
56
- #: subscribers/view-subscriber-show.php:370
57
- msgid "Signup Date<br>(YYYY-MM-DD)"
58
- msgstr "Prenumeratos data<br>(YYYY-MM-DD)"
59
-
60
- #. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.6) #-#-#-#-#
61
- #. Plugin URI of the plugin/theme
62
- #. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.6) #-#-#-#-#
63
- #. Author URI of the plugin/theme
64
- msgid "http://www.icegram.com/"
65
- msgstr "http://www.icegram.com/"
66
-
67
- #: settings/settings-edit.php:384
68
- msgid "Sent Report Subject"
69
- msgstr "Išsiųstų laiškų ataskaitos tema"
70
-
71
- #: settings/settings-edit.php:385
72
- msgid ""
73
- "Enter the subject for the sent email report. It will be mailed to Admin."
74
- msgstr ""
75
- "Įveskite išsiųstų laiškų ataskaitos laiško temą. Jis bus siunčiamas "
76
- "administratoriams."
77
-
78
- #: settings/settings-edit.php:391
79
- msgid "Sent Report Content"
80
- msgstr "Išsiųstų laiškų ataskaitos turinys"
81
-
82
- #: settings/settings-edit.php:392
83
- msgid ""
84
- "Enter the content for the sent mail report. It will be mailed to Admin. "
85
- "(Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
86
- msgstr ""
87
- "Įveskite išsiųstų laiškų ataskaitos laiško turinį. Jis bus siunčiamas "
88
- "administratoriams. (Raktažodis: ###COUNT###, ###UNIQUE###, ###STARTTIME###, "
89
- "###ENDTIME###)"
90
-
91
- #: subscribers/view-subscriber-edit.php:121
92
- msgid "Subscriber's Full Name"
93
- msgstr "Prenumeratoriaus pilnas vardas"
94
-
95
- #: subscribers/view-subscriber-edit.php:131
96
- msgid "Subscriber's Email Address"
97
- msgstr "Prenumeratoriaus el. pašto adresas"
98
-
99
- #: subscribers/view-subscriber-show.php:74
100
- #: subscribers/view-subscriber-show.php:133
101
- msgid "Confirmation emails Resent Successfully."
102
- msgstr "Patvirtinimo laiškai pakartotinai išsiųsti sėkmingai."
103
-
104
- #: settings/settings-edit.php:349
105
- msgid "Admin Email Addresses"
106
- msgstr "Administratorių el. pašto adresai"
107
-
108
- #: settings/settings-edit.php:350
109
- msgid ""
110
- "Enter the admin email addresses that should receive notifications (separated "
111
- "by comma)."
112
- msgstr ""
113
- "Įveskite Administratorių elektroninio pašto adresus, kuriais turėtų būti "
114
- "siunčiami pranešimai (atskiriant kableliu)."
115
-
116
- #: settings/settings-edit.php:356
117
- msgid "Notify Admin about New Subscriber"
118
- msgstr "Pranešti administratoriui apie naują prenumeratorių"
119
-
120
- #: settings/settings-edit.php:357
121
- msgid ""
122
- "To send admin email notifications for the new subscriber. This option must "
123
- "be set to YES."
124
- msgstr ""
125
- "Norėdami siųsti pranešimus administratoriams apie naujus prenumeratorius, "
126
- "turite nustatyti TAIP."
127
-
128
- #: settings/settings-edit.php:369
129
- msgid "Admin Email Subject"
130
- msgstr "Administratoriaus laiško tema"
131
-
132
- #: settings/settings-edit.php:370
133
- msgid ""
134
- "Enter the subject for the admin email. This will be sent whenever a new "
135
- "email is added and confirmed."
136
- msgstr ""
137
- "Įveskite administratoriaus laiško temą. Jis bus siunčiamas, kai naujas el. "
138
- "pašto adresas pridedamas ir patvirtinamas."
139
-
140
- #: settings/settings-edit.php:376
141
- msgid "Admin Email Content"
142
- msgstr "Administratoriaus laiško turinys"
143
-
144
- #: settings/settings-edit.php:377
145
- msgid ""
146
- "Enter the email content for the admin email. This will be sent whenever a "
147
- "new email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)"
148
- msgstr ""
149
- "Įveskite administratoriaus laiško turinį. Jis bus siunčiamas, kai naujas el. "
150
- "pašto adresas pridedamas ir patvirtinamas. (Raktažodis: ###NAME###, "
151
- "###EMAIL###)"
152
-
153
- #: settings/settings-edit.php:243
154
- msgid ""
155
- "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
156
- "Emails."
157
- msgstr ""
158
- "Pasirinkite vaizdo dydį ###POSTIMAGE###, kuris bus rodomas pranešimų apie "
159
- "įrašus laiškuose."
160
-
161
- #: settings/settings-edit.php:270 settings/settings-edit.php:313
162
- msgid "It is a readonly field and you are advised not to modify it."
163
- msgstr "Laukas tik skaitymui ir patartina jo nekeisti."
164
-
165
- #: settings/settings-edit.php:284
166
- msgid "Subscriber Welcome Email"
167
- msgstr "Prenumeratoriaus pasveikinimo laiškas"
168
-
169
- #: settings/settings-edit.php:285
170
- msgid ""
171
- "To send welcome email to subscriber after successful signup. This option "
172
- "must be set to YES."
173
- msgstr ""
174
- "Norėdami išsiųsti pasveikinimo laišką prenumeratoriui po sėkmingos "
175
- "registracijos, turite nustatyti TAIP."
176
-
177
- #: settings/settings-edit.php:296
178
- msgid "Subscriber Welcome Email Subject"
179
- msgstr "Prenumeratoriaus pasveikinimo laiško tema"
180
-
181
- #: settings/settings-edit.php:303
182
- msgid "Subscriber Welcome Email Content"
183
- msgstr "Prenumeratoriaus pasveikinimo laiško turinys"
184
-
185
- #: settings/settings-edit.php:312
186
- msgid "Unsubscribe Link"
187
- msgstr "Prenumeratos atsisakymo nuoroda"
188
-
189
- #: settings/settings-edit.php:319
190
- msgid "Unsubscribe Text in Email"
191
- msgstr "Prenumeratos atsisakymo tekstas laiške"
192
-
193
- #: settings/settings-edit.php:320
194
- msgid ""
195
- "Enter the text for the unsubscribe link. This text is added with unsubscribe "
196
- "link in the emails. (Keyword: ###LINK###)"
197
- msgstr ""
198
- "Įveskite prenumeratos atsisakymo nuorodos tekstą. Jis bus pridėtas kartu su "
199
- "prenumeratos atsisakymo nuoroda visuose laiškuose. (Raktažodis: ###LINK###)"
200
-
201
- #: settings/settings-edit.php:326
202
- msgid "Text to display after Email is unsubscribed"
203
- msgstr "Po el. pašto prenumeratos atsisakymo rodomas tekstas."
204
-
205
- #: settings/settings-edit.php:327
206
- msgid "This text will be displayed once user clicks on unsubscribe link."
207
- msgstr ""
208
- "Šis tekstas bus rodomas, kai vartotojas paspaus ant prenumeratos atsisakymo "
209
- "nuorodos."
210
-
211
- #: settings/settings-edit.php:334
212
- msgid "Error in Confirmation Link"
213
- msgstr "Patvirtinimo nuorodos klaida"
214
-
215
- #: settings/settings-edit.php:341
216
- msgid "Error in Unsubscribe Link"
217
- msgstr "Prenumeratos atsisakymo nuorodos klaida"
218
-
219
- #: settings/settings-edit.php:342
220
- msgid ""
221
- "Default message to display if there is any issue while clicking on "
222
- "unsubscribe link from the Emails."
223
- msgstr ""
224
- "Numatytoji žinutė, kuri rodoma, jei kyla problemų paspaudus ant laiškuose "
225
- "rodomos prenumeratos atsisakymo nuorodos."
226
-
227
- #: subscribers/view-subscriber-show.php:44
228
- msgid "Selected details does not exists."
229
- msgstr "Pažymėti duomenys neegzistuoja."
230
-
231
- #: help/help.php:66
232
- #, c-format
233
- msgid "Like Email Subscribers? Please consider %s."
234
- msgstr "Patinka Email Subscribers? Apsvarstykite %s."
235
-
236
- #: help/help.php:66
237
- msgid "contributing to us"
238
- msgstr "prisidedant prie mūsų"
239
-
240
- #: help/help.php:126
241
- msgid ""
242
- " (How to modify the existing email content like Confirmation email, Welcome "
243
- "email, Admin emails)"
244
- msgstr ""
245
- "(Kaip pakeisti esamą laiško turinį Patvirtinimo laiške, Pakvietimo laiške, "
246
- "Administratoriaus laiškuose)"
247
-
248
- #: help/help.php:141
249
- msgid "How to Compose and Send Newsletter Emails?"
250
- msgstr "Kaip kurti ir siųsti naujienlaiškių laiškus?"
251
-
252
- #: help/help.php:144
253
- msgid ""
254
- "How to Configure and Send Post Notification emails to subscribers when new "
255
- "posts are published?"
256
- msgstr ""
257
- "Kaip sukonfigūruoti ir siųsti pranešimus prenumeratoriams, kai patalpinamas "
258
- "naujas įrašas?"
259
-
260
- #: help/help.php:150
261
- msgid "How to check Sent emails reports?"
262
- msgstr "Kaip patikrinti Išsiųstų laiškų ataskaitas?"
263
-
264
- #: help/help.php:156
265
- msgid "Subscribers are not receiving Emails?"
266
- msgstr "Prenumeratoriai negauna laiškų?"
267
-
268
- #: roles/roles-add.php:168
269
- msgid "Email Settings Menu"
270
- msgstr "El. pašto nustatymų meniu"
271
-
272
- #: roles/roles-add.php:180
273
- msgid "Reports Menu"
274
- msgstr "Ataskaitų meniu"
275
-
276
- #: sendmail/sendmail.php:96
277
- msgid "Use this to send newsletter emails to your subscribers."
278
- msgstr "Naudokite naujienlaiškių savo prenumeratoriams siuntimui."
279
-
280
- #: settings/settings-edit.php:204
281
- msgid "Sender of Notifications"
282
- msgstr "Pranešimų siuntėjas"
283
-
284
- #: settings/settings-edit.php:206
285
- msgid ""
286
- "Choose a FROM name and FROM email address for all the emails to be sent from "
287
- "this plugin."
288
- msgstr ""
289
- "Pasirinkite siuntėjo vardą ir elektroninio pašto adresą visiems šio įskiepio "
290
- "siunčiamiems laiškams."
291
-
292
- #: settings/settings-edit.php:215
293
- msgid "Mail Type"
294
- msgstr "Laiško tipas"
295
-
296
- #: settings/settings-edit.php:216
297
- msgid ""
298
- "Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
299
- "Option 3 & 4 is to send mails with PHP method mail()."
300
- msgstr ""
301
- "1 ir 2 variantai naudoja standartinį Wordpress metodą wp_mail(). 3 ir 4 "
302
- "variantai naudoja PHP metodą mail()."
303
-
304
- #: settings/settings-edit.php:230
305
- msgid "Opt-in Option"
306
- msgstr "Prenumeratos patvirtinimo variantas"
307
-
308
- #: settings/settings-edit.php:231
309
- msgid ""
310
- "Double Opt In means subscribers need to confirm their email address by an "
311
- "activation link sent them on a activation email message.<br />Single Opt In "
312
- "means subscribers do not need to confirm their email address."
313
- msgstr ""
314
- "Dvigubas patvirtinimas reiškia, kad prenumeratoriai turi patvirtinti savo el."
315
- " pašto adresą aktyvuodami nuorodą aktyvacijos laiške.<br />Viengubas "
316
- "patvirtinimas reiškia, kad prenumeratoriai neturi patvirtinti savo el. pašto "
317
- "adreso."
318
-
319
- #: settings/settings-edit.php:255
320
- msgid "Double Opt In Mail Subject (Confirmation Email)"
321
- msgstr "Dvigubo patvirtinimo laiško tema (Patvirtinimo laiškas)"
322
-
323
- #: settings/settings-edit.php:256
324
- msgid ""
325
- "Enter the subject for the confirmation email to be sent Double Opt In "
326
- "whenever a user signs up."
327
- msgstr ""
328
- "Įveskite patvirtinimo laiško temą, kuris bus siunčiamas dvigubam "
329
- "patvirtinimui, kai vartotojas užsiregistruos"
330
-
331
- #: settings/settings-edit.php:262
332
- msgid "Double Opt In Mail Content (Confirmation Email)"
333
- msgstr "Dvigubo patvirtinimo laiško turinys (Patvirtinimo laiškas)"
334
-
335
- #: settings/settings-edit.php:263
336
- msgid ""
337
- "Enter the content for the confirmation email to be sent for Double Opt In "
338
- "whenever a user signs up. (Keyword: ###NAME###)"
339
- msgstr ""
340
- "Įveskite patvirtinimo laiško turinį, kuris bus siunčiamas dvigubam "
341
- "patvirtinimui, kai vartotojas prisiregistruos. (Raktažodis: ###NAME###)"
342
-
343
- #: settings/settings-edit.php:269
344
- msgid "Double Opt In Confirmation Link"
345
- msgstr "Dvigubo patvirtinimo nuoroda"
346
-
347
- #: settings/settings-edit.php:276
348
- msgid ""
349
- "Text to display after Email is successfully subscribed from Double Opt In "
350
- "(confirmation) Email"
351
- msgstr "Rodomas tekstas po sėkmingo el. pašto patvirtinimo."
352
-
353
- #: settings/settings-edit.php:277
354
- msgid ""
355
- "This text will be displayed once user clicks on email confirmation link from "
356
- "the Double Opt In (confirmation) Email."
357
- msgstr ""
358
- "Šis tekstas bus rodomas, kai vartotojas paspaus ant dvigubo patvirtinimo "
359
- "laiške esančios nuorodos."
360
-
361
- #: settings/settings-edit.php:297
362
- msgid ""
363
- "Enter the subject for the subscriber welcome email. This will be sent "
364
- "whenever a user's email is either confirmed (if Double Opt In) / subscribed "
365
- "(if Single Op In) successfully."
366
- msgstr ""
367
- "Įveskite prenumeratoriaus pasveikinimo laiško temą. Jis bus siunčiamas, kai "
368
- "vartotojo el. paštas patvirtinimas (jei pasirinktas dvigubas patvirtinimas) "
369
- "arba vartotojas sėkmingai užsiregistravo (jei pasirinktas viengubas "
370
- "patvirtinimas)."
371
-
372
- #: settings/settings-edit.php:304
373
- msgid ""
374
- "Enter the content for the subscriber welcome email whenever a user's email "
375
- "is either confirmed (if Double Opt In) / subscribed (if Single Opt In) "
376
- "successfully. (Keyword: ###NAME###)"
377
- msgstr ""
378
- "Įveskite prenumeratoriaus pasveikinimo laiško, kuris bus siunčiamas po "
379
- "vartotojo el. pašto adreso patvirtinimo (dvigubo patvirtinimo atveju) arba "
380
- "sėkmingos prenumeratos (viengubo patvirtinimo atveju), turinys. (Raktažodis: "
381
- "###NAME###)"
382
-
383
- #: settings/settings-edit.php:335
384
- msgid ""
385
- "Default message to display if there is any issue while clicking on "
386
- "confirmation link from the Double Opt In (confirmation) Emails."
387
- msgstr ""
388
- "Numatytoji žinutė, kuri rodoma, jei kyla kokių nors problemų paspaudus ant "
389
- "patvirtinimo nuorodos dvigubo patvirtinimo laiške."
390
-
391
- #: classes/es-common.php:20
392
- msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
393
- msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Peržiūrėta</span>"
394
-
395
- #: classes/es-register.php:148 classes/es-register.php:149
396
- #: notification/notification-show.php:51
397
- msgid "Post Notifications"
398
- msgstr "Pranešimai apie įrašus"
399
-
400
- #: classes/es-register.php:151 classes/es-register.php:152
401
- #: sendmail/sendmail.php:92
402
- msgid "Newsletters"
403
- msgstr "Naujienlaiškiai"
404
-
405
- #: classes/es-register.php:154 classes/es-register.php:155 cron/cron-add.php:78
406
- msgid "Cron Settings"
407
- msgstr "Periodinių užduočių (cron) nustatymai"
408
-
409
- #: classes/es-register.php:157 classes/es-register.php:158
410
- #: settings/settings-edit.php:196
411
- msgid "Email Settings"
412
- msgstr "El. pašto nustatymai"
413
-
414
- #: classes/es-register.php:160 classes/es-register.php:161
415
- #: roles/roles-add.php:109
416
- msgid "User Roles"
417
- msgstr "Vartotojo vaidmenys"
418
-
419
- #: classes/es-register.php:163 classes/es-register.php:164
420
- #: sentmail/sentmail-show.php:95
421
- msgid "Reports"
422
- msgstr "Ataskaitos"
423
-
424
- #: classes/es-register.php:183
425
- msgctxt "view-subscriber-enhanced-select"
426
- msgid "Are you sure you want to delete selected records?"
427
- msgstr "Ar tikrai norite trinti pasirinktus įrašus?"
428
-
429
- #: classes/es-register.php:186
430
- msgctxt "view-subscriber-enhanced-select"
431
- msgid "Please select new status for subscribers"
432
- msgstr "Prašome pasirinkti naują prenumeratorių statusą"
433
-
434
- #: classes/es-register.php:188
435
- msgctxt "view-subscriber-enhanced-select"
436
- msgid "Do you want to update subscribers status?"
437
- msgstr "Ar norite atnaujinti prenumeratorių statusą?"
438
-
439
- #: compose/compose-add.php:73
440
- msgid "Add new Email"
441
- msgstr "Pridėti naują el. paštą"
442
-
443
- #: compose/compose-add.php:79 compose/compose-edit.php:90
444
- msgid "Static Template (For Newsletter Emails)"
445
- msgstr "Statinis šablonas (naujienlaiškiams)"
446
-
447
- #: compose/compose-add.php:80 compose/compose-edit.php:91
448
- msgid "Dynamic Template (For Post Notification Emails)"
449
- msgstr "Dinaminis šablonas (pranešimų apie įrašus laiškams)"
450
-
451
- #: compose/compose-edit.php:83
452
- msgid "Edit Email"
453
- msgstr "Redaguoti el. paštą"
454
-
455
- #: cron/cron-add.php:33
456
- msgid "Successfully updated."
457
- msgstr "Sėkmingai atnaujinta."
458
-
459
- #: cron/cron-add.php:87
460
- msgid ""
461
- "This is your Cron Job URL. It is a readonly field and you are advised not to "
462
- "modify it."
463
- msgstr ""
464
- "Tai jūsų periodinės užduoties (cron) adresas. Laukas tik skaitymui ir "
465
- "patartina jo nekeisti."
466
-
467
- #: cron/cron-add.php:97
468
- msgid "Number of mails you want to trigger per hour."
469
- msgstr "Siunčiamų laiškų skaičius per valandą."
470
-
471
- #: cron/cron-add.php:102
472
- msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
473
- msgstr ""
474
- "(Jūsų serveris turi limitą. Saugumo dėlei, mes siūlome 50 laiškų per valandą "
475
- "limitą)"
476
-
477
- #: cron/cron-add.php:108
478
- msgid ""
479
- "Email to admin whenever cron URL is triggered from your server. (Keywords: "
480
- "###DATE###, ###SUBJECT###, ###COUNT###)"
481
- msgstr ""
482
- "Siųsti laišką administratoriui, kai periodinės užduoties (cron) adresas yra "
483
- "aktyvuojamas serveryje. (Raktažodžiai: ###DATE###, ###SUBJECT###, "
484
- "###COUNT###)"
485
-
486
- #: cron/cron-add.php:125
487
- msgid "What is Cron (auto emails) and how to setup Cron Job?"
488
- msgstr ""
489
- "Kas yra periodinės užduotys (cron)(automatiniai laiškai) ir kaip jas "
490
- "nustatyti?"
491
-
492
- #: cron/cron-add.php:126
493
- msgid ""
494
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
495
- "schedule-cron-emails/\">What is Cron?</a>"
496
- msgstr ""
497
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
498
- "schedule-cron-emails/\">Kas yra periodinės užduotys (cron)?</a>"
499
-
500
- #: cron/cron-add.php:129
501
- msgid ""
502
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-"
503
- "do-if-hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?"
504
- "</a>"
505
- msgstr ""
506
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-"
507
- "do-if-hosting-doesnt-support-cron-jobs/\">Serveris nepalaiko periodinių "
508
- "užduočių (cron job)?</a>"
509
-
510
- #: roles/roles-add.php:144
511
- msgid "Post Notifications Menu"
512
- msgstr "Pranešimų apie įrašus meniu"
513
-
514
- #: roles/roles-add.php:156
515
- msgid "Newsletters + Cron Settings Menu"
516
- msgstr "Naujienlaiškiai ir periodinių užduočių (cron) nustatymų meniu"
517
-
518
- #: sentmail/sentmail-show.php:99
519
- msgid ""
520
- "It will show reports for all Newsletters & Post Notification emails sent."
521
- msgstr ""
522
- "Jis parodys visų el. paštu siųstų naujienlaiškių ir pranešimų apie įrašus "
523
- "ataskaitas."
524
 
525
  #: classes/es-common.php:8
526
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
@@ -538,13 +41,17 @@ msgstr "<span style=\"color:#999900\">Nutraukė prenumeratą</span>"
538
  msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
539
  msgstr "<span style=\"color:#0000FF\">Viengubas patvirtinimas</span>"
540
 
 
 
 
 
541
  #: classes/es-common.php:23
542
  msgid "<span style=\"color:#999900;\">Nodata</span>"
543
  msgstr "<span style=\"color:#999900;\">Nėra duomenų</span>"
544
 
545
  #: classes/es-common.php:26
546
- msgid "<span style=\"color:#FF0000\">Disable</span>"
547
- msgstr "<span style=\"color:#FF0000\">Išjungti</span>"
548
 
549
  #: classes/es-common.php:29
550
  msgid "<span style=\"color:#FF0000\">In Queue</span>"
@@ -555,26 +62,26 @@ msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
555
  msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Išsiųsta</span>"
556
 
557
  #: classes/es-common.php:35
558
- msgid "<span style=\"color:#ffd700;font-weight:bold;\">Cron Mail</span>"
559
  msgstr ""
560
- "<span style=\"color:#ffd700;font-weight:bold;\">Periodinių užduočių (cron) "
561
- "laiškas</span>"
562
 
563
  #: classes/es-common.php:38
564
- msgid "<span style=\"color:#993399;\">Instant Mail</span>"
565
- msgstr "<span style=\"color:#993399;\">Momentinis laiškas</span>"
566
 
567
- #: classes/es-loadwidget.php:24 classes/es-register.php:499
568
- #: subscribers/view-subscriber-show.php:353
569
  #: subscribers/view-subscriber-show.php:367
570
  msgid "Name"
571
  msgstr "Vardas"
572
 
573
- #: classes/es-loadwidget.php:29 classes/es-register.php:504
574
  msgid "Email *"
575
  msgstr "El. paštas *"
576
 
577
- #: classes/es-loadwidget.php:34 classes/es-register.php:509
578
  msgid "Subscribe"
579
  msgstr "Prenumeruoti"
580
 
@@ -583,24 +90,53 @@ msgstr "Prenumeruoti"
583
  msgid "Email Subscribers"
584
  msgstr "Email Subscribers"
585
 
586
- #: classes/es-register.php:142 classes/es-register.php:143
587
  #: subscribers/view-subscriber-show.php:240
588
  msgid "Subscribers"
589
  msgstr "Prenumeratoriai"
590
 
591
- #: classes/es-register.php:145 classes/es-register.php:146
592
  #: compose/compose-show.php:63
593
  msgid "Compose"
594
  msgstr "Kurti naują"
595
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
596
  #: classes/es-register.php:166
597
  msgid "Help & Info"
598
  msgstr "Pagalba ir informacija"
599
 
600
  #: classes/es-register.php:167
601
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
602
- msgstr ""
603
- "<span style=\"color:#f18500;font-weight:bolder;\">Pagalba ir informacija"
604
 
605
  #: classes/es-register.php:178
606
  msgctxt "view-subscriber-enhanced-select"
@@ -627,6 +163,11 @@ msgctxt "view-subscriber-enhanced-select"
627
  msgid "Please select the bulk action."
628
  msgstr "Prašome pasirinkti masinį veiksmą."
629
 
 
 
 
 
 
630
  #: classes/es-register.php:184
631
  msgctxt "view-subscriber-enhanced-select"
632
  msgid ""
@@ -634,19 +175,28 @@ msgid ""
634
  "update subscriber current status to 'Unconfirmed'."
635
  msgstr ""
636
  "Ar norite pakartotinai išsiųsti patvirtinimo laišką? \\nAtkreipkite dėmesį, "
637
- "kad bus prenumeratoriaus dabartinis statusas bus pakeistas į "
638
- "\"Nepatvirtinta\"."
639
 
640
  #: classes/es-register.php:185
641
  msgctxt "view-subscriber-enhanced-select"
642
  msgid "Please select new subscriber group."
643
  msgstr "Prašome pasirinkti naują prenumeratorių grupę."
644
 
 
 
 
 
 
645
  #: classes/es-register.php:187
646
  msgctxt "view-subscriber-enhanced-select"
647
  msgid "Do you want to update subscribers group?"
648
  msgstr "Ar norite atnaujinti prenumeratorių grupę?"
649
 
 
 
 
 
 
650
  #: classes/es-register.php:189
651
  msgctxt "view-subscriber-enhanced-select"
652
  msgid "Do you want to export the emails?"
@@ -683,8 +233,7 @@ msgstr "Prašome pasirinkti prenumeratorių grupę."
683
 
684
  #: classes/es-register.php:209
685
  msgctxt "notification-enhanced-select"
686
- msgid ""
687
- "Please select notification mail subject. Use compose menu to create new."
688
  msgstr ""
689
  "Prašome pasirinkti pranešimo laiško temą. Norėdami sukurti naują, naudokite "
690
  "meniu \"Sukurti\"."
@@ -731,8 +280,7 @@ msgstr "Ar norite ištrinti visus, išskyrus 10 naujausių, įrašus?"
731
  #: classes/es-register.php:238
732
  msgctxt "cron-enhanced-select"
733
  msgid "Please select enter number of mails you want to send per hour/trigger."
734
- msgstr ""
735
- "Prašome pasirinkti laiškų kiekį, kurį norite siųsti per valandą/veiksmą."
736
 
737
  #: classes/es-register.php:239
738
  msgctxt "cron-enhanced-select"
@@ -861,7 +409,7 @@ msgctxt "widget-page-enhanced-select"
861
  msgid "There was a problem with the request."
862
  msgstr "Iškilo problema dėl užklausos."
863
 
864
- #: classes/es-register.php:408
865
  msgid ""
866
  "Email Subscribers recommends free plugin <b>Rainmaker</b> to collect leads "
867
  "instantly"
@@ -869,31 +417,31 @@ msgstr ""
869
  "Email Subscribers rekomenduoja nemokamą įskiepį <b>Rainmaker</b> iš karto "
870
  "rinkti potencialius klientus."
871
 
872
- #: classes/es-register.php:409
873
  msgid "Yes, I want this"
874
  msgstr "Taip, aš to noriu"
875
 
876
- #: classes/es-register.php:409
877
  msgid "No, I don't want it"
878
  msgstr "Ne, aš to nenoriu"
879
 
880
- #: classes/es-register.php:544
881
  msgid "Widget Title"
882
  msgstr "Valdiklio pavadinimas"
883
 
884
- #: classes/es-register.php:548
885
  msgid "Display Name Field"
886
  msgstr "Rodyti vardo lauką"
887
 
888
- #: classes/es-register.php:555
889
  msgid "Short Description"
890
  msgstr "Trumpas aprašymas"
891
 
892
- #: classes/es-register.php:557
893
  msgid "Short description about your subscription form."
894
  msgstr "Trumpas jūsų prenumeratos formos aprašymas."
895
 
896
- #: classes/es-register.php:560
897
  msgid "Subscriber Group"
898
  msgstr "Prenumeratoriaus grupė"
899
 
@@ -905,28 +453,40 @@ msgstr "Prašome įvesti šablono antraštę."
905
  msgid "Template successfully created. "
906
  msgstr "Šablonas sėkmingai sukurtas."
907
 
908
- #: compose/compose-add.php:74 compose/compose-edit.php:85
909
- #: compose/compose-preview.php:27 compose/compose-show.php:65
910
- #: cron/cron-add.php:79 notification/notification-add.php:112
911
- #: notification/notification-edit.php:123
912
- #: notification/notification-show.php:53 roles/roles-add.php:110
913
- #: sendmail/sendmail.php:93 sentmail/deliverreport-show.php:60
914
- #: sentmail/sentmail-preview.php:27 sentmail/sentmail-show.php:96
915
- #: settings/settings-edit.php:197 subscribers/view-subscriber-add.php:113
916
- #: subscribers/view-subscriber-edit.php:112
917
- #: subscribers/view-subscriber-export.php:29
918
- #: subscribers/view-subscriber-import.php:145
919
- #: subscribers/view-subscriber-show.php:245
 
 
 
 
920
  #: subscribers/view-subscriber-sync.php:91
921
  msgid "Help"
922
  msgstr "Pagalba"
923
 
924
  #: compose/compose-add.php:77 compose/compose-edit.php:88
925
- msgid "Select your Mail Type"
926
- msgstr "Pasirinkite laiško tipą"
 
 
 
 
 
 
 
 
927
 
928
  #: compose/compose-add.php:84 compose/compose-edit.php:95
929
- msgid "Enter Mail Subject"
930
  msgstr "Įveskite laiško temą"
931
 
932
  #: compose/compose-add.php:86 compose/compose-edit.php:97
@@ -934,7 +494,7 @@ msgid "Keyword: ###POSTTITLE###"
934
  msgstr "Raktažodis: ###POSTTITLE###"
935
 
936
  #: compose/compose-add.php:88 compose/compose-edit.php:99
937
- msgid "Enter Content for your Mail"
938
  msgstr "Įveskite laiško turinį"
939
 
940
  #: compose/compose-add.php:92 compose/compose-edit.php:103
@@ -952,11 +512,10 @@ msgstr ""
952
  msgid "Available Keywords"
953
  msgstr "Galimi raktažodžiai"
954
 
955
- #: compose/compose-add.php:96 compose/compose-edit.php:107
956
- #: compose/compose-show.php:77 compose/compose-show.php:85
957
- #: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:85
958
- #: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
959
- #: subscribers/view-subscriber-show.php:354
960
  #: subscribers/view-subscriber-show.php:368
961
  msgid "Status"
962
  msgstr "Statusas"
@@ -969,17 +528,17 @@ msgstr "Paskelbta"
969
  msgid "Please select your mail status"
970
  msgstr "Prašome pasirinkti laiško statusą."
971
 
972
- #: compose/compose-add.php:104 compose/compose-edit.php:116
973
- #: cron/cron-add.php:119 notification/notification-add.php:251
974
- #: notification/notification-edit.php:291 roles/roles-add.php:206
975
  #: subscribers/view-subscriber-edit.php:190
976
  msgid "Save"
977
  msgstr "Saugoti"
978
 
979
- #: compose/compose-edit.php:19 compose/compose-preview.php:17
980
- #: compose/compose-show.php:32 notification/notification-edit.php:19
981
- #: notification/notification-show.php:20 sentmail/sentmail-preview.php:17
982
- #: sentmail/sentmail-show.php:21 settings/settings-edit.php:19
983
  #: subscribers/view-subscriber-edit.php:21
984
  msgid "Oops, selected details does not exists."
985
  msgstr "Oi, pažymėti duomenys neegzistuoja."
@@ -988,8 +547,13 @@ msgstr "Oi, pažymėti duomenys neegzistuoja."
988
  msgid "Template successfully updated. "
989
  msgstr "Šablonas sėkmingai atnaujintas."
990
 
991
- #: compose/compose-edit.php:84 compose/compose-show.php:64
992
- #: notification/notification-edit.php:122 notification/notification-show.php:52
 
 
 
 
 
993
  msgid "Add New"
994
  msgstr "Pridėti naują"
995
 
@@ -997,49 +561,48 @@ msgstr "Pridėti naują"
997
  msgid "Preview Mail"
998
  msgstr "Peržiūrėti laišką"
999
 
1000
- #: compose/compose-preview.php:39 compose/compose-show.php:103
1001
- #: notification/notification-show.php:96
1002
  #: subscribers/view-subscriber-show.php:398
1003
  msgid "Edit"
1004
  msgstr "Redaguoti"
1005
 
1006
- #: compose/compose-show.php:13 sendmail/sendmail.php:17
1007
  #: subscribers/view-subscriber-show.php:16
1008
  msgid "Click Here"
1009
  msgstr "Spauskite čia"
1010
 
1011
- #: compose/compose-show.php:46 notification/notification-show.php:34
1012
  #: sentmail/sentmail-show.php:35
1013
  msgid "Selected record deleted."
1014
  msgstr "Pasirinktas įrašas ištrintas."
1015
 
1016
- #: compose/compose-show.php:76 compose/compose-show.php:84
1017
- msgid "Email subject"
 
1018
  msgstr "Laiško tema"
1019
 
1020
- #: compose/compose-show.php:78 compose/compose-show.php:86
1021
- #: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:86
1022
- #: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
1023
- msgid "Type"
1024
- msgstr "Tipas"
1025
 
1026
- #: compose/compose-show.php:79 compose/compose-show.php:87
1027
  msgid "Actions"
1028
  msgstr "Veiksmai"
1029
 
1030
- #: compose/compose-show.php:104 notification/notification-show.php:99
1031
- #: subscribers/view-subscriber-show.php:277
1032
  #: subscribers/view-subscriber-show.php:403
1033
  msgid "Delete"
1034
  msgstr "Trinti"
1035
 
1036
- #: compose/compose-show.php:105 sentmail/sentmail-show.php:110
1037
  #: sentmail/sentmail-show.php:123
1038
  msgid "Preview"
1039
  msgstr "Peržiūra"
1040
 
1041
- #: compose/compose-show.php:113 notification/notification-show.php:139
1042
- #: sentmail/deliverreport-show.php:113 sentmail/sentmail-show.php:166
1043
  #: subscribers/view-subscriber-show.php:426
1044
  msgid "No records available."
1045
  msgstr "Nėra įrašų."
@@ -1048,18 +611,63 @@ msgstr "Nėra įrašų."
1048
  msgid "Please enter valid mail count."
1049
  msgstr "Prašome įvesti teisingą laiškų kiekį."
1050
 
 
 
 
 
1051
  #: cron/cron-add.php:86
1052
  msgid "Cron job URL"
1053
  msgstr "Periodinių užduočių (cron) adresas"
1054
 
 
 
 
 
 
 
 
 
1055
  #: cron/cron-add.php:96
1056
  msgid "Mail Count"
1057
  msgstr "Laiškų skaičius"
1058
 
 
 
 
 
 
 
 
 
 
 
1059
  #: cron/cron-add.php:107
1060
  msgid "Admin Report"
1061
  msgstr "Administratoriaus ataskaita"
1062
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1063
  #: cron/cron-add.php:127
1064
  msgid ""
1065
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
@@ -1078,6 +686,15 @@ msgstr ""
1078
  "schedule-cron-emails-in-cpanel/\">Periodinių užduočių (cron job) nustatymas "
1079
  "cPanel</a>"
1080
 
 
 
 
 
 
 
 
 
 
1081
  #: export/export-email-address.php:33 export/export-email-address.php:37
1082
  msgid "Unexpected url submit has been detected"
1083
  msgstr "Buvo aptiktas nenumatytas nuorodos pateikimas"
@@ -1087,8 +704,7 @@ msgid "Welcome to Email Subscribers!"
1087
  msgstr "Sveiki prisijungę prie El. pašto prenumeratorių!"
1088
 
1089
  #: help/help.php:47
1090
- msgid ""
1091
- "Thanks for installing and we hope you will enjoy using Email Subscribers."
1092
  msgstr ""
1093
  "Ačiū, kad įdiegėte ir tikimės, kad jums patiks naudoti El. pašto "
1094
  "prenumeratorius."
@@ -1097,14 +713,23 @@ msgstr ""
1097
  msgid "For more help and tips..."
1098
  msgstr "Norėdami gauti daugiau pagalbos ir patarimų..."
1099
 
 
 
 
 
 
 
 
 
 
1100
  #: help/help.php:98
1101
  msgid "Frequently Asked Questions"
1102
  msgstr "Dažnai užduodami klausimai"
1103
 
1104
- #: help/help.php:117 help/help.php:126 help/help.php:129 help/help.php:132
1105
- #: help/help.php:135 help/help.php:138 help/help.php:141 help/help.php:144
1106
- #: help/help.php:147 help/help.php:150 help/help.php:153 help/help.php:156
1107
- #: help/help.php:159 help/help.php:162 help/help.php:165 help/help.php:168
1108
  #: help/help.php:171 help/help.php:174 help/help.php:177
1109
  #, c-format
1110
  msgid "%s"
@@ -1118,14 +743,21 @@ msgstr "Kaip pridėti prenumeratos formą svetainėje?"
1118
  msgid "General Plugin Settings"
1119
  msgstr "Bendrieji įskiepio nustatymai"
1120
 
 
 
 
 
 
 
 
 
1121
  #: help/help.php:129
1122
  msgid "How to Import or Export Email Addresses?"
1123
  msgstr "Kaip importuoti ar eksportuoti el. pašto adresus?"
1124
 
1125
  #: help/help.php:132
1126
  msgid "How to change/update/translate any texts from Email Subscribers?"
1127
- msgstr ""
1128
- "Kaip pakeisti/atnaujinti/išversti bet kokį El. pašto prenumeratorių tekstą?"
1129
 
1130
  #: help/help.php:135
1131
  msgid "How to add Unsubscribe link in emails?"
@@ -1135,15 +767,34 @@ msgstr "Kaip pridėti prenumeratos atsisakymo nuorodą laiškuose?"
1135
  msgid "What are Static Templates and Dynamic Templates?"
1136
  msgstr "Kas yra statiniai ir dinaminiai šablonai?"
1137
 
 
 
 
 
 
 
 
 
 
 
 
 
1138
  #: help/help.php:147
1139
  msgid "How to Send a sample new post notification email to testgroup/myself?"
1140
- msgstr ""
1141
- "Kaip siųsti naujo įrašo pranešimo pavyzdį el. paštu testinei grupe ar sau?"
 
 
 
1142
 
1143
  #: help/help.php:153
1144
  msgid "How to Add/Update Existing Subscribers Group?"
1145
  msgstr "Kaip pridėti/atnaujinti esamą prenumeratorių grupę?"
1146
 
 
 
 
 
1147
  #: help/help.php:159
1148
  msgid "How to show subscribe form inside a popup?"
1149
  msgstr "Kaip rodyti prenumeratos formą iššokančiame lange?"
@@ -1174,7 +825,7 @@ msgstr "Ką daryti jei serveris nepalaiko periodinių užduočių (cron job)?"
1174
  msgid "Commonly Asked Questions"
1175
  msgstr "Dažniausiai užduodami klausimai"
1176
 
1177
- #: job/es-optin.php:57 job/es-optin.php:67 job/es-unsubscribe.php:54
1178
  #: job/es-unsubscribe.php:61
1179
  msgid ""
1180
  "Oops.. We are getting some technical error. Please try again or contact "
@@ -1196,8 +847,7 @@ msgid "Please select notification status."
1196
  msgstr "Prašome pasirinkti pranešimo statusą."
1197
 
1198
  #: notification/notification-add.php:44 notification/notification-edit.php:60
1199
- msgid ""
1200
- "Please select notification mail subject. Use compose menu to create new."
1201
  msgstr ""
1202
  "Prašome pasirinkti pranešimo laiško temą. Norėdami sukurti naują, naudokite "
1203
  "meniu \"Sukurti\"."
@@ -1218,66 +868,80 @@ msgstr "Pridėti pranešimą"
1218
  msgid "Select Subscribers Group"
1219
  msgstr "Pasirinkite prenumeratorių grupę"
1220
 
1221
- #: notification/notification-add.php:123 notification/notification-add.php:147
1222
- #: notification/notification-edit.php:134
1223
- #: notification/notification-edit.php:167 sendmail/sendmail.php:109
1224
- #: sendmail/sendmail.php:136 sendmail/sendmail.php:150
1225
- #: subscribers/view-subscriber-add.php:161
1226
- #: subscribers/view-subscriber-edit.php:161
1227
- #: subscribers/view-subscriber-import.php:189
1228
  #: subscribers/view-subscriber-sync.php:118
1229
  msgid "Select"
1230
  msgstr "Pasirinkite"
1231
 
1232
- #: notification/notification-add.php:141 notification/notification-edit.php:161
1233
- msgid "Select Notification Mail Subject"
 
1234
  msgstr "Pasirinkite pranešimo laiško temą"
1235
 
1236
- #: notification/notification-add.php:142 notification/notification-edit.php:162
 
1237
  msgid "(Use compose menu to create new)"
1238
  msgstr "(Norėdami sukurti naują, naudokite meniu Kurti)"
1239
 
1240
- #: notification/notification-add.php:166 notification/notification-edit.php:189
 
1241
  msgid "Select Post Categories"
1242
  msgstr "Pasirinkite įrašo kategorijas"
1243
 
1244
- #: notification/notification-add.php:193 notification/notification-edit.php:224
 
1245
  msgid "Check All"
1246
  msgstr "Žymėti viską"
1247
 
1248
- #: notification/notification-add.php:194 notification/notification-edit.php:225
 
1249
  msgid "Uncheck All"
1250
  msgstr "Nežymėti nieko"
1251
 
1252
- #: notification/notification-add.php:200 notification/notification-edit.php:232
 
1253
  msgid "Select your Custom Post Type"
1254
  msgstr "Pasirinkite pasirinktinio įrašo tipą"
1255
 
1256
- #: notification/notification-add.php:201 notification/notification-edit.php:233
 
1257
  msgid "(Optional)"
1258
  msgstr "(Neprivalomas)"
1259
 
1260
- #: notification/notification-add.php:230 notification/notification-edit.php:267
 
1261
  msgid "No Custom Post Types Available"
1262
  msgstr "Nėra laisvų pasirinktinio įrašo tipų"
1263
 
1264
- #: notification/notification-add.php:237 notification/notification-edit.php:275
1265
- msgid "Select Notification Status"
1266
- msgstr "Pasirinkite pranešimo statusą"
1267
-
1268
- #: notification/notification-add.php:241 notification/notification-edit.php:280
1269
- msgid "Send mail immediately when new post is published"
1270
- msgstr "Siųsti laišką iš karto, kai paskelbiamas naujas įrašas"
1271
-
1272
- #: notification/notification-add.php:242 notification/notification-edit.php:281
1273
- msgid "Add to cron when new post is published and send via cron job"
 
 
 
 
 
1274
  msgstr ""
1275
- "Pridėti ir išsiųsti naudojant periodines (cron) užduotis, kai paskelbiamas "
1276
- "naujas įrašas"
1277
 
1278
- #: notification/notification-add.php:243 notification/notification-edit.php:282
1279
- msgid "Disable notification"
1280
- msgstr "Išjungti pranešimą"
 
1281
 
1282
  #: notification/notification-edit.php:48
1283
  msgid "Please select subscribers group"
@@ -1295,42 +959,37 @@ msgstr "Pranešimas sėkmingai atnaujintas."
1295
  msgid "Edit Notification"
1296
  msgstr "Redaguoti pranešimą"
1297
 
1298
- #: notification/notification-edit.php:130
1299
  #: subscribers/view-subscriber-show.php:279
1300
  msgid "Update Subscribers Group"
1301
  msgstr "Atnaujinti prenumeratorių grupę"
1302
 
1303
- #: notification/notification-show.php:64 notification/notification-show.php:72
1304
- msgid "Mail Subject"
1305
- msgstr "Laiško tema"
 
 
 
 
1306
 
1307
- #: notification/notification-show.php:65 notification/notification-show.php:73
1308
  msgid "Subscribers Group"
1309
  msgstr "Prenumeratorių grupė"
1310
 
1311
- #: notification/notification-show.php:66 notification/notification-show.php:74
1312
- msgid "Categories / Custom Post"
1313
- msgstr "Kategorijos / Pasirinktinis įrašas"
1314
 
1315
- #: notification/notification-show.php:67 notification/notification-show.php:75
1316
  msgid "Notification Status"
1317
  msgstr "Pranešimo statusas"
1318
 
1319
- #: notification/notification-show.php:126
1320
- msgid "Send mail immediately when new post is published."
1321
- msgstr "Siųsti laišką iš karto, kai paskelbiamas naujas įrašas."
1322
-
1323
- #: notification/notification-show.php:128
1324
- msgid "Add to cron and send mail via cron job."
1325
- msgstr "Pridėti ir išsiųsti laišką naudojant periodines (cron) užduotis"
1326
-
1327
  #: roles/roles-add.php:52
1328
  msgid "Role Updated. "
1329
  msgstr "Vaidmuo atnaujintas."
1330
 
1331
  #: roles/roles-add.php:113
1332
- msgid ""
1333
- "Select user roles who can access following menus. Only Admin can change this."
1334
  msgstr ""
1335
  "Pasirinkite vartotojo vaidmenis, kurie gali pasiekti šiuos meniu. Tik "
1336
  "administratorius gali tai pakeisti."
@@ -1339,20 +998,20 @@ msgstr ""
1339
  msgid "Subscribers Menu"
1340
  msgstr "Prenumeratorių meniu"
1341
 
1342
- #: roles/roles-add.php:124 roles/roles-add.php:136 roles/roles-add.php:148
1343
- #: roles/roles-add.php:160 roles/roles-add.php:172 roles/roles-add.php:184
1344
  #: roles/roles-add.php:196
1345
  msgid "Administrator Only"
1346
  msgstr "Tik administratoriui"
1347
 
1348
- #: roles/roles-add.php:125 roles/roles-add.php:137 roles/roles-add.php:149
1349
- #: roles/roles-add.php:161 roles/roles-add.php:173 roles/roles-add.php:185
1350
  #: roles/roles-add.php:197
1351
  msgid "Administrator/Editor"
1352
  msgstr "Administratorius/redaktorius"
1353
 
1354
- #: roles/roles-add.php:126 roles/roles-add.php:138 roles/roles-add.php:150
1355
- #: roles/roles-add.php:162 roles/roles-add.php:174 roles/roles-add.php:186
1356
  #: roles/roles-add.php:198
1357
  msgid "Administrator/Editor/Author/Contributor"
1358
  msgstr "Administratorius/redaktorius/autorius/pagalbininkas"
@@ -1361,6 +1020,22 @@ msgstr "Administratorius/redaktorius/autorius/pagalbininkas"
1361
  msgid "Compose Menu"
1362
  msgstr "Kurti meniu"
1363
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1364
  #: roles/roles-add.php:192
1365
  msgid "Help & Info Menu"
1366
  msgstr "Pagalbos ir informacijos meniu"
@@ -1389,6 +1064,10 @@ msgstr "Norėdami peržiūrėti statistiką, spauskite čia"
1389
  msgid "Oops.. We are getting some error. mail not sending."
1390
  msgstr "Oi.. Iškilo šiek tiek klaidų. Laiškas nesiunčiamas."
1391
 
 
 
 
 
1392
  #: sendmail/sendmail.php:104
1393
  msgid "Select Mail Subject from available list"
1394
  msgstr "Pasirinkite laiško temą iš sąrašo"
@@ -1397,13 +1076,9 @@ msgstr "Pasirinkite laiško temą iš sąrašo"
1397
  msgid "Select Mail Type"
1398
  msgstr "Pasirinkite laiško tipą"
1399
 
1400
- #: sendmail/sendmail.php:137
1401
- msgid "Send mail immediately"
1402
- msgstr "Siųsti laišką iš karto"
1403
-
1404
  #: sendmail/sendmail.php:138
1405
- msgid "Send mail via cron job"
1406
- msgstr "Siųsti laišką naudojant periodinę užduotį (cron job)"
1407
 
1408
  #: sendmail/sendmail.php:145
1409
  msgid "Select Subscribers group to Send Mail"
@@ -1421,8 +1096,8 @@ msgstr "Gavėjai: %s"
1421
  #: sendmail/sendmail.php:182
1422
  msgid ""
1423
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1424
- "that you change above Mail Type to Cron and Send Mail via Cron Job.</strong>"
1425
- "<br>Click on Help for more information."
1426
  msgstr ""
1427
  "<br><br><strong>Jūsų gavėjų skaičius viršija 100.<br>Mes primygtinai siūlome "
1428
  "jums pakeisti pašto siuntimo tipą į periodinių užduočių (cron) ir siųsti "
@@ -1453,34 +1128,35 @@ msgstr "&gt;&gt;"
1453
  msgid "Delivery Report"
1454
  msgstr "Pristatymo ataskaita"
1455
 
1456
- #: sentmail/deliverreport-show.php:70 sentmail/deliverreport-show.php:82
1457
- #: subscribers/view-subscriber-export.php:36
1458
- #: subscribers/view-subscriber-export.php:44
1459
- #: subscribers/view-subscriber-show.php:351
1460
  #: subscribers/view-subscriber-show.php:365
1461
  msgid "Sno"
1462
  msgstr "Nr."
1463
 
1464
- #: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:83
1465
  msgid "Email"
1466
  msgstr "El. paštas"
1467
 
1468
- #: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:84
 
 
 
 
 
1469
  msgid "Sent Date"
1470
  msgstr "Išsiuntimo data"
1471
 
1472
- #: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:87
1473
  msgid "Viewed Status"
1474
  msgstr "Peržiūrėjimo būsena"
1475
 
1476
- #: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:88
1477
  msgid "Viewed Date"
1478
  msgstr "Peržiūrėjimo data"
1479
 
1480
- #: sentmail/deliverreport-show.php:77 sentmail/deliverreport-show.php:89
1481
- msgid "Database ID"
1482
- msgstr "Duomenų bazės ID"
1483
-
1484
  #: sentmail/sentmail-preview.php:41
1485
  msgid "Back"
1486
  msgstr "Atgal"
@@ -1489,133 +1165,396 @@ msgstr "Atgal"
1489
  msgid "Successfully deleted all reports except latest 10."
1490
  msgstr "Sėkmingai ištrintos visos, išskyrus naujausias 10, ataskaitos."
1491
 
 
 
 
 
 
 
1492
  #: sentmail/sentmail-show.php:109 sentmail/sentmail-show.php:122
1493
  msgid "View Reports"
1494
  msgstr "Peržiūrėti ataskaitas"
1495
 
1496
- #: sentmail/sentmail-show.php:111 sentmail/sentmail-show.php:124
1497
- msgid "Source"
1498
- msgstr "Šaltinis"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1499
 
1500
- #: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
1501
- msgid "Start Date"
1502
- msgstr "Pradžios data"
 
 
 
 
 
 
 
1503
 
1504
- #: sentmail/sentmail-show.php:115 sentmail/sentmail-show.php:128
1505
- msgid "End Date"
1506
- msgstr "Pabaigos Data"
1507
 
1508
- #: sentmail/sentmail-show.php:116 sentmail/sentmail-show.php:129
1509
- msgid "Total"
1510
- msgstr "Viso"
 
 
 
 
 
 
 
1511
 
1512
- #: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
1513
- #: subscribers/view-subscriber-export.php:39
1514
- #: subscribers/view-subscriber-export.php:47
1515
- #: subscribers/view-subscriber-show.php:357
1516
- #: subscribers/view-subscriber-show.php:371
1517
- msgid "Action"
1518
- msgstr "Veiksmas"
1519
 
1520
- #: sentmail/sentmail-show.php:176
1521
- msgid "Optimize Table & Delete Records"
1522
- msgstr "Optimizuoti lentelę ir trinti įrašus"
1523
 
1524
- #: sentmail/sentmail-show.php:185
1525
  msgid ""
1526
- "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1527
- "button to delete all reports except latest 10."
1528
  msgstr ""
1529
- "Pastaba: Norėdami ištrinti visus, išskyrus 10 naujausių, ataskaitų, "
1530
- "paspauskite <strong>Optimizuoti lentelę ir trinti įrašus</strong> mygtuką."
1531
-
1532
- #: settings/setting-sync.php:15
1533
- msgid "Table sync completed successfully."
1534
- msgstr "Lentelės sinchronizavimas sėkmingai įvykdytas."
1535
 
1536
- #: settings/setting-sync.php:28
1537
- msgid "Sync plugin tables"
1538
- msgstr "Sinchronizuoti įskiepio lenteles"
1539
 
1540
- #: settings/setting-sync.php:32
1541
- msgid "Click to sync tables"
1542
- msgstr "Spauskite jei norite sinchronizuoti lenteles"
 
 
1543
 
1544
- #: settings/settings-edit.php:116
1545
- msgid "Please enter sender of notifications from name."
1546
- msgstr "Prašome įvesti pranešimų siuntėjo vardą."
1547
 
1548
- #: settings/settings-edit.php:121
1549
- msgid "Please enter sender of notifications from email."
1550
- msgstr "Prašome įvesti pranešimų siuntėjo el. paštą."
 
 
 
 
1551
 
1552
- #: settings/settings-edit.php:154
1553
- msgid "Settings Saved."
1554
- msgstr "Nustatymai išsaugoti."
1555
 
1556
- #: settings/settings-edit.php:157
1557
- msgid "Oops, unable to update."
1558
- msgstr "Oi, negalima atnaujinti."
 
 
 
 
1559
 
1560
- #: settings/settings-edit.php:220
1561
- msgid "1. WP HTML MAIL"
1562
- msgstr "1. WP HTML laiškas"
1563
 
1564
- #: settings/settings-edit.php:221
1565
- msgid "2. WP PLAINTEXT MAIL"
1566
- msgstr "2. WP paprasto teksto laiškas"
 
 
 
 
1567
 
1568
- #: settings/settings-edit.php:222
1569
- msgid "3. PHP HTML MAIL"
1570
- msgstr "3. PHP HTML laiškas"
1571
 
1572
- #: settings/settings-edit.php:223
1573
- msgid "4. PHP PLAINTEXT MAIL"
1574
- msgstr "4. PHP paprasto teksto laiškas"
 
 
 
 
1575
 
1576
- #: settings/settings-edit.php:235
1577
- msgid "Double Opt In"
1578
- msgstr "Dvigubas patvirtinimas"
1579
 
1580
- #: settings/settings-edit.php:236 subscribers/view-subscriber-add.php:150
1581
- #: subscribers/view-subscriber-edit.php:149
1582
- #: subscribers/view-subscriber-import.php:177
1583
- #: subscribers/view-subscriber-show.php:302
1584
- #: subscribers/view-subscriber-show.php:329
1585
- msgid "Single Opt In"
1586
- msgstr "Viengubas patvirtinimas"
1587
 
1588
- #: settings/settings-edit.php:242
1589
- msgid "Image Size"
1590
- msgstr "Paveikslėlio dydis"
1591
 
1592
- #: settings/settings-edit.php:247
1593
- msgid "Full Size"
1594
- msgstr "Visas dydis"
 
 
 
 
 
1595
 
1596
- #: settings/settings-edit.php:248
1597
- msgid "Medium Size"
1598
- msgstr "Vidutinis dydis"
1599
 
1600
- #: settings/settings-edit.php:249
1601
- msgid "Thumbnail"
1602
- msgstr "Miniatiūra"
 
 
1603
 
1604
- #: settings/settings-edit.php:289 settings/settings-edit.php:362
1605
- #: subscribers/view-subscriber-sync.php:106
1606
- msgid "YES"
1607
- msgstr "Taip"
1608
 
1609
- #: settings/settings-edit.php:290 settings/settings-edit.php:363
1610
- #: subscribers/view-subscriber-sync.php:105
1611
- msgid "NO"
1612
- msgstr "Ne"
 
 
 
 
1613
 
1614
  #: settings/settings-edit.php:402
1615
  msgid "Save Settings"
1616
  msgstr "Išsaugoti nustatymus"
1617
 
1618
- #: subscribers/view-subscriber-add.php:35
1619
  #: subscribers/view-subscriber-edit.php:53
1620
  msgid "Please enter subscriber email address."
1621
  msgstr "Prašome įvesti prenumeratoriaus el. pašto adresą."
@@ -1629,8 +1568,8 @@ msgid ""
1629
  "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1630
  "the group name."
1631
  msgstr ""
1632
- "Klaida: Grupės pavadinime negalima naudoti specialių simbolių (['^$%&*()}"
1633
- "{@#~?><>,|=_+\\\"])."
1634
 
1635
  #: subscribers/view-subscriber-add.php:65
1636
  msgid "Subscriber has been saved."
@@ -1644,37 +1583,37 @@ msgstr "Prenumeratorius jau yra."
1644
  msgid "Invalid Email."
1645
  msgstr "Neteisingas el. paštas."
1646
 
1647
- #: subscribers/view-subscriber-add.php:109
1648
- #: subscribers/view-subscriber-edit.php:108
1649
- #: subscribers/view-subscriber-export.php:26
1650
- #: subscribers/view-subscriber-import.php:142
1651
- #: subscribers/view-subscriber-show.php:241
1652
  #: subscribers/view-subscriber-sync.php:88
1653
  msgid "Add New Subscriber"
1654
  msgstr "Pridėti naują prenumeratorių"
1655
 
1656
- #: subscribers/view-subscriber-add.php:110
1657
- #: subscribers/view-subscriber-edit.php:109
1658
- #: subscribers/view-subscriber-export.php:27
1659
- #: subscribers/view-subscriber-import.php:209
1660
- #: subscribers/view-subscriber-show.php:242
1661
  #: subscribers/view-subscriber-sync.php:89
1662
  msgid "Import"
1663
  msgstr "Importuoti"
1664
 
1665
- #: subscribers/view-subscriber-add.php:111
1666
- #: subscribers/view-subscriber-edit.php:110
1667
- #: subscribers/view-subscriber-import.php:143
1668
- #: subscribers/view-subscriber-show.php:243
1669
  #: subscribers/view-subscriber-sync.php:90
1670
  msgid "Export"
1671
  msgstr "Eksportuoti"
1672
 
1673
- #: subscribers/view-subscriber-add.php:112
1674
- #: subscribers/view-subscriber-edit.php:111
1675
- #: subscribers/view-subscriber-export.php:28
1676
- #: subscribers/view-subscriber-import.php:144
1677
- #: subscribers/view-subscriber-show.php:244
1678
  #: subscribers/view-subscriber-sync.php:142
1679
  msgid "Sync"
1680
  msgstr "Sinchronizuoti"
@@ -1691,26 +1630,26 @@ msgstr "Įveskite prenumeratoriaus el. pašto adresą"
1691
  msgid "Select Subscriber's Status"
1692
  msgstr "Pasirinkite prenumeratoriaus statusą"
1693
 
1694
- #: subscribers/view-subscriber-add.php:147
1695
- #: subscribers/view-subscriber-edit.php:146
1696
- #: subscribers/view-subscriber-import.php:174
1697
- #: subscribers/view-subscriber-show.php:299
1698
  #: subscribers/view-subscriber-show.php:326
1699
  msgid "Confirmed"
1700
  msgstr "Patvirtinta"
1701
 
1702
- #: subscribers/view-subscriber-add.php:148
1703
- #: subscribers/view-subscriber-edit.php:147
1704
- #: subscribers/view-subscriber-import.php:175
1705
- #: subscribers/view-subscriber-show.php:300
1706
  #: subscribers/view-subscriber-show.php:327
1707
  msgid "Unconfirmed"
1708
  msgstr "Nepatvirtintas"
1709
 
1710
- #: subscribers/view-subscriber-add.php:149
1711
- #: subscribers/view-subscriber-edit.php:148
1712
- #: subscribers/view-subscriber-import.php:176
1713
- #: subscribers/view-subscriber-show.php:301
1714
  #: subscribers/view-subscriber-show.php:328
1715
  msgid "Unsubscribed"
1716
  msgstr "Nutraukė prenumeratą"
@@ -1719,7 +1658,7 @@ msgstr "Nutraukė prenumeratą"
1719
  msgid "Select (or) Create Group for Subscriber"
1720
  msgstr "Pasirinkite (ar) sukurkite grupę prenumeratoriui"
1721
 
1722
- #: subscribers/view-subscriber-add.php:173
1723
  #: subscribers/view-subscriber-import.php:201
1724
  msgid "(or)"
1725
  msgstr "(arba)"
@@ -1744,6 +1683,14 @@ msgstr "Prenumeratorius jau yra šioje grupėje."
1744
  msgid "Edit Subscriber"
1745
  msgstr "Redaguoti prenumeratorių"
1746
 
 
 
 
 
 
 
 
 
1747
  #: subscribers/view-subscriber-edit.php:141
1748
  msgid "Update Subscriber's Status"
1749
  msgstr "Atnaujinti prenumeratoriaus statusą"
@@ -1756,12 +1703,12 @@ msgstr "Atnaujinti prenumeratoriaus grupę"
1756
  msgid "Export Email Addresses"
1757
  msgstr "Eksportuoti el. pašto adresus"
1758
 
1759
- #: subscribers/view-subscriber-export.php:37
1760
  #: subscribers/view-subscriber-export.php:45
1761
  msgid "Type of List to Export"
1762
  msgstr "Sąrašo eksportuoti tipas"
1763
 
1764
- #: subscribers/view-subscriber-export.php:38
1765
  #: subscribers/view-subscriber-export.php:46
1766
  msgid "Total Emails"
1767
  msgstr "El. pašto adresų iš viso"
@@ -1774,8 +1721,8 @@ msgstr "1"
1774
  msgid "All Subscribers List"
1775
  msgstr "Visų prenumeratorių sąrašas"
1776
 
1777
- #: subscribers/view-subscriber-export.php:55
1778
- #: subscribers/view-subscriber-export.php:61
1779
  #: subscribers/view-subscriber-export.php:67
1780
  msgid "Click to Export in CSV"
1781
  msgstr "Norėdami eksportuoti CSV, spauskite čia"
@@ -1801,8 +1748,8 @@ msgid ""
1801
  "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1802
  "the Group name."
1803
  msgstr ""
1804
- "Klaida: Grupės pavadinime negalima naudoti specialių simbolių (['^$%&*()}"
1805
- "{@#~?><>,|=_+\\\"])."
1806
 
1807
  #: subscribers/view-subscriber-import.php:91
1808
  msgid "email imported."
@@ -1816,12 +1763,12 @@ msgstr "el. paštas jau egzistuoja."
1816
  msgid "email are invalid."
1817
  msgstr "netinkamas el. pašto adresas."
1818
 
1819
- #: subscribers/view-subscriber-import.php:96
1820
  #: subscribers/view-subscriber-import.php:125
1821
  msgid "Click here"
1822
  msgstr "Spauskite čia"
1823
 
1824
- #: subscribers/view-subscriber-import.php:96
1825
  #: subscribers/view-subscriber-import.php:125
1826
  msgid " to view details."
1827
  msgstr "peržiūrėti detales."
@@ -1854,39 +1801,73 @@ msgstr "Pasirinkite prenumeratoriaus el. pašto statusą"
1854
  msgid "Select (or) Create Group for Subscribers"
1855
  msgstr "Pasirinkite (ar) sukurkite grupę prenumeratoriams"
1856
 
1857
- #: subscribers/view-subscriber-show.php:55
 
 
 
 
1858
  #: subscribers/view-subscriber-show.php:94
1859
  msgid "Record deleted."
1860
  msgstr "Įrašas ištrintas."
1861
 
1862
  #: subscribers/view-subscriber-show.php:66
1863
- msgid ""
1864
- "To send confirmation email, please change the Opt-in option to Double Opt In."
1865
  msgstr ""
1866
  "Norėdami siųsti patvirtinimo laišką, prašome pakeisti prenumeratos "
1867
  "patvirtinimo nustatymą į Dvigubas patvirtinimas."
1868
 
 
 
 
 
 
 
 
 
 
 
 
 
1869
  #: subscribers/view-subscriber-show.php:114
1870
- msgid ""
1871
- "To send confirmation mail, please change the Opt-in option to Double Opt In."
1872
  msgstr ""
1873
  "Norėdami išsiųsti patvirtinimo laišką, prašome pakeisti prenumeravimo "
1874
  "variantą į \"Dvigubas patvirtinimas\"."
1875
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1876
  #: subscribers/view-subscriber-show.php:276
1877
  msgid "Bulk Actions"
1878
  msgstr "Masiniai veiksmai"
1879
 
1880
- #: subscribers/view-subscriber-show.php:278
1881
  #: subscribers/view-subscriber-show.php:411
1882
  msgid "Resend Confirmation"
1883
  msgstr "Persiųsti patvirtinimą dar kartą"
1884
 
 
 
 
 
1885
  #: subscribers/view-subscriber-show.php:283
1886
  msgid "Select Group"
1887
  msgstr "Pasirinkti grupę"
1888
 
1889
- #: subscribers/view-subscriber-show.php:298
1890
  #: subscribers/view-subscriber-show.php:325
1891
  msgid "All Status"
1892
  msgstr "Visos būsenos"
@@ -1935,16 +1916,21 @@ msgstr "Nuo 5001 iki 10000"
1935
  msgid "Display All"
1936
  msgstr "Rodyti visus"
1937
 
1938
- #: subscribers/view-subscriber-show.php:352
1939
  #: subscribers/view-subscriber-show.php:366
1940
  msgid "Email Address"
1941
  msgstr "El. pašto adresas"
1942
 
1943
- #: subscribers/view-subscriber-show.php:355
1944
  #: subscribers/view-subscriber-show.php:369
1945
  msgid "Group"
1946
  msgstr "Grupė"
1947
 
 
 
 
 
 
1948
  #: subscribers/view-subscriber-sync.php:35
1949
  msgid "Please select default group to newly registered user."
1950
  msgstr "Prašome pasirinkti numatytąją grupę naujai registruotiems vartotojams."
@@ -1969,14 +1955,21 @@ msgstr "Pasirinkite grupę, į kurią įtraukti naujai registruotus vartotojus"
1969
  msgid "Email Subscribers & Newsletters"
1970
  msgstr "Email Subscribers & Newsletters"
1971
 
1972
- #. Description of the plugin
 
 
 
 
 
 
 
1973
  msgid ""
1974
  "Add subscription forms on website, send HTML newsletters & automatically "
1975
- "notify subscribers about new blog posts once it gets published."
1976
  msgstr ""
1977
- "Pridėti prenumeratos formas interneto svetainėje, siųsti HTML "
1978
- "naujienlaiškius ir automatiškai pranešti prenumeratoriams apie naujus "
1979
- "dienoraščio įrašus, kai jie paskelbiami."
1980
 
1981
  #. Author of the plugin
1982
  msgid "Icegram"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.2.7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-03-02 12:49:44+00:00\n"
6
+ "PO-Revision-Date: Thu Mar 16 2017 18:02:23 GMT+0530 (IST)\n"
7
+ "Last-Translator: Andrius <kubandrius@gmail.com>\n"
8
+ "Language-Team: Icegram <hello@icegram.com>\n"
9
+ "Language: Lithuanian\n"
10
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 "
11
  "&&(n%100<10||n%100 >= 20)? 1 : 2)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Loco-Source-Locale: lt_LT\n"
17
+ "X-Poedit-Basepath: .\n"
18
+ "X-Poedit-SearchPath-0: ..\n"
19
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
20
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
21
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
22
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
23
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
24
+ "X-Generator: Loco - https://localise.biz/\n"
25
+ "X-Loco-Target-Locale: lt_LT\n"
26
+ "X-Loco-Parser: loco_parse_po"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
 
28
  #: classes/es-common.php:8
29
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
41
  msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
42
  msgstr "<span style=\"color:#0000FF\">Viengubas patvirtinimas</span>"
43
 
44
+ #: classes/es-common.php:20
45
+ msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
46
+ msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Peržiūrėta</span>"
47
+
48
  #: classes/es-common.php:23
49
  msgid "<span style=\"color:#999900;\">Nodata</span>"
50
  msgstr "<span style=\"color:#999900;\">Nėra duomenų</span>"
51
 
52
  #: classes/es-common.php:26
53
+ msgid "<span style=\"color:#FF0000\">Disabled</span>"
54
+ msgstr "<span style=\"color:#FF0000\">Išjungta</span>"
55
 
56
  #: classes/es-common.php:29
57
  msgid "<span style=\"color:#FF0000\">In Queue</span>"
62
  msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Išsiųsta</span>"
63
 
64
  #: classes/es-common.php:35
65
+ msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
66
  msgstr ""
67
+ "<span style=\"color:#20b2aa;font-weight:bold;\">naudojant periodines užduotis "
68
+ "(cron)</span>"
69
 
70
  #: classes/es-common.php:38
71
+ msgid "<span style=\"color:#993399;\">Immediately</span>"
72
+ msgstr "<span style=\"color:#993399;\">Nedelsiant</span>"
73
 
74
+ #: classes/es-loadwidget.php:24 classes/es-register.php:547
75
+ #: subscribers/view-subscriber-show.php:353
76
  #: subscribers/view-subscriber-show.php:367
77
  msgid "Name"
78
  msgstr "Vardas"
79
 
80
+ #: classes/es-loadwidget.php:29 classes/es-register.php:552
81
  msgid "Email *"
82
  msgstr "El. paštas *"
83
 
84
+ #: classes/es-loadwidget.php:34 classes/es-register.php:557
85
  msgid "Subscribe"
86
  msgstr "Prenumeruoti"
87
 
90
  msgid "Email Subscribers"
91
  msgstr "Email Subscribers"
92
 
93
+ #: classes/es-register.php:142 classes/es-register.php:143
94
  #: subscribers/view-subscriber-show.php:240
95
  msgid "Subscribers"
96
  msgstr "Prenumeratoriai"
97
 
98
+ #: classes/es-register.php:145 classes/es-register.php:146
99
  #: compose/compose-show.php:63
100
  msgid "Compose"
101
  msgstr "Kurti naują"
102
 
103
+ #: classes/es-register.php:148 classes/es-register.php:149
104
+ #: notification/notification-show.php:51
105
+ msgid "Post Notifications"
106
+ msgstr "Pranešimai apie įrašus"
107
+
108
+ #: classes/es-register.php:151 classes/es-register.php:152
109
+ #: sendmail/sendmail.php:92
110
+ msgid "Newsletters"
111
+ msgstr "Naujienlaiškiai"
112
+
113
+ #: classes/es-register.php:154 classes/es-register.php:155
114
+ #: cron/cron-add.php:78
115
+ msgid "Cron Settings"
116
+ msgstr "Periodinių užduočių (cron) nustatymai"
117
+
118
+ #: classes/es-register.php:157 classes/es-register.php:158
119
+ #: settings/settings-edit.php:196
120
+ msgid "Email Settings"
121
+ msgstr "El. pašto nustatymai"
122
+
123
+ #: classes/es-register.php:160 classes/es-register.php:161
124
+ #: roles/roles-add.php:109
125
+ msgid "User Roles"
126
+ msgstr "Vartotojo vaidmenys"
127
+
128
+ #: classes/es-register.php:163 classes/es-register.php:164
129
+ #: sentmail/sentmail-show.php:95
130
+ msgid "Reports"
131
+ msgstr "Ataskaitos"
132
+
133
  #: classes/es-register.php:166
134
  msgid "Help & Info"
135
  msgstr "Pagalba ir informacija"
136
 
137
  #: classes/es-register.php:167
138
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
139
+ msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Pagalba ir informacija"
 
140
 
141
  #: classes/es-register.php:178
142
  msgctxt "view-subscriber-enhanced-select"
163
  msgid "Please select the bulk action."
164
  msgstr "Prašome pasirinkti masinį veiksmą."
165
 
166
+ #: classes/es-register.php:183
167
+ msgctxt "view-subscriber-enhanced-select"
168
+ msgid "Are you sure you want to delete selected records?"
169
+ msgstr "Ar tikrai norite trinti pasirinktus įrašus?"
170
+
171
  #: classes/es-register.php:184
172
  msgctxt "view-subscriber-enhanced-select"
173
  msgid ""
175
  "update subscriber current status to 'Unconfirmed'."
176
  msgstr ""
177
  "Ar norite pakartotinai išsiųsti patvirtinimo laišką? \\nAtkreipkite dėmesį, "
178
+ "kad bus prenumeratoriaus dabartinis statusas bus pakeistas į \"Nepatvirtinta\"."
 
179
 
180
  #: classes/es-register.php:185
181
  msgctxt "view-subscriber-enhanced-select"
182
  msgid "Please select new subscriber group."
183
  msgstr "Prašome pasirinkti naują prenumeratorių grupę."
184
 
185
+ #: classes/es-register.php:186
186
+ msgctxt "view-subscriber-enhanced-select"
187
+ msgid "Please select new status for subscribers"
188
+ msgstr "Prašome pasirinkti naują prenumeratorių statusą"
189
+
190
  #: classes/es-register.php:187
191
  msgctxt "view-subscriber-enhanced-select"
192
  msgid "Do you want to update subscribers group?"
193
  msgstr "Ar norite atnaujinti prenumeratorių grupę?"
194
 
195
+ #: classes/es-register.php:188
196
+ msgctxt "view-subscriber-enhanced-select"
197
+ msgid "Do you want to update subscribers status?"
198
+ msgstr "Ar norite atnaujinti prenumeratorių statusą?"
199
+
200
  #: classes/es-register.php:189
201
  msgctxt "view-subscriber-enhanced-select"
202
  msgid "Do you want to export the emails?"
233
 
234
  #: classes/es-register.php:209
235
  msgctxt "notification-enhanced-select"
236
+ msgid "Please select notification mail subject. Use compose menu to create new."
 
237
  msgstr ""
238
  "Prašome pasirinkti pranešimo laiško temą. Norėdami sukurti naują, naudokite "
239
  "meniu \"Sukurti\"."
280
  #: classes/es-register.php:238
281
  msgctxt "cron-enhanced-select"
282
  msgid "Please select enter number of mails you want to send per hour/trigger."
283
+ msgstr "Prašome pasirinkti laiškų kiekį, kurį norite siųsti per valandą/veiksmą."
 
284
 
285
  #: classes/es-register.php:239
286
  msgctxt "cron-enhanced-select"
409
  msgid "There was a problem with the request."
410
  msgstr "Iškilo problema dėl užklausos."
411
 
412
+ #: classes/es-register.php:456
413
  msgid ""
414
  "Email Subscribers recommends free plugin <b>Rainmaker</b> to collect leads "
415
  "instantly"
417
  "Email Subscribers rekomenduoja nemokamą įskiepį <b>Rainmaker</b> iš karto "
418
  "rinkti potencialius klientus."
419
 
420
+ #: classes/es-register.php:457
421
  msgid "Yes, I want this"
422
  msgstr "Taip, aš to noriu"
423
 
424
+ #: classes/es-register.php:457
425
  msgid "No, I don't want it"
426
  msgstr "Ne, aš to nenoriu"
427
 
428
+ #: classes/es-register.php:592
429
  msgid "Widget Title"
430
  msgstr "Valdiklio pavadinimas"
431
 
432
+ #: classes/es-register.php:596
433
  msgid "Display Name Field"
434
  msgstr "Rodyti vardo lauką"
435
 
436
+ #: classes/es-register.php:603
437
  msgid "Short Description"
438
  msgstr "Trumpas aprašymas"
439
 
440
+ #: classes/es-register.php:605
441
  msgid "Short description about your subscription form."
442
  msgstr "Trumpas jūsų prenumeratos formos aprašymas."
443
 
444
+ #: classes/es-register.php:608
445
  msgid "Subscriber Group"
446
  msgstr "Prenumeratoriaus grupė"
447
 
453
  msgid "Template successfully created. "
454
  msgstr "Šablonas sėkmingai sukurtas."
455
 
456
+ #: compose/compose-add.php:73
457
+ msgid "Add new Email"
458
+ msgstr "Pridėti naują el. paštą"
459
+
460
+ #: compose/compose-add.php:74 compose/compose-edit.php:85
461
+ #: compose/compose-preview.php:27 compose/compose-show.php:65
462
+ #: cron/cron-add.php:79 notification/notification-add.php:112
463
+ #: notification/notification-edit.php:123
464
+ #: notification/notification-show.php:53 roles/roles-add.php:110
465
+ #: sendmail/sendmail.php:93 sentmail/deliverreport-show.php:60
466
+ #: sentmail/sentmail-preview.php:27 sentmail/sentmail-show.php:96
467
+ #: settings/settings-edit.php:197 subscribers/view-subscriber-add.php:113
468
+ #: subscribers/view-subscriber-edit.php:112
469
+ #: subscribers/view-subscriber-export.php:29
470
+ #: subscribers/view-subscriber-import.php:145
471
+ #: subscribers/view-subscriber-show.php:245
472
  #: subscribers/view-subscriber-sync.php:91
473
  msgid "Help"
474
  msgstr "Pagalba"
475
 
476
  #: compose/compose-add.php:77 compose/compose-edit.php:88
477
+ msgid "Select your Mail Template"
478
+ msgstr "Pasirinkite laiško šabloną"
479
+
480
+ #: compose/compose-add.php:79 compose/compose-edit.php:90
481
+ msgid "Newsletter"
482
+ msgstr "Naujienlaiškis"
483
+
484
+ #: compose/compose-add.php:80 compose/compose-edit.php:91
485
+ msgid "Post Notification"
486
+ msgstr "Pranešimas apie įrašą"
487
 
488
  #: compose/compose-add.php:84 compose/compose-edit.php:95
489
+ msgid "Enter your Email Subject"
490
  msgstr "Įveskite laiško temą"
491
 
492
  #: compose/compose-add.php:86 compose/compose-edit.php:97
494
  msgstr "Raktažodis: ###POSTTITLE###"
495
 
496
  #: compose/compose-add.php:88 compose/compose-edit.php:99
497
+ msgid "Enter Content for your Email"
498
  msgstr "Įveskite laiško turinį"
499
 
500
  #: compose/compose-add.php:92 compose/compose-edit.php:103
512
  msgid "Available Keywords"
513
  msgstr "Galimi raktažodžiai"
514
 
515
+ #: compose/compose-add.php:96 compose/compose-edit.php:107
516
+ #: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:83
517
+ #: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
518
+ #: subscribers/view-subscriber-show.php:354
 
519
  #: subscribers/view-subscriber-show.php:368
520
  msgid "Status"
521
  msgstr "Statusas"
528
  msgid "Please select your mail status"
529
  msgstr "Prašome pasirinkti laiško statusą."
530
 
531
+ #: compose/compose-add.php:104 compose/compose-edit.php:116
532
+ #: cron/cron-add.php:119 notification/notification-add.php:252
533
+ #: notification/notification-edit.php:289 roles/roles-add.php:206
534
  #: subscribers/view-subscriber-edit.php:190
535
  msgid "Save"
536
  msgstr "Saugoti"
537
 
538
+ #: compose/compose-edit.php:19 compose/compose-preview.php:17
539
+ #: compose/compose-show.php:32 notification/notification-edit.php:19
540
+ #: notification/notification-show.php:20 sentmail/sentmail-preview.php:17
541
+ #: sentmail/sentmail-show.php:21 settings/settings-edit.php:19
542
  #: subscribers/view-subscriber-edit.php:21
543
  msgid "Oops, selected details does not exists."
544
  msgstr "Oi, pažymėti duomenys neegzistuoja."
547
  msgid "Template successfully updated. "
548
  msgstr "Šablonas sėkmingai atnaujintas."
549
 
550
+ #: compose/compose-edit.php:83
551
+ msgid "Edit Email"
552
+ msgstr "Redaguoti el. paštą"
553
+
554
+ #: compose/compose-edit.php:84 compose/compose-show.php:64
555
+ #: notification/notification-edit.php:122
556
+ #: notification/notification-show.php:52
557
  msgid "Add New"
558
  msgstr "Pridėti naują"
559
 
561
  msgid "Preview Mail"
562
  msgstr "Peržiūrėti laišką"
563
 
564
+ #: compose/compose-preview.php:39 compose/compose-show.php:100
565
+ #: notification/notification-show.php:99
566
  #: subscribers/view-subscriber-show.php:398
567
  msgid "Edit"
568
  msgstr "Redaguoti"
569
 
570
+ #: compose/compose-show.php:13 sendmail/sendmail.php:17
571
  #: subscribers/view-subscriber-show.php:16
572
  msgid "Click Here"
573
  msgstr "Spauskite čia"
574
 
575
+ #: compose/compose-show.php:46 notification/notification-show.php:34
576
  #: sentmail/sentmail-show.php:35
577
  msgid "Selected record deleted."
578
  msgstr "Pasirinktas įrašas ištrintas."
579
 
580
+ #: compose/compose-show.php:76 compose/compose-show.php:83
581
+ #: notification/notification-show.php:67 notification/notification-show.php:75
582
+ msgid "Email Subject"
583
  msgstr "Laiško tema"
584
 
585
+ #: compose/compose-show.php:77 compose/compose-show.php:84
586
+ msgid "Email Template"
587
+ msgstr "Laiško šablonas"
 
 
588
 
589
+ #: compose/compose-show.php:78 compose/compose-show.php:85
590
  msgid "Actions"
591
  msgstr "Veiksmai"
592
 
593
+ #: compose/compose-show.php:101 notification/notification-show.php:102
594
+ #: subscribers/view-subscriber-show.php:277
595
  #: subscribers/view-subscriber-show.php:403
596
  msgid "Delete"
597
  msgstr "Trinti"
598
 
599
+ #: compose/compose-show.php:102 sentmail/sentmail-show.php:110
600
  #: sentmail/sentmail-show.php:123
601
  msgid "Preview"
602
  msgstr "Peržiūra"
603
 
604
+ #: compose/compose-show.php:110 notification/notification-show.php:142
605
+ #: sentmail/deliverreport-show.php:110 sentmail/sentmail-show.php:166
606
  #: subscribers/view-subscriber-show.php:426
607
  msgid "No records available."
608
  msgstr "Nėra įrašų."
611
  msgid "Please enter valid mail count."
612
  msgstr "Prašome įvesti teisingą laiškų kiekį."
613
 
614
+ #: cron/cron-add.php:33
615
+ msgid "Successfully updated."
616
+ msgstr "Sėkmingai atnaujinta."
617
+
618
  #: cron/cron-add.php:86
619
  msgid "Cron job URL"
620
  msgstr "Periodinių užduočių (cron) adresas"
621
 
622
+ #: cron/cron-add.php:87
623
+ msgid ""
624
+ "This is your Cron Job URL. It is a readonly field and you are advised not to "
625
+ "modify it."
626
+ msgstr ""
627
+ "Tai jūsų periodinės užduoties (cron) adresas. Laukas tik skaitymui ir "
628
+ "patartina jo nekeisti."
629
+
630
  #: cron/cron-add.php:96
631
  msgid "Mail Count"
632
  msgstr "Laiškų skaičius"
633
 
634
+ #: cron/cron-add.php:97
635
+ msgid "Number of mails you want to trigger per hour."
636
+ msgstr "Siunčiamų laiškų skaičius per valandą."
637
+
638
+ #: cron/cron-add.php:102
639
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
640
+ msgstr ""
641
+ "(Jūsų serveris turi limitą. Saugumo dėlei, mes siūlome 50 laiškų per valandą "
642
+ "limitą)"
643
+
644
  #: cron/cron-add.php:107
645
  msgid "Admin Report"
646
  msgstr "Administratoriaus ataskaita"
647
 
648
+ #: cron/cron-add.php:108
649
+ msgid ""
650
+ "Email to admin whenever cron URL is triggered from your server. (Keywords: "
651
+ "###DATE###, ###SUBJECT###, ###COUNT###)"
652
+ msgstr ""
653
+ "Siųsti laišką administratoriui, kai periodinės užduoties (cron) adresas yra "
654
+ "aktyvuojamas serveryje. (Raktažodžiai: ###DATE###, ###SUBJECT###, "
655
+ "###COUNT###)"
656
+
657
+ #: cron/cron-add.php:125
658
+ msgid "What is Cron (auto emails) and how to setup Cron Job?"
659
+ msgstr ""
660
+ "Kas yra periodinės užduotys (cron)(automatiniai laiškai) ir kaip jas "
661
+ "nustatyti?"
662
+
663
+ #: cron/cron-add.php:126
664
+ msgid ""
665
+ "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
666
+ "schedule-cron-emails/\">What is Cron?</a>"
667
+ msgstr ""
668
+ "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
669
+ "schedule-cron-emails/\">Kas yra periodinės užduotys (cron)?</a>"
670
+
671
  #: cron/cron-add.php:127
672
  msgid ""
673
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
686
  "schedule-cron-emails-in-cpanel/\">Periodinių užduočių (cron job) nustatymas "
687
  "cPanel</a>"
688
 
689
+ #: cron/cron-add.php:129
690
+ msgid ""
691
+ "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-"
692
+ "if-hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
693
+ msgstr ""
694
+ "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-"
695
+ "if-hosting-doesnt-support-cron-jobs/\">Serveris nepalaiko periodinių užduočių "
696
+ "(cron job)?</a>"
697
+
698
  #: export/export-email-address.php:33 export/export-email-address.php:37
699
  msgid "Unexpected url submit has been detected"
700
  msgstr "Buvo aptiktas nenumatytas nuorodos pateikimas"
704
  msgstr "Sveiki prisijungę prie El. pašto prenumeratorių!"
705
 
706
  #: help/help.php:47
707
+ msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
 
708
  msgstr ""
709
  "Ačiū, kad įdiegėte ir tikimės, kad jums patiks naudoti El. pašto "
710
  "prenumeratorius."
713
  msgid "For more help and tips..."
714
  msgstr "Norėdami gauti daugiau pagalbos ir patarimų..."
715
 
716
+ #: help/help.php:66
717
+ #, c-format
718
+ msgid "Like Email Subscribers? Please consider %s."
719
+ msgstr "Patinka Email Subscribers? Apsvarstykite %s."
720
+
721
+ #: help/help.php:66
722
+ msgid "contributing to us"
723
+ msgstr "prisidedant prie mūsų"
724
+
725
  #: help/help.php:98
726
  msgid "Frequently Asked Questions"
727
  msgstr "Dažnai užduodami klausimai"
728
 
729
+ #: help/help.php:117 help/help.php:126 help/help.php:129 help/help.php:132
730
+ #: help/help.php:135 help/help.php:138 help/help.php:141 help/help.php:144
731
+ #: help/help.php:147 help/help.php:150 help/help.php:153 help/help.php:156
732
+ #: help/help.php:159 help/help.php:162 help/help.php:165 help/help.php:168
733
  #: help/help.php:171 help/help.php:174 help/help.php:177
734
  #, c-format
735
  msgid "%s"
743
  msgid "General Plugin Settings"
744
  msgstr "Bendrieji įskiepio nustatymai"
745
 
746
+ #: help/help.php:126
747
+ msgid ""
748
+ " (How to modify the existing email content like Confirmation email, Welcome "
749
+ "email, Admin emails)"
750
+ msgstr ""
751
+ "(Kaip pakeisti esamą laiško turinį Patvirtinimo laiške, Pakvietimo laiške, "
752
+ "Administratoriaus laiškuose)"
753
+
754
  #: help/help.php:129
755
  msgid "How to Import or Export Email Addresses?"
756
  msgstr "Kaip importuoti ar eksportuoti el. pašto adresus?"
757
 
758
  #: help/help.php:132
759
  msgid "How to change/update/translate any texts from Email Subscribers?"
760
+ msgstr "Kaip pakeisti/atnaujinti/išversti bet kokį El. pašto prenumeratorių tekstą?"
 
761
 
762
  #: help/help.php:135
763
  msgid "How to add Unsubscribe link in emails?"
767
  msgid "What are Static Templates and Dynamic Templates?"
768
  msgstr "Kas yra statiniai ir dinaminiai šablonai?"
769
 
770
+ #: help/help.php:141
771
+ msgid "How to Compose and Send Newsletter Emails?"
772
+ msgstr "Kaip kurti ir siųsti naujienlaiškių laiškus?"
773
+
774
+ #: help/help.php:144
775
+ msgid ""
776
+ "How to Configure and Send Post Notification emails to subscribers when new "
777
+ "posts are published?"
778
+ msgstr ""
779
+ "Kaip sukonfigūruoti ir siųsti pranešimus prenumeratoriams, kai patalpinamas "
780
+ "naujas įrašas?"
781
+
782
  #: help/help.php:147
783
  msgid "How to Send a sample new post notification email to testgroup/myself?"
784
+ msgstr "Kaip siųsti naujo įrašo pranešimo pavyzdį el. paštu testinei grupe ar sau?"
785
+
786
+ #: help/help.php:150
787
+ msgid "How to check Sent emails reports?"
788
+ msgstr "Kaip patikrinti Išsiųstų laiškų ataskaitas?"
789
 
790
  #: help/help.php:153
791
  msgid "How to Add/Update Existing Subscribers Group?"
792
  msgstr "Kaip pridėti/atnaujinti esamą prenumeratorių grupę?"
793
 
794
+ #: help/help.php:156
795
+ msgid "Subscribers are not receiving Emails?"
796
+ msgstr "Prenumeratoriai negauna laiškų?"
797
+
798
  #: help/help.php:159
799
  msgid "How to show subscribe form inside a popup?"
800
  msgstr "Kaip rodyti prenumeratos formą iššokančiame lange?"
825
  msgid "Commonly Asked Questions"
826
  msgstr "Dažniausiai užduodami klausimai"
827
 
828
+ #: job/es-optin.php:57 job/es-optin.php:67 job/es-unsubscribe.php:54
829
  #: job/es-unsubscribe.php:61
830
  msgid ""
831
  "Oops.. We are getting some technical error. Please try again or contact "
847
  msgstr "Prašome pasirinkti pranešimo statusą."
848
 
849
  #: notification/notification-add.php:44 notification/notification-edit.php:60
850
+ msgid "Please select notification mail subject. Use compose menu to create new."
 
851
  msgstr ""
852
  "Prašome pasirinkti pranešimo laiško temą. Norėdami sukurti naują, naudokite "
853
  "meniu \"Sukurti\"."
868
  msgid "Select Subscribers Group"
869
  msgstr "Pasirinkite prenumeratorių grupę"
870
 
871
+ #: notification/notification-add.php:123 notification/notification-add.php:147
872
+ #: notification/notification-edit.php:134
873
+ #: notification/notification-edit.php:167 sendmail/sendmail.php:109
874
+ #: sendmail/sendmail.php:136 sendmail/sendmail.php:150
875
+ #: subscribers/view-subscriber-add.php:161
876
+ #: subscribers/view-subscriber-edit.php:161
877
+ #: subscribers/view-subscriber-import.php:189
878
  #: subscribers/view-subscriber-sync.php:118
879
  msgid "Select"
880
  msgstr "Pasirinkite"
881
 
882
+ #: notification/notification-add.php:141
883
+ #: notification/notification-edit.php:161
884
+ msgid "Select Notification Email Subject"
885
  msgstr "Pasirinkite pranešimo laiško temą"
886
 
887
+ #: notification/notification-add.php:142
888
+ #: notification/notification-edit.php:162
889
  msgid "(Use compose menu to create new)"
890
  msgstr "(Norėdami sukurti naują, naudokite meniu Kurti)"
891
 
892
+ #: notification/notification-add.php:166
893
+ #: notification/notification-edit.php:189
894
  msgid "Select Post Categories"
895
  msgstr "Pasirinkite įrašo kategorijas"
896
 
897
+ #: notification/notification-add.php:194
898
+ #: notification/notification-edit.php:224
899
  msgid "Check All"
900
  msgstr "Žymėti viską"
901
 
902
+ #: notification/notification-add.php:195
903
+ #: notification/notification-edit.php:225
904
  msgid "Uncheck All"
905
  msgstr "Nežymėti nieko"
906
 
907
+ #: notification/notification-add.php:201
908
+ #: notification/notification-edit.php:232
909
  msgid "Select your Custom Post Type"
910
  msgstr "Pasirinkite pasirinktinio įrašo tipą"
911
 
912
+ #: notification/notification-add.php:202
913
+ #: notification/notification-edit.php:233
914
  msgid "(Optional)"
915
  msgstr "(Neprivalomas)"
916
 
917
+ #: notification/notification-add.php:231
918
+ #: notification/notification-edit.php:267
919
  msgid "No Custom Post Types Available"
920
  msgstr "Nėra laisvų pasirinktinio įrašo tipų"
921
 
922
+ #: notification/notification-add.php:238
923
+ #: notification/notification-edit.php:274
924
+ msgid "Select Notification Status when a new post is published"
925
+ msgstr "Pasirinkite pranešimo statusą, kai naujas įrašas yra paskelbiamas"
926
+
927
+ #: notification/notification-add.php:242
928
+ #: notification/notification-edit.php:278
929
+ #: notification/notification-show.php:129 sendmail/sendmail.php:137
930
+ msgid "Send email immediately"
931
+ msgstr "Siųsti laišką nedelsiant"
932
+
933
+ #: notification/notification-add.php:243
934
+ #: notification/notification-edit.php:279
935
+ #: notification/notification-show.php:131
936
+ msgid "Add to cron and send email via cron job"
937
  msgstr ""
938
+ "Pridėti prie periodinių užduočių (cron) ir siųsti laiškus naudojant "
939
+ "periodines užduotis (cron job)"
940
 
941
+ #: notification/notification-add.php:244
942
+ #: notification/notification-edit.php:280
943
+ msgid "Disable email notification"
944
+ msgstr "Išjungti pranešimą el. paštu"
945
 
946
  #: notification/notification-edit.php:48
947
  msgid "Please select subscribers group"
959
  msgid "Edit Notification"
960
  msgstr "Redaguoti pranešimą"
961
 
962
+ #: notification/notification-edit.php:130
963
  #: subscribers/view-subscriber-show.php:279
964
  msgid "Update Subscribers Group"
965
  msgstr "Atnaujinti prenumeratorių grupę"
966
 
967
+ #: notification/notification-show.php:56
968
+ msgid ""
969
+ "Use this to setup and send notification emails to your subscribers when a "
970
+ "new post is published in your blog."
971
+ msgstr ""
972
+ "Naudokite norėdami nustatyti ir siųsti pranešimo laiškus savo "
973
+ "prenumeratoriams, kai paskelbiamas naujas įrašas jūsų svetainėje."
974
 
975
+ #: notification/notification-show.php:68 notification/notification-show.php:76
976
  msgid "Subscribers Group"
977
  msgstr "Prenumeratorių grupė"
978
 
979
+ #: notification/notification-show.php:69 notification/notification-show.php:77
980
+ msgid "Post Categories / Custom Post Types"
981
+ msgstr "Įrašo kategorijos / Pasirinktiniai įrašo tipai"
982
 
983
+ #: notification/notification-show.php:70 notification/notification-show.php:78
984
  msgid "Notification Status"
985
  msgstr "Pranešimo statusas"
986
 
 
 
 
 
 
 
 
 
987
  #: roles/roles-add.php:52
988
  msgid "Role Updated. "
989
  msgstr "Vaidmuo atnaujintas."
990
 
991
  #: roles/roles-add.php:113
992
+ msgid "Select user roles who can access following menus. Only Admin can change this."
 
993
  msgstr ""
994
  "Pasirinkite vartotojo vaidmenis, kurie gali pasiekti šiuos meniu. Tik "
995
  "administratorius gali tai pakeisti."
998
  msgid "Subscribers Menu"
999
  msgstr "Prenumeratorių meniu"
1000
 
1001
+ #: roles/roles-add.php:124 roles/roles-add.php:136 roles/roles-add.php:148
1002
+ #: roles/roles-add.php:160 roles/roles-add.php:172 roles/roles-add.php:184
1003
  #: roles/roles-add.php:196
1004
  msgid "Administrator Only"
1005
  msgstr "Tik administratoriui"
1006
 
1007
+ #: roles/roles-add.php:125 roles/roles-add.php:137 roles/roles-add.php:149
1008
+ #: roles/roles-add.php:161 roles/roles-add.php:173 roles/roles-add.php:185
1009
  #: roles/roles-add.php:197
1010
  msgid "Administrator/Editor"
1011
  msgstr "Administratorius/redaktorius"
1012
 
1013
+ #: roles/roles-add.php:126 roles/roles-add.php:138 roles/roles-add.php:150
1014
+ #: roles/roles-add.php:162 roles/roles-add.php:174 roles/roles-add.php:186
1015
  #: roles/roles-add.php:198
1016
  msgid "Administrator/Editor/Author/Contributor"
1017
  msgstr "Administratorius/redaktorius/autorius/pagalbininkas"
1020
  msgid "Compose Menu"
1021
  msgstr "Kurti meniu"
1022
 
1023
+ #: roles/roles-add.php:144
1024
+ msgid "Post Notifications Menu"
1025
+ msgstr "Pranešimų apie įrašus meniu"
1026
+
1027
+ #: roles/roles-add.php:156
1028
+ msgid "Newsletters + Cron Settings Menu"
1029
+ msgstr "Naujienlaiškiai ir periodinių užduočių (cron) nustatymų meniu"
1030
+
1031
+ #: roles/roles-add.php:168
1032
+ msgid "Email Settings Menu"
1033
+ msgstr "El. pašto nustatymų meniu"
1034
+
1035
+ #: roles/roles-add.php:180
1036
+ msgid "Reports Menu"
1037
+ msgstr "Ataskaitų meniu"
1038
+
1039
  #: roles/roles-add.php:192
1040
  msgid "Help & Info Menu"
1041
  msgstr "Pagalbos ir informacijos meniu"
1064
  msgid "Oops.. We are getting some error. mail not sending."
1065
  msgstr "Oi.. Iškilo šiek tiek klaidų. Laiškas nesiunčiamas."
1066
 
1067
+ #: sendmail/sendmail.php:96
1068
+ msgid "Use this to send newsletter emails to your subscribers."
1069
+ msgstr "Naudokite naujienlaiškių savo prenumeratoriams siuntimui."
1070
+
1071
  #: sendmail/sendmail.php:104
1072
  msgid "Select Mail Subject from available list"
1073
  msgstr "Pasirinkite laiško temą iš sąrašo"
1076
  msgid "Select Mail Type"
1077
  msgstr "Pasirinkite laiško tipą"
1078
 
 
 
 
 
1079
  #: sendmail/sendmail.php:138
1080
+ msgid "Send email via cron job"
1081
+ msgstr "Siųsti laišką naudojant periodines užduotis (cron job)"
1082
 
1083
  #: sendmail/sendmail.php:145
1084
  msgid "Select Subscribers group to Send Mail"
1096
  #: sendmail/sendmail.php:182
1097
  msgid ""
1098
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1099
+ "that you change above Mail Type to Cron and Send Mail via Cron Job."
1100
+ "</strong><br>Click on Help for more information."
1101
  msgstr ""
1102
  "<br><br><strong>Jūsų gavėjų skaičius viršija 100.<br>Mes primygtinai siūlome "
1103
  "jums pakeisti pašto siuntimo tipą į periodinių užduočių (cron) ir siųsti "
1128
  msgid "Delivery Report"
1129
  msgstr "Pristatymo ataskaita"
1130
 
1131
+ #: sentmail/deliverreport-show.php:70 sentmail/deliverreport-show.php:81
1132
+ #: subscribers/view-subscriber-export.php:36
1133
+ #: subscribers/view-subscriber-export.php:44
1134
+ #: subscribers/view-subscriber-show.php:351
1135
  #: subscribers/view-subscriber-show.php:365
1136
  msgid "Sno"
1137
  msgstr "Nr."
1138
 
1139
+ #: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:82
1140
  msgid "Email"
1141
  msgstr "El. paštas"
1142
 
1143
+ #: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:84
1144
+ #: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
1145
+ msgid "Sent"
1146
+ msgstr "Išsiųsta"
1147
+
1148
+ #: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:85
1149
  msgid "Sent Date"
1150
  msgstr "Išsiuntimo data"
1151
 
1152
+ #: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:86
1153
  msgid "Viewed Status"
1154
  msgstr "Peržiūrėjimo būsena"
1155
 
1156
+ #: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:87
1157
  msgid "Viewed Date"
1158
  msgstr "Peržiūrėjimo data"
1159
 
 
 
 
 
1160
  #: sentmail/sentmail-preview.php:41
1161
  msgid "Back"
1162
  msgstr "Atgal"
1165
  msgid "Successfully deleted all reports except latest 10."
1166
  msgstr "Sėkmingai ištrintos visos, išskyrus naujausias 10, ataskaitos."
1167
 
1168
+ #: sentmail/sentmail-show.php:99
1169
+ msgid "It will show reports for all Newsletters & Post Notification emails sent."
1170
+ msgstr ""
1171
+ "Jis parodys visų el. paštu siųstų naujienlaiškių ir pranešimų apie įrašus "
1172
+ "ataskaitas."
1173
+
1174
  #: sentmail/sentmail-show.php:109 sentmail/sentmail-show.php:122
1175
  msgid "View Reports"
1176
  msgstr "Peržiūrėti ataskaitas"
1177
 
1178
+ #: sentmail/sentmail-show.php:111 sentmail/sentmail-show.php:124
1179
+ msgid "Type"
1180
+ msgstr "Tipas"
1181
+
1182
+ #: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
1183
+ msgid "Start Date"
1184
+ msgstr "Pradžios data"
1185
+
1186
+ #: sentmail/sentmail-show.php:115 sentmail/sentmail-show.php:128
1187
+ msgid "End Date"
1188
+ msgstr "Pabaigos Data"
1189
+
1190
+ #: sentmail/sentmail-show.php:116 sentmail/sentmail-show.php:129
1191
+ msgid "Total"
1192
+ msgstr "Viso"
1193
+
1194
+ #: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
1195
+ #: subscribers/view-subscriber-export.php:39
1196
+ #: subscribers/view-subscriber-export.php:47
1197
+ #: subscribers/view-subscriber-show.php:357
1198
+ #: subscribers/view-subscriber-show.php:371
1199
+ msgid "Action"
1200
+ msgstr "Veiksmas"
1201
+
1202
+ #: sentmail/sentmail-show.php:176
1203
+ msgid "Optimize Table & Delete Records"
1204
+ msgstr "Optimizuoti lentelę ir trinti įrašus"
1205
+
1206
+ #: sentmail/sentmail-show.php:185
1207
+ msgid ""
1208
+ "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1209
+ "button to delete all reports except latest 10."
1210
+ msgstr ""
1211
+ "Pastaba: Norėdami ištrinti visus, išskyrus 10 naujausių, ataskaitų, "
1212
+ "paspauskite <strong>Optimizuoti lentelę ir trinti įrašus</strong> mygtuką."
1213
+
1214
+ #: settings/setting-sync.php:15
1215
+ msgid "Table sync completed successfully."
1216
+ msgstr "Lentelės sinchronizavimas sėkmingai įvykdytas."
1217
+
1218
+ #: settings/setting-sync.php:28
1219
+ msgid "Sync plugin tables"
1220
+ msgstr "Sinchronizuoti įskiepio lenteles"
1221
+
1222
+ #: settings/setting-sync.php:32
1223
+ msgid "Click to sync tables"
1224
+ msgstr "Spauskite jei norite sinchronizuoti lenteles"
1225
+
1226
+ #: settings/settings-edit.php:116
1227
+ msgid "Please enter sender of notifications from name."
1228
+ msgstr "Prašome įvesti pranešimų siuntėjo vardą."
1229
+
1230
+ #: settings/settings-edit.php:121
1231
+ msgid "Please enter sender of notifications from email."
1232
+ msgstr "Prašome įvesti pranešimų siuntėjo el. paštą."
1233
+
1234
+ #: settings/settings-edit.php:154
1235
+ msgid "Settings Saved."
1236
+ msgstr "Nustatymai išsaugoti."
1237
+
1238
+ #: settings/settings-edit.php:157
1239
+ msgid "Oops, unable to update."
1240
+ msgstr "Oi, negalima atnaujinti."
1241
+
1242
+ #: settings/settings-edit.php:204
1243
+ msgid "Sender of Notifications"
1244
+ msgstr "Pranešimų siuntėjas"
1245
+
1246
+ #: settings/settings-edit.php:205
1247
+ msgid ""
1248
+ "Choose a FROM name and FROM email address for all the emails to be sent from "
1249
+ "this plugin."
1250
+ msgstr ""
1251
+ "Pasirinkite siuntėjo vardą ir elektroninio pašto adresą visiems šio įskiepio "
1252
+ "siunčiamiems laiškams."
1253
+
1254
+ #: settings/settings-edit.php:215
1255
+ msgid "Mail Type"
1256
+ msgstr "Laiško tipas"
1257
+
1258
+ #: settings/settings-edit.php:216
1259
+ msgid ""
1260
+ "Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
1261
+ "Option 3 & 4 is to send mails with PHP method mail()."
1262
+ msgstr ""
1263
+ "1 ir 2 variantai naudoja standartinį Wordpress metodą wp_mail(). 3 ir 4 "
1264
+ "variantai naudoja PHP metodą mail()."
1265
+
1266
+ #: settings/settings-edit.php:220
1267
+ msgid "1. WP HTML MAIL"
1268
+ msgstr "1. WP HTML laiškas"
1269
+
1270
+ #: settings/settings-edit.php:221
1271
+ msgid "2. WP PLAINTEXT MAIL"
1272
+ msgstr "2. WP paprasto teksto laiškas"
1273
+
1274
+ #: settings/settings-edit.php:222
1275
+ msgid "3. PHP HTML MAIL"
1276
+ msgstr "3. PHP HTML laiškas"
1277
+
1278
+ #: settings/settings-edit.php:223
1279
+ msgid "4. PHP PLAINTEXT MAIL"
1280
+ msgstr "4. PHP paprasto teksto laiškas"
1281
+
1282
+ #: settings/settings-edit.php:230
1283
+ msgid "Opt-in Option"
1284
+ msgstr "Prenumeratos patvirtinimo variantas"
1285
+
1286
+ #: settings/settings-edit.php:231
1287
+ msgid ""
1288
+ "Double Opt In means subscribers need to confirm their email address by an "
1289
+ "activation link sent them on a activation email message.<br />Single Opt In "
1290
+ "means subscribers do not need to confirm their email address."
1291
+ msgstr ""
1292
+ "Dvigubas patvirtinimas reiškia, kad prenumeratoriai turi patvirtinti savo el."
1293
+ " pašto adresą aktyvuodami nuorodą aktyvacijos laiške.<br />Viengubas "
1294
+ "patvirtinimas reiškia, kad prenumeratoriai neturi patvirtinti savo el. pašto "
1295
+ "adreso."
1296
+
1297
+ #: settings/settings-edit.php:235
1298
+ msgid "Double Opt In"
1299
+ msgstr "Dvigubas patvirtinimas"
1300
+
1301
+ #: settings/settings-edit.php:236 subscribers/view-subscriber-add.php:150
1302
+ #: subscribers/view-subscriber-edit.php:149
1303
+ #: subscribers/view-subscriber-import.php:177
1304
+ #: subscribers/view-subscriber-show.php:302
1305
+ #: subscribers/view-subscriber-show.php:329
1306
+ msgid "Single Opt In"
1307
+ msgstr "Viengubas patvirtinimas"
1308
+
1309
+ #: settings/settings-edit.php:242
1310
+ msgid "Image Size"
1311
+ msgstr "Paveikslėlio dydis"
1312
+
1313
+ #: settings/settings-edit.php:243
1314
+ msgid ""
1315
+ "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
1316
+ "Emails."
1317
+ msgstr ""
1318
+ "Pasirinkite vaizdo dydį ###POSTIMAGE###, kuris bus rodomas pranešimų apie "
1319
+ "įrašus laiškuose."
1320
+
1321
+ #: settings/settings-edit.php:247
1322
+ msgid "Full Size"
1323
+ msgstr "Visas dydis"
1324
+
1325
+ #: settings/settings-edit.php:248
1326
+ msgid "Medium Size"
1327
+ msgstr "Vidutinis dydis"
1328
+
1329
+ #: settings/settings-edit.php:249
1330
+ msgid "Thumbnail"
1331
+ msgstr "Miniatiūra"
1332
+
1333
+ #: settings/settings-edit.php:255
1334
+ msgid "Double Opt In Mail Subject (Confirmation Email)"
1335
+ msgstr "Dvigubo patvirtinimo laiško tema (Patvirtinimo laiškas)"
1336
+
1337
+ #: settings/settings-edit.php:256
1338
+ msgid ""
1339
+ "Enter the subject for the confirmation email to be sent Double Opt In "
1340
+ "whenever a user signs up."
1341
+ msgstr ""
1342
+ "Įveskite patvirtinimo laiško temą, kuris bus siunčiamas dvigubam "
1343
+ "patvirtinimui, kai vartotojas užsiregistruos"
1344
+
1345
+ #: settings/settings-edit.php:262
1346
+ msgid "Double Opt In Mail Content (Confirmation Email)"
1347
+ msgstr "Dvigubo patvirtinimo laiško turinys (Patvirtinimo laiškas)"
1348
+
1349
+ #: settings/settings-edit.php:263
1350
+ msgid ""
1351
+ "Enter the content for the confirmation email to be sent for Double Opt In "
1352
+ "whenever a user signs up. (Keyword: ###NAME###)"
1353
+ msgstr ""
1354
+ "Įveskite patvirtinimo laiško turinį, kuris bus siunčiamas dvigubam "
1355
+ "patvirtinimui, kai vartotojas prisiregistruos. (Raktažodis: ###NAME###)"
1356
+
1357
+ #: settings/settings-edit.php:269
1358
+ msgid "Double Opt In Confirmation Link"
1359
+ msgstr "Dvigubo patvirtinimo nuoroda"
1360
+
1361
+ #: settings/settings-edit.php:270 settings/settings-edit.php:313
1362
+ msgid "It is a readonly field and you are advised not to modify it."
1363
+ msgstr "Laukas tik skaitymui ir patartina jo nekeisti."
1364
+
1365
+ #: settings/settings-edit.php:276
1366
+ msgid ""
1367
+ "Text to display after Email is successfully subscribed from Double Opt In "
1368
+ "(confirmation) Email"
1369
+ msgstr "Rodomas tekstas po sėkmingo el. pašto patvirtinimo."
1370
+
1371
+ #: settings/settings-edit.php:277
1372
+ msgid ""
1373
+ "This text will be displayed once user clicks on email confirmation link from "
1374
+ "the Double Opt In (confirmation) Email."
1375
+ msgstr ""
1376
+ "Šis tekstas bus rodomas, kai vartotojas paspaus ant dvigubo patvirtinimo "
1377
+ "laiške esančios nuorodos."
1378
+
1379
+ #: settings/settings-edit.php:284
1380
+ msgid "Subscriber Welcome Email"
1381
+ msgstr "Prenumeratoriaus pasveikinimo laiškas"
1382
+
1383
+ #: settings/settings-edit.php:285
1384
+ msgid ""
1385
+ "To send welcome email to subscriber after successful signup. This option "
1386
+ "must be set to YES."
1387
+ msgstr ""
1388
+ "Norėdami išsiųsti pasveikinimo laišką prenumeratoriui po sėkmingos "
1389
+ "registracijos, turite nustatyti TAIP."
1390
+
1391
+ #: settings/settings-edit.php:289 settings/settings-edit.php:362
1392
+ #: subscribers/view-subscriber-sync.php:106
1393
+ msgid "YES"
1394
+ msgstr "Taip"
1395
+
1396
+ #: settings/settings-edit.php:290 settings/settings-edit.php:363
1397
+ #: subscribers/view-subscriber-sync.php:105
1398
+ msgid "NO"
1399
+ msgstr "Ne"
1400
+
1401
+ #: settings/settings-edit.php:296
1402
+ msgid "Subscriber Welcome Email Subject"
1403
+ msgstr "Prenumeratoriaus pasveikinimo laiško tema"
1404
 
1405
+ #: settings/settings-edit.php:297
1406
+ msgid ""
1407
+ "Enter the subject for the subscriber welcome email. This will be sent "
1408
+ "whenever a user's email is either confirmed (if Double Opt In) / subscribed "
1409
+ "(if Single Op In) successfully."
1410
+ msgstr ""
1411
+ "Įveskite prenumeratoriaus pasveikinimo laiško temą. Jis bus siunčiamas, kai "
1412
+ "vartotojo el. paštas patvirtinimas (jei pasirinktas dvigubas patvirtinimas) "
1413
+ "arba vartotojas sėkmingai užsiregistravo (jei pasirinktas viengubas "
1414
+ "patvirtinimas)."
1415
 
1416
+ #: settings/settings-edit.php:303
1417
+ msgid "Subscriber Welcome Email Content"
1418
+ msgstr "Prenumeratoriaus pasveikinimo laiško turinys"
1419
 
1420
+ #: settings/settings-edit.php:304
1421
+ msgid ""
1422
+ "Enter the content for the subscriber welcome email whenever a user's email "
1423
+ "is either confirmed (if Double Opt In) / subscribed (if Single Opt In) "
1424
+ "successfully. (Keyword: ###NAME###)"
1425
+ msgstr ""
1426
+ "Įveskite prenumeratoriaus pasveikinimo laiško, kuris bus siunčiamas po "
1427
+ "vartotojo el. pašto adreso patvirtinimo (dvigubo patvirtinimo atveju) arba "
1428
+ "sėkmingos prenumeratos (viengubo patvirtinimo atveju), turinys. (Raktažodis: "
1429
+ "###NAME###)"
1430
 
1431
+ #: settings/settings-edit.php:312
1432
+ msgid "Unsubscribe Link"
1433
+ msgstr "Prenumeratos atsisakymo nuoroda"
 
 
 
 
1434
 
1435
+ #: settings/settings-edit.php:319
1436
+ msgid "Unsubscribe Text in Email"
1437
+ msgstr "Prenumeratos atsisakymo tekstas laiške"
1438
 
1439
+ #: settings/settings-edit.php:320
1440
  msgid ""
1441
+ "Enter the text for the unsubscribe link. This text is added with unsubscribe "
1442
+ "link in the emails. (Keyword: ###LINK###)"
1443
  msgstr ""
1444
+ "Įveskite prenumeratos atsisakymo nuorodos tekstą. Jis bus pridėtas kartu su "
1445
+ "prenumeratos atsisakymo nuoroda visuose laiškuose. (Raktažodis: ###LINK###)"
 
 
 
 
1446
 
1447
+ #: settings/settings-edit.php:326
1448
+ msgid "Text to display after Email is unsubscribed"
1449
+ msgstr "Po el. pašto prenumeratos atsisakymo rodomas tekstas."
1450
 
1451
+ #: settings/settings-edit.php:327
1452
+ msgid "This text will be displayed once user clicks on unsubscribe link."
1453
+ msgstr ""
1454
+ "Šis tekstas bus rodomas, kai vartotojas paspaus ant prenumeratos atsisakymo "
1455
+ "nuorodos."
1456
 
1457
+ #: settings/settings-edit.php:334
1458
+ msgid "Error in Confirmation Link"
1459
+ msgstr "Patvirtinimo nuorodos klaida"
1460
 
1461
+ #: settings/settings-edit.php:335
1462
+ msgid ""
1463
+ "Default message to display if there is any issue while clicking on "
1464
+ "confirmation link from the Double Opt In (confirmation) Emails."
1465
+ msgstr ""
1466
+ "Numatytoji žinutė, kuri rodoma, jei kyla kokių nors problemų paspaudus ant "
1467
+ "patvirtinimo nuorodos dvigubo patvirtinimo laiške."
1468
 
1469
+ #: settings/settings-edit.php:341
1470
+ msgid "Error in Unsubscribe Link"
1471
+ msgstr "Prenumeratos atsisakymo nuorodos klaida"
1472
 
1473
+ #: settings/settings-edit.php:342
1474
+ msgid ""
1475
+ "Default message to display if there is any issue while clicking on "
1476
+ "unsubscribe link from the Emails."
1477
+ msgstr ""
1478
+ "Numatytoji žinutė, kuri rodoma, jei kyla problemų paspaudus ant laiškuose "
1479
+ "rodomos prenumeratos atsisakymo nuorodos."
1480
 
1481
+ #: settings/settings-edit.php:349
1482
+ msgid "Admin Email Addresses"
1483
+ msgstr "Administratorių el. pašto adresai"
1484
 
1485
+ #: settings/settings-edit.php:350
1486
+ msgid ""
1487
+ "Enter the admin email addresses that should receive notifications (separated "
1488
+ "by comma)."
1489
+ msgstr ""
1490
+ "Įveskite Administratorių elektroninio pašto adresus, kuriais turėtų būti "
1491
+ "siunčiami pranešimai (atskiriant kableliu)."
1492
 
1493
+ #: settings/settings-edit.php:356
1494
+ msgid "Notify Admin about New Subscriber"
1495
+ msgstr "Pranešti administratoriui apie naują prenumeratorių"
1496
 
1497
+ #: settings/settings-edit.php:357
1498
+ msgid ""
1499
+ "To send admin email notifications for the new subscriber. This option must "
1500
+ "be set to YES."
1501
+ msgstr ""
1502
+ "Norėdami siųsti pranešimus administratoriams apie naujus prenumeratorius, "
1503
+ "turite nustatyti TAIP."
1504
 
1505
+ #: settings/settings-edit.php:369
1506
+ msgid "Admin Email Subject"
1507
+ msgstr "Administratoriaus laiško tema"
1508
 
1509
+ #: settings/settings-edit.php:370
1510
+ msgid ""
1511
+ "Enter the subject for the admin email. This will be sent whenever a new "
1512
+ "email is added and confirmed."
1513
+ msgstr ""
1514
+ "Įveskite administratoriaus laiško temą. Jis bus siunčiamas, kai naujas el. "
1515
+ "pašto adresas pridedamas ir patvirtinamas."
1516
 
1517
+ #: settings/settings-edit.php:376
1518
+ msgid "Admin Email Content"
1519
+ msgstr "Administratoriaus laiško turinys"
1520
 
1521
+ #: settings/settings-edit.php:377
1522
+ msgid ""
1523
+ "Enter the email content for the admin email. This will be sent whenever a "
1524
+ "new email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)"
1525
+ msgstr ""
1526
+ "Įveskite administratoriaus laiško turinį. Jis bus siunčiamas, kai naujas el. "
1527
+ "pašto adresas pridedamas ir patvirtinamas. (Raktažodis: ###NAME###, "
1528
+ "###EMAIL###)"
1529
 
1530
+ #: settings/settings-edit.php:384
1531
+ msgid "Sent Report Subject"
1532
+ msgstr "Išsiųstų laiškų ataskaitos tema"
1533
 
1534
+ #: settings/settings-edit.php:385
1535
+ msgid "Enter the subject for the sent email report. It will be mailed to Admin."
1536
+ msgstr ""
1537
+ "Įveskite išsiųstų laiškų ataskaitos laiško temą. Jis bus siunčiamas "
1538
+ "administratoriams."
1539
 
1540
+ #: settings/settings-edit.php:391
1541
+ msgid "Sent Report Content"
1542
+ msgstr "Išsiųstų laiškų ataskaitos turinys"
 
1543
 
1544
+ #: settings/settings-edit.php:392
1545
+ msgid ""
1546
+ "Enter the content for the sent mail report. It will be mailed to Admin. "
1547
+ "(Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
1548
+ msgstr ""
1549
+ "Įveskite išsiųstų laiškų ataskaitos laiško turinį. Jis bus siunčiamas "
1550
+ "administratoriams. (Raktažodis: ###COUNT###, ###UNIQUE###, ###STARTTIME###, "
1551
+ "###ENDTIME###)"
1552
 
1553
  #: settings/settings-edit.php:402
1554
  msgid "Save Settings"
1555
  msgstr "Išsaugoti nustatymus"
1556
 
1557
+ #: subscribers/view-subscriber-add.php:35
1558
  #: subscribers/view-subscriber-edit.php:53
1559
  msgid "Please enter subscriber email address."
1560
  msgstr "Prašome įvesti prenumeratoriaus el. pašto adresą."
1568
  "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1569
  "the group name."
1570
  msgstr ""
1571
+ "Klaida: Grupės pavadinime negalima naudoti specialių simbolių "
1572
+ "(['^$%&*()}{@#~?><>,|=_+\\\"])."
1573
 
1574
  #: subscribers/view-subscriber-add.php:65
1575
  msgid "Subscriber has been saved."
1583
  msgid "Invalid Email."
1584
  msgstr "Neteisingas el. paštas."
1585
 
1586
+ #: subscribers/view-subscriber-add.php:109
1587
+ #: subscribers/view-subscriber-edit.php:108
1588
+ #: subscribers/view-subscriber-export.php:26
1589
+ #: subscribers/view-subscriber-import.php:142
1590
+ #: subscribers/view-subscriber-show.php:241
1591
  #: subscribers/view-subscriber-sync.php:88
1592
  msgid "Add New Subscriber"
1593
  msgstr "Pridėti naują prenumeratorių"
1594
 
1595
+ #: subscribers/view-subscriber-add.php:110
1596
+ #: subscribers/view-subscriber-edit.php:109
1597
+ #: subscribers/view-subscriber-export.php:27
1598
+ #: subscribers/view-subscriber-import.php:209
1599
+ #: subscribers/view-subscriber-show.php:242
1600
  #: subscribers/view-subscriber-sync.php:89
1601
  msgid "Import"
1602
  msgstr "Importuoti"
1603
 
1604
+ #: subscribers/view-subscriber-add.php:111
1605
+ #: subscribers/view-subscriber-edit.php:110
1606
+ #: subscribers/view-subscriber-import.php:143
1607
+ #: subscribers/view-subscriber-show.php:243
1608
  #: subscribers/view-subscriber-sync.php:90
1609
  msgid "Export"
1610
  msgstr "Eksportuoti"
1611
 
1612
+ #: subscribers/view-subscriber-add.php:112
1613
+ #: subscribers/view-subscriber-edit.php:111
1614
+ #: subscribers/view-subscriber-export.php:28
1615
+ #: subscribers/view-subscriber-import.php:144
1616
+ #: subscribers/view-subscriber-show.php:244
1617
  #: subscribers/view-subscriber-sync.php:142
1618
  msgid "Sync"
1619
  msgstr "Sinchronizuoti"
1630
  msgid "Select Subscriber's Status"
1631
  msgstr "Pasirinkite prenumeratoriaus statusą"
1632
 
1633
+ #: subscribers/view-subscriber-add.php:147
1634
+ #: subscribers/view-subscriber-edit.php:146
1635
+ #: subscribers/view-subscriber-import.php:174
1636
+ #: subscribers/view-subscriber-show.php:299
1637
  #: subscribers/view-subscriber-show.php:326
1638
  msgid "Confirmed"
1639
  msgstr "Patvirtinta"
1640
 
1641
+ #: subscribers/view-subscriber-add.php:148
1642
+ #: subscribers/view-subscriber-edit.php:147
1643
+ #: subscribers/view-subscriber-import.php:175
1644
+ #: subscribers/view-subscriber-show.php:300
1645
  #: subscribers/view-subscriber-show.php:327
1646
  msgid "Unconfirmed"
1647
  msgstr "Nepatvirtintas"
1648
 
1649
+ #: subscribers/view-subscriber-add.php:149
1650
+ #: subscribers/view-subscriber-edit.php:148
1651
+ #: subscribers/view-subscriber-import.php:176
1652
+ #: subscribers/view-subscriber-show.php:301
1653
  #: subscribers/view-subscriber-show.php:328
1654
  msgid "Unsubscribed"
1655
  msgstr "Nutraukė prenumeratą"
1658
  msgid "Select (or) Create Group for Subscriber"
1659
  msgstr "Pasirinkite (ar) sukurkite grupę prenumeratoriui"
1660
 
1661
+ #: subscribers/view-subscriber-add.php:173
1662
  #: subscribers/view-subscriber-import.php:201
1663
  msgid "(or)"
1664
  msgstr "(arba)"
1683
  msgid "Edit Subscriber"
1684
  msgstr "Redaguoti prenumeratorių"
1685
 
1686
+ #: subscribers/view-subscriber-edit.php:121
1687
+ msgid "Subscriber's Full Name"
1688
+ msgstr "Prenumeratoriaus pilnas vardas"
1689
+
1690
+ #: subscribers/view-subscriber-edit.php:131
1691
+ msgid "Subscriber's Email Address"
1692
+ msgstr "Prenumeratoriaus el. pašto adresas"
1693
+
1694
  #: subscribers/view-subscriber-edit.php:141
1695
  msgid "Update Subscriber's Status"
1696
  msgstr "Atnaujinti prenumeratoriaus statusą"
1703
  msgid "Export Email Addresses"
1704
  msgstr "Eksportuoti el. pašto adresus"
1705
 
1706
+ #: subscribers/view-subscriber-export.php:37
1707
  #: subscribers/view-subscriber-export.php:45
1708
  msgid "Type of List to Export"
1709
  msgstr "Sąrašo eksportuoti tipas"
1710
 
1711
+ #: subscribers/view-subscriber-export.php:38
1712
  #: subscribers/view-subscriber-export.php:46
1713
  msgid "Total Emails"
1714
  msgstr "El. pašto adresų iš viso"
1721
  msgid "All Subscribers List"
1722
  msgstr "Visų prenumeratorių sąrašas"
1723
 
1724
+ #: subscribers/view-subscriber-export.php:55
1725
+ #: subscribers/view-subscriber-export.php:61
1726
  #: subscribers/view-subscriber-export.php:67
1727
  msgid "Click to Export in CSV"
1728
  msgstr "Norėdami eksportuoti CSV, spauskite čia"
1748
  "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1749
  "the Group name."
1750
  msgstr ""
1751
+ "Klaida: Grupės pavadinime negalima naudoti specialių simbolių "
1752
+ "(['^$%&*()}{@#~?><>,|=_+\\\"])."
1753
 
1754
  #: subscribers/view-subscriber-import.php:91
1755
  msgid "email imported."
1763
  msgid "email are invalid."
1764
  msgstr "netinkamas el. pašto adresas."
1765
 
1766
+ #: subscribers/view-subscriber-import.php:96
1767
  #: subscribers/view-subscriber-import.php:125
1768
  msgid "Click here"
1769
  msgstr "Spauskite čia"
1770
 
1771
+ #: subscribers/view-subscriber-import.php:96
1772
  #: subscribers/view-subscriber-import.php:125
1773
  msgid " to view details."
1774
  msgstr "peržiūrėti detales."
1801
  msgid "Select (or) Create Group for Subscribers"
1802
  msgstr "Pasirinkite (ar) sukurkite grupę prenumeratoriams"
1803
 
1804
+ #: subscribers/view-subscriber-show.php:44
1805
+ msgid "Selected details does not exists."
1806
+ msgstr "Pažymėti duomenys neegzistuoja."
1807
+
1808
+ #: subscribers/view-subscriber-show.php:55
1809
  #: subscribers/view-subscriber-show.php:94
1810
  msgid "Record deleted."
1811
  msgstr "Įrašas ištrintas."
1812
 
1813
  #: subscribers/view-subscriber-show.php:66
1814
+ msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
 
1815
  msgstr ""
1816
  "Norėdami siųsti patvirtinimo laišką, prašome pakeisti prenumeratos "
1817
  "patvirtinimo nustatymą į Dvigubas patvirtinimas."
1818
 
1819
+ #: subscribers/view-subscriber-show.php:74
1820
+ #: subscribers/view-subscriber-show.php:133
1821
+ msgid "Confirmation emails Resent Successfully."
1822
+ msgstr "Patvirtinimo laiškai pakartotinai išsiųsti sėkmingai."
1823
+
1824
+ #: subscribers/view-subscriber-show.php:99
1825
+ #: subscribers/view-subscriber-show.php:138
1826
+ #: subscribers/view-subscriber-show.php:176
1827
+ #: subscribers/view-subscriber-show.php:215
1828
+ msgid "No record was selected."
1829
+ msgstr "Nebuvo pasirinktas įrašas."
1830
+
1831
  #: subscribers/view-subscriber-show.php:114
1832
+ msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
 
1833
  msgstr ""
1834
  "Norėdami išsiųsti patvirtinimo laišką, prašome pakeisti prenumeravimo "
1835
  "variantą į \"Dvigubas patvirtinimas\"."
1836
 
1837
+ #: subscribers/view-subscriber-show.php:162
1838
+ msgid "Subscribers Group updated."
1839
+ msgstr "Atnaujinta prenumeratorių grupė."
1840
+
1841
+ #: subscribers/view-subscriber-show.php:167
1842
+ msgid "Please select New group to update."
1843
+ msgstr "Prašome pasirinkti naują grupę atnaujinimui."
1844
+
1845
+ #: subscribers/view-subscriber-show.php:201
1846
+ msgid "Subscribers Status updated."
1847
+ msgstr "Prenumeratorių būsena atnaujinta."
1848
+
1849
+ #: subscribers/view-subscriber-show.php:206
1850
+ msgid "Please select New Status to update."
1851
+ msgstr "Prašome pasirinkti naują būseną atnaujinimui."
1852
+
1853
  #: subscribers/view-subscriber-show.php:276
1854
  msgid "Bulk Actions"
1855
  msgstr "Masiniai veiksmai"
1856
 
1857
+ #: subscribers/view-subscriber-show.php:278
1858
  #: subscribers/view-subscriber-show.php:411
1859
  msgid "Resend Confirmation"
1860
  msgstr "Persiųsti patvirtinimą dar kartą"
1861
 
1862
+ #: subscribers/view-subscriber-show.php:280
1863
+ msgid "Update Subscribers Status"
1864
+ msgstr "Atnaujinti prenumeratorių būseną"
1865
+
1866
  #: subscribers/view-subscriber-show.php:283
1867
  msgid "Select Group"
1868
  msgstr "Pasirinkti grupę"
1869
 
1870
+ #: subscribers/view-subscriber-show.php:298
1871
  #: subscribers/view-subscriber-show.php:325
1872
  msgid "All Status"
1873
  msgstr "Visos būsenos"
1916
  msgid "Display All"
1917
  msgstr "Rodyti visus"
1918
 
1919
+ #: subscribers/view-subscriber-show.php:352
1920
  #: subscribers/view-subscriber-show.php:366
1921
  msgid "Email Address"
1922
  msgstr "El. pašto adresas"
1923
 
1924
+ #: subscribers/view-subscriber-show.php:355
1925
  #: subscribers/view-subscriber-show.php:369
1926
  msgid "Group"
1927
  msgstr "Grupė"
1928
 
1929
+ #: subscribers/view-subscriber-show.php:356
1930
+ #: subscribers/view-subscriber-show.php:370
1931
+ msgid "Signup Date<br>(YYYY-MM-DD)"
1932
+ msgstr "Prenumeratos data<br>(YYYY-MM-DD)"
1933
+
1934
  #: subscribers/view-subscriber-sync.php:35
1935
  msgid "Please select default group to newly registered user."
1936
  msgstr "Prašome pasirinkti numatytąją grupę naujai registruotiems vartotojams."
1955
  msgid "Email Subscribers & Newsletters"
1956
  msgstr "Email Subscribers & Newsletters"
1957
 
1958
+ #. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.6) #-#-#-#-#
1959
+ #. Plugin URI of the plugin/theme
1960
+ #. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.6) #-#-#-#-#
1961
+ #. Author URI of the plugin/theme
1962
+ msgid "http://www.icegram.com/"
1963
+ msgstr "http://www.icegram.com/"
1964
+
1965
+ #. Description of the plugin/theme
1966
  msgid ""
1967
  "Add subscription forms on website, send HTML newsletters & automatically "
1968
+ "notify subscribers about new blog posts once it is published."
1969
  msgstr ""
1970
+ "Pridėkite prenumeratos formas interneto svetainėje, siųskite HTML "
1971
+ "naujienlaiškius ir automatiškai praneškite prenumeratoriams apie naujus "
1972
+ "įrašus, kai jie yra paskelbiami."
1973
 
1974
  #. Author of the plugin
1975
  msgid "Icegram"
languages/email-subscribers-pl_PL.mo CHANGED
Binary file
languages/email-subscribers-pl_PL.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.2.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-01-18 05:36:03+00:00\n"
6
- "PO-Revision-Date: 2017-02-17 18:56+0100\n"
7
  "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: StoreApps <support@storeapps.org>\n"
9
  "Language: pl\n"
@@ -23,482 +23,103 @@ msgstr ""
23
  "X-Loco-Target-Locale: pl_PL\n"
24
  "X-Poedit-SearchPath-0: ..\n"
25
 
26
- #: classes/es-common.php:20
27
- msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
28
- msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Obejrzane</span>"
29
-
30
- #: classes/es-register.php:148 classes/es-register.php:149
31
- #: notification/notification-show.php:51
32
- msgid "Post Notifications"
33
- msgstr "Powiadomienia pocztowe"
34
-
35
- #: classes/es-register.php:151 classes/es-register.php:152 sendmail/sendmail.php:92
36
- msgid "Newsletters"
37
- msgstr "Biuletyny"
38
-
39
- #: classes/es-register.php:154 classes/es-register.php:155 cron/cron-add.php:78
40
- msgid "Cron Settings"
41
- msgstr "Ustawienia Cron"
42
-
43
- #: classes/es-register.php:157 classes/es-register.php:158
44
- #: settings/settings-edit.php:196
45
- msgid "Email Settings"
46
- msgstr "Ustawienia e-mail"
47
-
48
- #: classes/es-register.php:160 classes/es-register.php:161 roles/roles-add.php:109
49
- msgid "User Roles"
50
- msgstr "Role użytkowników"
51
-
52
- #: classes/es-register.php:163 classes/es-register.php:164
53
- #: sentmail/sentmail-show.php:95
54
- msgid "Reports"
55
- msgstr "Raporty"
56
-
57
- #: classes/es-register.php:183
58
- msgctxt "view-subscriber-enhanced-select"
59
- msgid "Are you sure you want to delete selected records?"
60
- msgstr "Jesteś pewien, że chcesz usunąć zaznaczone rekordy?"
61
-
62
- #: classes/es-register.php:186
63
- msgctxt "view-subscriber-enhanced-select"
64
- msgid "Please select new status for subscribers"
65
- msgstr "Proszę wskaż nowy status dla subskrybentów."
66
-
67
- #: classes/es-register.php:188
68
- msgctxt "view-subscriber-enhanced-select"
69
- msgid "Do you want to update subscribers status?"
70
- msgstr "Czy chcesz zaktualizować statusy subskrybentów?"
71
-
72
- #: compose/compose-add.php:73
73
- msgid "Add new Email"
74
- msgstr "Dodaj nowy e-mail."
75
-
76
- #: compose/compose-add.php:79 compose/compose-edit.php:90
77
- msgid "Static Template (For Newsletter Emails)"
78
- msgstr "Szablon statyczny (dla E-maili Biuletynów )"
79
-
80
- #: compose/compose-add.php:80 compose/compose-edit.php:91
81
- msgid "Dynamic Template (For Post Notification Emails)"
82
- msgstr "Szablon dynamiczny (dla E-maili Powiadomień)"
83
-
84
- #: compose/compose-edit.php:83
85
- msgid "Edit Email"
86
- msgstr "Edytuj E-mail"
87
-
88
- #: cron/cron-add.php:33
89
- msgid "Successfully updated."
90
- msgstr "Zaktualizowany poprawnie."
91
-
92
- #: cron/cron-add.php:87
93
- msgid ""
94
- "This is your Cron Job URL. It is a readonly field and you are advised not to "
95
- "modify it."
96
- msgstr ""
97
- "To jest twoja procedura Cron URL. Jest to pole tylko do odczytu i nie zaleca się "
98
- "go modyfikować."
99
-
100
- #: cron/cron-add.php:97
101
- msgid "Number of mails you want to trigger per hour."
102
- msgstr "Ilość maili które chcesz wypuszczać w godzinę."
103
-
104
- #: cron/cron-add.php:102
105
- msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
106
- msgstr ""
107
- "(Twój hostingowego ma swoje granice. Proponujemy limit 50 e-maili na godzinę)"
108
-
109
- #: cron/cron-add.php:108
110
- msgid ""
111
- "Email to admin whenever cron URL is triggered from your server. (Keywords: "
112
- "###DATE###, ###SUBJECT###, ###COUNT###)"
113
- msgstr ""
114
- "Wyślij e-mail do administratora gdy Cron URL zostanie uruchomiony z twojego "
115
- "serwera. (Klucze: ###DATE###, ###SUBJECT###, ###COUNT###)"
116
-
117
- #: cron/cron-add.php:125
118
- msgid "What is Cron (auto emails) and how to setup Cron Job?"
119
- msgstr "Czym jest Cron (automatyczne e-maile) i w jak skonfigurować procedurę Cron?"
120
-
121
- #: cron/cron-add.php:126
122
- msgid ""
123
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
124
- "schedule-cron-emails/\">What is Cron?</a>"
125
- msgstr ""
126
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
127
- "schedule-cron-emails/\">Co to jest Cron?</a>"
128
-
129
- #: cron/cron-add.php:129
130
- msgid ""
131
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
132
- "hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
133
- msgstr ""
134
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
135
- "hosting-doesnt-support-cron-jobs/\">Hosting nie obsługuje procedur Cron?</a>"
136
-
137
- #: help/help.php:66
138
- #, c-format
139
- msgid "Like Email Subscribers? Please consider %s."
140
- msgstr "Lubisz Email Subscribers? Rozważ, proszę %s."
141
-
142
- #: help/help.php:66
143
- msgid "contributing to us"
144
- msgstr "współpracujący z nami"
145
-
146
- #: help/help.php:126
147
- msgid ""
148
- " (How to modify the existing email content like Confirmation email, Welcome email, "
149
- "Admin emails)"
150
- msgstr ""
151
- " (Jak zmodyfikować istniejącą zawartość e-maili: Potwierdzających, Powitalnych, "
152
- "Administratora)"
153
-
154
- #: help/help.php:141
155
- msgid "How to Compose and Send Newsletter Emails?"
156
- msgstr "Jak tworzyć i wysyłać biuletyny E-mailowe?"
157
-
158
- #: help/help.php:144
159
- msgid ""
160
- "How to Configure and Send Post Notification emails to subscribers when new posts "
161
- "are published?"
162
- msgstr ""
163
- "Jak skonfigurować i wysłać e-maile Powiadamiające subskrybentów o publikacji "
164
- "nowego wpisu?"
165
-
166
- #: help/help.php:150
167
- msgid "How to check Sent emails reports?"
168
- msgstr "Jak sprawdzić raporty wysłanych e-maili?"
169
-
170
- #: help/help.php:156
171
- msgid "Subscribers are not receiving Emails?"
172
- msgstr "Subskrybenci nie otrzymują e-maili?"
173
-
174
- #: roles/roles-add.php:144
175
- msgid "Post Notifications Menu"
176
- msgstr "Menu Powiadomień"
177
-
178
- #: roles/roles-add.php:156
179
- msgid "Newsletters + Cron Settings Menu"
180
- msgstr "Menu ustawień biuletynów i Crona"
181
-
182
- #: roles/roles-add.php:168
183
- msgid "Email Settings Menu"
184
- msgstr "Menu ustawień e-maili"
185
-
186
- #: roles/roles-add.php:180
187
- msgid "Reports Menu"
188
- msgstr "Menu raportów"
189
-
190
- #: sendmail/sendmail.php:96
191
- msgid "Use this to send newsletter emails to your subscribers."
192
- msgstr "Użyj tego do przysłania e-maili z biuletynem do swoich subskrybentów."
193
-
194
- #: sentmail/sentmail-show.php:99
195
- msgid "It will show reports for all Newsletters & Post Notification emails sent."
196
- msgstr "To pokaże raporty wysłania e-maili wszystkich biuletynów i powiadomień."
197
-
198
- #: settings/settings-edit.php:204
199
- msgid "Sender of Notifications"
200
- msgstr "Nadawca Powiadomień"
201
-
202
- #: settings/settings-edit.php:206
203
- msgid ""
204
- "Choose a FROM name and FROM email address for all the emails to be sent from this "
205
- "plugin."
206
- msgstr ""
207
- "Wybierz z nazwę OD i adres e-mail OD dla wszystkich e-maili, które mają być "
208
- "wysyłane z tej wtyczki."
209
-
210
- #: settings/settings-edit.php:215
211
- msgid "Mail Type"
212
- msgstr "Typ poczty"
213
-
214
- #: settings/settings-edit.php:216
215
- msgid ""
216
- "Option 1 & 2 is to send mails with default Wordpress method wp_mail(). Option 3 & "
217
- "4 is to send mails with PHP method mail()."
218
- msgstr ""
219
- "Opcje 1 i 2 służą do wysyłania e-maili z domyślnej metody wp_mail() Wordpressa. "
220
- "Opcje 3 i 4 używają do wysyłania e-maili metodę PHP mail()."
221
-
222
- #: settings/settings-edit.php:230
223
- msgid "Opt-in Option"
224
- msgstr "Opcja Opt-in"
225
-
226
- #: settings/settings-edit.php:231
227
- msgid ""
228
- "Double Opt In means subscribers need to confirm their email address by an "
229
- "activation link sent them on a activation email message.<br />Single Opt In means "
230
- "subscribers do not need to confirm their email address."
231
- msgstr ""
232
- "Podwójne Opt-In oznacza, że abonenci muszą potwierdzić swój adres e-mail przez "
233
- "link aktywacyjny wysłany w wiadomości aktywacyjnej. <br /> Pojedyncze Opt-in "
234
- "oznacza, że abonenci nie muszą potwierdzać swojego adresu e-mail."
235
-
236
- #: settings/settings-edit.php:243
237
- msgid ""
238
- "Select image size for ###POSTIMAGE### to be shown in the Post Notification Emails."
239
- msgstr ""
240
- "Wybierz rozmiar obrazu dla ###POSTIMAGE### który będzie wyświetlany w E-mailu "
241
- "Powiadamiającym."
242
-
243
- #: settings/settings-edit.php:255
244
- msgid "Double Opt In Mail Subject (Confirmation Email)"
245
- msgstr "Podwójne Opt-in Temat listu (e-mail Potwierdzający)"
246
-
247
- #: settings/settings-edit.php:256
248
- msgid ""
249
- "Enter the subject for the confirmation email to be sent Double Opt In whenever a "
250
- "user signs up."
251
- msgstr ""
252
- "Wpisz temat dla e-maila potwierdzającego wysłanego przy podwójnym Opt-in w każdym "
253
- "przypadku, gdy użytkownik go potwierdzi."
254
-
255
- #: settings/settings-edit.php:262
256
- msgid "Double Opt In Mail Content (Confirmation Email)"
257
- msgstr "Zawartość maila przy podwójnym Opt-in (e-mail Potwierdzający)"
258
-
259
- #: settings/settings-edit.php:263
260
- msgid ""
261
- "Enter the content for the confirmation email to be sent for Double Opt In whenever "
262
- "a user signs up. (Keyword: ###NAME###)"
263
- msgstr ""
264
- "Wprowadź treść wiadomości dla e-maila potwierdzającego, które będą wysłane do "
265
- "podwójnego Opt-In zawsze gdy użytkownik się zarejestruje. (Klucz: ###NAME###)"
266
-
267
- #: settings/settings-edit.php:269
268
- msgid "Double Opt In Confirmation Link"
269
- msgstr "Link potwierdzający podwójnego Opt-In."
270
-
271
- #: settings/settings-edit.php:270 settings/settings-edit.php:313
272
- msgid "It is a readonly field and you are advised not to modify it."
273
- msgstr "Jest to pole tylko do odczytu i nie zaleca się go zmodyfikować."
274
-
275
- #: settings/settings-edit.php:276
276
- msgid ""
277
- "Text to display after Email is successfully subscribed from Double Opt In "
278
- "(confirmation) Email"
279
- msgstr ""
280
- "Tekst wyświetlany po pomyślnej akceptacji subskrypcji przez e-mail potwierdzający "
281
- "w podwójnym Opt-In"
282
-
283
- #: settings/settings-edit.php:277
284
- msgid ""
285
- "This text will be displayed once user clicks on email confirmation link from the "
286
- "Double Opt In (confirmation) Email."
287
- msgstr ""
288
- "Ten tekst będzie wyświetlany gdy użytkownik kliknie na link z e-maila "
289
- "potwierdzającego w podwójnym Opt-In."
290
-
291
- #: settings/settings-edit.php:284
292
- msgid "Subscriber Welcome Email"
293
- msgstr "E-mail witający subskrybenta"
294
-
295
- #: settings/settings-edit.php:285
296
- msgid ""
297
- "To send welcome email to subscriber after successful signup. This option must be "
298
- "set to YES."
299
- msgstr ""
300
- "By wysłać mail powitalny do subskrybenta po pomyślnej rejestracji ta opcja musi "
301
- "być ustawiona na YES (TAK)"
302
-
303
- #: settings/settings-edit.php:296
304
- msgid "Subscriber Welcome Email Subject"
305
- msgstr "Temat e-maila witającego subskrybenta"
306
-
307
- #: settings/settings-edit.php:297
308
- msgid ""
309
- "Enter the subject for the subscriber welcome email. This will be sent whenever a "
310
- "user's email is either confirmed (if Double Opt In) / subscribed (if Single Op In) "
311
- "successfully."
312
- msgstr ""
313
- "Wprowadź temat e-maila witającego subskrybenta. Będzie on wysłany gdy subskrypcja "
314
- "zostanie potwierdzona zarówno przez podwójne jak i pojedyncze Opt-In. "
315
-
316
- #: settings/settings-edit.php:303
317
- msgid "Subscriber Welcome Email Content"
318
- msgstr "Treść e-maila witającego subskrybenta"
319
-
320
- #: settings/settings-edit.php:304
321
- msgid ""
322
- "Enter the content for the subscriber welcome email whenever a user's email is "
323
- "either confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully. "
324
- "(Keyword: ###NAME###)"
325
- msgstr ""
326
- "Wprowadź treść e-maila witającego subskrybenta. Będzie on wysłany gdy subskrypcja "
327
- "zostanie potwierdzona zarówno przez podwójne jak i pojedyncze Opt-In. (Klucz: "
328
- "###NAME###)"
329
-
330
- #: settings/settings-edit.php:312
331
- msgid "Unsubscribe Link"
332
- msgstr "Link anulujący subskrypcję."
333
-
334
- #: settings/settings-edit.php:319
335
- msgid "Unsubscribe Text in Email"
336
- msgstr "Tekst anulujący subskrypcję w Email Subscribers"
337
-
338
- #: settings/settings-edit.php:320
339
- msgid ""
340
- "Enter the text for the unsubscribe link. This text is added with unsubscribe link "
341
- "in the emails. (Keyword: ###LINK###)"
342
- msgstr ""
343
- "Wprowadź tekst dla linku anulującego subskrypcję. Ten tekst będzie dodany z "
344
- "linkiem anulującym subskrypcję do e-maila. (Klucz: ###LINK###)"
345
-
346
- #: settings/settings-edit.php:326
347
- msgid "Text to display after Email is unsubscribed"
348
- msgstr "Tekst do wyświetlenia po anulowaniu subskrypcji."
349
-
350
- #: settings/settings-edit.php:327
351
- msgid "This text will be displayed once user clicks on unsubscribe link."
352
- msgstr ""
353
- "Ten tekst będzie wyświetlany gdy użytkownik kliknie link anulujący subskrypcję."
354
-
355
- #: settings/settings-edit.php:334
356
- msgid "Error in Confirmation Link"
357
- msgstr "Błąd w linku potwierdzającym."
358
-
359
- #: settings/settings-edit.php:335
360
- msgid ""
361
- "Default message to display if there is any issue while clicking on confirmation "
362
- "link from the Double Opt In (confirmation) Emails."
363
- msgstr ""
364
- "Domyślna wiadomość wyświetlana, jeśli pojawi się jakiś problem podczas klikania w "
365
- "link potwierdzający przy E-mailowym Podwójnym Opt-In (potwierdzeniu) ."
366
-
367
- #: settings/settings-edit.php:341
368
- msgid "Error in Unsubscribe Link"
369
- msgstr "Błąd w linku anulującym subskrypsję."
370
-
371
- #: settings/settings-edit.php:342
372
- msgid ""
373
- "Default message to display if there is any issue while clicking on unsubscribe "
374
- "link from the Emails."
375
- msgstr ""
376
- "Domyślna wiadomość wyświetlana, jeśli pojawi się jakiś problem podczas klikania w "
377
- "link anulujący subskrypcję w Emails"
378
-
379
- #: settings/settings-edit.php:349
380
- msgid "Admin Email Addresses"
381
- msgstr "Adresy e-mail administratora"
382
-
383
- #: settings/settings-edit.php:350
384
- msgid ""
385
- "Enter the admin email addresses that should receive notifications (separated by "
386
- "comma)."
387
- msgstr ""
388
- "Wprowadź adresy e-mail administratora na które powinny przychodzić powiadomienia. "
389
- "(adresy oddzielaj przecinkami)"
390
-
391
- #: settings/settings-edit.php:356
392
- msgid "Notify Admin about New Subscriber"
393
- msgstr "Powiadom administratora o nowym Subskrybencie."
394
-
395
- #: settings/settings-edit.php:357
396
- msgid ""
397
- "To send admin email notifications for the new subscriber. This option must be set "
398
- "to YES."
399
- msgstr ""
400
- "By wysłać e-mail powiadamiający administratora o nowym subskrybencie ta opcja musi "
401
- "być ustawiona na YES (TAK)"
402
-
403
- #: settings/settings-edit.php:369
404
- msgid "Admin Email Subject"
405
- msgstr "Treść e-maila administratora"
406
 
407
- #: settings/settings-edit.php:370
408
- msgid ""
409
- "Enter the subject for the admin email. This will be sent whenever a new email is "
410
- "added and confirmed."
411
- msgstr ""
412
- "Wprowadź temat e-maila administratora. Będzie wysyłany kiedy tylko nowy e-mail "
413
- "zostanie dodany i zatwierdzony."
414
 
415
- #: settings/settings-edit.php:376
416
- msgid "Admin Email Content"
417
- msgstr "Treść e-maila administratora"
418
 
419
- #: settings/settings-edit.php:377
420
- msgid ""
421
- "Enter the email content for the admin email. This will be sent whenever a new "
422
- "email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)"
423
- msgstr ""
424
- "Wprowadź treść e-maila administratora. Będzie wysyłany kiedy tylko nowy e-mail "
425
- "zostanie dodany i zatwierdzony. (Klucz: ###NAME###, ###EMAIL###)"
426
 
427
- #: settings/settings-edit.php:384
428
- msgid "Sent Report Subject"
429
- msgstr "Temat wysłanego raportu"
430
 
431
- #: settings/settings-edit.php:385
432
- msgid "Enter the subject for the sent email report. It will be mailed to Admin."
433
- msgstr ""
434
- "Wprowadź temat dla raportu wysłanych e-maili. Będzie wysyłany do administratora."
435
 
436
- #: settings/settings-edit.php:391
437
- msgid "Sent Report Content"
438
- msgstr "Treść wysłanego raportu"
439
 
440
- #: settings/settings-edit.php:392
441
- msgid ""
442
- "Enter the content for the sent mail report. It will be mailed to Admin. (Keyword: "
443
- "###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
444
- msgstr ""
445
- "Wprowadź treść dla raportu wysłanych e-maili. Będzie wysyłany do administratora. "
446
- "(Klucz: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
447
 
448
- #: subscribers/view-subscriber-edit.php:121
449
- msgid "Subscriber's Full Name"
450
- msgstr "Imię i Nazwisko subskrybenta"
 
451
 
452
- #: subscribers/view-subscriber-edit.php:131
453
- msgid "Subscriber's Email Address"
454
- msgstr "Adres e-mail subskrybenta"
455
 
456
- #: subscribers/view-subscriber-show.php:44
457
- msgid "Selected details does not exists."
458
- msgstr "Wybrane szczegóły nie istnieją. "
459
 
460
- #: subscribers/view-subscriber-show.php:74 subscribers/view-subscriber-show.php:133
461
- msgid "Confirmation emails Resent Successfully."
462
- msgstr "Poprawnie wysłano e-maile potwierdzające. "
463
 
464
- #: subscribers/view-subscriber-show.php:99 subscribers/view-subscriber-show.php:138
465
- #: subscribers/view-subscriber-show.php:176 subscribers/view-subscriber-show.php:215
466
- msgid "No record was selected."
467
- msgstr "Nie zaznaczono żadnego rekordu."
468
 
469
- #: subscribers/view-subscriber-show.php:162
470
- msgid "Subscribers Group updated."
471
- msgstr "Grupę subskrybentów zaktualizowano."
 
472
 
473
- #: subscribers/view-subscriber-show.php:167
474
- msgid "Please select New group to update."
475
- msgstr "Proszę wybrać Nową grupęs do aktualizacji."
476
 
477
- #: subscribers/view-subscriber-show.php:201
478
- msgid "Subscribers Status updated."
479
- msgstr "Status subskrybentów zaktualizowano."
 
 
 
 
480
 
481
- #: subscribers/view-subscriber-show.php:206
482
- msgid "Please select New Status to update."
483
- msgstr "Proszę wybrać Nowy Status do aktualizacji."
484
 
485
- #: subscribers/view-subscriber-show.php:280
486
- msgid "Update Subscribers Status"
487
- msgstr " Uaktualnienie Statusu Subskrybentów "
488
 
489
- #: subscribers/view-subscriber-show.php:356 subscribers/view-subscriber-show.php:370
490
- msgid "Signup Date<br>(YYYY-MM-DD)"
491
- msgstr " Data rejestracji <br>(YYYY-MM-DD)"
 
492
 
493
- #. Plugin URI of the plugin/theme
494
- #. Author URI of the plugin/theme
495
- msgid "http://www.icegram.com/"
496
- msgstr "http://www.icegram.com/"
 
 
 
 
497
 
498
  #: subscribers/view-subscriber-add.php:112 subscribers/view-subscriber-edit.php:111
499
  #: subscribers/view-subscriber-export.php:28
500
- #: subscribers/view-subscriber-import.php:144
501
- #: subscribers/view-subscriber-show.php:244 subscribers/view-subscriber-sync.php:142
502
  #, fuzzy
503
  msgid "Sync"
504
  msgstr "Synchronizuj"
@@ -519,14 +140,14 @@ msgstr "<span style=\"color:#999900\">Odsubskrybowany</span>"
519
  msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
520
  msgstr "<span style=\"color:#0000FF\">Pojedynczy Opt-In</span>"
521
 
 
 
 
 
522
  #: classes/es-common.php:23
523
  msgid "<span style=\"color:#999900;\">Nodata</span>"
524
  msgstr "<span style=\"color:#999900;\">Brak danych</span>"
525
 
526
- #: classes/es-common.php:26
527
- msgid "<span style=\"color:#FF0000\">Disable</span>"
528
- msgstr "<span style=\"color:#FF0000\">Wyłacz</span>"
529
-
530
  #: classes/es-common.php:29
531
  msgid "<span style=\"color:#FF0000\">In Queue</span>"
532
  msgstr "<span style=\"color:#FF0000\">W kolejce</span>"
@@ -535,24 +156,16 @@ msgstr "<span style=\"color:#FF0000\">W kolejce</span>"
535
  msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
536
  msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Wyślij</span>"
537
 
538
- #: classes/es-common.php:35
539
- msgid "<span style=\"color:#ffd700;font-weight:bold;\">Cron Mail</span>"
540
- msgstr "<span style=\"color:#ffd700;font-weight:bold;\">Cron Mail</span>"
541
-
542
- #: classes/es-common.php:38
543
- msgid "<span style=\"color:#993399;\">Instant Mail</span>"
544
- msgstr "<span style=\"color:#993399;\">Szybki Mail</span>"
545
-
546
- #: classes/es-loadwidget.php:24 classes/es-register.php:499
547
  #: subscribers/view-subscriber-show.php:353 subscribers/view-subscriber-show.php:367
548
  msgid "Name"
549
  msgstr "Nazwa"
550
 
551
- #: classes/es-loadwidget.php:29 classes/es-register.php:504
552
  msgid "Email *"
553
  msgstr "e-mail *"
554
 
555
- #: classes/es-loadwidget.php:34 classes/es-register.php:509
556
  msgid "Subscribe"
557
  msgstr "Subskrypcja"
558
 
@@ -566,11 +179,37 @@ msgstr "Email Subscribers"
566
  msgid "Subscribers"
567
  msgstr "Subskrybujący"
568
 
569
- #: classes/es-register.php:145 classes/es-register.php:146
570
- #: compose/compose-show.php:63
571
  msgid "Compose"
572
  msgstr "Układ"
573
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
574
  #: classes/es-register.php:166
575
  msgid "Help & Info"
576
  msgstr "Pomoc i Informacje"
@@ -604,6 +243,11 @@ msgctxt "view-subscriber-enhanced-select"
604
  msgid "Please select the bulk action."
605
  msgstr "Proszę wybierz masowe działanie."
606
 
 
 
 
 
 
607
  #: classes/es-register.php:184
608
  msgctxt "view-subscriber-enhanced-select"
609
  msgid ""
@@ -618,11 +262,21 @@ msgctxt "view-subscriber-enhanced-select"
618
  msgid "Please select new subscriber group."
619
  msgstr "Proszę wybrać nową grupę subskrybenta."
620
 
 
 
 
 
 
621
  #: classes/es-register.php:187
622
  msgctxt "view-subscriber-enhanced-select"
623
  msgid "Do you want to update subscribers group?"
624
  msgstr "Czy chcesz zaktualizować grupę subskrybentów?"
625
 
 
 
 
 
 
626
  #: classes/es-register.php:189
627
  msgctxt "view-subscriber-enhanced-select"
628
  msgid "Do you want to export the emails?"
@@ -630,8 +284,7 @@ msgstr "Czy chcesz wyeksportować wiadomości e-mail?"
630
 
631
  #: classes/es-register.php:190
632
  msgctxt "view-subscriber-enhanced-select"
633
- msgid ""
634
- "Please select only csv file. Please check official website for csv structure.."
635
  msgstr ""
636
  "Proszę wybrać tylko plik CSV. Proszę sprawdzić strukturę pliku CSV na oficjalnej "
637
  "stronie."
@@ -829,39 +482,38 @@ msgctxt "widget-page-enhanced-select"
829
  msgid "There was a problem with the request."
830
  msgstr "Wystąpił problem z żądaniem."
831
 
832
- #: classes/es-register.php:408
833
  msgid ""
834
- "Email Subscribers recommends free plugin <b>Rainmaker</b> to collect leads "
835
- "instantly"
836
  msgstr ""
837
- "Email Subscribers zaleca darmową wtyczkę <b>Rainmaker</b> zbierającą "
838
- "natychmiastowe wskazówki"
839
 
840
- #: classes/es-register.php:409
841
  msgid "Yes, I want this"
842
  msgstr "Tak, chcę to."
843
 
844
- #: classes/es-register.php:409
845
  msgid "No, I don't want it"
846
  msgstr "Nie, nie chcę tego."
847
 
848
- #: classes/es-register.php:544
849
  msgid "Widget Title"
850
  msgstr "Tytuł "
851
 
852
- #: classes/es-register.php:548
853
  msgid "Display Name Field"
854
  msgstr "Wyświetl nazwę pola"
855
 
856
- #: classes/es-register.php:555
857
  msgid "Short Description"
858
  msgstr "Krótki opis"
859
 
860
- #: classes/es-register.php:557
861
  msgid "Short description about your subscription form."
862
  msgstr "Krótki opis twojego formularza subskrypcji."
863
 
864
- #: classes/es-register.php:560
865
  msgid "Subscriber Group"
866
  msgstr "Grupa subskrybenta."
867
 
@@ -873,6 +525,10 @@ msgstr "Proszę podać nagłówek szablonu."
873
  msgid "Template successfully created. "
874
  msgstr "Szablon utworzony poprawnie."
875
 
 
 
 
 
876
  #: compose/compose-add.php:74 compose/compose-edit.php:85
877
  #: compose/compose-preview.php:27 compose/compose-show.php:65 cron/cron-add.php:79
878
  #: notification/notification-add.php:112 notification/notification-edit.php:123
@@ -881,27 +537,15 @@ msgstr "Szablon utworzony poprawnie."
881
  #: sentmail/sentmail-preview.php:27 sentmail/sentmail-show.php:96
882
  #: settings/settings-edit.php:197 subscribers/view-subscriber-add.php:113
883
  #: subscribers/view-subscriber-edit.php:112 subscribers/view-subscriber-export.php:29
884
- #: subscribers/view-subscriber-import.php:145
885
- #: subscribers/view-subscriber-show.php:245 subscribers/view-subscriber-sync.php:91
886
  msgid "Help"
887
  msgstr "Pomoc"
888
 
889
- #: compose/compose-add.php:77 compose/compose-edit.php:88
890
- msgid "Select your Mail Type"
891
- msgstr "Wybierz typ Maila"
892
-
893
- #: compose/compose-add.php:84 compose/compose-edit.php:95
894
- msgid "Enter Mail Subject"
895
- msgstr "Wprowadź temat maila"
896
-
897
  #: compose/compose-add.php:86 compose/compose-edit.php:97
898
  msgid "Keyword: ###POSTTITLE###"
899
  msgstr "Słowo kluczowe: ###POSTTITLE###"
900
 
901
- #: compose/compose-add.php:88 compose/compose-edit.php:99
902
- msgid "Enter Content for your Mail"
903
- msgstr "Wpisz zawartość Maila"
904
-
905
  #: compose/compose-add.php:92 compose/compose-edit.php:103
906
  #, c-format
907
  msgid ""
@@ -918,8 +562,7 @@ msgid "Available Keywords"
918
  msgstr "Dostępne słowa kluczowe"
919
 
920
  #: compose/compose-add.php:96 compose/compose-edit.php:107
921
- #: compose/compose-show.php:77 compose/compose-show.php:85
922
- #: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:85
923
  #: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
924
  #: subscribers/view-subscriber-show.php:354 subscribers/view-subscriber-show.php:368
925
  msgid "Status"
@@ -934,7 +577,7 @@ msgid "Please select your mail status"
934
  msgstr "Proszę wybierz status twojego maila."
935
 
936
  #: compose/compose-add.php:104 compose/compose-edit.php:116 cron/cron-add.php:119
937
- #: notification/notification-add.php:251 notification/notification-edit.php:291
938
  #: roles/roles-add.php:206 subscribers/view-subscriber-edit.php:190
939
  msgid "Save"
940
  msgstr "Zapisz"
@@ -951,6 +594,10 @@ msgstr "Ups, wybrane dane nie istnieją."
951
  msgid "Template successfully updated. "
952
  msgstr "Szablon zaktualizowany poprawnie."
953
 
 
 
 
 
954
  #: compose/compose-edit.php:84 compose/compose-show.php:64
955
  #: notification/notification-edit.php:122 notification/notification-show.php:52
956
  msgid "Add New"
@@ -960,8 +607,8 @@ msgstr "Dodaj Nowy"
960
  msgid "Preview Mail"
961
  msgstr "Podgląd poczty"
962
 
963
- #: compose/compose-preview.php:39 compose/compose-show.php:103
964
- #: notification/notification-show.php:96 subscribers/view-subscriber-show.php:398
965
  msgid "Edit"
966
  msgstr "Edytuj"
967
 
@@ -975,32 +622,22 @@ msgstr "Kliknij Tutaj"
975
  msgid "Selected record deleted."
976
  msgstr "Wybrany zapis został usunięty."
977
 
978
- #: compose/compose-show.php:76 compose/compose-show.php:84
979
- msgid "Email subject"
980
- msgstr "Temat maila"
981
-
982
- #: compose/compose-show.php:78 compose/compose-show.php:86
983
- #: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:86
984
- #: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
985
- msgid "Type"
986
- msgstr "Typ"
987
-
988
- #: compose/compose-show.php:79 compose/compose-show.php:87
989
  msgid "Actions"
990
  msgstr "Działania"
991
 
992
- #: compose/compose-show.php:104 notification/notification-show.php:99
993
  #: subscribers/view-subscriber-show.php:277 subscribers/view-subscriber-show.php:403
994
  msgid "Delete"
995
  msgstr "Kasuj"
996
 
997
- #: compose/compose-show.php:105 sentmail/sentmail-show.php:110
998
  #: sentmail/sentmail-show.php:123
999
  msgid "Preview"
1000
  msgstr "Podgląd"
1001
 
1002
- #: compose/compose-show.php:113 notification/notification-show.php:139
1003
- #: sentmail/deliverreport-show.php:113 sentmail/sentmail-show.php:166
1004
  #: subscribers/view-subscriber-show.php:426
1005
  msgid "No records available."
1006
  msgstr "Brak dostępnych rekordów."
@@ -1009,33 +646,81 @@ msgstr "Brak dostępnych rekordów."
1009
  msgid "Please enter valid mail count."
1010
  msgstr "Proszę podać poprawną liczbę e-maili."
1011
 
 
 
 
 
1012
  #: cron/cron-add.php:86
1013
  msgid "Cron job URL"
1014
  msgstr "URL zadania Cron."
1015
 
 
 
 
 
 
 
 
 
1016
  #: cron/cron-add.php:96
1017
  msgid "Mail Count"
1018
  msgstr "Ilość wiadomości"
1019
 
 
 
 
 
 
 
 
 
1020
  #: cron/cron-add.php:107
1021
  msgid "Admin Report"
1022
  msgstr "Raport administratora."
1023
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1024
  #: cron/cron-add.php:127
1025
  msgid ""
1026
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1027
- "schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
1028
  msgstr ""
1029
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1030
- "schedule-cron-emails-in-parallels-plesk/\">Konfiguracja Cron w panelu Plesk</a>"
1031
 
1032
  #: cron/cron-add.php:128
1033
  msgid ""
1034
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1035
- "schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
 
 
 
 
 
 
 
 
1036
  msgstr ""
1037
- "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
1038
- "schedule-cron-emails-in-cpanel/\">Konfiguracja Cron w cPanel</a>"
1039
 
1040
  #: export/export-email-address.php:33 export/export-email-address.php:37
1041
  msgid "Unexpected url submit has been detected"
@@ -1055,6 +740,15 @@ msgstr ""
1055
  msgid "For more help and tips..."
1056
  msgstr "Aby uzyskać więcej pomocy i wskazówek…"
1057
 
 
 
 
 
 
 
 
 
 
1058
  #: help/help.php:98
1059
  msgid "Frequently Asked Questions"
1060
  msgstr "Często zadawane pytania (FAQ)"
@@ -1076,6 +770,14 @@ msgstr "Jak umieścić blok Subskrypcji na stronie?"
1076
  msgid "General Plugin Settings"
1077
  msgstr "Ogólne ustawienia Wtyczki."
1078
 
 
 
 
 
 
 
 
 
1079
  #: help/help.php:129
1080
  msgid "How to Import or Export Email Addresses?"
1081
  msgstr "Jak Importować lub Eksportować Adresy Maili? "
@@ -1092,15 +794,35 @@ msgstr "Jak dodać do maila link rezygnacji z subskrypcji?"
1092
  msgid "What are Static Templates and Dynamic Templates?"
1093
  msgstr "Co to są Szablony Statyczne i Szablony Dynamiczne?"
1094
 
 
 
 
 
 
 
 
 
 
 
 
 
1095
  #: help/help.php:147
1096
  msgid "How to Send a sample new post notification email to testgroup/myself?"
1097
  msgstr ""
1098
  "Jak wysłać przykład nowego e-maila z powiadomieniem do grupy testowej / siebie?"
1099
 
 
 
 
 
1100
  #: help/help.php:153
1101
  msgid "How to Add/Update Existing Subscribers Group?"
1102
  msgstr "Jak dodać/uaktualnić istniejącą grupę subskrybentów?"
1103
 
 
 
 
 
1104
  #: help/help.php:159
1105
  msgid "How to show subscribe form inside a popup?"
1106
  msgstr "Jak pokazać formularz subskrypcji wewnątrz popup?"
@@ -1131,8 +853,7 @@ msgstr "Często zadawane pytania."
1131
 
1132
  #: job/es-optin.php:57 job/es-optin.php:67 job/es-unsubscribe.php:54
1133
  #: job/es-unsubscribe.php:61
1134
- msgid ""
1135
- "Oops.. We are getting some technical error. Please try again or contact admin."
1136
  msgstr ""
1137
  "Ups... Pojawił się problem techniczny. Spróbuj raz jeszcze lub skontaktuj się z "
1138
  "administratorem."
@@ -1173,15 +894,10 @@ msgstr "Wybierz Grupę Subskrybentów"
1173
  #: notification/notification-edit.php:134 notification/notification-edit.php:167
1174
  #: sendmail/sendmail.php:109 sendmail/sendmail.php:136 sendmail/sendmail.php:150
1175
  #: subscribers/view-subscriber-add.php:161 subscribers/view-subscriber-edit.php:161
1176
- #: subscribers/view-subscriber-import.php:189
1177
- #: subscribers/view-subscriber-sync.php:118
1178
  msgid "Select"
1179
  msgstr "Wybierz"
1180
 
1181
- #: notification/notification-add.php:141 notification/notification-edit.php:161
1182
- msgid "Select Notification Mail Subject"
1183
- msgstr "Wybierz temat maila powiadomienia."
1184
-
1185
  #: notification/notification-add.php:142 notification/notification-edit.php:162
1186
  msgid "(Use compose menu to create new)"
1187
  msgstr "(Użyj menu kompozycji by stworzyć nowy)"
@@ -1190,42 +906,26 @@ msgstr "(Użyj menu kompozycji by stworzyć nowy)"
1190
  msgid "Select Post Categories"
1191
  msgstr "Wybierz Kategorie wpisów"
1192
 
1193
- #: notification/notification-add.php:193 notification/notification-edit.php:224
1194
  msgid "Check All"
1195
  msgstr "Wybierz wszystko"
1196
 
1197
- #: notification/notification-add.php:194 notification/notification-edit.php:225
1198
  msgid "Uncheck All"
1199
  msgstr "Odznacz wszystko"
1200
 
1201
- #: notification/notification-add.php:200 notification/notification-edit.php:232
1202
  msgid "Select your Custom Post Type"
1203
  msgstr "Wybierz własny typ wpisu"
1204
 
1205
- #: notification/notification-add.php:201 notification/notification-edit.php:233
1206
  msgid "(Optional)"
1207
  msgstr "(opcjonalny)"
1208
 
1209
- #: notification/notification-add.php:230 notification/notification-edit.php:267
1210
  msgid "No Custom Post Types Available"
1211
  msgstr "Nie są dostępne własne typy wpisów"
1212
 
1213
- #: notification/notification-add.php:237 notification/notification-edit.php:275
1214
- msgid "Select Notification Status"
1215
- msgstr "Wybierz stan powiadomienia"
1216
-
1217
- #: notification/notification-add.php:241 notification/notification-edit.php:280
1218
- msgid "Send mail immediately when new post is published"
1219
- msgstr "Wyślij mail od razu gdy tylko nowy wpis zostanie opublikowany"
1220
-
1221
- #: notification/notification-add.php:242 notification/notification-edit.php:281
1222
- msgid "Add to cron when new post is published and send via cron job"
1223
- msgstr "Dodaj do Crona, gdy zostanie opublikowany nowy wpis i wyślij przez Crona"
1224
-
1225
- #: notification/notification-add.php:243 notification/notification-edit.php:282
1226
- msgid "Disable notification"
1227
- msgstr "Wyłącz powiadomienia"
1228
-
1229
  #: notification/notification-edit.php:48
1230
  msgid "Please select subscribers group"
1231
  msgstr "Proszę wybrać grupę subskrybentów."
@@ -1246,30 +946,14 @@ msgstr "Edytuj zawiadomienie."
1246
  msgid "Update Subscribers Group"
1247
  msgstr "Uaktualnij grupę subskrybentów"
1248
 
1249
- #: notification/notification-show.php:64 notification/notification-show.php:72
1250
- msgid "Mail Subject"
1251
- msgstr "Temat maila"
1252
-
1253
- #: notification/notification-show.php:65 notification/notification-show.php:73
1254
  msgid "Subscribers Group"
1255
  msgstr "Grupa subskrybentów."
1256
 
1257
- #: notification/notification-show.php:66 notification/notification-show.php:74
1258
- msgid "Categories / Custom Post"
1259
- msgstr "Kategorie / niestandardowy wpis"
1260
-
1261
- #: notification/notification-show.php:67 notification/notification-show.php:75
1262
  msgid "Notification Status"
1263
  msgstr "Status powiadomienia."
1264
 
1265
- #: notification/notification-show.php:126
1266
- msgid "Send mail immediately when new post is published."
1267
- msgstr "Wyślij mail od razu gdy tylko nowy wpis zostanie opublikowany"
1268
-
1269
- #: notification/notification-show.php:128
1270
- msgid "Add to cron and send mail via cron job."
1271
- msgstr "Dodaj do Crona i wyślij przez Crona"
1272
-
1273
  #: roles/roles-add.php:52
1274
  msgid "Role Updated. "
1275
  msgstr "Rola zaakceptowana. "
@@ -1306,6 +990,22 @@ msgstr "Administrator/Edytor/Autor/Specjalista"
1306
  msgid "Compose Menu"
1307
  msgstr "Menu Kompozycji"
1308
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1309
  #: roles/roles-add.php:192
1310
  msgid "Help & Info Menu"
1311
  msgstr "Menu Pomocy i Informacji"
@@ -1334,6 +1034,10 @@ msgstr "Kliknij tutaj by wybrać Statystyki"
1334
  msgid "Oops.. We are getting some error. mail not sending."
1335
  msgstr "Ups… Pojawił się jakiś błąd. Mail nie został wysłany."
1336
 
 
 
 
 
1337
  #: sendmail/sendmail.php:104
1338
  msgid "Select Mail Subject from available list"
1339
  msgstr "Wybierz Temat Maila z listy możliwych"
@@ -1342,14 +1046,6 @@ msgstr "Wybierz Temat Maila z listy możliwych"
1342
  msgid "Select Mail Type"
1343
  msgstr "Wybierz Typ Maila"
1344
 
1345
- #: sendmail/sendmail.php:137
1346
- msgid "Send mail immediately"
1347
- msgstr "Wyślij mail natychmiast"
1348
-
1349
- #: sendmail/sendmail.php:138
1350
- msgid "Send mail via cron job"
1351
- msgstr "Wyślij mail przez Crona"
1352
-
1353
  #: sendmail/sendmail.php:145
1354
  msgid "Select Subscribers group to Send Mail"
1355
  msgstr "Wybierz grupę Subskrybentów do Wysłania Maila"
@@ -1366,8 +1062,8 @@ msgstr "Odbiorcy: %s"
1366
  #: sendmail/sendmail.php:182
1367
  msgid ""
1368
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend that "
1369
- "you change above Mail Type to Cron and Send Mail via Cron Job.</strong><br>Click "
1370
- "on Help for more information."
1371
  msgstr ""
1372
  "<br><br><strong>Ilość Odbiorców przekracza 100.<br>Zdecydowanie zalecamy zmianę "
1373
  "Typu Maili na Cron i wysyłkę maili przez zadania Cron.</strong><br>Aby uzyskać "
@@ -1397,33 +1093,28 @@ msgstr " &gt;&gt; "
1397
  msgid "Delivery Report"
1398
  msgstr "Raport dostarczenia"
1399
 
1400
- #: sentmail/deliverreport-show.php:70 sentmail/deliverreport-show.php:82
1401
- #: subscribers/view-subscriber-export.php:36
1402
- #: subscribers/view-subscriber-export.php:44 subscribers/view-subscriber-show.php:351
1403
- #: subscribers/view-subscriber-show.php:365
1404
  msgid "Sno"
1405
  msgstr "Sno"
1406
 
1407
- #: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:83
1408
  msgid "Email"
1409
  msgstr "Mail"
1410
 
1411
- #: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:84
1412
  msgid "Sent Date"
1413
  msgstr "Data wysyłki"
1414
 
1415
- #: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:87
1416
  msgid "Viewed Status"
1417
  msgstr "Status przeglądania"
1418
 
1419
- #: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:88
1420
  msgid "Viewed Date"
1421
  msgstr "Data przegladania"
1422
 
1423
- #: sentmail/deliverreport-show.php:77 sentmail/deliverreport-show.php:89
1424
- msgid "Database ID"
1425
- msgstr "ID bazy danych"
1426
-
1427
  #: sentmail/sentmail-preview.php:41
1428
  msgid "Back"
1429
  msgstr "Cofnij"
@@ -1432,125 +1123,377 @@ msgstr "Cofnij"
1432
  msgid "Successfully deleted all reports except latest 10."
1433
  msgstr "Pomyślnie usunięto wszystkie raporty z wyjątkiem ostatnich 10."
1434
 
1435
- #: sentmail/sentmail-show.php:109 sentmail/sentmail-show.php:122
1436
- msgid "View Reports"
1437
- msgstr "Pokaż raporty"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1438
 
1439
- #: sentmail/sentmail-show.php:111 sentmail/sentmail-show.php:124
1440
- msgid "Source"
1441
- msgstr "Żródło"
1442
 
1443
- #: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
1444
- msgid "Start Date"
1445
- msgstr "Data rozpoczęcia"
 
 
 
 
 
1446
 
1447
- #: sentmail/sentmail-show.php:115 sentmail/sentmail-show.php:128
1448
- msgid "End Date"
1449
- msgstr "Data zakończenia"
1450
 
1451
- #: sentmail/sentmail-show.php:116 sentmail/sentmail-show.php:129
1452
- msgid "Total"
1453
- msgstr "Całkowity"
 
 
 
 
 
 
1454
 
1455
- #: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
1456
- #: subscribers/view-subscriber-export.php:39
1457
- #: subscribers/view-subscriber-export.php:47 subscribers/view-subscriber-show.php:357
1458
- #: subscribers/view-subscriber-show.php:371
1459
- msgid "Action"
1460
- msgstr "Akcja"
1461
 
1462
- #: sentmail/sentmail-show.php:176
1463
- msgid "Optimize Table & Delete Records"
1464
- msgstr "Optymalizacja Tabeli i Usuwanie Rekordów"
1465
 
1466
- #: sentmail/sentmail-show.php:185
1467
  msgid ""
1468
- "Note: Please click on <strong>Optimize Table & Delete Records</strong> button to "
1469
- "delete all reports except latest 10."
1470
  msgstr ""
1471
- "Uwaga: Proszę kliknąć na <strong>Optymalizacja Tabeli i Usuwanie Rekordów</ "
1472
- "strong>, aby usunąć wszystkie raporty za wyjątkiem ostatnich 10."
1473
-
1474
- #: settings/setting-sync.php:15
1475
- msgid "Table sync completed successfully."
1476
- msgstr "Synchronizacja tabeli zakończona pomyślnie."
1477
 
1478
- #: settings/setting-sync.php:28
1479
- msgid "Sync plugin tables"
1480
- msgstr "Synchronizacja tabeli wtyczek"
1481
 
1482
- #: settings/setting-sync.php:32
1483
- msgid "Click to sync tables"
1484
- msgstr "Kliknij by synchronizować tabele"
 
1485
 
1486
- #: settings/settings-edit.php:116
1487
- msgid "Please enter sender of notifications from name."
1488
- msgstr "Proszę podać nadawcę powiadomień po nazwie."
1489
 
1490
- #: settings/settings-edit.php:121
1491
- msgid "Please enter sender of notifications from email."
1492
- msgstr "Proszę podać nadawcę powiadomień po adresie e-mail."
 
 
 
 
1493
 
1494
- #: settings/settings-edit.php:154
1495
- msgid "Settings Saved."
1496
- msgstr "Ustawienia zapisane."
1497
 
1498
- #: settings/settings-edit.php:157
1499
- msgid "Oops, unable to update."
1500
- msgstr "Ups, nie można zaktualizować."
 
 
 
 
1501
 
1502
- #: settings/settings-edit.php:220
1503
- msgid "1. WP HTML MAIL"
1504
- msgstr "1. WP HTML MAIL"
1505
 
1506
- #: settings/settings-edit.php:221
1507
- msgid "2. WP PLAINTEXT MAIL"
1508
- msgstr "2. WP PLAINTEXT MAIL"
 
 
 
 
1509
 
1510
- #: settings/settings-edit.php:222
1511
- msgid "3. PHP HTML MAIL"
1512
- msgstr "3. PHP HTML MAIL"
1513
 
1514
- #: settings/settings-edit.php:223
1515
- msgid "4. PHP PLAINTEXT MAIL"
1516
- msgstr "4. PHP PLAINTEXT MAIL"
 
 
 
 
1517
 
1518
- #: settings/settings-edit.php:235
1519
- msgid "Double Opt In"
1520
- msgstr "Podwójne Opt-In"
1521
 
1522
- #: settings/settings-edit.php:236 subscribers/view-subscriber-add.php:150
1523
- #: subscribers/view-subscriber-edit.php:149
1524
- #: subscribers/view-subscriber-import.php:177
1525
- #: subscribers/view-subscriber-show.php:302 subscribers/view-subscriber-show.php:329
1526
- msgid "Single Opt In"
1527
- msgstr "Pojedyncze Ot-In"
 
1528
 
1529
- #: settings/settings-edit.php:242
1530
- msgid "Image Size"
1531
- msgstr "Rozmiar obrazu"
1532
 
1533
- #: settings/settings-edit.php:247
1534
- msgid "Full Size"
1535
- msgstr "Pełny rozmiar"
 
 
 
 
1536
 
1537
- #: settings/settings-edit.php:248
1538
- msgid "Medium Size"
1539
- msgstr "Średni rozmiar"
1540
 
1541
- #: settings/settings-edit.php:249
1542
- msgid "Thumbnail"
1543
- msgstr "Miniatura"
 
1544
 
1545
- #: settings/settings-edit.php:289 settings/settings-edit.php:362
1546
- #: subscribers/view-subscriber-sync.php:106
1547
- msgid "YES"
1548
- msgstr "Tak"
1549
 
1550
- #: settings/settings-edit.php:290 settings/settings-edit.php:363
1551
- #: subscribers/view-subscriber-sync.php:105
1552
- msgid "NO"
1553
- msgstr "Nie"
 
 
 
1554
 
1555
  #: settings/settings-edit.php:402
1556
  msgid "Save Settings"
@@ -1569,8 +1512,8 @@ msgid ""
1569
  "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in the "
1570
  "group name."
1571
  msgstr ""
1572
- "Błąd: W nazwie grupy nie wolno używać znaków specjalnych: (['^$%&*()}{@#~?><>,|=_+"
1573
- "\\\"])."
1574
 
1575
  #: subscribers/view-subscriber-add.php:65
1576
  msgid "Subscriber has been saved."
@@ -1586,21 +1529,21 @@ msgstr "Błedny e-mail"
1586
 
1587
  #: subscribers/view-subscriber-add.php:109 subscribers/view-subscriber-edit.php:108
1588
  #: subscribers/view-subscriber-export.php:26
1589
- #: subscribers/view-subscriber-import.php:142
1590
- #: subscribers/view-subscriber-show.php:241 subscribers/view-subscriber-sync.php:88
1591
  msgid "Add New Subscriber"
1592
  msgstr "Dodaj Nowego Subskrybenta"
1593
 
1594
  #: subscribers/view-subscriber-add.php:110 subscribers/view-subscriber-edit.php:109
1595
  #: subscribers/view-subscriber-export.php:27
1596
- #: subscribers/view-subscriber-import.php:209
1597
- #: subscribers/view-subscriber-show.php:242 subscribers/view-subscriber-sync.php:89
1598
  msgid "Import"
1599
  msgstr "Import."
1600
 
1601
  #: subscribers/view-subscriber-add.php:111 subscribers/view-subscriber-edit.php:110
1602
- #: subscribers/view-subscriber-import.php:143
1603
- #: subscribers/view-subscriber-show.php:243 subscribers/view-subscriber-sync.php:90
1604
  msgid "Export"
1605
  msgstr "Export"
1606
 
@@ -1617,20 +1560,20 @@ msgid "Select Subscriber's Status"
1617
  msgstr "Wybierz Status Subskrybenta"
1618
 
1619
  #: subscribers/view-subscriber-add.php:147 subscribers/view-subscriber-edit.php:146
1620
- #: subscribers/view-subscriber-import.php:174
1621
- #: subscribers/view-subscriber-show.php:299 subscribers/view-subscriber-show.php:326
1622
  msgid "Confirmed"
1623
  msgstr "Potwierdzone"
1624
 
1625
  #: subscribers/view-subscriber-add.php:148 subscribers/view-subscriber-edit.php:147
1626
- #: subscribers/view-subscriber-import.php:175
1627
- #: subscribers/view-subscriber-show.php:300 subscribers/view-subscriber-show.php:327
1628
  msgid "Unconfirmed"
1629
  msgstr "Niepotwierdzone"
1630
 
1631
  #: subscribers/view-subscriber-add.php:149 subscribers/view-subscriber-edit.php:148
1632
- #: subscribers/view-subscriber-import.php:176
1633
- #: subscribers/view-subscriber-show.php:301 subscribers/view-subscriber-show.php:328
1634
  msgid "Unsubscribed"
1635
  msgstr "Niesubskrybowane"
1636
 
@@ -1662,6 +1605,14 @@ msgstr "Subskrybent już istnieje w tej grupie."
1662
  msgid "Edit Subscriber"
1663
  msgstr "Edytuj Subskrybenta"
1664
 
 
 
 
 
 
 
 
 
1665
  #: subscribers/view-subscriber-edit.php:141
1666
  msgid "Update Subscriber's Status"
1667
  msgstr "Aktualizuj Status Subskrybenta"
@@ -1674,13 +1625,11 @@ msgstr "Aktualizuj Grupę Subskrybenta"
1674
  msgid "Export Email Addresses"
1675
  msgstr "Eksportuj Adresy E-maili"
1676
 
1677
- #: subscribers/view-subscriber-export.php:37
1678
- #: subscribers/view-subscriber-export.php:45
1679
  msgid "Type of List to Export"
1680
  msgstr "Rodzaj Listy do Eksportu"
1681
 
1682
- #: subscribers/view-subscriber-export.php:38
1683
- #: subscribers/view-subscriber-export.php:46
1684
  msgid "Total Emails"
1685
  msgstr "Wszystkie E-maile"
1686
 
@@ -1692,8 +1641,7 @@ msgstr "1"
1692
  msgid "All Subscribers List"
1693
  msgstr "Lista Wszystkich Subskrybentów"
1694
 
1695
- #: subscribers/view-subscriber-export.php:55
1696
- #: subscribers/view-subscriber-export.php:61
1697
  #: subscribers/view-subscriber-export.php:67
1698
  msgid "Click to Export in CSV"
1699
  msgstr "Kliknij by wyeksportować do CSV"
@@ -1772,6 +1720,10 @@ msgstr "Wybierz Status e-maili Subskrybentów"
1772
  msgid "Select (or) Create Group for Subscribers"
1773
  msgstr "Wybierz (lub) stwórz Grupę dla Subskrybentów"
1774
 
 
 
 
 
1775
  #: subscribers/view-subscriber-show.php:55 subscribers/view-subscriber-show.php:94
1776
  msgid "Record deleted."
1777
  msgstr "Rekord usunięty."
@@ -1780,10 +1732,35 @@ msgstr "Rekord usunięty."
1780
  msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1781
  msgstr "By wysłać e-mail potwierdzający, zmień opcję Opt-in na Podwójne Opt In."
1782
 
 
 
 
 
 
 
 
 
 
1783
  #: subscribers/view-subscriber-show.php:114
1784
  msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1785
  msgstr "By wysłać mail potwierdzający, zmień opcję Opt-in na Podwójne Opt In."
1786
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1787
  #: subscribers/view-subscriber-show.php:276
1788
  msgid "Bulk Actions"
1789
  msgstr "Działania masowe"
@@ -1792,6 +1769,10 @@ msgstr "Działania masowe"
1792
  msgid "Resend Confirmation"
1793
  msgstr "Wyślij ponownie potwierdzenie"
1794
 
 
 
 
 
1795
  #: subscribers/view-subscriber-show.php:283
1796
  msgid "Select Group"
1797
  msgstr "Zaznacz grupę"
@@ -1852,6 +1833,10 @@ msgstr "Adres E-mail"
1852
  msgid "Group"
1853
  msgstr "Grupa"
1854
 
 
 
 
 
1855
  #: subscribers/view-subscriber-sync.php:35
1856
  msgid "Please select default group to newly registered user."
1857
  msgstr "Proszę wybrać domyślną grupę dla nowo zarejestrowanego użytkownik."
@@ -1876,14 +1861,10 @@ msgstr "Wybierz grupę, do której przypisani zostaną nowo rejestrowani użytko
1876
  msgid "Email Subscribers & Newsletters"
1877
  msgstr "Email Subscribers & Newsletters"
1878
 
1879
- #. Description of the plugin
1880
- msgid ""
1881
- "Add subscription forms on website, send HTML newsletters & automatically notify "
1882
- "subscribers about new blog posts once it gets published."
1883
- msgstr ""
1884
- "Dodaj formularz subskrypcji na stronię internetową, wyślij newslettery HTML i "
1885
- "automatyczne powiadomienia abonentów o nowych wpisach na blogu gdy zostaną "
1886
- "opublikowane."
1887
 
1888
  #. Author of the plugin
1889
  msgid "Icegram"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.2.7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-03-02 12:49:44+00:00\n"
6
+ "PO-Revision-Date: 2017-03-07 22:57+0100\n"
7
  "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: StoreApps <support@storeapps.org>\n"
9
  "Language: pl\n"
23
  "X-Loco-Target-Locale: pl_PL\n"
24
  "X-Poedit-SearchPath-0: ..\n"
25
 
26
+ #: classes/es-common.php:26
27
+ msgid "<span style=\"color:#FF0000\">Disabled</span>"
28
+ msgstr "<span style=\"color:#FF0000\">Wyłączony</span>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
 
30
+ #: classes/es-common.php:35
31
+ msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
32
+ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">przez Cron</span>"
 
 
 
 
33
 
34
+ #: classes/es-common.php:38
35
+ msgid "<span style=\"color:#993399;\">Immediately</span>"
36
+ msgstr "<span style=\"color:#993399;\">Natychmiast</span>"
37
 
38
+ #: compose/compose-add.php:77 compose/compose-edit.php:88
39
+ msgid "Select your Mail Template"
40
+ msgstr "Wybierz szablon e-maila"
 
 
 
 
41
 
42
+ #: compose/compose-add.php:79 compose/compose-edit.php:90
43
+ msgid "Newsletter"
44
+ msgstr "Biuletyn"
45
 
46
+ #: compose/compose-add.php:80 compose/compose-edit.php:91
47
+ msgid "Post Notification"
48
+ msgstr "Wpis"
 
49
 
50
+ #: compose/compose-add.php:84 compose/compose-edit.php:95
51
+ msgid "Enter your Email Subject"
52
+ msgstr "Wprowadź Temat e-maila"
53
 
54
+ #: compose/compose-add.php:88 compose/compose-edit.php:99
55
+ msgid "Enter Content for your Email"
56
+ msgstr "Wprowadź treść e-maila"
 
 
 
 
57
 
58
+ #: compose/compose-show.php:76 compose/compose-show.php:83
59
+ #: notification/notification-show.php:67 notification/notification-show.php:75
60
+ msgid "Email Subject"
61
+ msgstr "Temat e-maila"
62
 
63
+ #: compose/compose-show.php:77 compose/compose-show.php:84
64
+ msgid "Email Template"
65
+ msgstr "Szablon e-mail"
66
 
67
+ #: notification/notification-add.php:141 notification/notification-edit.php:161
68
+ msgid "Select Notification Email Subject"
69
+ msgstr "Wybierz Temat e-maila powiadomienia"
70
 
71
+ #: notification/notification-add.php:238 notification/notification-edit.php:274
72
+ msgid "Select Notification Status when a new post is published"
73
+ msgstr "Wybierz status powiadomienia gdy nowy wpis został opublikowany."
74
 
75
+ #: notification/notification-add.php:242 notification/notification-edit.php:278
76
+ #: notification/notification-show.php:129 sendmail/sendmail.php:137
77
+ msgid "Send email immediately"
78
+ msgstr "Wyślij e-mail natychmiast"
79
 
80
+ #: notification/notification-add.php:243 notification/notification-edit.php:279
81
+ #: notification/notification-show.php:131
82
+ msgid "Add to cron and send email via cron job"
83
+ msgstr "Dodaj do Cron i wyślij e-mail przez zadanie Cron"
84
 
85
+ #: notification/notification-add.php:244 notification/notification-edit.php:280
86
+ msgid "Disable email notification"
87
+ msgstr "Wyłącz powiadomienia e-mail"
88
 
89
+ #: notification/notification-show.php:56
90
+ msgid ""
91
+ "Use this to setup and send notification emails to your subscribers when a new post "
92
+ "is published in your blog."
93
+ msgstr ""
94
+ "Służy do konfiguracji i wysyłki e-maili z powiadomieniami do subskrybentów, kiedy "
95
+ "nowy wpis jest opublikowany na blogu."
96
 
97
+ #: notification/notification-show.php:69 notification/notification-show.php:77
98
+ msgid "Post Categories / Custom Post Types"
99
+ msgstr "Kategorie Wpisów / Domyślne Typy Wpisów"
100
 
101
+ #: sendmail/sendmail.php:138
102
+ msgid "Send email via cron job"
103
+ msgstr "Wyślij e-mail przez zadanie Cron"
104
 
105
+ #: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:84
106
+ #: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
107
+ msgid "Sent"
108
+ msgstr "Wyślij"
109
 
110
+ #. Description of the plugin/theme
111
+ msgid ""
112
+ "Add subscription forms on website, send HTML newsletters & automatically notify "
113
+ "subscribers about new blog posts once it is published."
114
+ msgstr ""
115
+ "Dodaj formularz subskrypcji na stronie internetowej, wyślij biuletyn HTML i "
116
+ "automatycznie powiadom subskrybentów o nowych wpisach na blogu kiedy tylko zostaną "
117
+ "opublikowane."
118
 
119
  #: subscribers/view-subscriber-add.php:112 subscribers/view-subscriber-edit.php:111
120
  #: subscribers/view-subscriber-export.php:28
121
+ #: subscribers/view-subscriber-import.php:144 subscribers/view-subscriber-show.php:244
122
+ #: subscribers/view-subscriber-sync.php:142
123
  #, fuzzy
124
  msgid "Sync"
125
  msgstr "Synchronizuj"
140
  msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
141
  msgstr "<span style=\"color:#0000FF\">Pojedynczy Opt-In</span>"
142
 
143
+ #: classes/es-common.php:20
144
+ msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
145
+ msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Obejrzane</span>"
146
+
147
  #: classes/es-common.php:23
148
  msgid "<span style=\"color:#999900;\">Nodata</span>"
149
  msgstr "<span style=\"color:#999900;\">Brak danych</span>"
150
 
 
 
 
 
151
  #: classes/es-common.php:29
152
  msgid "<span style=\"color:#FF0000\">In Queue</span>"
153
  msgstr "<span style=\"color:#FF0000\">W kolejce</span>"
156
  msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
157
  msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Wyślij</span>"
158
 
159
+ #: classes/es-loadwidget.php:24 classes/es-register.php:547
 
 
 
 
 
 
 
 
160
  #: subscribers/view-subscriber-show.php:353 subscribers/view-subscriber-show.php:367
161
  msgid "Name"
162
  msgstr "Nazwa"
163
 
164
+ #: classes/es-loadwidget.php:29 classes/es-register.php:552
165
  msgid "Email *"
166
  msgstr "e-mail *"
167
 
168
+ #: classes/es-loadwidget.php:34 classes/es-register.php:557
169
  msgid "Subscribe"
170
  msgstr "Subskrypcja"
171
 
179
  msgid "Subscribers"
180
  msgstr "Subskrybujący"
181
 
182
+ #: classes/es-register.php:145 classes/es-register.php:146 compose/compose-show.php:63
 
183
  msgid "Compose"
184
  msgstr "Układ"
185
 
186
+ #: classes/es-register.php:148 classes/es-register.php:149
187
+ #: notification/notification-show.php:51
188
+ msgid "Post Notifications"
189
+ msgstr "Powiadomienia pocztowe"
190
+
191
+ #: classes/es-register.php:151 classes/es-register.php:152 sendmail/sendmail.php:92
192
+ msgid "Newsletters"
193
+ msgstr "Biuletyny"
194
+
195
+ #: classes/es-register.php:154 classes/es-register.php:155 cron/cron-add.php:78
196
+ msgid "Cron Settings"
197
+ msgstr "Ustawienia Cron"
198
+
199
+ #: classes/es-register.php:157 classes/es-register.php:158
200
+ #: settings/settings-edit.php:196
201
+ msgid "Email Settings"
202
+ msgstr "Ustawienia e-mail"
203
+
204
+ #: classes/es-register.php:160 classes/es-register.php:161 roles/roles-add.php:109
205
+ msgid "User Roles"
206
+ msgstr "Role użytkowników"
207
+
208
+ #: classes/es-register.php:163 classes/es-register.php:164
209
+ #: sentmail/sentmail-show.php:95
210
+ msgid "Reports"
211
+ msgstr "Raporty"
212
+
213
  #: classes/es-register.php:166
214
  msgid "Help & Info"
215
  msgstr "Pomoc i Informacje"
243
  msgid "Please select the bulk action."
244
  msgstr "Proszę wybierz masowe działanie."
245
 
246
+ #: classes/es-register.php:183
247
+ msgctxt "view-subscriber-enhanced-select"
248
+ msgid "Are you sure you want to delete selected records?"
249
+ msgstr "Jesteś pewien, że chcesz usunąć zaznaczone rekordy?"
250
+
251
  #: classes/es-register.php:184
252
  msgctxt "view-subscriber-enhanced-select"
253
  msgid ""
262
  msgid "Please select new subscriber group."
263
  msgstr "Proszę wybrać nową grupę subskrybenta."
264
 
265
+ #: classes/es-register.php:186
266
+ msgctxt "view-subscriber-enhanced-select"
267
+ msgid "Please select new status for subscribers"
268
+ msgstr "Proszę wskaż nowy status dla subskrybentów."
269
+
270
  #: classes/es-register.php:187
271
  msgctxt "view-subscriber-enhanced-select"
272
  msgid "Do you want to update subscribers group?"
273
  msgstr "Czy chcesz zaktualizować grupę subskrybentów?"
274
 
275
+ #: classes/es-register.php:188
276
+ msgctxt "view-subscriber-enhanced-select"
277
+ msgid "Do you want to update subscribers status?"
278
+ msgstr "Czy chcesz zaktualizować statusy subskrybentów?"
279
+
280
  #: classes/es-register.php:189
281
  msgctxt "view-subscriber-enhanced-select"
282
  msgid "Do you want to export the emails?"
284
 
285
  #: classes/es-register.php:190
286
  msgctxt "view-subscriber-enhanced-select"
287
+ msgid "Please select only csv file. Please check official website for csv structure.."
 
288
  msgstr ""
289
  "Proszę wybrać tylko plik CSV. Proszę sprawdzić strukturę pliku CSV na oficjalnej "
290
  "stronie."
482
  msgid "There was a problem with the request."
483
  msgstr "Wystąpił problem z żądaniem."
484
 
485
+ #: classes/es-register.php:456
486
  msgid ""
487
+ "Email Subscribers recommends free plugin <b>Rainmaker</b> to collect leads instantly"
 
488
  msgstr ""
489
+ "Email Subscribers zaleca darmową wtyczkę <b>Rainmaker</b> zbierającą natychmiastowe "
490
+ "wskazówki"
491
 
492
+ #: classes/es-register.php:457
493
  msgid "Yes, I want this"
494
  msgstr "Tak, chcę to."
495
 
496
+ #: classes/es-register.php:457
497
  msgid "No, I don't want it"
498
  msgstr "Nie, nie chcę tego."
499
 
500
+ #: classes/es-register.php:592
501
  msgid "Widget Title"
502
  msgstr "Tytuł "
503
 
504
+ #: classes/es-register.php:596
505
  msgid "Display Name Field"
506
  msgstr "Wyświetl nazwę pola"
507
 
508
+ #: classes/es-register.php:603
509
  msgid "Short Description"
510
  msgstr "Krótki opis"
511
 
512
+ #: classes/es-register.php:605
513
  msgid "Short description about your subscription form."
514
  msgstr "Krótki opis twojego formularza subskrypcji."
515
 
516
+ #: classes/es-register.php:608
517
  msgid "Subscriber Group"
518
  msgstr "Grupa subskrybenta."
519
 
525
  msgid "Template successfully created. "
526
  msgstr "Szablon utworzony poprawnie."
527
 
528
+ #: compose/compose-add.php:73
529
+ msgid "Add new Email"
530
+ msgstr "Dodaj nowy e-mail."
531
+
532
  #: compose/compose-add.php:74 compose/compose-edit.php:85
533
  #: compose/compose-preview.php:27 compose/compose-show.php:65 cron/cron-add.php:79
534
  #: notification/notification-add.php:112 notification/notification-edit.php:123
537
  #: sentmail/sentmail-preview.php:27 sentmail/sentmail-show.php:96
538
  #: settings/settings-edit.php:197 subscribers/view-subscriber-add.php:113
539
  #: subscribers/view-subscriber-edit.php:112 subscribers/view-subscriber-export.php:29
540
+ #: subscribers/view-subscriber-import.php:145 subscribers/view-subscriber-show.php:245
541
+ #: subscribers/view-subscriber-sync.php:91
542
  msgid "Help"
543
  msgstr "Pomoc"
544
 
 
 
 
 
 
 
 
 
545
  #: compose/compose-add.php:86 compose/compose-edit.php:97
546
  msgid "Keyword: ###POSTTITLE###"
547
  msgstr "Słowo kluczowe: ###POSTTITLE###"
548
 
 
 
 
 
549
  #: compose/compose-add.php:92 compose/compose-edit.php:103
550
  #, c-format
551
  msgid ""
562
  msgstr "Dostępne słowa kluczowe"
563
 
564
  #: compose/compose-add.php:96 compose/compose-edit.php:107
565
+ #: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:83
 
566
  #: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
567
  #: subscribers/view-subscriber-show.php:354 subscribers/view-subscriber-show.php:368
568
  msgid "Status"
577
  msgstr "Proszę wybierz status twojego maila."
578
 
579
  #: compose/compose-add.php:104 compose/compose-edit.php:116 cron/cron-add.php:119
580
+ #: notification/notification-add.php:252 notification/notification-edit.php:289
581
  #: roles/roles-add.php:206 subscribers/view-subscriber-edit.php:190
582
  msgid "Save"
583
  msgstr "Zapisz"
594
  msgid "Template successfully updated. "
595
  msgstr "Szablon zaktualizowany poprawnie."
596
 
597
+ #: compose/compose-edit.php:83
598
+ msgid "Edit Email"
599
+ msgstr "Edytuj E-mail"
600
+
601
  #: compose/compose-edit.php:84 compose/compose-show.php:64
602
  #: notification/notification-edit.php:122 notification/notification-show.php:52
603
  msgid "Add New"
607
  msgid "Preview Mail"
608
  msgstr "Podgląd poczty"
609
 
610
+ #: compose/compose-preview.php:39 compose/compose-show.php:100
611
+ #: notification/notification-show.php:99 subscribers/view-subscriber-show.php:398
612
  msgid "Edit"
613
  msgstr "Edytuj"
614
 
622
  msgid "Selected record deleted."
623
  msgstr "Wybrany zapis został usunięty."
624
 
625
+ #: compose/compose-show.php:78 compose/compose-show.php:85
 
 
 
 
 
 
 
 
 
 
626
  msgid "Actions"
627
  msgstr "Działania"
628
 
629
+ #: compose/compose-show.php:101 notification/notification-show.php:102
630
  #: subscribers/view-subscriber-show.php:277 subscribers/view-subscriber-show.php:403
631
  msgid "Delete"
632
  msgstr "Kasuj"
633
 
634
+ #: compose/compose-show.php:102 sentmail/sentmail-show.php:110
635
  #: sentmail/sentmail-show.php:123
636
  msgid "Preview"
637
  msgstr "Podgląd"
638
 
639
+ #: compose/compose-show.php:110 notification/notification-show.php:142
640
+ #: sentmail/deliverreport-show.php:110 sentmail/sentmail-show.php:166
641
  #: subscribers/view-subscriber-show.php:426
642
  msgid "No records available."
643
  msgstr "Brak dostępnych rekordów."
646
  msgid "Please enter valid mail count."
647
  msgstr "Proszę podać poprawną liczbę e-maili."
648
 
649
+ #: cron/cron-add.php:33
650
+ msgid "Successfully updated."
651
+ msgstr "Zaktualizowany poprawnie."
652
+
653
  #: cron/cron-add.php:86
654
  msgid "Cron job URL"
655
  msgstr "URL zadania Cron."
656
 
657
+ #: cron/cron-add.php:87
658
+ msgid ""
659
+ "This is your Cron Job URL. It is a readonly field and you are advised not to modify "
660
+ "it."
661
+ msgstr ""
662
+ "To jest twoja procedura Cron URL. Jest to pole tylko do odczytu i nie zaleca się "
663
+ "go modyfikować."
664
+
665
  #: cron/cron-add.php:96
666
  msgid "Mail Count"
667
  msgstr "Ilość wiadomości"
668
 
669
+ #: cron/cron-add.php:97
670
+ msgid "Number of mails you want to trigger per hour."
671
+ msgstr "Ilość maili które chcesz wypuszczać w godzinę."
672
+
673
+ #: cron/cron-add.php:102
674
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
675
+ msgstr "(Twój hostingowego ma swoje granice. Proponujemy limit 50 e-maili na godzinę)"
676
+
677
  #: cron/cron-add.php:107
678
  msgid "Admin Report"
679
  msgstr "Raport administratora."
680
 
681
+ #: cron/cron-add.php:108
682
+ msgid ""
683
+ "Email to admin whenever cron URL is triggered from your server. (Keywords: "
684
+ "###DATE###, ###SUBJECT###, ###COUNT###)"
685
+ msgstr ""
686
+ "Wyślij e-mail do administratora gdy Cron URL zostanie uruchomiony z twojego "
687
+ "serwera. (Klucze: ###DATE###, ###SUBJECT###, ###COUNT###)"
688
+
689
+ #: cron/cron-add.php:125
690
+ msgid "What is Cron (auto emails) and how to setup Cron Job?"
691
+ msgstr "Czym jest Cron (automatyczne e-maile) i w jak skonfigurować procedurę Cron?"
692
+
693
+ #: cron/cron-add.php:126
694
+ msgid ""
695
+ "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
696
+ "cron-emails/\">What is Cron?</a>"
697
+ msgstr ""
698
+ "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
699
+ "cron-emails/\">Co to jest Cron?</a>"
700
+
701
  #: cron/cron-add.php:127
702
  msgid ""
703
+ "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
704
+ "cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
705
  msgstr ""
706
+ "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
707
+ "cron-emails-in-parallels-plesk/\">Konfiguracja Cron w panelu Plesk</a>"
708
 
709
  #: cron/cron-add.php:128
710
  msgid ""
711
+ "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
712
+ "cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
713
+ msgstr ""
714
+ "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
715
+ "cron-emails-in-cpanel/\">Konfiguracja Cron w cPanel</a>"
716
+
717
+ #: cron/cron-add.php:129
718
+ msgid ""
719
+ "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
720
+ "hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
721
  msgstr ""
722
+ "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
723
+ "hosting-doesnt-support-cron-jobs/\">Hosting nie obsługuje procedur Cron?</a>"
724
 
725
  #: export/export-email-address.php:33 export/export-email-address.php:37
726
  msgid "Unexpected url submit has been detected"
740
  msgid "For more help and tips..."
741
  msgstr "Aby uzyskać więcej pomocy i wskazówek…"
742
 
743
+ #: help/help.php:66
744
+ #, c-format
745
+ msgid "Like Email Subscribers? Please consider %s."
746
+ msgstr "Lubisz Email Subscribers? Rozważ, proszę %s."
747
+
748
+ #: help/help.php:66
749
+ msgid "contributing to us"
750
+ msgstr "współpracujący z nami"
751
+
752
  #: help/help.php:98
753
  msgid "Frequently Asked Questions"
754
  msgstr "Często zadawane pytania (FAQ)"
770
  msgid "General Plugin Settings"
771
  msgstr "Ogólne ustawienia Wtyczki."
772
 
773
+ #: help/help.php:126
774
+ msgid ""
775
+ " (How to modify the existing email content like Confirmation email, Welcome email, "
776
+ "Admin emails)"
777
+ msgstr ""
778
+ " (Jak zmodyfikować istniejącą zawartość e-maili: Potwierdzających, Powitalnych, "
779
+ "Administratora)"
780
+
781
  #: help/help.php:129
782
  msgid "How to Import or Export Email Addresses?"
783
  msgstr "Jak Importować lub Eksportować Adresy Maili? "
794
  msgid "What are Static Templates and Dynamic Templates?"
795
  msgstr "Co to są Szablony Statyczne i Szablony Dynamiczne?"
796
 
797
+ #: help/help.php:141
798
+ msgid "How to Compose and Send Newsletter Emails?"
799
+ msgstr "Jak tworzyć i wysyłać biuletyny E-mailowe?"
800
+
801
+ #: help/help.php:144
802
+ msgid ""
803
+ "How to Configure and Send Post Notification emails to subscribers when new posts "
804
+ "are published?"
805
+ msgstr ""
806
+ "Jak skonfigurować i wysłać e-maile Powiadamiające subskrybentów o publikacji "
807
+ "nowego wpisu?"
808
+
809
  #: help/help.php:147
810
  msgid "How to Send a sample new post notification email to testgroup/myself?"
811
  msgstr ""
812
  "Jak wysłać przykład nowego e-maila z powiadomieniem do grupy testowej / siebie?"
813
 
814
+ #: help/help.php:150
815
+ msgid "How to check Sent emails reports?"
816
+ msgstr "Jak sprawdzić raporty wysłanych e-maili?"
817
+
818
  #: help/help.php:153
819
  msgid "How to Add/Update Existing Subscribers Group?"
820
  msgstr "Jak dodać/uaktualnić istniejącą grupę subskrybentów?"
821
 
822
+ #: help/help.php:156
823
+ msgid "Subscribers are not receiving Emails?"
824
+ msgstr "Subskrybenci nie otrzymują e-maili?"
825
+
826
  #: help/help.php:159
827
  msgid "How to show subscribe form inside a popup?"
828
  msgstr "Jak pokazać formularz subskrypcji wewnątrz popup?"
853
 
854
  #: job/es-optin.php:57 job/es-optin.php:67 job/es-unsubscribe.php:54
855
  #: job/es-unsubscribe.php:61
856
+ msgid "Oops.. We are getting some technical error. Please try again or contact admin."
 
857
  msgstr ""
858
  "Ups... Pojawił się problem techniczny. Spróbuj raz jeszcze lub skontaktuj się z "
859
  "administratorem."
894
  #: notification/notification-edit.php:134 notification/notification-edit.php:167
895
  #: sendmail/sendmail.php:109 sendmail/sendmail.php:136 sendmail/sendmail.php:150
896
  #: subscribers/view-subscriber-add.php:161 subscribers/view-subscriber-edit.php:161
897
+ #: subscribers/view-subscriber-import.php:189 subscribers/view-subscriber-sync.php:118
 
898
  msgid "Select"
899
  msgstr "Wybierz"
900
 
 
 
 
 
901
  #: notification/notification-add.php:142 notification/notification-edit.php:162
902
  msgid "(Use compose menu to create new)"
903
  msgstr "(Użyj menu kompozycji by stworzyć nowy)"
906
  msgid "Select Post Categories"
907
  msgstr "Wybierz Kategorie wpisów"
908
 
909
+ #: notification/notification-add.php:194 notification/notification-edit.php:224
910
  msgid "Check All"
911
  msgstr "Wybierz wszystko"
912
 
913
+ #: notification/notification-add.php:195 notification/notification-edit.php:225
914
  msgid "Uncheck All"
915
  msgstr "Odznacz wszystko"
916
 
917
+ #: notification/notification-add.php:201 notification/notification-edit.php:232
918
  msgid "Select your Custom Post Type"
919
  msgstr "Wybierz własny typ wpisu"
920
 
921
+ #: notification/notification-add.php:202 notification/notification-edit.php:233
922
  msgid "(Optional)"
923
  msgstr "(opcjonalny)"
924
 
925
+ #: notification/notification-add.php:231 notification/notification-edit.php:267
926
  msgid "No Custom Post Types Available"
927
  msgstr "Nie są dostępne własne typy wpisów"
928
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
929
  #: notification/notification-edit.php:48
930
  msgid "Please select subscribers group"
931
  msgstr "Proszę wybrać grupę subskrybentów."
946
  msgid "Update Subscribers Group"
947
  msgstr "Uaktualnij grupę subskrybentów"
948
 
949
+ #: notification/notification-show.php:68 notification/notification-show.php:76
 
 
 
 
950
  msgid "Subscribers Group"
951
  msgstr "Grupa subskrybentów."
952
 
953
+ #: notification/notification-show.php:70 notification/notification-show.php:78
 
 
 
 
954
  msgid "Notification Status"
955
  msgstr "Status powiadomienia."
956
 
 
 
 
 
 
 
 
 
957
  #: roles/roles-add.php:52
958
  msgid "Role Updated. "
959
  msgstr "Rola zaakceptowana. "
990
  msgid "Compose Menu"
991
  msgstr "Menu Kompozycji"
992
 
993
+ #: roles/roles-add.php:144
994
+ msgid "Post Notifications Menu"
995
+ msgstr "Menu Powiadomień"
996
+
997
+ #: roles/roles-add.php:156
998
+ msgid "Newsletters + Cron Settings Menu"
999
+ msgstr "Menu ustawień biuletynów i Crona"
1000
+
1001
+ #: roles/roles-add.php:168
1002
+ msgid "Email Settings Menu"
1003
+ msgstr "Menu ustawień e-maili"
1004
+
1005
+ #: roles/roles-add.php:180
1006
+ msgid "Reports Menu"
1007
+ msgstr "Menu raportów"
1008
+
1009
  #: roles/roles-add.php:192
1010
  msgid "Help & Info Menu"
1011
  msgstr "Menu Pomocy i Informacji"
1034
  msgid "Oops.. We are getting some error. mail not sending."
1035
  msgstr "Ups… Pojawił się jakiś błąd. Mail nie został wysłany."
1036
 
1037
+ #: sendmail/sendmail.php:96
1038
+ msgid "Use this to send newsletter emails to your subscribers."
1039
+ msgstr "Użyj tego do przysłania e-maili z biuletynem do swoich subskrybentów."
1040
+
1041
  #: sendmail/sendmail.php:104
1042
  msgid "Select Mail Subject from available list"
1043
  msgstr "Wybierz Temat Maila z listy możliwych"
1046
  msgid "Select Mail Type"
1047
  msgstr "Wybierz Typ Maila"
1048
 
 
 
 
 
 
 
 
 
1049
  #: sendmail/sendmail.php:145
1050
  msgid "Select Subscribers group to Send Mail"
1051
  msgstr "Wybierz grupę Subskrybentów do Wysłania Maila"
1062
  #: sendmail/sendmail.php:182
1063
  msgid ""
1064
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend that "
1065
+ "you change above Mail Type to Cron and Send Mail via Cron Job.</strong><br>Click on "
1066
+ "Help for more information."
1067
  msgstr ""
1068
  "<br><br><strong>Ilość Odbiorców przekracza 100.<br>Zdecydowanie zalecamy zmianę "
1069
  "Typu Maili na Cron i wysyłkę maili przez zadania Cron.</strong><br>Aby uzyskać "
1093
  msgid "Delivery Report"
1094
  msgstr "Raport dostarczenia"
1095
 
1096
+ #: sentmail/deliverreport-show.php:70 sentmail/deliverreport-show.php:81
1097
+ #: subscribers/view-subscriber-export.php:36 subscribers/view-subscriber-export.php:44
1098
+ #: subscribers/view-subscriber-show.php:351 subscribers/view-subscriber-show.php:365
 
1099
  msgid "Sno"
1100
  msgstr "Sno"
1101
 
1102
+ #: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:82
1103
  msgid "Email"
1104
  msgstr "Mail"
1105
 
1106
+ #: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:85
1107
  msgid "Sent Date"
1108
  msgstr "Data wysyłki"
1109
 
1110
+ #: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:86
1111
  msgid "Viewed Status"
1112
  msgstr "Status przeglądania"
1113
 
1114
+ #: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:87
1115
  msgid "Viewed Date"
1116
  msgstr "Data przegladania"
1117
 
 
 
 
 
1118
  #: sentmail/sentmail-preview.php:41
1119
  msgid "Back"
1120
  msgstr "Cofnij"
1123
  msgid "Successfully deleted all reports except latest 10."
1124
  msgstr "Pomyślnie usunięto wszystkie raporty z wyjątkiem ostatnich 10."
1125
 
1126
+ #: sentmail/sentmail-show.php:99
1127
+ msgid "It will show reports for all Newsletters & Post Notification emails sent."
1128
+ msgstr "To pokaże raporty wysłania e-maili wszystkich biuletynów i powiadomień."
1129
+
1130
+ #: sentmail/sentmail-show.php:109 sentmail/sentmail-show.php:122
1131
+ msgid "View Reports"
1132
+ msgstr "Pokaż raporty"
1133
+
1134
+ #: sentmail/sentmail-show.php:111 sentmail/sentmail-show.php:124
1135
+ msgid "Type"
1136
+ msgstr "Typ"
1137
+
1138
+ #: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
1139
+ msgid "Start Date"
1140
+ msgstr "Data rozpoczęcia"
1141
+
1142
+ #: sentmail/sentmail-show.php:115 sentmail/sentmail-show.php:128
1143
+ msgid "End Date"
1144
+ msgstr "Data zakończenia"
1145
+
1146
+ #: sentmail/sentmail-show.php:116 sentmail/sentmail-show.php:129
1147
+ msgid "Total"
1148
+ msgstr "Całkowity"
1149
+
1150
+ #: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
1151
+ #: subscribers/view-subscriber-export.php:39 subscribers/view-subscriber-export.php:47
1152
+ #: subscribers/view-subscriber-show.php:357 subscribers/view-subscriber-show.php:371
1153
+ msgid "Action"
1154
+ msgstr "Akcja"
1155
+
1156
+ #: sentmail/sentmail-show.php:176
1157
+ msgid "Optimize Table & Delete Records"
1158
+ msgstr "Optymalizacja Tabeli i Usuwanie Rekordów"
1159
+
1160
+ #: sentmail/sentmail-show.php:185
1161
+ msgid ""
1162
+ "Note: Please click on <strong>Optimize Table & Delete Records</strong> button to "
1163
+ "delete all reports except latest 10."
1164
+ msgstr ""
1165
+ "Uwaga: Proszę kliknąć na <strong>Optymalizacja Tabeli i Usuwanie Rekordów</ "
1166
+ "strong>, aby usunąć wszystkie raporty za wyjątkiem ostatnich 10."
1167
+
1168
+ #: settings/setting-sync.php:15
1169
+ msgid "Table sync completed successfully."
1170
+ msgstr "Synchronizacja tabeli zakończona pomyślnie."
1171
+
1172
+ #: settings/setting-sync.php:28
1173
+ msgid "Sync plugin tables"
1174
+ msgstr "Synchronizacja tabeli wtyczek"
1175
+
1176
+ #: settings/setting-sync.php:32
1177
+ msgid "Click to sync tables"
1178
+ msgstr "Kliknij by synchronizować tabele"
1179
+
1180
+ #: settings/settings-edit.php:116
1181
+ msgid "Please enter sender of notifications from name."
1182
+ msgstr "Proszę podać nadawcę powiadomień po nazwie."
1183
+
1184
+ #: settings/settings-edit.php:121
1185
+ msgid "Please enter sender of notifications from email."
1186
+ msgstr "Proszę podać nadawcę powiadomień po adresie e-mail."
1187
+
1188
+ #: settings/settings-edit.php:154
1189
+ msgid "Settings Saved."
1190
+ msgstr "Ustawienia zapisane."
1191
+
1192
+ #: settings/settings-edit.php:157
1193
+ msgid "Oops, unable to update."
1194
+ msgstr "Ups, nie można zaktualizować."
1195
+
1196
+ #: settings/settings-edit.php:204
1197
+ msgid "Sender of Notifications"
1198
+ msgstr "Nadawca Powiadomień"
1199
+
1200
+ #: settings/settings-edit.php:205
1201
+ msgid ""
1202
+ "Choose a FROM name and FROM email address for all the emails to be sent from this "
1203
+ "plugin."
1204
+ msgstr ""
1205
+ "Wybierz z nazwę OD i adres e-mail OD dla wszystkich e-maili, które mają być "
1206
+ "wysyłane z tej wtyczki."
1207
+
1208
+ #: settings/settings-edit.php:215
1209
+ msgid "Mail Type"
1210
+ msgstr "Typ poczty"
1211
+
1212
+ #: settings/settings-edit.php:216
1213
+ msgid ""
1214
+ "Option 1 & 2 is to send mails with default Wordpress method wp_mail(). Option 3 & 4 "
1215
+ "is to send mails with PHP method mail()."
1216
+ msgstr ""
1217
+ "Opcje 1 i 2 służą do wysyłania e-maili z domyślnej metody wp_mail() Wordpressa. "
1218
+ "Opcje 3 i 4 używają do wysyłania e-maili metodę PHP mail()."
1219
+
1220
+ #: settings/settings-edit.php:220
1221
+ msgid "1. WP HTML MAIL"
1222
+ msgstr "1. WP HTML MAIL"
1223
+
1224
+ #: settings/settings-edit.php:221
1225
+ msgid "2. WP PLAINTEXT MAIL"
1226
+ msgstr "2. WP PLAINTEXT MAIL"
1227
+
1228
+ #: settings/settings-edit.php:222
1229
+ msgid "3. PHP HTML MAIL"
1230
+ msgstr "3. PHP HTML MAIL"
1231
+
1232
+ #: settings/settings-edit.php:223
1233
+ msgid "4. PHP PLAINTEXT MAIL"
1234
+ msgstr "4. PHP PLAINTEXT MAIL"
1235
+
1236
+ #: settings/settings-edit.php:230
1237
+ msgid "Opt-in Option"
1238
+ msgstr "Opcja Opt-in"
1239
+
1240
+ #: settings/settings-edit.php:231
1241
+ msgid ""
1242
+ "Double Opt In means subscribers need to confirm their email address by an "
1243
+ "activation link sent them on a activation email message.<br />Single Opt In means "
1244
+ "subscribers do not need to confirm their email address."
1245
+ msgstr ""
1246
+ "Podwójne Opt-In oznacza, że abonenci muszą potwierdzić swój adres e-mail przez link "
1247
+ "aktywacyjny wysłany w wiadomości aktywacyjnej. <br /> Pojedyncze Opt-in oznacza, że "
1248
+ "abonenci nie muszą potwierdzać swojego adresu e-mail."
1249
+
1250
+ #: settings/settings-edit.php:235
1251
+ msgid "Double Opt In"
1252
+ msgstr "Podwójne Opt-In"
1253
+
1254
+ #: settings/settings-edit.php:236 subscribers/view-subscriber-add.php:150
1255
+ #: subscribers/view-subscriber-edit.php:149 subscribers/view-subscriber-import.php:177
1256
+ #: subscribers/view-subscriber-show.php:302 subscribers/view-subscriber-show.php:329
1257
+ msgid "Single Opt In"
1258
+ msgstr "Pojedyncze Ot-In"
1259
+
1260
+ #: settings/settings-edit.php:242
1261
+ msgid "Image Size"
1262
+ msgstr "Rozmiar obrazu"
1263
+
1264
+ #: settings/settings-edit.php:243
1265
+ msgid ""
1266
+ "Select image size for ###POSTIMAGE### to be shown in the Post Notification Emails."
1267
+ msgstr ""
1268
+ "Wybierz rozmiar obrazu dla ###POSTIMAGE### który będzie wyświetlany w E-mailu "
1269
+ "Powiadamiającym."
1270
+
1271
+ #: settings/settings-edit.php:247
1272
+ msgid "Full Size"
1273
+ msgstr "Pełny rozmiar"
1274
+
1275
+ #: settings/settings-edit.php:248
1276
+ msgid "Medium Size"
1277
+ msgstr "Średni rozmiar"
1278
+
1279
+ #: settings/settings-edit.php:249
1280
+ msgid "Thumbnail"
1281
+ msgstr "Miniatura"
1282
+
1283
+ #: settings/settings-edit.php:255
1284
+ msgid "Double Opt In Mail Subject (Confirmation Email)"
1285
+ msgstr "Podwójne Opt-in Temat listu (e-mail Potwierdzający)"
1286
+
1287
+ #: settings/settings-edit.php:256
1288
+ msgid ""
1289
+ "Enter the subject for the confirmation email to be sent Double Opt In whenever a "
1290
+ "user signs up."
1291
+ msgstr ""
1292
+ "Wpisz temat dla e-maila potwierdzającego wysłanego przy podwójnym Opt-in w każdym "
1293
+ "przypadku, gdy użytkownik go potwierdzi."
1294
+
1295
+ #: settings/settings-edit.php:262
1296
+ msgid "Double Opt In Mail Content (Confirmation Email)"
1297
+ msgstr "Zawartość maila przy podwójnym Opt-in (e-mail Potwierdzający)"
1298
+
1299
+ #: settings/settings-edit.php:263
1300
+ msgid ""
1301
+ "Enter the content for the confirmation email to be sent for Double Opt In whenever "
1302
+ "a user signs up. (Keyword: ###NAME###)"
1303
+ msgstr ""
1304
+ "Wprowadź treść wiadomości dla e-maila potwierdzającego, które będą wysłane do "
1305
+ "podwójnego Opt-In zawsze gdy użytkownik się zarejestruje. (Klucz: ###NAME###)"
1306
+
1307
+ #: settings/settings-edit.php:269
1308
+ msgid "Double Opt In Confirmation Link"
1309
+ msgstr "Link potwierdzający podwójnego Opt-In."
1310
+
1311
+ #: settings/settings-edit.php:270 settings/settings-edit.php:313
1312
+ msgid "It is a readonly field and you are advised not to modify it."
1313
+ msgstr "Jest to pole tylko do odczytu i nie zaleca się go zmodyfikować."
1314
+
1315
+ #: settings/settings-edit.php:276
1316
+ msgid ""
1317
+ "Text to display after Email is successfully subscribed from Double Opt In "
1318
+ "(confirmation) Email"
1319
+ msgstr ""
1320
+ "Tekst wyświetlany po pomyślnej akceptacji subskrypcji przez e-mail potwierdzający "
1321
+ "w podwójnym Opt-In"
1322
+
1323
+ #: settings/settings-edit.php:277
1324
+ msgid ""
1325
+ "This text will be displayed once user clicks on email confirmation link from the "
1326
+ "Double Opt In (confirmation) Email."
1327
+ msgstr ""
1328
+ "Ten tekst będzie wyświetlany gdy użytkownik kliknie na link z e-maila "
1329
+ "potwierdzającego w podwójnym Opt-In."
1330
+
1331
+ #: settings/settings-edit.php:284
1332
+ msgid "Subscriber Welcome Email"
1333
+ msgstr "E-mail witający subskrybenta"
1334
+
1335
+ #: settings/settings-edit.php:285
1336
+ msgid ""
1337
+ "To send welcome email to subscriber after successful signup. This option must be "
1338
+ "set to YES."
1339
+ msgstr ""
1340
+ "By wysłać mail powitalny do subskrybenta po pomyślnej rejestracji ta opcja musi być "
1341
+ "ustawiona na YES (TAK)"
1342
+
1343
+ #: settings/settings-edit.php:289 settings/settings-edit.php:362
1344
+ #: subscribers/view-subscriber-sync.php:106
1345
+ msgid "YES"
1346
+ msgstr "Tak"
1347
+
1348
+ #: settings/settings-edit.php:290 settings/settings-edit.php:363
1349
+ #: subscribers/view-subscriber-sync.php:105
1350
+ msgid "NO"
1351
+ msgstr "Nie"
1352
 
1353
+ #: settings/settings-edit.php:296
1354
+ msgid "Subscriber Welcome Email Subject"
1355
+ msgstr "Temat e-maila witającego subskrybenta"
1356
 
1357
+ #: settings/settings-edit.php:297
1358
+ msgid ""
1359
+ "Enter the subject for the subscriber welcome email. This will be sent whenever a "
1360
+ "user's email is either confirmed (if Double Opt In) / subscribed (if Single Op In) "
1361
+ "successfully."
1362
+ msgstr ""
1363
+ "Wprowadź temat e-maila witającego subskrybenta. Będzie on wysłany gdy subskrypcja "
1364
+ "zostanie potwierdzona zarówno przez podwójne jak i pojedyncze Opt-In. "
1365
 
1366
+ #: settings/settings-edit.php:303
1367
+ msgid "Subscriber Welcome Email Content"
1368
+ msgstr "Treść e-maila witającego subskrybenta"
1369
 
1370
+ #: settings/settings-edit.php:304
1371
+ msgid ""
1372
+ "Enter the content for the subscriber welcome email whenever a user's email is "
1373
+ "either confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully. "
1374
+ "(Keyword: ###NAME###)"
1375
+ msgstr ""
1376
+ "Wprowadź treść e-maila witającego subskrybenta. Będzie on wysłany gdy subskrypcja "
1377
+ "zostanie potwierdzona zarówno przez podwójne jak i pojedyncze Opt-In. (Klucz: "
1378
+ "###NAME###)"
1379
 
1380
+ #: settings/settings-edit.php:312
1381
+ msgid "Unsubscribe Link"
1382
+ msgstr "Link anulujący subskrypcję."
 
 
 
1383
 
1384
+ #: settings/settings-edit.php:319
1385
+ msgid "Unsubscribe Text in Email"
1386
+ msgstr "Tekst anulujący subskrypcję w Email Subscribers"
1387
 
1388
+ #: settings/settings-edit.php:320
1389
  msgid ""
1390
+ "Enter the text for the unsubscribe link. This text is added with unsubscribe link "
1391
+ "in the emails. (Keyword: ###LINK###)"
1392
  msgstr ""
1393
+ "Wprowadź tekst dla linku anulującego subskrypcję. Ten tekst będzie dodany z linkiem "
1394
+ "anulującym subskrypcję do e-maila. (Klucz: ###LINK###)"
 
 
 
 
1395
 
1396
+ #: settings/settings-edit.php:326
1397
+ msgid "Text to display after Email is unsubscribed"
1398
+ msgstr "Tekst do wyświetlenia po anulowaniu subskrypcji."
1399
 
1400
+ #: settings/settings-edit.php:327
1401
+ msgid "This text will be displayed once user clicks on unsubscribe link."
1402
+ msgstr ""
1403
+ "Ten tekst będzie wyświetlany gdy użytkownik kliknie link anulujący subskrypcję."
1404
 
1405
+ #: settings/settings-edit.php:334
1406
+ msgid "Error in Confirmation Link"
1407
+ msgstr "Błąd w linku potwierdzającym."
1408
 
1409
+ #: settings/settings-edit.php:335
1410
+ msgid ""
1411
+ "Default message to display if there is any issue while clicking on confirmation "
1412
+ "link from the Double Opt In (confirmation) Emails."
1413
+ msgstr ""
1414
+ "Domyślna wiadomość wyświetlana, jeśli pojawi się jakiś problem podczas klikania w "
1415
+ "link potwierdzający przy E-mailowym Podwójnym Opt-In (potwierdzeniu) ."
1416
 
1417
+ #: settings/settings-edit.php:341
1418
+ msgid "Error in Unsubscribe Link"
1419
+ msgstr "Błąd w linku anulującym subskrypsję."
1420
 
1421
+ #: settings/settings-edit.php:342
1422
+ msgid ""
1423
+ "Default message to display if there is any issue while clicking on unsubscribe link "
1424
+ "from the Emails."
1425
+ msgstr ""
1426
+ "Domyślna wiadomość wyświetlana, jeśli pojawi się jakiś problem podczas klikania w "
1427
+ "link anulujący subskrypcję w Emails"
1428
 
1429
+ #: settings/settings-edit.php:349
1430
+ msgid "Admin Email Addresses"
1431
+ msgstr "Adresy e-mail administratora"
1432
 
1433
+ #: settings/settings-edit.php:350
1434
+ msgid ""
1435
+ "Enter the admin email addresses that should receive notifications (separated by "
1436
+ "comma)."
1437
+ msgstr ""
1438
+ "Wprowadź adresy e-mail administratora na które powinny przychodzić powiadomienia. "
1439
+ "(adresy oddzielaj przecinkami)"
1440
 
1441
+ #: settings/settings-edit.php:356
1442
+ msgid "Notify Admin about New Subscriber"
1443
+ msgstr "Powiadom administratora o nowym Subskrybencie."
1444
 
1445
+ #: settings/settings-edit.php:357
1446
+ msgid ""
1447
+ "To send admin email notifications for the new subscriber. This option must be set "
1448
+ "to YES."
1449
+ msgstr ""
1450
+ "By wysłać e-mail powiadamiający administratora o nowym subskrybencie ta opcja musi "
1451
+ "być ustawiona na YES (TAK)"
1452
 
1453
+ #: settings/settings-edit.php:369
1454
+ msgid "Admin Email Subject"
1455
+ msgstr "Treść e-maila administratora"
1456
 
1457
+ #: settings/settings-edit.php:370
1458
+ msgid ""
1459
+ "Enter the subject for the admin email. This will be sent whenever a new email is "
1460
+ "added and confirmed."
1461
+ msgstr ""
1462
+ "Wprowadź temat e-maila administratora. Będzie wysyłany kiedy tylko nowy e-mail "
1463
+ "zostanie dodany i zatwierdzony."
1464
 
1465
+ #: settings/settings-edit.php:376
1466
+ msgid "Admin Email Content"
1467
+ msgstr "Treść e-maila administratora"
1468
 
1469
+ #: settings/settings-edit.php:377
1470
+ msgid ""
1471
+ "Enter the email content for the admin email. This will be sent whenever a new email "
1472
+ "is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)"
1473
+ msgstr ""
1474
+ "Wprowadź treść e-maila administratora. Będzie wysyłany kiedy tylko nowy e-mail "
1475
+ "zostanie dodany i zatwierdzony. (Klucz: ###NAME###, ###EMAIL###)"
1476
 
1477
+ #: settings/settings-edit.php:384
1478
+ msgid "Sent Report Subject"
1479
+ msgstr "Temat wysłanego raportu"
1480
 
1481
+ #: settings/settings-edit.php:385
1482
+ msgid "Enter the subject for the sent email report. It will be mailed to Admin."
1483
+ msgstr ""
1484
+ "Wprowadź temat dla raportu wysłanych e-maili. Będzie wysyłany do administratora."
1485
 
1486
+ #: settings/settings-edit.php:391
1487
+ msgid "Sent Report Content"
1488
+ msgstr "Treść wysłanego raportu"
 
1489
 
1490
+ #: settings/settings-edit.php:392
1491
+ msgid ""
1492
+ "Enter the content for the sent mail report. It will be mailed to Admin. (Keyword: "
1493
+ "###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
1494
+ msgstr ""
1495
+ "Wprowadź treść dla raportu wysłanych e-maili. Będzie wysyłany do administratora. "
1496
+ "(Klucz: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
1497
 
1498
  #: settings/settings-edit.php:402
1499
  msgid "Save Settings"
1512
  "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in the "
1513
  "group name."
1514
  msgstr ""
1515
+ "Błąd: W nazwie grupy nie wolno używać znaków specjalnych: (['^$%&*()}{@#~?><>,|=_+\\"
1516
+ "\"])."
1517
 
1518
  #: subscribers/view-subscriber-add.php:65
1519
  msgid "Subscriber has been saved."
1529
 
1530
  #: subscribers/view-subscriber-add.php:109 subscribers/view-subscriber-edit.php:108
1531
  #: subscribers/view-subscriber-export.php:26
1532
+ #: subscribers/view-subscriber-import.php:142 subscribers/view-subscriber-show.php:241
1533
+ #: subscribers/view-subscriber-sync.php:88
1534
  msgid "Add New Subscriber"
1535
  msgstr "Dodaj Nowego Subskrybenta"
1536
 
1537
  #: subscribers/view-subscriber-add.php:110 subscribers/view-subscriber-edit.php:109
1538
  #: subscribers/view-subscriber-export.php:27
1539
+ #: subscribers/view-subscriber-import.php:209 subscribers/view-subscriber-show.php:242
1540
+ #: subscribers/view-subscriber-sync.php:89
1541
  msgid "Import"
1542
  msgstr "Import."
1543
 
1544
  #: subscribers/view-subscriber-add.php:111 subscribers/view-subscriber-edit.php:110
1545
+ #: subscribers/view-subscriber-import.php:143 subscribers/view-subscriber-show.php:243
1546
+ #: subscribers/view-subscriber-sync.php:90
1547
  msgid "Export"
1548
  msgstr "Export"
1549
 
1560
  msgstr "Wybierz Status Subskrybenta"
1561
 
1562
  #: subscribers/view-subscriber-add.php:147 subscribers/view-subscriber-edit.php:146
1563
+ #: subscribers/view-subscriber-import.php:174 subscribers/view-subscriber-show.php:299
1564
+ #: subscribers/view-subscriber-show.php:326
1565
  msgid "Confirmed"
1566
  msgstr "Potwierdzone"
1567
 
1568
  #: subscribers/view-subscriber-add.php:148 subscribers/view-subscriber-edit.php:147
1569
+ #: subscribers/view-subscriber-import.php:175 subscribers/view-subscriber-show.php:300
1570
+ #: subscribers/view-subscriber-show.php:327
1571
  msgid "Unconfirmed"
1572
  msgstr "Niepotwierdzone"
1573
 
1574
  #: subscribers/view-subscriber-add.php:149 subscribers/view-subscriber-edit.php:148
1575
+ #: subscribers/view-subscriber-import.php:176 subscribers/view-subscriber-show.php:301
1576
+ #: subscribers/view-subscriber-show.php:328
1577
  msgid "Unsubscribed"
1578
  msgstr "Niesubskrybowane"
1579
 
1605
  msgid "Edit Subscriber"
1606
  msgstr "Edytuj Subskrybenta"
1607
 
1608
+ #: subscribers/view-subscriber-edit.php:121
1609
+ msgid "Subscriber's Full Name"
1610
+ msgstr "Imię i Nazwisko subskrybenta"
1611
+
1612
+ #: subscribers/view-subscriber-edit.php:131
1613
+ msgid "Subscriber's Email Address"
1614
+ msgstr "Adres e-mail subskrybenta"
1615
+
1616
  #: subscribers/view-subscriber-edit.php:141
1617
  msgid "Update Subscriber's Status"
1618
  msgstr "Aktualizuj Status Subskrybenta"
1625
  msgid "Export Email Addresses"
1626
  msgstr "Eksportuj Adresy E-maili"
1627
 
1628
+ #: subscribers/view-subscriber-export.php:37 subscribers/view-subscriber-export.php:45
 
1629
  msgid "Type of List to Export"
1630
  msgstr "Rodzaj Listy do Eksportu"
1631
 
1632
+ #: subscribers/view-subscriber-export.php:38 subscribers/view-subscriber-export.php:46
 
1633
  msgid "Total Emails"
1634
  msgstr "Wszystkie E-maile"
1635
 
1641
  msgid "All Subscribers List"
1642
  msgstr "Lista Wszystkich Subskrybentów"
1643
 
1644
+ #: subscribers/view-subscriber-export.php:55 subscribers/view-subscriber-export.php:61
 
1645
  #: subscribers/view-subscriber-export.php:67
1646
  msgid "Click to Export in CSV"
1647
  msgstr "Kliknij by wyeksportować do CSV"
1720
  msgid "Select (or) Create Group for Subscribers"
1721
  msgstr "Wybierz (lub) stwórz Grupę dla Subskrybentów"
1722
 
1723
+ #: subscribers/view-subscriber-show.php:44
1724
+ msgid "Selected details does not exists."
1725
+ msgstr "Wybrane szczegóły nie istnieją. "
1726
+
1727
  #: subscribers/view-subscriber-show.php:55 subscribers/view-subscriber-show.php:94
1728
  msgid "Record deleted."
1729
  msgstr "Rekord usunięty."
1732
  msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1733
  msgstr "By wysłać e-mail potwierdzający, zmień opcję Opt-in na Podwójne Opt In."
1734
 
1735
+ #: subscribers/view-subscriber-show.php:74 subscribers/view-subscriber-show.php:133
1736
+ msgid "Confirmation emails Resent Successfully."
1737
+ msgstr "Poprawnie wysłano e-maile potwierdzające. "
1738
+
1739
+ #: subscribers/view-subscriber-show.php:99 subscribers/view-subscriber-show.php:138
1740
+ #: subscribers/view-subscriber-show.php:176 subscribers/view-subscriber-show.php:215
1741
+ msgid "No record was selected."
1742
+ msgstr "Nie zaznaczono żadnego rekordu."
1743
+
1744
  #: subscribers/view-subscriber-show.php:114
1745
  msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1746
  msgstr "By wysłać mail potwierdzający, zmień opcję Opt-in na Podwójne Opt In."
1747
 
1748
+ #: subscribers/view-subscriber-show.php:162
1749
+ msgid "Subscribers Group updated."
1750
+ msgstr "Grupę subskrybentów zaktualizowano."
1751
+
1752
+ #: subscribers/view-subscriber-show.php:167
1753
+ msgid "Please select New group to update."
1754
+ msgstr "Proszę wybrać Nową grupęs do aktualizacji."
1755
+
1756
+ #: subscribers/view-subscriber-show.php:201
1757
+ msgid "Subscribers Status updated."
1758
+ msgstr "Status subskrybentów zaktualizowano."
1759
+
1760
+ #: subscribers/view-subscriber-show.php:206
1761
+ msgid "Please select New Status to update."
1762
+ msgstr "Proszę wybrać Nowy Status do aktualizacji."
1763
+
1764
  #: subscribers/view-subscriber-show.php:276
1765
  msgid "Bulk Actions"
1766
  msgstr "Działania masowe"
1769
  msgid "Resend Confirmation"
1770
  msgstr "Wyślij ponownie potwierdzenie"
1771
 
1772
+ #: subscribers/view-subscriber-show.php:280
1773
+ msgid "Update Subscribers Status"
1774
+ msgstr " Uaktualnienie Statusu Subskrybentów "
1775
+
1776
  #: subscribers/view-subscriber-show.php:283
1777
  msgid "Select Group"
1778
  msgstr "Zaznacz grupę"
1833
  msgid "Group"
1834
  msgstr "Grupa"
1835
 
1836
+ #: subscribers/view-subscriber-show.php:356 subscribers/view-subscriber-show.php:370
1837
+ msgid "Signup Date<br>(YYYY-MM-DD)"
1838
+ msgstr " Data rejestracji <br>(YYYY-MM-DD)"
1839
+
1840
  #: subscribers/view-subscriber-sync.php:35
1841
  msgid "Please select default group to newly registered user."
1842
  msgstr "Proszę wybrać domyślną grupę dla nowo zarejestrowanego użytkownik."
1861
  msgid "Email Subscribers & Newsletters"
1862
  msgstr "Email Subscribers & Newsletters"
1863
 
1864
+ #. Plugin URI of the plugin/theme
1865
+ #. Author URI of the plugin/theme
1866
+ msgid "http://www.icegram.com/"
1867
+ msgstr "http://www.icegram.com/"
 
 
 
 
1868
 
1869
  #. Author of the plugin
1870
  msgid "Icegram"
languages/email-subscribers.pot CHANGED
@@ -2,294 +2,302 @@
2
  # This file is distributed under the same license as the Email Subscribers & Newsletters package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Email Subscribers & Newsletters 3.2.7\n"
6
  "Report-Msgid-Bugs-To: http://www.storeapps.org/support/contact-us/\n"
7
- "POT-Creation-Date: 2017-03-02 12:49:44+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: Thu, 02 Mar 2017 18:19:44 +0530\n"
12
  "Last-Translator: Ratnakar Dubey <ratnakar.dubey@storeapps.org>\n"
13
  "Language-Team: StoreApps <support@storeapps.org>\n"
14
 
15
- #: classes/es-common.php:8
 
 
 
 
 
 
 
 
16
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
17
  msgstr ""
18
 
19
- #: classes/es-common.php:11
20
  msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
21
  msgstr ""
22
 
23
- #: classes/es-common.php:14
24
  msgid "<span style=\"color:#999900\">Unsubscribed</span>"
25
  msgstr ""
26
 
27
- #: classes/es-common.php:17
28
  msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
29
  msgstr ""
30
 
31
- #: classes/es-common.php:20
32
  msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
33
  msgstr ""
34
 
35
- #: classes/es-common.php:23
36
  msgid "<span style=\"color:#999900;\">Nodata</span>"
37
  msgstr ""
38
 
39
- #: classes/es-common.php:26
40
  msgid "<span style=\"color:#FF0000\">Disabled</span>"
41
  msgstr ""
42
 
43
- #: classes/es-common.php:29
44
  msgid "<span style=\"color:#FF0000\">In Queue</span>"
45
  msgstr ""
46
 
47
- #: classes/es-common.php:32
48
  msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
49
  msgstr ""
50
 
51
- #: classes/es-common.php:35
52
  msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
53
  msgstr ""
54
 
55
- #: classes/es-common.php:38
56
  msgid "<span style=\"color:#993399;\">Immediately</span>"
57
  msgstr ""
58
 
59
- #: classes/es-loadwidget.php:24 classes/es-register.php:547
60
- #: subscribers/view-subscriber-show.php:353
61
- #: subscribers/view-subscriber-show.php:367
62
  msgid "Name"
63
  msgstr ""
64
 
65
- #: classes/es-loadwidget.php:29 classes/es-register.php:552
66
  msgid "Email *"
67
  msgstr ""
68
 
69
- #: classes/es-loadwidget.php:34 classes/es-register.php:557
70
  msgid "Subscribe"
71
  msgstr ""
72
 
73
- #: classes/es-register.php:139 classes/es-register.php:140
74
  msgid "Email Subscribers"
75
  msgstr ""
76
 
77
- #: classes/es-register.php:142 classes/es-register.php:143
78
- #: subscribers/view-subscriber-show.php:240
79
  msgid "Subscribers"
80
  msgstr ""
81
 
82
- #: classes/es-register.php:145 classes/es-register.php:146
83
- #: compose/compose-show.php:63
84
  msgid "Compose"
85
  msgstr ""
86
 
87
- #: classes/es-register.php:148 classes/es-register.php:149
88
- #: notification/notification-show.php:51
89
  msgid "Post Notifications"
90
  msgstr ""
91
 
92
- #: classes/es-register.php:151 classes/es-register.php:152
93
- #: sendmail/sendmail.php:92
94
  msgid "Newsletters"
95
  msgstr ""
96
 
97
- #: classes/es-register.php:154 classes/es-register.php:155
98
- #: cron/cron-add.php:78
99
  msgid "Cron Settings"
100
  msgstr ""
101
 
102
- #: classes/es-register.php:157 classes/es-register.php:158
103
- #: settings/settings-edit.php:196
104
  msgid "Email Settings"
105
  msgstr ""
106
 
107
- #: classes/es-register.php:160 classes/es-register.php:161
108
- #: roles/roles-add.php:109
109
  msgid "User Roles"
110
  msgstr ""
111
 
112
- #: classes/es-register.php:163 classes/es-register.php:164
113
- #: sentmail/sentmail-show.php:95
114
  msgid "Reports"
115
  msgstr ""
116
 
117
- #: classes/es-register.php:166
118
  msgid "Help & Info"
119
  msgstr ""
120
 
121
- #: classes/es-register.php:167
122
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
123
  msgstr ""
124
 
125
- #: classes/es-register.php:178
126
  msgctxt "view-subscriber-enhanced-select"
127
  msgid "Please enter subscriber email address."
128
  msgstr ""
129
 
130
- #: classes/es-register.php:179
131
  msgctxt "view-subscriber-enhanced-select"
132
  msgid "Please select subscriber email status."
133
  msgstr ""
134
 
135
- #: classes/es-register.php:180
136
  msgctxt "view-subscriber-enhanced-select"
137
  msgid "Please select or create group for this subscriber."
138
  msgstr ""
139
 
140
- #: classes/es-register.php:181
141
  msgctxt "view-subscriber-enhanced-select"
142
  msgid "Do you want to delete this record?"
143
  msgstr ""
144
 
145
- #: classes/es-register.php:182
146
  msgctxt "view-subscriber-enhanced-select"
147
  msgid "Please select the bulk action."
148
  msgstr ""
149
 
150
- #: classes/es-register.php:183
151
  msgctxt "view-subscriber-enhanced-select"
152
  msgid "Are you sure you want to delete selected records?"
153
  msgstr ""
154
 
155
- #: classes/es-register.php:184
156
  msgctxt "view-subscriber-enhanced-select"
157
  msgid ""
158
  "Do you want to resend confirmation email? \\nAlso please note, this will "
159
  "update subscriber current status to 'Unconfirmed'."
160
  msgstr ""
161
 
162
- #: classes/es-register.php:185
163
  msgctxt "view-subscriber-enhanced-select"
164
  msgid "Please select new subscriber group."
165
  msgstr ""
166
 
167
- #: classes/es-register.php:186
168
  msgctxt "view-subscriber-enhanced-select"
169
  msgid "Please select new status for subscribers"
170
  msgstr ""
171
 
172
- #: classes/es-register.php:187
173
  msgctxt "view-subscriber-enhanced-select"
174
  msgid "Do you want to update subscribers group?"
175
  msgstr ""
176
 
177
- #: classes/es-register.php:188
178
  msgctxt "view-subscriber-enhanced-select"
179
  msgid "Do you want to update subscribers status?"
180
  msgstr ""
181
 
182
- #: classes/es-register.php:189
183
  msgctxt "view-subscriber-enhanced-select"
184
  msgid "Do you want to export the emails?"
185
  msgstr ""
186
 
187
- #: classes/es-register.php:190
188
  msgctxt "view-subscriber-enhanced-select"
189
  msgid ""
190
  "Please select only csv file. Please check official website for csv "
191
  "structure.."
192
  msgstr ""
193
 
194
- #: classes/es-register.php:198
195
  msgctxt "compose-enhanced-select"
196
  msgid "Please enter name for configuration."
197
  msgstr ""
198
 
199
- #: classes/es-register.php:199
200
  msgctxt "compose-enhanced-select"
201
  msgid "Please select template for this configuration."
202
  msgstr ""
203
 
204
- #: classes/es-register.php:200
205
  msgctxt "compose-enhanced-select"
206
  msgid "Do you want to delete this record?"
207
  msgstr ""
208
 
209
- #: classes/es-register.php:208
210
  msgctxt "notification-enhanced-select"
211
  msgid "Please select subscribers group."
212
  msgstr ""
213
 
214
- #: classes/es-register.php:209
215
  msgctxt "notification-enhanced-select"
216
  msgid ""
217
  "Please select notification mail subject. Use compose menu to create new."
218
  msgstr ""
219
 
220
- #: classes/es-register.php:210
221
  msgctxt "notification-enhanced-select"
222
  msgid "Please select notification status."
223
  msgstr ""
224
 
225
- #: classes/es-register.php:211
226
  msgctxt "notification-enhanced-select"
227
  msgid "Do you want to delete this record?"
228
  msgstr ""
229
 
230
- #: classes/es-register.php:219
231
  msgctxt "sendmail-enhanced-select"
232
  msgid "Please select your mail subject."
233
  msgstr ""
234
 
235
- #: classes/es-register.php:220
236
  msgctxt "sendmail-enhanced-select"
237
  msgid "Please select your mail type."
238
  msgstr ""
239
 
240
- #: classes/es-register.php:221
241
  msgctxt "sendmail-enhanced-select"
242
  msgid ""
243
  "Have you double checked your selected group? If so, let's go ahead and send "
244
  "this."
245
  msgstr ""
246
 
247
- #: classes/es-register.php:229
248
  msgctxt "sentmail-enhanced-select"
249
  msgid "Do you want to delete this record?"
250
  msgstr ""
251
 
252
- #: classes/es-register.php:230
253
  msgctxt "sentmail-enhanced-select"
254
  msgid "Do you want to delete all records except latest 10?"
255
  msgstr ""
256
 
257
- #: classes/es-register.php:238
258
  msgctxt "cron-enhanced-select"
259
  msgid "Please select enter number of mails you want to send per hour/trigger."
260
  msgstr ""
261
 
262
- #: classes/es-register.php:239
263
  msgctxt "cron-enhanced-select"
264
  msgid "Please enter the mail count, only number."
265
  msgstr ""
266
 
267
- #: classes/es-register.php:252
268
  msgctxt "widget-enhanced-select"
269
- msgid "Please enter email address."
270
  msgstr ""
271
 
272
- #: classes/es-register.php:253
273
  msgctxt "widget-enhanced-select"
274
- msgid "Please provide a valid email address."
275
  msgstr ""
276
 
277
- #: classes/es-register.php:254
278
  msgctxt "widget-enhanced-select"
279
  msgid "loading..."
280
  msgstr ""
281
 
282
- #: classes/es-register.php:255
283
  msgctxt "widget-enhanced-select"
284
  msgid "Cannot create XMLHTTP instance"
285
  msgstr ""
286
 
287
- #: classes/es-register.php:256
288
  msgctxt "widget-enhanced-select"
289
- msgid "Subscribed successfully."
290
  msgstr ""
291
 
292
- #: classes/es-register.php:257
293
  msgctxt "widget-enhanced-select"
294
  msgid ""
295
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -297,57 +305,57 @@ msgid ""
297
  "mail in your mailbox, please check your spam folder."
298
  msgstr ""
299
 
300
- #: classes/es-register.php:258
301
  msgctxt "widget-enhanced-select"
302
- msgid "Email Address already exists."
303
  msgstr ""
304
 
305
- #: classes/es-register.php:259
306
  msgctxt "widget-enhanced-select"
307
  msgid "Oops.. Unexpected error occurred."
308
  msgstr ""
309
 
310
- #: classes/es-register.php:260
311
  msgctxt "widget-enhanced-select"
312
- msgid "Invalid email address."
313
  msgstr ""
314
 
315
- #: classes/es-register.php:261
316
  msgctxt "widget-enhanced-select"
317
- msgid "Please try after some time."
318
  msgstr ""
319
 
320
- #: classes/es-register.php:262
321
  msgctxt "widget-enhanced-select"
322
- msgid "There was a problem with the request."
323
  msgstr ""
324
 
325
- #: classes/es-register.php:269
326
  msgctxt "widget-page-enhanced-select"
327
- msgid "Please enter email address."
328
  msgstr ""
329
 
330
- #: classes/es-register.php:270
331
  msgctxt "widget-page-enhanced-select"
332
- msgid "Please provide a valid email address."
333
  msgstr ""
334
 
335
- #: classes/es-register.php:271
336
  msgctxt "widget-page-enhanced-select"
337
  msgid "loading..."
338
  msgstr ""
339
 
340
- #: classes/es-register.php:272
341
  msgctxt "widget-page-enhanced-select"
342
  msgid "Cannot create XMLHTTP instance"
343
  msgstr ""
344
 
345
- #: classes/es-register.php:273
346
  msgctxt "widget-page-enhanced-select"
347
- msgid "Subscribed successfully."
348
  msgstr ""
349
 
350
- #: classes/es-register.php:274
351
  msgctxt "widget-page-enhanced-select"
352
  msgid ""
353
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -355,286 +363,292 @@ msgid ""
355
  "mail in your mailbox, please check your spam folder."
356
  msgstr ""
357
 
358
- #: classes/es-register.php:275
359
  msgctxt "widget-page-enhanced-select"
360
- msgid "Email Address already exists."
361
  msgstr ""
362
 
363
- #: classes/es-register.php:276
364
  msgctxt "widget-page-enhanced-select"
365
  msgid "Oops.. Unexpected error occurred."
366
  msgstr ""
367
 
368
- #: classes/es-register.php:277
369
  msgctxt "widget-page-enhanced-select"
370
- msgid "Invalid email address."
371
  msgstr ""
372
 
373
- #: classes/es-register.php:278
374
  msgctxt "widget-page-enhanced-select"
375
- msgid "Please try after some time."
376
  msgstr ""
377
 
378
- #: classes/es-register.php:279
379
  msgctxt "widget-page-enhanced-select"
380
- msgid "There was a problem with the request."
381
  msgstr ""
382
 
383
- #: classes/es-register.php:456
384
  msgid ""
385
  "Email Subscribers recommends free plugin <b>Rainmaker</b> to collect leads "
386
  "instantly"
387
  msgstr ""
388
 
389
- #: classes/es-register.php:457
390
  msgid "Yes, I want this"
391
  msgstr ""
392
 
393
- #: classes/es-register.php:457
394
  msgid "No, I don't want it"
395
  msgstr ""
396
 
397
- #: classes/es-register.php:592
398
  msgid "Widget Title"
399
  msgstr ""
400
 
401
- #: classes/es-register.php:596
 
 
 
 
402
  msgid "Display Name Field"
403
  msgstr ""
404
 
405
- #: classes/es-register.php:603
406
- msgid "Short Description"
 
407
  msgstr ""
408
 
409
- #: classes/es-register.php:605
410
- msgid "Short description about your subscription form."
 
411
  msgstr ""
412
 
413
- #: classes/es-register.php:608
414
  msgid "Subscriber Group"
415
  msgstr ""
416
 
417
- #: compose/compose-add.php:30 compose/compose-edit.php:47
418
  msgid "Please enter template heading."
419
  msgstr ""
420
 
421
- #: compose/compose-add.php:42
422
  msgid "Template successfully created. "
423
  msgstr ""
424
 
425
- #: compose/compose-add.php:73
426
  msgid "Add new Email"
427
  msgstr ""
428
 
429
- #: compose/compose-add.php:74 compose/compose-edit.php:85
430
- #: compose/compose-preview.php:27 compose/compose-show.php:65
431
- #: cron/cron-add.php:79 notification/notification-add.php:112
432
- #: notification/notification-edit.php:123
433
- #: notification/notification-show.php:53 roles/roles-add.php:110
434
- #: sendmail/sendmail.php:93 sentmail/deliverreport-show.php:60
435
- #: sentmail/sentmail-preview.php:27 sentmail/sentmail-show.php:96
436
- #: settings/settings-edit.php:197 subscribers/view-subscriber-add.php:113
437
- #: subscribers/view-subscriber-edit.php:112
438
- #: subscribers/view-subscriber-export.php:29
439
- #: subscribers/view-subscriber-import.php:145
440
- #: subscribers/view-subscriber-show.php:245
441
- #: subscribers/view-subscriber-sync.php:91
442
  msgid "Help"
443
  msgstr ""
444
 
445
- #: compose/compose-add.php:77 compose/compose-edit.php:88
446
  msgid "Select your Mail Template"
447
  msgstr ""
448
 
449
- #: compose/compose-add.php:79 compose/compose-edit.php:90
450
  msgid "Newsletter"
451
  msgstr ""
452
 
453
- #: compose/compose-add.php:80 compose/compose-edit.php:91
454
  msgid "Post Notification"
455
  msgstr ""
456
 
457
- #: compose/compose-add.php:84 compose/compose-edit.php:95
458
  msgid "Enter your Email Subject"
459
  msgstr ""
460
 
461
- #: compose/compose-add.php:86 compose/compose-edit.php:97
462
  msgid "Keyword: ###POSTTITLE###"
463
  msgstr ""
464
 
465
- #: compose/compose-add.php:88 compose/compose-edit.php:99
466
  msgid "Enter Content for your Email"
467
  msgstr ""
468
 
469
- #: compose/compose-add.php:92 compose/compose-edit.php:103
470
  msgid ""
471
  "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
472
  "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
473
  "###POSTDESC###, ###POSTFULL###"
474
  msgstr ""
475
 
476
- #: compose/compose-add.php:92 compose/compose-edit.php:103
477
  msgid "Available Keywords"
478
  msgstr ""
479
 
480
- #: compose/compose-add.php:96 compose/compose-edit.php:107
481
- #: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:83
482
- #: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
483
- #: subscribers/view-subscriber-show.php:354
484
- #: subscribers/view-subscriber-show.php:368
485
  msgid "Status"
486
  msgstr ""
487
 
488
- #: compose/compose-add.php:98 compose/compose-edit.php:109
489
  msgid "Published"
490
  msgstr ""
491
 
492
- #: compose/compose-add.php:100 compose/compose-edit.php:111
493
  msgid "Please select your mail status"
494
  msgstr ""
495
 
496
- #: compose/compose-add.php:104 compose/compose-edit.php:116
497
- #: cron/cron-add.php:119 notification/notification-add.php:252
498
- #: notification/notification-edit.php:289 roles/roles-add.php:206
499
- #: subscribers/view-subscriber-edit.php:190
500
  msgid "Save"
501
  msgstr ""
502
 
503
- #: compose/compose-edit.php:19 compose/compose-preview.php:17
504
- #: compose/compose-show.php:32 notification/notification-edit.php:19
505
- #: notification/notification-show.php:20 sentmail/sentmail-preview.php:17
506
- #: sentmail/sentmail-show.php:21 settings/settings-edit.php:19
507
- #: subscribers/view-subscriber-edit.php:21
508
  msgid "Oops, selected details does not exists."
509
  msgstr ""
510
 
511
- #: compose/compose-edit.php:60
512
  msgid "Template successfully updated. "
513
  msgstr ""
514
 
515
- #: compose/compose-edit.php:83
516
  msgid "Edit Email"
517
  msgstr ""
518
 
519
- #: compose/compose-edit.php:84 compose/compose-show.php:64
520
- #: notification/notification-edit.php:122
521
- #: notification/notification-show.php:52
522
  msgid "Add New"
523
  msgstr ""
524
 
525
- #: compose/compose-preview.php:26 sentmail/sentmail-preview.php:26
526
  msgid "Preview Mail"
527
  msgstr ""
528
 
529
- #: compose/compose-preview.php:39 compose/compose-show.php:100
530
- #: notification/notification-show.php:99
531
- #: subscribers/view-subscriber-show.php:398
532
  msgid "Edit"
533
  msgstr ""
534
 
535
- #: compose/compose-show.php:13 sendmail/sendmail.php:17
536
- #: subscribers/view-subscriber-show.php:16
537
  msgid "Click Here"
538
  msgstr ""
539
 
540
- #: compose/compose-show.php:46 notification/notification-show.php:34
541
- #: sentmail/sentmail-show.php:35
542
  msgid "Selected record deleted."
543
  msgstr ""
544
 
545
- #: compose/compose-show.php:76 compose/compose-show.php:83
546
- #: notification/notification-show.php:67 notification/notification-show.php:75
547
  msgid "Email Subject"
548
  msgstr ""
549
 
550
- #: compose/compose-show.php:77 compose/compose-show.php:84
551
  msgid "Email Template"
552
  msgstr ""
553
 
554
- #: compose/compose-show.php:78 compose/compose-show.php:85
555
  msgid "Actions"
556
  msgstr ""
557
 
558
- #: compose/compose-show.php:101 notification/notification-show.php:102
559
- #: subscribers/view-subscriber-show.php:277
560
- #: subscribers/view-subscriber-show.php:403
561
  msgid "Delete"
562
  msgstr ""
563
 
564
- #: compose/compose-show.php:102 sentmail/sentmail-show.php:110
565
- #: sentmail/sentmail-show.php:123
566
  msgid "Preview"
567
  msgstr ""
568
 
569
- #: compose/compose-show.php:110 notification/notification-show.php:142
570
- #: sentmail/deliverreport-show.php:110 sentmail/sentmail-show.php:166
571
- #: subscribers/view-subscriber-show.php:426
572
  msgid "No records available."
573
  msgstr ""
574
 
575
- #: cron/cron-add.php:23
576
  msgid "Please enter valid mail count."
577
  msgstr ""
578
 
579
- #: cron/cron-add.php:33
580
  msgid "Successfully updated."
581
  msgstr ""
582
 
583
- #: cron/cron-add.php:86
584
  msgid "Cron job URL"
585
  msgstr ""
586
 
587
- #: cron/cron-add.php:87
588
  msgid ""
589
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
590
  "modify it."
591
  msgstr ""
592
 
593
- #: cron/cron-add.php:96
594
- msgid "Mail Count"
595
  msgstr ""
596
 
597
- #: cron/cron-add.php:97
598
- msgid "Number of mails you want to trigger per hour."
599
  msgstr ""
600
 
601
- #: cron/cron-add.php:102
602
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
603
  msgstr ""
604
 
605
- #: cron/cron-add.php:107
606
  msgid "Admin Report"
607
  msgstr ""
608
 
609
- #: cron/cron-add.php:108
610
  msgid ""
611
  "Email to admin whenever cron URL is triggered from your server. (Keywords: "
612
  "###DATE###, ###SUBJECT###, ###COUNT###)"
613
  msgstr ""
614
 
615
- #: cron/cron-add.php:125
616
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
617
  msgstr ""
618
 
619
- #: cron/cron-add.php:126
620
  msgid ""
621
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
622
  "schedule-cron-emails/\">What is Cron?</a>"
623
  msgstr ""
624
 
625
- #: cron/cron-add.php:127
626
  msgid ""
627
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
628
  "schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
629
  msgstr ""
630
 
631
- #: cron/cron-add.php:128
632
  msgid ""
633
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
634
  "schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
635
  msgstr ""
636
 
637
- #: cron/cron-add.php:129
638
  msgid ""
639
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-"
640
  "do-if-hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?"
@@ -645,877 +659,866 @@ msgstr ""
645
  msgid "Unexpected url submit has been detected"
646
  msgstr ""
647
 
648
- #: help/help.php:46
649
  msgid "Welcome to Email Subscribers!"
650
  msgstr ""
651
 
652
- #: help/help.php:47
653
  msgid ""
654
  "Thanks for installing and we hope you will enjoy using Email Subscribers."
655
  msgstr ""
656
 
657
- #: help/help.php:51
658
  msgid "For more help and tips..."
659
  msgstr ""
660
 
661
- #: help/help.php:66
662
  msgid "Like Email Subscribers? Please consider %s."
663
  msgstr ""
664
 
665
- #: help/help.php:66
666
  msgid "contributing to us"
667
  msgstr ""
668
 
669
- #: help/help.php:98
670
  msgid "Frequently Asked Questions"
671
  msgstr ""
672
 
673
- #: help/help.php:117 help/help.php:126 help/help.php:129 help/help.php:132
674
- #: help/help.php:135 help/help.php:138 help/help.php:141 help/help.php:144
675
- #: help/help.php:147 help/help.php:150 help/help.php:153 help/help.php:156
676
- #: help/help.php:159 help/help.php:162 help/help.php:165 help/help.php:168
677
- #: help/help.php:171 help/help.php:174 help/help.php:177
678
  msgid "%s"
679
  msgstr ""
680
 
681
- #: help/help.php:117
682
  msgid "How to Add Subscription box to website?"
683
  msgstr ""
684
 
685
- #: help/help.php:126
686
  msgid "General Plugin Settings"
687
  msgstr ""
688
 
689
- #: help/help.php:126
690
  msgid ""
691
  " (How to modify the existing email content like Confirmation email, Welcome "
692
  "email, Admin emails)"
693
  msgstr ""
694
 
695
- #: help/help.php:129
696
  msgid "How to Import or Export Email Addresses?"
697
  msgstr ""
698
 
699
- #: help/help.php:132
700
  msgid "How to change/update/translate any texts from Email Subscribers?"
701
  msgstr ""
702
 
703
- #: help/help.php:135
704
  msgid "How to add Unsubscribe link in emails?"
705
  msgstr ""
706
 
707
- #: help/help.php:138
708
  msgid "What are Static Templates and Dynamic Templates?"
709
  msgstr ""
710
 
711
- #: help/help.php:141
712
  msgid "How to Compose and Send Newsletter Emails?"
713
  msgstr ""
714
 
715
- #: help/help.php:144
716
  msgid ""
717
  "How to Configure and Send Post Notification emails to subscribers when new "
718
  "posts are published?"
719
  msgstr ""
720
 
721
- #: help/help.php:147
722
  msgid "How to Send a sample new post notification email to testgroup/myself?"
723
  msgstr ""
724
 
725
- #: help/help.php:150
726
  msgid "How to check Sent emails reports?"
727
  msgstr ""
728
 
729
- #: help/help.php:153
730
  msgid "How to Add/Update Existing Subscribers Group?"
731
  msgstr ""
732
 
733
- #: help/help.php:156
734
  msgid "Subscribers are not receiving Emails?"
735
  msgstr ""
736
 
737
- #: help/help.php:159
738
  msgid "How to show subscribe form inside a popup?"
739
  msgstr ""
740
 
741
- #: help/help.php:162
742
  msgid "How to use Rainmaker’s form in Email Subscribers?"
743
  msgstr ""
744
 
745
- #: help/help.php:165
746
  msgid "How to Schedule Cron Mails?"
747
  msgstr ""
748
 
749
- #: help/help.php:168
750
  msgid "How to Schedule Cron Emails in cPanel?"
751
  msgstr ""
752
 
753
- #: help/help.php:171
754
  msgid "How to Schedule Cron Emails in Parallels Plesk?"
755
  msgstr ""
756
 
757
- #: help/help.php:174
758
  msgid "What to do if Hosting doesn’t support Cron Jobs?"
759
  msgstr ""
760
 
761
- #: help/help.php:177
762
  msgid "Commonly Asked Questions"
763
  msgstr ""
764
 
765
- #: job/es-optin.php:57 job/es-optin.php:67 job/es-unsubscribe.php:54
766
- #: job/es-unsubscribe.php:61
767
  msgid ""
768
  "Oops.. We are getting some technical error. Please try again or contact "
769
  "admin."
770
  msgstr ""
771
 
772
- #: job/es-optin.php:60
773
  msgid "This email address has already been confirmed."
774
  msgstr ""
775
 
776
- #: notification/notification-add.php:32
777
  msgid "Please select subscribers group."
778
  msgstr ""
779
 
780
- #: notification/notification-add.php:38
781
  msgid "Please select notification status."
782
  msgstr ""
783
 
784
- #: notification/notification-add.php:44 notification/notification-edit.php:60
785
  msgid ""
786
  "Please select notification mail subject. Use compose menu to create new."
787
  msgstr ""
788
 
789
- #: notification/notification-add.php:50 notification/notification-edit.php:66
790
  msgid "Please select post categories."
791
  msgstr ""
792
 
793
- #: notification/notification-add.php:70
794
  msgid "Notification successfully created. "
795
  msgstr ""
796
 
797
- #: notification/notification-add.php:111
798
  msgid "Add Notification"
799
  msgstr ""
800
 
801
- #: notification/notification-add.php:119
802
  msgid "Select Subscribers Group"
803
  msgstr ""
804
 
805
- #: notification/notification-add.php:123 notification/notification-add.php:147
806
- #: notification/notification-edit.php:134
807
- #: notification/notification-edit.php:167 sendmail/sendmail.php:109
808
- #: sendmail/sendmail.php:136 sendmail/sendmail.php:150
809
- #: subscribers/view-subscriber-add.php:161
810
- #: subscribers/view-subscriber-edit.php:161
811
- #: subscribers/view-subscriber-import.php:189
812
- #: subscribers/view-subscriber-sync.php:118
813
  msgid "Select"
814
  msgstr ""
815
 
816
- #: notification/notification-add.php:141
817
- #: notification/notification-edit.php:161
818
  msgid "Select Notification Email Subject"
819
  msgstr ""
820
 
821
- #: notification/notification-add.php:142
822
- #: notification/notification-edit.php:162
823
  msgid "(Use compose menu to create new)"
824
  msgstr ""
825
 
826
- #: notification/notification-add.php:166
827
- #: notification/notification-edit.php:189
828
  msgid "Select Post Categories"
829
  msgstr ""
830
 
831
- #: notification/notification-add.php:194
832
- #: notification/notification-edit.php:224
833
  msgid "Check All"
834
  msgstr ""
835
 
836
- #: notification/notification-add.php:195
837
- #: notification/notification-edit.php:225
838
  msgid "Uncheck All"
839
  msgstr ""
840
 
841
- #: notification/notification-add.php:201
842
- #: notification/notification-edit.php:232
843
  msgid "Select your Custom Post Type"
844
  msgstr ""
845
 
846
- #: notification/notification-add.php:202
847
- #: notification/notification-edit.php:233
848
  msgid "(Optional)"
849
  msgstr ""
850
 
851
- #: notification/notification-add.php:231
852
- #: notification/notification-edit.php:267
853
  msgid "No Custom Post Types Available"
854
  msgstr ""
855
 
856
- #: notification/notification-add.php:238
857
- #: notification/notification-edit.php:274
858
  msgid "Select Notification Status when a new post is published"
859
  msgstr ""
860
 
861
- #: notification/notification-add.php:242
862
- #: notification/notification-edit.php:278
863
- #: notification/notification-show.php:129 sendmail/sendmail.php:137
864
- msgid "Send email immediately"
865
- msgstr ""
866
-
867
  #: notification/notification-add.php:243
868
  #: notification/notification-edit.php:279
869
- #: notification/notification-show.php:131
870
- msgid "Add to cron and send email via cron job"
871
  msgstr ""
872
 
873
  #: notification/notification-add.php:244
874
  #: notification/notification-edit.php:280
 
 
 
 
 
 
875
  msgid "Disable email notification"
876
  msgstr ""
877
 
878
- #: notification/notification-edit.php:48
879
  msgid "Please select subscribers group"
880
  msgstr ""
881
 
882
- #: notification/notification-edit.php:54
883
  msgid "Please select notification status"
884
  msgstr ""
885
 
886
- #: notification/notification-edit.php:88
887
  msgid "Notification successfully updated. "
888
  msgstr ""
889
 
890
- #: notification/notification-edit.php:121
891
  msgid "Edit Notification"
892
  msgstr ""
893
 
894
- #: notification/notification-edit.php:130
895
- #: subscribers/view-subscriber-show.php:279
896
  msgid "Update Subscribers Group"
897
  msgstr ""
898
 
899
- #: notification/notification-show.php:56
900
  msgid ""
901
  "Use this to setup and send notification emails to your subscribers when a "
902
  "new post is published in your blog."
903
  msgstr ""
904
 
905
- #: notification/notification-show.php:68 notification/notification-show.php:76
906
  msgid "Subscribers Group"
907
  msgstr ""
908
 
909
- #: notification/notification-show.php:69 notification/notification-show.php:77
910
  msgid "Post Categories / Custom Post Types"
911
  msgstr ""
912
 
913
- #: notification/notification-show.php:70 notification/notification-show.php:78
914
  msgid "Notification Status"
915
  msgstr ""
916
 
917
- #: roles/roles-add.php:52
918
  msgid "Role Updated. "
919
  msgstr ""
920
 
921
- #: roles/roles-add.php:113
922
  msgid ""
923
  "Select user roles who can access following menus. Only Admin can change this."
924
  msgstr ""
925
 
926
- #: roles/roles-add.php:120
927
  msgid "Subscribers Menu"
928
  msgstr ""
929
 
930
- #: roles/roles-add.php:124 roles/roles-add.php:136 roles/roles-add.php:148
931
- #: roles/roles-add.php:160 roles/roles-add.php:172 roles/roles-add.php:184
932
- #: roles/roles-add.php:196
933
- msgid "Administrator Only"
934
- msgstr ""
935
-
936
  #: roles/roles-add.php:125 roles/roles-add.php:137 roles/roles-add.php:149
937
  #: roles/roles-add.php:161 roles/roles-add.php:173 roles/roles-add.php:185
938
  #: roles/roles-add.php:197
939
- msgid "Administrator/Editor"
940
  msgstr ""
941
 
942
  #: roles/roles-add.php:126 roles/roles-add.php:138 roles/roles-add.php:150
943
  #: roles/roles-add.php:162 roles/roles-add.php:174 roles/roles-add.php:186
944
  #: roles/roles-add.php:198
 
 
 
 
 
 
945
  msgid "Administrator/Editor/Author/Contributor"
946
  msgstr ""
947
 
948
- #: roles/roles-add.php:132
949
  msgid "Compose Menu"
950
  msgstr ""
951
 
952
- #: roles/roles-add.php:144
953
  msgid "Post Notifications Menu"
954
  msgstr ""
955
 
956
- #: roles/roles-add.php:156
957
  msgid "Newsletters + Cron Settings Menu"
958
  msgstr ""
959
 
960
- #: roles/roles-add.php:168
961
  msgid "Email Settings Menu"
962
  msgstr ""
963
 
964
- #: roles/roles-add.php:180
965
  msgid "Reports Menu"
966
  msgstr ""
967
 
968
- #: roles/roles-add.php:192
969
  msgid "Help & Info Menu"
970
  msgstr ""
971
 
972
- #: sendmail/sendmail.php:39
973
  msgid "Please select your mail subject."
974
  msgstr ""
975
 
976
- #: sendmail/sendmail.php:45
977
  msgid "Please select your mail type."
978
  msgstr ""
979
 
980
- #: sendmail/sendmail.php:51
981
  msgid "Please select your group."
982
  msgstr ""
983
 
984
- #: sendmail/sendmail.php:58
985
  msgid "Mail sent successfully. "
986
  msgstr ""
987
 
988
- #: sendmail/sendmail.php:62
989
  msgid "Click here to check Statistics"
990
  msgstr ""
991
 
992
- #: sendmail/sendmail.php:68
993
  msgid "Oops.. We are getting some error. mail not sending."
994
  msgstr ""
995
 
996
- #: sendmail/sendmail.php:96
997
  msgid "Use this to send newsletter emails to your subscribers."
998
  msgstr ""
999
 
1000
- #: sendmail/sendmail.php:104
1001
- msgid "Select Mail Subject from available list"
1002
  msgstr ""
1003
 
1004
- #: sendmail/sendmail.php:131
1005
- msgid "Select Mail Type"
1006
  msgstr ""
1007
 
1008
- #: sendmail/sendmail.php:138
1009
  msgid "Send email via cron job"
1010
  msgstr ""
1011
 
1012
- #: sendmail/sendmail.php:145
1013
- msgid "Select Subscribers group to Send Mail"
1014
  msgstr ""
1015
 
1016
- #: sendmail/sendmail.php:177
1017
  msgid "Recipients : 0 "
1018
  msgstr ""
1019
 
1020
- #: sendmail/sendmail.php:179
1021
  msgid "Recipients : %s"
1022
  msgstr ""
1023
 
1024
- #: sendmail/sendmail.php:182
1025
  msgid ""
1026
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1027
  "that you change above Mail Type to Cron and Send Mail via Cron Job.</"
1028
  "strong><br>Click on Help for more information."
1029
  msgstr ""
1030
 
1031
- #: sendmail/sendmail.php:193 sendmail/sendmail.php:195
1032
  msgid "Send Email"
1033
  msgstr ""
1034
 
1035
- #: sendmail/sendmail.php:198
1036
  msgid "Reset"
1037
  msgstr ""
1038
 
1039
- #: sentmail/deliverreport-show.php:13
1040
  msgid "Oops.. Unexpected error occurred. Please try again."
1041
  msgstr ""
1042
 
1043
- #: sentmail/deliverreport-show.php:49 sentmail/sentmail-show.php:85
1044
  msgid " &lt;&lt; "
1045
  msgstr ""
1046
 
1047
- #: sentmail/deliverreport-show.php:50 sentmail/sentmail-show.php:86
1048
  msgid " &gt;&gt; "
1049
  msgstr ""
1050
 
1051
- #: sentmail/deliverreport-show.php:59
1052
  msgid "Delivery Report"
1053
  msgstr ""
1054
 
1055
- #: sentmail/deliverreport-show.php:70 sentmail/deliverreport-show.php:81
1056
- #: subscribers/view-subscriber-export.php:36
1057
- #: subscribers/view-subscriber-export.php:44
1058
- #: subscribers/view-subscriber-show.php:351
1059
- #: subscribers/view-subscriber-show.php:365
1060
  msgid "Sno"
1061
  msgstr ""
1062
 
1063
- #: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:82
1064
  msgid "Email"
1065
  msgstr ""
1066
 
1067
- #: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:84
1068
- #: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
1069
  msgid "Sent"
1070
  msgstr ""
1071
 
1072
- #: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:85
1073
  msgid "Sent Date"
1074
  msgstr ""
1075
 
1076
- #: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:86
1077
  msgid "Viewed Status"
1078
  msgstr ""
1079
 
1080
- #: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:87
1081
  msgid "Viewed Date"
1082
  msgstr ""
1083
 
1084
- #: sentmail/sentmail-preview.php:41
1085
  msgid "Back"
1086
  msgstr ""
1087
 
1088
- #: sentmail/sentmail-show.php:42
1089
  msgid "Successfully deleted all reports except latest 10."
1090
  msgstr ""
1091
 
1092
- #: sentmail/sentmail-show.php:99
1093
  msgid ""
1094
  "It will show reports for all Newsletters & Post Notification emails sent."
1095
  msgstr ""
1096
 
1097
- #: sentmail/sentmail-show.php:109 sentmail/sentmail-show.php:122
1098
  msgid "View Reports"
1099
  msgstr ""
1100
 
1101
- #: sentmail/sentmail-show.php:111 sentmail/sentmail-show.php:124
1102
  msgid "Type"
1103
  msgstr ""
1104
 
1105
- #: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
1106
  msgid "Start Date"
1107
  msgstr ""
1108
 
1109
- #: sentmail/sentmail-show.php:115 sentmail/sentmail-show.php:128
1110
  msgid "End Date"
1111
  msgstr ""
1112
 
1113
- #: sentmail/sentmail-show.php:116 sentmail/sentmail-show.php:129
1114
  msgid "Total"
1115
  msgstr ""
1116
 
1117
- #: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
1118
- #: subscribers/view-subscriber-export.php:39
1119
- #: subscribers/view-subscriber-export.php:47
1120
- #: subscribers/view-subscriber-show.php:357
1121
- #: subscribers/view-subscriber-show.php:371
1122
  msgid "Action"
1123
  msgstr ""
1124
 
1125
- #: sentmail/sentmail-show.php:176
1126
  msgid "Optimize Table & Delete Records"
1127
  msgstr ""
1128
 
1129
- #: sentmail/sentmail-show.php:185
1130
  msgid ""
1131
  "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1132
  "button to delete all reports except latest 10."
1133
  msgstr ""
1134
 
1135
- #: settings/setting-sync.php:15
1136
  msgid "Table sync completed successfully."
1137
  msgstr ""
1138
 
1139
- #: settings/setting-sync.php:28
1140
  msgid "Sync plugin tables"
1141
  msgstr ""
1142
 
1143
- #: settings/setting-sync.php:32
1144
  msgid "Click to sync tables"
1145
  msgstr ""
1146
 
1147
- #: settings/settings-edit.php:116
1148
  msgid "Please enter sender of notifications from name."
1149
  msgstr ""
1150
 
1151
- #: settings/settings-edit.php:121
1152
  msgid "Please enter sender of notifications from email."
1153
  msgstr ""
1154
 
1155
- #: settings/settings-edit.php:154
1156
  msgid "Settings Saved."
1157
  msgstr ""
1158
 
1159
- #: settings/settings-edit.php:157
1160
  msgid "Oops, unable to update."
1161
  msgstr ""
1162
 
1163
- #: settings/settings-edit.php:204
1164
  msgid "Sender of Notifications"
1165
  msgstr ""
1166
 
1167
- #: settings/settings-edit.php:205
1168
  msgid ""
1169
  "Choose a FROM name and FROM email address for all the emails to be sent from "
1170
  "this plugin."
1171
  msgstr ""
1172
 
1173
- #: settings/settings-edit.php:215
1174
  msgid "Mail Type"
1175
  msgstr ""
1176
 
1177
- #: settings/settings-edit.php:216
1178
  msgid ""
1179
  "Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
1180
  "Option 3 & 4 is to send mails with PHP method mail()."
1181
  msgstr ""
1182
 
1183
- #: settings/settings-edit.php:220
1184
  msgid "1. WP HTML MAIL"
1185
  msgstr ""
1186
 
1187
- #: settings/settings-edit.php:221
1188
  msgid "2. WP PLAINTEXT MAIL"
1189
  msgstr ""
1190
 
1191
- #: settings/settings-edit.php:222
1192
  msgid "3. PHP HTML MAIL"
1193
  msgstr ""
1194
 
1195
- #: settings/settings-edit.php:223
1196
  msgid "4. PHP PLAINTEXT MAIL"
1197
  msgstr ""
1198
 
1199
- #: settings/settings-edit.php:230
1200
- msgid "Opt-in Option"
1201
  msgstr ""
1202
 
1203
- #: settings/settings-edit.php:231
1204
  msgid ""
1205
  "Double Opt In means subscribers need to confirm their email address by an "
1206
  "activation link sent them on a activation email message.<br />Single Opt In "
1207
  "means subscribers do not need to confirm their email address."
1208
  msgstr ""
1209
 
1210
- #: settings/settings-edit.php:235
1211
  msgid "Double Opt In"
1212
  msgstr ""
1213
 
1214
- #: settings/settings-edit.php:236 subscribers/view-subscriber-add.php:150
1215
- #: subscribers/view-subscriber-edit.php:149
1216
- #: subscribers/view-subscriber-import.php:177
1217
- #: subscribers/view-subscriber-show.php:302
1218
- #: subscribers/view-subscriber-show.php:329
1219
  msgid "Single Opt In"
1220
  msgstr ""
1221
 
1222
- #: settings/settings-edit.php:242
1223
  msgid "Image Size"
1224
  msgstr ""
1225
 
1226
- #: settings/settings-edit.php:243
1227
  msgid ""
1228
  "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
1229
  "Emails."
1230
  msgstr ""
1231
 
1232
- #: settings/settings-edit.php:247
1233
  msgid "Full Size"
1234
  msgstr ""
1235
 
1236
- #: settings/settings-edit.php:248
1237
  msgid "Medium Size"
1238
  msgstr ""
1239
 
1240
- #: settings/settings-edit.php:249
1241
  msgid "Thumbnail"
1242
  msgstr ""
1243
 
1244
- #: settings/settings-edit.php:255
1245
- msgid "Double Opt In Mail Subject (Confirmation Email)"
1246
  msgstr ""
1247
 
1248
- #: settings/settings-edit.php:256
1249
  msgid ""
1250
- "Enter the subject for the confirmation email to be sent Double Opt In "
1251
  "whenever a user signs up."
1252
  msgstr ""
1253
 
1254
- #: settings/settings-edit.php:262
1255
- msgid "Double Opt In Mail Content (Confirmation Email)"
1256
  msgstr ""
1257
 
1258
- #: settings/settings-edit.php:263
1259
  msgid ""
1260
  "Enter the content for the confirmation email to be sent for Double Opt In "
1261
- "whenever a user signs up. (Keyword: ###NAME###)"
1262
  msgstr ""
1263
 
1264
- #: settings/settings-edit.php:269
1265
  msgid "Double Opt In Confirmation Link"
1266
  msgstr ""
1267
 
1268
- #: settings/settings-edit.php:270 settings/settings-edit.php:313
1269
  msgid "It is a readonly field and you are advised not to modify it."
1270
  msgstr ""
1271
 
1272
- #: settings/settings-edit.php:276
1273
  msgid ""
1274
- "Text to display after Email is successfully subscribed from Double Opt In "
1275
- "(confirmation) Email"
1276
  msgstr ""
1277
 
1278
- #: settings/settings-edit.php:277
1279
  msgid ""
1280
  "This text will be displayed once user clicks on email confirmation link from "
1281
  "the Double Opt In (confirmation) Email."
1282
  msgstr ""
1283
 
1284
- #: settings/settings-edit.php:284
1285
  msgid "Subscriber Welcome Email"
1286
  msgstr ""
1287
 
1288
- #: settings/settings-edit.php:285
1289
  msgid ""
1290
  "To send welcome email to subscriber after successful signup. This option "
1291
  "must be set to YES."
1292
  msgstr ""
1293
 
1294
- #: settings/settings-edit.php:289 settings/settings-edit.php:362
1295
- #: subscribers/view-subscriber-sync.php:106
1296
- msgid "YES"
1297
- msgstr ""
1298
-
1299
- #: settings/settings-edit.php:290 settings/settings-edit.php:363
1300
- #: subscribers/view-subscriber-sync.php:105
1301
- msgid "NO"
1302
- msgstr ""
1303
-
1304
- #: settings/settings-edit.php:296
1305
  msgid "Subscriber Welcome Email Subject"
1306
  msgstr ""
1307
 
1308
- #: settings/settings-edit.php:297
1309
  msgid ""
1310
  "Enter the subject for the subscriber welcome email. This will be sent "
1311
  "whenever a user's email is either confirmed (if Double Opt In) / subscribed "
1312
- "(if Single Op In) successfully."
1313
  msgstr ""
1314
 
1315
- #: settings/settings-edit.php:303
1316
  msgid "Subscriber Welcome Email Content"
1317
  msgstr ""
1318
 
1319
- #: settings/settings-edit.php:304
1320
  msgid ""
1321
  "Enter the content for the subscriber welcome email whenever a user's email "
1322
  "is either confirmed (if Double Opt In) / subscribed (if Single Opt In) "
1323
- "successfully. (Keyword: ###NAME###)"
1324
  msgstr ""
1325
 
1326
- #: settings/settings-edit.php:312
1327
  msgid "Unsubscribe Link"
1328
  msgstr ""
1329
 
1330
- #: settings/settings-edit.php:319
1331
- msgid "Unsubscribe Text in Email"
 
 
 
1332
  msgstr ""
1333
 
1334
  #: settings/settings-edit.php:320
 
 
 
 
1335
  msgid ""
1336
  "Enter the text for the unsubscribe link. This text is added with unsubscribe "
1337
  "link in the emails. (Keyword: ###LINK###)"
1338
  msgstr ""
1339
 
1340
- #: settings/settings-edit.php:326
1341
- msgid "Text to display after Email is unsubscribed"
1342
  msgstr ""
1343
 
1344
- #: settings/settings-edit.php:327
1345
  msgid "This text will be displayed once user clicks on unsubscribe link."
1346
  msgstr ""
1347
 
1348
- #: settings/settings-edit.php:334
1349
- msgid "Error in Confirmation Link"
1350
  msgstr ""
1351
 
1352
- #: settings/settings-edit.php:335
1353
  msgid ""
1354
  "Default message to display if there is any issue while clicking on "
1355
  "confirmation link from the Double Opt In (confirmation) Emails."
1356
  msgstr ""
1357
 
1358
- #: settings/settings-edit.php:341
1359
- msgid "Error in Unsubscribe Link"
1360
  msgstr ""
1361
 
1362
- #: settings/settings-edit.php:342
1363
  msgid ""
1364
  "Default message to display if there is any issue while clicking on "
1365
  "unsubscribe link from the Emails."
1366
  msgstr ""
1367
 
1368
- #: settings/settings-edit.php:349
1369
  msgid "Admin Email Addresses"
1370
  msgstr ""
1371
 
1372
- #: settings/settings-edit.php:350
1373
  msgid ""
1374
  "Enter the admin email addresses that should receive notifications (separated "
1375
  "by comma)."
1376
  msgstr ""
1377
 
1378
- #: settings/settings-edit.php:356
1379
- msgid "Notify Admin about New Subscriber"
1380
  msgstr ""
1381
 
1382
- #: settings/settings-edit.php:357
1383
  msgid ""
1384
  "To send admin email notifications for the new subscriber. This option must "
1385
  "be set to YES."
1386
  msgstr ""
1387
 
1388
- #: settings/settings-edit.php:369
1389
- msgid "Admin Email Subject"
1390
  msgstr ""
1391
 
1392
- #: settings/settings-edit.php:370
1393
  msgid ""
1394
- "Enter the subject for the admin email. This will be sent whenever a new "
1395
  "email is added and confirmed."
1396
  msgstr ""
1397
 
1398
- #: settings/settings-edit.php:376
1399
- msgid "Admin Email Content"
1400
  msgstr ""
1401
 
1402
- #: settings/settings-edit.php:377
1403
  msgid ""
1404
- "Enter the email content for the admin email. This will be sent whenever a "
1405
  "new email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)"
1406
  msgstr ""
1407
 
1408
- #: settings/settings-edit.php:384
1409
  msgid "Sent Report Subject"
1410
  msgstr ""
1411
 
1412
- #: settings/settings-edit.php:385
1413
  msgid ""
1414
- "Enter the subject for the sent email report. It will be mailed to Admin."
1415
  msgstr ""
1416
 
1417
- #: settings/settings-edit.php:391
1418
  msgid "Sent Report Content"
1419
  msgstr ""
1420
 
1421
- #: settings/settings-edit.php:392
1422
  msgid ""
1423
- "Enter the content for the sent mail report. It will be mailed to Admin. "
1424
  "(Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
1425
  msgstr ""
1426
 
1427
- #: settings/settings-edit.php:402
1428
  msgid "Save Settings"
1429
  msgstr ""
1430
 
1431
- #: subscribers/view-subscriber-add.php:35
1432
- #: subscribers/view-subscriber-edit.php:53
1433
  msgid "Please enter subscriber email address."
1434
  msgstr ""
1435
 
1436
- #: subscribers/view-subscriber-add.php:48
1437
  msgid "Please select or create your group for this email."
1438
  msgstr ""
1439
 
1440
- #: subscribers/view-subscriber-add.php:55
1441
  msgid ""
1442
  "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1443
  "the group name."
1444
  msgstr ""
1445
 
1446
- #: subscribers/view-subscriber-add.php:65
1447
  msgid "Subscriber has been saved."
1448
  msgstr ""
1449
 
1450
- #: subscribers/view-subscriber-add.php:67
1451
  msgid "Subscriber already exists."
1452
  msgstr ""
1453
 
1454
- #: subscribers/view-subscriber-add.php:70
1455
  msgid "Invalid Email."
1456
  msgstr ""
1457
 
1458
- #: subscribers/view-subscriber-add.php:109
1459
- #: subscribers/view-subscriber-edit.php:108
1460
- #: subscribers/view-subscriber-export.php:26
1461
- #: subscribers/view-subscriber-import.php:142
1462
- #: subscribers/view-subscriber-show.php:241
1463
- #: subscribers/view-subscriber-sync.php:88
1464
- msgid "Add New Subscriber"
1465
- msgstr ""
1466
-
1467
  #: subscribers/view-subscriber-add.php:110
1468
  #: subscribers/view-subscriber-edit.php:109
1469
  #: subscribers/view-subscriber-export.php:27
1470
- #: subscribers/view-subscriber-import.php:209
1471
  #: subscribers/view-subscriber-show.php:242
1472
  #: subscribers/view-subscriber-sync.php:89
1473
- msgid "Import"
1474
  msgstr ""
1475
 
1476
  #: subscribers/view-subscriber-add.php:111
1477
  #: subscribers/view-subscriber-edit.php:110
1478
- #: subscribers/view-subscriber-import.php:143
 
1479
  #: subscribers/view-subscriber-show.php:243
1480
  #: subscribers/view-subscriber-sync.php:90
1481
- msgid "Export"
1482
  msgstr ""
1483
 
1484
  #: subscribers/view-subscriber-add.php:112
1485
  #: subscribers/view-subscriber-edit.php:111
1486
- #: subscribers/view-subscriber-export.php:28
1487
  #: subscribers/view-subscriber-import.php:144
1488
  #: subscribers/view-subscriber-show.php:244
1489
- #: subscribers/view-subscriber-sync.php:142
 
 
 
 
 
 
 
 
 
1490
  msgid "Sync"
1491
  msgstr ""
1492
 
1493
- #: subscribers/view-subscriber-add.php:122
1494
  msgid "Enter Subscriber's Full name"
1495
  msgstr ""
1496
 
1497
- #: subscribers/view-subscriber-add.php:132
1498
  msgid "Enter Subscriber's Email Address"
1499
  msgstr ""
1500
 
1501
- #: subscribers/view-subscriber-add.php:142
1502
  msgid "Select Subscriber's Status"
1503
  msgstr ""
1504
 
1505
- #: subscribers/view-subscriber-add.php:147
1506
- #: subscribers/view-subscriber-edit.php:146
1507
- #: subscribers/view-subscriber-import.php:174
1508
- #: subscribers/view-subscriber-show.php:299
1509
- #: subscribers/view-subscriber-show.php:326
1510
- msgid "Confirmed"
1511
- msgstr ""
1512
-
1513
  #: subscribers/view-subscriber-add.php:148
1514
  #: subscribers/view-subscriber-edit.php:147
1515
  #: subscribers/view-subscriber-import.php:175
1516
  #: subscribers/view-subscriber-show.php:300
1517
  #: subscribers/view-subscriber-show.php:327
1518
- msgid "Unconfirmed"
1519
  msgstr ""
1520
 
1521
  #: subscribers/view-subscriber-add.php:149
@@ -1523,299 +1526,310 @@ msgstr ""
1523
  #: subscribers/view-subscriber-import.php:176
1524
  #: subscribers/view-subscriber-show.php:301
1525
  #: subscribers/view-subscriber-show.php:328
 
 
 
 
 
 
 
 
1526
  msgid "Unsubscribed"
1527
  msgstr ""
1528
 
1529
- #: subscribers/view-subscriber-add.php:157
1530
  msgid "Select (or) Create Group for Subscriber"
1531
  msgstr ""
1532
 
1533
- #: subscribers/view-subscriber-add.php:173
1534
- #: subscribers/view-subscriber-import.php:201
1535
  msgid "(or)"
1536
  msgstr ""
1537
 
1538
- #: subscribers/view-subscriber-add.php:182
1539
  msgid "Add Subscriber"
1540
  msgstr ""
1541
 
1542
- #: subscribers/view-subscriber-edit.php:63
1543
  msgid "Error: Special characters are not allowed in the group name."
1544
  msgstr ""
1545
 
1546
- #: subscribers/view-subscriber-edit.php:73
1547
  msgid "Subscriber details updated."
1548
  msgstr ""
1549
 
1550
- #: subscribers/view-subscriber-edit.php:75
1551
  msgid "Subscriber already exists for this group."
1552
  msgstr ""
1553
 
1554
- #: subscribers/view-subscriber-edit.php:107
1555
  msgid "Edit Subscriber"
1556
  msgstr ""
1557
 
1558
- #: subscribers/view-subscriber-edit.php:121
1559
  msgid "Subscriber's Full Name"
1560
  msgstr ""
1561
 
1562
- #: subscribers/view-subscriber-edit.php:131
1563
  msgid "Subscriber's Email Address"
1564
  msgstr ""
1565
 
1566
- #: subscribers/view-subscriber-edit.php:141
1567
  msgid "Update Subscriber's Status"
1568
  msgstr ""
1569
 
1570
- #: subscribers/view-subscriber-edit.php:156
1571
  msgid "Update Subscriber's Group"
1572
  msgstr ""
1573
 
1574
- #: subscribers/view-subscriber-export.php:25
1575
  msgid "Export Email Addresses"
1576
  msgstr ""
1577
 
1578
- #: subscribers/view-subscriber-export.php:37
1579
- #: subscribers/view-subscriber-export.php:45
1580
  msgid "Type of List to Export"
1581
  msgstr ""
1582
 
1583
- #: subscribers/view-subscriber-export.php:38
1584
- #: subscribers/view-subscriber-export.php:46
1585
- msgid "Total Emails"
1586
  msgstr ""
1587
 
1588
- #: subscribers/view-subscriber-export.php:52
1589
  msgid "1"
1590
  msgstr ""
1591
 
1592
- #: subscribers/view-subscriber-export.php:53
1593
- msgid "All Subscribers List"
1594
  msgstr ""
1595
 
1596
- #: subscribers/view-subscriber-export.php:55
1597
- #: subscribers/view-subscriber-export.php:61
1598
- #: subscribers/view-subscriber-export.php:67
1599
  msgid "Click to Export in CSV"
1600
  msgstr ""
1601
 
1602
- #: subscribers/view-subscriber-export.php:58
1603
  msgid "2"
1604
  msgstr ""
1605
 
1606
- #: subscribers/view-subscriber-export.php:59
1607
  msgid "WordPress Registered Users"
1608
  msgstr ""
1609
 
1610
- #: subscribers/view-subscriber-export.php:64
1611
  msgid "3"
1612
  msgstr ""
1613
 
1614
- #: subscribers/view-subscriber-export.php:65
1615
  msgid "Commented Authors"
1616
  msgstr ""
1617
 
1618
- #: subscribers/view-subscriber-import.php:43
1619
  msgid ""
1620
  "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1621
  "the Group name."
1622
  msgstr ""
1623
 
1624
- #: subscribers/view-subscriber-import.php:91
1625
  msgid "email imported."
1626
  msgstr ""
1627
 
1628
- #: subscribers/view-subscriber-import.php:92
1629
  msgid "email already exists."
1630
  msgstr ""
1631
 
1632
- #: subscribers/view-subscriber-import.php:93
1633
  msgid "email are invalid."
1634
  msgstr ""
1635
 
1636
- #: subscribers/view-subscriber-import.php:96
1637
- #: subscribers/view-subscriber-import.php:125
1638
  msgid "Click here"
1639
  msgstr ""
1640
 
1641
- #: subscribers/view-subscriber-import.php:96
1642
- #: subscribers/view-subscriber-import.php:125
1643
  msgid " to view details."
1644
  msgstr ""
1645
 
1646
- #: subscribers/view-subscriber-import.php:104
1647
  msgid "File Upload Failed."
1648
  msgstr ""
1649
 
1650
- #: subscribers/view-subscriber-import.php:141
1651
  msgid "Import Email Addresses"
1652
  msgstr ""
1653
 
1654
- #: subscribers/view-subscriber-import.php:154
1655
  msgid "Select CSV file"
1656
  msgstr ""
1657
 
1658
- #: subscribers/view-subscriber-import.php:156
1659
  msgid "Check CSV structure "
1660
  msgstr ""
1661
 
1662
- #: subscribers/view-subscriber-import.php:157
1663
  msgid "from here"
1664
  msgstr ""
1665
 
1666
- #: subscribers/view-subscriber-import.php:168
1667
  msgid "Select Subscribers Email Status"
1668
  msgstr ""
1669
 
1670
- #: subscribers/view-subscriber-import.php:184
1671
  msgid "Select (or) Create Group for Subscribers"
1672
  msgstr ""
1673
 
1674
- #: subscribers/view-subscriber-show.php:44
1675
  msgid "Selected details does not exists."
1676
  msgstr ""
1677
 
1678
- #: subscribers/view-subscriber-show.php:55
1679
- #: subscribers/view-subscriber-show.php:94
1680
  msgid "Record deleted."
1681
  msgstr ""
1682
 
1683
- #: subscribers/view-subscriber-show.php:66
1684
  msgid ""
1685
  "To send confirmation email, please change the Opt-in option to Double Opt In."
1686
  msgstr ""
1687
 
1688
- #: subscribers/view-subscriber-show.php:74
1689
- #: subscribers/view-subscriber-show.php:133
1690
  msgid "Confirmation emails Resent Successfully."
1691
  msgstr ""
1692
 
1693
- #: subscribers/view-subscriber-show.php:99
1694
- #: subscribers/view-subscriber-show.php:138
1695
- #: subscribers/view-subscriber-show.php:176
1696
- #: subscribers/view-subscriber-show.php:215
1697
  msgid "No record was selected."
1698
  msgstr ""
1699
 
1700
- #: subscribers/view-subscriber-show.php:114
1701
  msgid ""
1702
  "To send confirmation mail, please change the Opt-in option to Double Opt In."
1703
  msgstr ""
1704
 
1705
- #: subscribers/view-subscriber-show.php:162
1706
  msgid "Subscribers Group updated."
1707
  msgstr ""
1708
 
1709
- #: subscribers/view-subscriber-show.php:167
1710
  msgid "Please select New group to update."
1711
  msgstr ""
1712
 
1713
- #: subscribers/view-subscriber-show.php:201
1714
  msgid "Subscribers Status updated."
1715
  msgstr ""
1716
 
1717
- #: subscribers/view-subscriber-show.php:206
1718
  msgid "Please select New Status to update."
1719
  msgstr ""
1720
 
1721
- #: subscribers/view-subscriber-show.php:276
1722
  msgid "Bulk Actions"
1723
  msgstr ""
1724
 
1725
- #: subscribers/view-subscriber-show.php:278
1726
- #: subscribers/view-subscriber-show.php:411
1727
  msgid "Resend Confirmation"
1728
  msgstr ""
1729
 
1730
- #: subscribers/view-subscriber-show.php:280
1731
  msgid "Update Subscribers Status"
1732
  msgstr ""
1733
 
1734
- #: subscribers/view-subscriber-show.php:283
1735
  msgid "Select Group"
1736
  msgstr ""
1737
 
1738
- #: subscribers/view-subscriber-show.php:298
1739
- #: subscribers/view-subscriber-show.php:325
1740
- msgid "All Status"
1741
  msgstr ""
1742
 
1743
- #: subscribers/view-subscriber-show.php:304
1744
  msgid "Apply"
1745
  msgstr ""
1746
 
1747
- #: subscribers/view-subscriber-show.php:308
1748
  msgid "All Groups"
1749
  msgstr ""
1750
 
1751
- #: subscribers/view-subscriber-show.php:332
1752
- msgid "1 to 200 emails"
1753
  msgstr ""
1754
 
1755
  #: subscribers/view-subscriber-show.php:333
1756
- msgid "201 to 400"
1757
  msgstr ""
1758
 
1759
  #: subscribers/view-subscriber-show.php:334
1760
- msgid "401 to 600"
1761
  msgstr ""
1762
 
1763
  #: subscribers/view-subscriber-show.php:335
1764
- msgid "601 to 800"
1765
  msgstr ""
1766
 
1767
  #: subscribers/view-subscriber-show.php:336
1768
- msgid "801 to 1000"
1769
  msgstr ""
1770
 
1771
  #: subscribers/view-subscriber-show.php:337
1772
- msgid "1001 to 2000"
1773
  msgstr ""
1774
 
1775
  #: subscribers/view-subscriber-show.php:338
1776
- msgid "2001 to 5000"
1777
  msgstr ""
1778
 
1779
  #: subscribers/view-subscriber-show.php:339
1780
- msgid "5001 to 10000"
1781
  msgstr ""
1782
 
1783
  #: subscribers/view-subscriber-show.php:340
 
 
 
 
1784
  msgid "Display All"
1785
  msgstr ""
1786
 
1787
- #: subscribers/view-subscriber-show.php:352
1788
- #: subscribers/view-subscriber-show.php:366
1789
  msgid "Email Address"
1790
  msgstr ""
1791
 
1792
- #: subscribers/view-subscriber-show.php:355
1793
- #: subscribers/view-subscriber-show.php:369
1794
  msgid "Group"
1795
  msgstr ""
1796
 
1797
- #: subscribers/view-subscriber-show.php:356
1798
- #: subscribers/view-subscriber-show.php:370
1799
  msgid "Signup Date<br>(YYYY-MM-DD)"
1800
  msgstr ""
1801
 
1802
- #: subscribers/view-subscriber-sync.php:35
1803
  msgid "Please select default group to newly registered user."
1804
  msgstr ""
1805
 
1806
- #: subscribers/view-subscriber-sync.php:49
1807
  msgid "Emails Successfully Synced."
1808
  msgstr ""
1809
 
1810
- #: subscribers/view-subscriber-sync.php:87
1811
  msgid "Sync Email"
1812
  msgstr ""
1813
 
1814
- #: subscribers/view-subscriber-sync.php:100
1815
  msgid "Sync newly registered users to subscribers list"
1816
  msgstr ""
1817
 
1818
- #: subscribers/view-subscriber-sync.php:113
1819
  msgid "Select group to add newly registered users to"
1820
  msgstr ""
1821
 
@@ -1823,9 +1837,9 @@ msgstr ""
1823
  msgid "Email Subscribers & Newsletters"
1824
  msgstr ""
1825
 
1826
- #. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.7) #-#-#-#-#
1827
  #. Plugin URI of the plugin/theme
1828
- #. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.7) #-#-#-#-#
1829
  #. Author URI of the plugin/theme
1830
  msgid "http://www.icegram.com/"
1831
  msgstr ""
2
  # This file is distributed under the same license as the Email Subscribers & Newsletters package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Email Subscribers & Newsletters 3.2.8\n"
6
  "Report-Msgid-Bugs-To: http://www.storeapps.org/support/contact-us/\n"
7
+ "POT-Creation-Date: 2017-03-20 04:54:56+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: Mon, 20 Mar 2017 10:24:56 +0530\n"
12
  "Last-Translator: Ratnakar Dubey <ratnakar.dubey@storeapps.org>\n"
13
  "Language-Team: StoreApps <support@storeapps.org>\n"
14
 
15
+ #: base/es-defined.php:32
16
+ msgid ""
17
+ "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
18
+ "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
19
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
20
+ "</a> rating. A huge thank you from Icegram in advance!"
21
+ msgstr ""
22
+
23
+ #: classes/es-common.php:13
24
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
25
  msgstr ""
26
 
27
+ #: classes/es-common.php:16
28
  msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
29
  msgstr ""
30
 
31
+ #: classes/es-common.php:19
32
  msgid "<span style=\"color:#999900\">Unsubscribed</span>"
33
  msgstr ""
34
 
35
+ #: classes/es-common.php:22
36
  msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
37
  msgstr ""
38
 
39
+ #: classes/es-common.php:25
40
  msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
41
  msgstr ""
42
 
43
+ #: classes/es-common.php:28
44
  msgid "<span style=\"color:#999900;\">Nodata</span>"
45
  msgstr ""
46
 
47
+ #: classes/es-common.php:31
48
  msgid "<span style=\"color:#FF0000\">Disabled</span>"
49
  msgstr ""
50
 
51
+ #: classes/es-common.php:34
52
  msgid "<span style=\"color:#FF0000\">In Queue</span>"
53
  msgstr ""
54
 
55
+ #: classes/es-common.php:37
56
  msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
57
  msgstr ""
58
 
59
+ #: classes/es-common.php:40
60
  msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
61
  msgstr ""
62
 
63
+ #: classes/es-common.php:43
64
  msgid "<span style=\"color:#993399;\">Immediately</span>"
65
  msgstr ""
66
 
67
+ #: classes/es-loadwidget.php:28 classes/es-register.php:552
68
+ #: subscribers/view-subscriber-show.php:354
69
+ #: subscribers/view-subscriber-show.php:368
70
  msgid "Name"
71
  msgstr ""
72
 
73
+ #: classes/es-loadwidget.php:33 classes/es-register.php:557
74
  msgid "Email *"
75
  msgstr ""
76
 
77
+ #: classes/es-loadwidget.php:38 classes/es-register.php:562
78
  msgid "Subscribe"
79
  msgstr ""
80
 
81
+ #: classes/es-register.php:144 classes/es-register.php:145
82
  msgid "Email Subscribers"
83
  msgstr ""
84
 
85
+ #: classes/es-register.php:147 classes/es-register.php:148
86
+ #: subscribers/view-subscriber-show.php:241
87
  msgid "Subscribers"
88
  msgstr ""
89
 
90
+ #: classes/es-register.php:150 classes/es-register.php:151
91
+ #: compose/compose-show.php:64
92
  msgid "Compose"
93
  msgstr ""
94
 
95
+ #: classes/es-register.php:153 classes/es-register.php:154
96
+ #: notification/notification-show.php:52
97
  msgid "Post Notifications"
98
  msgstr ""
99
 
100
+ #: classes/es-register.php:156 classes/es-register.php:157
101
+ #: sendmail/sendmail.php:93
102
  msgid "Newsletters"
103
  msgstr ""
104
 
105
+ #: classes/es-register.php:159 classes/es-register.php:160
106
+ #: cron/cron-add.php:79
107
  msgid "Cron Settings"
108
  msgstr ""
109
 
110
+ #: classes/es-register.php:162 classes/es-register.php:163
111
+ #: settings/settings-edit.php:197
112
  msgid "Email Settings"
113
  msgstr ""
114
 
115
+ #: classes/es-register.php:165 classes/es-register.php:166
116
+ #: roles/roles-add.php:110
117
  msgid "User Roles"
118
  msgstr ""
119
 
120
+ #: classes/es-register.php:168 classes/es-register.php:169
121
+ #: sentmail/sentmail-show.php:96
122
  msgid "Reports"
123
  msgstr ""
124
 
125
+ #: classes/es-register.php:171
126
  msgid "Help & Info"
127
  msgstr ""
128
 
129
+ #: classes/es-register.php:172
130
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
131
  msgstr ""
132
 
133
+ #: classes/es-register.php:183
134
  msgctxt "view-subscriber-enhanced-select"
135
  msgid "Please enter subscriber email address."
136
  msgstr ""
137
 
138
+ #: classes/es-register.php:184
139
  msgctxt "view-subscriber-enhanced-select"
140
  msgid "Please select subscriber email status."
141
  msgstr ""
142
 
143
+ #: classes/es-register.php:185
144
  msgctxt "view-subscriber-enhanced-select"
145
  msgid "Please select or create group for this subscriber."
146
  msgstr ""
147
 
148
+ #: classes/es-register.php:186
149
  msgctxt "view-subscriber-enhanced-select"
150
  msgid "Do you want to delete this record?"
151
  msgstr ""
152
 
153
+ #: classes/es-register.php:187
154
  msgctxt "view-subscriber-enhanced-select"
155
  msgid "Please select the bulk action."
156
  msgstr ""
157
 
158
+ #: classes/es-register.php:188
159
  msgctxt "view-subscriber-enhanced-select"
160
  msgid "Are you sure you want to delete selected records?"
161
  msgstr ""
162
 
163
+ #: classes/es-register.php:189
164
  msgctxt "view-subscriber-enhanced-select"
165
  msgid ""
166
  "Do you want to resend confirmation email? \\nAlso please note, this will "
167
  "update subscriber current status to 'Unconfirmed'."
168
  msgstr ""
169
 
170
+ #: classes/es-register.php:190
171
  msgctxt "view-subscriber-enhanced-select"
172
  msgid "Please select new subscriber group."
173
  msgstr ""
174
 
175
+ #: classes/es-register.php:191
176
  msgctxt "view-subscriber-enhanced-select"
177
  msgid "Please select new status for subscribers"
178
  msgstr ""
179
 
180
+ #: classes/es-register.php:192
181
  msgctxt "view-subscriber-enhanced-select"
182
  msgid "Do you want to update subscribers group?"
183
  msgstr ""
184
 
185
+ #: classes/es-register.php:193
186
  msgctxt "view-subscriber-enhanced-select"
187
  msgid "Do you want to update subscribers status?"
188
  msgstr ""
189
 
190
+ #: classes/es-register.php:194
191
  msgctxt "view-subscriber-enhanced-select"
192
  msgid "Do you want to export the emails?"
193
  msgstr ""
194
 
195
+ #: classes/es-register.php:195
196
  msgctxt "view-subscriber-enhanced-select"
197
  msgid ""
198
  "Please select only csv file. Please check official website for csv "
199
  "structure.."
200
  msgstr ""
201
 
202
+ #: classes/es-register.php:203
203
  msgctxt "compose-enhanced-select"
204
  msgid "Please enter name for configuration."
205
  msgstr ""
206
 
207
+ #: classes/es-register.php:204
208
  msgctxt "compose-enhanced-select"
209
  msgid "Please select template for this configuration."
210
  msgstr ""
211
 
212
+ #: classes/es-register.php:205
213
  msgctxt "compose-enhanced-select"
214
  msgid "Do you want to delete this record?"
215
  msgstr ""
216
 
217
+ #: classes/es-register.php:213
218
  msgctxt "notification-enhanced-select"
219
  msgid "Please select subscribers group."
220
  msgstr ""
221
 
222
+ #: classes/es-register.php:214
223
  msgctxt "notification-enhanced-select"
224
  msgid ""
225
  "Please select notification mail subject. Use compose menu to create new."
226
  msgstr ""
227
 
228
+ #: classes/es-register.php:215
229
  msgctxt "notification-enhanced-select"
230
  msgid "Please select notification status."
231
  msgstr ""
232
 
233
+ #: classes/es-register.php:216
234
  msgctxt "notification-enhanced-select"
235
  msgid "Do you want to delete this record?"
236
  msgstr ""
237
 
238
+ #: classes/es-register.php:224
239
  msgctxt "sendmail-enhanced-select"
240
  msgid "Please select your mail subject."
241
  msgstr ""
242
 
243
+ #: classes/es-register.php:225
244
  msgctxt "sendmail-enhanced-select"
245
  msgid "Please select your mail type."
246
  msgstr ""
247
 
248
+ #: classes/es-register.php:226
249
  msgctxt "sendmail-enhanced-select"
250
  msgid ""
251
  "Have you double checked your selected group? If so, let's go ahead and send "
252
  "this."
253
  msgstr ""
254
 
255
+ #: classes/es-register.php:234
256
  msgctxt "sentmail-enhanced-select"
257
  msgid "Do you want to delete this record?"
258
  msgstr ""
259
 
260
+ #: classes/es-register.php:235
261
  msgctxt "sentmail-enhanced-select"
262
  msgid "Do you want to delete all records except latest 10?"
263
  msgstr ""
264
 
265
+ #: classes/es-register.php:243
266
  msgctxt "cron-enhanced-select"
267
  msgid "Please select enter number of mails you want to send per hour/trigger."
268
  msgstr ""
269
 
270
+ #: classes/es-register.php:244
271
  msgctxt "cron-enhanced-select"
272
  msgid "Please enter the mail count, only number."
273
  msgstr ""
274
 
275
+ #: classes/es-register.php:257
276
  msgctxt "widget-enhanced-select"
277
+ msgid "Please enter email address"
278
  msgstr ""
279
 
280
+ #: classes/es-register.php:258
281
  msgctxt "widget-enhanced-select"
282
+ msgid "Please provide a valid email address"
283
  msgstr ""
284
 
285
+ #: classes/es-register.php:259
286
  msgctxt "widget-enhanced-select"
287
  msgid "loading..."
288
  msgstr ""
289
 
290
+ #: classes/es-register.php:260
291
  msgctxt "widget-enhanced-select"
292
  msgid "Cannot create XMLHTTP instance"
293
  msgstr ""
294
 
295
+ #: classes/es-register.php:261
296
  msgctxt "widget-enhanced-select"
297
+ msgid "Successfully Subscribed."
298
  msgstr ""
299
 
300
+ #: classes/es-register.php:262
301
  msgctxt "widget-enhanced-select"
302
  msgid ""
303
  "Your subscription was successful! Within a few minutes, kindly check the "
305
  "mail in your mailbox, please check your spam folder."
306
  msgstr ""
307
 
308
+ #: classes/es-register.php:263
309
  msgctxt "widget-enhanced-select"
310
+ msgid "Email Address already exists!"
311
  msgstr ""
312
 
313
+ #: classes/es-register.php:264
314
  msgctxt "widget-enhanced-select"
315
  msgid "Oops.. Unexpected error occurred."
316
  msgstr ""
317
 
318
+ #: classes/es-register.php:265
319
  msgctxt "widget-enhanced-select"
320
+ msgid "Invalid email address"
321
  msgstr ""
322
 
323
+ #: classes/es-register.php:266
324
  msgctxt "widget-enhanced-select"
325
+ msgid "Please try after some time"
326
  msgstr ""
327
 
328
+ #: classes/es-register.php:267
329
  msgctxt "widget-enhanced-select"
330
+ msgid "There was a problem with the request"
331
  msgstr ""
332
 
333
+ #: classes/es-register.php:274
334
  msgctxt "widget-page-enhanced-select"
335
+ msgid "Please enter email address"
336
  msgstr ""
337
 
338
+ #: classes/es-register.php:275
339
  msgctxt "widget-page-enhanced-select"
340
+ msgid "Please provide a valid email address"
341
  msgstr ""
342
 
343
+ #: classes/es-register.php:276
344
  msgctxt "widget-page-enhanced-select"
345
  msgid "loading..."
346
  msgstr ""
347
 
348
+ #: classes/es-register.php:277
349
  msgctxt "widget-page-enhanced-select"
350
  msgid "Cannot create XMLHTTP instance"
351
  msgstr ""
352
 
353
+ #: classes/es-register.php:278
354
  msgctxt "widget-page-enhanced-select"
355
+ msgid "Successfully Subscribed."
356
  msgstr ""
357
 
358
+ #: classes/es-register.php:279
359
  msgctxt "widget-page-enhanced-select"
360
  msgid ""
361
  "Your subscription was successful! Within a few minutes, kindly check the "
363
  "mail in your mailbox, please check your spam folder."
364
  msgstr ""
365
 
366
+ #: classes/es-register.php:280
367
  msgctxt "widget-page-enhanced-select"
368
+ msgid "Email Address already exists!"
369
  msgstr ""
370
 
371
+ #: classes/es-register.php:281
372
  msgctxt "widget-page-enhanced-select"
373
  msgid "Oops.. Unexpected error occurred."
374
  msgstr ""
375
 
376
+ #: classes/es-register.php:282
377
  msgctxt "widget-page-enhanced-select"
378
+ msgid "Invalid email address"
379
  msgstr ""
380
 
381
+ #: classes/es-register.php:283
382
  msgctxt "widget-page-enhanced-select"
383
+ msgid "Please try after some time"
384
  msgstr ""
385
 
386
+ #: classes/es-register.php:284
387
  msgctxt "widget-page-enhanced-select"
388
+ msgid "There was a problem with the request"
389
  msgstr ""
390
 
391
+ #: classes/es-register.php:461
392
  msgid ""
393
  "Email Subscribers recommends free plugin <b>Rainmaker</b> to collect leads "
394
  "instantly"
395
  msgstr ""
396
 
397
+ #: classes/es-register.php:462
398
  msgid "Yes, I want this"
399
  msgstr ""
400
 
401
+ #: classes/es-register.php:462
402
  msgid "No, I don't want it"
403
  msgstr ""
404
 
405
+ #: classes/es-register.php:600
406
  msgid "Widget Title"
407
  msgstr ""
408
 
409
+ #: classes/es-register.php:604
410
+ msgid "Short description about subscription form"
411
+ msgstr ""
412
+
413
+ #: classes/es-register.php:608
414
  msgid "Display Name Field"
415
  msgstr ""
416
 
417
+ #: classes/es-register.php:610 settings/settings-edit.php:290
418
+ #: settings/settings-edit.php:363 subscribers/view-subscriber-sync.php:107
419
+ msgid "YES"
420
  msgstr ""
421
 
422
+ #: classes/es-register.php:611 settings/settings-edit.php:291
423
+ #: settings/settings-edit.php:364 subscribers/view-subscriber-sync.php:106
424
+ msgid "NO"
425
  msgstr ""
426
 
427
+ #: classes/es-register.php:615
428
  msgid "Subscriber Group"
429
  msgstr ""
430
 
431
+ #: compose/compose-add.php:31 compose/compose-edit.php:48
432
  msgid "Please enter template heading."
433
  msgstr ""
434
 
435
+ #: compose/compose-add.php:43
436
  msgid "Template successfully created. "
437
  msgstr ""
438
 
439
+ #: compose/compose-add.php:74
440
  msgid "Add new Email"
441
  msgstr ""
442
 
443
+ #: compose/compose-add.php:75 compose/compose-edit.php:86
444
+ #: compose/compose-preview.php:28 compose/compose-show.php:66
445
+ #: cron/cron-add.php:80 notification/notification-add.php:113
446
+ #: notification/notification-edit.php:124
447
+ #: notification/notification-show.php:54 roles/roles-add.php:111
448
+ #: sendmail/sendmail.php:94 sentmail/deliverreport-show.php:61
449
+ #: sentmail/sentmail-preview.php:28 sentmail/sentmail-show.php:97
450
+ #: settings/settings-edit.php:198 subscribers/view-subscriber-add.php:114
451
+ #: subscribers/view-subscriber-edit.php:113
452
+ #: subscribers/view-subscriber-export.php:30
453
+ #: subscribers/view-subscriber-import.php:146
454
+ #: subscribers/view-subscriber-show.php:246
455
+ #: subscribers/view-subscriber-sync.php:92
456
  msgid "Help"
457
  msgstr ""
458
 
459
+ #: compose/compose-add.php:78 compose/compose-edit.php:89
460
  msgid "Select your Mail Template"
461
  msgstr ""
462
 
463
+ #: compose/compose-add.php:80 compose/compose-edit.php:91
464
  msgid "Newsletter"
465
  msgstr ""
466
 
467
+ #: compose/compose-add.php:81 compose/compose-edit.php:92
468
  msgid "Post Notification"
469
  msgstr ""
470
 
471
+ #: compose/compose-add.php:85 compose/compose-edit.php:96
472
  msgid "Enter your Email Subject"
473
  msgstr ""
474
 
475
+ #: compose/compose-add.php:87 compose/compose-edit.php:98
476
  msgid "Keyword: ###POSTTITLE###"
477
  msgstr ""
478
 
479
+ #: compose/compose-add.php:89 compose/compose-edit.php:100
480
  msgid "Enter Content for your Email"
481
  msgstr ""
482
 
483
+ #: compose/compose-add.php:93 compose/compose-edit.php:104
484
  msgid ""
485
  "%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
486
  "###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
487
  "###POSTDESC###, ###POSTFULL###"
488
  msgstr ""
489
 
490
+ #: compose/compose-add.php:93 compose/compose-edit.php:104
491
  msgid "Available Keywords"
492
  msgstr ""
493
 
494
+ #: compose/compose-add.php:97 compose/compose-edit.php:108
495
+ #: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:84
496
+ #: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
497
+ #: subscribers/view-subscriber-show.php:355
498
+ #: subscribers/view-subscriber-show.php:369
499
  msgid "Status"
500
  msgstr ""
501
 
502
+ #: compose/compose-add.php:99 compose/compose-edit.php:110
503
  msgid "Published"
504
  msgstr ""
505
 
506
+ #: compose/compose-add.php:101 compose/compose-edit.php:112
507
  msgid "Please select your mail status"
508
  msgstr ""
509
 
510
+ #: compose/compose-add.php:105 compose/compose-edit.php:117
511
+ #: cron/cron-add.php:120 notification/notification-add.php:253
512
+ #: notification/notification-edit.php:290 roles/roles-add.php:207
513
+ #: subscribers/view-subscriber-edit.php:191
514
  msgid "Save"
515
  msgstr ""
516
 
517
+ #: compose/compose-edit.php:20 compose/compose-preview.php:18
518
+ #: compose/compose-show.php:33 notification/notification-edit.php:20
519
+ #: notification/notification-show.php:21 sentmail/sentmail-preview.php:18
520
+ #: sentmail/sentmail-show.php:22 settings/settings-edit.php:20
521
+ #: subscribers/view-subscriber-edit.php:22
522
  msgid "Oops, selected details does not exists."
523
  msgstr ""
524
 
525
+ #: compose/compose-edit.php:61
526
  msgid "Template successfully updated. "
527
  msgstr ""
528
 
529
+ #: compose/compose-edit.php:84
530
  msgid "Edit Email"
531
  msgstr ""
532
 
533
+ #: compose/compose-edit.php:85 compose/compose-show.php:65
534
+ #: notification/notification-edit.php:123
535
+ #: notification/notification-show.php:53
536
  msgid "Add New"
537
  msgstr ""
538
 
539
+ #: compose/compose-preview.php:27 sentmail/sentmail-preview.php:27
540
  msgid "Preview Mail"
541
  msgstr ""
542
 
543
+ #: compose/compose-preview.php:40 compose/compose-show.php:101
544
+ #: notification/notification-show.php:100
545
+ #: subscribers/view-subscriber-show.php:399
546
  msgid "Edit"
547
  msgstr ""
548
 
549
+ #: compose/compose-show.php:14 sendmail/sendmail.php:18
550
+ #: subscribers/view-subscriber-show.php:17
551
  msgid "Click Here"
552
  msgstr ""
553
 
554
+ #: compose/compose-show.php:47 notification/notification-show.php:35
555
+ #: sentmail/sentmail-show.php:36
556
  msgid "Selected record deleted."
557
  msgstr ""
558
 
559
+ #: compose/compose-show.php:77 compose/compose-show.php:84
560
+ #: notification/notification-show.php:68 notification/notification-show.php:76
561
  msgid "Email Subject"
562
  msgstr ""
563
 
564
+ #: compose/compose-show.php:78 compose/compose-show.php:85
565
  msgid "Email Template"
566
  msgstr ""
567
 
568
+ #: compose/compose-show.php:79 compose/compose-show.php:86
569
  msgid "Actions"
570
  msgstr ""
571
 
572
+ #: compose/compose-show.php:102 notification/notification-show.php:103
573
+ #: subscribers/view-subscriber-show.php:278
574
+ #: subscribers/view-subscriber-show.php:404
575
  msgid "Delete"
576
  msgstr ""
577
 
578
+ #: compose/compose-show.php:103 sentmail/sentmail-show.php:111
579
+ #: sentmail/sentmail-show.php:124
580
  msgid "Preview"
581
  msgstr ""
582
 
583
+ #: compose/compose-show.php:111 notification/notification-show.php:143
584
+ #: sentmail/deliverreport-show.php:127 sentmail/sentmail-show.php:183
585
+ #: subscribers/view-subscriber-show.php:427
586
  msgid "No records available."
587
  msgstr ""
588
 
589
+ #: cron/cron-add.php:24
590
  msgid "Please enter valid mail count."
591
  msgstr ""
592
 
593
+ #: cron/cron-add.php:34
594
  msgid "Successfully updated."
595
  msgstr ""
596
 
597
+ #: cron/cron-add.php:87
598
  msgid "Cron job URL"
599
  msgstr ""
600
 
601
+ #: cron/cron-add.php:88
602
  msgid ""
603
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
604
  "modify it."
605
  msgstr ""
606
 
607
+ #: cron/cron-add.php:97
608
+ msgid "Email Count"
609
  msgstr ""
610
 
611
+ #: cron/cron-add.php:98
612
+ msgid "Number of emails that you want to trigger per hour."
613
  msgstr ""
614
 
615
+ #: cron/cron-add.php:103
616
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
617
  msgstr ""
618
 
619
+ #: cron/cron-add.php:108
620
  msgid "Admin Report"
621
  msgstr ""
622
 
623
+ #: cron/cron-add.php:109
624
  msgid ""
625
  "Email to admin whenever cron URL is triggered from your server. (Keywords: "
626
  "###DATE###, ###SUBJECT###, ###COUNT###)"
627
  msgstr ""
628
 
629
+ #: cron/cron-add.php:126
630
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
631
  msgstr ""
632
 
633
+ #: cron/cron-add.php:127
634
  msgid ""
635
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
636
  "schedule-cron-emails/\">What is Cron?</a>"
637
  msgstr ""
638
 
639
+ #: cron/cron-add.php:128
640
  msgid ""
641
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
642
  "schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
643
  msgstr ""
644
 
645
+ #: cron/cron-add.php:129
646
  msgid ""
647
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
648
  "schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
649
  msgstr ""
650
 
651
+ #: cron/cron-add.php:130
652
  msgid ""
653
  "<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-"
654
  "do-if-hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?"
659
  msgid "Unexpected url submit has been detected"
660
  msgstr ""
661
 
662
+ #: help/help.php:47
663
  msgid "Welcome to Email Subscribers!"
664
  msgstr ""
665
 
666
+ #: help/help.php:48
667
  msgid ""
668
  "Thanks for installing and we hope you will enjoy using Email Subscribers."
669
  msgstr ""
670
 
671
+ #: help/help.php:52
672
  msgid "For more help and tips..."
673
  msgstr ""
674
 
675
+ #: help/help.php:67
676
  msgid "Like Email Subscribers? Please consider %s."
677
  msgstr ""
678
 
679
+ #: help/help.php:67
680
  msgid "contributing to us"
681
  msgstr ""
682
 
683
+ #: help/help.php:99
684
  msgid "Frequently Asked Questions"
685
  msgstr ""
686
 
687
+ #: help/help.php:118 help/help.php:127 help/help.php:130 help/help.php:133
688
+ #: help/help.php:136 help/help.php:139 help/help.php:142 help/help.php:145
689
+ #: help/help.php:148 help/help.php:151 help/help.php:154 help/help.php:157
690
+ #: help/help.php:160 help/help.php:163 help/help.php:166 help/help.php:169
691
+ #: help/help.php:172 help/help.php:175 help/help.php:178
692
  msgid "%s"
693
  msgstr ""
694
 
695
+ #: help/help.php:118
696
  msgid "How to Add Subscription box to website?"
697
  msgstr ""
698
 
699
+ #: help/help.php:127
700
  msgid "General Plugin Settings"
701
  msgstr ""
702
 
703
+ #: help/help.php:127
704
  msgid ""
705
  " (How to modify the existing email content like Confirmation email, Welcome "
706
  "email, Admin emails)"
707
  msgstr ""
708
 
709
+ #: help/help.php:130
710
  msgid "How to Import or Export Email Addresses?"
711
  msgstr ""
712
 
713
+ #: help/help.php:133
714
  msgid "How to change/update/translate any texts from Email Subscribers?"
715
  msgstr ""
716
 
717
+ #: help/help.php:136
718
  msgid "How to add Unsubscribe link in emails?"
719
  msgstr ""
720
 
721
+ #: help/help.php:139
722
  msgid "What are Static Templates and Dynamic Templates?"
723
  msgstr ""
724
 
725
+ #: help/help.php:142
726
  msgid "How to Compose and Send Newsletter Emails?"
727
  msgstr ""
728
 
729
+ #: help/help.php:145
730
  msgid ""
731
  "How to Configure and Send Post Notification emails to subscribers when new "
732
  "posts are published?"
733
  msgstr ""
734
 
735
+ #: help/help.php:148
736
  msgid "How to Send a sample new post notification email to testgroup/myself?"
737
  msgstr ""
738
 
739
+ #: help/help.php:151
740
  msgid "How to check Sent emails reports?"
741
  msgstr ""
742
 
743
+ #: help/help.php:154
744
  msgid "How to Add/Update Existing Subscribers Group?"
745
  msgstr ""
746
 
747
+ #: help/help.php:157
748
  msgid "Subscribers are not receiving Emails?"
749
  msgstr ""
750
 
751
+ #: help/help.php:160
752
  msgid "How to show subscribe form inside a popup?"
753
  msgstr ""
754
 
755
+ #: help/help.php:163
756
  msgid "How to use Rainmaker’s form in Email Subscribers?"
757
  msgstr ""
758
 
759
+ #: help/help.php:166
760
  msgid "How to Schedule Cron Mails?"
761
  msgstr ""
762
 
763
+ #: help/help.php:169
764
  msgid "How to Schedule Cron Emails in cPanel?"
765
  msgstr ""
766
 
767
+ #: help/help.php:172
768
  msgid "How to Schedule Cron Emails in Parallels Plesk?"
769
  msgstr ""
770
 
771
+ #: help/help.php:175
772
  msgid "What to do if Hosting doesn’t support Cron Jobs?"
773
  msgstr ""
774
 
775
+ #: help/help.php:178
776
  msgid "Commonly Asked Questions"
777
  msgstr ""
778
 
779
+ #: job/es-optin.php:58 job/es-optin.php:68 job/es-unsubscribe.php:55
780
+ #: job/es-unsubscribe.php:62
781
  msgid ""
782
  "Oops.. We are getting some technical error. Please try again or contact "
783
  "admin."
784
  msgstr ""
785
 
786
+ #: job/es-optin.php:61
787
  msgid "This email address has already been confirmed."
788
  msgstr ""
789
 
790
+ #: notification/notification-add.php:33
791
  msgid "Please select subscribers group."
792
  msgstr ""
793
 
794
+ #: notification/notification-add.php:39
795
  msgid "Please select notification status."
796
  msgstr ""
797
 
798
+ #: notification/notification-add.php:45 notification/notification-edit.php:61
799
  msgid ""
800
  "Please select notification mail subject. Use compose menu to create new."
801
  msgstr ""
802
 
803
+ #: notification/notification-add.php:51 notification/notification-edit.php:67
804
  msgid "Please select post categories."
805
  msgstr ""
806
 
807
+ #: notification/notification-add.php:71
808
  msgid "Notification successfully created. "
809
  msgstr ""
810
 
811
+ #: notification/notification-add.php:112
812
  msgid "Add Notification"
813
  msgstr ""
814
 
815
+ #: notification/notification-add.php:120
816
  msgid "Select Subscribers Group"
817
  msgstr ""
818
 
819
+ #: notification/notification-add.php:124 notification/notification-add.php:148
820
+ #: notification/notification-edit.php:135
821
+ #: notification/notification-edit.php:168 sendmail/sendmail.php:110
822
+ #: sendmail/sendmail.php:137 sendmail/sendmail.php:151
823
+ #: subscribers/view-subscriber-add.php:162
824
+ #: subscribers/view-subscriber-edit.php:162
825
+ #: subscribers/view-subscriber-import.php:190
826
+ #: subscribers/view-subscriber-sync.php:119
827
  msgid "Select"
828
  msgstr ""
829
 
830
+ #: notification/notification-add.php:142
831
+ #: notification/notification-edit.php:162
832
  msgid "Select Notification Email Subject"
833
  msgstr ""
834
 
835
+ #: notification/notification-add.php:143
836
+ #: notification/notification-edit.php:163
837
  msgid "(Use compose menu to create new)"
838
  msgstr ""
839
 
840
+ #: notification/notification-add.php:167
841
+ #: notification/notification-edit.php:190
842
  msgid "Select Post Categories"
843
  msgstr ""
844
 
845
+ #: notification/notification-add.php:195
846
+ #: notification/notification-edit.php:225
847
  msgid "Check All"
848
  msgstr ""
849
 
850
+ #: notification/notification-add.php:196
851
+ #: notification/notification-edit.php:226
852
  msgid "Uncheck All"
853
  msgstr ""
854
 
855
+ #: notification/notification-add.php:202
856
+ #: notification/notification-edit.php:233
857
  msgid "Select your Custom Post Type"
858
  msgstr ""
859
 
860
+ #: notification/notification-add.php:203
861
+ #: notification/notification-edit.php:234
862
  msgid "(Optional)"
863
  msgstr ""
864
 
865
+ #: notification/notification-add.php:232
866
+ #: notification/notification-edit.php:268
867
  msgid "No Custom Post Types Available"
868
  msgstr ""
869
 
870
+ #: notification/notification-add.php:239
871
+ #: notification/notification-edit.php:275
872
  msgid "Select Notification Status when a new post is published"
873
  msgstr ""
874
 
 
 
 
 
 
 
875
  #: notification/notification-add.php:243
876
  #: notification/notification-edit.php:279
877
+ #: notification/notification-show.php:130 sendmail/sendmail.php:138
878
+ msgid "Send email immediately"
879
  msgstr ""
880
 
881
  #: notification/notification-add.php:244
882
  #: notification/notification-edit.php:280
883
+ #: notification/notification-show.php:132
884
+ msgid "Add to cron and send email via cron job"
885
+ msgstr ""
886
+
887
+ #: notification/notification-add.php:245
888
+ #: notification/notification-edit.php:281
889
  msgid "Disable email notification"
890
  msgstr ""
891
 
892
+ #: notification/notification-edit.php:49
893
  msgid "Please select subscribers group"
894
  msgstr ""
895
 
896
+ #: notification/notification-edit.php:55
897
  msgid "Please select notification status"
898
  msgstr ""
899
 
900
+ #: notification/notification-edit.php:89
901
  msgid "Notification successfully updated. "
902
  msgstr ""
903
 
904
+ #: notification/notification-edit.php:122
905
  msgid "Edit Notification"
906
  msgstr ""
907
 
908
+ #: notification/notification-edit.php:131
909
+ #: subscribers/view-subscriber-show.php:280
910
  msgid "Update Subscribers Group"
911
  msgstr ""
912
 
913
+ #: notification/notification-show.php:57
914
  msgid ""
915
  "Use this to setup and send notification emails to your subscribers when a "
916
  "new post is published in your blog."
917
  msgstr ""
918
 
919
+ #: notification/notification-show.php:69 notification/notification-show.php:77
920
  msgid "Subscribers Group"
921
  msgstr ""
922
 
923
+ #: notification/notification-show.php:70 notification/notification-show.php:78
924
  msgid "Post Categories / Custom Post Types"
925
  msgstr ""
926
 
927
+ #: notification/notification-show.php:71 notification/notification-show.php:79
928
  msgid "Notification Status"
929
  msgstr ""
930
 
931
+ #: roles/roles-add.php:53
932
  msgid "Role Updated. "
933
  msgstr ""
934
 
935
+ #: roles/roles-add.php:114
936
  msgid ""
937
  "Select user roles who can access following menus. Only Admin can change this."
938
  msgstr ""
939
 
940
+ #: roles/roles-add.php:121
941
  msgid "Subscribers Menu"
942
  msgstr ""
943
 
 
 
 
 
 
 
944
  #: roles/roles-add.php:125 roles/roles-add.php:137 roles/roles-add.php:149
945
  #: roles/roles-add.php:161 roles/roles-add.php:173 roles/roles-add.php:185
946
  #: roles/roles-add.php:197
947
+ msgid "Administrator Only"
948
  msgstr ""
949
 
950
  #: roles/roles-add.php:126 roles/roles-add.php:138 roles/roles-add.php:150
951
  #: roles/roles-add.php:162 roles/roles-add.php:174 roles/roles-add.php:186
952
  #: roles/roles-add.php:198
953
+ msgid "Administrator/Editor"
954
+ msgstr ""
955
+
956
+ #: roles/roles-add.php:127 roles/roles-add.php:139 roles/roles-add.php:151
957
+ #: roles/roles-add.php:163 roles/roles-add.php:175 roles/roles-add.php:187
958
+ #: roles/roles-add.php:199
959
  msgid "Administrator/Editor/Author/Contributor"
960
  msgstr ""
961
 
962
+ #: roles/roles-add.php:133
963
  msgid "Compose Menu"
964
  msgstr ""
965
 
966
+ #: roles/roles-add.php:145
967
  msgid "Post Notifications Menu"
968
  msgstr ""
969
 
970
+ #: roles/roles-add.php:157
971
  msgid "Newsletters + Cron Settings Menu"
972
  msgstr ""
973
 
974
+ #: roles/roles-add.php:169
975
  msgid "Email Settings Menu"
976
  msgstr ""
977
 
978
+ #: roles/roles-add.php:181
979
  msgid "Reports Menu"
980
  msgstr ""
981
 
982
+ #: roles/roles-add.php:193
983
  msgid "Help & Info Menu"
984
  msgstr ""
985
 
986
+ #: sendmail/sendmail.php:40
987
  msgid "Please select your mail subject."
988
  msgstr ""
989
 
990
+ #: sendmail/sendmail.php:46
991
  msgid "Please select your mail type."
992
  msgstr ""
993
 
994
+ #: sendmail/sendmail.php:52
995
  msgid "Please select your group."
996
  msgstr ""
997
 
998
+ #: sendmail/sendmail.php:59
999
  msgid "Mail sent successfully. "
1000
  msgstr ""
1001
 
1002
+ #: sendmail/sendmail.php:63
1003
  msgid "Click here to check Statistics"
1004
  msgstr ""
1005
 
1006
+ #: sendmail/sendmail.php:69
1007
  msgid "Oops.. We are getting some error. mail not sending."
1008
  msgstr ""
1009
 
1010
+ #: sendmail/sendmail.php:97
1011
  msgid "Use this to send newsletter emails to your subscribers."
1012
  msgstr ""
1013
 
1014
+ #: sendmail/sendmail.php:105
1015
+ msgid "Select Email Subject from available list"
1016
  msgstr ""
1017
 
1018
+ #: sendmail/sendmail.php:132
1019
+ msgid "Select Email Type"
1020
  msgstr ""
1021
 
1022
+ #: sendmail/sendmail.php:139
1023
  msgid "Send email via cron job"
1024
  msgstr ""
1025
 
1026
+ #: sendmail/sendmail.php:146
1027
+ msgid "Select Subscribers group to Send Email"
1028
  msgstr ""
1029
 
1030
+ #: sendmail/sendmail.php:178
1031
  msgid "Recipients : 0 "
1032
  msgstr ""
1033
 
1034
+ #: sendmail/sendmail.php:180
1035
  msgid "Recipients : %s"
1036
  msgstr ""
1037
 
1038
+ #: sendmail/sendmail.php:183
1039
  msgid ""
1040
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1041
  "that you change above Mail Type to Cron and Send Mail via Cron Job.</"
1042
  "strong><br>Click on Help for more information."
1043
  msgstr ""
1044
 
1045
+ #: sendmail/sendmail.php:194 sendmail/sendmail.php:196
1046
  msgid "Send Email"
1047
  msgstr ""
1048
 
1049
+ #: sendmail/sendmail.php:199
1050
  msgid "Reset"
1051
  msgstr ""
1052
 
1053
+ #: sentmail/deliverreport-show.php:14
1054
  msgid "Oops.. Unexpected error occurred. Please try again."
1055
  msgstr ""
1056
 
1057
+ #: sentmail/deliverreport-show.php:50 sentmail/sentmail-show.php:86
1058
  msgid " &lt;&lt; "
1059
  msgstr ""
1060
 
1061
+ #: sentmail/deliverreport-show.php:51 sentmail/sentmail-show.php:87
1062
  msgid " &gt;&gt; "
1063
  msgstr ""
1064
 
1065
+ #: sentmail/deliverreport-show.php:60
1066
  msgid "Delivery Report"
1067
  msgstr ""
1068
 
1069
+ #: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:82
1070
+ #: subscribers/view-subscriber-export.php:37
1071
+ #: subscribers/view-subscriber-export.php:45
1072
+ #: subscribers/view-subscriber-show.php:352
1073
+ #: subscribers/view-subscriber-show.php:366
1074
  msgid "Sno"
1075
  msgstr ""
1076
 
1077
+ #: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:83
1078
  msgid "Email"
1079
  msgstr ""
1080
 
1081
+ #: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:85
1082
+ #: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
1083
  msgid "Sent"
1084
  msgstr ""
1085
 
1086
+ #: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:86
1087
  msgid "Sent Date"
1088
  msgstr ""
1089
 
1090
+ #: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:87
1091
  msgid "Viewed Status"
1092
  msgstr ""
1093
 
1094
+ #: sentmail/deliverreport-show.php:77 sentmail/deliverreport-show.php:88
1095
  msgid "Viewed Date"
1096
  msgstr ""
1097
 
1098
+ #: sentmail/sentmail-preview.php:42
1099
  msgid "Back"
1100
  msgstr ""
1101
 
1102
+ #: sentmail/sentmail-show.php:43
1103
  msgid "Successfully deleted all reports except latest 10."
1104
  msgstr ""
1105
 
1106
+ #: sentmail/sentmail-show.php:100
1107
  msgid ""
1108
  "It will show reports for all Newsletters & Post Notification emails sent."
1109
  msgstr ""
1110
 
1111
+ #: sentmail/sentmail-show.php:110 sentmail/sentmail-show.php:123
1112
  msgid "View Reports"
1113
  msgstr ""
1114
 
1115
+ #: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
1116
  msgid "Type"
1117
  msgstr ""
1118
 
1119
+ #: sentmail/sentmail-show.php:115 sentmail/sentmail-show.php:128
1120
  msgid "Start Date"
1121
  msgstr ""
1122
 
1123
+ #: sentmail/sentmail-show.php:116 sentmail/sentmail-show.php:129
1124
  msgid "End Date"
1125
  msgstr ""
1126
 
1127
+ #: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
1128
  msgid "Total"
1129
  msgstr ""
1130
 
1131
+ #: sentmail/sentmail-show.php:118 sentmail/sentmail-show.php:131
1132
+ #: subscribers/view-subscriber-export.php:40
1133
+ #: subscribers/view-subscriber-export.php:48
1134
+ #: subscribers/view-subscriber-show.php:358
1135
+ #: subscribers/view-subscriber-show.php:372
1136
  msgid "Action"
1137
  msgstr ""
1138
 
1139
+ #: sentmail/sentmail-show.php:193
1140
  msgid "Optimize Table & Delete Records"
1141
  msgstr ""
1142
 
1143
+ #: sentmail/sentmail-show.php:202
1144
  msgid ""
1145
  "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1146
  "button to delete all reports except latest 10."
1147
  msgstr ""
1148
 
1149
+ #: settings/setting-sync.php:16
1150
  msgid "Table sync completed successfully."
1151
  msgstr ""
1152
 
1153
+ #: settings/setting-sync.php:29
1154
  msgid "Sync plugin tables"
1155
  msgstr ""
1156
 
1157
+ #: settings/setting-sync.php:33
1158
  msgid "Click to sync tables"
1159
  msgstr ""
1160
 
1161
+ #: settings/settings-edit.php:117
1162
  msgid "Please enter sender of notifications from name."
1163
  msgstr ""
1164
 
1165
+ #: settings/settings-edit.php:122
1166
  msgid "Please enter sender of notifications from email."
1167
  msgstr ""
1168
 
1169
+ #: settings/settings-edit.php:155
1170
  msgid "Settings Saved."
1171
  msgstr ""
1172
 
1173
+ #: settings/settings-edit.php:158
1174
  msgid "Oops, unable to update."
1175
  msgstr ""
1176
 
1177
+ #: settings/settings-edit.php:205
1178
  msgid "Sender of Notifications"
1179
  msgstr ""
1180
 
1181
+ #: settings/settings-edit.php:206
1182
  msgid ""
1183
  "Choose a FROM name and FROM email address for all the emails to be sent from "
1184
  "this plugin."
1185
  msgstr ""
1186
 
1187
+ #: settings/settings-edit.php:216
1188
  msgid "Mail Type"
1189
  msgstr ""
1190
 
1191
+ #: settings/settings-edit.php:217
1192
  msgid ""
1193
  "Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
1194
  "Option 3 & 4 is to send mails with PHP method mail()."
1195
  msgstr ""
1196
 
1197
+ #: settings/settings-edit.php:221
1198
  msgid "1. WP HTML MAIL"
1199
  msgstr ""
1200
 
1201
+ #: settings/settings-edit.php:222
1202
  msgid "2. WP PLAINTEXT MAIL"
1203
  msgstr ""
1204
 
1205
+ #: settings/settings-edit.php:223
1206
  msgid "3. PHP HTML MAIL"
1207
  msgstr ""
1208
 
1209
+ #: settings/settings-edit.php:224
1210
  msgid "4. PHP PLAINTEXT MAIL"
1211
  msgstr ""
1212
 
1213
+ #: settings/settings-edit.php:231
1214
+ msgid "Opt-In Option"
1215
  msgstr ""
1216
 
1217
+ #: settings/settings-edit.php:232
1218
  msgid ""
1219
  "Double Opt In means subscribers need to confirm their email address by an "
1220
  "activation link sent them on a activation email message.<br />Single Opt In "
1221
  "means subscribers do not need to confirm their email address."
1222
  msgstr ""
1223
 
1224
+ #: settings/settings-edit.php:236
1225
  msgid "Double Opt In"
1226
  msgstr ""
1227
 
1228
+ #: settings/settings-edit.php:237 subscribers/view-subscriber-add.php:151
1229
+ #: subscribers/view-subscriber-edit.php:150
1230
+ #: subscribers/view-subscriber-import.php:178
1231
+ #: subscribers/view-subscriber-show.php:303
1232
+ #: subscribers/view-subscriber-show.php:330
1233
  msgid "Single Opt In"
1234
  msgstr ""
1235
 
1236
+ #: settings/settings-edit.php:243
1237
  msgid "Image Size"
1238
  msgstr ""
1239
 
1240
+ #: settings/settings-edit.php:244
1241
  msgid ""
1242
  "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
1243
  "Emails."
1244
  msgstr ""
1245
 
1246
+ #: settings/settings-edit.php:248
1247
  msgid "Full Size"
1248
  msgstr ""
1249
 
1250
+ #: settings/settings-edit.php:249
1251
  msgid "Medium Size"
1252
  msgstr ""
1253
 
1254
+ #: settings/settings-edit.php:250
1255
  msgid "Thumbnail"
1256
  msgstr ""
1257
 
1258
+ #: settings/settings-edit.php:256
1259
+ msgid "Double Opt In Email Subject (Confirmation Email)"
1260
  msgstr ""
1261
 
1262
+ #: settings/settings-edit.php:257
1263
  msgid ""
1264
+ "Enter the subject for the confirmation email to be sent for Double Opt In "
1265
  "whenever a user signs up."
1266
  msgstr ""
1267
 
1268
+ #: settings/settings-edit.php:263
1269
+ msgid "Double Opt In Email Content (Confirmation Email)"
1270
  msgstr ""
1271
 
1272
+ #: settings/settings-edit.php:264
1273
  msgid ""
1274
  "Enter the content for the confirmation email to be sent for Double Opt In "
1275
+ "whenever a user signs up. (Keyword: ###NAME###, ###LINK###)"
1276
  msgstr ""
1277
 
1278
+ #: settings/settings-edit.php:270
1279
  msgid "Double Opt In Confirmation Link"
1280
  msgstr ""
1281
 
1282
+ #: settings/settings-edit.php:271
1283
  msgid "It is a readonly field and you are advised not to modify it."
1284
  msgstr ""
1285
 
1286
+ #: settings/settings-edit.php:277
1287
  msgid ""
1288
+ "Text to display after an email address is successfully subscribed from "
1289
+ "Double Opt In (confirmation) Email"
1290
  msgstr ""
1291
 
1292
+ #: settings/settings-edit.php:278
1293
  msgid ""
1294
  "This text will be displayed once user clicks on email confirmation link from "
1295
  "the Double Opt In (confirmation) Email."
1296
  msgstr ""
1297
 
1298
+ #: settings/settings-edit.php:285
1299
  msgid "Subscriber Welcome Email"
1300
  msgstr ""
1301
 
1302
+ #: settings/settings-edit.php:286
1303
  msgid ""
1304
  "To send welcome email to subscriber after successful signup. This option "
1305
  "must be set to YES."
1306
  msgstr ""
1307
 
1308
+ #: settings/settings-edit.php:297
 
 
 
 
 
 
 
 
 
 
1309
  msgid "Subscriber Welcome Email Subject"
1310
  msgstr ""
1311
 
1312
+ #: settings/settings-edit.php:298
1313
  msgid ""
1314
  "Enter the subject for the subscriber welcome email. This will be sent "
1315
  "whenever a user's email is either confirmed (if Double Opt In) / subscribed "
1316
+ "(if Single Opt In) successfully."
1317
  msgstr ""
1318
 
1319
+ #: settings/settings-edit.php:304
1320
  msgid "Subscriber Welcome Email Content"
1321
  msgstr ""
1322
 
1323
+ #: settings/settings-edit.php:305
1324
  msgid ""
1325
  "Enter the content for the subscriber welcome email whenever a user's email "
1326
  "is either confirmed (if Double Opt In) / subscribed (if Single Opt In) "
1327
+ "successfully. (Keyword: ###NAME###, ###LINK###)"
1328
  msgstr ""
1329
 
1330
+ #: settings/settings-edit.php:313
1331
  msgid "Unsubscribe Link"
1332
  msgstr ""
1333
 
1334
+ #: settings/settings-edit.php:314
1335
+ msgid ""
1336
+ "The unsubscribe link gets added automatically to all emails that are sent "
1337
+ "from this plugin. It is a readonly field and you are advised not to modify "
1338
+ "it."
1339
  msgstr ""
1340
 
1341
  #: settings/settings-edit.php:320
1342
+ msgid "Unsubscribe Text in Email"
1343
+ msgstr ""
1344
+
1345
+ #: settings/settings-edit.php:321
1346
  msgid ""
1347
  "Enter the text for the unsubscribe link. This text is added with unsubscribe "
1348
  "link in the emails. (Keyword: ###LINK###)"
1349
  msgstr ""
1350
 
1351
+ #: settings/settings-edit.php:327
1352
+ msgid "Text to display after an email address is unsubscribed"
1353
  msgstr ""
1354
 
1355
+ #: settings/settings-edit.php:328
1356
  msgid "This text will be displayed once user clicks on unsubscribe link."
1357
  msgstr ""
1358
 
1359
+ #: settings/settings-edit.php:335
1360
+ msgid "Error in the Confirmation Link"
1361
  msgstr ""
1362
 
1363
+ #: settings/settings-edit.php:336
1364
  msgid ""
1365
  "Default message to display if there is any issue while clicking on "
1366
  "confirmation link from the Double Opt In (confirmation) Emails."
1367
  msgstr ""
1368
 
1369
+ #: settings/settings-edit.php:342
1370
+ msgid "Error in the Unsubscribe Link"
1371
  msgstr ""
1372
 
1373
+ #: settings/settings-edit.php:343
1374
  msgid ""
1375
  "Default message to display if there is any issue while clicking on "
1376
  "unsubscribe link from the Emails."
1377
  msgstr ""
1378
 
1379
+ #: settings/settings-edit.php:350
1380
  msgid "Admin Email Addresses"
1381
  msgstr ""
1382
 
1383
+ #: settings/settings-edit.php:351
1384
  msgid ""
1385
  "Enter the admin email addresses that should receive notifications (separated "
1386
  "by comma)."
1387
  msgstr ""
1388
 
1389
+ #: settings/settings-edit.php:357
1390
+ msgid "Notify admin when a new subscriber signs up"
1391
  msgstr ""
1392
 
1393
+ #: settings/settings-edit.php:358
1394
  msgid ""
1395
  "To send admin email notifications for the new subscriber. This option must "
1396
  "be set to YES."
1397
  msgstr ""
1398
 
1399
+ #: settings/settings-edit.php:370
1400
+ msgid "Admin Email Subject when a new subscriber signs up"
1401
  msgstr ""
1402
 
1403
+ #: settings/settings-edit.php:371
1404
  msgid ""
1405
+ "Enter the subject for the admin email which will be sent whenever a new "
1406
  "email is added and confirmed."
1407
  msgstr ""
1408
 
1409
+ #: settings/settings-edit.php:377
1410
+ msgid "Admin Email Content when a new subscriber signs up"
1411
  msgstr ""
1412
 
1413
+ #: settings/settings-edit.php:378
1414
  msgid ""
1415
+ "Enter the email content for the admin email which will be sent whenever a "
1416
  "new email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)"
1417
  msgstr ""
1418
 
1419
+ #: settings/settings-edit.php:385
1420
  msgid "Sent Report Subject"
1421
  msgstr ""
1422
 
1423
+ #: settings/settings-edit.php:386
1424
  msgid ""
1425
+ "Enter the subject for the sent email report. It will be emailed to Admin."
1426
  msgstr ""
1427
 
1428
+ #: settings/settings-edit.php:392
1429
  msgid "Sent Report Content"
1430
  msgstr ""
1431
 
1432
+ #: settings/settings-edit.php:393
1433
  msgid ""
1434
+ "Enter the content for the sent email report. It will be emailed to Admin. "
1435
  "(Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
1436
  msgstr ""
1437
 
1438
+ #: settings/settings-edit.php:403
1439
  msgid "Save Settings"
1440
  msgstr ""
1441
 
1442
+ #: subscribers/view-subscriber-add.php:36
1443
+ #: subscribers/view-subscriber-edit.php:54
1444
  msgid "Please enter subscriber email address."
1445
  msgstr ""
1446
 
1447
+ #: subscribers/view-subscriber-add.php:49
1448
  msgid "Please select or create your group for this email."
1449
  msgstr ""
1450
 
1451
+ #: subscribers/view-subscriber-add.php:56
1452
  msgid ""
1453
  "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1454
  "the group name."
1455
  msgstr ""
1456
 
1457
+ #: subscribers/view-subscriber-add.php:66
1458
  msgid "Subscriber has been saved."
1459
  msgstr ""
1460
 
1461
+ #: subscribers/view-subscriber-add.php:68
1462
  msgid "Subscriber already exists."
1463
  msgstr ""
1464
 
1465
+ #: subscribers/view-subscriber-add.php:71
1466
  msgid "Invalid Email."
1467
  msgstr ""
1468
 
 
 
 
 
 
 
 
 
 
1469
  #: subscribers/view-subscriber-add.php:110
1470
  #: subscribers/view-subscriber-edit.php:109
1471
  #: subscribers/view-subscriber-export.php:27
1472
+ #: subscribers/view-subscriber-import.php:143
1473
  #: subscribers/view-subscriber-show.php:242
1474
  #: subscribers/view-subscriber-sync.php:89
1475
+ msgid "Add New Subscriber"
1476
  msgstr ""
1477
 
1478
  #: subscribers/view-subscriber-add.php:111
1479
  #: subscribers/view-subscriber-edit.php:110
1480
+ #: subscribers/view-subscriber-export.php:28
1481
+ #: subscribers/view-subscriber-import.php:210
1482
  #: subscribers/view-subscriber-show.php:243
1483
  #: subscribers/view-subscriber-sync.php:90
1484
+ msgid "Import"
1485
  msgstr ""
1486
 
1487
  #: subscribers/view-subscriber-add.php:112
1488
  #: subscribers/view-subscriber-edit.php:111
 
1489
  #: subscribers/view-subscriber-import.php:144
1490
  #: subscribers/view-subscriber-show.php:244
1491
+ #: subscribers/view-subscriber-sync.php:91
1492
+ msgid "Export"
1493
+ msgstr ""
1494
+
1495
+ #: subscribers/view-subscriber-add.php:113
1496
+ #: subscribers/view-subscriber-edit.php:112
1497
+ #: subscribers/view-subscriber-export.php:29
1498
+ #: subscribers/view-subscriber-import.php:145
1499
+ #: subscribers/view-subscriber-show.php:245
1500
+ #: subscribers/view-subscriber-sync.php:143
1501
  msgid "Sync"
1502
  msgstr ""
1503
 
1504
+ #: subscribers/view-subscriber-add.php:123
1505
  msgid "Enter Subscriber's Full name"
1506
  msgstr ""
1507
 
1508
+ #: subscribers/view-subscriber-add.php:133
1509
  msgid "Enter Subscriber's Email Address"
1510
  msgstr ""
1511
 
1512
+ #: subscribers/view-subscriber-add.php:143
1513
  msgid "Select Subscriber's Status"
1514
  msgstr ""
1515
 
 
 
 
 
 
 
 
 
1516
  #: subscribers/view-subscriber-add.php:148
1517
  #: subscribers/view-subscriber-edit.php:147
1518
  #: subscribers/view-subscriber-import.php:175
1519
  #: subscribers/view-subscriber-show.php:300
1520
  #: subscribers/view-subscriber-show.php:327
1521
+ msgid "Confirmed"
1522
  msgstr ""
1523
 
1524
  #: subscribers/view-subscriber-add.php:149
1526
  #: subscribers/view-subscriber-import.php:176
1527
  #: subscribers/view-subscriber-show.php:301
1528
  #: subscribers/view-subscriber-show.php:328
1529
+ msgid "Unconfirmed"
1530
+ msgstr ""
1531
+
1532
+ #: subscribers/view-subscriber-add.php:150
1533
+ #: subscribers/view-subscriber-edit.php:149
1534
+ #: subscribers/view-subscriber-import.php:177
1535
+ #: subscribers/view-subscriber-show.php:302
1536
+ #: subscribers/view-subscriber-show.php:329
1537
  msgid "Unsubscribed"
1538
  msgstr ""
1539
 
1540
+ #: subscribers/view-subscriber-add.php:158
1541
  msgid "Select (or) Create Group for Subscriber"
1542
  msgstr ""
1543
 
1544
+ #: subscribers/view-subscriber-add.php:174
1545
+ #: subscribers/view-subscriber-import.php:202
1546
  msgid "(or)"
1547
  msgstr ""
1548
 
1549
+ #: subscribers/view-subscriber-add.php:183
1550
  msgid "Add Subscriber"
1551
  msgstr ""
1552
 
1553
+ #: subscribers/view-subscriber-edit.php:64
1554
  msgid "Error: Special characters are not allowed in the group name."
1555
  msgstr ""
1556
 
1557
+ #: subscribers/view-subscriber-edit.php:74
1558
  msgid "Subscriber details updated."
1559
  msgstr ""
1560
 
1561
+ #: subscribers/view-subscriber-edit.php:76
1562
  msgid "Subscriber already exists for this group."
1563
  msgstr ""
1564
 
1565
+ #: subscribers/view-subscriber-edit.php:108
1566
  msgid "Edit Subscriber"
1567
  msgstr ""
1568
 
1569
+ #: subscribers/view-subscriber-edit.php:122
1570
  msgid "Subscriber's Full Name"
1571
  msgstr ""
1572
 
1573
+ #: subscribers/view-subscriber-edit.php:132
1574
  msgid "Subscriber's Email Address"
1575
  msgstr ""
1576
 
1577
+ #: subscribers/view-subscriber-edit.php:142
1578
  msgid "Update Subscriber's Status"
1579
  msgstr ""
1580
 
1581
+ #: subscribers/view-subscriber-edit.php:157
1582
  msgid "Update Subscriber's Group"
1583
  msgstr ""
1584
 
1585
+ #: subscribers/view-subscriber-export.php:26
1586
  msgid "Export Email Addresses"
1587
  msgstr ""
1588
 
1589
+ #: subscribers/view-subscriber-export.php:38
1590
+ #: subscribers/view-subscriber-export.php:46
1591
  msgid "Type of List to Export"
1592
  msgstr ""
1593
 
1594
+ #: subscribers/view-subscriber-export.php:39
1595
+ #: subscribers/view-subscriber-export.php:47
1596
+ msgid "Total Emails Count"
1597
  msgstr ""
1598
 
1599
+ #: subscribers/view-subscriber-export.php:53
1600
  msgid "1"
1601
  msgstr ""
1602
 
1603
+ #: subscribers/view-subscriber-export.php:54
1604
+ msgid "Active Subscribers List"
1605
  msgstr ""
1606
 
1607
+ #: subscribers/view-subscriber-export.php:56
1608
+ #: subscribers/view-subscriber-export.php:62
1609
+ #: subscribers/view-subscriber-export.php:68
1610
  msgid "Click to Export in CSV"
1611
  msgstr ""
1612
 
1613
+ #: subscribers/view-subscriber-export.php:59
1614
  msgid "2"
1615
  msgstr ""
1616
 
1617
+ #: subscribers/view-subscriber-export.php:60
1618
  msgid "WordPress Registered Users"
1619
  msgstr ""
1620
 
1621
+ #: subscribers/view-subscriber-export.php:65
1622
  msgid "3"
1623
  msgstr ""
1624
 
1625
+ #: subscribers/view-subscriber-export.php:66
1626
  msgid "Commented Authors"
1627
  msgstr ""
1628
 
1629
+ #: subscribers/view-subscriber-import.php:44
1630
  msgid ""
1631
  "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1632
  "the Group name."
1633
  msgstr ""
1634
 
1635
+ #: subscribers/view-subscriber-import.php:92
1636
  msgid "email imported."
1637
  msgstr ""
1638
 
1639
+ #: subscribers/view-subscriber-import.php:93
1640
  msgid "email already exists."
1641
  msgstr ""
1642
 
1643
+ #: subscribers/view-subscriber-import.php:94
1644
  msgid "email are invalid."
1645
  msgstr ""
1646
 
1647
+ #: subscribers/view-subscriber-import.php:97
1648
+ #: subscribers/view-subscriber-import.php:126
1649
  msgid "Click here"
1650
  msgstr ""
1651
 
1652
+ #: subscribers/view-subscriber-import.php:97
1653
+ #: subscribers/view-subscriber-import.php:126
1654
  msgid " to view details."
1655
  msgstr ""
1656
 
1657
+ #: subscribers/view-subscriber-import.php:105
1658
  msgid "File Upload Failed."
1659
  msgstr ""
1660
 
1661
+ #: subscribers/view-subscriber-import.php:142
1662
  msgid "Import Email Addresses"
1663
  msgstr ""
1664
 
1665
+ #: subscribers/view-subscriber-import.php:155
1666
  msgid "Select CSV file"
1667
  msgstr ""
1668
 
1669
+ #: subscribers/view-subscriber-import.php:157
1670
  msgid "Check CSV structure "
1671
  msgstr ""
1672
 
1673
+ #: subscribers/view-subscriber-import.php:158
1674
  msgid "from here"
1675
  msgstr ""
1676
 
1677
+ #: subscribers/view-subscriber-import.php:169
1678
  msgid "Select Subscribers Email Status"
1679
  msgstr ""
1680
 
1681
+ #: subscribers/view-subscriber-import.php:185
1682
  msgid "Select (or) Create Group for Subscribers"
1683
  msgstr ""
1684
 
1685
+ #: subscribers/view-subscriber-show.php:45
1686
  msgid "Selected details does not exists."
1687
  msgstr ""
1688
 
1689
+ #: subscribers/view-subscriber-show.php:56
1690
+ #: subscribers/view-subscriber-show.php:95
1691
  msgid "Record deleted."
1692
  msgstr ""
1693
 
1694
+ #: subscribers/view-subscriber-show.php:67
1695
  msgid ""
1696
  "To send confirmation email, please change the Opt-in option to Double Opt In."
1697
  msgstr ""
1698
 
1699
+ #: subscribers/view-subscriber-show.php:75
1700
+ #: subscribers/view-subscriber-show.php:134
1701
  msgid "Confirmation emails Resent Successfully."
1702
  msgstr ""
1703
 
1704
+ #: subscribers/view-subscriber-show.php:100
1705
+ #: subscribers/view-subscriber-show.php:139
1706
+ #: subscribers/view-subscriber-show.php:177
1707
+ #: subscribers/view-subscriber-show.php:216
1708
  msgid "No record was selected."
1709
  msgstr ""
1710
 
1711
+ #: subscribers/view-subscriber-show.php:115
1712
  msgid ""
1713
  "To send confirmation mail, please change the Opt-in option to Double Opt In."
1714
  msgstr ""
1715
 
1716
+ #: subscribers/view-subscriber-show.php:163
1717
  msgid "Subscribers Group updated."
1718
  msgstr ""
1719
 
1720
+ #: subscribers/view-subscriber-show.php:168
1721
  msgid "Please select New group to update."
1722
  msgstr ""
1723
 
1724
+ #: subscribers/view-subscriber-show.php:202
1725
  msgid "Subscribers Status updated."
1726
  msgstr ""
1727
 
1728
+ #: subscribers/view-subscriber-show.php:207
1729
  msgid "Please select New Status to update."
1730
  msgstr ""
1731
 
1732
+ #: subscribers/view-subscriber-show.php:277
1733
  msgid "Bulk Actions"
1734
  msgstr ""
1735
 
1736
+ #: subscribers/view-subscriber-show.php:279
1737
+ #: subscribers/view-subscriber-show.php:412
1738
  msgid "Resend Confirmation"
1739
  msgstr ""
1740
 
1741
+ #: subscribers/view-subscriber-show.php:281
1742
  msgid "Update Subscribers Status"
1743
  msgstr ""
1744
 
1745
+ #: subscribers/view-subscriber-show.php:284
1746
  msgid "Select Group"
1747
  msgstr ""
1748
 
1749
+ #: subscribers/view-subscriber-show.php:299
1750
+ msgid "Select Status"
 
1751
  msgstr ""
1752
 
1753
+ #: subscribers/view-subscriber-show.php:305
1754
  msgid "Apply"
1755
  msgstr ""
1756
 
1757
+ #: subscribers/view-subscriber-show.php:309
1758
  msgid "All Groups"
1759
  msgstr ""
1760
 
1761
+ #: subscribers/view-subscriber-show.php:326
1762
+ msgid "All Status"
1763
  msgstr ""
1764
 
1765
  #: subscribers/view-subscriber-show.php:333
1766
+ msgid "1 to 200 emails"
1767
  msgstr ""
1768
 
1769
  #: subscribers/view-subscriber-show.php:334
1770
+ msgid "201 to 400"
1771
  msgstr ""
1772
 
1773
  #: subscribers/view-subscriber-show.php:335
1774
+ msgid "401 to 600"
1775
  msgstr ""
1776
 
1777
  #: subscribers/view-subscriber-show.php:336
1778
+ msgid "601 to 800"
1779
  msgstr ""
1780
 
1781
  #: subscribers/view-subscriber-show.php:337
1782
+ msgid "801 to 1000"
1783
  msgstr ""
1784
 
1785
  #: subscribers/view-subscriber-show.php:338
1786
+ msgid "1001 to 2000"
1787
  msgstr ""
1788
 
1789
  #: subscribers/view-subscriber-show.php:339
1790
+ msgid "2001 to 5000"
1791
  msgstr ""
1792
 
1793
  #: subscribers/view-subscriber-show.php:340
1794
+ msgid "5001 to 10000"
1795
+ msgstr ""
1796
+
1797
+ #: subscribers/view-subscriber-show.php:341
1798
  msgid "Display All"
1799
  msgstr ""
1800
 
1801
+ #: subscribers/view-subscriber-show.php:353
1802
+ #: subscribers/view-subscriber-show.php:367
1803
  msgid "Email Address"
1804
  msgstr ""
1805
 
1806
+ #: subscribers/view-subscriber-show.php:356
1807
+ #: subscribers/view-subscriber-show.php:370
1808
  msgid "Group"
1809
  msgstr ""
1810
 
1811
+ #: subscribers/view-subscriber-show.php:357
1812
+ #: subscribers/view-subscriber-show.php:371
1813
  msgid "Signup Date<br>(YYYY-MM-DD)"
1814
  msgstr ""
1815
 
1816
+ #: subscribers/view-subscriber-sync.php:36
1817
  msgid "Please select default group to newly registered user."
1818
  msgstr ""
1819
 
1820
+ #: subscribers/view-subscriber-sync.php:50
1821
  msgid "Emails Successfully Synced."
1822
  msgstr ""
1823
 
1824
+ #: subscribers/view-subscriber-sync.php:88
1825
  msgid "Sync Email"
1826
  msgstr ""
1827
 
1828
+ #: subscribers/view-subscriber-sync.php:101
1829
  msgid "Sync newly registered users to subscribers list"
1830
  msgstr ""
1831
 
1832
+ #: subscribers/view-subscriber-sync.php:114
1833
  msgid "Select group to add newly registered users to"
1834
  msgstr ""
1835
 
1837
  msgid "Email Subscribers & Newsletters"
1838
  msgstr ""
1839
 
1840
+ #. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.8) #-#-#-#-#
1841
  #. Plugin URI of the plugin/theme
1842
+ #. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.8) #-#-#-#-#
1843
  #. Author URI of the plugin/theme
1844
  msgid "http://www.icegram.com/"
1845
  msgstr ""
notification/notification-add.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die( 'You are not allowed to call this page directly.' );
 
5
  }
6
 
7
  ?>
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  ?>
notification/notification-edit.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die( 'You are not allowed to call this page directly.' );
 
5
  }
6
 
7
  ?>
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  ?>
notification/notification-show.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  // Form submitted, check the data
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  // Form submitted, check the data
query/_db_group.php DELETED
@@ -1,62 +0,0 @@
1
- <?php
2
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
3
- die('You are not allowed to call this page directly.');
4
- }
5
-
6
- class es_cls_group {
7
- public static function es_group_select($id = 0) {
8
- global $wpdb;
9
- $prefix = $wpdb->prefix;
10
- $arrRes = array();
11
- $sSql = "SELECT * FROM `".$prefix."es_group` where 1=1";
12
- if($id > 0) {
13
- $sSql = $sSql . " and es_group_id=".$id;
14
- $arrRes = $wpdb->get_row($sSql, ARRAY_A);
15
- } else {
16
- $arrRes = $wpdb->get_results($sSql, ARRAY_A);
17
- }
18
- return $arrRes;
19
- }
20
-
21
- public static function es_group_count($id = 0) {
22
- global $wpdb;
23
- $prefix = $wpdb->prefix;
24
- $result = '0';
25
- if($id > 0) {
26
- $sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$prefix."es_group` WHERE `es_group_id` = %d", array($id));
27
- } else {
28
- $sSql = "SELECT COUNT(*) AS `count` FROM `".$prefix."es_group`";
29
- }
30
- $result = $wpdb->get_var($sSql);
31
- return $result;
32
- }
33
-
34
- public static function es_group_delete($id = 0) {
35
- global $wpdb;
36
- $prefix = $wpdb->prefix;
37
- $sSql = $wpdb->prepare("DELETE FROM `".$prefix."es_group` WHERE `es_group_id` = %d LIMIT 1", $id);
38
- $wpdb->query($sSql);
39
- return true;
40
- }
41
-
42
- public static function es_group_ins($data = array(), $action = "insert") {
43
- global $wpdb;
44
- $prefix = $wpdb->prefix;
45
- $guid = es_cls_common::es_generate_guid(60);
46
-
47
- if($action == "insert") {
48
- $sSql = $wpdb->prepare("INSERT INTO `".$prefix."es_group` (`es_group_name`,
49
- `es_group_status`, `es_group_type`, `es_group_guid`) VALUES(%s, %s, %s, %s)",
50
- array($data["es_group_name"], $data["es_group_status"], $data["es_group_type"], $guid));
51
- } elseif($action == "update") {
52
- $sSql = $wpdb->prepare("UPDATE `".$prefix."es_group` SET `es_group_name` = %s, `es_group_status` = %s, `es_group_type` = %s
53
- WHERE es_group_id = %d LIMIT 1",
54
- array($data["es_group_name"], $data["es_group_status"], $data["es_group_type"], $data["es_group_id"]));
55
- }
56
-
57
- echo $sSql;
58
-
59
- $wpdb->query($sSql);
60
- return true;
61
- }
62
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
query/db_compose.php CHANGED
@@ -1,72 +1,87 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  class es_cls_compose {
8
  public static function es_template_select($id = 0) {
 
9
  global $wpdb;
10
- $prefix = $wpdb->prefix;
11
  $arrRes = array();
12
- $sSql = "SELECT * FROM `".$prefix."es_templatetable` where 1=1";
 
13
  if($id > 0) {
14
  $sSql = $sSql . " and es_templ_id=".$id;
15
  $arrRes = $wpdb->get_row($sSql, ARRAY_A);
16
  } else {
17
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
18
  }
 
19
  return $arrRes;
20
  }
21
 
22
  public static function es_template_select_type($type = "Newsletter") {
 
23
  global $wpdb;
24
- $prefix = $wpdb->prefix;
25
  $arrRes = array();
26
- $sSql = $wpdb->prepare("SELECT * FROM `".$prefix."es_templatetable` where es_email_type = %s", array($type));
 
27
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
 
28
  return $arrRes;
29
  }
30
 
31
  public static function es_template_count($id = 0) {
 
32
  global $wpdb;
33
- $prefix = $wpdb->prefix;
34
  $result = '0';
 
35
  if($id > 0) {
36
- $sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$prefix."es_templatetable` WHERE `es_templ_id` = %d", array($id));
37
  } else {
38
- $sSql = "SELECT COUNT(*) AS `count` FROM `".$prefix."es_templatetable`";
39
  }
40
  $result = $wpdb->get_var($sSql);
 
41
  return $result;
42
  }
43
 
44
  public static function es_template_delete($id = 0) {
 
45
  global $wpdb;
46
- $prefix = $wpdb->prefix;
47
- $sSql = $wpdb->prepare("DELETE FROM `".$prefix."es_templatetable` WHERE `es_templ_id` = %d LIMIT 1", $id);
48
  $wpdb->query($sSql);
 
49
  return true;
50
  }
51
 
52
  public static function es_template_ins($data = array(), $action = "insert") {
 
53
  global $wpdb;
54
- $prefix = $wpdb->prefix;
55
  if($action == "insert") {
56
- $sSql = $wpdb->prepare("INSERT INTO `".$prefix."es_templatetable` (`es_templ_heading`,
57
  `es_templ_body`, `es_templ_status`, `es_email_type`)
58
  VALUES(%s, %s, %s, %s)",
59
  array(trim($data["es_templ_heading"]), trim($data["es_templ_body"]), trim($data["es_templ_status"]), trim($data["es_email_type"])));
60
  } elseif($action == "update") {
61
- $sSql = $wpdb->prepare("UPDATE `".$prefix."es_templatetable` SET `es_templ_heading` = %s, `es_templ_body` = %s,
62
  `es_templ_status` = %s, `es_email_type` = %s WHERE es_templ_id = %d LIMIT 1",
63
  array($data["es_templ_heading"], $data["es_templ_body"], $data["es_templ_status"], $data["es_email_type"], $data["es_templ_id"]));
64
  }
65
  $wpdb->query($sSql);
 
66
  return true;
67
  }
68
 
69
  public static function es_template_getimage($postid=0, $size='thumbnail', $attributes='') {
 
70
  if ($images = get_children(array(
71
  'post_parent' => $postid,
72
  'post_type' => 'attachment',
@@ -76,5 +91,6 @@ class es_cls_compose {
76
  $attachment = wp_get_attachment_image_src($image->ID, $size);
77
  return "<img src='". $attachment[0] . "' " . $attributes . " />";
78
  }
 
79
  }
80
  }
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  class es_cls_compose {
9
  public static function es_template_select($id = 0) {
10
+
11
  global $wpdb;
12
+
13
  $arrRes = array();
14
+
15
+ $sSql = "SELECT * FROM `".$wpdb->prefix."es_templatetable` where 1=1";
16
  if($id > 0) {
17
  $sSql = $sSql . " and es_templ_id=".$id;
18
  $arrRes = $wpdb->get_row($sSql, ARRAY_A);
19
  } else {
20
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
21
  }
22
+
23
  return $arrRes;
24
  }
25
 
26
  public static function es_template_select_type($type = "Newsletter") {
27
+
28
  global $wpdb;
29
+
30
  $arrRes = array();
31
+
32
+ $sSql = $wpdb->prepare("SELECT * FROM `".$wpdb->prefix."es_templatetable` where es_email_type = %s", array($type));
33
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
34
+
35
  return $arrRes;
36
  }
37
 
38
  public static function es_template_count($id = 0) {
39
+
40
  global $wpdb;
41
+
42
  $result = '0';
43
+
44
  if($id > 0) {
45
+ $sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_templatetable` WHERE `es_templ_id` = %d", array($id));
46
  } else {
47
+ $sSql = "SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_templatetable`";
48
  }
49
  $result = $wpdb->get_var($sSql);
50
+
51
  return $result;
52
  }
53
 
54
  public static function es_template_delete($id = 0) {
55
+
56
  global $wpdb;
57
+
58
+ $sSql = $wpdb->prepare("DELETE FROM `".$wpdb->prefix."es_templatetable` WHERE `es_templ_id` = %d LIMIT 1", $id);
59
  $wpdb->query($sSql);
60
+
61
  return true;
62
  }
63
 
64
  public static function es_template_ins($data = array(), $action = "insert") {
65
+
66
  global $wpdb;
67
+
68
  if($action == "insert") {
69
+ $sSql = $wpdb->prepare("INSERT INTO `".$wpdb->prefix."es_templatetable` (`es_templ_heading`,
70
  `es_templ_body`, `es_templ_status`, `es_email_type`)
71
  VALUES(%s, %s, %s, %s)",
72
  array(trim($data["es_templ_heading"]), trim($data["es_templ_body"]), trim($data["es_templ_status"]), trim($data["es_email_type"])));
73
  } elseif($action == "update") {
74
+ $sSql = $wpdb->prepare("UPDATE `".$wpdb->prefix."es_templatetable` SET `es_templ_heading` = %s, `es_templ_body` = %s,
75
  `es_templ_status` = %s, `es_email_type` = %s WHERE es_templ_id = %d LIMIT 1",
76
  array($data["es_templ_heading"], $data["es_templ_body"], $data["es_templ_status"], $data["es_email_type"], $data["es_templ_id"]));
77
  }
78
  $wpdb->query($sSql);
79
+
80
  return true;
81
  }
82
 
83
  public static function es_template_getimage($postid=0, $size='thumbnail', $attributes='') {
84
+
85
  if ($images = get_children(array(
86
  'post_parent' => $postid,
87
  'post_type' => 'attachment',
91
  $attachment = wp_get_attachment_image_src($image->ID, $size);
92
  return "<img src='". $attachment[0] . "' " . $attributes . " />";
93
  }
94
+
95
  }
96
  }
query/db_default.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  class es_cls_default {
8
  public static function es_pluginconfig_default() {
 
9
  global $wpdb;
10
- $prefix = $wpdb->prefix;
11
 
12
  $result = es_cls_settings::es_setting_count(0);
13
  if ($result == 0) {
@@ -34,16 +35,16 @@ class es_cls_default {
34
  $es_c_usermailcontant = "Hi ###NAME###, \r\n\r\nWe have received a request to subscribe this email address to receive newsletter from our website. \r\n\r\nThank You\r\n".$blogname." \r\n\r\n No longer interested in emails from ".$blogname."?. Please <a href='###LINK###'>click here</a> to unsubscribe";
35
  $es_c_optinoption = "Double Opt In";
36
  $es_c_optinsubject = $blogname . " confirm subscription";
37
- $es_c_optincontent = "Hi ###NAME###, \r\n\r\nA newsletter subscription request for this email address was received. Please confirm it by <a href='###LINK###'>clicking here</a>.\r\n\r\nIf you still cannot subscribe, please click this link : \r\n ###LINK### \r\n\r\nThank You\r\n".$blogname;
38
  $es_c_optinlink = $optinlink;
39
  $es_c_unsublink = $unsublink;
40
  $es_c_unsubtext = "No longer interested in emails from ".$blogname."?. Please <a href='###LINK###'>click here</a> to unsubscribe";
41
  $es_c_unsubhtml = "Thank You, You have been successfully unsubscribed. You will no longer hear from us.";
42
- $es_c_subhtml = "Thank You, You have been successfully subscribed to our newsletter.";
43
  $es_c_message1 = "Oops.. This subscription cant be completed, sorry. The email address is blocked or already subscribed. Thank you.";
44
  $es_c_message2 = "Oops.. We are getting some technical error. Please try again or contact admin.";
45
 
46
- $sSql = $wpdb->prepare("INSERT INTO `".$prefix."es_pluginconfig`
47
  (`es_c_fromname`,`es_c_fromemail`, `es_c_mailtype`, `es_c_adminmailoption`, `es_c_adminemail`, `es_c_adminmailsubject`,
48
  `es_c_adminmailcontant`,`es_c_usermailoption`, `es_c_usermailsubject`, `es_c_usermailcontant`, `es_c_optinoption`, `es_c_optinsubject`,
49
  `es_c_optincontent`,`es_c_optinlink`, `es_c_unsublink`, `es_c_unsubtext`, `es_c_unsubhtml`, `es_c_subhtml`, `es_c_message1`, `es_c_message2`)
@@ -53,10 +54,13 @@ class es_cls_default {
53
  $es_c_optincontent,$es_c_optinlink, $es_c_unsublink, $es_c_unsubtext, $es_c_unsubhtml, $es_c_subhtml, $es_c_message1, $es_c_message2));
54
  $wpdb->query($sSql);
55
  }
 
56
  return true;
 
57
  }
58
 
59
  public static function es_subscriber_default() {
 
60
  $result = es_cls_dbquery::es_view_subscriber_count(0);
61
  if ($result == 0) {
62
  $form["es_email_mail"] = get_option('admin_email');
@@ -72,9 +76,11 @@ class es_cls_default {
72
  es_cls_dbquery::es_view_subscriber_ins($form, "insert");
73
  }
74
  return true;
 
75
  }
76
 
77
  public static function es_template_default() {
 
78
  $result = es_cls_compose::es_template_count(0);
79
  if ($result == 0) {
80
  $form['es_templ_heading'] = 'New post published ###POSTTITLE###';
@@ -127,10 +133,12 @@ class es_cls_default {
127
  $form['es_email_type'] = 'Newsletter';
128
  $action = es_cls_compose::es_template_ins($form, $action = "insert");
129
  }
 
130
  return true;
131
  }
132
 
133
  public static function es_notifications_default() {
 
134
  $result = es_cls_notification::es_notification_count(0);
135
  if ($result == 0) {
136
  $form["es_note_group"] = "Public";
@@ -152,6 +160,8 @@ class es_cls_default {
152
  $form["es_note_cat"] = $listcategory;
153
  es_cls_notification::es_notification_ins($form, "insert");
154
  }
 
155
  return true;
 
156
  }
157
  }
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  class es_cls_default {
9
  public static function es_pluginconfig_default() {
10
+
11
  global $wpdb;
 
12
 
13
  $result = es_cls_settings::es_setting_count(0);
14
  if ($result == 0) {
35
  $es_c_usermailcontant = "Hi ###NAME###, \r\n\r\nWe have received a request to subscribe this email address to receive newsletter from our website. \r\n\r\nThank You\r\n".$blogname." \r\n\r\n No longer interested in emails from ".$blogname."?. Please <a href='###LINK###'>click here</a> to unsubscribe";
36
  $es_c_optinoption = "Double Opt In";
37
  $es_c_optinsubject = $blogname . " confirm subscription";
38
+ $es_c_optincontent = "Hi ###NAME###, \r\n\r\nA subscription request for this email address was received. Please confirm it by <a href='###LINK###'>clicking here</a>.\r\n\r\nIf you still cannot subscribe, please click this link : \r\n ###LINK### \r\n\r\nThank You\r\n".$blogname;
39
  $es_c_optinlink = $optinlink;
40
  $es_c_unsublink = $unsublink;
41
  $es_c_unsubtext = "No longer interested in emails from ".$blogname."?. Please <a href='###LINK###'>click here</a> to unsubscribe";
42
  $es_c_unsubhtml = "Thank You, You have been successfully unsubscribed. You will no longer hear from us.";
43
+ $es_c_subhtml = "Thank You, You have been successfully subscribed.";
44
  $es_c_message1 = "Oops.. This subscription cant be completed, sorry. The email address is blocked or already subscribed. Thank you.";
45
  $es_c_message2 = "Oops.. We are getting some technical error. Please try again or contact admin.";
46
 
47
+ $sSql = $wpdb->prepare("INSERT INTO `".$wpdb->prefix."es_pluginconfig`
48
  (`es_c_fromname`,`es_c_fromemail`, `es_c_mailtype`, `es_c_adminmailoption`, `es_c_adminemail`, `es_c_adminmailsubject`,
49
  `es_c_adminmailcontant`,`es_c_usermailoption`, `es_c_usermailsubject`, `es_c_usermailcontant`, `es_c_optinoption`, `es_c_optinsubject`,
50
  `es_c_optincontent`,`es_c_optinlink`, `es_c_unsublink`, `es_c_unsubtext`, `es_c_unsubhtml`, `es_c_subhtml`, `es_c_message1`, `es_c_message2`)
54
  $es_c_optincontent,$es_c_optinlink, $es_c_unsublink, $es_c_unsubtext, $es_c_unsubhtml, $es_c_subhtml, $es_c_message1, $es_c_message2));
55
  $wpdb->query($sSql);
56
  }
57
+
58
  return true;
59
+
60
  }
61
 
62
  public static function es_subscriber_default() {
63
+
64
  $result = es_cls_dbquery::es_view_subscriber_count(0);
65
  if ($result == 0) {
66
  $form["es_email_mail"] = get_option('admin_email');
76
  es_cls_dbquery::es_view_subscriber_ins($form, "insert");
77
  }
78
  return true;
79
+
80
  }
81
 
82
  public static function es_template_default() {
83
+
84
  $result = es_cls_compose::es_template_count(0);
85
  if ($result == 0) {
86
  $form['es_templ_heading'] = 'New post published ###POSTTITLE###';
133
  $form['es_email_type'] = 'Newsletter';
134
  $action = es_cls_compose::es_template_ins($form, $action = "insert");
135
  }
136
+
137
  return true;
138
  }
139
 
140
  public static function es_notifications_default() {
141
+
142
  $result = es_cls_notification::es_notification_count(0);
143
  if ($result == 0) {
144
  $form["es_note_group"] = "Public";
160
  $form["es_note_cat"] = $listcategory;
161
  es_cls_notification::es_notification_ins($form, "insert");
162
  }
163
+
164
  return true;
165
+
166
  }
167
  }
query/db_delivery.php CHANGED
@@ -1,38 +1,48 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  class es_cls_delivery {
8
  public static function es_delivery_select($sentguid = "", $offset = 0, $limit = 0) {
 
9
  global $wpdb;
10
- $prefix = $wpdb->prefix;
11
  $arrRes = array();
12
- $sSql = "SELECT * FROM `".$prefix."es_deliverreport` where 1=1";
 
13
  if($sentguid <> "") {
14
  $sSql = $sSql . " and es_deliver_sentguid='".$sentguid."'";
15
  $sSql = $sSql . " order by es_deliver_id desc limit $offset, $limit";
16
  }
17
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
 
18
  return $arrRes;
 
19
  }
20
 
21
  public static function es_delivery_count($sentguid = "") {
 
22
  global $wpdb;
23
- $prefix = $wpdb->prefix;
24
  $result = '0';
25
- if($sentguid <> "") {
26
- $sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$prefix."es_deliverreport` WHERE `es_deliver_sentguid` = %s", array($sentguid));
 
27
  }
28
  $result = $wpdb->get_var($sSql);
 
29
  return $result;
 
30
  }
31
 
32
  public static function es_delivery_ins($guid = "", $dbid = 0, $email = "", $mailsenttype = "") {
 
33
  global $wpdb;
 
34
  $returnid = 0;
35
- $prefix = $wpdb->prefix;
36
 
37
  if($mailsenttype == "Immediately") {
38
  $es_sent_status = "Sent";
@@ -42,60 +52,75 @@ class es_cls_delivery {
42
  $currentdate = "0000-00-00";
43
  }
44
 
45
- $sSql = $wpdb->prepare("INSERT INTO `".$prefix."es_deliverreport` (`es_deliver_sentguid`,`es_deliver_emailid`, `es_deliver_emailmail`,
46
- `es_deliver_sentdate`,`es_deliver_status`,`es_deliver_sentstatus`,`es_deliver_senttype`)
47
- VALUES (%s, %s, %s, %s, %s, %s, %s)", array($guid, $dbid, $email, $currentdate, "Nodata", $es_sent_status, $mailsenttype));
48
  $wpdb->query($sSql);
49
  $returnid = $wpdb->insert_id;
 
50
  return $returnid;
51
  }
52
 
53
  public static function es_delivery_ups($id = 0) {
 
54
  global $wpdb;
 
55
  $returnid = 0;
56
- $prefix = $wpdb->prefix;
57
  $currentdate = date('Y-m-d G:i:s');
 
58
  if(is_numeric($id)) {
59
- $sSql = $wpdb->prepare("UPDATE `".$prefix."es_deliverreport` SET `es_deliver_status` = %s,
60
  `es_deliver_viewdate` = %s WHERE es_deliver_id = %d LIMIT 1", array("Viewed", $currentdate, $id));
61
  $wpdb->query($sSql);
62
  }
 
63
  return true;
 
64
  }
65
 
66
  public static function es_delivery_ups_cron($id = 0) {
 
67
  global $wpdb;
 
68
  $returnid = 0;
69
- $prefix = $wpdb->prefix;
70
  $currentdate = date('Y-m-d G:i:s');
 
71
  if(is_numeric($id)) {
72
- $sSql = $wpdb->prepare("UPDATE `".$prefix."es_deliverreport` SET `es_deliver_sentstatus` = %s,
73
  `es_deliver_sentdate` = %s WHERE es_deliver_id = %d LIMIT 1", array("Sent", $currentdate, $id));
74
  $wpdb->query($sSql);
75
  }
 
76
  return true;
 
77
  }
78
 
79
  public static function es_delivery_cronmail_inqueue($limit = 50, $sentguid) {
 
80
  global $wpdb;
81
- $prefix = $wpdb->prefix;
82
  $arrRes = array();
 
83
  $sSql = "";
84
- $sSql = $wpdb->prepare("SELECT * FROM `".$prefix."es_deliverreport` where es_deliver_senttype=%s
85
  and es_deliver_sentstatus=%s and es_deliver_sentguid = %s order by es_deliver_id limit 0, $limit", array("Cron", "In Queue", $sentguid));
86
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
 
87
  return $arrRes;
 
88
  }
89
 
90
  public static function es_delivery_cronmail_count($sentguid) {
 
91
  global $wpdb;
92
- $prefix = $wpdb->prefix;
93
  $result = '0';
 
94
  if($sentguid != "") {
95
- $sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$prefix."es_deliverreport` WHERE `es_deliver_sentguid` = %s
96
  and es_deliver_senttype=%s and es_deliver_sentstatus = %s", array($sentguid, "Cron", "In Queue"));
97
  $result = $wpdb->get_var($sSql);
98
  }
 
99
  return $result;
 
100
  }
101
  }
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  class es_cls_delivery {
9
  public static function es_delivery_select($sentguid = "", $offset = 0, $limit = 0) {
10
+
11
  global $wpdb;
12
+
13
  $arrRes = array();
14
+
15
+ $sSql = "SELECT * FROM `".$wpdb->prefix."es_deliverreport` where 1=1";
16
  if($sentguid <> "") {
17
  $sSql = $sSql . " and es_deliver_sentguid='".$sentguid."'";
18
  $sSql = $sSql . " order by es_deliver_id desc limit $offset, $limit";
19
  }
20
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
21
+
22
  return $arrRes;
23
+
24
  }
25
 
26
  public static function es_delivery_count($sentguid = "") {
27
+
28
  global $wpdb;
29
+
30
  $result = '0';
31
+
32
+ if($sentguid != "") {
33
+ $sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_deliverreport` WHERE `es_deliver_sentguid` = %s", array($sentguid));
34
  }
35
  $result = $wpdb->get_var($sSql);
36
+
37
  return $result;
38
+
39
  }
40
 
41
  public static function es_delivery_ins($guid = "", $dbid = 0, $email = "", $mailsenttype = "") {
42
+
43
  global $wpdb;
44
+
45
  $returnid = 0;
 
46
 
47
  if($mailsenttype == "Immediately") {
48
  $es_sent_status = "Sent";
52
  $currentdate = "0000-00-00";
53
  }
54
 
55
+ $sSql = $wpdb->prepare("INSERT INTO `".$wpdb->prefix."es_deliverreport` (`es_deliver_sentguid`,`es_deliver_emailid`, `es_deliver_emailmail`, `es_deliver_sentdate`,`es_deliver_status`,`es_deliver_sentstatus`,`es_deliver_senttype`) VALUES (%s, %s, %s, %s, %s, %s, %s)", array($guid, $dbid, $email, $currentdate, "Nodata", $es_sent_status, $mailsenttype));
 
 
56
  $wpdb->query($sSql);
57
  $returnid = $wpdb->insert_id;
58
+
59
  return $returnid;
60
  }
61
 
62
  public static function es_delivery_ups($id = 0) {
63
+
64
  global $wpdb;
65
+
66
  $returnid = 0;
 
67
  $currentdate = date('Y-m-d G:i:s');
68
+
69
  if(is_numeric($id)) {
70
+ $sSql = $wpdb->prepare("UPDATE `".$wpdb->prefix."es_deliverreport` SET `es_deliver_status` = %s,
71
  `es_deliver_viewdate` = %s WHERE es_deliver_id = %d LIMIT 1", array("Viewed", $currentdate, $id));
72
  $wpdb->query($sSql);
73
  }
74
+
75
  return true;
76
+
77
  }
78
 
79
  public static function es_delivery_ups_cron($id = 0) {
80
+
81
  global $wpdb;
82
+
83
  $returnid = 0;
 
84
  $currentdate = date('Y-m-d G:i:s');
85
+
86
  if(is_numeric($id)) {
87
+ $sSql = $wpdb->prepare("UPDATE `".$wpdb->prefix."es_deliverreport` SET `es_deliver_sentstatus` = %s,
88
  `es_deliver_sentdate` = %s WHERE es_deliver_id = %d LIMIT 1", array("Sent", $currentdate, $id));
89
  $wpdb->query($sSql);
90
  }
91
+
92
  return true;
93
+
94
  }
95
 
96
  public static function es_delivery_cronmail_inqueue($limit = 50, $sentguid) {
97
+
98
  global $wpdb;
99
+
100
  $arrRes = array();
101
+
102
  $sSql = "";
103
+ $sSql = $wpdb->prepare("SELECT * FROM `".$wpdb->prefix."es_deliverreport` where es_deliver_senttype=%s
104
  and es_deliver_sentstatus=%s and es_deliver_sentguid = %s order by es_deliver_id limit 0, $limit", array("Cron", "In Queue", $sentguid));
105
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
106
+
107
  return $arrRes;
108
+
109
  }
110
 
111
  public static function es_delivery_cronmail_count($sentguid) {
112
+
113
  global $wpdb;
114
+
115
  $result = '0';
116
+
117
  if($sentguid != "") {
118
+ $sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_deliverreport` WHERE `es_deliver_sentguid` = %s
119
  and es_deliver_senttype=%s and es_deliver_sentstatus = %s", array($sentguid, "Cron", "In Queue"));
120
  $result = $wpdb->get_var($sSql);
121
  }
122
+
123
  return $result;
124
+
125
  }
126
  }
query/db_notification.php CHANGED
@@ -1,69 +1,85 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  class es_cls_notification {
8
  public static function es_notification_select($id = 0) {
 
9
  global $wpdb;
10
- $prefix = $wpdb->prefix;
11
  $arrRes = array();
12
- $sSql = "SELECT * FROM `".$prefix."es_notification` where 1=1";
 
13
  if($id > 0) {
14
  $sSql = $sSql . " and es_note_id=".$id;
15
  $arrRes = $wpdb->get_row($sSql, ARRAY_A);
16
  } else {
17
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
18
  }
 
19
  return $arrRes;
 
20
  }
21
 
22
  public static function es_notification_count($id = 0) {
 
23
  global $wpdb;
24
- $prefix = $wpdb->prefix;
25
  $result = '0';
 
26
  if($id > 0) {
27
- $sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$prefix."es_notification` WHERE `es_note_id` = %d", array($id));
28
  } else {
29
- $sSql = "SELECT COUNT(*) AS `count` FROM `".$prefix."es_notification`";
30
  }
31
  $result = $wpdb->get_var($sSql);
 
32
  return $result;
 
33
  }
34
 
35
  public static function es_notification_delete($id = 0) {
 
36
  global $wpdb;
37
- $prefix = $wpdb->prefix;
38
- $sSql = $wpdb->prepare("DELETE FROM `".$prefix."es_notification` WHERE `es_note_id` = %d LIMIT 1", $id);
39
  $wpdb->query($sSql);
 
40
  return true;
 
41
  }
42
 
43
  public static function es_notification_ins($data = array(), $action = "insert") {
 
44
  global $wpdb;
45
- $prefix = $wpdb->prefix;
46
  if($action == "insert") {
47
- $sSql = $wpdb->prepare("INSERT INTO `".$prefix."es_notification` (`es_note_cat`,
48
  `es_note_group`, `es_note_templ`, `es_note_status`) VALUES(%s, %s, %s, %s)",
49
  array($data["es_note_cat"], $data["es_note_group"], $data["es_note_templ"], $data["es_note_status"]));
50
  } elseif($action == "update") {
51
- $sSql = $wpdb->prepare("UPDATE `".$prefix."es_notification` SET `es_note_cat` = %s, `es_note_group` = %s, `es_note_templ` = %d,
52
  `es_note_status` = %s WHERE es_note_id = %d LIMIT 1",
53
  array($data["es_note_cat"], $data["es_note_group"], $data["es_note_templ"], $data["es_note_status"], $data["es_note_id"]));
54
  }
55
  $wpdb->query($sSql);
 
56
  return true;
 
57
  }
58
 
59
  public static function es_notification_prepare($post_id = 0) {
 
60
  global $wpdb;
61
- $prefix = $wpdb->prefix;
62
  $arrNotification = array();
63
 
64
  if($post_id > 0) {
65
  $post_type = get_post_type( $post_id );
66
- $sSql = "SELECT * FROM `".$prefix."es_notification` where (es_note_status = 'Enable' or es_note_status = 'Cron') ";
67
  if($post_type == "post") {
68
  $category = get_the_category( $post_id );
69
  $totcategory = count($category);
@@ -86,16 +102,20 @@ class es_cls_notification {
86
  $arrNotification = $wpdb->get_results($sSql, ARRAY_A);
87
  }
88
  }
 
89
  return $arrNotification;
 
90
  }
91
 
92
  public static function es_notification_subscribers($arrNotification = array()) {
 
93
  global $wpdb;
94
- $prefix = $wpdb->prefix;
95
  $subscribers = array();
96
  $totnotification = count($arrNotification);
 
97
  if($totnotification > 0) {
98
- $sSql = "SELECT * FROM `".$prefix."es_emaillist` where es_email_mail <> '' ";
99
  for($i=0; $i<$totnotification; $i++) {
100
  if($i == 0) {
101
  $sSql = $sSql . " and (";
@@ -111,6 +131,8 @@ class es_cls_notification {
111
  $sSql = $sSql . " order by es_email_mail asc";
112
  $subscribers = $wpdb->get_results($sSql, ARRAY_A);
113
  }
 
114
  return $subscribers;
 
115
  }
116
  }
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  class es_cls_notification {
9
  public static function es_notification_select($id = 0) {
10
+
11
  global $wpdb;
12
+
13
  $arrRes = array();
14
+
15
+ $sSql = "SELECT * FROM `".$wpdb->prefix."es_notification` where 1=1";
16
  if($id > 0) {
17
  $sSql = $sSql . " and es_note_id=".$id;
18
  $arrRes = $wpdb->get_row($sSql, ARRAY_A);
19
  } else {
20
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
21
  }
22
+
23
  return $arrRes;
24
+
25
  }
26
 
27
  public static function es_notification_count($id = 0) {
28
+
29
  global $wpdb;
30
+
31
  $result = '0';
32
+
33
  if($id > 0) {
34
+ $sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_notification` WHERE `es_note_id` = %d", array($id));
35
  } else {
36
+ $sSql = "SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_notification`";
37
  }
38
  $result = $wpdb->get_var($sSql);
39
+
40
  return $result;
41
+
42
  }
43
 
44
  public static function es_notification_delete($id = 0) {
45
+
46
  global $wpdb;
47
+
48
+ $sSql = $wpdb->prepare("DELETE FROM `".$wpdb->prefix."es_notification` WHERE `es_note_id` = %d LIMIT 1", $id);
49
  $wpdb->query($sSql);
50
+
51
  return true;
52
+
53
  }
54
 
55
  public static function es_notification_ins($data = array(), $action = "insert") {
56
+
57
  global $wpdb;
58
+
59
  if($action == "insert") {
60
+ $sSql = $wpdb->prepare("INSERT INTO `".$wpdb->prefix."es_notification` (`es_note_cat`,
61
  `es_note_group`, `es_note_templ`, `es_note_status`) VALUES(%s, %s, %s, %s)",
62
  array($data["es_note_cat"], $data["es_note_group"], $data["es_note_templ"], $data["es_note_status"]));
63
  } elseif($action == "update") {
64
+ $sSql = $wpdb->prepare("UPDATE `".$wpdb->prefix."es_notification` SET `es_note_cat` = %s, `es_note_group` = %s, `es_note_templ` = %d,
65
  `es_note_status` = %s WHERE es_note_id = %d LIMIT 1",
66
  array($data["es_note_cat"], $data["es_note_group"], $data["es_note_templ"], $data["es_note_status"], $data["es_note_id"]));
67
  }
68
  $wpdb->query($sSql);
69
+
70
  return true;
71
+
72
  }
73
 
74
  public static function es_notification_prepare($post_id = 0) {
75
+
76
  global $wpdb;
77
+
78
  $arrNotification = array();
79
 
80
  if($post_id > 0) {
81
  $post_type = get_post_type( $post_id );
82
+ $sSql = "SELECT * FROM `".$wpdb->prefix."es_notification` where (es_note_status = 'Enable' or es_note_status = 'Cron') ";
83
  if($post_type == "post") {
84
  $category = get_the_category( $post_id );
85
  $totcategory = count($category);
102
  $arrNotification = $wpdb->get_results($sSql, ARRAY_A);
103
  }
104
  }
105
+
106
  return $arrNotification;
107
+
108
  }
109
 
110
  public static function es_notification_subscribers($arrNotification = array()) {
111
+
112
  global $wpdb;
113
+
114
  $subscribers = array();
115
  $totnotification = count($arrNotification);
116
+
117
  if($totnotification > 0) {
118
+ $sSql = "SELECT * FROM `".$wpdb->prefix."es_emaillist` where es_email_mail <> '' ";
119
  for($i=0; $i<$totnotification; $i++) {
120
  if($i == 0) {
121
  $sSql = $sSql . " and (";
131
  $sSql = $sSql . " order by es_email_mail asc";
132
  $subscribers = $wpdb->get_results($sSql, ARRAY_A);
133
  }
134
+
135
  return $subscribers;
136
+
137
  }
138
  }
query/db_optimize.php CHANGED
@@ -1,20 +1,26 @@
1
  <?php
2
 
 
 
 
 
 
3
  class es_cls_optimize {
4
  public static function es_optimize_setdetails() {
 
5
  global $wpdb;
6
- $prefix = $wpdb->prefix;
7
 
8
  $total = es_cls_sentmail::es_sentmail_count($id = 0);
9
  if ($total > 10) {
10
  $delete = $total - 10;
11
- $sSql = "DELETE FROM `".$prefix."es_sentdetails` ORDER BY es_sent_id ASC LIMIT ".$delete;
12
  $wpdb->query($sSql);
13
  }
14
 
15
- $sSql = "DELETE FROM `".$prefix."es_deliverreport` WHERE es_deliver_sentguid NOT IN";
16
- $sSql = $sSql . " (SELECT es_sent_guid FROM `".$prefix."es_sentdetails`)";
17
  $wpdb->query($sSql);
 
18
  return true;
19
  }
20
  }
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
+ }
7
+
8
  class es_cls_optimize {
9
  public static function es_optimize_setdetails() {
10
+
11
  global $wpdb;
 
12
 
13
  $total = es_cls_sentmail::es_sentmail_count($id = 0);
14
  if ($total > 10) {
15
  $delete = $total - 10;
16
+ $sSql = "DELETE FROM `".$wpdb->prefix."es_sentdetails` ORDER BY es_sent_id ASC LIMIT ".$delete;
17
  $wpdb->query($sSql);
18
  }
19
 
20
+ $sSql = "DELETE FROM `".$wpdb->prefix."es_deliverreport` WHERE es_deliver_sentguid NOT IN";
21
+ $sSql = $sSql . " (SELECT es_sent_guid FROM `".$wpdb->prefix."es_sentdetails`)";
22
  $wpdb->query($sSql);
23
+
24
  return true;
25
  }
26
  }
query/db_sentmail.php CHANGED
@@ -1,15 +1,18 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  class es_cls_sentmail {
8
  public static function es_sentmail_select($id = 0, $offset = 0, $limit = 0) {
 
9
  global $wpdb;
10
- $prefix = $wpdb->prefix;
11
  $arrRes = array();
12
- $sSql = "SELECT * FROM `".$prefix."es_sentdetails` where 1=1";
 
13
  if($id > 0) {
14
  $sSql = $sSql . " and es_sent_id=".$id;
15
  $arrRes = $wpdb->get_row($sSql, ARRAY_A);
@@ -17,44 +20,54 @@ class es_cls_sentmail {
17
  $sSql = $sSql . " order by es_sent_id desc limit $offset, $limit";
18
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
19
  }
 
20
  return $arrRes;
 
21
  }
22
 
23
  public static function es_sentmail_count($id = 0) {
 
24
  global $wpdb;
25
- $prefix = $wpdb->prefix;
26
  $result = '0';
 
27
  if($id > 0) {
28
- $sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$prefix."es_sentdetails` WHERE `es_sent_id` = %d", array($id));
29
  } else {
30
- $sSql = "SELECT COUNT(*) AS `count` FROM `".$prefix."es_sentdetails`";
31
  }
32
  $result = $wpdb->get_var($sSql);
 
33
  return $result;
 
34
  }
35
 
36
  public static function es_sentmail_delete($id = 0) {
 
37
  global $wpdb;
38
- $prefix = $wpdb->prefix;
39
  $Sentdetails = array();
40
  $Sentdetails = es_cls_sentmail::es_sentmail_select($id, 0, 1);
 
41
  if(count($Sentdetails) > 0) {
42
  $es_deliver_sentguid = $Sentdetails['es_sent_guid'];
43
- if($es_deliver_sentguid <> "") {
44
- $sSql = $wpdb->prepare("DELETE FROM `".$prefix."es_deliverreport` WHERE `es_deliver_sentguid` = %s", $es_deliver_sentguid);
45
  $wpdb->query($sSql);
46
  }
47
- $sSql = $wpdb->prepare("DELETE FROM `".$prefix."es_sentdetails` WHERE `es_sent_id` = %d LIMIT 1", $id);
48
  $wpdb->query($sSql);
49
  }
50
 
51
  return true;
 
52
  }
53
 
54
  public static function es_sentmail_ins($guid = "", $qstring = 0, $source = "", $startdt = "", $enddt = "", $count = "", $preview = "", $mailsenttype = "") {
 
55
  global $wpdb;
 
56
  $returnid = 0;
57
- $prefix = $wpdb->prefix;
58
  $currentdate = date('Y-m-d G:i:s');
59
 
60
  if($mailsenttype == "Immediately") {
@@ -63,43 +76,55 @@ class es_cls_sentmail {
63
  $es_sent_status = "In Queue";
64
  }
65
 
66
- $sSql = $wpdb->prepare("INSERT INTO `".$prefix."es_sentdetails` (`es_sent_guid`, `es_sent_qstring`, `es_sent_source`,
67
  `es_sent_starttime`, `es_sent_endtime`, `es_sent_count`, `es_sent_preview`, `es_sent_status`, `es_sent_type`)
68
  VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s)",
69
  array($guid, $qstring, $source, $startdt, $enddt, $count, $preview, $es_sent_status, $mailsenttype));
70
  $wpdb->query($sSql);
 
71
  return true;
 
72
  }
73
 
74
  public static function es_sentmail_ups($guid = "", $sentsubject = "") {
 
75
  global $wpdb;
 
76
  $returnid = 0;
77
- $prefix = $wpdb->prefix;
78
  $currentdate = date('Y-m-d G:i:s');
79
- $sSql = $wpdb->prepare("UPDATE `".$prefix."es_sentdetails` SET `es_sent_endtime` = %s, `es_sent_subject` = %s
 
80
  WHERE es_sent_guid = %s LIMIT 1", array($currentdate, $sentsubject, $guid));
81
  $wpdb->query($sSql);
 
82
  return true;
83
  }
84
 
85
  public static function es_sentmail_cronmail_inqueue() {
 
86
  global $wpdb;
87
- $prefix = $wpdb->prefix;
88
  $arrRes = array();
89
- $sSql = "SELECT * FROM `".$prefix."es_sentdetails` where es_sent_type='Cron' and es_sent_status='In Queue'";
 
90
  $sSql = $sSql . " order by es_sent_id limit 0, 1";
91
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
 
92
  return $arrRes;
 
93
  }
94
 
95
  public static function es_sentmail_cronmail_ups($guid = "") {
 
96
  global $wpdb;
 
97
  $returnid = 0;
98
- $prefix = $wpdb->prefix;
99
  $currentdate = date('Y-m-d G:i:s');
100
- $sSql = $wpdb->prepare("UPDATE `".$prefix."es_sentdetails` SET `es_sent_endtime` = %s, `es_sent_status` = %s
 
101
  WHERE es_sent_guid = %s LIMIT 1", array($currentdate, "Sent", $guid));
102
  $wpdb->query($sSql);
 
103
  return true;
104
  }
105
  }
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  class es_cls_sentmail {
9
  public static function es_sentmail_select($id = 0, $offset = 0, $limit = 0) {
10
+
11
  global $wpdb;
12
+
13
  $arrRes = array();
14
+
15
+ $sSql = "SELECT * FROM `".$wpdb->prefix."es_sentdetails` where 1=1";
16
  if($id > 0) {
17
  $sSql = $sSql . " and es_sent_id=".$id;
18
  $arrRes = $wpdb->get_row($sSql, ARRAY_A);
20
  $sSql = $sSql . " order by es_sent_id desc limit $offset, $limit";
21
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
22
  }
23
+
24
  return $arrRes;
25
+
26
  }
27
 
28
  public static function es_sentmail_count($id = 0) {
29
+
30
  global $wpdb;
31
+
32
  $result = '0';
33
+
34
  if($id > 0) {
35
+ $sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_sentdetails` WHERE `es_sent_id` = %d", array($id));
36
  } else {
37
+ $sSql = "SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_sentdetails`";
38
  }
39
  $result = $wpdb->get_var($sSql);
40
+
41
  return $result;
42
+
43
  }
44
 
45
  public static function es_sentmail_delete($id = 0) {
46
+
47
  global $wpdb;
48
+
49
  $Sentdetails = array();
50
  $Sentdetails = es_cls_sentmail::es_sentmail_select($id, 0, 1);
51
+
52
  if(count($Sentdetails) > 0) {
53
  $es_deliver_sentguid = $Sentdetails['es_sent_guid'];
54
+ if($es_deliver_sentguid != "") {
55
+ $sSql = $wpdb->prepare("DELETE FROM `".$wpdb->prefix."es_deliverreport` WHERE `es_deliver_sentguid` = %s", $es_deliver_sentguid);
56
  $wpdb->query($sSql);
57
  }
58
+ $sSql = $wpdb->prepare("DELETE FROM `".$wpdb->prefix."es_sentdetails` WHERE `es_sent_id` = %d LIMIT 1", $id);
59
  $wpdb->query($sSql);
60
  }
61
 
62
  return true;
63
+
64
  }
65
 
66
  public static function es_sentmail_ins($guid = "", $qstring = 0, $source = "", $startdt = "", $enddt = "", $count = "", $preview = "", $mailsenttype = "") {
67
+
68
  global $wpdb;
69
+
70
  $returnid = 0;
 
71
  $currentdate = date('Y-m-d G:i:s');
72
 
73
  if($mailsenttype == "Immediately") {
76
  $es_sent_status = "In Queue";
77
  }
78
 
79
+ $sSql = $wpdb->prepare("INSERT INTO `".$wpdb->prefix."es_sentdetails` (`es_sent_guid`, `es_sent_qstring`, `es_sent_source`,
80
  `es_sent_starttime`, `es_sent_endtime`, `es_sent_count`, `es_sent_preview`, `es_sent_status`, `es_sent_type`)
81
  VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s)",
82
  array($guid, $qstring, $source, $startdt, $enddt, $count, $preview, $es_sent_status, $mailsenttype));
83
  $wpdb->query($sSql);
84
+
85
  return true;
86
+
87
  }
88
 
89
  public static function es_sentmail_ups($guid = "", $sentsubject = "") {
90
+
91
  global $wpdb;
92
+
93
  $returnid = 0;
 
94
  $currentdate = date('Y-m-d G:i:s');
95
+
96
+ $sSql = $wpdb->prepare("UPDATE `".$wpdb->prefix."es_sentdetails` SET `es_sent_endtime` = %s, `es_sent_subject` = %s
97
  WHERE es_sent_guid = %s LIMIT 1", array($currentdate, $sentsubject, $guid));
98
  $wpdb->query($sSql);
99
+
100
  return true;
101
  }
102
 
103
  public static function es_sentmail_cronmail_inqueue() {
104
+
105
  global $wpdb;
106
+
107
  $arrRes = array();
108
+
109
+ $sSql = "SELECT * FROM `".$wpdb->prefix."es_sentdetails` where es_sent_type='Cron' and es_sent_status='In Queue'";
110
  $sSql = $sSql . " order by es_sent_id limit 0, 1";
111
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
112
+
113
  return $arrRes;
114
+
115
  }
116
 
117
  public static function es_sentmail_cronmail_ups($guid = "") {
118
+
119
  global $wpdb;
120
+
121
  $returnid = 0;
 
122
  $currentdate = date('Y-m-d G:i:s');
123
+
124
+ $sSql = $wpdb->prepare("UPDATE `".$wpdb->prefix."es_sentdetails` SET `es_sent_endtime` = %s, `es_sent_status` = %s
125
  WHERE es_sent_guid = %s LIMIT 1", array($currentdate, "Sent", $guid));
126
  $wpdb->query($sSql);
127
+
128
  return true;
129
  }
130
  }
query/db_settings.php CHANGED
@@ -1,37 +1,45 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  class es_cls_settings {
8
  public static function es_setting_select($id = 1) {
 
9
  global $wpdb;
10
- $prefix = $wpdb->prefix;
11
  $arrRes = array();
12
- $sSql = "SELECT * FROM `".$prefix."es_pluginconfig` where 1=1";
 
13
  $sSql = $sSql . " and es_c_id=".$id;
14
  $arrRes = $wpdb->get_row($sSql, ARRAY_A);
 
15
  return $arrRes;
16
  }
17
 
18
  public static function es_setting_count($id = "") {
 
19
  global $wpdb;
20
- $prefix = $wpdb->prefix;
21
  $result = '0';
 
22
  if($id > 0) {
23
- $sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$prefix."es_pluginconfig` WHERE `es_c_id` = %s", array($id));
24
  } else {
25
- $sSql = "SELECT COUNT(*) AS `count` FROM `".$prefix."es_pluginconfig`";
26
  }
27
  $result = $wpdb->get_var($sSql);
 
28
  return $result;
29
  }
30
 
31
  public static function es_setting_update($data = array()) {
 
32
  global $wpdb;
33
- $prefix = $wpdb->prefix;
34
- $sSql = $wpdb->prepare("UPDATE `".$prefix."es_pluginconfig` SET
35
  `es_c_fromname` = %s, `es_c_fromemail` = %s, `es_c_mailtype` = %s, `es_c_adminmailoption` = %s,
36
  `es_c_adminemail` = %s, `es_c_adminmailsubject` = %s, `es_c_adminmailcontant` = %s, `es_c_usermailoption` = %s,
37
  `es_c_usermailsubject` = %s, `es_c_usermailcontant` = %s, `es_c_optinoption` = %s, `es_c_optinsubject` = %s,
@@ -45,6 +53,7 @@ class es_cls_settings {
45
  $data["es_c_unsubhtml"], $data["es_c_subhtml"], $data["es_c_message1"], $data["es_c_message2"],
46
  $data["es_c_id"]));
47
  $wpdb->query($sSql);
 
48
  return "sus";
49
  }
50
  }
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  class es_cls_settings {
9
  public static function es_setting_select($id = 1) {
10
+
11
  global $wpdb;
12
+
13
  $arrRes = array();
14
+
15
+ $sSql = "SELECT * FROM `".$wpdb->prefix."es_pluginconfig` where 1=1";
16
  $sSql = $sSql . " and es_c_id=".$id;
17
  $arrRes = $wpdb->get_row($sSql, ARRAY_A);
18
+
19
  return $arrRes;
20
  }
21
 
22
  public static function es_setting_count($id = "") {
23
+
24
  global $wpdb;
25
+
26
  $result = '0';
27
+
28
  if($id > 0) {
29
+ $sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_pluginconfig` WHERE `es_c_id` = %s", array($id));
30
  } else {
31
+ $sSql = "SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_pluginconfig`";
32
  }
33
  $result = $wpdb->get_var($sSql);
34
+
35
  return $result;
36
  }
37
 
38
  public static function es_setting_update($data = array()) {
39
+
40
  global $wpdb;
41
+
42
+ $sSql = $wpdb->prepare("UPDATE `".$wpdb->prefix."es_pluginconfig` SET
43
  `es_c_fromname` = %s, `es_c_fromemail` = %s, `es_c_mailtype` = %s, `es_c_adminmailoption` = %s,
44
  `es_c_adminemail` = %s, `es_c_adminmailsubject` = %s, `es_c_adminmailcontant` = %s, `es_c_usermailoption` = %s,
45
  `es_c_usermailsubject` = %s, `es_c_usermailcontant` = %s, `es_c_optinoption` = %s, `es_c_optinsubject` = %s,
53
  $data["es_c_unsubhtml"], $data["es_c_subhtml"], $data["es_c_message1"], $data["es_c_message2"],
54
  $data["es_c_id"]));
55
  $wpdb->query($sSql);
56
+
57
  return "sus";
58
  }
59
  }
query/db_subscriber.php CHANGED
@@ -1,15 +1,18 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  class es_cls_dbquery {
8
  public static function es_view_subscriber_search($search = "", $id = 0) {
 
9
  global $wpdb;
10
- $prefix = $wpdb->prefix;
11
  $arrRes = array();
12
- $sSql = "SELECT * FROM `".$prefix."es_emaillist` where es_email_mail <> '' ";
 
13
  if($search != "" && $search != "ALL") {
14
  $letter = explode(',', $search);
15
  $length = count($letter);
@@ -28,6 +31,7 @@ class es_cls_dbquery {
28
  }
29
  $sSql = $sSql . " order by es_email_id asc";
30
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
 
31
  return $arrRes;
32
  }
33
 
@@ -36,9 +40,9 @@ class es_cls_dbquery {
36
 
37
  global $wpdb;
38
 
39
- $prefix = $wpdb->prefix;
40
  $view_subscribers_details = array();
41
- $sSql = "SELECT * FROM `".$prefix."es_emaillist` WHERE es_email_mail != '' ";
 
42
  if($search_sts != "") {
43
  $sSql = $sSql . " and es_email_status='".$search_sts."'";
44
  }
@@ -58,51 +62,21 @@ class es_cls_dbquery {
58
  return $view_subscribers_details;
59
  }
60
 
61
- // Query to fetch subscribers count (all status)
62
- public static function es_view_subscriber_count($id = 0) {
63
-
64
- global $wpdb;
65
-
66
- $prefix = $wpdb->prefix;
67
- $result = '0';
68
- if($id > 0) {
69
- $sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$prefix."es_emaillist` WHERE `es_email_id` = %d", array($id));
70
- } else {
71
- $sSql = "SELECT COUNT(*) AS `count` FROM `".$prefix."es_emaillist`";
72
- }
73
-
74
- $result = $wpdb->get_var($sSql);
75
-
76
- return $result;
77
- }
78
 
79
- public static function es_view_subscriber_count_status($status = "") {
80
 
81
  global $wpdb;
82
 
83
- $prefix = $wpdb->prefix;
84
- $result = '0';
85
- if($status <> "") {
86
- $sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$prefix."es_emaillist` WHERE `es_email_status` = %s", array($status));
87
- } else {
88
- $sSql = "SELECT COUNT(*) AS `count` FROM `".$prefix."es_emaillist`";
89
- }
90
- $result = $wpdb->get_var($sSql);
91
-
92
- return $result;
93
- }
94
-
95
- public static function es_view_subscriber_delete($id = 0) {
96
- global $wpdb;
97
- $prefix = $wpdb->prefix;
98
- $sSql = $wpdb->prepare("DELETE FROM `".$prefix."es_emaillist` WHERE `es_email_id` = %d LIMIT 1", $id);
99
  $wpdb->query($sSql);
 
100
  return true;
101
  }
102
 
103
  public static function es_view_subscriber_ins($data = array(), $action = "insert") {
 
104
  global $wpdb;
105
- $prefix = $wpdb->prefix;
106
  $result = 0;
107
 
108
  if (!filter_var($data["es_email_mail"], FILTER_VALIDATE_EMAIL)) {
@@ -116,13 +90,13 @@ class es_cls_dbquery {
116
 
117
  $CurrentDate = date('Y-m-d G:i:s');
118
  if($action == "insert") {
119
- $sSql = "SELECT * FROM `".$prefix."es_emaillist` where es_email_mail='".$es_subscriber_email."' and es_email_group='".trim($es_subscriber_group)."'";
120
  $result = $wpdb->get_var($sSql);
121
  if ( $result > 0) {
122
  return "ext";
123
  } else {
124
  $guid = es_cls_common::es_generate_guid(60);
125
- $sql = $wpdb->prepare("INSERT INTO `".$prefix."es_emaillist`
126
  (`es_email_name`,`es_email_mail`, `es_email_status`, `es_email_created`, `es_email_viewcount`, `es_email_group`, `es_email_guid`)
127
  VALUES(%s, %s, %s, %s, %d, %s, %s)", array(trim($es_subscriber_name), trim($es_subscriber_email),
128
  trim($es_subscriber_status), $CurrentDate, 0, trim($es_subscriber_group), $guid));
@@ -154,13 +128,13 @@ class es_cls_dbquery {
154
  return "sus";
155
  }
156
  } elseif($action == "update") {
157
- $sSql = "SELECT * FROM `".$prefix."es_emaillist` where es_email_mail='".$es_subscriber_email."'";
158
  $sSql = $sSql . " and es_email_group='".trim($es_subscriber_group)."' and es_email_id != ".$data["es_email_id"];
159
  $result = $wpdb->get_var($sSql);
160
  if ( $result > 0) {
161
  return "ext";
162
  } else {
163
- $sSql = $wpdb->prepare("UPDATE `".$prefix."es_emaillist` SET `es_email_name` = %s, `es_email_mail` = %s,
164
  `es_email_status` = %s, `es_email_group` = %s WHERE es_email_id = %d LIMIT 1", array($es_subscriber_name, $es_subscriber_email,
165
  $es_subscriber_status, $es_subscriber_group, $data["es_email_id"]));
166
  $wpdb->query($sSql);
@@ -170,65 +144,79 @@ class es_cls_dbquery {
170
  }
171
 
172
  public static function es_view_subscriber_bulk($idlist = "") {
 
173
  global $wpdb;
174
- $prefix = $wpdb->prefix;
175
  $arrRes = array();
176
- $sSql = "SELECT * FROM `".$prefix."es_emaillist` where es_email_mail <> '' ";
 
177
  if($idlist != "") {
178
  $sSql = $sSql . " and es_email_id in (" . $idlist. ");";
179
  }
180
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
 
181
  return $arrRes;
182
  }
183
 
184
  public static function es_view_subscriber_group() {
 
185
  global $wpdb;
186
- $prefix = $wpdb->prefix;
187
  $arrRes = array();
188
- $sSql = "SELECT distinct(es_email_group) FROM `".$prefix."es_emaillist`";
 
189
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
 
190
  return $arrRes;
191
  }
192
 
193
  public static function es_view_subscriber_one($mail = "", $group = "") {
 
194
  global $wpdb;
195
- $prefix = $wpdb->prefix;
196
  $arrRes = array();
197
- $sSql = "SELECT * FROM `".$prefix."es_emaillist` WHERE es_email_mail = '".$mail."' AND es_email_group = '".$group."'";
 
198
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
 
199
  return $arrRes;
200
  }
201
 
202
  public static function es_view_subscriber_upd_status($status = "", $idlist = "") {
 
203
  global $wpdb;
204
- $prefix = $wpdb->prefix;
205
- $sSql = "UPDATE `".$prefix."es_emaillist` SET `es_email_status` = '".$status."'";
206
- $sSql = $sSql . " WHERE es_email_id in (".$idlist.")";
207
  $wpdb->query($sSql);
 
208
  return "sus";
209
  }
210
 
211
  public static function es_view_subscriber_upd_group($group = "", $idlist = "") {
 
212
  global $wpdb;
213
- $prefix = $wpdb->prefix;
214
- $sSql = "UPDATE `".$prefix."es_emaillist` SET `es_email_group` = '".$group."'";
215
- $sSql = $sSql . " WHERE es_email_id in (".$idlist.")";
216
  $wpdb->query($sSql);
 
217
  return "sus";
218
  }
219
 
220
  public static function es_view_subscriber_job($status = "", $id = 0, $guid = "", $email = "") {
 
221
  global $wpdb;
222
- $prefix = $wpdb->prefix;
223
 
224
- $sSql = "SELECT COUNT(*) AS `count` FROM `".$prefix."es_emaillist`";
225
  $sSql = $sSql . " WHERE es_email_id = %d";
226
  $sSql = $sSql . " and es_email_mail = %s";
227
  $sSql = $sSql . " and es_email_guid = %s Limit 1";
228
  $sSql = $wpdb->prepare($sSql, array($id, $email, $guid));
229
  $result = $wpdb->get_var($sSql);
 
230
  if ( $result > 0 ) {
231
- $sSql = "UPDATE `".$prefix."es_emaillist` SET `es_email_status` = %s";
232
  $sSql = $sSql . " WHERE es_email_mail = %s Limit 10";
233
  $sSql = $wpdb->prepare($sSql, array($status, $email));
234
  $wpdb->query($sSql);
@@ -239,16 +227,17 @@ class es_cls_dbquery {
239
  }
240
 
241
  public static function es_view_subscriber_jobstatus($status = "", $id = 0, $guid = "", $email = "") {
 
242
  global $wpdb;
243
- $prefix = $wpdb->prefix;
244
 
245
- $sSql = "SELECT COUNT(*) AS `count` FROM `".$prefix."es_emaillist`";
246
  $sSql = $sSql . " WHERE es_email_id = %d";
247
  $sSql = $sSql . " and es_email_mail = %s";
248
  $sSql = $sSql . " and es_email_status = %s";
249
  $sSql = $sSql . " and es_email_guid = %s Limit 1";
250
  $sSql = $wpdb->prepare($sSql, array($id, $email, $status, $guid));
251
  $result = $wpdb->get_var($sSql);
 
252
  if ( $result > 0) {
253
  return true;
254
  } else {
@@ -257,16 +246,17 @@ class es_cls_dbquery {
257
  }
258
 
259
  public static function es_view_subscriber_widget($data = array()) {
 
260
  global $wpdb;
261
- $prefix = $wpdb->prefix;
262
  $arrRes = array();
263
  $currentdate = date('Y-m-d G:i:s');
264
 
265
- $sSql = "SELECT * FROM `".$prefix."es_emaillist` where es_email_mail='".$data["es_email_mail"]."' and es_email_group='".trim($data["es_email_group"])."'";
266
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
267
 
268
- if(count($arrRes) > 0) {
269
- if( $arrRes[0]['es_email_status'] == "Confirmed" ) {
270
  return "ext";
271
  } else {
272
  $action = "";
@@ -289,8 +279,7 @@ class es_cls_dbquery {
289
 
290
  global $wpdb;
291
 
292
- $prefix = $wpdb->prefix;
293
- $sSql = "SELECT COUNT(*) AS `count` FROM `".$prefix."es_emaillist` WHERE es_email_group = '".$groups."' AND ( es_email_status = 'Confirmed' OR es_email_status = 'Single Opt In' )";
294
  $total_subscribers = $wpdb->get_var( $sSql );
295
 
296
  return $total_subscribers;
@@ -302,13 +291,46 @@ class es_cls_dbquery {
302
 
303
  global $wpdb;
304
 
305
- $prefix = $wpdb->prefix;
306
  $subscribers_in_group = array();
307
- $sSql = "SELECT * FROM `".$prefix."es_emaillist` WHERE es_email_group = '".$group."' AND ( es_email_status = 'Confirmed' OR es_email_status = 'Single Opt In' ) ";
 
308
  $subscribers_in_group = $wpdb->get_results( $sSql, ARRAY_A );
309
 
310
  return $subscribers_in_group;
311
 
312
  }
313
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
314
  }
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  class es_cls_dbquery {
9
  public static function es_view_subscriber_search($search = "", $id = 0) {
10
+
11
  global $wpdb;
12
+
13
  $arrRes = array();
14
+
15
+ $sSql = "SELECT * FROM `".$wpdb->prefix."es_emaillist` where es_email_mail != '' ";
16
  if($search != "" && $search != "ALL") {
17
  $letter = explode(',', $search);
18
  $length = count($letter);
31
  }
32
  $sSql = $sSql . " order by es_email_id asc";
33
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
34
+
35
  return $arrRes;
36
  }
37
 
40
 
41
  global $wpdb;
42
 
 
43
  $view_subscribers_details = array();
44
+
45
+ $sSql = "SELECT * FROM `".$wpdb->prefix."es_emaillist` WHERE es_email_mail != '' ";
46
  if($search_sts != "") {
47
  $sSql = $sSql . " and es_email_status='".$search_sts."'";
48
  }
62
  return $view_subscribers_details;
63
  }
64
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65
 
66
+ public static function es_view_subscriber_delete($id = 0) {
67
 
68
  global $wpdb;
69
 
70
+ $sSql = $wpdb->prepare("DELETE FROM `".$wpdb->prefix."es_emaillist` WHERE `es_email_id` = %d LIMIT 1", $id);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  $wpdb->query($sSql);
72
+
73
  return true;
74
  }
75
 
76
  public static function es_view_subscriber_ins($data = array(), $action = "insert") {
77
+
78
  global $wpdb;
79
+
80
  $result = 0;
81
 
82
  if (!filter_var($data["es_email_mail"], FILTER_VALIDATE_EMAIL)) {
90
 
91
  $CurrentDate = date('Y-m-d G:i:s');
92
  if($action == "insert") {
93
+ $sSql = "SELECT * FROM `".$wpdb->prefix."es_emaillist` where es_email_mail='".$es_subscriber_email."' and es_email_group='".trim($es_subscriber_group)."'";
94
  $result = $wpdb->get_var($sSql);
95
  if ( $result > 0) {
96
  return "ext";
97
  } else {
98
  $guid = es_cls_common::es_generate_guid(60);
99
+ $sql = $wpdb->prepare("INSERT INTO `".$wpdb->prefix."es_emaillist`
100
  (`es_email_name`,`es_email_mail`, `es_email_status`, `es_email_created`, `es_email_viewcount`, `es_email_group`, `es_email_guid`)
101
  VALUES(%s, %s, %s, %s, %d, %s, %s)", array(trim($es_subscriber_name), trim($es_subscriber_email),
102
  trim($es_subscriber_status), $CurrentDate, 0, trim($es_subscriber_group), $guid));
128
  return "sus";
129
  }
130
  } elseif($action == "update") {
131
+ $sSql = "SELECT * FROM `".$wpdb->prefix."es_emaillist` where es_email_mail='".$es_subscriber_email."'";
132
  $sSql = $sSql . " and es_email_group='".trim($es_subscriber_group)."' and es_email_id != ".$data["es_email_id"];
133
  $result = $wpdb->get_var($sSql);
134
  if ( $result > 0) {
135
  return "ext";
136
  } else {
137
+ $sSql = $wpdb->prepare("UPDATE `".$wpdb->prefix."es_emaillist` SET `es_email_name` = %s, `es_email_mail` = %s,
138
  `es_email_status` = %s, `es_email_group` = %s WHERE es_email_id = %d LIMIT 1", array($es_subscriber_name, $es_subscriber_email,
139
  $es_subscriber_status, $es_subscriber_group, $data["es_email_id"]));
140
  $wpdb->query($sSql);
144
  }
145
 
146
  public static function es_view_subscriber_bulk($idlist = "") {
147
+
148
  global $wpdb;
149
+
150
  $arrRes = array();
151
+
152
+ $sSql = "SELECT * FROM `".$wpdb->prefix."es_emaillist` where es_email_mail <> '' ";
153
  if($idlist != "") {
154
  $sSql = $sSql . " and es_email_id in (" . $idlist. ");";
155
  }
156
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
157
+
158
  return $arrRes;
159
  }
160
 
161
  public static function es_view_subscriber_group() {
162
+
163
  global $wpdb;
164
+
165
  $arrRes = array();
166
+
167
+ $sSql = "SELECT distinct(es_email_group) FROM `".$wpdb->prefix."es_emaillist`";
168
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
169
+
170
  return $arrRes;
171
  }
172
 
173
  public static function es_view_subscriber_one($mail = "", $group = "") {
174
+
175
  global $wpdb;
176
+
177
  $arrRes = array();
178
+
179
+ $sSql = "SELECT * FROM `".$wpdb->prefix."es_emaillist` WHERE es_email_mail = '".$mail."' AND es_email_group = '".$group."'";
180
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
181
+
182
  return $arrRes;
183
  }
184
 
185
  public static function es_view_subscriber_upd_status($status = "", $idlist = "") {
186
+
187
  global $wpdb;
188
+
189
+ $sSql = "UPDATE `".$wpdb->prefix."es_emaillist` SET `es_email_status` = '".$status."'";
190
+ $sSql = $sSql . " WHERE es_email_id IN (".$idlist.")";
191
  $wpdb->query($sSql);
192
+
193
  return "sus";
194
  }
195
 
196
  public static function es_view_subscriber_upd_group($group = "", $idlist = "") {
197
+
198
  global $wpdb;
199
+
200
+ $sSql = "UPDATE `".$wpdb->prefix."es_emaillist` SET `es_email_group` = '".$group."'";
201
+ $sSql = $sSql . " WHERE es_email_id IN (".$idlist.")";
202
  $wpdb->query($sSql);
203
+
204
  return "sus";
205
  }
206
 
207
  public static function es_view_subscriber_job($status = "", $id = 0, $guid = "", $email = "") {
208
+
209
  global $wpdb;
 
210
 
211
+ $sSql = "SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_emaillist`";
212
  $sSql = $sSql . " WHERE es_email_id = %d";
213
  $sSql = $sSql . " and es_email_mail = %s";
214
  $sSql = $sSql . " and es_email_guid = %s Limit 1";
215
  $sSql = $wpdb->prepare($sSql, array($id, $email, $guid));
216
  $result = $wpdb->get_var($sSql);
217
+
218
  if ( $result > 0 ) {
219
+ $sSql = "UPDATE `".$wpdb->prefix."es_emaillist` SET `es_email_status` = %s";
220
  $sSql = $sSql . " WHERE es_email_mail = %s Limit 10";
221
  $sSql = $wpdb->prepare($sSql, array($status, $email));
222
  $wpdb->query($sSql);
227
  }
228
 
229
  public static function es_view_subscriber_jobstatus($status = "", $id = 0, $guid = "", $email = "") {
230
+
231
  global $wpdb;
 
232
 
233
+ $sSql = "SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_emaillist`";
234
  $sSql = $sSql . " WHERE es_email_id = %d";
235
  $sSql = $sSql . " and es_email_mail = %s";
236
  $sSql = $sSql . " and es_email_status = %s";
237
  $sSql = $sSql . " and es_email_guid = %s Limit 1";
238
  $sSql = $wpdb->prepare($sSql, array($id, $email, $status, $guid));
239
  $result = $wpdb->get_var($sSql);
240
+
241
  if ( $result > 0) {
242
  return true;
243
  } else {
246
  }
247
 
248
  public static function es_view_subscriber_widget($data = array()) {
249
+
250
  global $wpdb;
251
+
252
  $arrRes = array();
253
  $currentdate = date('Y-m-d G:i:s');
254
 
255
+ $sSql = "SELECT * FROM `".$wpdb->prefix."es_emaillist` where es_email_mail='".$data["es_email_mail"]."' and es_email_group='".trim($data["es_email_group"])."'";
256
  $arrRes = $wpdb->get_results($sSql, ARRAY_A);
257
 
258
+ if ( !empty( $arrRes ) && count($arrRes) > 0 ) {
259
+ if( $arrRes[0]['es_email_status'] == "Confirmed" || $arrRes[0]['es_email_status'] == "Single Opt In" ) {
260
  return "ext";
261
  } else {
262
  $action = "";
279
 
280
  global $wpdb;
281
 
282
+ $sSql = "SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_emaillist` WHERE es_email_group = '".$groups."' AND ( es_email_status = 'Confirmed' OR es_email_status = 'Single Opt In' )";
 
283
  $total_subscribers = $wpdb->get_var( $sSql );
284
 
285
  return $total_subscribers;
291
 
292
  global $wpdb;
293
 
 
294
  $subscribers_in_group = array();
295
+
296
+ $sSql = "SELECT * FROM `".$wpdb->prefix."es_emaillist` WHERE es_email_group = '".$group."' AND ( es_email_status = 'Confirmed' OR es_email_status = 'Single Opt In' ) ";
297
  $subscribers_in_group = $wpdb->get_results( $sSql, ARRAY_A );
298
 
299
  return $subscribers_in_group;
300
 
301
  }
302
 
303
+ // Query to fetch subscribers count (all status)
304
+ public static function es_view_subscriber_count( $id = 0 ) {
305
+
306
+ global $wpdb;
307
+
308
+ $result = '0';
309
+
310
+ if($id > 0) {
311
+ $sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_emaillist` WHERE `es_email_id` = %d", array($id));
312
+ } else {
313
+ $sSql = "SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_emaillist`";
314
+ }
315
+
316
+ $result = $wpdb->get_var( $sSql );
317
+
318
+ return $result;
319
+
320
+ }
321
+
322
+ // Query to fetch active subscribers (status = Confirmed / Single Opt In)
323
+ public static function es_active_subscribers() {
324
+
325
+ global $wpdb;
326
+
327
+ $active_subscribers_count = '0';
328
+
329
+ $sSql = "SELECT COUNT(*) AS `count` FROM ". $wpdb->prefix . "es_emaillist WHERE es_email_status IN ( 'Confirmed', 'Single Opt In' )";
330
+ $active_subscribers_count = $wpdb->get_var( $sSql );
331
+
332
+ return $active_subscribers_count;
333
+
334
+ }
335
+
336
  }
readme.txt CHANGED
@@ -4,8 +4,8 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Author URI: http://www.icegram.com/
5
  Tags: email marketing, email newsletter form, email signup, email widget, newsletter, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation
6
  Requires at least: 3.4
7
- Tested up to: 4.7.2
8
- Stable tag: 3.2.7
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.htmlss
11
 
@@ -152,9 +152,10 @@ If you like Email Subscribers, please leave a [5 star](https://wordpress.org/sup
152
 
153
  **Translations on [translate.wordpress.org](https://translate.wordpress.org/)**
154
 
155
- * Czech - Martin & Tomas ([(cs_CZ)](https://translate.wordpress.org/locale/cs/default/wp-plugins/email-subscribers))
156
  * Italian - [daepa](https://profiles.wordpress.org/daepa/) ([it_IT](https://translate.wordpress.org/locale/it/default/wp-plugins/email-subscribers))
157
  * Lithuanian - [kubandrius](https://profiles.wordpress.org/kubandrius/) ([lt_LT](https://translate.wordpress.org/locale/lt/default/wp-plugins/email-subscribers))
 
158
 
159
  == Installation ==
160
 
@@ -307,13 +308,32 @@ Use [Email Subscribers - Group Selector](https://wordpress.org/plugins/email-sub
307
 
308
  == Changelog ==
309
 
310
- = 3.2.7 (02.03.2017) =
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
311
 
312
  * Fix: Special characters in the post category name was not saving while creating Post Notifications
313
  * Fix: Post Notification emails were not sent for post categories with special characters in the category name
314
  * Fix: Multiple confirmation emails were sent when a subscriber subscribed to more than one group
315
  * Fix: esc_attr when sanitizing input fields submitted via form
316
- * Update: Renamed a few terms in Compose & Reorts screen for better accessibility
317
  * Update: Text correction & improvements
318
  * Update: POT file
319
  * New: Translation for Swedish (sv_SE) language added (Thanks to Rune Svennelid)
@@ -325,7 +345,7 @@ Use [Email Subscribers - Group Selector](https://wordpress.org/plugins/email-sub
325
  * Update: Translation for Czech (cs_CZ) language updated (Thanks to Martin)
326
  * Update: Translation for Polish (pl_PL) language updated (Thanks to Witold)
327
  * Update: Translation for Russian (ru_RU) language removed
328
- * Tweak: Don't show Database id of subscribers on Delivery Report screen
329
 
330
  = 3.2.6 (18.01.2017) =
331
 
@@ -419,7 +439,7 @@ Use [Email Subscribers - Group Selector](https://wordpress.org/plugins/email-sub
419
  = 3.1.5 (21.07.2016) =
420
 
421
  * New: Changed Notification Layout
422
- * New: Created Check,Uncheck All Buttons while selecting categories on the Notification screen
423
  * New: Translation for Czech (cs_CZ) language added (Thanks to Martin)
424
  * Fix: Subscribers subscribing via [Rainmaker](https://wordpress.org/plugins/icegram-rainmaker/) were not receving confirmation emails
425
  * Fix: Made few strings translatable
@@ -446,7 +466,7 @@ Use [Email Subscribers - Group Selector](https://wordpress.org/plugins/email-sub
446
  * Update: Translation for Turkish (tr_TR) language updated (Thanks to Erkan ORUC)
447
  * Update: Text correction in few places
448
  * Update: Code Indentation
449
- * Tweak: Code improvements when using wp_enqueue_script
450
  * Tweak: Do not allow admin to edit sample cron job url from Cron Mail Settings
451
  * Tweak: CSS changes in Help & Info page inside plugin
452
 
@@ -488,7 +508,7 @@ Use [Email Subscribers - Group Selector](https://wordpress.org/plugins/email-sub
488
 
489
  = 3.0.1 (16.12.2015) =
490
 
491
- * New contributor name has been added successfully
492
 
493
  = Earlier Versions =
494
 
@@ -496,13 +516,32 @@ For the changelog of earlier versions, please refer to the separate [changelog.t
496
 
497
  == Upgrade Notice ==
498
 
499
- = 3.2.7 (02.03.2017) =
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
500
 
501
  * Fix: Special characters in the post category name was not saving while creating Post Notifications
502
  * Fix: Post Notification emails were not sent for post categories with special characters in the category name
503
  * Fix: Multiple confirmation emails were sent when a subscriber subscribed to more than one group
504
  * Fix: esc_attr when sanitizing input fields submitted via form
505
- * Update: Renamed a few terms in Compose & Reorts screen for better accessibility
506
  * Update: Text correction & improvements
507
  * Update: POT file
508
  * New: Translation for Swedish (sv_SE) language added (Thanks to Rune Svennelid)
@@ -514,7 +553,7 @@ For the changelog of earlier versions, please refer to the separate [changelog.t
514
  * Update: Translation for Czech (cs_CZ) language updated (Thanks to Martin)
515
  * Update: Translation for Polish (pl_PL) language updated (Thanks to Witold)
516
  * Update: Translation for Russian (ru_RU) language removed
517
- * Tweak: Don't show Database id of subscribers on Delivery Report screen
518
 
519
  = 3.2.6 (18.01.2017) =
520
 
@@ -608,7 +647,7 @@ For the changelog of earlier versions, please refer to the separate [changelog.t
608
  = 3.1.5 (21.07.2016) =
609
 
610
  * New: Changed Notification Layout
611
- * New: Created Check,Uncheck All Buttons while selecting categories on the Notification screen
612
  * New: Translation for Czech (cs_CZ) language added (Thanks to Martin)
613
  * Fix: Subscribers subscribing via [Rainmaker](https://wordpress.org/plugins/icegram-rainmaker/) were not receving confirmation emails
614
  * Fix: Made few strings translatable
@@ -635,7 +674,7 @@ For the changelog of earlier versions, please refer to the separate [changelog.t
635
  * Update: Translation for Turkish (tr_TR) language updated (Thanks to Erkan ORUC)
636
  * Update: Text correction in few places
637
  * Update: Code Indentation
638
- * Tweak: Code improvements when using wp_enqueue_script
639
  * Tweak: Do not allow admin to edit sample cron job url from Cron Mail Settings
640
  * Tweak: CSS changes in Help & Info page inside plugin
641
 
@@ -677,7 +716,7 @@ For the changelog of earlier versions, please refer to the separate [changelog.t
677
 
678
  = 3.0.1 (16.12.2015) =
679
 
680
- * New contributor name has been added successfully
681
 
682
  = Earlier Versions =
683
 
4
  Author URI: http://www.icegram.com/
5
  Tags: email marketing, email newsletter form, email signup, email widget, newsletter, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation
6
  Requires at least: 3.4
7
+ Tested up to: 4.7.3
8
+ Stable tag: 3.2.8
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.htmlss
11
 
152
 
153
  **Translations on [translate.wordpress.org](https://translate.wordpress.org/)**
154
 
155
+ * Czech - Martin & Tomas ([cs_CZ](https://translate.wordpress.org/locale/cs/default/wp-plugins/email-subscribers))
156
  * Italian - [daepa](https://profiles.wordpress.org/daepa/) ([it_IT](https://translate.wordpress.org/locale/it/default/wp-plugins/email-subscribers))
157
  * Lithuanian - [kubandrius](https://profiles.wordpress.org/kubandrius/) ([lt_LT](https://translate.wordpress.org/locale/lt/default/wp-plugins/email-subscribers))
158
+ * Dutch Nederlands - [Erwin](https://profiles.wordpress.org/erwindouwes/) ([nl_NL](https://translate.wordpress.org/locale/nl/default/wp-plugins/email-subscribers))
159
 
160
  == Installation ==
161
 
308
 
309
  == Changelog ==
310
 
311
+ = 3.2.8 (20.03.2017) =
312
+
313
+ * New: Added label tags to subscribe form
314
+ * New: Show success / error messages below subscribe form instead of above
315
+ * Fix: Single Opt In was sometimes giving 'Please try after some time' error
316
+ * Fix: Re-subscribing same subscriber was not giving 'Email Address already exists' error incase of Single Opt In
317
+ * Fix: Name field was not clearing on successful sign up from subscribe form
318
+ * Fix: Show 'sent reports time' in site's timezone instead of UTC
319
+ * Fix: Show only active (Confirmed & Single Opt In) subscribers while exporting subscribers list
320
+ * Fix: Made few strings translatable
321
+ * Update: Security check in files
322
+ * Update: Code improvements when using $wpdb->prefix for queries
323
+ * Update: Text correction & improvements
324
+ * Update: POT file
325
+ * Update: Translation for Polish (pl_PL) language updated (Thanks to Witold)
326
+ * Update: Translation for Catalan (ca) language updated (Thanks to Jordi Jorda)
327
+ * Update: Translation for Czech (cs_CZ) language updated (Thanks to Martin)
328
+ * Update: Translation for Lithuanian (lt_LT) language updated (Thanks to Andrius)
329
+
330
+ = 3.2.7 (02.03.2017) =
331
 
332
  * Fix: Special characters in the post category name was not saving while creating Post Notifications
333
  * Fix: Post Notification emails were not sent for post categories with special characters in the category name
334
  * Fix: Multiple confirmation emails were sent when a subscriber subscribed to more than one group
335
  * Fix: esc_attr when sanitizing input fields submitted via form
336
+ * Update: Renamed a few terms in Compose & Reports page for better accessibility
337
  * Update: Text correction & improvements
338
  * Update: POT file
339
  * New: Translation for Swedish (sv_SE) language added (Thanks to Rune Svennelid)
345
  * Update: Translation for Czech (cs_CZ) language updated (Thanks to Martin)
346
  * Update: Translation for Polish (pl_PL) language updated (Thanks to Witold)
347
  * Update: Translation for Russian (ru_RU) language removed
348
+ * Tweak: Don't show Database id of subscribers on Delivery Report page
349
 
350
  = 3.2.6 (18.01.2017) =
351
 
439
  = 3.1.5 (21.07.2016) =
440
 
441
  * New: Changed Notification Layout
442
+ * New: Created Check,Uncheck All Buttons while selecting categories on the Notification page
443
  * New: Translation for Czech (cs_CZ) language added (Thanks to Martin)
444
  * Fix: Subscribers subscribing via [Rainmaker](https://wordpress.org/plugins/icegram-rainmaker/) were not receving confirmation emails
445
  * Fix: Made few strings translatable
466
  * Update: Translation for Turkish (tr_TR) language updated (Thanks to Erkan ORUC)
467
  * Update: Text correction in few places
468
  * Update: Code Indentation
469
+ * Update: Code improvements when using wp_enqueue_script
470
  * Tweak: Do not allow admin to edit sample cron job url from Cron Mail Settings
471
  * Tweak: CSS changes in Help & Info page inside plugin
472
 
508
 
509
  = 3.0.1 (16.12.2015) =
510
 
511
+ * New contributor name has been added successfully.
512
 
513
  = Earlier Versions =
514
 
516
 
517
  == Upgrade Notice ==
518
 
519
+ = 3.2.8 (20.03.2017) =
520
+
521
+ * New: Added label tags to subscribe form
522
+ * New: Show success / error messages below subscribe form instead of above
523
+ * Fix: Single Opt In was sometimes giving 'Please try after some time' error
524
+ * Fix: Re-subscribing same subscriber was not giving 'Email Address already exists' error incase of Single Opt In
525
+ * Fix: Name field was not clearing on successful sign up from subscribe form
526
+ * Fix: Show 'sent reports time' in site's timezone instead of UTC
527
+ * Fix: Show only active (Confirmed & Single Opt In) subscribers while exporting subscribers list
528
+ * Fix: Made few strings translatable
529
+ * Update: Security check in files
530
+ * Update: Code improvements when using $wpdb->prefix for queries
531
+ * Update: Text correction & improvements
532
+ * Update: POT file
533
+ * Update: Translation for Polish (pl_PL) language updated (Thanks to Witold)
534
+ * Update: Translation for Catalan (ca) language updated (Thanks to Jordi Jorda)
535
+ * Update: Translation for Czech (cs_CZ) language updated (Thanks to Martin)
536
+ * Update: Translation for Lithuanian (lt_LT) language updated (Thanks to Andrius)
537
+
538
+ = 3.2.7 (02.03.2017) =
539
 
540
  * Fix: Special characters in the post category name was not saving while creating Post Notifications
541
  * Fix: Post Notification emails were not sent for post categories with special characters in the category name
542
  * Fix: Multiple confirmation emails were sent when a subscriber subscribed to more than one group
543
  * Fix: esc_attr when sanitizing input fields submitted via form
544
+ * Update: Renamed a few terms in Compose & Reports page for better accessibility
545
  * Update: Text correction & improvements
546
  * Update: POT file
547
  * New: Translation for Swedish (sv_SE) language added (Thanks to Rune Svennelid)
553
  * Update: Translation for Czech (cs_CZ) language updated (Thanks to Martin)
554
  * Update: Translation for Polish (pl_PL) language updated (Thanks to Witold)
555
  * Update: Translation for Russian (ru_RU) language removed
556
+ * Tweak: Don't show Database id of subscribers on Delivery Report page
557
 
558
  = 3.2.6 (18.01.2017) =
559
 
647
  = 3.1.5 (21.07.2016) =
648
 
649
  * New: Changed Notification Layout
650
+ * New: Created Check,Uncheck All Buttons while selecting categories on the Notification page
651
  * New: Translation for Czech (cs_CZ) language added (Thanks to Martin)
652
  * Fix: Subscribers subscribing via [Rainmaker](https://wordpress.org/plugins/icegram-rainmaker/) were not receving confirmation emails
653
  * Fix: Made few strings translatable
674
  * Update: Translation for Turkish (tr_TR) language updated (Thanks to Erkan ORUC)
675
  * Update: Text correction in few places
676
  * Update: Code Indentation
677
+ * Update: Code improvements when using wp_enqueue_script
678
  * Tweak: Do not allow admin to edit sample cron job url from Cron Mail Settings
679
  * Tweak: CSS changes in Help & Info page inside plugin
680
 
716
 
717
  = 3.0.1 (16.12.2015) =
718
 
719
+ * New contributor name has been added successfully.
720
 
721
  = Earlier Versions =
722
 
roles/roles-add.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  ?>
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  ?>
sendmail/sendmail.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  if ( ! empty( $_POST ) && ! wp_verify_nonce( $_REQUEST['wp_create_nonce'], 'sendmail-nonce' ) ) {
@@ -101,7 +102,7 @@ if ($es_error_found == TRUE && isset($es_errors[0]) == TRUE) {
101
  <tr>
102
  <th scope="row">
103
  <label for="tag-image">
104
- <?php echo __( 'Select Mail Subject from available list', ES_TDOMAIN ); ?>
105
  </label>
106
  </th>
107
  <td>
@@ -128,7 +129,7 @@ if ($es_error_found == TRUE && isset($es_errors[0]) == TRUE) {
128
  <tr>
129
  <th scope="row">
130
  <label for="tag-image">
131
- <?php echo __( 'Select Mail Type', ES_TDOMAIN ); ?>
132
  </label>
133
  </th>
134
  <td>
@@ -142,7 +143,7 @@ if ($es_error_found == TRUE && isset($es_errors[0]) == TRUE) {
142
  <tr>
143
  <th scope="row">
144
  <label for="tag-image">
145
- <?php echo __( 'Select Subscribers group to Send Mail', ES_TDOMAIN ); ?>
146
  </label>
147
  </th>
148
  <td>
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  if ( ! empty( $_POST ) && ! wp_verify_nonce( $_REQUEST['wp_create_nonce'], 'sendmail-nonce' ) ) {
102
  <tr>
103
  <th scope="row">
104
  <label for="tag-image">
105
+ <?php echo __( 'Select Email Subject from available list', ES_TDOMAIN ); ?>
106
  </label>
107
  </th>
108
  <td>
129
  <tr>
130
  <th scope="row">
131
  <label for="tag-image">
132
+ <?php echo __( 'Select Email Type', ES_TDOMAIN ); ?>
133
  </label>
134
  </th>
135
  <td>
143
  <tr>
144
  <th scope="row">
145
  <label for="tag-image">
146
+ <?php echo __( 'Select Subscribers group to Send Email', ES_TDOMAIN ); ?>
147
  </label>
148
  </th>
149
  <td>
sentmail/deliverreport-show.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  $sentguid = isset($_GET['sentguid']) ? $_GET['sentguid'] : '';
@@ -99,9 +100,25 @@ if ($sentguid == '') {
99
  <td><?php echo $data['es_deliver_emailmail']; ?></td>
100
  <td><?php echo es_cls_common::es_disp_status($data['es_deliver_sentstatus']); ?></td>
101
  <td><?php echo es_cls_common::es_disp_status($data['es_deliver_senttype']); ?></td>
102
- <td><?php echo $data['es_deliver_sentdate']; ?></td>
 
 
 
 
 
 
 
 
103
  <td><?php echo es_cls_common::es_disp_status($data['es_deliver_status']); ?></td>
104
- <td><?php echo $data['es_deliver_viewdate']; ?></td>
 
 
 
 
 
 
 
 
105
  </tr>
106
  <?php
107
  $i = $i+1;
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  $sentguid = isset($_GET['sentguid']) ? $_GET['sentguid'] : '';
100
  <td><?php echo $data['es_deliver_emailmail']; ?></td>
101
  <td><?php echo es_cls_common::es_disp_status($data['es_deliver_sentstatus']); ?></td>
102
  <td><?php echo es_cls_common::es_disp_status($data['es_deliver_senttype']); ?></td>
103
+ <td>
104
+ <?php
105
+ if ( $data['es_deliver_sentdate'] != '0000-00-00 00:00:00' ) {
106
+ echo get_date_from_gmt($data['es_deliver_sentdate'],'Y-m-d H:i:s');
107
+ } else {
108
+ echo $data['es_deliver_sentdate'];
109
+ }
110
+ ?>
111
+ </td>
112
  <td><?php echo es_cls_common::es_disp_status($data['es_deliver_status']); ?></td>
113
+ <td>
114
+ <?php
115
+ if ( $data['es_deliver_viewdate'] != '0000-00-00 00:00:00' ) {
116
+ echo get_date_from_gmt($data['es_deliver_viewdate'],'Y-m-d H:i:s');
117
+ } else {
118
+ echo $data['es_deliver_viewdate'];
119
+ }
120
+ ?>
121
+ </td>
122
  </tr>
123
  <?php
124
  $i = $i+1;
sentmail/sentmail-preview.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  $did = isset($_GET['did']) ? $_GET['did'] : '0';
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  $did = isset($_GET['did']) ? $_GET['did'] : '0';
sentmail/sentmail-show.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  // Form submitted, check the data
@@ -151,8 +152,24 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
151
  <td><?php echo $data['es_sent_source']; ?></td>
152
  <td><?php echo es_cls_common::es_disp_status($data['es_sent_status']); ?></td>
153
  <td><?php echo es_cls_common::es_disp_status($data['es_sent_type']); ?></td>
154
- <td><?php echo $data['es_sent_starttime']; ?></td>
155
- <td><?php echo $data['es_sent_endtime']; ?></td>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
156
  <td><?php echo $data['es_sent_count']; ?></td>
157
  <td>
158
  <a title="Delete Record" onClick="javascript:_es_delete('<?php echo $data['es_sent_id']; ?>')" href="javascript:void(0);">
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  // Form submitted, check the data
152
  <td><?php echo $data['es_sent_source']; ?></td>
153
  <td><?php echo es_cls_common::es_disp_status($data['es_sent_status']); ?></td>
154
  <td><?php echo es_cls_common::es_disp_status($data['es_sent_type']); ?></td>
155
+ <td>
156
+ <?php
157
+ if ( $data['es_sent_starttime'] != '0000-00-00 00:00:00' ) {
158
+ echo get_date_from_gmt($data['es_sent_starttime'],'Y-m-d H:i:s');
159
+ } else {
160
+ echo $data['es_sent_starttime'];
161
+ }
162
+ ?>
163
+ </td>
164
+ <td>
165
+ <?php
166
+ if ( $data['es_sent_endtime'] != '0000-00-00 00:00:00' ) {
167
+ echo get_date_from_gmt($data['es_sent_endtime'],'Y-m-d H:i:s');
168
+ } else {
169
+ echo $data['es_sent_endtime'];
170
+ }
171
+ ?>
172
+ </td>
173
  <td><?php echo $data['es_sent_count']; ?></td>
174
  <td>
175
  <a title="Delete Record" onClick="javascript:_es_delete('<?php echo $data['es_sent_id']; ?>')" href="javascript:void(0);">
settings/setting-sync.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  ?>
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  ?>
settings/settings-edit.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  ?>
@@ -227,7 +228,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
227
  <!-------------------------------------------------------------------------------->
228
  <tr>
229
  <th scope="row">
230
- <label for="elp"><?php echo __( 'Opt-in Option', ES_TDOMAIN ); ?>
231
  <p class="description"><?php echo __( 'Double Opt In means subscribers need to confirm their email address by an activation link sent them on a activation email message.<br />Single Opt In means subscribers do not need to confirm their email address.', ES_TDOMAIN ); ?></p></label>
232
  </th>
233
  <td>
@@ -252,15 +253,15 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
252
  </tr>
253
  <tr>
254
  <th scope="row">
255
- <label for="elp"><?php echo __( 'Double Opt In Mail Subject (Confirmation Email)', ES_TDOMAIN ); ?>
256
- <p class="description"><?php echo __( 'Enter the subject for the confirmation email to be sent Double Opt In whenever a user signs up.', ES_TDOMAIN ); ?></p></label>
257
  </th>
258
  <td><input name="es_c_optinsubject" type="text" id="es_c_optinsubject" value="<?php echo esc_html(stripslashes($form['es_c_optinsubject'])); ?>" size="60" maxlength="225" /></td>
259
  </tr>
260
  <tr>
261
  <th scope="row">
262
- <label for="elp"><?php echo __('Double Opt In Mail Content (Confirmation Email)', ES_TDOMAIN); ?>
263
- <p class="description"><?php echo __( 'Enter the content for the confirmation email to be sent for Double Opt In whenever a user signs up. (Keyword: ###NAME###)', ES_TDOMAIN ); ?></p></label>
264
  </th>
265
  <td><textarea size="100" id="es_c_optincontent" rows="10" cols="58" name="es_c_optincontent"><?php echo esc_html(stripslashes($form['es_c_optincontent'])); ?></textarea></td>
266
  </tr>
@@ -273,7 +274,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
273
  </tr>
274
  <tr>
275
  <th scope="row">
276
- <label for="elp"><?php echo __( 'Text to display after Email is successfully subscribed from Double Opt In (confirmation) Email', ES_TDOMAIN ); ?>
277
  <p class="description"><?php echo __( 'This text will be displayed once user clicks on email confirmation link from the Double Opt In (confirmation) Email.', ES_TDOMAIN ); ?></p></label>
278
  </th>
279
  <td><textarea size="100" id="es_c_subhtml" rows="4" cols="58" name="es_c_subhtml"><?php echo esc_html(stripslashes($form['es_c_subhtml'])); ?></textarea></td>
@@ -294,14 +295,14 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
294
  <tr>
295
  <th scope="row">
296
  <label for="elp"><?php echo __( 'Subscriber Welcome Email Subject', ES_TDOMAIN ); ?>
297
- <p class="description"><?php echo __( 'Enter the subject for the subscriber welcome email. This will be sent whenever a user\'s email is either confirmed (if Double Opt In) / subscribed (if Single Op In) successfully.', ES_TDOMAIN ); ?></p></label>
298
  </th>
299
  <td><input name="es_c_usermailsubject" type="text" id="es_c_usermailsubject" value="<?php echo esc_html(stripslashes($form['es_c_usermailsubject'])); ?>" size="60" maxlength="225" /></td>
300
  </tr>
301
  <tr>
302
  <th scope="row">
303
  <label for="elp"><?php echo __( 'Subscriber Welcome Email Content', ES_TDOMAIN ); ?>
304
- <p class="description"><?php echo __( 'Enter the content for the subscriber welcome email whenever a user\'s email is either confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully. (Keyword: ###NAME###)', ES_TDOMAIN ); ?></p>
305
  </label>
306
  </th>
307
  <td><textarea size="100" id="es_c_usermailcontant" rows="10" cols="58" name="es_c_usermailcontant"><?php echo esc_html(stripslashes($form['es_c_usermailcontant'])); ?></textarea></td>
@@ -310,7 +311,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
310
  <tr>
311
  <th scope="row">
312
  <label for="elp"><?php echo __( 'Unsubscribe Link', ES_TDOMAIN ); ?>
313
- <p class="description"><?php echo __( 'It is a readonly field and you are advised not to modify it.', ES_TDOMAIN ); ?></p></label>
314
  </th>
315
  <td><input name="es_c_unsublink" type="text" id="es_c_unsublink" value="<?php echo esc_html(stripslashes($form['es_c_unsublink'])); ?>" size="60" maxlength="225" readonly /></td>
316
  </tr>
@@ -323,7 +324,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
323
  </tr>
324
  <tr>
325
  <th scope="row">
326
- <label for="elp"><?php echo __( 'Text to display after Email is unsubscribed', ES_TDOMAIN ); ?>
327
  <p class="description"><?php echo __( 'This text will be displayed once user clicks on unsubscribe link.', ES_TDOMAIN ); ?></p></label>
328
  </th>
329
  <td><textarea size="100" id="es_c_unsubhtml" rows="4" cols="58" name="es_c_unsubhtml"><?php echo esc_html(stripslashes($form['es_c_unsubhtml'])); ?></textarea></td>
@@ -331,14 +332,14 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
331
  <!-------------------------------------------------------------------------------->
332
  <tr>
333
  <th scope="row">
334
- <label for="elp"><?php echo __( 'Error in Confirmation Link', ES_TDOMAIN ); ?>
335
  <p class="description"><?php echo __( 'Default message to display if there is any issue while clicking on confirmation link from the Double Opt In (confirmation) Emails.', ES_TDOMAIN ); ?></p></label>
336
  </th>
337
  <td><textarea size="100" id="es_c_message1" rows="4" cols="58" name="es_c_message1"><?php echo esc_html(stripslashes($form['es_c_message1'])); ?></textarea></td>
338
  </tr>
339
  <tr>
340
  <th scope="row">
341
- <label for="elp"><?php echo __( 'Error in Unsubscribe Link', ES_TDOMAIN ); ?>
342
  <p class="description"><?php echo __( 'Default message to display if there is any issue while clicking on unsubscribe link from the Emails.', ES_TDOMAIN ); ?></p></label>
343
  </th>
344
  <td><textarea size="100" id="es_c_message2" rows="4" cols="58" name="es_c_message2"><?php echo esc_html(stripslashes($form['es_c_message2'])); ?></textarea></td>
@@ -353,7 +354,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
353
  </tr>
354
  <tr>
355
  <th scope="row">
356
- <label for="elp"><?php echo __( 'Notify Admin about New Subscriber', ES_TDOMAIN ); ?>
357
  <p class="description"><?php echo __( 'To send admin email notifications for the new subscriber. This option must be set to YES.', ES_TDOMAIN ); ?></p>
358
  </label>
359
  </th>
@@ -366,15 +367,15 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
366
  </tr>
367
  <tr>
368
  <th scope="row">
369
- <label for="elp"><?php echo __( 'Admin Email Subject', ES_TDOMAIN ); ?>
370
- <p class="description"><?php echo __( 'Enter the subject for the admin email. This will be sent whenever a new email is added and confirmed.', ES_TDOMAIN ); ?></p></label>
371
  </th>
372
  <td><input name="es_c_adminmailsubject" type="text" id="es_c_adminmailsubject" value="<?php echo esc_html(stripslashes($form['es_c_adminmailsubject'])); ?>" size="60" maxlength="225" /></td>
373
  </tr>
374
  <tr>
375
  <th scope="row">
376
- <label for="elp"><?php echo __( 'Admin Email Content', ES_TDOMAIN ); ?>
377
- <p class="description"><?php echo __( 'Enter the email content for the admin email. This will be sent whenever a new email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)', ES_TDOMAIN ); ?></p></label>
378
  </th>
379
  <td><textarea size="100" id="es_c_adminmailcontant" rows="10" cols="58" name="es_c_adminmailcontant"><?php echo esc_html(stripslashes($form['es_c_adminmailcontant'])); ?></textarea></td>
380
  </tr>
@@ -382,14 +383,14 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
382
  <tr>
383
  <th scope="row">
384
  <label for="elp"><?php echo __( 'Sent Report Subject', ES_TDOMAIN ); ?>
385
- <p class="description"><?php echo __( 'Enter the subject for the sent email report. It will be mailed to Admin.', ES_TDOMAIN ); ?></p></label>
386
  </th>
387
  <td><input name="es_c_sentreport_subject" type="text" id="es_c_sentreport_subject" value="<?php echo esc_html(stripslashes($form['es_c_sentreport_subject'])); ?>" size="60" maxlength="225" /></td>
388
  </tr>
389
  <tr>
390
  <th scope="row">
391
  <label for="elp"><?php echo __( 'Sent Report Content', ES_TDOMAIN ); ?>
392
- <p class="description"><?php echo __( 'Enter the content for the sent mail report. It will be mailed to Admin. (Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)', ES_TDOMAIN ); ?></p></label>
393
  </th>
394
  <td><textarea size="100" id="es_c_sentreport" rows="8" cols="58" name="es_c_sentreport"><?php echo esc_html(stripslashes($form['es_c_sentreport'])); ?></textarea></td>
395
  </tr>
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  ?>
228
  <!-------------------------------------------------------------------------------->
229
  <tr>
230
  <th scope="row">
231
+ <label for="elp"><?php echo __( 'Opt-In Option', ES_TDOMAIN ); ?>
232
  <p class="description"><?php echo __( 'Double Opt In means subscribers need to confirm their email address by an activation link sent them on a activation email message.<br />Single Opt In means subscribers do not need to confirm their email address.', ES_TDOMAIN ); ?></p></label>
233
  </th>
234
  <td>
253
  </tr>
254
  <tr>
255
  <th scope="row">
256
+ <label for="elp"><?php echo __( 'Double Opt In Email Subject (Confirmation Email)', ES_TDOMAIN ); ?>
257
+ <p class="description"><?php echo __( 'Enter the subject for the confirmation email to be sent for Double Opt In whenever a user signs up.', ES_TDOMAIN ); ?></p></label>
258
  </th>
259
  <td><input name="es_c_optinsubject" type="text" id="es_c_optinsubject" value="<?php echo esc_html(stripslashes($form['es_c_optinsubject'])); ?>" size="60" maxlength="225" /></td>
260
  </tr>
261
  <tr>
262
  <th scope="row">
263
+ <label for="elp"><?php echo __('Double Opt In Email Content (Confirmation Email)', ES_TDOMAIN); ?>
264
+ <p class="description"><?php echo __( 'Enter the content for the confirmation email to be sent for Double Opt In whenever a user signs up. (Keyword: ###NAME###, ###LINK###)', ES_TDOMAIN ); ?></p></label>
265
  </th>
266
  <td><textarea size="100" id="es_c_optincontent" rows="10" cols="58" name="es_c_optincontent"><?php echo esc_html(stripslashes($form['es_c_optincontent'])); ?></textarea></td>
267
  </tr>
274
  </tr>
275
  <tr>
276
  <th scope="row">
277
+ <label for="elp"><?php echo __( 'Text to display after an email address is successfully subscribed from Double Opt In (confirmation) Email', ES_TDOMAIN ); ?>
278
  <p class="description"><?php echo __( 'This text will be displayed once user clicks on email confirmation link from the Double Opt In (confirmation) Email.', ES_TDOMAIN ); ?></p></label>
279
  </th>
280
  <td><textarea size="100" id="es_c_subhtml" rows="4" cols="58" name="es_c_subhtml"><?php echo esc_html(stripslashes($form['es_c_subhtml'])); ?></textarea></td>
295
  <tr>
296
  <th scope="row">
297
  <label for="elp"><?php echo __( 'Subscriber Welcome Email Subject', ES_TDOMAIN ); ?>
298
+ <p class="description"><?php echo __( 'Enter the subject for the subscriber welcome email. This will be sent whenever a user\'s email is either confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully.', ES_TDOMAIN ); ?></p></label>
299
  </th>
300
  <td><input name="es_c_usermailsubject" type="text" id="es_c_usermailsubject" value="<?php echo esc_html(stripslashes($form['es_c_usermailsubject'])); ?>" size="60" maxlength="225" /></td>
301
  </tr>
302
  <tr>
303
  <th scope="row">
304
  <label for="elp"><?php echo __( 'Subscriber Welcome Email Content', ES_TDOMAIN ); ?>
305
+ <p class="description"><?php echo __( 'Enter the content for the subscriber welcome email whenever a user\'s email is either confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully. (Keyword: ###NAME###, ###LINK###)', ES_TDOMAIN ); ?></p>
306
  </label>
307
  </th>
308
  <td><textarea size="100" id="es_c_usermailcontant" rows="10" cols="58" name="es_c_usermailcontant"><?php echo esc_html(stripslashes($form['es_c_usermailcontant'])); ?></textarea></td>
311
  <tr>
312
  <th scope="row">
313
  <label for="elp"><?php echo __( 'Unsubscribe Link', ES_TDOMAIN ); ?>
314
+ <p class="description"><?php echo __( 'The unsubscribe link gets added automatically to all emails that are sent from this plugin. It is a readonly field and you are advised not to modify it.', ES_TDOMAIN ); ?></p></label>
315
  </th>
316
  <td><input name="es_c_unsublink" type="text" id="es_c_unsublink" value="<?php echo esc_html(stripslashes($form['es_c_unsublink'])); ?>" size="60" maxlength="225" readonly /></td>
317
  </tr>
324
  </tr>
325
  <tr>
326
  <th scope="row">
327
+ <label for="elp"><?php echo __( 'Text to display after an email address is unsubscribed', ES_TDOMAIN ); ?>
328
  <p class="description"><?php echo __( 'This text will be displayed once user clicks on unsubscribe link.', ES_TDOMAIN ); ?></p></label>
329
  </th>
330
  <td><textarea size="100" id="es_c_unsubhtml" rows="4" cols="58" name="es_c_unsubhtml"><?php echo esc_html(stripslashes($form['es_c_unsubhtml'])); ?></textarea></td>
332
  <!-------------------------------------------------------------------------------->
333
  <tr>
334
  <th scope="row">
335
+ <label for="elp"><?php echo __( 'Error in the Confirmation Link', ES_TDOMAIN ); ?>
336
  <p class="description"><?php echo __( 'Default message to display if there is any issue while clicking on confirmation link from the Double Opt In (confirmation) Emails.', ES_TDOMAIN ); ?></p></label>
337
  </th>
338
  <td><textarea size="100" id="es_c_message1" rows="4" cols="58" name="es_c_message1"><?php echo esc_html(stripslashes($form['es_c_message1'])); ?></textarea></td>
339
  </tr>
340
  <tr>
341
  <th scope="row">
342
+ <label for="elp"><?php echo __( 'Error in the Unsubscribe Link', ES_TDOMAIN ); ?>
343
  <p class="description"><?php echo __( 'Default message to display if there is any issue while clicking on unsubscribe link from the Emails.', ES_TDOMAIN ); ?></p></label>
344
  </th>
345
  <td><textarea size="100" id="es_c_message2" rows="4" cols="58" name="es_c_message2"><?php echo esc_html(stripslashes($form['es_c_message2'])); ?></textarea></td>
354
  </tr>
355
  <tr>
356
  <th scope="row">
357
+ <label for="elp"><?php echo __( 'Notify admin when a new subscriber signs up', ES_TDOMAIN ); ?>
358
  <p class="description"><?php echo __( 'To send admin email notifications for the new subscriber. This option must be set to YES.', ES_TDOMAIN ); ?></p>
359
  </label>
360
  </th>
367
  </tr>
368
  <tr>
369
  <th scope="row">
370
+ <label for="elp"><?php echo __( 'Admin Email Subject when a new subscriber signs up', ES_TDOMAIN ); ?>
371
+ <p class="description"><?php echo __( 'Enter the subject for the admin email which will be sent whenever a new email is added and confirmed.', ES_TDOMAIN ); ?></p></label>
372
  </th>
373
  <td><input name="es_c_adminmailsubject" type="text" id="es_c_adminmailsubject" value="<?php echo esc_html(stripslashes($form['es_c_adminmailsubject'])); ?>" size="60" maxlength="225" /></td>
374
  </tr>
375
  <tr>
376
  <th scope="row">
377
+ <label for="elp"><?php echo __( 'Admin Email Content when a new subscriber signs up', ES_TDOMAIN ); ?>
378
+ <p class="description"><?php echo __( 'Enter the email content for the admin email which will be sent whenever a new email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)', ES_TDOMAIN ); ?></p></label>
379
  </th>
380
  <td><textarea size="100" id="es_c_adminmailcontant" rows="10" cols="58" name="es_c_adminmailcontant"><?php echo esc_html(stripslashes($form['es_c_adminmailcontant'])); ?></textarea></td>
381
  </tr>
383
  <tr>
384
  <th scope="row">
385
  <label for="elp"><?php echo __( 'Sent Report Subject', ES_TDOMAIN ); ?>
386
+ <p class="description"><?php echo __( 'Enter the subject for the sent email report. It will be emailed to Admin.', ES_TDOMAIN ); ?></p></label>
387
  </th>
388
  <td><input name="es_c_sentreport_subject" type="text" id="es_c_sentreport_subject" value="<?php echo esc_html(stripslashes($form['es_c_sentreport_subject'])); ?>" size="60" maxlength="225" /></td>
389
  </tr>
390
  <tr>
391
  <th scope="row">
392
  <label for="elp"><?php echo __( 'Sent Report Content', ES_TDOMAIN ); ?>
393
+ <p class="description"><?php echo __( 'Enter the content for the sent email report. It will be emailed to Admin. (Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)', ES_TDOMAIN ); ?></p></label>
394
  </th>
395
  <td><textarea size="100" id="es_c_sentreport" rows="8" cols="58" name="es_c_sentreport"><?php echo esc_html(stripslashes($form['es_c_sentreport'])); ?></textarea></td>
396
  </tr>
subscribers/view-subscriber-add.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  ?>
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  ?>
subscribers/view-subscriber-edit.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  ?>
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  ?>
subscribers/view-subscriber-export.php CHANGED
@@ -1,18 +1,19 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  $home_url = home_url('/');
8
 
9
- // Total Subscribers (with all status)
10
  $cnt_subscriber = 0;
11
- $cnt_subscriber = es_cls_dbquery::es_view_subscriber_count(0);
12
 
13
  // WordPress Registered Users
14
  $cnt_users = 0;
15
- $cnt_users = $wpdb->get_var( "SELECT count(DISTINCT user_email) from ". $wpdb->prefix . "users" );
16
 
17
  // Users who comments on blog posts
18
  $cnt_comment_author = 0;
@@ -35,7 +36,7 @@ $cnt_comment_author = $wpdb->get_var( "SELECT count(DISTINCT comment_author_emai
35
  <tr>
36
  <th scope="col"><?php echo __( 'Sno', ES_TDOMAIN ); ?></th>
37
  <th scope="col"><?php echo __( 'Type of List to Export', ES_TDOMAIN ); ?></th>
38
- <th scope="col"><?php echo __( 'Total Emails', ES_TDOMAIN ); ?></th>
39
  <th scope="col"><?php echo __( 'Action', ES_TDOMAIN ); ?></th>
40
  </tr>
41
  </thead>
@@ -43,14 +44,14 @@ $cnt_comment_author = $wpdb->get_var( "SELECT count(DISTINCT comment_author_emai
43
  <tr>
44
  <th scope="col"><?php echo __( 'Sno', ES_TDOMAIN ); ?></th>
45
  <th scope="col"><?php echo __( 'Type of List to Export', ES_TDOMAIN ); ?></th>
46
- <th scope="col"><?php echo __( 'Total Emails', ES_TDOMAIN ); ?></th>
47
  <th scope="col"><?php echo __( 'Action', ES_TDOMAIN ); ?></th>
48
  </tr>
49
  </tfoot>
50
  <tbody>
51
  <tr>
52
  <td><?php echo __( '1', ES_TDOMAIN ); ?></td>
53
- <td><?php echo __( 'All Subscribers List', ES_TDOMAIN ); ?></td>
54
  <td><?php echo $cnt_subscriber; ?></td>
55
  <td><a onClick="javascript:_es_exportcsv('<?php echo $home_url. "?es=export"; ?>', 'view_subscriber')" href="javascript:void(0);"><?php echo __( 'Click to Export in CSV', ES_TDOMAIN ); ?></a></td>
56
  </tr>
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  $home_url = home_url('/');
9
 
10
+ // Total Active Subscribers (without Unsubscribed status)
11
  $cnt_subscriber = 0;
12
+ $cnt_subscriber = es_cls_dbquery::es_active_subscribers();
13
 
14
  // WordPress Registered Users
15
  $cnt_users = 0;
16
+ $cnt_users = $wpdb->get_var( "SELECT count(DISTINCT user_email) FROM ". $wpdb->prefix . "users" );
17
 
18
  // Users who comments on blog posts
19
  $cnt_comment_author = 0;
36
  <tr>
37
  <th scope="col"><?php echo __( 'Sno', ES_TDOMAIN ); ?></th>
38
  <th scope="col"><?php echo __( 'Type of List to Export', ES_TDOMAIN ); ?></th>
39
+ <th scope="col"><?php echo __( 'Total Emails Count', ES_TDOMAIN ); ?></th>
40
  <th scope="col"><?php echo __( 'Action', ES_TDOMAIN ); ?></th>
41
  </tr>
42
  </thead>
44
  <tr>
45
  <th scope="col"><?php echo __( 'Sno', ES_TDOMAIN ); ?></th>
46
  <th scope="col"><?php echo __( 'Type of List to Export', ES_TDOMAIN ); ?></th>
47
+ <th scope="col"><?php echo __( 'Total Emails Count', ES_TDOMAIN ); ?></th>
48
  <th scope="col"><?php echo __( 'Action', ES_TDOMAIN ); ?></th>
49
  </tr>
50
  </tfoot>
51
  <tbody>
52
  <tr>
53
  <td><?php echo __( '1', ES_TDOMAIN ); ?></td>
54
+ <td><?php echo __( 'Active Subscribers List', ES_TDOMAIN ); ?></td>
55
  <td><?php echo $cnt_subscriber; ?></td>
56
  <td><a onClick="javascript:_es_exportcsv('<?php echo $home_url. "?es=export"; ?>', 'view_subscriber')" href="javascript:void(0);"><?php echo __( 'Click to Export in CSV', ES_TDOMAIN ); ?></a></td>
57
  </tr>
subscribers/view-subscriber-import.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  ?>
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  ?>
subscribers/view-subscriber-show.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  if ( !empty( $_POST ) && ! wp_verify_nonce( $_REQUEST['wp_create_nonce'], 'subscriber-nonce' ) ) {
@@ -295,7 +296,7 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
295
  ?>
296
  </select>
297
  <select name="es_update_status" id="es_update_status" disabled="disabled">
298
- <option value=""><?php echo __( 'All Status', ES_TDOMAIN ); ?></option>
299
  <option value="Confirmed"><?php echo __( 'Confirmed', ES_TDOMAIN ); ?></option>
300
  <option value="Unconfirmed"><?php echo __( 'Unconfirmed', ES_TDOMAIN ); ?></option>
301
  <option value="Unsubscribed"><?php echo __( 'Unsubscribed', ES_TDOMAIN ); ?></option>
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  if ( !empty( $_POST ) && ! wp_verify_nonce( $_REQUEST['wp_create_nonce'], 'subscriber-nonce' ) ) {
296
  ?>
297
  </select>
298
  <select name="es_update_status" id="es_update_status" disabled="disabled">
299
+ <option value=""><?php echo __( 'Select Status', ES_TDOMAIN ); ?></option>
300
  <option value="Confirmed"><?php echo __( 'Confirmed', ES_TDOMAIN ); ?></option>
301
  <option value="Unconfirmed"><?php echo __( 'Unconfirmed', ES_TDOMAIN ); ?></option>
302
  <option value="Unsubscribed"><?php echo __( 'Unsubscribed', ES_TDOMAIN ); ?></option>
subscribers/view-subscriber-sync.php CHANGED
@@ -1,7 +1,8 @@
1
  <?php
2
 
3
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
4
- die('You are not allowed to call this page directly.');
 
5
  }
6
 
7
  ?>
1
  <?php
2
 
3
+ // Exit if accessed directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
  }
7
 
8
  ?>
widget/es-widget-page.js CHANGED
@@ -58,10 +58,11 @@ function eemail_submitresults() {
58
  //alert(http_req.responseText);
59
  if (http_req.readyState == 4) {
60
  if (http_req.status == 200) {
61
- if (http_req.readyState==4 || http_req.readyState=="complete") {
62
  if((http_req.responseText).trim() == "subscribed-successfully") {
63
  document.getElementById("es_msg_pg").innerHTML = es_widget_page_notices.es_success_message;
64
  document.getElementById("es_txt_email_pg").value="";
 
65
  } else if((http_req.responseText).trim() == "subscribed-pending-doubleoptin") {
66
  alert(es_widget_page_notices.es_success_notice);
67
  document.getElementById("es_msg_pg").innerHTML = es_widget_notices.es_success_message;
@@ -75,8 +76,6 @@ function eemail_submitresults() {
75
  document.getElementById("es_msg_pg").innerHTML = es_widget_page_notices.es_invalid_email;
76
  } else {
77
  document.getElementById("es_msg_pg").innerHTML = es_widget_page_notices.es_try_later;
78
- document.getElementById("es_txt_email_pg").value="";
79
- document.getElementById("es_txt_name_pg").value="";
80
  }
81
  }
82
  } else {
58
  //alert(http_req.responseText);
59
  if (http_req.readyState == 4) {
60
  if (http_req.status == 200) {
61
+ if (http_req.readyState==4 || http_req.readyState=="complete") {
62
  if((http_req.responseText).trim() == "subscribed-successfully") {
63
  document.getElementById("es_msg_pg").innerHTML = es_widget_page_notices.es_success_message;
64
  document.getElementById("es_txt_email_pg").value="";
65
+ document.getElementById("es_txt_name_pg").value="";
66
  } else if((http_req.responseText).trim() == "subscribed-pending-doubleoptin") {
67
  alert(es_widget_page_notices.es_success_notice);
68
  document.getElementById("es_msg_pg").innerHTML = es_widget_notices.es_success_message;
76
  document.getElementById("es_msg_pg").innerHTML = es_widget_page_notices.es_invalid_email;
77
  } else {
78
  document.getElementById("es_msg_pg").innerHTML = es_widget_page_notices.es_try_later;
 
 
79
  }
80
  }
81
  } else {
widget/es-widget.css CHANGED
@@ -1,7 +1,6 @@
1
  .es_caption {
2
- padding-bottom:5px;
3
- padding-top:5px;
4
- padding-right:5px;
5
  }
6
  .es_msg {
7
  padding-top:5px;
1
  .es_caption {
2
+ padding-bottom:1em;
3
+ padding-right:0.5em;
 
4
  }
5
  .es_msg {
6
  padding-top:5px;
widget/es-widget.js CHANGED
@@ -58,10 +58,11 @@ function eemail_submitresult() {
58
  //alert(http_req.responseText);
59
  if (http_req.readyState == 4) {
60
  if (http_req.status == 200) {
61
- if (http_req.readyState==4 || http_req.readyState=="complete") {
62
  if((http_req.responseText).trim() == "subscribed-successfully") {
63
  document.getElementById("es_msg").innerHTML = es_widget_notices.es_success_message;
64
  document.getElementById("es_txt_email").value="";
 
65
  } else if((http_req.responseText).trim() == "subscribed-pending-doubleoptin") {
66
  alert(es_widget_notices.es_success_notice);
67
  document.getElementById("es_msg").innerHTML = es_widget_notices.es_success_message;
@@ -75,8 +76,6 @@ function eemail_submitresult() {
75
  document.getElementById("es_msg").innerHTML = es_widget_notices.es_invalid_email;
76
  } else {
77
  document.getElementById("es_msg").innerHTML = es_widget_notices.es_try_later;
78
- document.getElementById("es_txt_email").value="";
79
- document.getElementById("es_txt_name").value="";
80
  }
81
  }
82
  } else {
58
  //alert(http_req.responseText);
59
  if (http_req.readyState == 4) {
60
  if (http_req.status == 200) {
61
+ if (http_req.readyState==4 || http_req.readyState=="complete") {
62
  if((http_req.responseText).trim() == "subscribed-successfully") {
63
  document.getElementById("es_msg").innerHTML = es_widget_notices.es_success_message;
64
  document.getElementById("es_txt_email").value="";
65
+ document.getElementById("es_txt_name").value="";
66
  } else if((http_req.responseText).trim() == "subscribed-pending-doubleoptin") {
67
  alert(es_widget_notices.es_success_notice);
68
  document.getElementById("es_msg").innerHTML = es_widget_notices.es_success_message;
76
  document.getElementById("es_msg").innerHTML = es_widget_notices.es_invalid_email;
77
  } else {
78
  document.getElementById("es_msg").innerHTML = es_widget_notices.es_try_later;
 
 
79
  }
80
  }
81
  } else {