Version Description
- ADDED: Support for nightly builds
- ADDED: Dutch (nl_NL) translation. Props Trifon Rijksen
- UPDATED: Language POT file
Download this release
Release Info
Developer | pento |
Plugin | Advanced Automatic Updates |
Version | 0.6 |
Comparing to | |
See all releases |
Code changes from version 0.5 to 0.6
- automatic-updater.php +30 -5
- languages/automatic-updater-nl_NL.mo +0 -0
- languages/automatic-updater-nl_NL.po +231 -0
- languages/automatic-updater.pot +24 -20
- readme.txt +9 -4
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 |
* Author URI: http://pento.net/
|
9 |
* License: GPL2+
|
10 |
* Text Domain: automatic-updater
|
@@ -47,6 +47,7 @@ function auto_updater_init() {
|
|
47 |
),
|
48 |
'svn' => false,
|
49 |
'debug' => false,
|
|
|
50 |
);
|
51 |
update_option( 'automatic-updater', $options );
|
52 |
}
|
@@ -63,6 +64,12 @@ function auto_updater_init() {
|
|
63 |
update_option( 'automatic-updater', $options );
|
64 |
}
|
65 |
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
// Configure SVN updates cron, if it's enabled
|
67 |
if ( $options['svn'] ) {
|
68 |
if ( ! wp_next_scheduled( 'auto_updater_svn_event' ) )
|
@@ -123,16 +130,30 @@ function auto_updater_core() {
|
|
123 |
if ( empty( $updates ) )
|
124 |
return;
|
125 |
|
126 |
-
|
|
|
|
|
|
|
|
|
|
|
127 |
if ( empty( $update ) )
|
128 |
return;
|
129 |
|
130 |
$old_version = $GLOBALS['wp_version'];
|
131 |
|
132 |
// Sanity check that the new upgrade is actually an upgrade
|
133 |
-
if ( version_compare( $old_version, $update->current, '>=' ) )
|
134 |
return;
|
135 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
$auto_updater_running = true;
|
137 |
|
138 |
do_action( 'auto_updater_before_update', 'core' );
|
@@ -148,6 +169,10 @@ function auto_updater_core() {
|
|
148 |
$message .= "\r\n\r\n" . $result->get_error_message() . "\r\n\r\n";
|
149 |
$message .= __( "We're sorry it didn't work out. Please try upgrading manually, instead.", 'automatic-updater' );
|
150 |
}
|
|
|
|
|
|
|
|
|
151 |
else {
|
152 |
$message = sprintf( __( "We've successfully upgraded WordPress from version %1s to version %2s!", 'automatic-updater' ), $old_version, $update->current );
|
153 |
$message .= "\r\n\r\n" . __( 'Have fun!', 'automatic-updater' );
|
@@ -349,8 +374,8 @@ function auto_updater_get_update_data() {
|
|
349 |
$counts['themes'] = count( $update_themes->response );
|
350 |
|
351 |
if ( function_exists( 'get_core_updates' ) ) {
|
352 |
-
$update_wordpress = get_core_updates( array('dismissed' => false) );
|
353 |
-
if ( ! empty( $update_wordpress ) &&
|
354 |
$counts['wordpress'] = 1;
|
355 |
}
|
356 |
|
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.6
|
8 |
* Author URI: http://pento.net/
|
9 |
* License: GPL2+
|
10 |
* Text Domain: automatic-updater
|
47 |
),
|
48 |
'svn' => false,
|
49 |
'debug' => false,
|
50 |
+
'next-development-update' => time(),
|
51 |
);
|
52 |
update_option( 'automatic-updater', $options );
|
53 |
}
|
64 |
update_option( 'automatic-updater', $options );
|
65 |
}
|
66 |
|
67 |
+
// Development version updates added in version 0.6
|
68 |
+
if ( ! array_key_exists( 'next-development-update', $options ) ) {
|
69 |
+
$options['next-development-update'] = time();
|
70 |
+
update_option( 'automatic-updater', $options );
|
71 |
+
}
|
72 |
+
|
73 |
// Configure SVN updates cron, if it's enabled
|
74 |
if ( $options['svn'] ) {
|
75 |
if ( ! wp_next_scheduled( 'auto_updater_svn_event' ) )
|
130 |
if ( empty( $updates ) )
|
131 |
return;
|
132 |
|
133 |
+
if ( 'development' == $updates[0]->response )
|
134 |
+
$update = $updates[0];
|
135 |
+
else
|
136 |
+
$update = find_core_update( $updates[0]->current, $updates[0]->locale );
|
137 |
+
|
138 |
+
$update = apply_filters( 'auto_updater_core_updates', $update );
|
139 |
if ( empty( $update ) )
|
140 |
return;
|
141 |
|
142 |
$old_version = $GLOBALS['wp_version'];
|
143 |
|
144 |
// Sanity check that the new upgrade is actually an upgrade
|
145 |
+
if ( 'development' != $update->response && version_compare( $old_version, $update->current, '>=' ) )
|
146 |
return;
|
147 |
|
148 |
+
// Only do development version updates once every 24 hours
|
149 |
+
if ( 'development' == $update->response ) {
|
150 |
+
if ( time() < $options['next-development-update'] )
|
151 |
+
return;
|
152 |
+
|
153 |
+
$options['next-development-update'] = strtotime( '+24 hours' );
|
154 |
+
update_option( 'automatic-updater', $options );
|
155 |
+
}
|
156 |
+
|
157 |
$auto_updater_running = true;
|
158 |
|
159 |
do_action( 'auto_updater_before_update', 'core' );
|
169 |
$message .= "\r\n\r\n" . $result->get_error_message() . "\r\n\r\n";
|
170 |
$message .= __( "We're sorry it didn't work out. Please try upgrading manually, instead.", 'automatic-updater' );
|
171 |
}
|
172 |
+
else if( 'development' == $update->response ) {
|
173 |
+
$message = __( "We've successfully upgraded WordPress to the latest nightly build!", 'automatic-updater' );
|
174 |
+
$message .= "\r\n\r\n" . __( 'Have fun!', 'automatic-updater' );
|
175 |
+
}
|
176 |
else {
|
177 |
$message = sprintf( __( "We've successfully upgraded WordPress from version %1s to version %2s!", 'automatic-updater' ), $old_version, $update->current );
|
178 |
$message .= "\r\n\r\n" . __( 'Have fun!', 'automatic-updater' );
|
374 |
$counts['themes'] = count( $update_themes->response );
|
375 |
|
376 |
if ( function_exists( 'get_core_updates' ) ) {
|
377 |
+
$update_wordpress = get_core_updates( array( 'dismissed' => false ) );
|
378 |
+
if ( ! empty( $update_wordpress ) && 'latest' != $update_wordpress[0]->response )
|
379 |
$counts['wordpress'] = 1;
|
380 |
}
|
381 |
|
languages/automatic-updater-nl_NL.mo
ADDED
Binary file
|
languages/automatic-updater-nl_NL.po
ADDED
@@ -0,0 +1,231 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2012 Automatic Updater
|
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.5\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/automatic-updater\n"
|
7 |
+
"POT-Creation-Date: 2012-10-11 11:25:03+00:00\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2012-10-14 12:13+1000\n"
|
12 |
+
"Last-Translator: Gary Pendergast <gary@pento.net>\n"
|
13 |
+
"Language: Dutch nl_NL\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
+
"Language-Team: \n"
|
16 |
+
"X-Generator: Poedit 1.5.3\n"
|
17 |
+
|
18 |
+
#. #-#-#-#-# plugin.pot (Automatic Updater 0.5) #-#-#-#-#
|
19 |
+
#. Plugin Name of the plugin/theme
|
20 |
+
#: admin.php:4 admin.php:48
|
21 |
+
msgid "Automatic Updater"
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: admin.php:13
|
25 |
+
msgid "Overview"
|
26 |
+
msgstr "Overzicht"
|
27 |
+
|
28 |
+
#: admin.php:15
|
29 |
+
msgid ""
|
30 |
+
"This settings page allows you to select whether you would like WordPress "
|
31 |
+
"Core, your plugins, and your themes to be automatically updated."
|
32 |
+
msgstr ""
|
33 |
+
"Op deze instellingen pagina kun je kiezen om je WordPress Core, je plugins "
|
34 |
+
"en je thema's automatisch bij te werken."
|
35 |
+
|
36 |
+
#: admin.php:16
|
37 |
+
msgid ""
|
38 |
+
"It is very important to keep your WordPress installation up to date for "
|
39 |
+
"security reasons, so unless you have a specific reason not to, we recommend "
|
40 |
+
"allowing everything to automatically update."
|
41 |
+
msgstr ""
|
42 |
+
"Het is erg belangrijk om je WordPress installatie bijgewerkt te houden voor "
|
43 |
+
"veiligheidsredenen, dus tenzij je een specifieke reden hebt, raden we aan om "
|
44 |
+
"alles automatisch bij te werken."
|
45 |
+
|
46 |
+
#: admin.php:20
|
47 |
+
msgid "A Plugin By <a href=\"%s\" target=\"_blank\">Gary</a>"
|
48 |
+
msgstr "Een plugin van <a href=\"%s\" target=\"_blank\">Gary</a>"
|
49 |
+
|
50 |
+
#: admin.php:21
|
51 |
+
msgid "Donations"
|
52 |
+
msgstr "Donaties"
|
53 |
+
|
54 |
+
#: admin.php:22
|
55 |
+
msgid "Support Forums"
|
56 |
+
msgstr "Support forums"
|
57 |
+
|
58 |
+
#: admin.php:30
|
59 |
+
msgid "You do not have sufficient permissions to access this page."
|
60 |
+
msgstr "Je hebt onvoldoende rechten om deze pagina te bekijken."
|
61 |
+
|
62 |
+
#: admin.php:37
|
63 |
+
msgid "Settings updated"
|
64 |
+
msgstr "Instellingen bijgewerkt"
|
65 |
+
|
66 |
+
#: admin.php:41
|
67 |
+
msgid ""
|
68 |
+
"Update WordPress Core automatically? <strong>(Strongly Recommended)</strong>"
|
69 |
+
msgstr ""
|
70 |
+
"WordPress core automatisch bijwerken? <strong>(Sterk aanbevolen)</strong>"
|
71 |
+
|
72 |
+
#: admin.php:42
|
73 |
+
msgid "Update your plugins automatically?"
|
74 |
+
msgstr "Plugins automatisch bijwerken?"
|
75 |
+
|
76 |
+
#: admin.php:43
|
77 |
+
msgid "Update your themes automatically?"
|
78 |
+
msgstr "Themes automatisch bijwerken?"
|
79 |
+
|
80 |
+
#: admin.php:75
|
81 |
+
msgid "SVN Support"
|
82 |
+
msgstr "SVN ondersteuning"
|
83 |
+
|
84 |
+
#: admin.php:76
|
85 |
+
msgid ""
|
86 |
+
"It looks like you're running an SVN version of WordPress, that's cool! "
|
87 |
+
"Automatic Updater can run <tt>svn up</tt> once an hour, to keep you up-to-"
|
88 |
+
"date. For safety, enabling this option will disable the normal WordPress "
|
89 |
+
"core updates."
|
90 |
+
msgstr ""
|
91 |
+
"Het ziet er naar uit dat je een SVN versie van WordPress gebruikt, wat tof! "
|
92 |
+
"Automatic Updater can eens per uur <tt>svn up</tt> draaien, om je up-to- "
|
93 |
+
"date te houden. Door deze optie aan te zetten zal voor de veiligheid het "
|
94 |
+
"normale WordPress core bijwerken uitgeschakeld worden."
|
95 |
+
|
96 |
+
#: admin.php:81
|
97 |
+
msgid ""
|
98 |
+
"The .svn directory isn't writable, so <tt>svn up</tt> will probably fail "
|
99 |
+
"when the web server runs it. You need to give the user <tt>%1s</tt> write "
|
100 |
+
"permissions to your entire WordPress install, including .svn directories."
|
101 |
+
msgstr ""
|
102 |
+
"De .svn map is niet schrijfbaar, dus <tt>svn up</tt> zal waarschijnlijk "
|
103 |
+
"mislukken als de webserver het draait. Je moet de gebruiker <tt>%1s</tt> "
|
104 |
+
"schrijf toesemmingen geven voor je hele WordPress installatie, inclusief ."
|
105 |
+
"svn mappen."
|
106 |
+
|
107 |
+
#: admin.php:84
|
108 |
+
msgid "Run <tt>svn up</tt> hourly?"
|
109 |
+
msgstr "Voer <tt>svn up</tt> ieder uur uit?"
|
110 |
+
|
111 |
+
#: admin.php:96
|
112 |
+
msgid "Debug Information"
|
113 |
+
msgstr "Debug informatie"
|
114 |
+
|
115 |
+
#: admin.php:97
|
116 |
+
msgid "Show debug information in the notification email."
|
117 |
+
msgstr "Toon debug informatie in de notificatie e-mail."
|
118 |
+
|
119 |
+
#: admin.php:98
|
120 |
+
msgid "Save Changes"
|
121 |
+
msgstr "Wijzigingen opslaan"
|
122 |
+
|
123 |
+
#: admin.php:128
|
124 |
+
msgid "Settings"
|
125 |
+
msgstr "Instellingen"
|
126 |
+
|
127 |
+
#: automatic-updater.php:32
|
128 |
+
msgid ""
|
129 |
+
"Automatic Updater requires WordPress 3.4 or higher! Please upgrade WordPress "
|
130 |
+
"manually, then reactivate Automatic Updater."
|
131 |
+
msgstr ""
|
132 |
+
"Automatic Updater vereist WordPress 3.4 of hoger! Werk WordPress alsjeblieft "
|
133 |
+
"handmatig bij, heractiveer daarna Automatic Updater."
|
134 |
+
|
135 |
+
#: automatic-updater.php:147
|
136 |
+
msgid "While trying to upgrade WordPress, we ran into the following error:"
|
137 |
+
msgstr ""
|
138 |
+
"Bij het bijwerken van WordPress, zijn we de volgende fout tegengekomen:"
|
139 |
+
|
140 |
+
#: automatic-updater.php:149 automatic-updater.php:305
|
141 |
+
msgid "We're sorry it didn't work out. Please try upgrading manually, instead."
|
142 |
+
msgstr ""
|
143 |
+
"Sorry dat het niet lukte. Voer het bijwerken alsjeblieft handmatig uit."
|
144 |
+
|
145 |
+
#: automatic-updater.php:152
|
146 |
+
msgid "We've successfully upgraded WordPress from version %1s to version %2s!"
|
147 |
+
msgstr ""
|
148 |
+
"We hebben WordPress succesvol bijgewerkt van versie %1s naar versie %2s!"
|
149 |
+
|
150 |
+
#: automatic-updater.php:153
|
151 |
+
msgid "Have fun!"
|
152 |
+
msgstr "Veel plezier!"
|
153 |
+
|
154 |
+
#: automatic-updater.php:198
|
155 |
+
msgid "We found a plugin upgrade!"
|
156 |
+
msgid_plural "We found upgrades for some plugins!"
|
157 |
+
msgstr[0] "We hebben een bijgewerkte plugin gevonden!"
|
158 |
+
msgstr[1] "We hebben bijgewerkte plugins gevonden!"
|
159 |
+
|
160 |
+
#. translators: First argument is the Plugin name, second argument is the error
|
161 |
+
#. encountered while upgrading
|
162 |
+
#: automatic-updater.php:204
|
163 |
+
msgid "%1s: We encounted an error upgrading this plugin: %2s"
|
164 |
+
msgstr "%1s: Er is een fout opgetreden bij het bijwerken van deze plugin: %2s"
|
165 |
+
|
166 |
+
#: automatic-updater.php:210 automatic-updater.php:270
|
167 |
+
msgid "%1s: Successfully upgraded from version %2s to %3s!"
|
168 |
+
msgstr "%1s: Successvol bijgewerkt van versie %2s naar %3s!"
|
169 |
+
|
170 |
+
#: automatic-updater.php:258
|
171 |
+
msgid "We found a theme upgrade!"
|
172 |
+
msgid_plural "We found upgrades for some themes!"
|
173 |
+
msgstr[0] "We hebben een bijgewerkt thema gevonden!"
|
174 |
+
msgstr[1] "We hebben bijgewerkte thema's gevonden!"
|
175 |
+
|
176 |
+
#. translators: First argument is the Theme name, second argument is the error
|
177 |
+
#. encountered while upgrading
|
178 |
+
#: automatic-updater.php:264
|
179 |
+
msgid "%1s: We encounted an error upgrading this theme: %2s"
|
180 |
+
msgstr "%1s: Er is een fout opgetreden bij het bijwerken van dit thema: %2s"
|
181 |
+
|
182 |
+
#: automatic-updater.php:299
|
183 |
+
msgid "We successfully upgraded from SVN!"
|
184 |
+
msgstr "We hebben succesvol bijgewerkt vanaf SVN!"
|
185 |
+
|
186 |
+
#: automatic-updater.php:303
|
187 |
+
msgid "While upgrading from SVN, we ran into the following error:"
|
188 |
+
msgstr "Tijdens het bijwerken vanaf SVN, kwamen we de volgende fout tegen:"
|
189 |
+
|
190 |
+
#: automatic-updater.php:319
|
191 |
+
msgid "WordPress Update: %1s"
|
192 |
+
msgstr "WordPress bijwerken: %1s"
|
193 |
+
|
194 |
+
#: automatic-updater.php:321
|
195 |
+
msgid "Howdy!"
|
196 |
+
msgstr "Hallo!"
|
197 |
+
|
198 |
+
#: automatic-updater.php:323
|
199 |
+
msgid ""
|
200 |
+
"Automatic Updater just ran on your site, %1s, with the following result:"
|
201 |
+
msgstr ""
|
202 |
+
"Automatic Updater is zojuist uitgevoerd op je site, %1s, met het volgende "
|
203 |
+
"resultaat:"
|
204 |
+
|
205 |
+
#: automatic-updater.php:329
|
206 |
+
msgid "Thanks for using the Automatic Updater plugin!"
|
207 |
+
msgstr "Bedankt voor het gebruiken van de Automatic Updater plugin!"
|
208 |
+
|
209 |
+
#: automatic-updater.php:333
|
210 |
+
msgid "Debug Information:"
|
211 |
+
msgstr "Debug informatie:"
|
212 |
+
|
213 |
+
#. Plugin URI of the plugin/theme
|
214 |
+
msgid "http://pento.net/projects/automatic-updater-for-wordpress/"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#. Description of the plugin/theme
|
218 |
+
msgid ""
|
219 |
+
"Automatically update your WordPress site, as soon as updates are released! "
|
220 |
+
"Never worry about falling behing on updating again!"
|
221 |
+
msgstr ""
|
222 |
+
"Automatisch bijwerken van je WordPress site, zodra een nieuwe versie "
|
223 |
+
"beschikbaar is!Maak je nooit meer zorgen om achterop te raken met bijwerken!"
|
224 |
+
|
225 |
+
#. Author of the plugin/theme
|
226 |
+
msgid "pento"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#. Author URI of the plugin/theme
|
230 |
+
msgid "http://pento.net/"
|
231 |
+
msgstr ""
|
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-10-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,7 +12,7 @@ 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:4 admin.php:48
|
18 |
msgid "Automatic Updater"
|
@@ -113,23 +113,27 @@ msgid ""
|
|
113 |
"manually, then reactivate Automatic Updater."
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: automatic-updater.php:
|
117 |
msgid "While trying to upgrade WordPress, we ran into the following error:"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: automatic-updater.php:
|
121 |
msgid "We're sorry it didn't work out. Please try upgrading manually, instead."
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: automatic-updater.php:
|
125 |
-
msgid "We've successfully upgraded WordPress
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: automatic-updater.php:
|
129 |
msgid "Have fun!"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: automatic-updater.php:
|
|
|
|
|
|
|
|
|
133 |
msgid "We found a plugin upgrade!"
|
134 |
msgid_plural "We found upgrades for some plugins!"
|
135 |
msgstr[0] ""
|
@@ -137,15 +141,15 @@ msgstr[1] ""
|
|
137 |
|
138 |
#. translators: First argument is the Plugin name, second argument is the error
|
139 |
#. encountered while upgrading
|
140 |
-
#: automatic-updater.php:
|
141 |
msgid "%1s: We encounted an error upgrading this plugin: %2s"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: automatic-updater.php:
|
145 |
msgid "%1s: Successfully upgraded from version %2s to %3s!"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: automatic-updater.php:
|
149 |
msgid "We found a theme upgrade!"
|
150 |
msgid_plural "We found upgrades for some themes!"
|
151 |
msgstr[0] ""
|
@@ -153,36 +157,36 @@ msgstr[1] ""
|
|
153 |
|
154 |
#. translators: First argument is the Theme name, second argument is the error
|
155 |
#. encountered while upgrading
|
156 |
-
#: automatic-updater.php:
|
157 |
msgid "%1s: We encounted an error upgrading this theme: %2s"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: automatic-updater.php:
|
161 |
msgid "We successfully upgraded from SVN!"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: automatic-updater.php:
|
165 |
msgid "While upgrading from SVN, we ran into the following error:"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: automatic-updater.php:
|
169 |
msgid "WordPress Update: %1s"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: automatic-updater.php:
|
173 |
msgid "Howdy!"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: automatic-updater.php:
|
177 |
msgid ""
|
178 |
"Automatic Updater just ran on your site, %1s, with the following result:"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: automatic-updater.php:
|
182 |
msgid "Thanks for using the Automatic Updater plugin!"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: automatic-updater.php:
|
186 |
msgid "Debug Information:"
|
187 |
msgstr ""
|
188 |
|
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\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/automatic-updater\n"
|
7 |
+
"POT-Creation-Date: 2012-10-14 11:18:57+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.6) #-#-#-#-#
|
16 |
#. Plugin Name of the plugin/theme
|
17 |
#: admin.php:4 admin.php:48
|
18 |
msgid "Automatic Updater"
|
113 |
"manually, then reactivate Automatic Updater."
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: automatic-updater.php:168
|
117 |
msgid "While trying to upgrade WordPress, we ran into the following error:"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: automatic-updater.php:170 automatic-updater.php:330
|
121 |
msgid "We're sorry it didn't work out. Please try upgrading manually, instead."
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: automatic-updater.php:173
|
125 |
+
msgid "We've successfully upgraded WordPress to the latest nightly build!"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: automatic-updater.php:174 automatic-updater.php:178
|
129 |
msgid "Have fun!"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: automatic-updater.php:177
|
133 |
+
msgid "We've successfully upgraded WordPress from version %1s to version %2s!"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: automatic-updater.php:223
|
137 |
msgid "We found a plugin upgrade!"
|
138 |
msgid_plural "We found upgrades for some plugins!"
|
139 |
msgstr[0] ""
|
141 |
|
142 |
#. translators: First argument is the Plugin name, second argument is the error
|
143 |
#. encountered while upgrading
|
144 |
+
#: automatic-updater.php:229
|
145 |
msgid "%1s: We encounted an error upgrading this plugin: %2s"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: automatic-updater.php:235 automatic-updater.php:295
|
149 |
msgid "%1s: Successfully upgraded from version %2s to %3s!"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: automatic-updater.php:283
|
153 |
msgid "We found a theme upgrade!"
|
154 |
msgid_plural "We found upgrades for some themes!"
|
155 |
msgstr[0] ""
|
157 |
|
158 |
#. translators: First argument is the Theme name, second argument is the error
|
159 |
#. encountered while upgrading
|
160 |
+
#: automatic-updater.php:289
|
161 |
msgid "%1s: We encounted an error upgrading this theme: %2s"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: automatic-updater.php:324
|
165 |
msgid "We successfully upgraded from SVN!"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: automatic-updater.php:328
|
169 |
msgid "While upgrading from SVN, we ran into the following error:"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: automatic-updater.php:344
|
173 |
msgid "WordPress Update: %1s"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: automatic-updater.php:346
|
177 |
msgid "Howdy!"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: automatic-updater.php:348
|
181 |
msgid ""
|
182 |
"Automatic Updater just ran on your site, %1s, with the following result:"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: automatic-updater.php:354
|
186 |
msgid "Thanks for using the Automatic Updater plugin!"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: automatic-updater.php:358
|
190 |
msgid "Debug Information:"
|
191 |
msgstr ""
|
192 |
|
readme.txt
CHANGED
@@ -1,17 +1,17 @@
|
|
1 |
=== Automatic Updater ===
|
2 |
Contributors: pento
|
3 |
Donate link: http://pento.net/donate/
|
4 |
-
Tags: updates, core, plugins, themes, 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!
|
11 |
|
12 |
== Description ==
|
13 |
|
14 |
-
Automatic Updater keeps your WordPress install up to date with the latest releases automatically, as soon as the update is available.
|
15 |
|
16 |
While this will be useful for the vast majority of sites, please exercise caution, particularly if you have any custom themes or plugins running on your site.
|
17 |
|
@@ -41,9 +41,14 @@ There are some Actions and Filters provided, check the [Documentation](http://pe
|
|
41 |
|
42 |
== Changelog ==
|
43 |
|
|
|
|
|
|
|
|
|
|
|
44 |
= 0.5 =
|
45 |
* ADDED: SVN support for core - if you're running WordPress from SVN, you now have the option to keep it up-to-date!
|
46 |
-
* ADDED: Norwegian Bokmål (nb_NO)
|
47 |
* ADDED: Link to the Settings page from the Plugin list
|
48 |
* UPDATED: Language POT file
|
49 |
|
1 |
=== Automatic Updater ===
|
2 |
Contributors: pento
|
3 |
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.5
|
8 |
License: GPL2+
|
9 |
|
10 |
Automatically update WordPress, your themes and plugins! Never have to click the update button again!
|
11 |
|
12 |
== Description ==
|
13 |
|
14 |
+
Automatic Updater keeps your WordPress install up to date with the latest releases automatically, as soon as the update is available. It supports updating stable releases, nightly releases, or even regular SVN checkouts!
|
15 |
|
16 |
While this will be useful for the vast majority of sites, please exercise caution, particularly if you have any custom themes or plugins running on your site.
|
17 |
|
41 |
|
42 |
== Changelog ==
|
43 |
|
44 |
+
= 0.6 =
|
45 |
+
* ADDED: Support for nightly builds
|
46 |
+
* ADDED: Dutch (nl_NL) translation. Props Trifon Rijksen
|
47 |
+
* UPDATED: Language POT file
|
48 |
+
|
49 |
= 0.5 =
|
50 |
* ADDED: SVN support for core - if you're running WordPress from SVN, you now have the option to keep it up-to-date!
|
51 |
+
* ADDED: Norwegian Bokmål (nb_NO) translation. Props [Bjørn Johansen](https://twitter.com/bjornjohansen)
|
52 |
* ADDED: Link to the Settings page from the Plugin list
|
53 |
* UPDATED: Language POT file
|
54 |
|