Version Description
- FIXED: SVN updates of WordPress core were not being triggered
- FIXED: Particularly large SVN updates could cause notification email corruption
- UPDATED: Dutch (nl_NL) translation. Props Trifon Rijksen
- UPDATED: German (de_DE) translation. Props Alexander Pfabel
Download this release
Release Info
Developer | pento |
Plugin | Advanced Automatic Updates |
Version | 0.8.2 |
Comparing to | |
See all releases |
Code changes from version 0.8.1 to 0.8.2
- automatic-updater.php +8 -8
- languages/automatic-updater-de_DE.mo +0 -0
- languages/automatic-updater-de_DE.po +244 -115
- languages/automatic-updater-nl_NL.mo +0 -0
- languages/automatic-updater-nl_NL.po +200 -80
- readme.txt +7 -1
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
|
@@ -300,7 +300,7 @@ class Automatic_Updater {
|
|
300 |
|
301 |
$message .= '<br>';
|
302 |
|
303 |
-
$debug = join(
|
304 |
|
305 |
$this->notification( $message, $debug, $upgrade_failed );
|
306 |
|
@@ -394,7 +394,7 @@ class Automatic_Updater {
|
|
394 |
|
395 |
$message .= '<br>' . esc_html__( 'Plugin authors depend on your feedback to make their plugins better, and the WordPress community depends on plugin ratings for checking the quality of a plugin. If you have a couple of minutes, click on the plugin names above, and leave a Compatibility Vote or a Rating!', 'automatic-updater' ) . '<br>';
|
396 |
|
397 |
-
$debug = join(
|
398 |
|
399 |
$this->notification( $message, $debug, $upgrade_failed );
|
400 |
|
@@ -487,7 +487,7 @@ class Automatic_Updater {
|
|
487 |
|
488 |
$message .= '<br>' . esc_html__( 'Theme authors depend on your feedback to make their plugins better, and the WordPress community depends on theme ratings for checking the quality of a theme. If you have a couple of minutes, click on the theme names above, and leave a Compatibility Vote or a Rating!', 'automatic-updater' ) . '<br>';
|
489 |
|
490 |
-
$debug = join(
|
491 |
|
492 |
$this->notification( $message, $debug, $upgrade_failed );
|
493 |
|
@@ -505,15 +505,15 @@ class Automatic_Updater {
|
|
505 |
|
506 |
$source_control = $this->under_source_control();
|
507 |
|
508 |
-
if ( $source_control['core'] &&
|
509 |
$output[] = esc_html__( 'WordPress Core:', 'automatic-updater' );
|
510 |
exec( 'svn up ' . ABSPATH, $output, $return );
|
511 |
|
|
|
|
|
512 |
if ( 0 !== strpos( $update, "At revision" ) ) {
|
513 |
$found_update = true;
|
514 |
|
515 |
-
$update = end( $output );
|
516 |
-
|
517 |
if ( 0 === $return ) {
|
518 |
$message .= esc_html__( 'We successfully upgraded WordPress Core from SVN!', 'automatic-updater' );
|
519 |
$message .= "<br><br>$update";
|
@@ -617,7 +617,7 @@ class Automatic_Updater {
|
|
617 |
|
618 |
$message .= '<br>';
|
619 |
|
620 |
-
$debug = join(
|
621 |
|
622 |
$this->notification( $message, $debug );
|
623 |
}
|
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.2
|
8 |
* Author URI: http://pento.net/
|
9 |
* License: GPL2+
|
10 |
* Text Domain: automatic-updater
|
300 |
|
301 |
$message .= '<br>';
|
302 |
|
303 |
+
$debug = join( "<br>\n", $skin->messages );
|
304 |
|
305 |
$this->notification( $message, $debug, $upgrade_failed );
|
306 |
|
394 |
|
395 |
$message .= '<br>' . esc_html__( 'Plugin authors depend on your feedback to make their plugins better, and the WordPress community depends on plugin ratings for checking the quality of a plugin. If you have a couple of minutes, click on the plugin names above, and leave a Compatibility Vote or a Rating!', 'automatic-updater' ) . '<br>';
|
396 |
|
397 |
+
$debug = join( "<br>\n", $skin->messages );
|
398 |
|
399 |
$this->notification( $message, $debug, $upgrade_failed );
|
400 |
|
487 |
|
488 |
$message .= '<br>' . esc_html__( 'Theme authors depend on your feedback to make their plugins better, and the WordPress community depends on theme ratings for checking the quality of a theme. If you have a couple of minutes, click on the theme names above, and leave a Compatibility Vote or a Rating!', 'automatic-updater' ) . '<br>';
|
489 |
|
490 |
+
$debug = join( "<br>\n", $skin->messages );
|
491 |
|
492 |
$this->notification( $message, $debug, $upgrade_failed );
|
493 |
|
505 |
|
506 |
$source_control = $this->under_source_control();
|
507 |
|
508 |
+
if ( $source_control['core'] && ! empty( $this->options['svn']['core'] ) ) {
|
509 |
$output[] = esc_html__( 'WordPress Core:', 'automatic-updater' );
|
510 |
exec( 'svn up ' . ABSPATH, $output, $return );
|
511 |
|
512 |
+
$update = end( $output );
|
513 |
+
|
514 |
if ( 0 !== strpos( $update, "At revision" ) ) {
|
515 |
$found_update = true;
|
516 |
|
|
|
|
|
517 |
if ( 0 === $return ) {
|
518 |
$message .= esc_html__( 'We successfully upgraded WordPress Core from SVN!', 'automatic-updater' );
|
519 |
$message .= "<br><br>$update";
|
617 |
|
618 |
$message .= '<br>';
|
619 |
|
620 |
+
$debug = join( "<br>\n", $output );
|
621 |
|
622 |
$this->notification( $message, $debug );
|
623 |
}
|
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.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: \n"
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: Gary Pendergast <gary@pento.net>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -20,88 +20,88 @@ msgstr ""
|
|
20 |
|
21 |
# @ automatic-updater
|
22 |
#. translators: plugin header field 'Name'
|
23 |
-
#: admin.php:
|
24 |
msgid "Automatic Updater"
|
25 |
msgstr ""
|
26 |
|
27 |
# @ automatic-updater
|
28 |
-
#: admin.php:
|
29 |
msgid "Overview"
|
30 |
msgstr "Übersicht"
|
31 |
|
32 |
# @ automatic-updater
|
33 |
-
#: admin.php:
|
34 |
msgid ""
|
35 |
"This settings page allows you to select whether you would like WordPress "
|
36 |
"Core, your plugins, and your themes to be automatically updated."
|
37 |
msgstr ""
|
38 |
-
"Auf dieser Einstellungsseite
|
39 |
-
"
|
40 |
|
41 |
# @ automatic-updater
|
42 |
-
#: admin.php:
|
43 |
msgid ""
|
44 |
"It is very important to keep your WordPress installation up to date for "
|
45 |
"security reasons, so unless you have a specific reason not to, we recommend "
|
46 |
"allowing everything to automatically update."
|
47 |
msgstr ""
|
48 |
-
"Es ist aus Sicherheitsgründen sehr wichtig
|
49 |
-
"aktuell zu halten. Sofern
|
50 |
"aktualisieren, empfehlen wir daher alles automatisch zu aktualisieren."
|
51 |
|
52 |
# @ automatic-updater
|
53 |
-
#: admin.php:
|
54 |
#, php-format
|
55 |
msgid "A Plugin By <a href=\"%s\" target=\"_blank\">Gary</a>"
|
56 |
msgstr "Ein Plugin von <a href=\"%s\" target=\"_blank\">Gary</a>"
|
57 |
|
58 |
# @ automatic-updater
|
59 |
-
#: admin.php:
|
60 |
msgid "Donations"
|
61 |
msgstr "Spenden"
|
62 |
|
63 |
# @ automatic-updater
|
64 |
-
#: admin.php:
|
65 |
msgid "Support Forums"
|
66 |
msgstr "Hilfe-Forum"
|
67 |
|
68 |
# @ automatic-updater
|
69 |
-
#: admin.php:
|
70 |
msgid "You do not have sufficient permissions to access this page."
|
71 |
msgstr ""
|
72 |
-
"
|
73 |
|
74 |
# @ automatic-updater
|
75 |
-
#: admin.php:
|
76 |
msgid "Settings updated"
|
77 |
msgstr "Einstellungen aktualisiert"
|
78 |
|
79 |
# @ automatic-updater
|
80 |
-
#: admin.php:
|
81 |
msgid ""
|
82 |
"Update WordPress Core automatically? <strong>(Strongly Recommended)</strong>"
|
83 |
msgstr ""
|
84 |
"WordPress automatisch aktualisieren? <strong>(dringend empfohlen)</strong>"
|
85 |
|
86 |
# @ automatic-updater
|
87 |
-
#: admin.php:
|
88 |
msgid "Update your plugins automatically?"
|
89 |
msgstr "Plugins automatisch aktualisieren?"
|
90 |
|
91 |
# @ automatic-updater
|
92 |
-
#: admin.php:
|
93 |
msgid "Update your themes automatically?"
|
94 |
msgstr "Themes automatisch aktualisieren?"
|
95 |
|
96 |
# @ automatic-updater
|
97 |
-
#: admin.php:
|
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:
|
105 |
msgid "Save Changes"
|
106 |
msgstr "Änderungen übernehmen"
|
107 |
|
@@ -135,60 +135,60 @@ msgid "http://pento.net/"
|
|
135 |
msgstr ""
|
136 |
|
137 |
# @ automatic-updater
|
138 |
-
#: automatic-updater.php:
|
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:
|
146 |
msgid "We're sorry it didn't work out. Please try upgrading manually, instead."
|
147 |
msgstr ""
|
148 |
-
"Leider hat etwas nicht funktioniert. Bitte
|
149 |
"stattdessen manuell durch."
|
150 |
|
151 |
# @ automatic-updater
|
152 |
-
#: automatic-updater.php:
|
153 |
msgid "Have fun!"
|
154 |
msgstr "Viel Spaß!"
|
155 |
|
156 |
# @ automatic-updater
|
157 |
-
#: automatic-updater.php:
|
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:
|
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:
|
172 |
msgid "Howdy!"
|
173 |
msgstr "Tach!"
|
174 |
|
175 |
# @ automatic-updater
|
176 |
-
#: automatic-updater.php:
|
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:
|
182 |
msgid "Debug Information:"
|
183 |
msgstr "Informationen für die Fehlersuche:"
|
184 |
|
185 |
# @ automatic-updater
|
186 |
-
#: admin.php:
|
187 |
msgid "SVN Support"
|
188 |
msgstr "SVN-Unterstützung"
|
189 |
|
190 |
# @ automatic-updater
|
191 |
-
#: admin.php:
|
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-"
|
@@ -197,109 +197,73 @@ msgid ""
|
|
197 |
msgstr ""
|
198 |
"Es sieht so aus, als ob eine SVN-Version von WordPress läuft, das ist cool! "
|
199 |
"Automatic Updater kann die <tt>SVN-Aktualisierung</tt> einmal pro Stunde "
|
200 |
-
"abrufen, um
|
201 |
"wird die Aktivierung dieser Option die normalen WordPress-Aktualisierungen "
|
202 |
"deaktivieren."
|
203 |
|
204 |
# @ automatic-updater
|
205 |
-
#: admin.php:
|
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:
|
216 |
msgid "Settings"
|
217 |
msgstr "Einstellungen"
|
218 |
|
219 |
# @ automatic-updater
|
220 |
-
#: automatic-updater.php:
|
221 |
msgid ""
|
222 |
"Automatic Updater requires WordPress 3.4 or higher! Please upgrade WordPress "
|
223 |
"manually, then reactivate Automatic Updater."
|
224 |
msgstr ""
|
225 |
-
"Automatic Updater benötigt WordPress 3.4 oder aktueller! Bitte
|
226 |
-
"
|
227 |
|
228 |
# @ automatic-updater
|
229 |
-
#: automatic-updater.php:
|
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 |
-
#:
|
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:
|
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
|
258 |
-
"diese E-Mail an eine andere E-Mail-Adresse senden
|
259 |
"hier festlegen."
|
260 |
|
261 |
# @ automatic-updater
|
262 |
-
#: admin.php:
|
263 |
msgid "Override Email Address"
|
264 |
-
msgstr ""
|
265 |
-
" \t \t\n"
|
266 |
-
"E-Mail-Adresse überschreiben"
|
267 |
|
268 |
# @ automatic-updater
|
269 |
-
#: admin.php:
|
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
|
275 |
-
"
|
276 |
|
277 |
# @ automatic-updater
|
278 |
-
#: admin.php:
|
279 |
msgid "Disable email notifications."
|
280 |
msgstr " E-Mail-Benachrichtigungen deaktivieren."
|
281 |
|
282 |
# @ automatic-updater
|
283 |
-
#:
|
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!"
|
@@ -307,20 +271,10 @@ 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:
|
324 |
#, php-format
|
325 |
msgid ""
|
326 |
"<a href=\"%1$s\">%2$s</a>: Successfully upgraded from version %3$s to %4$s!"
|
@@ -329,7 +283,7 @@ msgstr ""
|
|
329 |
"%4$s!"
|
330 |
|
331 |
# @ automatic-updater
|
332 |
-
#: automatic-updater.php:
|
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 "
|
@@ -343,17 +297,7 @@ msgstr ""
|
|
343 |
"Bewertung ab!"
|
344 |
|
345 |
# @ automatic-updater
|
346 |
-
|
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 "
|
@@ -367,19 +311,204 @@ msgstr ""
|
|
367 |
"Bewertung ab!"
|
368 |
|
369 |
# @ automatic-updater
|
370 |
-
#: automatic-updater.php:
|
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:
|
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
|
385 |
"a>, mit folgendem Ergebnis:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Automatic Updater v0.8.1\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: \n"
|
6 |
+
"PO-Revision-Date: 2012-12-02 14:34-0600\n"
|
7 |
"Last-Translator: Gary Pendergast <gary@pento.net>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
20 |
|
21 |
# @ automatic-updater
|
22 |
#. translators: plugin header field 'Name'
|
23 |
+
#: admin.php:32 admin.php:75 automatic-updater.php:0
|
24 |
msgid "Automatic Updater"
|
25 |
msgstr ""
|
26 |
|
27 |
# @ automatic-updater
|
28 |
+
#: admin.php:40
|
29 |
msgid "Overview"
|
30 |
msgstr "Übersicht"
|
31 |
|
32 |
# @ automatic-updater
|
33 |
+
#: admin.php:42
|
34 |
msgid ""
|
35 |
"This settings page allows you to select whether you would like WordPress "
|
36 |
"Core, your plugins, and your themes to be automatically updated."
|
37 |
msgstr ""
|
38 |
+
"Auf dieser Einstellungsseite kannst du wählen, ob WordPress, die Plugins und "
|
39 |
+
"deine Themes automatisch aktualisiert werden sollen."
|
40 |
|
41 |
# @ automatic-updater
|
42 |
+
#: admin.php:43
|
43 |
msgid ""
|
44 |
"It is very important to keep your WordPress installation up to date for "
|
45 |
"security reasons, so unless you have a specific reason not to, we recommend "
|
46 |
"allowing everything to automatically update."
|
47 |
msgstr ""
|
48 |
+
"Es ist aus Sicherheitsgründen sehr wichtig deine WordPress-Installation "
|
49 |
+
"aktuell zu halten. Sofern du keinen bestimmten Grund hast, nicht zu "
|
50 |
"aktualisieren, empfehlen wir daher alles automatisch zu aktualisieren."
|
51 |
|
52 |
# @ automatic-updater
|
53 |
+
#: admin.php:47
|
54 |
#, php-format
|
55 |
msgid "A Plugin By <a href=\"%s\" target=\"_blank\">Gary</a>"
|
56 |
msgstr "Ein Plugin von <a href=\"%s\" target=\"_blank\">Gary</a>"
|
57 |
|
58 |
# @ automatic-updater
|
59 |
+
#: admin.php:48
|
60 |
msgid "Donations"
|
61 |
msgstr "Spenden"
|
62 |
|
63 |
# @ automatic-updater
|
64 |
+
#: admin.php:49
|
65 |
msgid "Support Forums"
|
66 |
msgstr "Hilfe-Forum"
|
67 |
|
68 |
# @ automatic-updater
|
69 |
+
#: admin.php:57
|
70 |
msgid "You do not have sufficient permissions to access this page."
|
71 |
msgstr ""
|
72 |
+
"Du verfügst nicht über ausreichende Berechtigungen, um diese Seite zu sehen."
|
73 |
|
74 |
# @ automatic-updater
|
75 |
+
#: admin.php:64
|
76 |
msgid "Settings updated"
|
77 |
msgstr "Einstellungen aktualisiert"
|
78 |
|
79 |
# @ automatic-updater
|
80 |
+
#: admin.php:68
|
81 |
msgid ""
|
82 |
"Update WordPress Core automatically? <strong>(Strongly Recommended)</strong>"
|
83 |
msgstr ""
|
84 |
"WordPress automatisch aktualisieren? <strong>(dringend empfohlen)</strong>"
|
85 |
|
86 |
# @ automatic-updater
|
87 |
+
#: admin.php:69
|
88 |
msgid "Update your plugins automatically?"
|
89 |
msgstr "Plugins automatisch aktualisieren?"
|
90 |
|
91 |
# @ automatic-updater
|
92 |
+
#: admin.php:70
|
93 |
msgid "Update your themes automatically?"
|
94 |
msgstr "Themes automatisch aktualisieren?"
|
95 |
|
96 |
# @ automatic-updater
|
97 |
+
#: admin.php:202
|
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:203
|
105 |
msgid "Save Changes"
|
106 |
msgstr "Änderungen übernehmen"
|
107 |
|
135 |
msgstr ""
|
136 |
|
137 |
# @ automatic-updater
|
138 |
+
#: automatic-updater.php:282
|
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:525
|
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ühre die die Aktualisierung "
|
149 |
"stattdessen manuell durch."
|
150 |
|
151 |
# @ automatic-updater
|
152 |
+
#: automatic-updater.php:289 automatic-updater.php:295
|
153 |
msgid "Have fun!"
|
154 |
msgstr "Viel Spaß!"
|
155 |
|
156 |
# @ automatic-updater
|
157 |
+
#: automatic-updater.php:355
|
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:448
|
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:636
|
172 |
msgid "Howdy!"
|
173 |
msgstr "Tach!"
|
174 |
|
175 |
# @ automatic-updater
|
176 |
+
#: automatic-updater.php:650
|
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:654
|
182 |
msgid "Debug Information:"
|
183 |
msgstr "Informationen für die Fehlersuche:"
|
184 |
|
185 |
# @ automatic-updater
|
186 |
+
#: admin.php:123
|
187 |
msgid "SVN Support"
|
188 |
msgstr "SVN-Unterstützung"
|
189 |
|
190 |
# @ automatic-updater
|
191 |
+
#: admin.php:134
|
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-"
|
197 |
msgstr ""
|
198 |
"Es sieht so aus, als ob eine SVN-Version von WordPress läuft, das ist cool! "
|
199 |
"Automatic Updater kann die <tt>SVN-Aktualisierung</tt> einmal pro Stunde "
|
200 |
+
"abrufen, um dich auf dem neuesten Stand zu halten. Aus Sicherheitsgründen "
|
201 |
"wird die Aktivierung dieser Option die normalen WordPress-Aktualisierungen "
|
202 |
"deaktivieren."
|
203 |
|
204 |
# @ automatic-updater
|
205 |
+
#: admin.php:201
|
|
|
|
|
|
|
|
|
|
|
206 |
msgid "Debug Information"
|
207 |
msgstr "Informationen für die Fehlersuche"
|
208 |
|
209 |
# @ automatic-updater
|
210 |
+
#: admin.php:265
|
211 |
msgid "Settings"
|
212 |
msgstr "Einstellungen"
|
213 |
|
214 |
# @ automatic-updater
|
215 |
+
#: automatic-updater.php:134
|
216 |
msgid ""
|
217 |
"Automatic Updater requires WordPress 3.4 or higher! Please upgrade WordPress "
|
218 |
"manually, then reactivate Automatic Updater."
|
219 |
msgstr ""
|
220 |
+
"Automatic Updater benötigt WordPress 3.4 oder aktueller! Bitte aktualisiere "
|
221 |
+
"WordPress manuell und reaktiviere dann den Automatic Updater."
|
222 |
|
223 |
# @ automatic-updater
|
224 |
+
#: automatic-updater.php:288
|
225 |
msgid "We've successfully upgraded WordPress to the latest nightly build!"
|
226 |
msgstr ""
|
227 |
"Wir haben WordPress erfolgreich auf die neueste Vorversion aktualisiert!"
|
228 |
|
229 |
# @ automatic-updater
|
230 |
+
#: admin.php:97
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
231 |
msgid "Notification Email"
|
232 |
msgstr "E-Mail-Benachrichtigung"
|
233 |
|
234 |
# @ automatic-updater
|
235 |
+
#: admin.php:98
|
236 |
msgid ""
|
237 |
"By default, Automatic Updater will send an email to the Site Admin when an "
|
238 |
"update is performed. If you would like to send that email to a different "
|
239 |
"address, you can set it here."
|
240 |
msgstr ""
|
241 |
"Standardmäßig wird der Automatic Updater eine E-Mail an den Administrator "
|
242 |
+
"der Website senden, wenn eine Aktualisierung durchgeführt wurde. Wenn du "
|
243 |
+
"diese E-Mail an eine andere E-Mail-Adresse senden möchtest, kannst du das "
|
244 |
"hier festlegen."
|
245 |
|
246 |
# @ automatic-updater
|
247 |
+
#: admin.php:99
|
248 |
msgid "Override Email Address"
|
249 |
+
msgstr "E-Mail-Adresse überschreiben"
|
|
|
|
|
250 |
|
251 |
# @ automatic-updater
|
252 |
+
#: admin.php:107
|
253 |
msgid ""
|
254 |
"If you don't want to receive an email when updates are installed, you can "
|
255 |
"disable them completely."
|
256 |
msgstr ""
|
257 |
+
"Wenn du keine E-Mail erhalten möchtest, wenn Updates installiert wurden, "
|
258 |
+
"kannst du diese komplett deaktivieren."
|
259 |
|
260 |
# @ automatic-updater
|
261 |
+
#: admin.php:108
|
262 |
msgid "Disable email notifications."
|
263 |
msgstr " E-Mail-Benachrichtigungen deaktivieren."
|
264 |
|
265 |
# @ automatic-updater
|
266 |
+
#: automatic-updater.php:294
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
267 |
#, php-format
|
268 |
msgid ""
|
269 |
"We've successfully upgraded WordPress from version %1$s to version %2$s!"
|
271 |
"Wir haben WordPress erfolgreich von Version %1$s auf Version %2$s "
|
272 |
"aktualisiert!"
|
273 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
# @ automatic-updater
|
275 |
#. 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
|
276 |
#. 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
|
277 |
+
#: automatic-updater.php:382 automatic-updater.php:475
|
278 |
#, php-format
|
279 |
msgid ""
|
280 |
"<a href=\"%1$s\">%2$s</a>: Successfully upgraded from version %3$s to %4$s!"
|
283 |
"%4$s!"
|
284 |
|
285 |
# @ automatic-updater
|
286 |
+
#: automatic-updater.php:395
|
287 |
msgid ""
|
288 |
"Plugin authors depend on your feedback to make their plugins better, and the "
|
289 |
"WordPress community depends on plugin ratings for checking the quality of a "
|
297 |
"Bewertung ab!"
|
298 |
|
299 |
# @ automatic-updater
|
300 |
+
#: automatic-updater.php:488
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
msgid ""
|
302 |
"Theme authors depend on your feedback to make their plugins better, and the "
|
303 |
"WordPress community depends on theme ratings for checking the quality of a "
|
311 |
"Bewertung ab!"
|
312 |
|
313 |
# @ automatic-updater
|
314 |
+
#: automatic-updater.php:630
|
315 |
#, php-format
|
316 |
msgid "WordPress Update: %s"
|
317 |
+
msgstr "WordPress-Aktualisierung: %s"
|
|
|
|
|
318 |
|
319 |
# @ automatic-updater
|
320 |
+
#: automatic-updater.php:638
|
321 |
#, php-format
|
322 |
msgid ""
|
323 |
"Automatic Updater just ran on your site, <a href=\"%1$s\">%1$s</a>, with the "
|
324 |
"following result:"
|
325 |
msgstr ""
|
326 |
+
"Der Automatic Updater lief gerade auf deiner Website, <a href=\"%1$s\">%1$s</"
|
327 |
"a>, mit folgendem Ergebnis:"
|
328 |
+
|
329 |
+
# @ automatic-updater
|
330 |
+
#: admin.php:111
|
331 |
+
msgid "Retries"
|
332 |
+
msgstr "Wiederholungen"
|
333 |
+
|
334 |
+
# @ automatic-updater
|
335 |
+
#: admin.php:112
|
336 |
+
msgid ""
|
337 |
+
"To avoid updating when something is broken, Automatic Updater can limit the "
|
338 |
+
"number of times it will attempt to update WordPress Core, a plugin or a "
|
339 |
+
"theme. If, for example, a plugin update reaches this limit, Automatic "
|
340 |
+
"Updater will stop trying to update it until you manually install the update, "
|
341 |
+
"or a new version is released."
|
342 |
+
msgstr ""
|
343 |
+
"Um Aktualisierungun zu zu vermeiden, wenn etwas nicht funktioniert, kann der "
|
344 |
+
"Automatic Updater die Anzahl der Versuche begrenzen, um WordPress, ein "
|
345 |
+
"Plugin oder ein Thema zu aktualisieren. Wenn beispielsweise eine Plugin-"
|
346 |
+
"Aktualisierung diesen Grenzwert erreicht, stoppt der Automatisches Updater "
|
347 |
+
"den Versucht es zu aktualisieren, bis du die Aktualisierung manuell "
|
348 |
+
"installierst oder eine neue Version veröffentlicht wird."
|
349 |
+
|
350 |
+
# @ automatic-updater
|
351 |
+
#: admin.php:113
|
352 |
+
msgid "Retries Limit"
|
353 |
+
msgstr "Limit für Wiederholungen"
|
354 |
+
|
355 |
+
# @ automatic-updater
|
356 |
+
#: admin.php:133
|
357 |
+
msgid "WordPress Core"
|
358 |
+
msgstr "WordPress"
|
359 |
+
|
360 |
+
# @ automatic-updater
|
361 |
+
#: admin.php:135
|
362 |
+
msgid "Update WordPress Core hourly?"
|
363 |
+
msgstr "WordPress stündlich aktualisieren?"
|
364 |
+
|
365 |
+
# @ automatic-updater
|
366 |
+
#: admin.php:142
|
367 |
+
msgid "Plugins"
|
368 |
+
msgstr "Plugins"
|
369 |
+
|
370 |
+
# @ automatic-updater
|
371 |
+
#: admin.php:143
|
372 |
+
msgid ""
|
373 |
+
"Running plugins from SVN is great for helping plugin devs fine tune them "
|
374 |
+
"before release, so on behalf of all of us, thanks! If you see Akismet here "
|
375 |
+
"and don't have it coming from a custom repository, it will probably "
|
376 |
+
"automatically update when the WordPress Core SVN update occurs."
|
377 |
+
msgstr ""
|
378 |
+
"Das Ausführen von Plugins aus dem SVN ist ideal, um Plugin-Entwicklern beim "
|
379 |
+
"Feinabstimmung zu helfen, bevor sie ihre Plugins veröffentlichen. Also im "
|
380 |
+
"Namen von uns allen, Danke! Falls du hier Akismet siehst und es nicht aus "
|
381 |
+
"der bekannten Quelle stammt, wurde dieses wahrscheinlich automatisch "
|
382 |
+
"aktualisiert, als WordPress vom SVN aktualisiert wurde."
|
383 |
+
|
384 |
+
# @ automatic-updater
|
385 |
+
#: admin.php:158
|
386 |
+
msgid "Themes"
|
387 |
+
msgstr "Themes"
|
388 |
+
|
389 |
+
# @ automatic-updater
|
390 |
+
#: admin.php:159
|
391 |
+
msgid ""
|
392 |
+
"Running themes from SVN makes you an excellent person who makes the "
|
393 |
+
"WordPress community better - thank you! If you see any of the default Twenty "
|
394 |
+
"Ten, Eleven or Twelve themes, these will probably automatically update when "
|
395 |
+
"the WordPress Core SVN update occurs."
|
396 |
+
msgstr ""
|
397 |
+
"Dadurch, dass du Themes vom SVN verwendest macht dich zu einem großartigen "
|
398 |
+
"Menschen, der die WordPress-Community besser macht Themen aus dem SVN läuft "
|
399 |
+
"macht Sie eine hervorragende Person, die die WordPress-Community besser - "
|
400 |
+
"vielen Dank dafür! Falls du eines der Standardthemes Twenty Ten, Eleven, "
|
401 |
+
"Twelve siehst, wurde dieses wahrscheinlich automatisch aktualisiert, als "
|
402 |
+
"WordPress vom SVN aktualisiert wurde."
|
403 |
+
|
404 |
+
# @ automatic-updater
|
405 |
+
#: admin.php:175
|
406 |
+
#, php-format
|
407 |
+
msgid ""
|
408 |
+
"The items marked in red don't have their .svn directory writable, so <tt>svn "
|
409 |
+
"up</tt> will probably fail when the web server runs it. You need to give the "
|
410 |
+
"user <tt>%s</tt> write permissions to your entire WordPress install, "
|
411 |
+
"including .svn directories."
|
412 |
+
msgstr ""
|
413 |
+
"Die rot markierten Elemente haben kein beschreibbares .svn-Verzeichnis, so "
|
414 |
+
"dass die <tt>SVN-Aktualisierung</tt> wahrscheinlich fehlschlägt, wenn der "
|
415 |
+
"Web-Server diese ausgeführt wird. Du musst dem Benutzer <tt>%s</tt> "
|
416 |
+
"Schreibberechtigungen für deine gesamte WordPress-Installation geben, "
|
417 |
+
"einschließlich der .svn-Verzeichnisse."
|
418 |
+
|
419 |
+
# @ automatic-updater
|
420 |
+
#: admin.php:182
|
421 |
+
msgid "SVN Options"
|
422 |
+
msgstr "SVN-Optionen"
|
423 |
+
|
424 |
+
# @ automatic-updater
|
425 |
+
#: admin.php:183
|
426 |
+
msgid ""
|
427 |
+
"Send email on <tt>svn up</tt> success? Disabling this will cause "
|
428 |
+
"notification emails to only be sent if the <tt>svn up</tt> fails."
|
429 |
+
msgstr ""
|
430 |
+
"E-Mail bei Erfolg von <tt>SVN-Aktualisierung</tt> senden? Das Deaktivieren "
|
431 |
+
"bewirkt, dass Benachrichtigungs-E-Mails nur gesendet werden, wenn die "
|
432 |
+
"<tt>SVN-Aktualisierung</tt> scheitert."
|
433 |
+
|
434 |
+
# @ automatic-updater
|
435 |
+
#. translators: plugin header field 'Version'
|
436 |
+
#: automatic-updater.php:0
|
437 |
+
msgid "0.8.1"
|
438 |
+
msgstr ""
|
439 |
+
|
440 |
+
# @ automatic-updater
|
441 |
+
#: automatic-updater.php:284
|
442 |
+
#, php-format
|
443 |
+
msgid ""
|
444 |
+
"We're sorry it didn't work out. Please try upgrading manually, instead. This "
|
445 |
+
"is attempt %1$d of %2$d."
|
446 |
+
msgstr ""
|
447 |
+
"Sorry, leider hat es nicht funktioniert. Bitte versuche es stattdessen "
|
448 |
+
"manuell zu aktualisieren. Dies ist Versuch %1$d von %2$d."
|
449 |
+
|
450 |
+
# @ automatic-updater
|
451 |
+
#. translators: First argument is the plugin url, second argument is the Plugin name, third argument is the error encountered while upgrading. The fourth and fifth arguments refer to how many retries we've had at installing this plugin.
|
452 |
+
#: automatic-updater.php:373
|
453 |
+
#, php-format
|
454 |
+
msgid ""
|
455 |
+
"<a href=\"%1$s\">%2$s</a>: We encounted an error upgrading this plugin: %3$s "
|
456 |
+
"(Attempt %4$d of %5$d)"
|
457 |
+
msgstr ""
|
458 |
+
"<a href=\"%1$s\">%2$s</a>: Wir haben einen Fehler bei der Aktualisierung "
|
459 |
+
"dieses Plugins festgestellt: %3$s (Versuch %4$d von %5$d)"
|
460 |
+
|
461 |
+
# @ automatic-updater
|
462 |
+
#. translators: First argument is the theme URL, second argument is the Theme name, third argument is the error encountered while upgrading. The fourth and fifth arguments refer to how many retries we've had at installing this theme.
|
463 |
+
#: automatic-updater.php:466
|
464 |
+
#, php-format
|
465 |
+
msgid ""
|
466 |
+
"<a href=\"%1$s\">%2$s</a>: We encounted an error upgrading this theme: %3$s "
|
467 |
+
"(Attempt %4$d of %5$d)"
|
468 |
+
msgstr ""
|
469 |
+
"<a href=\"%1$s\">%2$s</a>: Wir haben einen Fehler bei der Aktualisierung "
|
470 |
+
"dieses Themes festgestellt: %3$s (Versuch %4$d von %5$d)"
|
471 |
+
|
472 |
+
# @ automatic-updater
|
473 |
+
#: automatic-updater.php:509
|
474 |
+
msgid "WordPress Core:"
|
475 |
+
msgstr "WordPress:"
|
476 |
+
|
477 |
+
# @ automatic-updater
|
478 |
+
#: automatic-updater.php:518
|
479 |
+
msgid "We successfully upgraded WordPress Core from SVN!"
|
480 |
+
msgstr "Wir haben WordPress erfolgreich vom SVN aktualisiert!"
|
481 |
+
|
482 |
+
# @ automatic-updater
|
483 |
+
#: automatic-updater.php:523
|
484 |
+
msgid ""
|
485 |
+
"While upgrading WordPress Core from SVN, we ran into the following error:"
|
486 |
+
msgstr ""
|
487 |
+
"Bei der Aktualisierung von WordPress Core vom SVN, stießen wir auf den "
|
488 |
+
"folgenden Fehler:"
|
489 |
+
|
490 |
+
# @ automatic-updater
|
491 |
+
#: automatic-updater.php:566
|
492 |
+
msgid "We upgraded the following plugin:"
|
493 |
+
msgid_plural "We upgraded the following plugins:"
|
494 |
+
msgstr[0] "Wir haben das folgende Plugin aktualisiert:"
|
495 |
+
msgstr[1] "Wir haben die folgenden Plugins aktualisiert:"
|
496 |
+
|
497 |
+
# @ automatic-updater
|
498 |
+
#: automatic-updater.php:605
|
499 |
+
msgid "We upgraded the following theme:"
|
500 |
+
msgid_plural "We upgraded the following themes:"
|
501 |
+
msgstr[0] "Wir haben das folgende Theme aktualisiert:"
|
502 |
+
msgstr[1] "Wir haben die folgenden Themes aktualisiert:"
|
503 |
+
|
504 |
+
# @ automatic-updater
|
505 |
+
#: automatic-updater.php:646
|
506 |
+
msgid ""
|
507 |
+
"It looks like something went wrong during the update. Note that, if "
|
508 |
+
"Automatic Updater continues to encounter problems, it will stop trying to do "
|
509 |
+
"this update, and will not try again until after you manually update."
|
510 |
+
msgstr ""
|
511 |
+
"Es sieht danach aus, als ob etwas während der Aktualisierung schief ging. "
|
512 |
+
"Beachte bitte, dass Automatic Updater, bei Problemen aufhören wird zu "
|
513 |
+
"aktualisieren und es erst wieder versuchen wird, nachdem Sie manuell "
|
514 |
+
"aktualisiert haben."
|
languages/automatic-updater-nl_NL.mo
CHANGED
Binary file
|
languages/automatic-updater-nl_NL.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Automatic Updater 0.7\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/automatic-updater\n"
|
7 |
-
"POT-Creation-Date: 2012-
|
8 |
-
"PO-Revision-Date: 2012-
|
9 |
"Last-Translator: Gary Pendergast <gary@pento.net>\n"
|
10 |
"Language-Team: Trifon Rijksen <trifon@tieptoep.nl>\n"
|
11 |
"Language: Dutch nl_NL\n"
|
@@ -15,25 +15,25 @@ msgstr ""
|
|
15 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
|
18 |
-
#. #-#-#-#-# plugin.pot (Automatic Updater 0.
|
19 |
#. Plugin Name of the plugin/theme
|
20 |
-
#: admin.php:
|
21 |
msgid "Automatic Updater"
|
22 |
-
msgstr ""
|
23 |
|
24 |
-
#: admin.php:
|
25 |
msgid "Overview"
|
26 |
msgstr "Overzicht"
|
27 |
|
28 |
-
#: admin.php:
|
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
|
35 |
|
36 |
-
#: admin.php:
|
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 "
|
@@ -43,45 +43,45 @@ msgstr ""
|
|
43 |
"veiligheidsredenen, dus tenzij je een specifieke reden hebt, raden we aan om "
|
44 |
"alles automatisch bij te werken."
|
45 |
|
46 |
-
#: admin.php:
|
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:
|
51 |
msgid "Donations"
|
52 |
msgstr "Donaties"
|
53 |
|
54 |
-
#: admin.php:
|
55 |
msgid "Support Forums"
|
56 |
msgstr "Support forums"
|
57 |
|
58 |
-
#: admin.php:
|
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:
|
63 |
msgid "Settings updated"
|
64 |
msgstr "Instellingen bijgewerkt"
|
65 |
|
66 |
-
#: admin.php:
|
67 |
msgid ""
|
68 |
"Update WordPress Core automatically? <strong>(Strongly Recommended)</strong>"
|
69 |
msgstr ""
|
70 |
-
"WordPress
|
71 |
|
72 |
-
#: admin.php:
|
73 |
msgid "Update your plugins automatically?"
|
74 |
msgstr "Plugins automatisch bijwerken?"
|
75 |
|
76 |
-
#: admin.php:
|
77 |
msgid "Update your themes automatically?"
|
78 |
-
msgstr "
|
79 |
|
80 |
-
#: admin.php:
|
81 |
msgid "Notification Email"
|
82 |
msgstr "E-mail notificatie"
|
83 |
|
84 |
-
#: admin.php:
|
85 |
msgid ""
|
86 |
"By default, Automatic Updater will send an email to the Site Admin when an "
|
87 |
"update is performed. If you would like to send that email to a different "
|
@@ -91,11 +91,11 @@ msgstr ""
|
|
91 |
"een update is uitgevoerd. Als je deze e-mail naar een ander adres wilt "
|
92 |
"sturen, kan je deze hier opgeven."
|
93 |
|
94 |
-
#: admin.php:
|
95 |
msgid "Override Email Address"
|
96 |
-
msgstr "E-
|
97 |
|
98 |
-
#: admin.php:
|
99 |
msgid ""
|
100 |
"If you don't want to receive an email when updates are installed, you can "
|
101 |
"disable them completely."
|
@@ -103,15 +103,42 @@ msgstr ""
|
|
103 |
"Als je geen e-mail wilt ontvangen nadat er updates zijn geïnstalleerd, kan "
|
104 |
"je dit uitschakelen."
|
105 |
|
106 |
-
#: admin.php:
|
107 |
msgid "Disable email notifications."
|
108 |
msgstr "E-mail notificatie uitschakelen"
|
109 |
|
110 |
-
#: admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
msgid "SVN Support"
|
112 |
msgstr "SVN ondersteuning"
|
113 |
|
114 |
-
#: admin.php:
|
|
|
|
|
|
|
|
|
115 |
msgid ""
|
116 |
"It looks like you're running an SVN version of WordPress, that's cool! "
|
117 |
"Automatic Updater can run <tt>svn up</tt> once an hour, to keep you up-to-"
|
@@ -123,38 +150,84 @@ msgstr ""
|
|
123 |
"date te houden. Door deze optie aan te zetten zal voor de veiligheid het "
|
124 |
"normale WordPress core bijwerken uitgeschakeld worden."
|
125 |
|
126 |
-
#: admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
msgid ""
|
128 |
-
"
|
129 |
-
"
|
130 |
-
"
|
|
|
131 |
msgstr ""
|
132 |
-
"
|
133 |
-
"
|
134 |
-
"
|
135 |
-
"
|
136 |
|
137 |
-
#: admin.php:
|
138 |
-
msgid "
|
139 |
-
msgstr "
|
140 |
|
141 |
-
#: admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
msgid "Debug Information"
|
143 |
msgstr "Debug informatie"
|
144 |
|
145 |
-
#: admin.php:
|
146 |
msgid "Show debug information in the notification email."
|
147 |
msgstr "Toon debug informatie in de notificatie e-mail."
|
148 |
|
149 |
-
#: admin.php:
|
150 |
msgid "Save Changes"
|
151 |
msgstr "Wijzigingen opslaan"
|
152 |
|
153 |
-
#: admin.php:
|
154 |
msgid "Settings"
|
155 |
msgstr "Instellingen"
|
156 |
|
157 |
-
#: automatic-updater.php:
|
158 |
msgid ""
|
159 |
"Automatic Updater requires WordPress 3.4 or higher! Please upgrade WordPress "
|
160 |
"manually, then reactivate Automatic Updater."
|
@@ -162,45 +235,51 @@ msgstr ""
|
|
162 |
"Automatic Updater vereist WordPress 3.4 of hoger! Werk WordPress alsjeblieft "
|
163 |
"handmatig bij, heractiveer daarna Automatic Updater."
|
164 |
|
165 |
-
#: automatic-updater.php:
|
166 |
msgid "While trying to upgrade WordPress, we ran into the following error:"
|
167 |
msgstr ""
|
168 |
"Bij het bijwerken van WordPress, zijn we de volgende fout tegengekomen:"
|
169 |
|
170 |
-
#: automatic-updater.php:
|
171 |
-
msgid "
|
|
|
|
|
172 |
msgstr ""
|
173 |
-
"Sorry dat het niet lukte. Voer het bijwerken alsjeblieft handmatig uit."
|
|
|
174 |
|
175 |
-
#: automatic-updater.php:
|
176 |
msgid "We've successfully upgraded WordPress to the latest nightly build!"
|
177 |
msgstr ""
|
178 |
"We hebben WordPress succesvol bijgewerkt naar de nieuwste nightly build!"
|
179 |
|
180 |
-
#: automatic-updater.php:
|
181 |
msgid "Have fun!"
|
182 |
msgstr "Veel plezier!"
|
183 |
|
184 |
-
#: automatic-updater.php:
|
185 |
msgid ""
|
186 |
"We've successfully upgraded WordPress from version %1$s to version %2$s!"
|
187 |
msgstr ""
|
188 |
"We hebben WordPress succesvol bijgewerkt van versie %1$s naar versie %2$s!"
|
189 |
|
190 |
-
#: automatic-updater.php:
|
191 |
msgid "We found a plugin upgrade!"
|
192 |
msgid_plural "We found upgrades for some plugins!"
|
193 |
msgstr[0] "We hebben een bijgewerkte plugin gevonden!"
|
194 |
msgstr[1] "We hebben bijgewerkte plugins gevonden!"
|
195 |
|
196 |
#. translators: First argument is the plugin url, second argument is the Plugin
|
197 |
-
#. name, third argument is the error encountered while upgrading
|
198 |
-
|
|
|
|
|
199 |
msgid ""
|
200 |
-
"<a href=\"%1$s\">%2$s</a>: We encounted an error upgrading this plugin: %3$s"
|
|
|
201 |
msgstr ""
|
202 |
"<a href=\"%1$s\">%2$s</a>: Er is een fout opgetreden bij het bijwerken van "
|
203 |
-
"deze plugin: %3$s"
|
204 |
|
205 |
#. translators: First argument is the plugin url, second argument is the Plugin
|
206 |
#. name, third argument is the old version number, fourth argument is the new
|
@@ -208,13 +287,13 @@ msgstr ""
|
|
208 |
#. translators: First argument is the theme URL, second argument is the Theme
|
209 |
#. name, third argument is the old version number, fourth argument is the new
|
210 |
#. version number
|
211 |
-
#: automatic-updater.php:
|
212 |
msgid ""
|
213 |
"<a href=\"%1$s\">%2$s</a>: Successfully upgraded from version %3$s to %4$s!"
|
214 |
msgstr ""
|
215 |
"<a href=\"%1$s\">%2$s</a>: Successvol bijgewerkt van versie %3$s naar %4$s!"
|
216 |
|
217 |
-
#: automatic-updater.php:
|
218 |
msgid ""
|
219 |
"Plugin authors depend on your feedback to make their plugins better, and the "
|
220 |
"WordPress community depends on plugin ratings for checking the quality of a "
|
@@ -227,51 +306,78 @@ msgstr ""
|
|
227 |
"klik dan op de naam van de plugin hierboven en voer een Compatability Vote "
|
228 |
"of een Rating in!"
|
229 |
|
230 |
-
#: automatic-updater.php:
|
231 |
msgid "We found a theme upgrade!"
|
232 |
msgid_plural "We found upgrades for some themes!"
|
233 |
msgstr[0] "We hebben een bijgewerkt thema gevonden!"
|
234 |
-
msgstr[1] "We hebben bijgewerkte thema
|
235 |
|
236 |
#. translators: First argument is the theme URL, second argument is the Theme
|
237 |
-
#. name, third argument is the error encountered while upgrading
|
238 |
-
|
|
|
|
|
239 |
msgid ""
|
240 |
-
"<a href=\"%1$s\">%2$s</a>: We encounted an error upgrading this theme: %3$s"
|
|
|
241 |
msgstr ""
|
242 |
"<a href=\"%1$s\">%2$s</a>: Er is een fout opgetreden bij het bijwerken van "
|
243 |
-
"dit thema: %3$s"
|
244 |
|
245 |
-
#: automatic-updater.php:
|
246 |
msgid ""
|
247 |
"Theme authors depend on your feedback to make their plugins better, and the "
|
248 |
"WordPress community depends on theme ratings for checking the quality of a "
|
249 |
"theme. If you have a couple of minutes, click on the theme names above, and "
|
250 |
"leave a Compatibility Vote or a Rating!"
|
251 |
msgstr ""
|
252 |
-
"Thema auteurs zijn afhankelijk van je feedback om hun thema
|
253 |
-
"en de WordPress gemeenschap is afhankelijk van de scores voor het "
|
254 |
"controleren van de kwaliteit van een thema. Als je een paar minuten hebt, "
|
255 |
"klik dan op de naam van het thema hierboven en voer een Compatability Vote "
|
256 |
"of een Rating in!"
|
257 |
|
258 |
-
#: automatic-updater.php:
|
259 |
-
msgid "
|
260 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
|
262 |
-
#: automatic-updater.php:
|
263 |
-
msgid "
|
264 |
-
|
|
|
|
|
265 |
|
266 |
-
#: automatic-updater.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
267 |
msgid "WordPress Update: %s"
|
268 |
msgstr "WordPress bijwerken: %s"
|
269 |
|
270 |
-
#: automatic-updater.php:
|
271 |
msgid "Howdy!"
|
272 |
msgstr "Hallo!"
|
273 |
|
274 |
-
#: automatic-updater.php:
|
275 |
msgid ""
|
276 |
"Automatic Updater just ran on your site, <a href=\"%1$s\">%1$s</a>, with the "
|
277 |
"following result:"
|
@@ -279,17 +385,28 @@ msgstr ""
|
|
279 |
"Automatic Updater is zojuist uitgevoerd op je site, <a href=\"%1$s\">%1$s</"
|
280 |
"a>, met het volgende resultaat:"
|
281 |
|
282 |
-
#: automatic-updater.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
283 |
msgid "Thanks for using the Automatic Updater plugin!"
|
284 |
msgstr "Bedankt voor het gebruiken van de Automatic Updater plugin!"
|
285 |
|
286 |
-
#: automatic-updater.php:
|
287 |
msgid "Debug Information:"
|
288 |
msgstr "Debug informatie:"
|
289 |
|
290 |
#. Plugin URI of the plugin/theme
|
291 |
msgid "http://pento.net/projects/automatic-updater-for-wordpress/"
|
292 |
-
msgstr ""
|
293 |
|
294 |
#. Description of the plugin/theme
|
295 |
msgid ""
|
@@ -301,8 +418,11 @@ msgstr ""
|
|
301 |
|
302 |
#. Author of the plugin/theme
|
303 |
msgid "pento"
|
304 |
-
msgstr ""
|
305 |
|
306 |
#. Author URI of the plugin/theme
|
307 |
msgid "http://pento.net/"
|
308 |
-
msgstr ""
|
|
|
|
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Automatic Updater 0.7\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 |
+
"PO-Revision-Date: 2012-12-02 09:12-0600\n"
|
9 |
"Last-Translator: Gary Pendergast <gary@pento.net>\n"
|
10 |
"Language-Team: Trifon Rijksen <trifon@tieptoep.nl>\n"
|
11 |
"Language: Dutch nl_NL\n"
|
15 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
|
18 |
+
#. #-#-#-#-# plugin.pot (Automatic Updater 0.8) #-#-#-#-#
|
19 |
#. Plugin Name of the plugin/theme
|
20 |
+
#: admin.php:32 admin.php:75
|
21 |
msgid "Automatic Updater"
|
22 |
+
msgstr "Automatic Updater"
|
23 |
|
24 |
+
#: admin.php:40
|
25 |
msgid "Overview"
|
26 |
msgstr "Overzicht"
|
27 |
|
28 |
+
#: admin.php:42
|
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:43
|
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 "
|
43 |
"veiligheidsredenen, dus tenzij je een specifieke reden hebt, raden we aan om "
|
44 |
"alles automatisch bij te werken."
|
45 |
|
46 |
+
#: admin.php:47
|
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:48
|
51 |
msgid "Donations"
|
52 |
msgstr "Donaties"
|
53 |
|
54 |
+
#: admin.php:49
|
55 |
msgid "Support Forums"
|
56 |
msgstr "Support forums"
|
57 |
|
58 |
+
#: admin.php:57
|
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:64
|
63 |
msgid "Settings updated"
|
64 |
msgstr "Instellingen bijgewerkt"
|
65 |
|
66 |
+
#: admin.php:68
|
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:69
|
73 |
msgid "Update your plugins automatically?"
|
74 |
msgstr "Plugins automatisch bijwerken?"
|
75 |
|
76 |
+
#: admin.php:70
|
77 |
msgid "Update your themes automatically?"
|
78 |
+
msgstr "Thema's automatisch bijwerken?"
|
79 |
|
80 |
+
#: admin.php:97
|
81 |
msgid "Notification Email"
|
82 |
msgstr "E-mail notificatie"
|
83 |
|
84 |
+
#: admin.php:98
|
85 |
msgid ""
|
86 |
"By default, Automatic Updater will send an email to the Site Admin when an "
|
87 |
"update is performed. If you would like to send that email to a different "
|
91 |
"een update is uitgevoerd. Als je deze e-mail naar een ander adres wilt "
|
92 |
"sturen, kan je deze hier opgeven."
|
93 |
|
94 |
+
#: admin.php:99
|
95 |
msgid "Override Email Address"
|
96 |
+
msgstr "E-mailadres overschrijven"
|
97 |
|
98 |
+
#: admin.php:107
|
99 |
msgid ""
|
100 |
"If you don't want to receive an email when updates are installed, you can "
|
101 |
"disable them completely."
|
103 |
"Als je geen e-mail wilt ontvangen nadat er updates zijn geïnstalleerd, kan "
|
104 |
"je dit uitschakelen."
|
105 |
|
106 |
+
#: admin.php:108
|
107 |
msgid "Disable email notifications."
|
108 |
msgstr "E-mail notificatie uitschakelen"
|
109 |
|
110 |
+
#: admin.php:111
|
111 |
+
msgid "Retries"
|
112 |
+
msgstr "Pogingen"
|
113 |
+
|
114 |
+
#: admin.php:112
|
115 |
+
msgid ""
|
116 |
+
"To avoid updating when something is broken, Automatic Updater can limit the "
|
117 |
+
"number of times it will attempt to update WordPress Core, a plugin or a "
|
118 |
+
"theme. If, for example, a plugin update reaches this limit, Automatic "
|
119 |
+
"Updater will stop trying to update it until you manually install the update, "
|
120 |
+
"or a new version is released."
|
121 |
+
msgstr ""
|
122 |
+
"Om bijwerken te voorkomen als er iets stuk is, kan Automatic Updater het "
|
123 |
+
"aantal pogingen beperken die uitgevoerd worden om WordPress Core, een plugin "
|
124 |
+
"of een thema. Als bijvoorbeeld een plugin bijwerken deze limiet bereikt "
|
125 |
+
"heeft zal Automatic Updater stoppen met proberen bij te werken, totdat er "
|
126 |
+
"een handmatig bijwerken van de plugin gedaan wordt, of er een nieuwe versie "
|
127 |
+
"uitgegeven is."
|
128 |
+
|
129 |
+
#: admin.php:113
|
130 |
+
msgid "Retries Limit"
|
131 |
+
msgstr "Aantal pogingen"
|
132 |
+
|
133 |
+
#: admin.php:123
|
134 |
msgid "SVN Support"
|
135 |
msgstr "SVN ondersteuning"
|
136 |
|
137 |
+
#: admin.php:133
|
138 |
+
msgid "WordPress Core"
|
139 |
+
msgstr "WordPress Core"
|
140 |
+
|
141 |
+
#: admin.php:134
|
142 |
msgid ""
|
143 |
"It looks like you're running an SVN version of WordPress, that's cool! "
|
144 |
"Automatic Updater can run <tt>svn up</tt> once an hour, to keep you up-to-"
|
150 |
"date te houden. Door deze optie aan te zetten zal voor de veiligheid het "
|
151 |
"normale WordPress core bijwerken uitgeschakeld worden."
|
152 |
|
153 |
+
#: admin.php:135
|
154 |
+
msgid "Update WordPress Core hourly?"
|
155 |
+
msgstr "WordPress Core ieder uur updaten?"
|
156 |
+
|
157 |
+
#: admin.php:142
|
158 |
+
msgid "Plugins"
|
159 |
+
msgstr "Plugins"
|
160 |
+
|
161 |
+
#: admin.php:143
|
162 |
msgid ""
|
163 |
+
"Running plugins from SVN is great for helping plugin devs fine tune them "
|
164 |
+
"before release, so on behalf of all of us, thanks! If you see Akismet here "
|
165 |
+
"and don't have it coming from a custom repository, it will probably "
|
166 |
+
"automatically update when the WordPress Core SVN update occurs."
|
167 |
msgstr ""
|
168 |
+
"Plugins gebruiken vanuit SVN is geweldig om plugin ontwikkelaars te helpen "
|
169 |
+
"met het bijstellen voor het uitbrengen, dus namens ons allen; bedankt! Als "
|
170 |
+
"je Akismet hier ziet en het niet van een aangepast archief gebruikt, zal het "
|
171 |
+
"waarschijnlijk automatisch bijwerken als WordPress Core SVN bijgewerkt wordt."
|
172 |
|
173 |
+
#: admin.php:158
|
174 |
+
msgid "Themes"
|
175 |
+
msgstr "Thema's"
|
176 |
|
177 |
+
#: admin.php:159
|
178 |
+
msgid ""
|
179 |
+
"Running themes from SVN makes you an excellent person who makes the "
|
180 |
+
"WordPress community better - thank you! If you see any of the default Twenty "
|
181 |
+
"Ten, Eleven or Twelve themes, these will probably automatically update when "
|
182 |
+
"the WordPress Core SVN update occurs."
|
183 |
+
msgstr ""
|
184 |
+
"Thema's gebruiken vanuit SVN maakt je een uitstekend persoon die de "
|
185 |
+
"WordPress gemeenschap beter maakt - dank je! Als je een van de standaard "
|
186 |
+
"Twenty Ten, Eleven of Twelve thema's hier ziet, zullen deze "
|
187 |
+
"waarschijnlijk automatisch bijwerken als WordPress Core SVN bijgewerkt wordt."
|
188 |
+
|
189 |
+
#: admin.php:175
|
190 |
+
msgid ""
|
191 |
+
"The items marked in red don't have their .svn directory writable, so <tt>svn "
|
192 |
+
"up</tt> will probably fail when the web server runs it. You need to give the "
|
193 |
+
"user <tt>%s</tt> write permissions to your entire WordPress install, "
|
194 |
+
"including .svn directories."
|
195 |
+
msgstr ""
|
196 |
+
"De met rood gemarkeerde items hebben hun .svn map niet schrijfbaar, dus "
|
197 |
+
"<tt>svn up</tt> zal waarschijnlijk mislukken als de webserver het draait. Je "
|
198 |
+
"moet de gebruiker <tt>%s</tt> schrijf toestemmingen geven voor je hele "
|
199 |
+
"WordPress installatie, inclusief .svn mappen."
|
200 |
+
|
201 |
+
#: admin.php:182
|
202 |
+
msgid "SVN Options"
|
203 |
+
msgstr "SVN Opties"
|
204 |
+
|
205 |
+
#: admin.php:183
|
206 |
+
msgid ""
|
207 |
+
"Send email on <tt>svn up</tt> success? Disabling this will cause "
|
208 |
+
"notification emails to only be sent if the <tt>svn up</tt> fails."
|
209 |
+
msgstr ""
|
210 |
+
"Stuur een e-mail bij succesvolle <tt>svn up</tt>? Door dit uit te schakelen "
|
211 |
+
"zal alleen een notificatie e-mail verstuurd worden als <tt>svn up</tt> "
|
212 |
+
"mislukt."
|
213 |
+
|
214 |
+
#: admin.php:201
|
215 |
msgid "Debug Information"
|
216 |
msgstr "Debug informatie"
|
217 |
|
218 |
+
#: admin.php:202
|
219 |
msgid "Show debug information in the notification email."
|
220 |
msgstr "Toon debug informatie in de notificatie e-mail."
|
221 |
|
222 |
+
#: admin.php:203
|
223 |
msgid "Save Changes"
|
224 |
msgstr "Wijzigingen opslaan"
|
225 |
|
226 |
+
#: admin.php:265
|
227 |
msgid "Settings"
|
228 |
msgstr "Instellingen"
|
229 |
|
230 |
+
#: automatic-updater.php:134
|
231 |
msgid ""
|
232 |
"Automatic Updater requires WordPress 3.4 or higher! Please upgrade WordPress "
|
233 |
"manually, then reactivate Automatic Updater."
|
235 |
"Automatic Updater vereist WordPress 3.4 of hoger! Werk WordPress alsjeblieft "
|
236 |
"handmatig bij, heractiveer daarna Automatic Updater."
|
237 |
|
238 |
+
#: automatic-updater.php:282
|
239 |
msgid "While trying to upgrade WordPress, we ran into the following error:"
|
240 |
msgstr ""
|
241 |
"Bij het bijwerken van WordPress, zijn we de volgende fout tegengekomen:"
|
242 |
|
243 |
+
#: automatic-updater.php:284
|
244 |
+
msgid ""
|
245 |
+
"We're sorry it didn't work out. Please try upgrading manually, instead. This "
|
246 |
+
"is attempt %1$d of %2$d."
|
247 |
msgstr ""
|
248 |
+
"Sorry dat het niet lukte. Voer het bijwerken alsjeblieft handmatig uit. Dit "
|
249 |
+
"is poging %1$d van %2$d."
|
250 |
|
251 |
+
#: automatic-updater.php:288
|
252 |
msgid "We've successfully upgraded WordPress to the latest nightly build!"
|
253 |
msgstr ""
|
254 |
"We hebben WordPress succesvol bijgewerkt naar de nieuwste nightly build!"
|
255 |
|
256 |
+
#: automatic-updater.php:289 automatic-updater.php:295
|
257 |
msgid "Have fun!"
|
258 |
msgstr "Veel plezier!"
|
259 |
|
260 |
+
#: automatic-updater.php:294
|
261 |
msgid ""
|
262 |
"We've successfully upgraded WordPress from version %1$s to version %2$s!"
|
263 |
msgstr ""
|
264 |
"We hebben WordPress succesvol bijgewerkt van versie %1$s naar versie %2$s!"
|
265 |
|
266 |
+
#: automatic-updater.php:351
|
267 |
msgid "We found a plugin upgrade!"
|
268 |
msgid_plural "We found upgrades for some plugins!"
|
269 |
msgstr[0] "We hebben een bijgewerkte plugin gevonden!"
|
270 |
msgstr[1] "We hebben bijgewerkte plugins gevonden!"
|
271 |
|
272 |
#. translators: First argument is the plugin url, second argument is the Plugin
|
273 |
+
#. name, third argument is the error encountered while upgrading. The fourth
|
274 |
+
#. and fifth arguments refer to how many retries we've had at installing this
|
275 |
+
#. plugin.
|
276 |
+
#: automatic-updater.php:369
|
277 |
msgid ""
|
278 |
+
"<a href=\"%1$s\">%2$s</a>: We encounted an error upgrading this plugin: %3$s "
|
279 |
+
"(Attempt %4$d of %5$d)"
|
280 |
msgstr ""
|
281 |
"<a href=\"%1$s\">%2$s</a>: Er is een fout opgetreden bij het bijwerken van "
|
282 |
+
"deze plugin: %3$s. (Poging %4$d van %5$d.)"
|
283 |
|
284 |
#. translators: First argument is the plugin url, second argument is the Plugin
|
285 |
#. name, third argument is the old version number, fourth argument is the new
|
287 |
#. translators: First argument is the theme URL, second argument is the Theme
|
288 |
#. name, third argument is the old version number, fourth argument is the new
|
289 |
#. version number
|
290 |
+
#: automatic-updater.php:378 automatic-updater.php:467
|
291 |
msgid ""
|
292 |
"<a href=\"%1$s\">%2$s</a>: Successfully upgraded from version %3$s to %4$s!"
|
293 |
msgstr ""
|
294 |
"<a href=\"%1$s\">%2$s</a>: Successvol bijgewerkt van versie %3$s naar %4$s!"
|
295 |
|
296 |
+
#: automatic-updater.php:391
|
297 |
msgid ""
|
298 |
"Plugin authors depend on your feedback to make their plugins better, and the "
|
299 |
"WordPress community depends on plugin ratings for checking the quality of a "
|
306 |
"klik dan op de naam van de plugin hierboven en voer een Compatability Vote "
|
307 |
"of een Rating in!"
|
308 |
|
309 |
+
#: automatic-updater.php:440
|
310 |
msgid "We found a theme upgrade!"
|
311 |
msgid_plural "We found upgrades for some themes!"
|
312 |
msgstr[0] "We hebben een bijgewerkt thema gevonden!"
|
313 |
+
msgstr[1] "We hebben bijgewerkte thema's gevonden!"
|
314 |
|
315 |
#. translators: First argument is the theme URL, second argument is the Theme
|
316 |
+
#. name, third argument is the error encountered while upgrading. The fourth
|
317 |
+
#. and fifth arguments refer to how many retries we've had at installing this
|
318 |
+
#. theme.
|
319 |
+
#: automatic-updater.php:458
|
320 |
msgid ""
|
321 |
+
"<a href=\"%1$s\">%2$s</a>: We encounted an error upgrading this theme: %3$s "
|
322 |
+
"(Attempt %4$d of %5$d)"
|
323 |
msgstr ""
|
324 |
"<a href=\"%1$s\">%2$s</a>: Er is een fout opgetreden bij het bijwerken van "
|
325 |
+
"dit thema: %3$s. (Poging %4$d van %5$d.)"
|
326 |
|
327 |
+
#: automatic-updater.php:480
|
328 |
msgid ""
|
329 |
"Theme authors depend on your feedback to make their plugins better, and the "
|
330 |
"WordPress community depends on theme ratings for checking the quality of a "
|
331 |
"theme. If you have a couple of minutes, click on the theme names above, and "
|
332 |
"leave a Compatibility Vote or a Rating!"
|
333 |
msgstr ""
|
334 |
+
"Thema auteurs zijn afhankelijk van je feedback om hun thema's beter te "
|
335 |
+
"maken en de WordPress gemeenschap is afhankelijk van de scores voor het "
|
336 |
"controleren van de kwaliteit van een thema. Als je een paar minuten hebt, "
|
337 |
"klik dan op de naam van het thema hierboven en voer een Compatability Vote "
|
338 |
"of een Rating in!"
|
339 |
|
340 |
+
#: automatic-updater.php:501
|
341 |
+
msgid "WordPress Core:"
|
342 |
+
msgstr "WordPress Core:"
|
343 |
+
|
344 |
+
#: automatic-updater.php:510
|
345 |
+
msgid "We successfully upgraded WordPress Core from SVN!"
|
346 |
+
msgstr "We hebben WordPress Core succesvol bijgewerkt vanuit SVN!"
|
347 |
+
|
348 |
+
#: automatic-updater.php:515
|
349 |
+
msgid ""
|
350 |
+
"While upgrading WordPress Core from SVN, we ran into the following error:"
|
351 |
+
msgstr ""
|
352 |
+
"Tijdens het bijwerken van WordPress Core vanuit SVN, kwamen we de volgende "
|
353 |
+
"fout tegen:"
|
354 |
+
|
355 |
+
#: automatic-updater.php:517
|
356 |
+
msgid "We're sorry it didn't work out. Please try upgrading manually, instead."
|
357 |
+
msgstr ""
|
358 |
+
"Sorry dat het niet lukte. Voer het bijwerken alsjeblieft handmatig uit."
|
359 |
|
360 |
+
#: automatic-updater.php:558
|
361 |
+
msgid "We upgraded the following plugin:"
|
362 |
+
msgid_plural "We upgraded the following plugins:"
|
363 |
+
msgstr[0] "We hebben de volgende plugin bijgewerkt:"
|
364 |
+
msgstr[1] "We hebben de volgende plugins bijgewerkt:"
|
365 |
|
366 |
+
#: automatic-updater.php:597
|
367 |
+
msgid "We upgraded the following theme:"
|
368 |
+
msgid_plural "We upgraded the following themes:"
|
369 |
+
msgstr[0] "We hebben het volgende thema bijgewerkt:"
|
370 |
+
msgstr[1] "We hebben de volgende thema's bijgewerkt:"
|
371 |
+
|
372 |
+
#: automatic-updater.php:622
|
373 |
msgid "WordPress Update: %s"
|
374 |
msgstr "WordPress bijwerken: %s"
|
375 |
|
376 |
+
#: automatic-updater.php:628
|
377 |
msgid "Howdy!"
|
378 |
msgstr "Hallo!"
|
379 |
|
380 |
+
#: automatic-updater.php:630
|
381 |
msgid ""
|
382 |
"Automatic Updater just ran on your site, <a href=\"%1$s\">%1$s</a>, with the "
|
383 |
"following result:"
|
385 |
"Automatic Updater is zojuist uitgevoerd op je site, <a href=\"%1$s\">%1$s</"
|
386 |
"a>, met het volgende resultaat:"
|
387 |
|
388 |
+
#: automatic-updater.php:638
|
389 |
+
msgid ""
|
390 |
+
"It looks like something went wrong during the update. Note that, if "
|
391 |
+
"Automatic Updater continues to encounter problems, it will stop trying to do "
|
392 |
+
"this update, and will not try again until after you manually update."
|
393 |
+
msgstr ""
|
394 |
+
"Het ziet er naar uit dat er iets fout ging tijdens het bijwerken. Als "
|
395 |
+
"Automatic Updater op problemen blijft stuitten, zal het ophouden met "
|
396 |
+
"proberen bij te werken en zal het niet weer proberen tot nadat er een "
|
397 |
+
"handmatig bijwerken geschied is."
|
398 |
+
|
399 |
+
#: automatic-updater.php:642
|
400 |
msgid "Thanks for using the Automatic Updater plugin!"
|
401 |
msgstr "Bedankt voor het gebruiken van de Automatic Updater plugin!"
|
402 |
|
403 |
+
#: automatic-updater.php:646
|
404 |
msgid "Debug Information:"
|
405 |
msgstr "Debug informatie:"
|
406 |
|
407 |
#. Plugin URI of the plugin/theme
|
408 |
msgid "http://pento.net/projects/automatic-updater-for-wordpress/"
|
409 |
+
msgstr "http://pento.net/projects/automatic-updater-for-wordpress/"
|
410 |
|
411 |
#. Description of the plugin/theme
|
412 |
msgid ""
|
418 |
|
419 |
#. Author of the plugin/theme
|
420 |
msgid "pento"
|
421 |
+
msgstr "pento"
|
422 |
|
423 |
#. Author URI of the plugin/theme
|
424 |
msgid "http://pento.net/"
|
425 |
+
msgstr "http://pento.net/"
|
426 |
+
|
427 |
+
#~ msgid "Run <tt>svn up</tt> hourly?"
|
428 |
+
#~ msgstr "Voer <tt>svn up</tt> ieder uur uit?"
|
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
|
8 |
License: GPL2+
|
9 |
|
10 |
Automatically update WordPress, your themes and plugins! Never have to click the update button again!
|
@@ -43,6 +43,12 @@ There are some Actions and Filters provided, check the [Documentation](http://pe
|
|
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
|
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.1
|
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.2 =
|
47 |
+
* FIXED: SVN updates of WordPress core were not being triggered
|
48 |
+
* FIXED: Particularly large SVN updates could cause notification email corruption
|
49 |
+
* UPDATED: Dutch (nl_NL) translation. Props Trifon Rijksen
|
50 |
+
* UPDATED: German (de_DE) translation. Props [Alexander Pfabel](http://alexander.pfabel.de/)
|
51 |
+
|
52 |
= 0.8.1 =
|
53 |
* UPDATED: Language POT file
|
54 |
* FIXED: Some unnecessary characters appearing in Admin when SVN isn't being used
|