Subscribe2 - Version 4.11

Version Description

Download this release

Release Info

Developer MattyRob
Plugin Icon 128x128 Subscribe2
Version 4.11
Comparing to
See all releases

Code changes from version 4.10 to 4.11

Files changed (5) hide show
  1. ReadMe.txt +12 -2
  2. subscribe2.php +83 -71
  3. subscribe2.pot +124 -124
  4. subscribe2debug.php +1 -1
  5. subscribe2uninstaller.php +1 -1
ReadMe.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: MattyRob, Skippy, RavanH
3
  Donate link: http://subscribe2.wordpress.com/donate/
4
  Tags: posts, subscription, email
5
  Requires at least: 2.0.x
6
- Tested up to: 2.5
7
- Stable tag: 4.10
8
 
9
  Sends a list of subscribers an email notification when new posts are published to your blog
10
 
@@ -85,6 +85,16 @@ If, for some reason the Subscribe2 button does not appear in your browser window
85
 
86
  == Version History ==
87
 
 
 
 
 
 
 
 
 
 
 
88
  Version 4.10 by Matthew Robinson
89
 
90
  * Fixed Registration form action from WordPress registrations
3
  Donate link: http://subscribe2.wordpress.com/donate/
4
  Tags: posts, subscription, email
5
  Requires at least: 2.0.x
6
+ Tested up to: 2.6.2
7
+ Stable tag: 4.11
8
 
9
  Sends a list of subscribers an email notification when new posts are published to your blog
10
 
85
 
86
  == Version History ==
87
 
88
+ Version 4.11 by Matthew Robinson
89
+
90
+ * Works in WordPress 2.7-almost-beta!
91
+ * Fixed a bug in the mail() function that meant emails were not sent to recipients if the BCCLimit setting was greater than the total number of recipients for that mail type
92
+ * Ensured that the array of recipients was cast correctly in the reminder function
93
+ * Fixed display of html entities in the reminder emails
94
+ * Fixed a bug in the SQL statements for WordPress MU installations
95
+ * Corrected a typo in the message displayed on the WordPress registration page if subscriptions are automatic
96
+ * Several layout and inline comment changes
97
+
98
  Version 4.10 by Matthew Robinson
99
 
100
  * Fixed Registration form action from WordPress registrations
subscribe2.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Subscribe2
4
  Plugin URI: http://subscribe2.wordpress.com
5
  Description: Notifies an email list when new entries are posted.
6
- Version: 4.10
7
  Author: Matthew Robinson
8
  Author URI: http://subscribe2.wordpress.com
9
  */
@@ -31,7 +31,7 @@ along with Subscribe2. If not, see <http://www.gnu.org/licenses/>.
31
 
32
  // our version number. Don't touch this or any line below
33
  // unless you know exacly what you are doing
34
- define('S2VERSION', '4.10');
35
  define('S2PATH', trailingslashit(dirname(__FILE__)));
36
 
37
  // Pre-2.6 compatibility
