Advanced Automatic Updates - Version 0.7.2

Version Description

  • ADDED: WordPress MultiSite support
  • UPDATED: German (de_DE) translation. Props Alexander Pfabel
  • FIXED: Now works properly if installed in a symlink directory
Download this release

Release Info

Developer pento
Plugin Icon wp plugin Advanced Automatic Updates
Version 0.7.2
Comparing to
See all releases

Code changes from version 0.7.1 to 0.7.2

admin.php CHANGED
@@ -1,11 +1,18 @@
1
  <?php
2
 
3
  function auto_updater_plugin_menu() {
4
- $hook = add_options_page( esc_html__( 'Automatic Updater', 'automatic-updater' ), esc_html__( 'Automatic Updater', 'automatic-updater' ), 'update_core', 'automatic-updater', 'auto_updater_settings' );
 
 
 
 
5
 
6
  add_action( "load-$hook", 'auto_updater_settings_loader' );
7
  }
8
- add_action( 'admin_menu', 'auto_updater_plugin_menu' );
 
 
 
9
 
10
  function auto_updater_settings_loader() {
11
  get_current_screen()->add_help_tab( array(
@@ -139,11 +146,14 @@ function auto_updater_save_settings() {
139
  update_option( 'automatic-updater', $options );
140
  }
141
 
142
- function auto_updater_plugin_row_meta( $links, $file ) {
143
- if( AUTOMATIC_UPDATER_BASENAME == $file ) {
144
- $links[] = '<a href="options-general.php?page=automatic-updater">' . esc_html__( 'Settings', 'automatic-updater' ) . '</a>';
145
- }
 
 
146
 
147
  return $links;
148
  }
149
- add_filter( 'plugin_row_meta', 'auto_updater_plugin_row_meta', 10, 2 );
 
1
  <?php
2
 
3
  function auto_updater_plugin_menu() {
4
+ $slug = 'options-general.php';
5
+ if ( is_multisite() )
6
+ $slug = 'settings.php';
7
+
8
+ $hook = add_submenu_page( $slug, esc_html__( 'Automatic Updater', 'automatic-updater' ), esc_html__( 'Automatic Updater', 'automatic-updater' ), 'update_core', 'automatic-updater', 'auto_updater_settings' );
9
 
10
  add_action( "load-$hook", 'auto_updater_settings_loader' );
11
  }
12
+ if ( is_multisite() )
13
+ add_action( 'network_admin_menu', 'auto_updater_plugin_menu' );
14
+ else
15
+ add_action( 'admin_menu', 'auto_updater_plugin_menu' );
16
 
17
  function auto_updater_settings_loader() {
18
  get_current_screen()->add_help_tab( array(
146
  update_option( 'automatic-updater', $options );
147
  }
148
 
149
+ function auto_updater_plugin_row_links( $links ) {
150
+ $url = admin_url( 'options-general.php?page=automatic-updater' );
151
+ if ( is_multisite() )
152
+ $url = network_admin_url( 'settings.php?page=automatic-updater' );
153
+
154
+ array_unshift( $links, "<a href='$url'>" . esc_html__( 'Settings', 'automatic-updater' ) . '</a>' );
155
 
156
  return $links;
157
  }
158
+ add_filter( 'plugin_action_links_' . AUTOMATIC_UPDATER_BASENAME, 'auto_updater_plugin_row_links' );
159
+ add_filter( 'network_admin_plugin_action_links_' . AUTOMATIC_UPDATER_BASENAME, 'auto_updater_plugin_row_links' );
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.7.1
8
  * Author URI: http://pento.net/
9
  * License: GPL2+
10
  * Text Domain: automatic-updater
@@ -14,7 +14,16 @@
14
  global $auto_updater_running;
15
  $auto_updater_running = false;
16
 
17
- define( 'AUTOMATIC_UPDATER_BASENAME', plugin_basename( __FILE__ ) );
 
 
 
 
 
 
 
 
 
18
 
19
  function auto_updater_requires_wordpress_version() {
20
  if ( version_compare( $GLOBALS['wp_version'], '3.4', '<' ) ) {
@@ -33,6 +42,9 @@ function auto_updater_disabled_notice() {
33
  }
34
 
35
  function auto_updater_init() {
 
 
 
36
  if ( is_admin() )
37
  include_once( dirname( __FILE__ ) . '/admin.php' );
38
 
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.7.2
8
  * Author URI: http://pento.net/
9
  * License: GPL2+
10
  * Text Domain: automatic-updater
14
  global $auto_updater_running;
15
  $auto_updater_running = false;
16
 
17
+ $automatic_updater_file = __FILE__;
18
+
19
+ if ( isset( $plugin ) )
20
+ $automatic_updater_file = $plugin;
21
+ else if ( isset( $mu_plugin ) )
22
+ $automatic_updater_file = $mu_plugin;
23
+ else if ( isset( $network_plugin ) )
24
+ $automatic_updater_file = $network_plugin;
25
+
26
+ define( 'AUTOMATIC_UPDATER_BASENAME', plugin_basename( $automatic_updater_file ) );
27
 
28
  function auto_updater_requires_wordpress_version() {
29
  if ( version_compare( $GLOBALS['wp_version'], '3.4', '<' ) ) {
42
  }
43
 
44
  function auto_updater_init() {
45
+ if ( is_multisite() && ! is_main_site() )
46
+ return;
47
+
48
  if ( is_admin() )
49
  include_once( dirname( __FILE__ ) . '/admin.php' );
50
 
languages/automatic-updater-de_DE.mo CHANGED
Binary file
languages/automatic-updater-de_DE.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Automatic Updater v0.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2012-10-17 11:09+1000\n"
7
  "Last-Translator: Gary Pendergast <gary@pento.net>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -94,14 +94,14 @@ msgid "Update your themes automatically?"
94
  msgstr "Themes automatisch aktualisieren?"
95
 
96
  # @ automatic-updater
97
- #: admin.php:97
98
  msgid "Show debug information in the notification email."
99
  msgstr ""
100
  "Informationen für die Fehlerbehebung in der Benachrichtigungs-E-Mail "
101
  "anzeigen."
102
 
103
  # @ automatic-updater
104
- #: admin.php:98
105
  msgid "Save Changes"
106
  msgstr "Änderungen übernehmen"
107
 
@@ -135,103 +135,60 @@ msgid "http://pento.net/"
135
  msgstr ""
136
 
137
  # @ automatic-updater
138
- #: automatic-updater.php:168
139
  msgid "While trying to upgrade WordPress, we ran into the following error:"
140
  msgstr ""
141
  "Beim Versuch WordPress zu aktualisieren, wurde die folgende Fehlermeldung "
142
  "ausgegeben:"
143
 
144
  # @ automatic-updater
145
- #: automatic-updater.php:170 automatic-updater.php:330
146
  msgid "We're sorry it didn't work out. Please try upgrading manually, instead."
147
  msgstr ""
148
  "Leider hat etwas nicht funktioniert. Bitte führen Sie die Aktualisierung "
149
  "stattdessen manuell durch."
150
 
151
  # @ automatic-updater
152
- #: automatic-updater.php:177
153
- #, php-format
154
- msgid "We've successfully upgraded WordPress from version %1s to version %2s!"
155
- msgstr ""
156
- "Wir haben WordPress erfolgreich von Version% 1s auf Version% 2s aktualisiert!"
157
-
158
- # @ automatic-updater
159
- #: automatic-updater.php:174 automatic-updater.php:178
160
  msgid "Have fun!"
161
  msgstr "Viel Spaß!"
162
 
163
  # @ automatic-updater
164
- #: automatic-updater.php:223
165
  msgid "We found a plugin upgrade!"
166
  msgid_plural "We found upgrades for some plugins!"
167
  msgstr[0] "Wir haben eine Aktualisierung für ein Plugin gefunden!"
168
  msgstr[1] "Wir haben Aktualisierungen für einige Plugins gefunden!"
169
 
170
  # @ automatic-updater
171
- #. translators: First argument is the Plugin name, second argument is the error encountered while upgrading
172
- #: automatic-updater.php:229
173
- #, php-format
174
- msgid "%1s: We encounted an error upgrading this plugin: %2s"
175
- msgstr "%1s: Ein Fehler ist beim Aktualisieren dieses Plugins aufgetreten: %2s"
176
-
177
- # @ automatic-updater
178
- #: automatic-updater.php:235 automatic-updater.php:295
179
- #, php-format
180
- msgid "%1s: Successfully upgraded from version %2s to %3s!"
181
- msgstr "%1s: Erfolgreich von Version %2s auf %3s aktualisiert!"
182
-
183
- # @ automatic-updater
184
- #: automatic-updater.php:283
185
  msgid "We found a theme upgrade!"
186
  msgid_plural "We found upgrades for some themes!"
187
  msgstr[0] "Wir haben eine Aktualisierung für ein Theme gefunden!"
188
  msgstr[1] "Wir haben Aktualisierungen für einige Themes gefunden!"
189
 
190
  # @ automatic-updater
191
- #. translators: First argument is the Theme name, second argument is the error encountered while upgrading
192
- #: automatic-updater.php:289
193
- #, php-format
194
- msgid "%1s: We encounted an error upgrading this theme: %2s"
195
- msgstr ""
196
- "%1s: Beim Aktualisieren ist bei diesem Theme ein Fehler aufgetreten: %2s"
197
-
198
- # @ automatic-updater
199
- #: automatic-updater.php:344
200
- #, php-format
201
- msgid "WordPress Update: %1s"
202
- msgstr "WordPress-Aktualisierung: %1s"
203
-
204
- # @ automatic-updater
205
- #: automatic-updater.php:346
206
  msgid "Howdy!"
207
  msgstr "Tach!"
208
 
209
  # @ automatic-updater
210
- #: automatic-updater.php:348
211
- #, php-format
212
- msgid ""
213
- "Automatic Updater just ran on your site, %1s, with the following result:"
214
- msgstr ""
215
- "Der Automatic Updater hat soeben Ihre Website mit der URL %1s mit folgendem "
216
- "Ergebnis übergeprüft:"
217
-
218
- # @ automatic-updater
219
- #: automatic-updater.php:354
220
  msgid "Thanks for using the Automatic Updater plugin!"
221
  msgstr "Vielen Dank für den Einsatz des Automatic Updater Plugins!"
222
 
223
  # @ automatic-updater
224
- #: automatic-updater.php:358
225
  msgid "Debug Information:"
226
  msgstr "Informationen für die Fehlersuche:"
227
 
228
  # @ automatic-updater
229
- #: admin.php:75
230
  msgid "SVN Support"
231
  msgstr "SVN-Unterstützung"
232
 
233
  # @ automatic-updater
234
- #: admin.php:76
235
  msgid ""
236
  "It looks like you're running an SVN version of WordPress, that's cool! "
237
  "Automatic Updater can run <tt>svn up</tt> once an hour, to keep you up-to-"
@@ -245,39 +202,20 @@ msgstr ""
245
  "deaktivieren."
246
 
247
  # @ automatic-updater
248
- #: admin.php:81
249
- #, php-format
250
- msgid ""
251
- "The .svn directory isn't writable, so <tt>svn up</tt> will probably fail "
252
- "when the web server runs it. You need to give the user <tt>%1s</tt> write "
253
- "permissions to your entire WordPress install, including .svn directories."
254
- msgstr ""
255
- "Das .svn-Verzeichnis ist nicht beschreibbar, deshalb wird die <tt>SVN-"
256
- "Aktualisierung</tt> wahrscheinlich fehlschlagen, wenn der Web-Server diese "
257
- "abruft. Sie müssen dem Benutzer <tt>%1s</tt> Schreibrechte auf Ihre gesamte "
258
- "WordPress-Installation einräumen, einschließlich den .svn-Verzeichnissen."
259
-
260
- # @ automatic-updater
261
- #: admin.php:84
262
  msgid "Run <tt>svn up</tt> hourly?"
263
  msgstr "Die <tt>SVN-Aktualisierung</tt> stündlich ausführen?"
264
 
265
  # @ automatic-updater
266
- #: admin.php:96
267
  msgid "Debug Information"
268
  msgstr "Informationen für die Fehlersuche"
269
 
270
  # @ automatic-updater
271
- #: admin.php:128
272
  msgid "Settings"
273
  msgstr "Einstellungen"
274
 
275
- # @ automatic-updater
276
- #. translators: plugin header field 'Version'
277
- #: automatic-updater.php:0
278
- msgid "0.6"
279
- msgstr ""
280
-
281
  # @ automatic-updater
282
  #: automatic-updater.php:32
283
  msgid ""
@@ -288,17 +226,160 @@ msgstr ""
288
  "Sie WordPress manuell und reaktivieren Sie dann den Automatic Updater."
289
 
290
  # @ automatic-updater
291
- #: automatic-updater.php:173
292
  msgid "We've successfully upgraded WordPress to the latest nightly build!"
293
  msgstr ""
294
  "Wir haben WordPress erfolgreich auf die neueste Vorversion aktualisiert!"
295
 
296
  # @ automatic-updater
297
- #: automatic-updater.php:324
298
  msgid "We successfully upgraded from SVN!"
299
  msgstr "Wir haben erfolgreich vom SVN aktualisiert!"
300
 
301
  # @ automatic-updater
302
- #: automatic-updater.php:328
303
  msgid "While upgrading from SVN, we ran into the following error:"
304
  msgstr "Bei der Aktualisierung vom SVN, ist der folgende Fehler aufgetreten:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Automatic Updater v0.7.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2012-11-22 00:59-0800\n"
7
  "Last-Translator: Gary Pendergast <gary@pento.net>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
94
  msgstr "Themes automatisch aktualisieren?"
95
 
96
  # @ automatic-updater
97
+ #: admin.php:109
98
  msgid "Show debug information in the notification email."
99
  msgstr ""
100
  "Informationen für die Fehlerbehebung in der Benachrichtigungs-E-Mail "
101
  "anzeigen."
102
 
103
  # @ automatic-updater
104
+ #: admin.php:110
105
  msgid "Save Changes"
106
  msgstr "Änderungen übernehmen"
107
 
135
  msgstr ""
136
 
137
  # @ automatic-updater
138
+ #: automatic-updater.php:182
139
  msgid "While trying to upgrade WordPress, we ran into the following error:"
140
  msgstr ""
141
  "Beim Versuch WordPress zu aktualisieren, wurde die folgende Fehlermeldung "
142
  "ausgegeben:"
143
 
144
  # @ automatic-updater
145
+ #: automatic-updater.php:184 automatic-updater.php:352
146
  msgid "We're sorry it didn't work out. Please try upgrading manually, instead."
147
  msgstr ""
148
  "Leider hat etwas nicht funktioniert. Bitte führen Sie die Aktualisierung "
149
  "stattdessen manuell durch."
150
 
151
  # @ automatic-updater
152
+ #: automatic-updater.php:188 automatic-updater.php:192
 
 
 
 
 
 
 
153
  msgid "Have fun!"
154
  msgstr "Viel Spaß!"
155
 
156
  # @ automatic-updater
157
+ #: automatic-updater.php:237
158
  msgid "We found a plugin upgrade!"
159
  msgid_plural "We found upgrades for some plugins!"
160
  msgstr[0] "Wir haben eine Aktualisierung für ein Plugin gefunden!"
161
  msgstr[1] "Wir haben Aktualisierungen für einige Plugins gefunden!"
162
 
163
  # @ automatic-updater
164
+ #: automatic-updater.php:301
 
 
 
 
 
 
 
 
 
 
 
 
 
165
  msgid "We found a theme upgrade!"
166
  msgid_plural "We found upgrades for some themes!"
167
  msgstr[0] "Wir haben eine Aktualisierung für ein Theme gefunden!"
168
  msgstr[1] "Wir haben Aktualisierungen für einige Themes gefunden!"
169
 
170
  # @ automatic-updater
171
+ #: automatic-updater.php:376
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  msgid "Howdy!"
173
  msgstr "Tach!"
174
 
175
  # @ automatic-updater
176
+ #: automatic-updater.php:384
 
 
 
 
 
 
 
 
 
177
  msgid "Thanks for using the Automatic Updater plugin!"
178
  msgstr "Vielen Dank für den Einsatz des Automatic Updater Plugins!"
179
 
180
  # @ automatic-updater
181
+ #: automatic-updater.php:388
182
  msgid "Debug Information:"
183
  msgstr "Informationen für die Fehlersuche:"
184
 
185
  # @ automatic-updater
186
+ #: admin.php:87
187
  msgid "SVN Support"
188
  msgstr "SVN-Unterstützung"
189
 
190
  # @ automatic-updater
191
+ #: admin.php:88
192
  msgid ""
193
  "It looks like you're running an SVN version of WordPress, that's cool! "
194
  "Automatic Updater can run <tt>svn up</tt> once an hour, to keep you up-to-"
202
  "deaktivieren."
203
 
204
  # @ automatic-updater
205
+ #: admin.php:96
 
 
 
 
 
 
 
 
 
 
 
 
 
206
  msgid "Run <tt>svn up</tt> hourly?"
207
  msgstr "Die <tt>SVN-Aktualisierung</tt> stündlich ausführen?"
208
 
209
  # @ automatic-updater
210
+ #: admin.php:108
211
  msgid "Debug Information"
212
  msgstr "Informationen für die Fehlersuche"
213
 
214
  # @ automatic-updater
215
+ #: admin.php:144
216
  msgid "Settings"
217
  msgstr "Einstellungen"
218
 
 
 
 
 
 
 
219
  # @ automatic-updater
220
  #: automatic-updater.php:32
221
  msgid ""
226
  "Sie WordPress manuell und reaktivieren Sie dann den Automatic Updater."
227
 
228
  # @ automatic-updater
229
+ #: automatic-updater.php:187
230
  msgid "We've successfully upgraded WordPress to the latest nightly build!"
231
  msgstr ""
232
  "Wir haben WordPress erfolgreich auf die neueste Vorversion aktualisiert!"
233
 
234
  # @ automatic-updater
235
+ #: automatic-updater.php:346
236
  msgid "We successfully upgraded from SVN!"
237
  msgstr "Wir haben erfolgreich vom SVN aktualisiert!"
238
 
239
  # @ automatic-updater
240
+ #: automatic-updater.php:350
241
  msgid "While upgrading from SVN, we ran into the following error:"
242
  msgstr "Bei der Aktualisierung vom SVN, ist der folgende Fehler aufgetreten:"
243
+
244
+ # @ automatic-updater
245
+ #: admin.php:70
246
+ msgid "Notification Email"
247
+ msgstr "E-Mail-Benachrichtigung"
248
+
249
+ # @ automatic-updater
250
+ #: admin.php:71
251
+ msgid ""
252
+ "By default, Automatic Updater will send an email to the Site Admin when an "
253
+ "update is performed. If you would like to send that email to a different "
254
+ "address, you can set it here."
255
+ msgstr ""
256
+ "Standardmäßig wird der Automatic Updater eine E-Mail an den Administrator "
257
+ "der Website senden, wenn eine Aktualisierung durchgeführt wurde. Wenn Sie "
258
+ "diese E-Mail an eine andere E-Mail-Adresse senden möchten, können Sie es "
259
+ "hier festlegen."
260
+
261
+ # @ automatic-updater
262
+ #: admin.php:72
263
+ msgid "Override Email Address"
264
+ msgstr ""
265
+ " \t \t\n"
266
+ "E-Mail-Adresse überschreiben"
267
+
268
+ # @ automatic-updater
269
+ #: admin.php:78
270
+ msgid ""
271
+ "If you don't want to receive an email when updates are installed, you can "
272
+ "disable them completely."
273
+ msgstr ""
274
+ "Wenn Sie keine eine E-Mail erhalten möchten, wenn Updates installiert "
275
+ "wurden, können Sie diese komplett deaktivieren."
276
+
277
+ # @ automatic-updater
278
+ #: admin.php:79
279
+ msgid "Disable email notifications."
280
+ msgstr " E-Mail-Benachrichtigungen deaktivieren."
281
+
282
+ # @ automatic-updater
283
+ #: admin.php:93
284
+ #, php-format
285
+ msgid ""
286
+ "The .svn directory isn't writable, so <tt>svn up</tt> will probably fail "
287
+ "when the web server runs it. You need to give the user <tt>%s</tt> write "
288
+ "permissions to your entire WordPress install, including .svn directories."
289
+ msgstr ""
290
+ "Das .svn-Verzeichnis ist nicht beschreibbar, so dass <tt>SVN-Aktualisierung</"
291
+ "tt> wahrscheinlich fehlschlägt, wenn es der Webserver ausführt. Sie müssen "
292
+ "dem Benutzer <tt>%s</tt> Schreibberechtigungen für Ihre gesamte WordPress-"
293
+ "Installation einschließlich des .svn-Verzeichnisse geben."
294
+
295
+ # @ automatic-updater
296
+ #. translators: plugin header field 'Version'
297
+ #: automatic-updater.php:0
298
+ msgid "0.7.1"
299
+ msgstr ""
300
+
301
+ # @ automatic-updater
302
+ #: automatic-updater.php:191
303
+ #, php-format
304
+ msgid ""
305
+ "We've successfully upgraded WordPress from version %1$s to version %2$s!"
306
+ msgstr ""
307
+ "Wir haben WordPress erfolgreich von Version %1$s auf Version %2$s "
308
+ "aktualisiert!"
309
+
310
+ # @ automatic-updater
311
+ #. translators: First argument is the plugin url, second argument is the Plugin name, third argument is the error encountered while upgrading
312
+ #: automatic-updater.php:243
313
+ #, php-format
314
+ msgid ""
315
+ "<a href=\"%1$s\">%2$s</a>: We encounted an error upgrading this plugin: %3$s"
316
+ msgstr ""
317
+ "<a href=\"%1$s\">%2$s</a>: Wir haben bei der Aktualisierung dieses Plugin "
318
+ "einen Fehler festgestellt: %3$s"
319
+
320
+ # @ automatic-updater
321
+ #. translators: First argument is the plugin url, second argument is the Plugin name, third argument is the old version number, fourth argument is the new version number
322
+ #. translators: First argument is the theme URL, second argument is the Theme name, third argument is the old version number, fourth argument is the new version number
323
+ #: automatic-updater.php:250 automatic-updater.php:314
324
+ #, php-format
325
+ msgid ""
326
+ "<a href=\"%1$s\">%2$s</a>: Successfully upgraded from version %3$s to %4$s!"
327
+ msgstr ""
328
+ "< a href=\"%1$s\">%2$s</a>: Erfolgreich aktualisierte von Version %3$s auf "
329
+ "%4$s!"
330
+
331
+ # @ automatic-updater
332
+ #: automatic-updater.php:260
333
+ msgid ""
334
+ "Plugin authors depend on your feedback to make their plugins better, and the "
335
+ "WordPress community depends on plugin ratings for checking the quality of a "
336
+ "plugin. If you have a couple of minutes, click on the plugin names above, "
337
+ "and leave a Compatibility Vote or a Rating!"
338
+ msgstr ""
339
+ "Plugin-Autoren benötigen dein Feedback, um ihre Plugins zu verbessern und "
340
+ "die WordPress-Community benötigt Plugin-Ratings, um die Qualität eines "
341
+ "Plugins feststellen zu können. Nimm dir bitte ein wenig Zeit, klicke oben "
342
+ "auf den Plugin-Namen und gib deine Einschätzung zur Kompatibilität oder eine "
343
+ "Bewertung ab!"
344
+
345
+ # @ automatic-updater
346
+ #. translators: First argument is the theme URL, second argument is the Theme name, third argument is the error encountered while upgrading
347
+ #: automatic-updater.php:307
348
+ #, php-format
349
+ msgid ""
350
+ "<a href=\"%1$s\">%2$s</a>: We encounted an error upgrading this theme: %3$s"
351
+ msgstr ""
352
+ "<a href=\"%1$s\">%2$s</a>: Wir haben beim Aktualisieren dieses Themes einen "
353
+ "Fehler festgestellt: %3$s"
354
+
355
+ # @ automatic-updater
356
+ #: automatic-updater.php:324
357
+ msgid ""
358
+ "Theme authors depend on your feedback to make their plugins better, and the "
359
+ "WordPress community depends on theme ratings for checking the quality of a "
360
+ "theme. If you have a couple of minutes, click on the theme names above, and "
361
+ "leave a Compatibility Vote or a Rating!"
362
+ msgstr ""
363
+ "Theme-Autoren benötigen dein Feedback, um ihre Themes zu verbessern und die "
364
+ "WordPress-Community benötigt Theme-Ratings, um die Qualität eines Themes "
365
+ "feststellen zu können. Nimm dir bitte ein wenig Zeit, klicke oben auf den "
366
+ "Theme-Namen und gib deine Einschätzung zur Kompatibilität oder eine "
367
+ "Bewertung ab!"
368
+
369
+ # @ automatic-updater
370
+ #: automatic-updater.php:370
371
+ #, php-format
372
+ msgid "WordPress Update: %s"
373
+ msgstr ""
374
+ " \t\n"
375
+ "WordPress-Aktualisierung: %s"
376
+
377
+ # @ automatic-updater
378
+ #: automatic-updater.php:378
379
+ #, php-format
380
+ msgid ""
381
+ "Automatic Updater just ran on your site, <a href=\"%1$s\">%1$s</a>, with the "
382
+ "following result:"
383
+ msgstr ""
384
+ "Der Automatic Updater lief gerade auf Ihrer Website, <a href=\"%1$s\">%1$s</"
385
+ "a>, mit folgendem Ergebnis:"
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.7
8
  License: GPL2+
9
 
10
  Automatically update WordPress, your themes and plugins! Never have to click the update button again!
@@ -13,6 +13,8 @@ Automatically update WordPress, your themes and plugins! Never have to click the
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
 
18
  You should also be aware that this will only work on WordPress installs that have the appropriate file permissions to update through the web interface - it will not work if you usually FTP updates to your server.
@@ -41,6 +43,11 @@ There are some Actions and Filters provided, check the [Documentation](http://pe
41
 
42
  == Changelog ==
43
 
 
 
 
 
 
44
  = 0.7.1 =
45
  * UPDATED: Italian (it_IT) translation. Props Stefano Giolo
46
  * UPDATED: Dutch (nl_NL) translation. Props Trifon Rijksen
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.7.1
8
  License: GPL2+
9
 
10
  Automatically update WordPress, your themes and plugins! Never have to click the update button again!
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
+ If you're working on a WordPress Multisite install, it will properly restrict the options page to your Network Admin.
17
+
18
  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.
19
 
20
  You should also be aware that this will only work on WordPress installs that have the appropriate file permissions to update through the web interface - it will not work if you usually FTP updates to your server.
43
 
44
  == Changelog ==
45
 
46
+ = 0.7.2 =
47
+ * ADDED: WordPress MultiSite support
48
+ * UPDATED: German (de_DE) translation. Props [Alexander Pfabel](http://alexander.pfabel.de/)
49
+ * FIXED: Now works properly if installed in a symlink directory
50
+
51
  = 0.7.1 =
52
  * UPDATED: Italian (it_IT) translation. Props Stefano Giolo
53
  * UPDATED: Dutch (nl_NL) translation. Props Trifon Rijksen