Version Description
Download this release
Release Info
Developer | MattyRob |
Plugin | Subscribe2 |
Version | 5.5 |
Comparing to | |
See all releases |
Code changes from version 5.4 to 5.5
- ReadMe.txt +23 -5
- counterwidget.php +1 -1
- subscribe2.php +42 -28
- subscribe2.pot +174 -174
ReadMe.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: MattyRob, Skippy, RavanH
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2387904
|
4 |
Tags: posts, subscription, email, subscribe, notify, notification
|
5 |
Requires at least: 2.0.x
|
6 |
-
Tested up to: 2.9.
|
7 |
-
Stable tag: 5.
|
8 |
|
9 |
Sends a list of subscribers an email notification when new posts are published to your blog
|
10 |
|
@@ -66,6 +66,10 @@ Reminder: because subscribe2 places all recipients in BCC fields, and places the
|
|
66 |
|
67 |
Batches will occur for each group of message as described above. A site on Dreamhost with many public and registered subscribers could conceivably generate a lot of email for your own inbox.
|
68 |
|
|
|
|
|
|
|
|
|
69 |
= My host has a limit of X emails per hour / day, can I limit the way Subscribe2 sends emails? =
|
70 |
|
71 |
This is the second most common question I get asked (the first being about emails not being sent which quote often ends up here anyway!). This is more commonly called 'throttling' or 'choking'. PHP is a scripting language and while it is technically possible to throttle emails using script it is not very efficient. It is much better in terms of speed and server overhead (CPU cycles and RAM) to throttle using a server side application.
|
@@ -95,7 +99,7 @@ Public subscribers have provided their email address for email notification of y
|
|
95 |
|
96 |
Registered Users have registered with your WorPress blog (provided you have enabled this in the core WordPress settings). Registered users of the blog can elect to receive email notifications for specific categories (unless Digest email are select, then it is an opt in or out decision). The Users->Subscription menu item will also allow them greater control to select the delivery format (plaintext or HTML), amount of message (excerpt or full post), and the categories to which they want to subscribe. You, the blog owner, have the option (Options->Subscribe2) to allow registered users to subscribe to your excluded categories or not.
|
97 |
|
98 |
-
**Note** You can
|
99 |
|
100 |
= Can I put the form elsewhere? (header, footer, sidebar without the widget) =
|
101 |
|
@@ -109,16 +113,23 @@ Get them to register with your blog rather than using the Subscribe2 form. Addit
|
|
109 |
|
110 |
If, for some reason the Subscribe2 button does not appear in your browser window try refreshing your browser and cache (Shift and Reload in Firefox). If this still fails then insert the token manually. In the Rich Text Editor (TinyMCE) make sure you switch to the "code" view and type in <!--subscribe2-->.
|
111 |
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
= Can I suggest you add X as a feature =
|
113 |
|
114 |
I'm open to suggestions but since the software is written by me for use on my site and then shared for free because others may find it useful as it comes don't expect your suggestion to be implemented unless I'll find it useful.
|
115 |
|
116 |
= I'd like to be able to send my subscribers notifications in HTML =
|
117 |
|
118 |
-
By default Public Subscribers get plain text emails and only Registered Subscribers can opt to receive email in HTML format. If you really want HTML for all you need to pay for the
|
119 |
|
120 |
= Which version should I be using, I'm on WordPress x.x.x? =
|
121 |
-
|
|
|
122 |
|
123 |
WordPress 2.1.x and 2.2.x require Subscribe2 from the 3.x stable. The most recent version is [3.8](http://downloads.wordpress.org/plugin/subscribe2.3.8.zip).
|
124 |
|
@@ -138,6 +149,13 @@ Secondly, make sure that the token (<!--subscribe2-->) is correctly entered in y
|
|
138 |
|
139 |
== Changelog ==
|
140 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
= Version 5.4 by Matthew Robinson =
|
142 |
|
143 |
* Fixed a bug introduced in 5.3 that produced in malformed email headers resulting in failed emails
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2387904
|
4 |
Tags: posts, subscription, email, subscribe, notify, notification
|
5 |
Requires at least: 2.0.x
|
6 |
+
Tested up to: 2.9.2
|
7 |
+
Stable tag: 5.5
|
8 |
|
9 |
Sends a list of subscribers an email notification when new posts are published to your blog
|
10 |
|
66 |
|
67 |
Batches will occur for each group of message as described above. A site on Dreamhost with many public and registered subscribers could conceivably generate a lot of email for your own inbox.
|
68 |
|
69 |
+
= When I click on Send Preview in Settings->Susbcribe2 I get 4 emails, why =
|
70 |
+
|
71 |
+
Subscribe2 supports 4 potential email formats for Susbcribers so you will get a preview for each of the different possibilities.
|
72 |
+
|
73 |
= My host has a limit of X emails per hour / day, can I limit the way Subscribe2 sends emails? =
|
74 |
|
75 |
This is the second most common question I get asked (the first being about emails not being sent which quote often ends up here anyway!). This is more commonly called 'throttling' or 'choking'. PHP is a scripting language and while it is technically possible to throttle emails using script it is not very efficient. It is much better in terms of speed and server overhead (CPU cycles and RAM) to throttle using a server side application.
|
99 |
|
100 |
Registered Users have registered with your WorPress blog (provided you have enabled this in the core WordPress settings). Registered users of the blog can elect to receive email notifications for specific categories (unless Digest email are select, then it is an opt in or out decision). The Users->Subscription menu item will also allow them greater control to select the delivery format (plaintext or HTML), amount of message (excerpt or full post), and the categories to which they want to subscribe. You, the blog owner, have the option (Options->Subscribe2) to allow registered users to subscribe to your excluded categories or not.
|
101 |
|
102 |
+
**Note** You can send HTML emails to Public Subscribers with the paid [Subscribe2 HTML version](http://wpplugins.com/plugin/46/subscribe2-html) of the plugin.
|
103 |
|
104 |
= Can I put the form elsewhere? (header, footer, sidebar without the widget) =
|
105 |
|
113 |
|
114 |
If, for some reason the Subscribe2 button does not appear in your browser window try refreshing your browser and cache (Shift and Reload in Firefox). If this still fails then insert the token manually. In the Rich Text Editor (TinyMCE) make sure you switch to the "code" view and type in <!--subscribe2-->.
|
115 |
|
116 |
+
= My digest email didn't send, how can I resend it? =
|
117 |
+
|
118 |
+
In order to force sending you'd need to change the date of publication on the posts from last week or amend the date stamp in the database regarding when the posts should be included from.
|
119 |
+
|
120 |
+
If you opt for the latter way look in the options table for the subscribe2_options settings (it's an array) and you'll need to change the 'last_s2cron' value to a timestamp for last week. Then force the cron event to run again with [WP-Crontrol](http://wordpress.org/extend/plugins/wp-crontrol/).
|
121 |
+
|
122 |
= Can I suggest you add X as a feature =
|
123 |
|
124 |
I'm open to suggestions but since the software is written by me for use on my site and then shared for free because others may find it useful as it comes don't expect your suggestion to be implemented unless I'll find it useful.
|
125 |
|
126 |
= I'd like to be able to send my subscribers notifications in HTML =
|
127 |
|
128 |
+
By default Public Subscribers get plain text emails and only Registered Subscribers can opt to receive email in HTML format. If you really want HTML for all you need to pay for the [Subscribe2 HTML version](http://wpplugins.com/plugin/46/subscribe2-html).
|
129 |
|
130 |
= Which version should I be using, I'm on WordPress x.x.x? =
|
131 |
+
|
132 |
+
WordPress 2.3 and up require Subscribe2 from the 4.x or 5.x stable branch. The most recent version is hosted via [Wordpress.org](http://wordpress.org/extend/plugins/subscribe2/).
|
133 |
|
134 |
WordPress 2.1.x and 2.2.x require Subscribe2 from the 3.x stable. The most recent version is [3.8](http://downloads.wordpress.org/plugin/subscribe2.3.8.zip).
|
135 |
|
149 |
|
150 |
== Changelog ==
|
151 |
|
152 |
+
= Version 5.5 by Matthew Robinson =
|
153 |
+
|
154 |
+
* Made the email header function pluggable to allow custom changes that persist through versions
|
155 |
+
* Fix for failed upgrades
|
156 |
+
* Ensure HTML entities in blogname are decoded for emails
|
157 |
+
* Add safety checking for options at install to protect against randomly resetting options
|
158 |
+
|
159 |
= Version 5.4 by Matthew Robinson =
|
160 |
|
161 |
* Fixed a bug introduced in 5.3 that produced in malformed email headers resulting in failed emails
|
counterwidget.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Subscribe2 Counter Widget
|
4 |
Plugin URI: http://subscribe2.wordpress.com
|
5 |
Description: Adds a sidebar widget to easily customize and display your Subscribe2 subscribers stats.
|
6 |
-
Version: 5.
|
7 |
Author: Matthew Robinson
|
8 |
Author URI: http://subscribe2.wordpress.com
|
9 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2387904
|
3 |
Plugin Name: Subscribe2 Counter Widget
|
4 |
Plugin URI: http://subscribe2.wordpress.com
|
5 |
Description: Adds a sidebar widget to easily customize and display your Subscribe2 subscribers stats.
|
6 |
+
Version: 5.5
|
7 |
Author: Matthew Robinson
|
8 |
Author URI: http://subscribe2.wordpress.com
|
9 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2387904
|
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: 5.
|
7 |
Author: Matthew Robinson
|
8 |
Author URI: http://subscribe2.wordpress.com
|
9 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2387904
|
@@ -32,7 +32,7 @@ along with Subscribe2. If not, see <http://www.gnu.org/licenses/>.
|
|
32 |
|
33 |
// our version number. Don't touch this or any line below
|
34 |
// unless you know exacly what you are doing
|
35 |
-
define( 'S2VERSION', '5.
|
36 |
define( 'S2PATH', trailingslashit(dirname(__FILE__)) );
|
37 |
define( 'S2DIR', plugin_basename(dirname(__FILE__)) );
|
38 |
|
@@ -174,7 +174,11 @@ class s2class {
|
|
174 |
|
175 |
// create the table, as needed
|
176 |
maybe_create_table($this->public, $sql);
|
177 |
-
|
|
|
|
|
|
|
|
|
178 |
} // end install()
|
179 |
|
180 |
/**
|
@@ -182,13 +186,13 @@ class s2class {
|
|
182 |
*/
|
183 |
function upgrade() {
|
184 |
global $wpdb, $wp_version, $wpmu_version;
|
185 |
-
// include upgrade-functions for
|
186 |
-
if ( !function_exists('
|
187 |
require_once(ABSPATH . 'wp-admin/install-helper.php');
|
188 |
}
|
189 |
$date = date('Y-m-d');
|
190 |
-
maybe_add_column($this->public, 'date', "ALTER TABLE
|
191 |
-
maybe_add_column($this->public, 'ip', "ALTER TABLE
|
192 |
|
193 |
// let's take the time to check process registered users
|
194 |
// existing public subscribers are subscribed to all categories
|
@@ -210,7 +214,7 @@ class s2class {
|
|
210 |
}
|
211 |
}
|
212 |
$this->subscribe2_options['version'] = S2VERSION;
|
213 |
-
//
|
214 |
require(S2PATH . "include/options.php");
|
215 |
update_option('subscribe2_options', $this->subscribe2_options);
|
216 |
|
@@ -271,7 +275,7 @@ class s2class {
|
|
271 |
if ( '' == $string ) {
|
272 |
return;
|
273 |
}
|
274 |
-
$string = str_replace("BLOGNAME", get_option('blogname'), $string);
|
275 |
$string = str_replace("BLOGLINK", get_bloginfo('url'), $string);
|
276 |
$string = str_replace("TITLE", stripslashes($this->post_title), $string);
|
277 |
$link = "<a href=\"" . $this->permalink . "\">" . $this->permalink . "</a>";
|
@@ -287,7 +291,7 @@ class s2class {
|
|
287 |
}
|
288 |
$string = str_replace("MYNAME", stripslashes($this->myname), $string);
|
289 |
$string = str_replace("EMAIL", $this->myemail, $string);
|
290 |
-
$string = str_replace("AUTHORNAME", $this->authorname, $string);
|
291 |
$string = str_replace("CATS", $this->post_cat_names, $string);
|
292 |
$string = str_replace("TAGS", $this->post_tag_names, $string);
|
293 |
$string = str_replace("COUNT", $this->post_count, $string);
|
@@ -327,7 +331,7 @@ class s2class {
|
|
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 |
// Use the mail queue provided we are not sending a preview
|
332 |
if ( function_exists('wpmq_mail') && !$this->preview_email ) {
|
333 |
@wp_mail($recipient, $subject, $mailtext, $headers, '', 0);
|
@@ -400,18 +404,27 @@ class s2class {
|
|
400 |
$this->myemail = $admin->user_email;
|
401 |
}
|
402 |
|
403 |
-
$
|
404 |
-
$
|
405 |
-
$
|
406 |
-
$
|
407 |
-
$
|
408 |
-
$
|
409 |
if ( $type == 'html' ) {
|
410 |
// To send HTML mail, the Content-Type header must be set
|
411 |
-
$
|
412 |
} else {
|
413 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
414 |
}
|
|
|
|
|
415 |
|
416 |
return $headers;
|
417 |
} // end headers()
|
@@ -492,7 +505,7 @@ class s2class {
|
|
492 |
|
493 |
// we set these class variables so that we can avoid
|
494 |
// passing them in function calls a little later
|
495 |
-
$this->post_title = "<a href=\"" . get_permalink($post->ID) . "\">" . $post->post_title . "</a>";
|
496 |
$this->permalink = get_permalink($post->ID);
|
497 |
|
498 |
$author = get_userdata($post->post_author);
|
@@ -631,7 +644,7 @@ class s2class {
|
|
631 |
// ACTION = 1 to subscribe, 0 to unsubscribe
|
632 |
// HASH = md5 hash of email address
|
633 |
// ID = user's ID in the subscribe2 table
|
634 |
-
//use home instead of siteurl incase index.php is not in core wordpress directory
|
635 |
$link = get_option('home') . "/?s2=";
|
636 |
|
637 |
if ( 'add' == $what ) {
|
@@ -2536,13 +2549,13 @@ class s2class {
|
|
2536 |
if ( in_array($cat->term_id, $selected) ) {
|
2537 |
echo " checked=\"checked\"";
|
2538 |
}
|
2539 |
-
echo " /> <abbr title=\"" . $cat->slug . "\">" .
|
2540 |
} else {
|
2541 |
echo "<label><input class=\"cat_checkall\" type=\"checkbox\" name=\"category[]\" value=\"" . $cat->term_id . "\"";
|
2542 |
if ( in_array($cat->term_id, $selected) ) {
|
2543 |
echo " checked=\"checked\"";
|
2544 |
}
|
2545 |
-
echo " /> <abbr title=\"" . $cat->slug . "\">" .
|
2546 |
}
|
2547 |
$i++;
|
2548 |
}
|
@@ -3231,10 +3244,11 @@ class s2class {
|
|
3231 |
if ( $check ) {
|
3232 |
continue;
|
3233 |
}
|
3234 |
-
|
3235 |
-
$
|
|
|
3236 |
$message_post .= get_permalink($post->ID) . "\r\n";
|
3237 |
-
$message_posttime .= $
|
3238 |
$message_posttime .= __('Posted on', 'subscribe2') . ": " . mysql2date($datetime, $post->post_date) . "\r\n";
|
3239 |
$message_posttime .= get_permalink($post->ID) . "\r\n";
|
3240 |
if ( strstr($mailtext, "CATS")) {
|
@@ -3354,9 +3368,9 @@ class s2class {
|
|
3354 |
|
3355 |
// do we need to install anything?
|
3356 |
$this->public = $table_prefix . "subscribe2";
|
3357 |
-
if ( $wpdb->get_var("SHOW TABLES LIKE '$this->public'") != $this->public ) { $this->install(); }
|
3358 |
//do we need to upgrade anything?
|
3359 |
-
if (
|
3360 |
add_action('shutdown', array(&$this, 'upgrade'));
|
3361 |
}
|
3362 |
|
3 |
Plugin Name: Subscribe2
|
4 |
Plugin URI: http://subscribe2.wordpress.com
|
5 |
Description: Notifies an email list when new entries are posted.
|
6 |
+
Version: 5.5
|
7 |
Author: Matthew Robinson
|
8 |
Author URI: http://subscribe2.wordpress.com
|
9 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2387904
|
32 |
|
33 |
// our version number. Don't touch this or any line below
|
34 |
// unless you know exacly what you are doing
|
35 |
+
define( 'S2VERSION', '5.5' );
|
36 |
define( 'S2PATH', trailingslashit(dirname(__FILE__)) );
|
37 |
define( 'S2DIR', plugin_basename(dirname(__FILE__)) );
|
38 |
|
174 |
|
175 |
// create the table, as needed
|
176 |
maybe_create_table($this->public, $sql);
|
177 |
+
|
178 |
+
// safety check if options exist and if not create them
|
179 |
+
if ( !is_array($this->subscribe2_options) ) {
|
180 |
+
$this->reset();
|
181 |
+
}
|
182 |
} // end install()
|
183 |
|
184 |
/**
|
186 |
*/
|
187 |
function upgrade() {
|
188 |
global $wpdb, $wp_version, $wpmu_version;
|
189 |
+
// include upgrade-functions for maybe_add_column;
|
190 |
+
if ( !function_exists('maybe_add_column') ) {
|
191 |
require_once(ABSPATH . 'wp-admin/install-helper.php');
|
192 |
}
|
193 |
$date = date('Y-m-d');
|
194 |
+
maybe_add_column($this->public, 'date', "ALTER TABLE $this->public ADD date DATE DEFAULT '$date' NOT NULL AFTER active;");
|
195 |
+
maybe_add_column($this->public, 'ip', "ALTER TABLE $this->public ADD ip char(64) DEFAULT 'admin' NOT NULL AFTER date;");
|
196 |
|
197 |
// let's take the time to check process registered users
|
198 |
// existing public subscribers are subscribed to all categories
|
214 |
}
|
215 |
}
|
216 |
$this->subscribe2_options['version'] = S2VERSION;
|
217 |
+
// ensure that the options are in the database
|
218 |
require(S2PATH . "include/options.php");
|
219 |
update_option('subscribe2_options', $this->subscribe2_options);
|
220 |
|
275 |
if ( '' == $string ) {
|
276 |
return;
|
277 |
}
|
278 |
+
$string = str_replace("BLOGNAME", html_entity_decode(get_option('blogname'), ENT_QUOTES), $string);
|
279 |
$string = str_replace("BLOGLINK", get_bloginfo('url'), $string);
|
280 |
$string = str_replace("TITLE", stripslashes($this->post_title), $string);
|
281 |
$link = "<a href=\"" . $this->permalink . "\">" . $this->permalink . "</a>";
|
291 |
}
|
292 |
$string = str_replace("MYNAME", stripslashes($this->myname), $string);
|
293 |
$string = str_replace("EMAIL", $this->myemail, $string);
|
294 |
+
$string = str_replace("AUTHORNAME", stripslashes($this->authorname), $string);
|
295 |
$string = str_replace("CATS", $this->post_cat_names, $string);
|
296 |
$string = str_replace("TAGS", $this->post_tag_names, $string);
|
297 |
$string = str_replace("COUNT", $this->post_count, $string);
|
331 |
foreach ( $recipients as $recipient ) {
|
332 |
$recipient = trim($recipient);
|
333 |
// sanity check -- make sure we have a valid email
|
334 |
+
if ( !is_email($recipient) || empty($recipient) ) { continue; }
|
335 |
// Use the mail queue provided we are not sending a preview
|
336 |
if ( function_exists('wpmq_mail') && !$this->preview_email ) {
|
337 |
@wp_mail($recipient, $subject, $mailtext, $headers, '', 0);
|
404 |
$this->myemail = $admin->user_email;
|
405 |
}
|
406 |
|
407 |
+
$header['From'] = $this->myname . " <" . $this->myemail . ">";
|
408 |
+
$header['Reply-To'] = $this->myname . " <" . $this->myemail . ">";
|
409 |
+
$header['Return-path'] = "<" . $this->myemail . ">";
|
410 |
+
$header['Precedence'] = "list\nList-Id: " . get_option('blogname') . "";
|
411 |
+
$header['MIME-Version'] = "1.0";
|
412 |
+
$header['X-Mailer'] = "PHP" . phpversion() . "";
|
413 |
if ( $type == 'html' ) {
|
414 |
// To send HTML mail, the Content-Type header must be set
|
415 |
+
$header['Content-Type'] = get_bloginfo('html_type') . "; charset=\"". get_bloginfo('charset') . "\"";
|
416 |
} else {
|
417 |
+
$header['Content-Type'] = "text/plain; charset=\"". get_bloginfo('charset') . "\"";
|
418 |
+
}
|
419 |
+
|
420 |
+
// apply header filter to allow on-the-fly amendments
|
421 |
+
$header = apply_filters('s2_email_headers', $header);
|
422 |
+
// collapse the headers using $key as the header name
|
423 |
+
foreach ( $header as $key => $value ) {
|
424 |
+
$headers[$key] = $key . ": " . $value;
|
425 |
}
|
426 |
+
$headers = implode("\n", $headers);
|
427 |
+
$headers .= "\n";
|
428 |
|
429 |
return $headers;
|
430 |
} // end headers()
|
505 |
|
506 |
// we set these class variables so that we can avoid
|
507 |
// passing them in function calls a little later
|
508 |
+
$this->post_title = "<a href=\"" . get_permalink($post->ID) . "\">" . html_entity_decode($post->post_title, ENT_QUOTES) . "</a>";
|
509 |
$this->permalink = get_permalink($post->ID);
|
510 |
|
511 |
$author = get_userdata($post->post_author);
|
644 |
// ACTION = 1 to subscribe, 0 to unsubscribe
|
645 |
// HASH = md5 hash of email address
|
646 |
// ID = user's ID in the subscribe2 table
|
647 |
+
// use home instead of siteurl incase index.php is not in core wordpress directory
|
648 |
$link = get_option('home') . "/?s2=";
|
649 |
|
650 |
if ( 'add' == $what ) {
|
2549 |
if ( in_array($cat->term_id, $selected) ) {
|
2550 |
echo " checked=\"checked\"";
|
2551 |
}
|
2552 |
+
echo " /> <abbr title=\"" . $cat->slug . "\">" . rtrim(get_category_parents($cat->term_id, false, ' » '), ' » ') . "</abbr></label><br />\r\n";
|
2553 |
} else {
|
2554 |
echo "<label><input class=\"cat_checkall\" type=\"checkbox\" name=\"category[]\" value=\"" . $cat->term_id . "\"";
|
2555 |
if ( in_array($cat->term_id, $selected) ) {
|
2556 |
echo " checked=\"checked\"";
|
2557 |
}
|
2558 |
+
echo " /> <abbr title=\"" . $cat->slug . "\">" . rtrim(get_category_parents($cat->term_id, false, ' » '), ' » ') . "</abbr></label><br />\r\n";
|
2559 |
}
|
2560 |
$i++;
|
2561 |
}
|
3244 |
if ( $check ) {
|
3245 |
continue;
|
3246 |
}
|
3247 |
+
$post_title = html_entity_decone($post->post_title, ENT_QUOTES);
|
3248 |
+
('' == $table) ? $table = "* " . $post_title : $table .= "\r\n* " . $post_title;
|
3249 |
+
$message_post .= $post_title . "\r\n";
|
3250 |
$message_post .= get_permalink($post->ID) . "\r\n";
|
3251 |
+
$message_posttime .= $post_title . "\r\n";
|
3252 |
$message_posttime .= __('Posted on', 'subscribe2') . ": " . mysql2date($datetime, $post->post_date) . "\r\n";
|
3253 |
$message_posttime .= get_permalink($post->ID) . "\r\n";
|
3254 |
if ( strstr($mailtext, "CATS")) {
|
3368 |
|
3369 |
// do we need to install anything?
|
3370 |
$this->public = $table_prefix . "subscribe2";
|
3371 |
+
if ( $wpdb->get_var("SHOW TABLES LIKE '{$this->public}'") != $this->public ) { $this->install(); }
|
3372 |
//do we need to upgrade anything?
|
3373 |
+
if ( is_array($this->subscribe2_options) && $this->subscribe2_options['version'] !== S2VERSION ) {
|
3374 |
add_action('shutdown', array(&$this, 'upgrade'));
|
3375 |
}
|
3376 |
|
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: 2010-
|
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"
|
@@ -80,13 +80,13 @@ msgstr ""
|
|
80 |
msgid "Enter email address..."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: subscribe2.php:95 subscribe2.php:
|
84 |
-
#: subscribe2.php:
|
85 |
msgid "Subscribe"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: subscribe2.php:95 subscribe2.php:
|
89 |
-
#: subscribe2.php:
|
90 |
msgid "Unsubscribe"
|
91 |
msgstr ""
|
92 |
|
@@ -126,11 +126,11 @@ msgstr ""
|
|
126 |
msgid "Subscribe2 Options"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: subscribe2.php:121 subscribe2.php:
|
130 |
msgid "Subscribe2"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: subscribe2.php:126 subscribe2.php:
|
134 |
msgid "Subscriptions"
|
135 |
msgstr ""
|
136 |
|
@@ -138,680 +138,680 @@ msgstr ""
|
|
138 |
msgid "Mail Subscribers"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: subscribe2.php:
|
142 |
msgid "New subscription"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: subscribe2.php:
|
146 |
msgid "subscribed to email notifications!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: subscribe2.php:
|
150 |
msgid "New Unsubscription"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: subscribe2.php:
|
154 |
msgid "unsubscribed from email notifications!"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: subscribe2.php:
|
158 |
msgid "Address(es) subscribed!"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: subscribe2.php:
|
162 |
msgid "Address(es) unsubscribed!"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: subscribe2.php:
|
166 |
msgid "Address(es) deleted!"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: subscribe2.php:
|
170 |
msgid "Status changed!"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: subscribe2.php:
|
174 |
msgid "Reminder Email(s) Sent!"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: subscribe2.php:
|
178 |
msgid "Registered Users Subscribed!"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: subscribe2.php:
|
182 |
msgid "Registered Users Unsubscribed!"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: subscribe2.php:
|
186 |
msgid "Format updated for Registered Users!"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: subscribe2.php:
|
190 |
msgid "Previous Page"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: subscribe2.php:
|
194 |
msgid "Next Page"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: subscribe2.php:
|
198 |
msgid "Manage Subscribers"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: subscribe2.php:
|
202 |
msgid "Add/Remove Subscribers"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: subscribe2.php:
|
206 |
msgid "Enter addresses, one per line or comma-separated"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: subscribe2.php:
|
210 |
msgid "Current Subscribers"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: subscribe2.php:
|
214 |
msgid "Filter"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: subscribe2.php:
|
218 |
msgid "Search Subscribers"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: subscribe2.php:
|
222 |
msgid "Send Reminder Email"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: subscribe2.php:
|
226 |
msgid "Save Emails to CSV File"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: subscribe2.php:
|
230 |
msgid "Process"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: subscribe2.php:
|
234 |
msgid "Confirm this email address"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: subscribe2.php:
|
238 |
msgid "Unconfirm this email address"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: subscribe2.php:
|
242 |
msgid "Delete this email address"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: subscribe2.php:
|
246 |
msgid "Select / Unselect All"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: subscribe2.php:
|
250 |
msgid "edit"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: subscribe2.php:
|
254 |
msgid "No matching subscribers found"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: subscribe2.php:
|
258 |
msgid "NONE"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: subscribe2.php:
|
262 |
msgid "Categories"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: subscribe2.php:
|
266 |
msgid ""
|
267 |
"Preferences for all existing Registered Users can be changed using this "
|
268 |
"section."
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: subscribe2.php:
|
272 |
msgid "Consider User Privacy as changes cannot be undone"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: subscribe2.php:
|
276 |
msgid "Action to perform"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: subscribe2.php:
|
280 |
msgid "Bulk Update Categories"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: subscribe2.php:
|
284 |
msgid "Send email as"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: subscribe2.php:
|
288 |
msgid "HTML - Full"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: subscribe2.php:
|
292 |
msgid "HTML - Excerpt"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: subscribe2.php:
|
296 |
msgid "Plain Text - Full"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: subscribe2.php:
|
300 |
msgid "Plain Text - Excerpt"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: subscribe2.php:
|
304 |
msgid "Bulk Update Format"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: subscribe2.php:
|
308 |
msgid "Preview message(s) sent to logged in user"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: subscribe2.php:
|
312 |
msgid "Subscribe2 Settings"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: subscribe2.php:
|
316 |
msgid "Plugin Blog"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: subscribe2.php:
|
320 |
msgid "Support Forum"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: subscribe2.php:
|
324 |
msgid "Make a donation via PayPal"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: subscribe2.php:
|
328 |
msgid "Notification Settings"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: subscribe2.php:
|
332 |
msgid "Restrict the number of recipients per email to (0 for unlimited)"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: subscribe2.php:
|
336 |
msgid "Edit"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: subscribe2.php:
|
340 |
msgid "Update"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: subscribe2.php:
|
344 |
msgid "Revert"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: subscribe2.php:
|
348 |
msgid "Send Admins notifications for new"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: subscribe2.php:
|
352 |
msgid "Unsubscriptions"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: subscribe2.php:
|
356 |
msgid "Both"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: subscribe2.php:
|
360 |
msgid "Neither"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: subscribe2.php:
|
364 |
msgid "Include theme CSS stylesheet in HTML notifications"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: subscribe2.php:
|
368 |
-
#: subscribe2.php:
|
369 |
-
#: subscribe2.php:
|
370 |
-
#: subscribe2.php:
|
371 |
msgid "Yes"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: subscribe2.php:
|
375 |
-
#: subscribe2.php:
|
376 |
-
#: subscribe2.php:
|
377 |
-
#: subscribe2.php:
|
378 |
msgid "No"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: subscribe2.php:
|
382 |
msgid "Send Emails for Pages"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: subscribe2.php:
|
386 |
msgid "Send Emails for Password Protected Posts"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: subscribe2.php:
|
390 |
msgid "Send Emails for Private Posts"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: subscribe2.php:
|
394 |
msgid "Send Email From"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: subscribe2.php:
|
398 |
msgid "Send Emails"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: subscribe2.php:
|
402 |
msgid "For digest notifications, date order for posts is"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: subscribe2.php:
|
406 |
msgid "Descending"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: subscribe2.php:
|
410 |
msgid "Ascending"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: subscribe2.php:
|
414 |
msgid "Email Templates"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: subscribe2.php:
|
418 |
msgid "New Post email (must not be empty)"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: subscribe2.php:
|
422 |
msgid "Subject Line"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: subscribe2.php:
|
426 |
msgid "Send Email Preview"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: subscribe2.php:
|
430 |
msgid "Message substitions"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: subscribe2.php:
|
434 |
msgid "the post's title<br />(<i>for per-post emails only</i>)"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: subscribe2.php:
|
438 |
msgid ""
|
439 |
"the excerpt or the entire post<br />(<i>based on the subscriber's "
|
440 |
"preferences</i>)"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: subscribe2.php:
|
444 |
msgid ""
|
445 |
"the excerpt of the post and the time it was posted<br />(<i>for digest "
|
446 |
"emails only</i>)"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: subscribe2.php:
|
450 |
msgid "a list of post titles<br />(<i>for digest emails only</i>)"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: subscribe2.php:
|
454 |
msgid "the post's permalink<br />(<i>for per-post emails only</i>)"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: subscribe2.php:
|
458 |
msgid ""
|
459 |
"the post's permalink after conversion by TinyURL<br />(<i>for per-post "
|
460 |
"emails only</i>)"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: subscribe2.php:
|
464 |
msgid "the admin or post author's name"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: subscribe2.php:
|
468 |
msgid "the admin or post author's email"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: subscribe2.php:
|
472 |
msgid "the post author's name"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: subscribe2.php:
|
476 |
msgid ""
|
477 |
"the generated link to confirm a request<br />(<i>only used in the "
|
478 |
"confirmation email template</i>)"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: subscribe2.php:
|
482 |
msgid ""
|
483 |
"Action performed by LINK in confirmation email<br />(<i>only used in the "
|
484 |
"confirmation email template</i>)"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: subscribe2.php:
|
488 |
msgid "the post's assigned categories"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: subscribe2.php:
|
492 |
msgid "the post's assigned Tags"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: subscribe2.php:
|
496 |
msgid ""
|
497 |
"the number of posts included in the digest email<br />(<i>for digest emails "
|
498 |
"only</i>)"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: subscribe2.php:
|
502 |
msgid "Subscribe / Unsubscribe confirmation email"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: subscribe2.php:
|
506 |
msgid "Reminder email to Unconfirmed Subscribers"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: subscribe2.php:
|
510 |
msgid "Excluded Categories"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: subscribe2.php:
|
514 |
msgid ""
|
515 |
"Posts assigned to any Excluded Category do not generate notifications and "
|
516 |
"are not included in digest notifications"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: subscribe2.php:
|
520 |
msgid "Allow registered users to subscribe to excluded categories?"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: subscribe2.php:
|
524 |
msgid "Appearance"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: subscribe2.php:
|
528 |
msgid "Set default Subscribe2 page as ID"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: subscribe2.php:
|
532 |
msgid "Set the number of Subscribers displayed per page"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: subscribe2.php:
|
536 |
msgid "Show a link to your subscription page in \"meta\"?"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: subscribe2.php:
|
540 |
msgid "Show the Subscribe2 button on the Write toolbar?"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: subscribe2.php:
|
544 |
msgid "Enable Subscribe2 Widget?"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: subscribe2.php:
|
548 |
msgid "Auto Subscribe"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: subscribe2.php:
|
552 |
msgid "Subscribe new users registering with your blog"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: subscribe2.php:
|
556 |
msgid "Automatically"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: subscribe2.php:
|
560 |
msgid "Display option on Registration Form"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: subscribe2.php:
|
564 |
msgid "Auto-subscribe includes any excluded categories"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: subscribe2.php:
|
568 |
msgid "Registration Form option is checked by default"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: subscribe2.php:
|
572 |
msgid "Auto-subscribe users to receive email as"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: subscribe2.php:
|
576 |
msgid "Registered Users have the option to auto-subscribe to new categories"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: subscribe2.php:
|
580 |
msgid "New categories are immediately excluded"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: subscribe2.php:
|
584 |
msgid ""
|
585 |
"Option for Registered Users to auto-subscribe to new categories is checked "
|
586 |
"by default"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: subscribe2.php:
|
590 |
msgid "Barred Domains"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: subscribe2.php:
|
594 |
msgid ""
|
595 |
"Enter domains to bar from public subscriptions: <br /> (Use a new line for "
|
596 |
"each entry and omit the \"@\" symbol, for example email.com)"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: subscribe2.php:
|
600 |
msgid "Submit"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: subscribe2.php:
|
604 |
msgid "Reset Default"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: subscribe2.php:
|
608 |
msgid ""
|
609 |
"Use this to reset all options to their defaults. This <strong><em>will not</"
|
610 |
"em></strong> modify your list of subscribers."
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: subscribe2.php:
|
614 |
msgid "RESET"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: subscribe2.php:
|
618 |
msgid "Subscription preferences updated."
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: subscribe2.php:
|
622 |
msgid "Editing Subscribe2 preferences for user"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: subscribe2.php:
|
626 |
msgid "Receive email as"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: subscribe2.php:
|
630 |
msgid "Automatically subscribe me to newly created categories"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: subscribe2.php:
|
634 |
msgid "Unsubscribe me from this blog"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: subscribe2.php:
|
638 |
msgid "Subscribe to all categories"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: subscribe2.php:
|
642 |
msgid "Subscribed Categories on"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: subscribe2.php:
|
646 |
msgid "Subscribed Categories"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: subscribe2.php:
|
650 |
msgid "Receive periodic summaries of new posts?"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: subscribe2.php:
|
654 |
msgid "Update Preferences"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: subscribe2.php:
|
658 |
msgid "Subscribed Blogs"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: subscribe2.php:
|
662 |
msgid "Viewing Settings Now"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: subscribe2.php:
|
666 |
msgid "View Settings"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: subscribe2.php:
|
670 |
msgid "Subscribe to new blogs"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: subscribe2.php:
|
674 |
msgid "Send an email to subscribers"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: subscribe2.php:
|
678 |
msgid "A message from"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: subscribe2.php:
|
682 |
msgid "Subject"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: subscribe2.php:
|
686 |
msgid "Recipients:"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: subscribe2.php:
|
690 |
msgid "Send"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: subscribe2.php:
|
694 |
msgid "All Users and Subscribers"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: subscribe2.php:
|
698 |
msgid "Public Subscribers"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: subscribe2.php:
|
702 |
msgid "Confirmed"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: subscribe2.php:
|
706 |
msgid "Unconfirmed"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: subscribe2.php:
|
710 |
msgid "All Registered Users"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: subscribe2.php:
|
714 |
msgid "Registered Subscribers"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: subscribe2.php:
|
718 |
msgid "For each Post"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: subscribe2.php:
|
722 |
msgid "Send Digest Notification at"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: subscribe2.php:
|
726 |
msgid ""
|
727 |
"This option will be ignored if the time selected is not in the future in "
|
728 |
"relation to the current time"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: subscribe2.php:
|
732 |
msgid "Current UTC time is"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: subscribe2.php:
|
736 |
msgid "Current blog time is"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: subscribe2.php:
|
740 |
msgid "Next email notification will be sent when your blog time is after"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: subscribe2.php:
|
744 |
msgid "Settings"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: subscribe2.php:
|
748 |
msgid "Donate"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: subscribe2.php:
|
752 |
msgid "Forum"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: subscribe2.php:
|
756 |
msgid "Check here to Subscribe to email notifications for new posts"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: subscribe2.php:
|
760 |
msgid ""
|
761 |
"By registering with this blog you are also agreeing to receive email "
|
762 |
"notifications for new posts but you can unsubscribe at anytime"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: subscribe2.php:
|
766 |
msgid "Subscribe2 Notification Override"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: subscribe2.php:
|
770 |
msgid ""
|
771 |
"Check here to disable sending of an email notification for this post/page"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: subscribe2.php:
|
775 |
msgid "Subscription Confirmation"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: subscribe2.php:
|
779 |
msgid "Title"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: subscribe2.php:
|
783 |
msgid "Div class name"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: subscribe2.php:
|
787 |
msgid "Pre-Content"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: subscribe2.php:
|
791 |
msgid "Post-Content"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: subscribe2.php:
|
795 |
msgid "[Un]Subscribe to Posts"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: subscribe2.php:
|
799 |
msgid "Weekly"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: subscribe2.php:
|
803 |
msgid "Posted on"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: subscribe2.php:
|
807 |
msgid "Posted in"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: subscribe2.php:
|
811 |
msgid "Tagged as"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: subscribe2.php:
|
815 |
msgid "Digest Email"
|
816 |
msgstr ""
|
817 |
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: PACKAGE VERSION\n"
|
10 |
"Report-Msgid-Bugs-To: \n"
|
11 |
+
"POT-Creation-Date: 2010-03-06 09:51+0000\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"
|
80 |
msgid "Enter email address..."
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: subscribe2.php:95 subscribe2.php:1602 subscribe2.php:1694
|
84 |
+
#: subscribe2.php:2424
|
85 |
msgid "Subscribe"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: subscribe2.php:95 subscribe2.php:1603 subscribe2.php:1695
|
89 |
+
#: subscribe2.php:2403
|
90 |
msgid "Unsubscribe"
|
91 |
msgstr ""
|
92 |
|
126 |
msgid "Subscribe2 Options"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: subscribe2.php:121 subscribe2.php:2993 subscribe2.php:3113
|
130 |
msgid "Subscribe2"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: subscribe2.php:126 subscribe2.php:1905
|
134 |
msgid "Subscriptions"
|
135 |
msgstr ""
|
136 |
|
138 |
msgid "Mail Subscribers"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: subscribe2.php:859
|
142 |
msgid "New subscription"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: subscribe2.php:861
|
146 |
msgid "subscribed to email notifications!"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: subscribe2.php:877
|
150 |
msgid "New Unsubscription"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: subscribe2.php:879
|
154 |
msgid "unsubscribed from email notifications!"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: subscribe2.php:1417
|
158 |
msgid "Address(es) subscribed!"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: subscribe2.php:1420
|
162 |
msgid "Address(es) unsubscribed!"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: subscribe2.php:1430
|
166 |
msgid "Address(es) deleted!"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: subscribe2.php:1436 subscribe2.php:1442
|
170 |
msgid "Status changed!"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: subscribe2.php:1456
|
174 |
msgid "Reminder Email(s) Sent!"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: subscribe2.php:1459
|
178 |
msgid "Registered Users Subscribed!"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: subscribe2.php:1462
|
182 |
msgid "Registered Users Unsubscribed!"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: subscribe2.php:1471
|
186 |
msgid "Format updated for Registered Users!"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: subscribe2.php:1566
|
190 |
msgid "Previous Page"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: subscribe2.php:1586
|
194 |
msgid "Next Page"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: subscribe2.php:1593
|
198 |
msgid "Manage Subscribers"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: subscribe2.php:1598
|
202 |
msgid "Add/Remove Subscribers"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: subscribe2.php:1599
|
206 |
msgid "Enter addresses, one per line or comma-separated"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: subscribe2.php:1606
|
210 |
msgid "Current Subscribers"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: subscribe2.php:1608
|
214 |
msgid "Filter"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: subscribe2.php:1613
|
218 |
msgid "Search Subscribers"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: subscribe2.php:1616
|
222 |
msgid "Send Reminder Email"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: subscribe2.php:1623
|
226 |
msgid "Save Emails to CSV File"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: subscribe2.php:1629 subscribe2.php:1683
|
230 |
msgid "Process"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: subscribe2.php:1638 subscribe2.php:1660
|
234 |
msgid "Confirm this email address"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: subscribe2.php:1640 subscribe2.php:1653
|
238 |
msgid "Unconfirm this email address"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: subscribe2.php:1642 subscribe2.php:1655 subscribe2.php:1663
|
242 |
msgid "Delete this email address"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: subscribe2.php:1646 subscribe2.php:2539
|
246 |
msgid "Select / Unselect All"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: subscribe2.php:1670
|
250 |
msgid "edit"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: subscribe2.php:1677
|
254 |
msgid "No matching subscribers found"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: subscribe2.php:1679
|
258 |
msgid "NONE"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: subscribe2.php:1689
|
262 |
msgid "Categories"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: subscribe2.php:1690
|
266 |
msgid ""
|
267 |
"Preferences for all existing Registered Users can be changed using this "
|
268 |
"section."
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: subscribe2.php:1691
|
272 |
msgid "Consider User Privacy as changes cannot be undone"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: subscribe2.php:1693
|
276 |
msgid "Action to perform"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: subscribe2.php:1698
|
280 |
msgid "Bulk Update Categories"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: subscribe2.php:1700
|
284 |
msgid "Send email as"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: subscribe2.php:1701 subscribe2.php:2126 subscribe2.php:2275
|
288 |
msgid "HTML - Full"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: subscribe2.php:1702 subscribe2.php:2131 subscribe2.php:2280
|
292 |
msgid "HTML - Excerpt"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: subscribe2.php:1703 subscribe2.php:2136 subscribe2.php:2285
|
296 |
msgid "Plain Text - Full"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: subscribe2.php:1704 subscribe2.php:2141 subscribe2.php:2290
|
300 |
msgid "Plain Text - Excerpt"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: subscribe2.php:1705
|
304 |
msgid "Bulk Update Format"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: subscribe2.php:1741
|
308 |
msgid "Preview message(s) sent to logged in user"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: subscribe2.php:1877
|
312 |
msgid "Subscribe2 Settings"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: subscribe2.php:1878
|
316 |
msgid "Plugin Blog"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: subscribe2.php:1879
|
320 |
msgid "Support Forum"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: subscribe2.php:1880
|
324 |
msgid "Make a donation via PayPal"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: subscribe2.php:1891 subscribe2.php:2258
|
328 |
msgid "Notification Settings"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: subscribe2.php:1892
|
332 |
msgid "Restrict the number of recipients per email to (0 for unlimited)"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: subscribe2.php:1894 subscribe2.php:2052
|
336 |
msgid "Edit"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: subscribe2.php:1897 subscribe2.php:2055
|
340 |
msgid "Update"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: subscribe2.php:1898 subscribe2.php:2056
|
344 |
msgid "Revert"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: subscribe2.php:1900
|
348 |
msgid "Send Admins notifications for new"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: subscribe2.php:1910
|
352 |
msgid "Unsubscriptions"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: subscribe2.php:1915
|
356 |
msgid "Both"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: subscribe2.php:1920
|
360 |
msgid "Neither"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: subscribe2.php:1922
|
364 |
msgid "Include theme CSS stylesheet in HTML notifications"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: subscribe2.php:1927 subscribe2.php:1939 subscribe2.php:1950
|
368 |
+
#: subscribe2.php:1961 subscribe2.php:2104 subscribe2.php:2115
|
369 |
+
#: subscribe2.php:2147 subscribe2.php:2163 subscribe2.php:2298
|
370 |
+
#: subscribe2.php:2334
|
371 |
msgid "Yes"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: subscribe2.php:1932 subscribe2.php:1944 subscribe2.php:1955
|
375 |
+
#: subscribe2.php:1966 subscribe2.php:2098 subscribe2.php:2109
|
376 |
+
#: subscribe2.php:2120 subscribe2.php:2152 subscribe2.php:2168
|
377 |
+
#: subscribe2.php:2303 subscribe2.php:2338
|
378 |
msgid "No"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: subscribe2.php:1934
|
382 |
msgid "Send Emails for Pages"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: subscribe2.php:1945
|
386 |
msgid "Send Emails for Password Protected Posts"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: subscribe2.php:1956
|
390 |
msgid "Send Emails for Private Posts"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: subscribe2.php:1967
|
394 |
msgid "Send Email From"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: subscribe2.php:1972
|
398 |
msgid "Send Emails"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: subscribe2.php:1974
|
402 |
msgid "For digest notifications, date order for posts is"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: subscribe2.php:1979
|
406 |
msgid "Descending"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: subscribe2.php:1984
|
410 |
msgid "Ascending"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: subscribe2.php:1988
|
414 |
msgid "Email Templates"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: subscribe2.php:1992
|
418 |
msgid "New Post email (must not be empty)"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: subscribe2.php:1993 subscribe2.php:2019 subscribe2.php:2024
|
422 |
msgid "Subject Line"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: subscribe2.php:1998
|
426 |
msgid "Send Email Preview"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: subscribe2.php:1999
|
430 |
msgid "Message substitions"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: subscribe2.php:2003
|
434 |
msgid "the post's title<br />(<i>for per-post emails only</i>)"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: subscribe2.php:2004
|
438 |
msgid ""
|
439 |
"the excerpt or the entire post<br />(<i>based on the subscriber's "
|
440 |
"preferences</i>)"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: subscribe2.php:2005
|
444 |
msgid ""
|
445 |
"the excerpt of the post and the time it was posted<br />(<i>for digest "
|
446 |
"emails only</i>)"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: subscribe2.php:2006
|
450 |
msgid "a list of post titles<br />(<i>for digest emails only</i>)"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: subscribe2.php:2007
|
454 |
msgid "the post's permalink<br />(<i>for per-post emails only</i>)"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: subscribe2.php:2008
|
458 |
msgid ""
|
459 |
"the post's permalink after conversion by TinyURL<br />(<i>for per-post "
|
460 |
"emails only</i>)"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: subscribe2.php:2009
|
464 |
msgid "the admin or post author's name"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: subscribe2.php:2010
|
468 |
msgid "the admin or post author's email"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: subscribe2.php:2011
|
472 |
msgid "the post author's name"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: subscribe2.php:2012
|
476 |
msgid ""
|
477 |
"the generated link to confirm a request<br />(<i>only used in the "
|
478 |
"confirmation email template</i>)"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: subscribe2.php:2013
|
482 |
msgid ""
|
483 |
"Action performed by LINK in confirmation email<br />(<i>only used in the "
|
484 |
"confirmation email template</i>)"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: subscribe2.php:2014
|
488 |
msgid "the post's assigned categories"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: subscribe2.php:2015
|
492 |
msgid "the post's assigned Tags"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: subscribe2.php:2016
|
496 |
msgid ""
|
497 |
"the number of posts included in the digest email<br />(<i>for digest emails "
|
498 |
"only</i>)"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: subscribe2.php:2018
|
502 |
msgid "Subscribe / Unsubscribe confirmation email"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: subscribe2.php:2023
|
506 |
msgid "Reminder email to Unconfirmed Subscribers"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: subscribe2.php:2030
|
510 |
msgid "Excluded Categories"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: subscribe2.php:2032
|
514 |
msgid ""
|
515 |
"Posts assigned to any Excluded Category do not generate notifications and "
|
516 |
"are not included in digest notifications"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: subscribe2.php:2039
|
520 |
msgid "Allow registered users to subscribe to excluded categories?"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: subscribe2.php:2042
|
524 |
msgid "Appearance"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: subscribe2.php:2046
|
528 |
msgid "Set default Subscribe2 page as ID"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: subscribe2.php:2050
|
532 |
msgid "Set the number of Subscribers displayed per page"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: subscribe2.php:2063
|
536 |
msgid "Show a link to your subscription page in \"meta\"?"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: subscribe2.php:2070
|
540 |
msgid "Show the Subscribe2 button on the Write toolbar?"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: subscribe2.php:2077
|
544 |
msgid "Enable Subscribe2 Widget?"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: subscribe2.php:2081
|
548 |
msgid "Auto Subscribe"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: subscribe2.php:2083
|
552 |
msgid "Subscribe new users registering with your blog"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: subscribe2.php:2088
|
556 |
msgid "Automatically"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: subscribe2.php:2093
|
560 |
msgid "Display option on Registration Form"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: subscribe2.php:2099
|
564 |
msgid "Auto-subscribe includes any excluded categories"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: subscribe2.php:2110
|
568 |
msgid "Registration Form option is checked by default"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: subscribe2.php:2121
|
572 |
msgid "Auto-subscribe users to receive email as"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: subscribe2.php:2142
|
576 |
msgid "Registered Users have the option to auto-subscribe to new categories"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: subscribe2.php:2157
|
580 |
msgid "New categories are immediately excluded"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: subscribe2.php:2158
|
584 |
msgid ""
|
585 |
"Option for Registered Users to auto-subscribe to new categories is checked "
|
586 |
"by default"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: subscribe2.php:2172
|
590 |
msgid "Barred Domains"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: subscribe2.php:2174
|
594 |
msgid ""
|
595 |
"Enter domains to bar from public subscriptions: <br /> (Use a new line for "
|
596 |
"each entry and omit the \"@\" symbol, for example email.com)"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: subscribe2.php:2179
|
600 |
msgid "Submit"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: subscribe2.php:2182
|
604 |
msgid "Reset Default"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: subscribe2.php:2183
|
608 |
msgid ""
|
609 |
"Use this to reset all options to their defaults. This <strong><em>will not</"
|
610 |
"em></strong> modify your list of subscribers."
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: subscribe2.php:2185
|
614 |
msgid "RESET"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: subscribe2.php:2211
|
618 |
msgid "Subscription preferences updated."
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: subscribe2.php:2261
|
622 |
msgid "Editing Subscribe2 preferences for user"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: subscribe2.php:2270
|
626 |
msgid "Receive email as"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: subscribe2.php:2293
|
630 |
msgid "Automatically subscribe me to newly created categories"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: subscribe2.php:2314
|
634 |
msgid "Unsubscribe me from this blog"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: subscribe2.php:2318
|
638 |
msgid "Subscribe to all categories"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: subscribe2.php:2320
|
642 |
msgid "Subscribed Categories on"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: subscribe2.php:2322
|
646 |
msgid "Subscribed Categories"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: subscribe2.php:2328
|
650 |
msgid "Receive periodic summaries of new posts?"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: subscribe2.php:2343
|
654 |
msgid "Update Preferences"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: subscribe2.php:2392
|
658 |
msgid "Subscribed Blogs"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: subscribe2.php:2397 subscribe2.php:2418
|
662 |
msgid "Viewing Settings Now"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: subscribe2.php:2401 subscribe2.php:2422
|
666 |
msgid "View Settings"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: subscribe2.php:2413
|
670 |
msgid "Subscribe to new blogs"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: subscribe2.php:2486
|
674 |
msgid "Send an email to subscribers"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: subscribe2.php:2494
|
678 |
msgid "A message from"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: subscribe2.php:2496
|
682 |
msgid "Subject"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: subscribe2.php:2499
|
686 |
msgid "Recipients:"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: subscribe2.php:2503
|
690 |
msgid "Send"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: subscribe2.php:2574
|
694 |
msgid "All Users and Subscribers"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: subscribe2.php:2575
|
698 |
msgid "Public Subscribers"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: subscribe2.php:2576
|
702 |
msgid "Confirmed"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: subscribe2.php:2577
|
706 |
msgid "Unconfirmed"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: subscribe2.php:2578
|
710 |
msgid "All Registered Users"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: subscribe2.php:2579
|
714 |
msgid "Registered Subscribers"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: subscribe2.php:2690
|
718 |
msgid "For each Post"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: subscribe2.php:2707
|
722 |
msgid "Send Digest Notification at"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: subscribe2.php:2719
|
726 |
msgid ""
|
727 |
"This option will be ignored if the time selected is not in the future in "
|
728 |
"relation to the current time"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: subscribe2.php:2722
|
732 |
msgid "Current UTC time is"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: subscribe2.php:2724
|
736 |
msgid "Current blog time is"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: subscribe2.php:2726
|
740 |
msgid "Next email notification will be sent when your blog time is after"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: subscribe2.php:2778
|
744 |
msgid "Settings"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: subscribe2.php:2779
|
748 |
msgid "Donate"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: subscribe2.php:2780
|
752 |
msgid "Forum"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: subscribe2.php:2791
|
756 |
msgid "Check here to Subscribe to email notifications for new posts"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: subscribe2.php:2800
|
760 |
msgid ""
|
761 |
"By registering with this blog you are also agreeing to receive email "
|
762 |
"notifications for new posts but you can unsubscribe at anytime"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: subscribe2.php:2821 subscribe2.php:2822 subscribe2.php:2850
|
766 |
msgid "Subscribe2 Notification Override"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: subscribe2.php:2836
|
770 |
msgid ""
|
771 |
"Check here to disable sending of an email notification for this post/page"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: subscribe2.php:2979
|
775 |
msgid "Subscription Confirmation"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: subscribe2.php:3031
|
779 |
msgid "Title"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: subscribe2.php:3033
|
783 |
msgid "Div class name"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: subscribe2.php:3035
|
787 |
msgid "Pre-Content"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: subscribe2.php:3037
|
791 |
msgid "Post-Content"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: subscribe2.php:3087
|
795 |
msgid "[Un]Subscribe to Posts"
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: subscribe2.php:3165
|
799 |
msgid "Weekly"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: subscribe2.php:3252
|
803 |
msgid "Posted on"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: subscribe2.php:3256 subscribe2.php:3257
|
807 |
msgid "Posted in"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: subscribe2.php:3262 subscribe2.php:3263
|
811 |
msgid "Tagged as"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: subscribe2.php:3315
|
815 |
msgid "Digest Email"
|
816 |
msgstr ""
|
817 |
|