@@ -91,9 +91,9 @@ class s2class {
91
 
92
  $this->deleted = "<p>" . __('You have successfully unsubscribed.', 'subscribe2') . "</p>";
93
 
94
- $this->confirm_subject = "[" . get_option('blogname') . "] " . __('Please confirm your request', 'subscribe2');
95
 
96
- $this->remind_subject = "[" . get_option('blogname') . "] " . __('Subscription Reminder', 'subscribe2');
97
 
98
  $this->subscribe = __('subscribe', 'subscribe2'); //ACTION replacement in subscribing confirmation email
99
 
@@ -275,70 +275,68 @@ class s2class {
275
  // Replace any escaped html symbols in subject
276
  $subject = html_entity_decode($subject);
277
 
278
- // BCC all recipients
279
  $bcc = '';
280
- if ($this->subscribe2_options['bcclimit'] > 0) {
281
- if ($this->subscribe2_options['bcclimit'] == 1) {
282
- foreach ($recipients as $recipient) {
283
- $recipient = trim($recipient);
284
- // sanity check -- make sure we have a valid email
285
- if (!is_email($recipient)) { continue; }
286
- $status = @wp_mail($recipient, $subject, $mailtext, $headers);
287
- }
288
- return;
289
- } elseif (count($recipients) > $this->subscribe2_options['bcclimit']) {
290
- // we're using BCCLimit, and have more susbcribers than the limit
291
- $count = 1;
292
- $batch = array();
293
- foreach ($recipients as $recipient) {
294
- // advance the array pointer by one, for use down below
295
- // the array pointer _is not_ advanced by the foreach() loop itself
296
- next($recipients);
297
- $recipient = trim($recipient);
298
- // sanity check -- make sure we have a valid email
299
- if (!is_email($recipient)) { continue; }
300
- // and NOT the sender's email, since they'll
301
- // get a copy anyway
302
- if ( (! empty($recipient)) && ($this->myemail != $recipient) ) {
303
- ('' == $bcc) ? $bcc = "Bcc: $recipient" : $bcc .= ", $recipient";
304
- // Bcc Headers now constructed by phpmailer class
305
- }
306
- if ($this->subscribe2_options['bcclimit'] == $count) {
307
- $count = 1;
308
- $batch[] = $bcc;
309
- $bcc = '';
310
- } else {
311
- if (false == current($recipients)) {
312
- // we've reached the end of the subscriber list
313
- // add what we have to the batch, and move on
314
- $batch[] = $bcc;
315
- break;
316
- } else {
317
- $count++;
318
- }
319
- }
320
  }
321
  }
322
- // rewind the array, just to be safe
323
- reset($recipients);
324
  } else {
325
- // we're not using BCCLimit, or have fewer
326
- // subscribers than the limit, so do it normal
 
327
  foreach ($recipients as $recipient) {
 
 
 
328
  $recipient = trim($recipient);
329
  // sanity check -- make sure we have a valid email
330
  if (!is_email($recipient)) { continue; }
331
- // and NOT the sender's email, since they'll
332
- // get a copy anyway
333
- if ( (!empty($recipient)) && ($this->myemail != $recipient) ) {
334
  ('' == $bcc) ? $bcc = "Bcc: $recipient" : $bcc .= ", $recipient";
335
  // Bcc Headers now constructed by phpmailer class
336
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
337
  }
338
- $headers .= "$bcc\r\n";
339
  }
 
 
 
340
  // actually send mail
341
- if ( ($this->subscribe2_options['bcclimit'] > 0) && (isset($batch)) ) {
342
  foreach ($batch as $bcc) {
343
  $newheaders = $headers . "$bcc\r\n";
344
  $status = @wp_mail($this->myemail, $subject, $mailtext, $newheaders);
@@ -529,7 +527,7 @@ class s2class {
529
  $link .= $id;
530
 
531
  $admin = $this->get_userdata();
532
- $this->myname = $admin->display_name;
533
 
534
  if ($is_remind == TRUE) {
535
  $body = $this->substitute(stripslashes($this->subscribe2_options['remind_email']));
@@ -677,7 +675,7 @@ class s2class {
677
  $this->myname = $admin->display_name;
678
 
679
  $recipients = explode(",", $emails);
680
- if (!is_array($recipients)) { $recipients = array(); }
681
  foreach ($recipients as $recipient) {
682
  $this->email = $recipient;
683
  $this->send_confirm('add', TRUE);
@@ -850,7 +848,7 @@ class s2class {
850
  }
851
 
852
  if ($s2_mu) {
853
- $sql = "SELECT a.user_id FROM $wpdb->usermeta AS a " . $JOIN . "WHERE a.meta_key='" . $wpdb->prefix . "capabilities'" . $AND;
854
  } else {
855
  $sql = "SELECT a.user_id FROM $wpdb->usermeta AS a " . $JOIN . "WHERE a.meta_key='s2_subscribed'" . $AND;
856
  }
@@ -942,8 +940,8 @@ class s2class {
942
  $check = get_usermeta($user_id, 's2_subscribed');
943
  // if the are no existing subscriptions, create them based on admin options
944
  if (empty($check)) {
 
945
  if ( ('yes' == $this->subscribe2_options['autosub']) || (('wpreg' == $this->subscribe2_options['autosub']) && (1 == $wpreg)) ) {
946
- // don't add entries by default if autosub is off, messes up daily digests
947
  update_usermeta($user_id, 's2_subscribed', $cats);
948
  foreach(explode(',', $cats) as $cat) {
949
  update_usermeta($user_id, 's2_cat' . $cat, "$cat");
@@ -975,7 +973,12 @@ class s2class {
975
  }
976
 
977
  foreach ($user_IDs as $user_ID) {
978
- $old_cats = explode(',', get_usermeta($user_ID, 's2_subscribed'));
 
 
 
 
 
979
  if (!is_array($old_cats)) {
980
  $old_cats = array($old_cats);
981
  }
@@ -1425,7 +1428,7 @@ class s2class {
1425
  if ( ($email_freq != $this->subscribe2_options['email_freq']) || ($_POST['hour'] != gmdate('H', $scheduled_time)) ) {
1426
  $this->subscribe2_options['email_freq'] = $email_freq;
1427
  wp_clear_scheduled_hook('s2_digest_cron');
1428
- $scheds = (array) wp_get_schedules();
1429
  $interval = ( isset($scheds[$email_freq]['interval']) ) ? (int) $scheds[$email_freq]['interval'] : 0;
1430
  if ($interval == 0) {
1431
  // if we are on per-post emails remove last_cron entry
@@ -1714,16 +1717,25 @@ class s2class {
1714
 
1715
  if ($s2_mu) {
1716
  $posted_cats = $_POST['category'];
1717
- $other_blogs = array_diff(explode(',', get_usermeta($user_ID, 's2_subscribed')), get_all_category_ids());
1718
- $cats = array_merge($posted_cats, $other_blogs);
 
 
 
 
 
 
 
 
 
1719
  } else {
1720
  $cats = $_POST['category'];
1721
  }
1722
 
1723
  if ( (empty($cats)) || ($cats == '-1') ) {
1724
- $cats = explode(',', get_usermeta($user_ID, 's2_subscribed'));
1725
- if ($cats) {
1726
- foreach ($cats as $cat) {
1727
  delete_usermeta($user_ID, "s2_cat" . $cat);
1728
  }
1729
  }
@@ -1781,7 +1793,7 @@ class s2class {
1781
  echo "/> " . __('Plain Text', 'subscribe2') . "<br /><br />\r\n";
1782
 
1783
  echo __('Email contains', 'subscribe2') . ": &nbsp;&nbsp;";
1784
- $amount = array ('excerpt' => __('Excerpt Only', 'subscribe2'), 'post' => __('Full Post', 'subscribe2'));
1785
  foreach ($amount as $key => $value) {
1786
  echo "<input type=\"radio\" name=\"s2_excerpt\" value=\"" . $key . "\"";
1787
  if ($key == get_usermeta($user_ID, 's2_excerpt')) {
@@ -2085,7 +2097,7 @@ class s2class {
2085
  echo "</p>\r\n";
2086
  } elseif ('yes' == $this->subscribe2_options['autosub']) {
2087
  echo "<p>\r\n<center>\r\n";
2088
- echo __('By Registering with this blog you are also agreeing to recieve email notifications for new posts but you can unsubscribe at anytime', 'subscribe2') . "<br />\r\n";
2089
  echo "</center></p>\r\n";
2090
  }
2091
  }
@@ -2226,7 +2238,7 @@ class s2class {
2226
  function widget_subscribe2widget($args) {
2227
  extract($args);
2228
  $options = get_option('widget_subscribe2widget');
2229
- $title = empty($options['title']) ? __('Subscribe2') : $options['title'];
2230
  echo $before_widget;
2231
  echo $before_title . $title . $after_title;
2232
  echo "<div class=\"search\">";
@@ -2262,8 +2274,8 @@ class s2class {
2262
  if ( !function_exists('register_sidebar_widget') || !class_exists('s2class')) {
2263
  return;
2264
  } else {
2265
- register_sidebar_widget('Subscribe2Widget', array(&$this, 'widget_subscribe2widget'));
2266
- register_widget_control('Subscribe2Widget', array(&$this, 'widget_subscribe2widget_control'));
2267
  }
2268
  }
2269
 
@@ -2446,7 +2458,7 @@ class s2class {
2446
  $this->myemail = $user->user_email;
2447
  $this->myname = html_entity_decode($user->display_name);
2448
 
2449
- $scheds = (array) wp_get_schedules();
2450
  $email_freq = $this->subscribe2_options['email_freq'];
2451
  $display = $scheds[$email_freq]['display'];
2452
  $subject = '[' . stripslashes(get_option('blogname')) . '] ' . $display . ' ' . __('Digest Email', 'subscribe2');
3
  Plugin Name: Subscribe2
4
  Plugin URI: http://subscribe2.wordpress.com
5
  Description: Notifies an email list when new entries are posted.
6
+ Version: 4.11
7
  Author: Matthew Robinson
8
  Author URI: http://subscribe2.wordpress.com
9
  */
31
 
32
  // our version number. Don't touch this or any line below
33
  // unless you know exacly what you are doing
34
+ define('S2VERSION', '4.11');
35
  define('S2PATH', trailingslashit(dirname(__FILE__)));
36
 
37
  // Pre-2.6 compatibility
91
 
92
  $this->deleted = "<p>" . __('You have successfully unsubscribed.', 'subscribe2') . "</p>";
93
 
94
+ $this->confirm_subject = "[" . html_entity_decode(get_option('blogname')) . "] " . __('Please confirm your request', 'subscribe2');
95
 
96
+ $this->remind_subject = "[" . html_entity_decode(get_option('blogname')) . "] " . __('Subscription Reminder', 'subscribe2');
97
 
98
  $this->subscribe = __('subscribe', 'subscribe2'); //ACTION replacement in subscribing confirmation email
99
 
275
  // Replace any escaped html symbols in subject
276
  $subject = html_entity_decode($subject);
277
 
278
+ // Construct BCC headers for sending or send individual emails
279
  $bcc = '';
280
+ if ($this->subscribe2_options['bcclimit'] == 1) {
281
+ // BCCLimit is 1 so send individual emails
282
+ foreach ($recipients as $recipient) {
283
+ $recipient = trim($recipient);
284
+ // sanity check -- make sure we have a valid email
285
+ if (!is_email($recipient)) { continue; }
286
+ $status = @wp_mail($recipient, $subject, $mailtext, $headers);
287
+ }
288
+ // Sending completed so return $status
289
+ return $status;
290
+ } elseif ($this->subscribe2_options['bcclimit'] == 0) {
291
+ // we're not using BCCLimit
292
+ foreach ($recipients as $recipient) {
293
+ $recipient = trim($recipient);
294
+ // sanity check -- make sure we have a valid email
295
+ if (!is_email($recipient)) { continue; }
296
+ // and NOT the sender's email, since they'll get a copy anyway
297
+ if ( (!empty($recipient)) && ($this->myemail != $recipient) ) {
298
+ ('' == $bcc) ? $bcc = "Bcc: $recipient" : $bcc .= ", $recipient";
299
+ // Bcc Headers now constructed by phpmailer class
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
300
  }
301
  }
302
+ $headers .= "$bcc\r\n";
 
303
  } else {
304
+ // we're using BCCLimit
305
+ $count = 1;
306
+ $batch = array();
307
  foreach ($recipients as $recipient) {
308
+ // advance the array pointer by one, for use down below
309
+ // the array pointer _is not_ advanced by the foreach() loop itself
310
+ next($recipients);
311
  $recipient = trim($recipient);
312
  // sanity check -- make sure we have a valid email
313
  if (!is_email($recipient)) { continue; }
314
+ // and NOT the sender's email, since they'll get a copy anyway
315
+ if ( (! empty($recipient)) && ($this->myemail != $recipient) ) {
 
316
  ('' == $bcc) ? $bcc = "Bcc: $recipient" : $bcc .= ", $recipient";
317
  // Bcc Headers now constructed by phpmailer class
318
  }
319
+ if ($this->subscribe2_options['bcclimit'] == $count) {
320
+ $count = 1;
321
+ $batch[] = $bcc;
322
+ $bcc = '';
323
+ } else {
324
+ if (false == current($recipients)) {
325
+ // we've reached the end of the subscriber list
326
+ // add what we have to the batch, and move on
327
+ $batch[] = $bcc;
328
+ break;
329
+ } else {
330
+ $count++;
331
+ }
332
+ }
333
  }
 
334
  }
335
+ // rewind the array, just to be safe
336
+ reset($recipients);
337
+
338
  // actually send mail
339
+ if (isset($batch)) {
340
  foreach ($batch as $bcc) {
341
  $newheaders = $headers . "$bcc\r\n";
342
  $status = @wp_mail($this->myemail, $subject, $mailtext, $newheaders);
527
  $link .= $id;
528
 
529
  $admin = $this->get_userdata();
530
+ $this->myname = html_entity_decode($admin->display_name);
531
 
532
  if ($is_remind == TRUE) {
533
  $body = $this->substitute(stripslashes($this->subscribe2_options['remind_email']));
675
  $this->myname = $admin->display_name;
676
 
677
  $recipients = explode(",", $emails);
678
+ if (!is_array($recipients)) { $recipients = (array)$recipients; }
679
  foreach ($recipients as $recipient) {
680
  $this->email = $recipient;
681
  $this->send_confirm('add', TRUE);
848
  }
849
 
850
  if ($s2_mu) {
851
+ $sql = "SELECT a.user_id FROM $wpdb->usermeta AS a INNER JOIN $wpdb->usermeta AS e ON a.user_id = e.user_id " . $JOIN . "WHERE a.meta_key='" . $wpdb->prefix . "capabilities' AND e.meta_key='s2_subscribed'" . $AND;
852
  } else {
853
  $sql = "SELECT a.user_id FROM $wpdb->usermeta AS a " . $JOIN . "WHERE a.meta_key='s2_subscribed'" . $AND;
854
  }
940
  $check = get_usermeta($user_id, 's2_subscribed');
941
  // if the are no existing subscriptions, create them based on admin options
942
  if (empty($check)) {
943
+ // add entries by default if autosub is on
944
  if ( ('yes' == $this->subscribe2_options['autosub']) || (('wpreg' == $this->subscribe2_options['autosub']) && (1 == $wpreg)) ) {
 
945
  update_usermeta($user_id, 's2_subscribed', $cats);
946
  foreach(explode(',', $cats) as $cat) {
947
  update_usermeta($user_id, 's2_cat' . $cat, "$cat");
973
  }
974
 
975
  foreach ($user_IDs as $user_ID) {
976
+ $old_cats = get_usermeta($user_ID, 's2_subscribed');
977
+ if ($old_cats == '-1') {
978
+ $old_cats = array();
979
+ } else {
980
+ $old_cats = explode(',', $old_cats);
981
+ }
982
  if (!is_array($old_cats)) {
983
  $old_cats = array($old_cats);
984
  }
1428
  if ( ($email_freq != $this->subscribe2_options['email_freq']) || ($_POST['hour'] != gmdate('H', $scheduled_time)) ) {
1429
  $this->subscribe2_options['email_freq'] = $email_freq;
1430
  wp_clear_scheduled_hook('s2_digest_cron');
1431
+ $scheds = (array)wp_get_schedules();
1432
  $interval = ( isset($scheds[$email_freq]['interval']) ) ? (int) $scheds[$email_freq]['interval'] : 0;
1433
  if ($interval == 0) {
1434
  // if we are on per-post emails remove last_cron entry
1717
 
1718
  if ($s2_mu) {
1719
  $posted_cats = $_POST['category'];
1720
+ $other_blogs = get_usermeta($user_ID, 's2_subscribed');
1721
+ if ($other_blogs == '-1') {
1722
+ $other_blogs = array();
1723
+ } else {
1724
+ $other_blogs = array_diff(explode(',', $other_blogs), get_all_category_ids());
1725
+ }
1726
+ if (empty($posted_cats)) {
1727
+ $cats = $other_blogs;
1728
+ } else {
1729
+ $cats = array_merge($posted_cats, $other_blogs);
1730
+ }
1731
  } else {
1732
  $cats = $_POST['category'];
1733
  }
1734
 
1735
  if ( (empty($cats)) || ($cats == '-1') ) {
1736
+ $oldcats = explode(',', get_usermeta($user_ID, 's2_subscribed'));
1737
+ if ($oldcats) {
1738
+ foreach ($oldcats as $cat) {
1739
  delete_usermeta($user_ID, "s2_cat" . $cat);
1740
  }
1741
  }
1793
  echo "/> " . __('Plain Text', 'subscribe2') . "<br /><br />\r\n";
1794
 
1795
  echo __('Email contains', 'subscribe2') . ": &nbsp;&nbsp;";
1796
+ $amount = array('excerpt' => __('Excerpt Only', 'subscribe2'), 'post' => __('Full Post', 'subscribe2'));
1797
  foreach ($amount as $key => $value) {
1798
  echo "<input type=\"radio\" name=\"s2_excerpt\" value=\"" . $key . "\"";
1799
  if ($key == get_usermeta($user_ID, 's2_excerpt')) {
2097
  echo "</p>\r\n";
2098
  } elseif ('yes' == $this->subscribe2_options['autosub']) {
2099
  echo "<p>\r\n<center>\r\n";
2100
+ echo __('By registering with this blog you are also agreeing to receive email notifications for new posts but you can unsubscribe at anytime', 'subscribe2') . ".<br />\r\n";
2101
  echo "</center></p>\r\n";
2102
  }
2103
  }
2238
  function widget_subscribe2widget($args) {
2239
  extract($args);
2240
  $options = get_option('widget_subscribe2widget');
2241
+ $title = empty($options['title']) ? __('Subscribe2', 'subscribe2') : $options['title'];
2242
  echo $before_widget;
2243
  echo $before_title . $title . $after_title;
2244
  echo "<div class=\"search\">";
2274
  if ( !function_exists('register_sidebar_widget') || !class_exists('s2class')) {
2275
  return;
2276
  } else {
2277
+ register_sidebar_widget('Subscribe2', array(&$this, 'widget_subscribe2widget'));
2278
+ register_widget_control('Subscribe2', array(&$this, 'widget_subscribe2widget_control'));
2279
  }
2280
  }
2281
 
2458
  $this->myemail = $user->user_email;
2459
  $this->myname = html_entity_decode($user->display_name);
2460
 
2461
+ $scheds = (array)wp_get_schedules();
2462
  $email_freq = $this->subscribe2_options['email_freq'];
2463
  $display = $scheds[$email_freq]['display'];
2464
  $subject = '[' . stripslashes(get_option('blogname')) . '] ' . $display . ' ' . __('Digest Email', 'subscribe2');
subscribe2.pot CHANGED
@@ -8,7 +8,7 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: PACKAGE VERSION\n"
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2008-09-20 19:02+0100\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -72,15 +72,15 @@ msgstr ""
72
  msgid "Your email:"
73
  msgstr ""
74
 
75
- #: subscribe2.php:85 subscribe2.php:1270 subscribe2.php:1362
76
  msgid "Subscribe"
77
  msgstr ""
78
 
79
- #: subscribe2.php:85 subscribe2.php:1363
80
  msgid "Unsubscribe"
81
  msgstr ""
82
 
83
- #: subscribe2.php:85 subscribe2.php:1887
84
  msgid "Send"
85
  msgstr ""
86
 
@@ -120,7 +120,7 @@ msgstr ""
120
  msgid "Options reset!"
121
  msgstr ""
122
 
123
- #: subscribe2.php:112 subscribe2.php:1273
124
  msgid "Subscribers"
125
  msgstr ""
126
 
@@ -128,7 +128,7 @@ msgstr ""
128
  msgid "Subscribe2 Options"
129
  msgstr ""
130
 
131
- #: subscribe2.php:115 subscribe2.php:2229 subscribe2.php:2298
132
  msgid "Subscribe2"
133
  msgstr ""
134
 
@@ -144,477 +144,477 @@ msgstr ""
144
  msgid "Once Weekly"
145
  msgstr ""
146
 
147
- #: subscribe2.php:728
148
  msgid "New subscriber"
149
  msgstr ""
150
 
151
- #: subscribe2.php:729
152
  msgid "subscribed to email notifications!"
153
  msgstr ""
154
 
155
- #: subscribe2.php:1100
156
  msgid "Address(es) subscribed!"
157
  msgstr ""
158
 
159
- #: subscribe2.php:1106
160
  msgid "Address(es) deleted!"
161
  msgstr ""
162
 
163
- #: subscribe2.php:1112 subscribe2.php:1118
164
  msgid "Status changed!"
165
  msgstr ""
166
 
167
- #: subscribe2.php:1132
168
  msgid "Reminder Email(s) Sent!"
169
  msgstr ""
170
 
171
- #: subscribe2.php:1135
172
  msgid "Registered Users Subscribed!"
173
  msgstr ""
174
 
175
- #: subscribe2.php:1138
176
  msgid "Registered Users Unsubscribed!"
177
  msgstr ""
178
 
179
- #: subscribe2.php:1236
180
  msgid "Previous Page"
181
  msgstr ""
182
 
183
- #: subscribe2.php:1256
184
  msgid "Next Page"
185
  msgstr ""
186
 
187
- #: subscribe2.php:1263
188
  msgid "Subscribe Addresses"
189
  msgstr ""
190
 
191
- #: subscribe2.php:1267
192
  msgid "Enter addresses, one per line or comma-separated"
193
  msgstr ""
194
 
195
- #: subscribe2.php:1275
196
  msgid "Filter"
197
  msgstr ""
198
 
199
- #: subscribe2.php:1279
200
  msgid ""
201
  "Registered on the left, confirmed in the middle, unconfirmed on the right"
202
  msgstr ""
203
 
204
- #: subscribe2.php:1283
205
  msgid "Search Subscribers"
206
  msgstr ""
207
 
208
- #: subscribe2.php:1285
209
  msgid "Save Emails to CSV File"
210
  msgstr ""
211
 
212
- #: subscribe2.php:1288
213
  msgid "Send Reminder Email"
214
  msgstr ""
215
 
216
- #: subscribe2.php:1291 subscribe2.php:1351
217
  msgid "Process"
218
  msgstr ""
219
 
220
- #: subscribe2.php:1303 subscribe2.php:1330
221
  msgid "Confirm this email address"
222
  msgstr ""
223
 
224
- #: subscribe2.php:1305 subscribe2.php:1328
225
  msgid "Unconfirm this email address"
226
  msgstr ""
227
 
228
- #: subscribe2.php:1307 subscribe2.php:1335
229
  msgid "Delete this email address"
230
  msgstr ""
231
 
232
- #: subscribe2.php:1308 subscribe2.php:1946
233
  msgid "Select / Unselect All"
234
  msgstr ""
235
 
236
- #: subscribe2.php:1343
237
  msgid "No matching subscribers found"
238
  msgstr ""
239
 
240
- #: subscribe2.php:1345
241
  msgid "NONE"
242
  msgstr ""
243
 
244
- #: subscribe2.php:1356
245
  msgid "Categories"
246
  msgstr ""
247
 
248
- #: subscribe2.php:1358
249
  msgid ""
250
  "Existing Registered Users can be automatically (un)subscribed to categories "
251
  "using this section."
252
  msgstr ""
253
 
254
- #: subscribe2.php:1359
255
  msgid "Consider User Privacy as changes cannot be undone"
256
  msgstr ""
257
 
258
- #: subscribe2.php:1361
259
  msgid "Action to perform"
260
  msgstr ""
261
 
262
- #: subscribe2.php:1366 subscribe2.php:1670
263
  msgid "Submit"
264
  msgstr ""
265
 
266
- #: subscribe2.php:1475
267
  msgid "Delivery Options"
268
  msgstr ""
269
 
270
- #: subscribe2.php:1480
271
  msgid "Restrict the number of recpients per email to (0 for unlimited)"
272
  msgstr ""
273
 
274
- #: subscribe2.php:1482 subscribe2.php:1490
275
  msgid "Edit"
276
  msgstr ""
277
 
278
- #: subscribe2.php:1485 subscribe2.php:1493
279
  msgid "Update"
280
  msgstr ""
281
 
282
- #: subscribe2.php:1486 subscribe2.php:1494
283
  msgid "Revert"
284
  msgstr ""
285
 
286
- #: subscribe2.php:1488
287
  msgid "Set default Subscribe2 page as ID"
288
  msgstr ""
289
 
290
- #: subscribe2.php:1496
291
  msgid "Send Emails for Pages"
292
  msgstr ""
293
 
294
- #: subscribe2.php:1501 subscribe2.php:1512 subscribe2.php:1523
295
- #: subscribe2.php:1627 subscribe2.php:1654 subscribe2.php:1798
296
- #: subscribe2.php:1818
297
  msgid "Yes"
298
  msgstr ""
299
 
300
- #: subscribe2.php:1506 subscribe2.php:1517 subscribe2.php:1528
301
- #: subscribe2.php:1621 subscribe2.php:1632 subscribe2.php:1659
302
- #: subscribe2.php:1803 subscribe2.php:1822
303
  msgid "No"
304
  msgstr ""
305
 
306
- #: subscribe2.php:1507
307
  msgid "Send Emails for Password Protected Posts"
308
  msgstr ""
309
 
310
- #: subscribe2.php:1518
311
  msgid "Send Emails for Private Posts"
312
  msgstr ""
313
 
314
- #: subscribe2.php:1529
315
  msgid "Send Email From"
316
  msgstr ""
317
 
318
- #: subscribe2.php:1534
319
  msgid "Author of the post"
320
  msgstr ""
321
 
322
- #: subscribe2.php:1539
323
  msgid "Blog Admin"
324
  msgstr ""
325
 
326
- #: subscribe2.php:1541
327
  msgid "Send Email as Digest"
328
  msgstr ""
329
 
330
- #: subscribe2.php:1545
331
  msgid "Email Templates"
332
  msgstr ""
333
 
334
- #: subscribe2.php:1549
335
  msgid "New Post email (must not be empty)"
336
  msgstr ""
337
 
338
- #: subscribe2.php:1553
339
  msgid "Message substitions"
340
  msgstr ""
341
 
342
- #: subscribe2.php:1557
343
  msgid "the post's title<br />(<i>for per-post emails only</i>)"
344
  msgstr ""
345
 
346
- #: subscribe2.php:1558
347
  msgid ""
348
  "the excerpt or the entire post<br />(<i>based on the subscriber's "
349
  "preferences</i>)"
350
  msgstr ""
351
 
352
- #: subscribe2.php:1559
353
  msgid "a list of post titles<br />(<i>for digest emails only</i>)"
354
  msgstr ""
355
 
356
- #: subscribe2.php:1560
357
  msgid "the post's permalink<br />(<i>for per-post emails only</i>)"
358
  msgstr ""
359
 
360
- #: subscribe2.php:1561
361
  msgid "the admin or post author's name"
362
  msgstr ""
363
 
364
- #: subscribe2.php:1562
365
  msgid "the admin or post author's email"
366
  msgstr ""
367
 
368
- #: subscribe2.php:1563
369
  msgid "the post author's name"
370
  msgstr ""
371
 
372
- #: subscribe2.php:1564
373
  msgid ""
374
  "the generated link to confirm a request<br />(<i>only used in the "
375
  "confirmation email template</i>)"
376
  msgstr ""
377
 
378
- #: subscribe2.php:1565
379
  msgid ""
380
  "Action performed by LINK in confirmation email<br />(<i>only used in the "
381
  "confirmation email template</i>)"
382
  msgstr ""
383
 
384
- #: subscribe2.php:1567
385
  msgid "Subscribe / Unsubscribe confirmation email"
386
  msgstr ""
387
 
388
- #: subscribe2.php:1570
389
  msgid "Reminder email to Unconfirmed Subscribers"
390
  msgstr ""
391
 
392
- #: subscribe2.php:1575
393
  msgid "Excluded Categories"
394
  msgstr ""
395
 
396
- #: subscribe2.php:1577
397
  msgid ""
398
  "Posts assigned to any Excluded Category do not generate notifications and "
399
  "are not included in digest notifications"
400
  msgstr ""
401
 
402
- #: subscribe2.php:1584
403
  msgid "Allow registered users to subscribe to excluded categories?"
404
  msgstr ""
405
 
406
- #: subscribe2.php:1587
407
  msgid "Writing Options"
408
  msgstr ""
409
 
410
- #: subscribe2.php:1593
411
  msgid "Show the Subscribe2 button on the Write toolbar?"
412
  msgstr ""
413
 
414
- #: subscribe2.php:1600
415
  msgid "Enable Subscribe2 Widget?"
416
  msgstr ""
417
 
418
- #: subscribe2.php:1604
419
  msgid "Auto Subscribe"
420
  msgstr ""
421
 
422
- #: subscribe2.php:1606
423
  msgid "Subscribe new users registering with your blog"
424
  msgstr ""
425
 
426
- #: subscribe2.php:1611
427
  msgid "Automatically"
428
  msgstr ""
429
 
430
- #: subscribe2.php:1616
431
  msgid "Display option on Registration Form"
432
  msgstr ""
433
 
434
- #: subscribe2.php:1622
435
  msgid "Registration Form option is checked by default"
436
  msgstr ""
437
 
438
- #: subscribe2.php:1633
439
  msgid "Auto-subscribe users to receive email as"
440
  msgstr ""
441
 
442
- #: subscribe2.php:1638 subscribe2.php:1776
443
  msgid "HTML"
444
  msgstr ""
445
 
446
- #: subscribe2.php:1643
447
  msgid "Plain Text - Full"
448
  msgstr ""
449
 
450
- #: subscribe2.php:1648
451
  msgid "Plain Text - Excerpt"
452
  msgstr ""
453
 
454
- #: subscribe2.php:1649
455
  msgid "Auto Subscribe me to new categories is checked by default"
456
  msgstr ""
457
 
458
- #: subscribe2.php:1663
459
  msgid "Barred Domains"
460
  msgstr ""
461
 
462
- #: subscribe2.php:1665
463
  msgid ""
464
  "Enter domains to bar from public subscriptions: <br /> (Use a new line for "
465
  "each entry and omit the \"@\" symbol, for example email.com)"
466
  msgstr ""
467
 
468
- #: subscribe2.php:1673
469
  msgid "Reset Default"
470
  msgstr ""
471
 
472
- #: subscribe2.php:1674
473
  msgid ""
474
  "Use this to reset all options to their defaults. This <strong><em>will not</"
475
  "em></strong> modify your list of subscribers."
476
  msgstr ""
477
 
478
- #: subscribe2.php:1676
479
  msgid "RESET"
480
  msgstr ""
481
 
482
- #: subscribe2.php:1702
483
  msgid "Subscription preferences updated."
484
  msgstr ""
485
 
486
- #: subscribe2.php:1763
487
  msgid "Notification Settings"
488
  msgstr ""
489
 
490
- #: subscribe2.php:1771
491
  msgid "Receive email as"
492
  msgstr ""
493
 
494
- #: subscribe2.php:1781
495
  msgid "Plain Text"
496
  msgstr ""
497
 
498
- #: subscribe2.php:1783
499
  msgid "Email contains"
500
  msgstr ""
501
 
502
- #: subscribe2.php:1784
503
  msgid "Excerpt Only"
504
  msgstr ""
505
 
506
- #: subscribe2.php:1784
507
  msgid "Full Post"
508
  msgstr ""
509
 
510
- #: subscribe2.php:1792
511
  msgid "Note: HTML format will always deliver the full post"
512
  msgstr ""
513
 
514
- #: subscribe2.php:1793
515
  msgid "Automatically subscribe me to newly created categories"
516
  msgstr ""
517
 
518
- #: subscribe2.php:1807
519
  msgid "Subscribed Categories"
520
  msgstr ""
521
 
522
- #: subscribe2.php:1812
523
  msgid "Receive daily summary of new posts?"
524
  msgstr ""
525
 
526
- #: subscribe2.php:1828
527
  msgid "Update Preferences"
528
  msgstr ""
529
 
530
- #: subscribe2.php:1874
531
  msgid "Send email to all subscribers"
532
  msgstr ""
533
 
534
- #: subscribe2.php:1880
535
  msgid "Subject"
536
  msgstr ""
537
 
538
- #: subscribe2.php:1880
539
  msgid "A message from "
540
  msgstr ""
541
 
542
- #: subscribe2.php:1883
543
  msgid "Recipients: "
544
  msgstr ""
545
 
546
- #: subscribe2.php:1964
547
  msgid "All Subscribers"
548
  msgstr ""
549
 
550
- #: subscribe2.php:1965
551
  msgid "Public Subscribers"
552
  msgstr ""
553
 
554
- #: subscribe2.php:1966
555
  msgid "Confirmed"
556
  msgstr ""
557
 
558
- #: subscribe2.php:1967
559
  msgid "Unconfirmed"
560
  msgstr ""
561
 
562
- #: subscribe2.php:1968
563
  msgid "Registered Users"
564
  msgstr ""
565
 
566
- #: subscribe2.php:2032
567
  msgid "Per Post Email"
568
  msgstr ""
569
 
570
- #: subscribe2.php:2047
571
  msgid "Send Digest Notification at"
572
  msgstr ""
573
 
574
- #: subscribe2.php:2059
575
  msgid ""
576
  "This option will work for digest notification sent daily or less frequently"
577
  msgstr ""
578
 
579
- #: subscribe2.php:2062
580
  msgid "Current UTC time is"
581
  msgstr ""
582
 
583
- #: subscribe2.php:2064
584
  msgid "Current blog time is"
585
  msgstr ""
586
 
587
- #: subscribe2.php:2066
588
  msgid "Next email notification will be sent when your blog time is after"
589
  msgstr ""
590
 
591
- #: subscribe2.php:2079
592
  msgid "Check here to Subscribe to email notifications for new posts"
593
  msgstr ""
594
 
595
- #: subscribe2.php:2088
596
  msgid ""
597
- "By Registering with this blog you are also agreeing to recieve email "
598
  "notifications for new posts but you can unsubscribe at anytime"
599
  msgstr ""
600
 
601
- #: subscribe2.php:2215
602
  msgid "Subscription Confirmation"
603
  msgstr ""
604
 
605
- #: subscribe2.php:2252
606
  msgid "Title:"
607
  msgstr ""
608
 
609
- #: subscribe2.php:2272
610
  msgid "Settings"
611
  msgstr ""
612
 
613
- #: subscribe2.php:2410
614
  msgid "Posted on"
615
  msgstr ""
616
 
617
- #: subscribe2.php:2452
618
  msgid "Digest Email"
619
  msgstr ""
620
 
8
  msgstr ""
9
  "Project-Id-Version: PACKAGE VERSION\n"
10
  "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2008-10-23 19:47+0100\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
72
  msgid "Your email:"
73
  msgstr ""
74
 
75
+ #: subscribe2.php:85 subscribe2.php:1273 subscribe2.php:1365
76
  msgid "Subscribe"
77
  msgstr ""
78
 
79
+ #: subscribe2.php:85 subscribe2.php:1366
80
  msgid "Unsubscribe"
81
  msgstr ""
82
 
83
+ #: subscribe2.php:85 subscribe2.php:1899
84
  msgid "Send"
85
  msgstr ""
86
 
120
  msgid "Options reset!"
121
  msgstr ""
122
 
123
+ #: subscribe2.php:112 subscribe2.php:1276
124
  msgid "Subscribers"
125
  msgstr ""
126
 
128
  msgid "Subscribe2 Options"
129
  msgstr ""
130
 
131
+ #: subscribe2.php:115 subscribe2.php:2241 subscribe2.php:2310
132
  msgid "Subscribe2"
133
  msgstr ""
134
 
144
  msgid "Once Weekly"
145
  msgstr ""
146
 
147
+ #: subscribe2.php:726
148
  msgid "New subscriber"
149
  msgstr ""
150
 
151
+ #: subscribe2.php:727
152
  msgid "subscribed to email notifications!"
153
  msgstr ""
154
 
155
+ #: subscribe2.php:1103
156
  msgid "Address(es) subscribed!"
157
  msgstr ""
158
 
159
+ #: subscribe2.php:1109
160
  msgid "Address(es) deleted!"
161
  msgstr ""
162
 
163
+ #: subscribe2.php:1115 subscribe2.php:1121
164
  msgid "Status changed!"
165
  msgstr ""
166
 
167
+ #: subscribe2.php:1135
168
  msgid "Reminder Email(s) Sent!"
169
  msgstr ""
170
 
171
+ #: subscribe2.php:1138
172
  msgid "Registered Users Subscribed!"
173
  msgstr ""
174
 
175
+ #: subscribe2.php:1141
176
  msgid "Registered Users Unsubscribed!"
177
  msgstr ""
178
 
179
+ #: subscribe2.php:1239
180
  msgid "Previous Page"
181
  msgstr ""
182
 
183
+ #: subscribe2.php:1259
184
  msgid "Next Page"
185
  msgstr ""
186
 
187
+ #: subscribe2.php:1266
188
  msgid "Subscribe Addresses"
189
  msgstr ""
190
 
191
+ #: subscribe2.php:1270
192
  msgid "Enter addresses, one per line or comma-separated"
193
  msgstr ""
194
 
195
+ #: subscribe2.php:1278
196
  msgid "Filter"
197
  msgstr ""
198
 
199
+ #: subscribe2.php:1282
200
  msgid ""
201
  "Registered on the left, confirmed in the middle, unconfirmed on the right"
202
  msgstr ""
203
 
204
+ #: subscribe2.php:1286
205
  msgid "Search Subscribers"
206
  msgstr ""
207
 
208
+ #: subscribe2.php:1288
209
  msgid "Save Emails to CSV File"
210
  msgstr ""
211
 
212
+ #: subscribe2.php:1291
213
  msgid "Send Reminder Email"
214
  msgstr ""
215
 
216
+ #: subscribe2.php:1294 subscribe2.php:1354
217
  msgid "Process"
218
  msgstr ""
219
 
220
+ #: subscribe2.php:1306 subscribe2.php:1333
221
  msgid "Confirm this email address"
222
  msgstr ""
223
 
224
+ #: subscribe2.php:1308 subscribe2.php:1331
225
  msgid "Unconfirm this email address"
226
  msgstr ""
227
 
228
+ #: subscribe2.php:1310 subscribe2.php:1338
229
  msgid "Delete this email address"
230
  msgstr ""
231
 
232
+ #: subscribe2.php:1311 subscribe2.php:1958
233
  msgid "Select / Unselect All"
234
  msgstr ""
235
 
236
+ #: subscribe2.php:1346
237
  msgid "No matching subscribers found"
238
  msgstr ""
239
 
240
+ #: subscribe2.php:1348
241
  msgid "NONE"
242
  msgstr ""
243
 
244
+ #: subscribe2.php:1359
245
  msgid "Categories"
246
  msgstr ""
247
 
248
+ #: subscribe2.php:1361
249
  msgid ""
250
  "Existing Registered Users can be automatically (un)subscribed to categories "
251
  "using this section."
252
  msgstr ""
253
 
254
+ #: subscribe2.php:1362
255
  msgid "Consider User Privacy as changes cannot be undone"
256
  msgstr ""
257
 
258
+ #: subscribe2.php:1364
259
  msgid "Action to perform"
260
  msgstr ""
261
 
262
+ #: subscribe2.php:1369 subscribe2.php:1673
263
  msgid "Submit"
264
  msgstr ""
265
 
266
+ #: subscribe2.php:1478
267
  msgid "Delivery Options"
268
  msgstr ""
269
 
270
+ #: subscribe2.php:1483
271
  msgid "Restrict the number of recpients per email to (0 for unlimited)"
272
  msgstr ""
273
 
274
+ #: subscribe2.php:1485 subscribe2.php:1493
275
  msgid "Edit"
276
  msgstr ""
277
 
278
+ #: subscribe2.php:1488 subscribe2.php:1496
279
  msgid "Update"
280
  msgstr ""
281
 
282
+ #: subscribe2.php:1489 subscribe2.php:1497
283
  msgid "Revert"
284
  msgstr ""
285
 
286
+ #: subscribe2.php:1491
287
  msgid "Set default Subscribe2 page as ID"
288
  msgstr ""
289
 
290
+ #: subscribe2.php:1499
291
  msgid "Send Emails for Pages"
292
  msgstr ""
293
 
294
+ #: subscribe2.php:1504 subscribe2.php:1515 subscribe2.php:1526
295
+ #: subscribe2.php:1630 subscribe2.php:1657 subscribe2.php:1810
296
+ #: subscribe2.php:1830
297
  msgid "Yes"
298
  msgstr ""
299
 
300
+ #: subscribe2.php:1509 subscribe2.php:1520 subscribe2.php:1531
301
+ #: subscribe2.php:1624 subscribe2.php:1635 subscribe2.php:1662
302
+ #: subscribe2.php:1815 subscribe2.php:1834
303
  msgid "No"
304
  msgstr ""
305
 
306
+ #: subscribe2.php:1510
307
  msgid "Send Emails for Password Protected Posts"
308
  msgstr ""
309
 
310
+ #: subscribe2.php:1521
311
  msgid "Send Emails for Private Posts"
312
  msgstr ""
313
 
314
+ #: subscribe2.php:1532
315
  msgid "Send Email From"
316
  msgstr ""
317
 
318
+ #: subscribe2.php:1537
319
  msgid "Author of the post"
320
  msgstr ""
321
 
322
+ #: subscribe2.php:1542
323
  msgid "Blog Admin"
324
  msgstr ""
325
 
326
+ #: subscribe2.php:1544
327
  msgid "Send Email as Digest"
328
  msgstr ""
329
 
330
+ #: subscribe2.php:1548
331
  msgid "Email Templates"
332
  msgstr ""
333
 
334
+ #: subscribe2.php:1552
335
  msgid "New Post email (must not be empty)"
336
  msgstr ""
337
 
338
+ #: subscribe2.php:1556
339
  msgid "Message substitions"
340
  msgstr ""
341
 
342
+ #: subscribe2.php:1560
343
  msgid "the post's title<br />(<i>for per-post emails only</i>)"
344
  msgstr ""
345
 
346
+ #: subscribe2.php:1561
347
  msgid ""
348
  "the excerpt or the entire post<br />(<i>based on the subscriber's "
349
  "preferences</i>)"
350
  msgstr ""
351
 
352
+ #: subscribe2.php:1562
353
  msgid "a list of post titles<br />(<i>for digest emails only</i>)"
354
  msgstr ""
355
 
356
+ #: subscribe2.php:1563
357
  msgid "the post's permalink<br />(<i>for per-post emails only</i>)"
358
  msgstr ""
359
 
360
+ #: subscribe2.php:1564
361
  msgid "the admin or post author's name"
362
  msgstr ""
363
 
364
+ #: subscribe2.php:1565
365
  msgid "the admin or post author's email"
366
  msgstr ""
367
 
368
+ #: subscribe2.php:1566
369
  msgid "the post author's name"
370
  msgstr ""
371
 
372
+ #: subscribe2.php:1567
373
  msgid ""
374
  "the generated link to confirm a request<br />(<i>only used in the "
375
  "confirmation email template</i>)"
376
  msgstr ""
377
 
378
+ #: subscribe2.php:1568
379
  msgid ""
380
  "Action performed by LINK in confirmation email<br />(<i>only used in the "
381
  "confirmation email template</i>)"
382
  msgstr ""
383
 
384
+ #: subscribe2.php:1570
385
  msgid "Subscribe / Unsubscribe confirmation email"
386
  msgstr ""
387
 
388
+ #: subscribe2.php:1573
389
  msgid "Reminder email to Unconfirmed Subscribers"
390
  msgstr ""
391
 
392
+ #: subscribe2.php:1578
393
  msgid "Excluded Categories"
394
  msgstr ""
395
 
396
+ #: subscribe2.php:1580
397
  msgid ""
398
  "Posts assigned to any Excluded Category do not generate notifications and "
399
  "are not included in digest notifications"
400
  msgstr ""
401
 
402
+ #: subscribe2.php:1587
403
  msgid "Allow registered users to subscribe to excluded categories?"
404
  msgstr ""
405
 
406
+ #: subscribe2.php:1590
407
  msgid "Writing Options"
408
  msgstr ""
409
 
410
+ #: subscribe2.php:1596
411
  msgid "Show the Subscribe2 button on the Write toolbar?"
412
  msgstr ""
413
 
414
+ #: subscribe2.php:1603
415
  msgid "Enable Subscribe2 Widget?"
416
  msgstr ""
417
 
418
+ #: subscribe2.php:1607
419
  msgid "Auto Subscribe"
420
  msgstr ""
421
 
422
+ #: subscribe2.php:1609
423
  msgid "Subscribe new users registering with your blog"
424
  msgstr ""
425
 
426
+ #: subscribe2.php:1614
427
  msgid "Automatically"
428
  msgstr ""
429
 
430
+ #: subscribe2.php:1619
431
  msgid "Display option on Registration Form"
432
  msgstr ""
433
 
434
+ #: subscribe2.php:1625
435
  msgid "Registration Form option is checked by default"
436
  msgstr ""
437
 
438
+ #: subscribe2.php:1636
439
  msgid "Auto-subscribe users to receive email as"
440
  msgstr ""
441
 
442
+ #: subscribe2.php:1641 subscribe2.php:1788
443
  msgid "HTML"
444
  msgstr ""
445
 
446
+ #: subscribe2.php:1646
447
  msgid "Plain Text - Full"
448
  msgstr ""
449
 
450
+ #: subscribe2.php:1651
451
  msgid "Plain Text - Excerpt"
452
  msgstr ""
453
 
454
+ #: subscribe2.php:1652
455
  msgid "Auto Subscribe me to new categories is checked by default"
456
  msgstr ""
457
 
458
+ #: subscribe2.php:1666
459
  msgid "Barred Domains"
460
  msgstr ""
461
 
462
+ #: subscribe2.php:1668
463
  msgid ""
464
  "Enter domains to bar from public subscriptions: <br /> (Use a new line for "
465
  "each entry and omit the \"@\" symbol, for example email.com)"
466
  msgstr ""
467
 
468
+ #: subscribe2.php:1676
469
  msgid "Reset Default"
470
  msgstr ""
471
 
472
+ #: subscribe2.php:1677
473
  msgid ""
474
  "Use this to reset all options to their defaults. This <strong><em>will not</"
475
  "em></strong> modify your list of subscribers."
476
  msgstr ""
477
 
478
+ #: subscribe2.php:1679
479
  msgid "RESET"
480
  msgstr ""
481
 
482
+ #: subscribe2.php:1705
483
  msgid "Subscription preferences updated."
484
  msgstr ""
485
 
486
+ #: subscribe2.php:1775
487
  msgid "Notification Settings"
488
  msgstr ""
489
 
490
+ #: subscribe2.php:1783
491
  msgid "Receive email as"
492
  msgstr ""
493
 
494
+ #: subscribe2.php:1793
495
  msgid "Plain Text"
496
  msgstr ""
497
 
498
+ #: subscribe2.php:1795
499
  msgid "Email contains"
500
  msgstr ""
501
 
502
+ #: subscribe2.php:1796
503
  msgid "Excerpt Only"
504
  msgstr ""
505
 
506
+ #: subscribe2.php:1796
507
  msgid "Full Post"
508
  msgstr ""
509
 
510
+ #: subscribe2.php:1804
511
  msgid "Note: HTML format will always deliver the full post"
512
  msgstr ""
513
 
514
+ #: subscribe2.php:1805
515
  msgid "Automatically subscribe me to newly created categories"
516
  msgstr ""
517
 
518
+ #: subscribe2.php:1819
519
  msgid "Subscribed Categories"
520
  msgstr ""
521
 
522
+ #: subscribe2.php:1824
523
  msgid "Receive daily summary of new posts?"
524
  msgstr ""
525
 
526
+ #: subscribe2.php:1840
527
  msgid "Update Preferences"
528
  msgstr ""
529
 
530
+ #: subscribe2.php:1886
531
  msgid "Send email to all subscribers"
532
  msgstr ""
533
 
534
+ #: subscribe2.php:1892
535
  msgid "Subject"
536
  msgstr ""
537
 
538
+ #: subscribe2.php:1892
539
  msgid "A message from "
540
  msgstr ""
541
 
542
+ #: subscribe2.php:1895
543
  msgid "Recipients: "
544
  msgstr ""
545
 
546
+ #: subscribe2.php:1976
547
  msgid "All Subscribers"
548
  msgstr ""
549
 
550
+ #: subscribe2.php:1977
551
  msgid "Public Subscribers"
552
  msgstr ""
553
 
554
+ #: subscribe2.php:1978
555
  msgid "Confirmed"
556
  msgstr ""
557
 
558
+ #: subscribe2.php:1979
559
  msgid "Unconfirmed"
560
  msgstr ""
561
 
562
+ #: subscribe2.php:1980
563
  msgid "Registered Users"
564
  msgstr ""
565
 
566
+ #: subscribe2.php:2044
567
  msgid "Per Post Email"
568
  msgstr ""
569
 
570
+ #: subscribe2.php:2059
571
  msgid "Send Digest Notification at"
572
  msgstr ""
573
 
574
+ #: subscribe2.php:2071
575
  msgid ""
576
  "This option will work for digest notification sent daily or less frequently"
577
  msgstr ""
578
 
579
+ #: subscribe2.php:2074
580
  msgid "Current UTC time is"
581
  msgstr ""
582
 
583
+ #: subscribe2.php:2076
584
  msgid "Current blog time is"
585
  msgstr ""
586
 
587
+ #: subscribe2.php:2078
588
  msgid "Next email notification will be sent when your blog time is after"
589
  msgstr ""
590
 
591
+ #: subscribe2.php:2091
592
  msgid "Check here to Subscribe to email notifications for new posts"
593
  msgstr ""
594
 
595
+ #: subscribe2.php:2100
596
  msgid ""
597
+ "By registering with this blog you are also agreeing to receive email "
598
  "notifications for new posts but you can unsubscribe at anytime"
599
  msgstr ""
600
 
601
+ #: subscribe2.php:2227
602
  msgid "Subscription Confirmation"
603
  msgstr ""
604
 
605
+ #: subscribe2.php:2264
606
  msgid "Title:"
607
  msgstr ""
608
 
609
+ #: subscribe2.php:2284
610
  msgid "Settings"
611
  msgstr ""
612
 
613
+ #: subscribe2.php:2422
614
  msgid "Posted on"
615
  msgstr ""
616
 
617
+ #: subscribe2.php:2464
618
  msgid "Digest Email"
619
  msgstr ""
620
 
subscribe2debug.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Subscribe2 Debug
4
  Plugin URI: http://subscribe2.wordpress.com
5
  Description: Produces Debug Information for the Subscribe2 plugin.
6
- Version: 4.10
7
  Author: Matthew Robinson
8
  Author URI: http://subscribe2.wordpress.com
9
  */
3
  Plugin Name: Subscribe2 Debug
4
  Plugin URI: http://subscribe2.wordpress.com
5
  Description: Produces Debug Information for the Subscribe2 plugin.
6
+ Version: 4.11
7
  Author: Matthew Robinson
8
  Author URI: http://subscribe2.wordpress.com
9
  */
subscribe2uninstaller.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Subscribe2 Uninstaller
4
  Plugin URI: http://subscribe2.wordpress.com
5
  Description: Uninstalls the Subscribe2 plugin from Manage->S2 Uninstaller.
6
- Version: 4.10
7
  Author: Matthew Robinson
8
  Author URI: http://subscribe2.wordpress.com
9
  */
3
  Plugin Name: Subscribe2 Uninstaller
4
  Plugin URI: http://subscribe2.wordpress.com
5
  Description: Uninstalls the Subscribe2 plugin from Manage->S2 Uninstaller.
6
+ Version: 4.11
7
  Author: Matthew Robinson
8
  Author URI: http://subscribe2.wordpress.com
9
  */