Version Description
- UPDATED: Language POT file
- FIXED: Some unnecessary characters appearing in Admin when SVN isn't being used
- FIXED: Sanity checking of normal updates marked for SVN updates
Download this release
Release Info
Developer | pento |
Plugin | Advanced Automatic Updates |
Version | 0.8.1 |
Comparing to | |
See all releases |
Code changes from version 0.8 to 0.8.1
- admin.php +4 -4
- automatic-updater.php +11 -3
- languages/automatic-updater.pot +151 -59
- readme.txt +6 -1
admin.php
CHANGED
@@ -185,10 +185,10 @@ class Automatic_Updater_Admin {
|
|
185 |
<?php
|
186 |
} else {
|
187 |
?>
|
188 |
-
<input type="hidden" name="svn-core" value="0"
|
189 |
-
<input type="hidden" name="svn-plugins" value="0"
|
190 |
-
<input type="hidden" name="svn-themes" value="0"
|
191 |
-
<input type="hidden" name="svn-success-email" value="0"
|
192 |
<?php
|
193 |
}
|
194 |
|
185 |
<?php
|
186 |
} else {
|
187 |
?>
|
188 |
+
<input type="hidden" name="svn-core" value="0">
|
189 |
+
<input type="hidden" name="svn-plugins" value="0">
|
190 |
+
<input type="hidden" name="svn-themes" value="0">
|
191 |
+
<input type="hidden" name="svn-success-email" value="0">
|
192 |
<?php
|
193 |
}
|
194 |
|
automatic-updater.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: http://pento.net/projects/automatic-updater-for-wordpress/
|
5 |
* Description: Automatically update your WordPress site, as soon as updates are released! Never worry about falling behing on updating again!
|
6 |
* Author: pento
|
7 |
-
* Version: 0.8
|
8 |
* Author URI: http://pento.net/
|
9 |
* License: GPL2+
|
10 |
* Text Domain: automatic-updater
|
@@ -219,7 +219,7 @@ class Automatic_Updater {
|
|
219 |
if ( $this->running )
|
220 |
return;
|
221 |
|
222 |
-
if ( $this->options['svn'] )
|
223 |
return;
|
224 |
|
225 |
// Forgive me father, for I have sinned. I have included wp-admin files in a plugin.
|
@@ -324,6 +324,10 @@ class Automatic_Updater {
|
|
324 |
if ( version_compare( $plugin->Version, $plugin->update->new_version, '>=' ) )
|
325 |
unset( $plugins[ $id ] );
|
326 |
|
|
|
|
|
|
|
|
|
327 |
// Remove any plugins that have failed to upgrade
|
328 |
if ( ! empty( $this->options['retries']['plugins'][ $id ] ) ) {
|
329 |
// If there's a new version of a failed plugin, we should give it another go.
|
@@ -413,6 +417,10 @@ class Automatic_Updater {
|
|
413 |
if ( version_compare( $theme->Version, $theme->update['new_version'], '>=' ) )
|
414 |
unset( $themes[ $id ] );
|
415 |
|
|
|
|
|
|
|
|
|
416 |
// Remove any themes that have failed to upgrade
|
417 |
if ( ! empty( $this->options['retries']['themes'][ $id ] ) ) {
|
418 |
// If there's a new version of a failed theme, we should give it another go.
|
@@ -427,7 +435,7 @@ class Automatic_Updater {
|
|
427 |
if ( empty( $themes ) )
|
428 |
return;
|
429 |
|
430 |
-
|
431 |
|
432 |
do_action( 'auto_updater_before_update', 'themes' );
|
433 |
|
4 |
* Plugin URI: http://pento.net/projects/automatic-updater-for-wordpress/
|
5 |
* Description: Automatically update your WordPress site, as soon as updates are released! Never worry about falling behing on updating again!
|
6 |
* Author: pento
|
7 |
+
* Version: 0.8.1
|
8 |
* Author URI: http://pento.net/
|
9 |
* License: GPL2+
|
10 |
* Text Domain: automatic-updater
|
219 |
if ( $this->running )
|
220 |
return;
|
221 |
|
222 |
+
if ( $this->options['svn']['core'] )
|
223 |
return;
|
224 |
|
225 |
// Forgive me father, for I have sinned. I have included wp-admin files in a plugin.
|
324 |
if ( version_compare( $plugin->Version, $plugin->update->new_version, '>=' ) )
|
325 |
unset( $plugins[ $id ] );
|
326 |
|
327 |
+
// Remove any plugins that are marked for SVN update
|
328 |
+
if ( array_key_exists( $id, $options['svn']['plugins'] ) )
|
329 |
+
unset( $plugins[ $id ] );
|
330 |
+
|
331 |
// Remove any plugins that have failed to upgrade
|
332 |
if ( ! empty( $this->options['retries']['plugins'][ $id ] ) ) {
|
333 |
// If there's a new version of a failed plugin, we should give it another go.
|
417 |
if ( version_compare( $theme->Version, $theme->update['new_version'], '>=' ) )
|
418 |
unset( $themes[ $id ] );
|
419 |
|
420 |
+
// Remove any themes that are marked for SVN update
|
421 |
+
if ( array_key_exists( $id, $options['svn']['themes'] ) )
|
422 |
+
unset( $themes[ $id ] );
|
423 |
+
|
424 |
// Remove any themes that have failed to upgrade
|
425 |
if ( ! empty( $this->options['retries']['themes'][ $id ] ) ) {
|
426 |
// If there's a new version of a failed theme, we should give it another go.
|
435 |
if ( empty( $themes ) )
|
436 |
return;
|
437 |
|
438 |
+
$this->running = true;
|
439 |
|
440 |
do_action( 'auto_updater_before_update', 'themes' );
|
441 |
|
languages/automatic-updater.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Automatic Updater package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Automatic Updater 0.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/automatic-updater\n"
|
7 |
-
"POT-Creation-Date: 2012-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,92 +12,113 @@ msgstr ""
|
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#. #-#-#-#-# plugin.pot (Automatic Updater 0.
|
16 |
#. Plugin Name of the plugin/theme
|
17 |
-
#: admin.php:
|
18 |
msgid "Automatic Updater"
|
19 |
msgstr ""
|
20 |
|
21 |
-
#: admin.php:
|
22 |
msgid "Overview"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: admin.php:
|
26 |
msgid ""
|
27 |
"This settings page allows you to select whether you would like WordPress "
|
28 |
"Core, your plugins, and your themes to be automatically updated."
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: admin.php:
|
32 |
msgid ""
|
33 |
"It is very important to keep your WordPress installation up to date for "
|
34 |
"security reasons, so unless you have a specific reason not to, we recommend "
|
35 |
"allowing everything to automatically update."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: admin.php:
|
39 |
msgid "A Plugin By <a href=\"%s\" target=\"_blank\">Gary</a>"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: admin.php:
|
43 |
msgid "Donations"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: admin.php:
|
47 |
msgid "Support Forums"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: admin.php:
|
51 |
msgid "You do not have sufficient permissions to access this page."
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: admin.php:
|
55 |
msgid "Settings updated"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: admin.php:
|
59 |
msgid ""
|
60 |
"Update WordPress Core automatically? <strong>(Strongly Recommended)</strong>"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: admin.php:
|
64 |
msgid "Update your plugins automatically?"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: admin.php:
|
68 |
msgid "Update your themes automatically?"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: admin.php:
|
72 |
msgid "Notification Email"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: admin.php:
|
76 |
msgid ""
|
77 |
"By default, Automatic Updater will send an email to the Site Admin when an "
|
78 |
"update is performed. If you would like to send that email to a different "
|
79 |
"address, you can set it here."
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: admin.php:
|
83 |
msgid "Override Email Address"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: admin.php:
|
87 |
msgid ""
|
88 |
"If you don't want to receive an email when updates are installed, you can "
|
89 |
"disable them completely."
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: admin.php:
|
93 |
msgid "Disable email notifications."
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
msgid "SVN Support"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: admin.php:
|
|
|
|
|
|
|
|
|
101 |
msgid ""
|
102 |
"It looks like you're running an SVN version of WordPress, that's cool! "
|
103 |
"Automatic Updater can run <tt>svn up</tt> once an hour, to keep you up-to-"
|
@@ -105,71 +126,111 @@ msgid ""
|
|
105 |
"core updates."
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
msgid ""
|
110 |
-
"
|
111 |
-
"
|
112 |
-
"
|
|
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: admin.php:
|
116 |
-
msgid "
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
msgid "Debug Information"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: admin.php:
|
124 |
msgid "Show debug information in the notification email."
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: admin.php:
|
128 |
msgid "Save Changes"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: admin.php:
|
132 |
msgid "Settings"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: automatic-updater.php:
|
136 |
msgid ""
|
137 |
"Automatic Updater requires WordPress 3.4 or higher! Please upgrade WordPress "
|
138 |
"manually, then reactivate Automatic Updater."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: automatic-updater.php:
|
142 |
msgid "While trying to upgrade WordPress, we ran into the following error:"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: automatic-updater.php:
|
146 |
-
msgid "
|
|
|
|
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: automatic-updater.php:
|
150 |
msgid "We've successfully upgraded WordPress to the latest nightly build!"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: automatic-updater.php:
|
154 |
msgid "Have fun!"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: automatic-updater.php:
|
158 |
msgid ""
|
159 |
"We've successfully upgraded WordPress from version %1$s to version %2$s!"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: automatic-updater.php:
|
163 |
msgid "We found a plugin upgrade!"
|
164 |
msgid_plural "We found upgrades for some plugins!"
|
165 |
msgstr[0] ""
|
166 |
msgstr[1] ""
|
167 |
|
168 |
#. translators: First argument is the plugin url, second argument is the Plugin
|
169 |
-
#. name, third argument is the error encountered while upgrading
|
170 |
-
|
|
|
|
|
171 |
msgid ""
|
172 |
-
"<a href=\"%1$s\">%2$s</a>: We encounted an error upgrading this plugin: %3$s"
|
|
|
173 |
msgstr ""
|
174 |
|
175 |
#. translators: First argument is the plugin url, second argument is the Plugin
|
@@ -178,12 +239,12 @@ msgstr ""
|
|
178 |
#. translators: First argument is the theme URL, second argument is the Theme
|
179 |
#. name, third argument is the old version number, fourth argument is the new
|
180 |
#. version number
|
181 |
-
#: automatic-updater.php:
|
182 |
msgid ""
|
183 |
"<a href=\"%1$s\">%2$s</a>: Successfully upgraded from version %3$s to %4$s!"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: automatic-updater.php:
|
187 |
msgid ""
|
188 |
"Plugin authors depend on your feedback to make their plugins better, and the "
|
189 |
"WordPress community depends on plugin ratings for checking the quality of a "
|
@@ -191,20 +252,23 @@ msgid ""
|
|
191 |
"and leave a Compatibility Vote or a Rating!"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: automatic-updater.php:
|
195 |
msgid "We found a theme upgrade!"
|
196 |
msgid_plural "We found upgrades for some themes!"
|
197 |
msgstr[0] ""
|
198 |
msgstr[1] ""
|
199 |
|
200 |
#. translators: First argument is the theme URL, second argument is the Theme
|
201 |
-
#. name, third argument is the error encountered while upgrading
|
202 |
-
|
|
|
|
|
203 |
msgid ""
|
204 |
-
"<a href=\"%1$s\">%2$s</a>: We encounted an error upgrading this theme: %3$s"
|
|
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: automatic-updater.php:
|
208 |
msgid ""
|
209 |
"Theme authors depend on your feedback to make their plugins better, and the "
|
210 |
"WordPress community depends on theme ratings for checking the quality of a "
|
@@ -212,33 +276,61 @@ msgid ""
|
|
212 |
"leave a Compatibility Vote or a Rating!"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: automatic-updater.php:
|
216 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: automatic-updater.php:
|
220 |
-
msgid "
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: automatic-updater.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
224 |
msgid "WordPress Update: %s"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: automatic-updater.php:
|
228 |
msgid "Howdy!"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: automatic-updater.php:
|
232 |
msgid ""
|
233 |
"Automatic Updater just ran on your site, <a href=\"%1$s\">%1$s</a>, with the "
|
234 |
"following result:"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: automatic-updater.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
msgid "Thanks for using the Automatic Updater plugin!"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: automatic-updater.php:
|
242 |
msgid "Debug Information:"
|
243 |
msgstr ""
|
244 |
|
2 |
# This file is distributed under the same license as the Automatic Updater package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Automatic Updater 0.8\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/automatic-updater\n"
|
7 |
+
"POT-Creation-Date: 2012-12-02 05:02:04+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#. #-#-#-#-# plugin.pot (Automatic Updater 0.8) #-#-#-#-#
|
16 |
#. Plugin Name of the plugin/theme
|
17 |
+
#: admin.php:32 admin.php:75
|
18 |
msgid "Automatic Updater"
|
19 |
msgstr ""
|
20 |
|
21 |
+
#: admin.php:40
|
22 |
msgid "Overview"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: admin.php:42
|
26 |
msgid ""
|
27 |
"This settings page allows you to select whether you would like WordPress "
|
28 |
"Core, your plugins, and your themes to be automatically updated."
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: admin.php:43
|
32 |
msgid ""
|
33 |
"It is very important to keep your WordPress installation up to date for "
|
34 |
"security reasons, so unless you have a specific reason not to, we recommend "
|
35 |
"allowing everything to automatically update."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: admin.php:47
|
39 |
msgid "A Plugin By <a href=\"%s\" target=\"_blank\">Gary</a>"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: admin.php:48
|
43 |
msgid "Donations"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin.php:49
|
47 |
msgid "Support Forums"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin.php:57
|
51 |
msgid "You do not have sufficient permissions to access this page."
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: admin.php:64
|
55 |
msgid "Settings updated"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: admin.php:68
|
59 |
msgid ""
|
60 |
"Update WordPress Core automatically? <strong>(Strongly Recommended)</strong>"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: admin.php:69
|
64 |
msgid "Update your plugins automatically?"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: admin.php:70
|
68 |
msgid "Update your themes automatically?"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: admin.php:97
|
72 |
msgid "Notification Email"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: admin.php:98
|
76 |
msgid ""
|
77 |
"By default, Automatic Updater will send an email to the Site Admin when an "
|
78 |
"update is performed. If you would like to send that email to a different "
|
79 |
"address, you can set it here."
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: admin.php:99
|
83 |
msgid "Override Email Address"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: admin.php:107
|
87 |
msgid ""
|
88 |
"If you don't want to receive an email when updates are installed, you can "
|
89 |
"disable them completely."
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: admin.php:108
|
93 |
msgid "Disable email notifications."
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: admin.php:111
|
97 |
+
msgid "Retries"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: admin.php:112
|
101 |
+
msgid ""
|
102 |
+
"To avoid updating when something is broken, Automatic Updater can limit the "
|
103 |
+
"number of times it will attempt to update WordPress Core, a plugin or a "
|
104 |
+
"theme. If, for example, a plugin update reaches this limit, Automatic "
|
105 |
+
"Updater will stop trying to update it until you manually install the update, "
|
106 |
+
"or a new version is released."
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: admin.php:113
|
110 |
+
msgid "Retries Limit"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: admin.php:123
|
114 |
msgid "SVN Support"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: admin.php:133
|
118 |
+
msgid "WordPress Core"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: admin.php:134
|
122 |
msgid ""
|
123 |
"It looks like you're running an SVN version of WordPress, that's cool! "
|
124 |
"Automatic Updater can run <tt>svn up</tt> once an hour, to keep you up-to-"
|
126 |
"core updates."
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: admin.php:135
|
130 |
+
msgid "Update WordPress Core hourly?"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: admin.php:142
|
134 |
+
msgid "Plugins"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: admin.php:143
|
138 |
msgid ""
|
139 |
+
"Running plugins from SVN is great for helping plugin devs fine tune them "
|
140 |
+
"before release, so on behalf of all of us, thanks! If you see Akismet here "
|
141 |
+
"and don't have it coming from a custom repository, it will probably "
|
142 |
+
"automatically update when the WordPress Core SVN update occurs."
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: admin.php:158
|
146 |
+
msgid "Themes"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: admin.php:159
|
150 |
+
msgid ""
|
151 |
+
"Running themes from SVN makes you an excellent person who makes the "
|
152 |
+
"WordPress community better - thank you! If you see any of the default Twenty "
|
153 |
+
"Ten, Eleven or Twelve themes, these will probably automatically update when "
|
154 |
+
"the WordPress Core SVN update occurs."
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: admin.php:175
|
158 |
+
msgid ""
|
159 |
+
"The items marked in red don't have their .svn directory writable, so <tt>svn "
|
160 |
+
"up</tt> will probably fail when the web server runs it. You need to give the "
|
161 |
+
"user <tt>%s</tt> write permissions to your entire WordPress install, "
|
162 |
+
"including .svn directories."
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: admin.php:182
|
166 |
+
msgid "SVN Options"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: admin.php:183
|
170 |
+
msgid ""
|
171 |
+
"Send email on <tt>svn up</tt> success? Disabling this will cause "
|
172 |
+
"notification emails to only be sent if the <tt>svn up</tt> fails."
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: admin.php:201
|
176 |
msgid "Debug Information"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: admin.php:202
|
180 |
msgid "Show debug information in the notification email."
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: admin.php:203
|
184 |
msgid "Save Changes"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: admin.php:265
|
188 |
msgid "Settings"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: automatic-updater.php:134
|
192 |
msgid ""
|
193 |
"Automatic Updater requires WordPress 3.4 or higher! Please upgrade WordPress "
|
194 |
"manually, then reactivate Automatic Updater."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: automatic-updater.php:282
|
198 |
msgid "While trying to upgrade WordPress, we ran into the following error:"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: automatic-updater.php:284
|
202 |
+
msgid ""
|
203 |
+
"We're sorry it didn't work out. Please try upgrading manually, instead. This "
|
204 |
+
"is attempt %1$d of %2$d."
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: automatic-updater.php:288
|
208 |
msgid "We've successfully upgraded WordPress to the latest nightly build!"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: automatic-updater.php:289 automatic-updater.php:295
|
212 |
msgid "Have fun!"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: automatic-updater.php:294
|
216 |
msgid ""
|
217 |
"We've successfully upgraded WordPress from version %1$s to version %2$s!"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: automatic-updater.php:351
|
221 |
msgid "We found a plugin upgrade!"
|
222 |
msgid_plural "We found upgrades for some plugins!"
|
223 |
msgstr[0] ""
|
224 |
msgstr[1] ""
|
225 |
|
226 |
#. translators: First argument is the plugin url, second argument is the Plugin
|
227 |
+
#. name, third argument is the error encountered while upgrading. The fourth
|
228 |
+
#. and fifth arguments refer to how many retries we've had at installing this
|
229 |
+
#. plugin.
|
230 |
+
#: automatic-updater.php:369
|
231 |
msgid ""
|
232 |
+
"<a href=\"%1$s\">%2$s</a>: We encounted an error upgrading this plugin: %3$s "
|
233 |
+
"(Attempt %4$d of %5$d)"
|
234 |
msgstr ""
|
235 |
|
236 |
#. translators: First argument is the plugin url, second argument is the Plugin
|
239 |
#. translators: First argument is the theme URL, second argument is the Theme
|
240 |
#. name, third argument is the old version number, fourth argument is the new
|
241 |
#. version number
|
242 |
+
#: automatic-updater.php:378 automatic-updater.php:467
|
243 |
msgid ""
|
244 |
"<a href=\"%1$s\">%2$s</a>: Successfully upgraded from version %3$s to %4$s!"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: automatic-updater.php:391
|
248 |
msgid ""
|
249 |
"Plugin authors depend on your feedback to make their plugins better, and the "
|
250 |
"WordPress community depends on plugin ratings for checking the quality of a "
|
252 |
"and leave a Compatibility Vote or a Rating!"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: automatic-updater.php:440
|
256 |
msgid "We found a theme upgrade!"
|
257 |
msgid_plural "We found upgrades for some themes!"
|
258 |
msgstr[0] ""
|
259 |
msgstr[1] ""
|
260 |
|
261 |
#. translators: First argument is the theme URL, second argument is the Theme
|
262 |
+
#. name, third argument is the error encountered while upgrading. The fourth
|
263 |
+
#. and fifth arguments refer to how many retries we've had at installing this
|
264 |
+
#. theme.
|
265 |
+
#: automatic-updater.php:458
|
266 |
msgid ""
|
267 |
+
"<a href=\"%1$s\">%2$s</a>: We encounted an error upgrading this theme: %3$s "
|
268 |
+
"(Attempt %4$d of %5$d)"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: automatic-updater.php:480
|
272 |
msgid ""
|
273 |
"Theme authors depend on your feedback to make their plugins better, and the "
|
274 |
"WordPress community depends on theme ratings for checking the quality of a "
|
276 |
"leave a Compatibility Vote or a Rating!"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: automatic-updater.php:501
|
280 |
+
msgid "WordPress Core:"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: automatic-updater.php:510
|
284 |
+
msgid "We successfully upgraded WordPress Core from SVN!"
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: automatic-updater.php:515
|
288 |
+
msgid ""
|
289 |
+
"While upgrading WordPress Core from SVN, we ran into the following error:"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: automatic-updater.php:517
|
293 |
+
msgid "We're sorry it didn't work out. Please try upgrading manually, instead."
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: automatic-updater.php:558
|
297 |
+
msgid "We upgraded the following plugin:"
|
298 |
+
msgid_plural "We upgraded the following plugins:"
|
299 |
+
msgstr[0] ""
|
300 |
+
msgstr[1] ""
|
301 |
+
|
302 |
+
#: automatic-updater.php:597
|
303 |
+
msgid "We upgraded the following theme:"
|
304 |
+
msgid_plural "We upgraded the following themes:"
|
305 |
+
msgstr[0] ""
|
306 |
+
msgstr[1] ""
|
307 |
+
|
308 |
+
#: automatic-updater.php:622
|
309 |
msgid "WordPress Update: %s"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: automatic-updater.php:628
|
313 |
msgid "Howdy!"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: automatic-updater.php:630
|
317 |
msgid ""
|
318 |
"Automatic Updater just ran on your site, <a href=\"%1$s\">%1$s</a>, with the "
|
319 |
"following result:"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: automatic-updater.php:638
|
323 |
+
msgid ""
|
324 |
+
"It looks like something went wrong during the update. Note that, if "
|
325 |
+
"Automatic Updater continues to encounter problems, it will stop trying to do "
|
326 |
+
"this update, and will not try again until after you manually update."
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: automatic-updater.php:642
|
330 |
msgid "Thanks for using the Automatic Updater plugin!"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: automatic-updater.php:646
|
334 |
msgid "Debug Information:"
|
335 |
msgstr ""
|
336 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://pento.net/donate/
|
|
4 |
Tags: updates, core, plugins, themes, stable, nightly, svn, wordpress automatic upgrader
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 3.5
|
7 |
-
Stable tag: 0.
|
8 |
License: GPL2+
|
9 |
|
10 |
Automatically update WordPress, your themes and plugins! Never have to click the update button again!
|
@@ -43,6 +43,11 @@ There are some Actions and Filters provided, check the [Documentation](http://pe
|
|
43 |
|
44 |
== Changelog ==
|
45 |
|
|
|
|
|
|
|
|
|
|
|
46 |
= 0.8 =
|
47 |
* ADDED: SVN support for plugins and themes
|
48 |
* ADDED: Retry limits, so broken updates won't keep trying to install
|
4 |
Tags: updates, core, plugins, themes, stable, nightly, svn, wordpress automatic upgrader
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 3.5
|
7 |
+
Stable tag: 0.8
|
8 |
License: GPL2+
|
9 |
|
10 |
Automatically update WordPress, your themes and plugins! Never have to click the update button again!
|
43 |
|
44 |
== Changelog ==
|
45 |
|
46 |
+
= 0.8.1 =
|
47 |
+
* UPDATED: Language POT file
|
48 |
+
* FIXED: Some unnecessary characters appearing in Admin when SVN isn't being used
|
49 |
+
* FIXED: Sanity checking of normal updates marked for SVN updates
|
50 |
+
|
51 |
= 0.8 =
|
52 |
* ADDED: SVN support for plugins and themes
|
53 |
* ADDED: Retry limits, so broken updates won't keep trying to install
|