Advanced Automatic Updates - Version 0.9.1

Version Description

  • UPDATED: Language POT file
  • UPDATED: German (de_DE) translation. Props Alexander Pfabel
  • UPDATED: Dutch (nl_NL) translation. Props Trifon Rijksen
  • FIXED: If the svn up output was empty, don't send an update email
  • FIXED: Removed pass-by-reference, it's too old school for @wonderboymusic
  • FIXED: The settings link was incorrect in Multisite
Download this release

Release Info

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

Code changes from version 0.9 to 0.9.1

admin.php CHANGED
@@ -3,6 +3,7 @@
3
  class Automatic_Updater_Admin {
4
  private $automatic_updater;
5
  private $adminPage;
 
6
 
7
  function init( $automatic_updater ) {
8
  static $instance = false;
@@ -18,24 +19,28 @@ class Automatic_Updater_Admin {
18
 
19
  if ( is_multisite() ) {
20
  $this->adminPage = 'settings.php';
21
- add_action( 'network_admin_menu', array( &$this, 'plugin_menu' ) );
 
 
22
  } else {
23
  $this->adminPage = 'options-general.php';
24
- add_action( 'admin_menu', array( &$this, 'plugin_menu' ) );
 
 
25
  }
26
 
27
- add_action( 'wp_ajax_automatic-updater-hide-connection-warning', array( &$this, 'ajax_hide_connection_warning' ) );
28
 
29
- add_filter( 'plugin_action_links_' . Automatic_Updater::$basename, array( &$this, 'plugin_row_links' ) );
30
- add_filter( 'network_admin_plugin_action_links_' . Automatic_Updater::$basename, array( &$this, 'plugin_row_links' ) );
31
  }
32
 
33
  function plugin_menu() {
34
- $hook = add_submenu_page( $this->adminPage, esc_html__( 'Automatic Updater', 'automatic-updater' ), esc_html__( 'Automatic Updater', 'automatic-updater' ), 'update_core', 'automatic-updater', array( &$this, 'settings' ) );
35
 
36
- add_action( "load-$hook", array( &$this, 'settings_loader' ) );
37
 
38
- add_action( "admin_footer-$hook", array( &$this, 'footer' ) );
39
  }
40
 
41
  function settings_loader() {
@@ -92,7 +97,7 @@ class Automatic_Updater_Admin {
92
  $method = get_filesystem_method();
93
  if ( 'direct' !== $method && ! defined( 'FTP_USER' ) ) {
94
  // Using a remote login method, and the upgrade info probably isn't defined
95
- $admin_url = wp_nonce_url( admin_url( "{$this->adminPage}?page=automatic-updater&action=hide-connection-warning" ), 'automatic-updater-hide-connection-warning' );
96
  ?>
97
  <div class="updated">
98
  <p><?php echo wp_kses( sprintf( __( 'It looks like Automatic Updater may not be able to run automatically, due to not having permission to write to the WordPress directory, or connect to the server over FTP. If you usually upgrade by entering your FTP login details, please read <a href="%s">this documentation</a> on storing your connection details.', 'automatic-updater' ), 'http://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants' ), array( 'a' => array( 'href' => array() ) ) ); ?></p>
@@ -322,9 +327,7 @@ class Automatic_Updater_Admin {
322
  }
323
 
324
  function plugin_row_links( $links ) {
325
- $url = admin_url( "{$this->adminPage}?page=automatic-updater" );
326
-
327
- array_unshift( $links, "<a href='$url'>" . esc_html__( 'Settings', 'automatic-updater' ) . '</a>' );
328
 
329
  return $links;
330
  }
3
  class Automatic_Updater_Admin {
4
  private $automatic_updater;
5
  private $adminPage;
6
+ private $adminUrl;
7
 
8
  function init( $automatic_updater ) {
9
  static $instance = false;
19
 
20
  if ( is_multisite() ) {
21
  $this->adminPage = 'settings.php';
22
+ $this->adminUrl = admin_url( 'network/settings.php?page=automatic-updater' );
23
+
24
+ add_action( 'network_admin_menu', array( $this, 'plugin_menu' ) );
25
  } else {
26
  $this->adminPage = 'options-general.php';
27
+ $this->adminUrl = admin_url( 'options-general.php?page=automatic-updater' );
28
+
29
+ add_action( 'admin_menu', array( $this, 'plugin_menu' ) );
30
  }
31
 
32
+ add_action( 'wp_ajax_automatic-updater-hide-connection-warning', array( $this, 'ajax_hide_connection_warning' ) );
33
 
34
+ add_filter( 'plugin_action_links_' . Automatic_Updater::$basename, array( $this, 'plugin_row_links' ) );
35
+ add_filter( 'network_admin_plugin_action_links_' . Automatic_Updater::$basename, array( $this, 'plugin_row_links' ) );
36
  }
37
 
38
  function plugin_menu() {
39
+ $hook = add_submenu_page( $this->adminPage, esc_html__( 'Automatic Updater', 'automatic-updater' ), esc_html__( 'Automatic Updater', 'automatic-updater' ), 'update_core', 'automatic-updater', array( $this, 'settings' ) );
40
 
41
+ add_action( "load-$hook", array( $this, 'settings_loader' ) );
42
 
43
+ add_action( "admin_footer-$hook", array( $this, 'footer' ) );
44
  }
45
 
46
  function settings_loader() {
97
  $method = get_filesystem_method();
98
  if ( 'direct' !== $method && ! defined( 'FTP_USER' ) ) {
99
  // Using a remote login method, and the upgrade info probably isn't defined
100
+ $admin_url = wp_nonce_url( "{$this->adminUrl}&action=hide-connection-warning", 'automatic-updater-hide-connection-warning' );
101
  ?>
102
  <div class="updated">
103
  <p><?php echo wp_kses( sprintf( __( 'It looks like Automatic Updater may not be able to run automatically, due to not having permission to write to the WordPress directory, or connect to the server over FTP. If you usually upgrade by entering your FTP login details, please read <a href="%s">this documentation</a> on storing your connection details.', 'automatic-updater' ), 'http://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants' ), array( 'a' => array( 'href' => array() ) ) ); ?></p>
327
  }
328
 
329
  function plugin_row_links( $links ) {
330
+ array_unshift( $links, "<a href='{$this->adminUrl}'>" . esc_html__( 'Settings', 'automatic-updater' ) . '</a>' );
 
 
331
 
332
  return $links;
333
  }
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.9
8
  * Author URI: http://pento.net/
9
  * License: GPL2+
10
  * Text Domain: automatic-updater
@@ -53,13 +53,13 @@ class Automatic_Updater {
53
  $this->options_serialized = serialize( $this->options );
54
  $this->plugin_upgrade();
55
 
56
- add_action( 'shutdown', array( &$this, 'shutdown' ) );
57
 
58
  if ( ! defined( 'AUTOMATIC_UPDATER_DISABLED' ) || ! AUTOMATIC_UPDATER_DISABLED ) {
59
- add_action( 'auto_updater_core_event', array( &$this, 'update_core' ) );
60
- add_action( 'auto_updater_plugins_event', array( &$this, 'update_plugins' ) );
61
- add_action( 'auto_updater_themes_event', array( &$this, 'update_themes' ) );
62
- add_action( 'auto_updater_svn_event', array( &$this, 'update_svn' ) );
63
  }
64
 
65
  // Nothing else matters if we're on WPMS and not on the main site
@@ -74,7 +74,7 @@ class Automatic_Updater {
74
  if ( defined( 'AUTOMATIC_UPDATER_DISABLED' ) && AUTOMATIC_UPDATER_DISABLED )
75
  return;
76
 
77
- add_action( 'admin_init', array( &$this, 'check_wordpress_version' ) );
78
 
79
  // Configure SVN updates cron, if it's enabled
80
  if ( $this->options['svn']['core'] || ! empty( $this->options['svn']['plugins'] ) || ! empty( $this->options['svn']['themes'] ) ) {
@@ -99,8 +99,8 @@ class Automatic_Updater {
99
  // We're in a cron, do updates now
100
  foreach ( $types as $type ) {
101
  if ( ! empty( $this->options['update'][ $type ] ) ) {
102
- add_action( "set_site_transient_update_$type", array( &$this, "update_$type" ) );
103
- add_action( "set_site_transient__site_transient_update_$type", array( &$this, "update_$type" ) );
104
  }
105
  }
106
  } else {
@@ -141,7 +141,7 @@ class Automatic_Updater {
141
  if ( version_compare( $GLOBALS['wp_version'], '3.4', '<' ) ) {
142
  if ( is_plugin_active( self::$basename ) ) {
143
  deactivate_plugins( self::$basename );
144
- add_action( 'admin_notices', array( &$this, 'disabled_notice' ) );
145
  if ( isset( $_GET['activate'] ) )
146
  unset( $_GET['activate'] );
147
  }
@@ -161,18 +161,18 @@ class Automatic_Updater {
161
 
162
  $this->options = array(
163
  'update' => array(
164
- 'core' => $core_updates_enabled,
165
- 'plugins' => false,
166
- 'themes' => false,
167
  ),
168
  'retries-limit' => 3,
169
  'tries' => array(
170
- 'core' => array(
171
- 'version' => 0,
172
- 'tries' => 0,
173
- ),
174
- 'plugins' => array(),
175
- 'themes' => array(),
176
  ),
177
  'svn' => array(
178
  'core' => false,
@@ -212,8 +212,8 @@ class Automatic_Updater {
212
  $this->options['retries-limit'] = 3;
213
  $this->options['tries'] = array(
214
  'core' => array(
215
- 'version' => 0,
216
- 'tries' => 0,
217
  ),
218
  'plugins' => array(),
219
  'themes' => array(),
@@ -368,7 +368,7 @@ class Automatic_Updater {
368
  if ( $this->options['retries']['plugins'][ $id ]['version'] !== $plugin->update->new_version )
369
  unset( $this->options['retries']['plugins'][ $id ] );
370
  // If the plugin has already had it's chance, move on.
371
- else if ($this->options['retries']['plugins'][ $id ]['tries'] > $this->options['retries-limit'] )
372
  unset( $plugins[ $id ] );
373
  }
374
  }
@@ -395,7 +395,7 @@ class Automatic_Updater {
395
  if ( is_wp_error( $result[ $id ] ) ) {
396
  if ( empty( $this->options['retries']['plugins'][ $id ] ) ) {
397
  $this->options['retries']['plugins'][ $id ] = array(
398
- 'tries' => 1,
399
  'version' => $plugin->update->new_version,
400
  );
401
  } else {
@@ -462,7 +462,7 @@ class Automatic_Updater {
462
  if ( $this->options['retries']['themes'][ $id ]['version'] !== $theme->update['new_version'] )
463
  unset( $this->options['retries']['themes'][ $id ] );
464
  // If the themes has already had it's chance, move on.
465
- else if ($this->options['retries']['themes'][ $id ]['tries'] > $this->options['retries-limit'] )
466
  unset( $themes[ $id ] );
467
  }
468
  }
@@ -548,9 +548,9 @@ class Automatic_Updater {
548
  $output[] = esc_html__( 'WordPress Core:', 'automatic-updater' );
549
  exec( 'svn up ' . ABSPATH, $output, $return );
550
 
551
- $update = end( $output );
552
 
553
- if ( 0 !== strpos( $update, "At revision" ) ) {
554
  $found_update = true;
555
  $found_core_update = true;
556
 
@@ -590,9 +590,9 @@ class Automatic_Updater {
590
 
591
  exec( 'svn up ' . WP_PLUGIN_DIR . '/' . plugin_dir_path( $id ), $output, $return );
592
 
593
- $update = end( $output );
594
 
595
- if ( 0 !== strpos( $update, "At revision" ) ) {
596
  $plugin_upgrades++;
597
  $found_update = true;
598
  $found_plugin_update = true;
@@ -632,9 +632,9 @@ class Automatic_Updater {
632
 
633
  exec( 'svn up ' . $theme->get_stylesheet_directory(), $output, $return );
634
 
635
- $update = end( $output );
636
 
637
- if ( 0 !== strpos( $update, "At revision" ) ) {
638
  $theme_upgrades++;
639
  $found_update = true;
640
 
@@ -714,9 +714,9 @@ class Automatic_Updater {
714
  'Content-Type: text/html; charset=UTF-8'
715
  );
716
 
717
- add_filter( 'wp_mail_content_type', array( &$this, 'wp_mail_content_type' ) );
718
  wp_mail( $email, $subject, $message, $headers );
719
- remove_filter( 'wp_mail_content_type', array( &$this, 'wp_mail_content_type' ) );
720
  }
721
 
722
  function wp_mail_content_type() {
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.9.1
8
  * Author URI: http://pento.net/
9
  * License: GPL2+
10
  * Text Domain: automatic-updater
53
  $this->options_serialized = serialize( $this->options );
54
  $this->plugin_upgrade();
55
 
56
+ add_action( 'shutdown', array( $this, 'shutdown' ) );
57
 
58
  if ( ! defined( 'AUTOMATIC_UPDATER_DISABLED' ) || ! AUTOMATIC_UPDATER_DISABLED ) {
59
+ add_action( 'auto_updater_core_event', array( $this, 'update_core' ) );
60
+ add_action( 'auto_updater_plugins_event', array( $this, 'update_plugins' ) );
61
+ add_action( 'auto_updater_themes_event', array( $this, 'update_themes' ) );
62
+ add_action( 'auto_updater_svn_event', array( $this, 'update_svn' ) );
63
  }
64
 
65
  // Nothing else matters if we're on WPMS and not on the main site
74
  if ( defined( 'AUTOMATIC_UPDATER_DISABLED' ) && AUTOMATIC_UPDATER_DISABLED )
75
  return;
76
 
77
+ add_action( 'admin_init', array( $this, 'check_wordpress_version' ) );
78
 
79
  // Configure SVN updates cron, if it's enabled
80
  if ( $this->options['svn']['core'] || ! empty( $this->options['svn']['plugins'] ) || ! empty( $this->options['svn']['themes'] ) ) {
99
  // We're in a cron, do updates now
100
  foreach ( $types as $type ) {
101
  if ( ! empty( $this->options['update'][ $type ] ) ) {
102
+ add_action( "set_site_transient_update_$type", array( $this, "update_$type" ) );
103
+ add_action( "set_site_transient__site_transient_update_$type", array( $this, "update_$type" ) );
104
  }
105
  }
106
  } else {
141
  if ( version_compare( $GLOBALS['wp_version'], '3.4', '<' ) ) {
142
  if ( is_plugin_active( self::$basename ) ) {
143
  deactivate_plugins( self::$basename );
144
+ add_action( 'admin_notices', array( $this, 'disabled_notice' ) );
145
  if ( isset( $_GET['activate'] ) )
146
  unset( $_GET['activate'] );
147
  }
161
 
162
  $this->options = array(
163
  'update' => array(
164
+ 'core' => $core_updates_enabled,
165
+ 'plugins' => false,
166
+ 'themes' => false,
167
  ),
168
  'retries-limit' => 3,
169
  'tries' => array(
170
+ 'core' => array(
171
+ 'version' => 0,
172
+ 'tries' => 0,
173
+ ),
174
+ 'plugins' => array(),
175
+ 'themes' => array(),
176
  ),
177
  'svn' => array(
178
  'core' => false,
212
  $this->options['retries-limit'] = 3;
213
  $this->options['tries'] = array(
214
  'core' => array(
215
+ 'version' => 0,
216
+ 'tries' => 0,
217
  ),
218
  'plugins' => array(),
219
  'themes' => array(),
368
  if ( $this->options['retries']['plugins'][ $id ]['version'] !== $plugin->update->new_version )
369
  unset( $this->options['retries']['plugins'][ $id ] );
370
  // If the plugin has already had it's chance, move on.
371
+ else if ( $this->options['retries']['plugins'][ $id ]['tries'] > $this->options['retries-limit'] )
372
  unset( $plugins[ $id ] );
373
  }
374
  }
395
  if ( is_wp_error( $result[ $id ] ) ) {
396
  if ( empty( $this->options['retries']['plugins'][ $id ] ) ) {
397
  $this->options['retries']['plugins'][ $id ] = array(
398
+ 'tries' => 1,
399
  'version' => $plugin->update->new_version,
400
  );
401
  } else {
462
  if ( $this->options['retries']['themes'][ $id ]['version'] !== $theme->update['new_version'] )
463
  unset( $this->options['retries']['themes'][ $id ] );
464
  // If the themes has already had it's chance, move on.
465
+ else if ( $this->options['retries']['themes'][ $id ]['tries'] > $this->options['retries-limit'] )
466
  unset( $themes[ $id ] );
467
  }
468
  }
548
  $output[] = esc_html__( 'WordPress Core:', 'automatic-updater' );
549
  exec( 'svn up ' . ABSPATH, $output, $return );
550
 
551
+ $update = trim( end( $output ) );
552
 
553
+ if ( 0 === $return && ! empty( $update ) && 0 !== strpos( $update, "At revision" ) ) {
554
  $found_update = true;
555
  $found_core_update = true;
556
 
590
 
591
  exec( 'svn up ' . WP_PLUGIN_DIR . '/' . plugin_dir_path( $id ), $output, $return );
592
 
593
+ $update = trim( end( $output ) );
594
 
595
+ if ( 0 === $return && ! empty( $update ) && 0 !== strpos( $update, "At revision" ) ) {
596
  $plugin_upgrades++;
597
  $found_update = true;
598
  $found_plugin_update = true;
632
 
633
  exec( 'svn up ' . $theme->get_stylesheet_directory(), $output, $return );
634
 
635
+ $update = trim( end( $output ) );
636
 
637
+ if ( 0 === $return && ! empty( $update ) && 0 !== strpos( $update, "At revision" ) ) {
638
  $theme_upgrades++;
639
  $found_update = true;
640
 
714
  'Content-Type: text/html; charset=UTF-8'
715
  );
716
 
717
+ add_filter( 'wp_mail_content_type', array( $this, 'wp_mail_content_type' ) );
718
  wp_mail( $email, $subject, $message, $headers );
719
+ remove_filter( 'wp_mail_content_type', array( $this, 'wp_mail_content_type' ) );
720
  }
721
 
722
  function wp_mail_content_type() {
languages/automatic-updater-de_DE.mo CHANGED
Binary file
languages/automatic-updater-de_DE.po CHANGED
@@ -1,36 +1,36 @@
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"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
13
  "X-Poedit-SourceCharset: utf-8\n"
14
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
15
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
16
  "X-Poedit-Basepath: ../\n"
17
  "X-Textdomain-Support: yes\n"
18
- "X-Generator: Poedit 1.5.4\n"
19
  "X-Poedit-SearchPath-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."
@@ -39,7 +39,7 @@ msgstr ""
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 "
@@ -50,58 +50,58 @@ msgstr ""
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,60 +135,60 @@ msgid "http://pento.net/"
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-"
@@ -196,23 +196,23 @@ msgid ""
196
  "core updates."
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."
@@ -221,18 +221,12 @@ msgstr ""
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 "
@@ -244,12 +238,12 @@ msgstr ""
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."
@@ -258,12 +252,12 @@ msgstr ""
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!"
@@ -274,7 +268,7 @@ msgstr ""
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,7 +277,7 @@ msgstr ""
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,7 +291,7 @@ msgstr ""
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,13 +305,13 @@ msgstr ""
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 "
@@ -327,12 +321,12 @@ msgstr ""
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 "
@@ -348,27 +342,27 @@ msgstr ""
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 "
@@ -382,12 +376,12 @@ msgstr ""
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 "
@@ -402,7 +396,7 @@ msgstr ""
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 "
@@ -417,28 +411,22 @@ msgstr ""
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 "
@@ -449,7 +437,7 @@ msgstr ""
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 "
@@ -460,7 +448,7 @@ msgstr ""
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 "
@@ -470,17 +458,17 @@ msgstr ""
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 ""
@@ -488,21 +476,21 @@ msgstr ""
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 "
@@ -512,3 +500,60 @@ msgstr ""
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."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Automatic Updater v0.9\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2013-07-30 09:38+1000\n"
7
  "Last-Translator: Gary Pendergast <gary@pento.net>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: Poedit 1.5.5\n"
14
  "X-Poedit-SourceCharset: utf-8\n"
15
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: ../\n"
18
  "X-Textdomain-Support: yes\n"
 
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  # @ automatic-updater
22
  #. translators: plugin header field 'Name'
23
+ #: admin.php:34 admin.php:81 automatic-updater.php:0
24
  msgid "Automatic Updater"
25
  msgstr ""
26
 
27
  # @ automatic-updater
28
+ #: admin.php:44
29
  msgid "Overview"
30
  msgstr "Übersicht"
31
 
32
  # @ automatic-updater
33
+ #: admin.php:46
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."
39
  "deine Themes automatisch aktualisiert werden sollen."
40
 
41
  # @ automatic-updater
42
+ #: admin.php:47
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 "
50
  "aktualisieren, empfehlen wir daher alles automatisch zu aktualisieren."
51
 
52
  # @ automatic-updater
53
+ #: admin.php:51
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:52
60
  msgid "Donations"
61
  msgstr "Spenden"
62
 
63
  # @ automatic-updater
64
+ #: admin.php:53
65
  msgid "Support Forums"
66
  msgstr "Hilfe-Forum"
67
 
68
  # @ automatic-updater
69
+ #: admin.php:62
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:69
76
  msgid "Settings updated"
77
  msgstr "Einstellungen aktualisiert"
78
 
79
  # @ automatic-updater
80
+ #: admin.php:124
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:125
88
  msgid "Update your plugins automatically?"
89
  msgstr "Plugins automatisch aktualisieren?"
90
 
91
  # @ automatic-updater
92
+ #: admin.php:126
93
  msgid "Update your themes automatically?"
94
  msgstr "Themes automatisch aktualisieren?"
95
 
96
  # @ automatic-updater
97
+ #: admin.php:250
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:251
105
  msgid "Save Changes"
106
  msgstr "Änderungen übernehmen"
107
 
135
  msgstr ""
136
 
137
  # @ automatic-updater
138
+ #: automatic-updater.php:316
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:566
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:323 automatic-updater.php:329
153
  msgid "Have fun!"
154
  msgstr "Viel Spaß!"
155
 
156
  # @ automatic-updater
157
+ #: automatic-updater.php:389
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:483
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:682
172
  msgid "Howdy!"
173
  msgstr "Tach!"
174
 
175
  # @ automatic-updater
176
+ #: automatic-updater.php:696
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:700
182
  msgid "Debug Information:"
183
  msgstr "Informationen für die Fehlersuche:"
184
 
185
  # @ automatic-updater
186
+ #: admin.php:165
187
  msgid "SVN Support"
188
  msgstr "SVN-Unterstützung"
189
 
190
  # @ automatic-updater
191
+ #: admin.php:176
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-"
196
  "core updates."
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 up</tt> einmal pro Stunde abrufen, um "
200
+ "dich auf dem neuesten Stand zu halten. Aus Sicherheitsgründen wird die "
201
+ "Aktivierung dieser Option die normalen WordPress-Aktualisierungen "
202
  "deaktivieren."
203
 
204
  # @ automatic-updater
205
+ #: admin.php:249
206
  msgid "Debug Information"
207
  msgstr "Informationen für die Fehlersuche"
208
 
209
  # @ automatic-updater
210
+ #: admin.php:327
211
  msgid "Settings"
212
  msgstr "Einstellungen"
213
 
214
  # @ automatic-updater
215
+ #: automatic-updater.php:152
216
  msgid ""
217
  "Automatic Updater requires WordPress 3.4 or higher! Please upgrade WordPress "
218
  "manually, then reactivate Automatic Updater."
221
  "WordPress manuell und reaktiviere dann den Automatic Updater."
222
 
223
  # @ automatic-updater
224
+ #: admin.php:139
 
 
 
 
 
 
225
  msgid "Notification Email"
226
  msgstr "E-Mail-Benachrichtigung"
227
 
228
  # @ automatic-updater
229
+ #: admin.php:140
230
  msgid ""
231
  "By default, Automatic Updater will send an email to the Site Admin when an "
232
  "update is performed. If you would like to send that email to a different "
238
  "hier festlegen."
239
 
240
  # @ automatic-updater
241
+ #: admin.php:141
242
  msgid "Override Email Address"
243
  msgstr "E-Mail-Adresse überschreiben"
244
 
245
  # @ automatic-updater
246
+ #: admin.php:149
247
  msgid ""
248
  "If you don't want to receive an email when updates are installed, you can "
249
  "disable them completely."
252
  "kannst du diese komplett deaktivieren."
253
 
254
  # @ automatic-updater
255
+ #: admin.php:150
256
  msgid "Disable email notifications."
257
  msgstr " E-Mail-Benachrichtigungen deaktivieren."
258
 
259
  # @ automatic-updater
260
+ #: automatic-updater.php:328
261
  #, php-format
262
  msgid ""
263
  "We've successfully upgraded WordPress from version %1$s to version %2$s!"
268
  # @ automatic-updater
269
  #. 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
270
  #. 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
271
+ #: automatic-updater.php:417 automatic-updater.php:511
272
  #, php-format
273
  msgid ""
274
  "<a href=\"%1$s\">%2$s</a>: Successfully upgraded from version %3$s to %4$s!"
277
  "%4$s!"
278
 
279
  # @ automatic-updater
280
+ #: automatic-updater.php:430
281
  msgid ""
282
  "Plugin authors depend on your feedback to make their plugins better, and the "
283
  "WordPress community depends on plugin ratings for checking the quality of a "
291
  "Bewertung ab!"
292
 
293
  # @ automatic-updater
294
+ #: automatic-updater.php:524
295
  msgid ""
296
  "Theme authors depend on your feedback to make their plugins better, and the "
297
  "WordPress community depends on theme ratings for checking the quality of a "
305
  "Bewertung ab!"
306
 
307
  # @ automatic-updater
308
+ #: automatic-updater.php:676
309
  #, php-format
310
  msgid "WordPress Update: %s"
311
  msgstr "WordPress-Aktualisierung: %s"
312
 
313
  # @ automatic-updater
314
+ #: automatic-updater.php:684
315
  #, php-format
316
  msgid ""
317
  "Automatic Updater just ran on your site, <a href=\"%1$s\">%1$s</a>, with the "
321
  "a>, mit folgendem Ergebnis:"
322
 
323
  # @ automatic-updater
324
+ #: admin.php:153
325
  msgid "Retries"
326
  msgstr "Wiederholungen"
327
 
328
  # @ automatic-updater
329
+ #: admin.php:154
330
  msgid ""
331
  "To avoid updating when something is broken, Automatic Updater can limit the "
332
  "number of times it will attempt to update WordPress Core, a plugin or a "
342
  "installierst oder eine neue Version veröffentlicht wird."
343
 
344
  # @ automatic-updater
345
+ #: admin.php:155
346
  msgid "Retries Limit"
347
  msgstr "Limit für Wiederholungen"
348
 
349
  # @ automatic-updater
350
+ #: admin.php:175
351
  msgid "WordPress Core"
352
  msgstr "WordPress"
353
 
354
  # @ automatic-updater
355
+ #: admin.php:177
356
  msgid "Update WordPress Core hourly?"
357
  msgstr "WordPress stündlich aktualisieren?"
358
 
359
  # @ automatic-updater
360
+ #: admin.php:184
361
  msgid "Plugins"
362
  msgstr "Plugins"
363
 
364
  # @ automatic-updater
365
+ #: admin.php:185
366
  msgid ""
367
  "Running plugins from SVN is great for helping plugin devs fine tune them "
368
  "before release, so on behalf of all of us, thanks! If you see Akismet here "
376
  "aktualisiert, als WordPress vom SVN aktualisiert wurde."
377
 
378
  # @ automatic-updater
379
+ #: admin.php:203
380
  msgid "Themes"
381
  msgstr "Themes"
382
 
383
  # @ automatic-updater
384
+ #: admin.php:204
385
  msgid ""
386
  "Running themes from SVN makes you an excellent person who makes the "
387
  "WordPress community better - thank you! If you see any of the default Twenty "
396
  "WordPress vom SVN aktualisiert wurde."
397
 
398
  # @ automatic-updater
399
+ #: admin.php:223
400
  #, php-format
401
  msgid ""
402
  "The items marked in red don't have their .svn directory writable, so <tt>svn "
411
  "einschließlich der .svn-Verzeichnisse."
412
 
413
  # @ automatic-updater
414
+ #: admin.php:230
415
  msgid "SVN Options"
416
  msgstr "SVN-Optionen"
417
 
418
  # @ automatic-updater
419
+ #: admin.php:231
420
  msgid ""
421
  "Send email on <tt>svn up</tt> success? Disabling this will cause "
422
  "notification emails to only be sent if the <tt>svn up</tt> fails."
423
  msgstr ""
424
+ "E-Mail bei Erfolg von <tt>svn up</tt> senden? Das Deaktivieren bewirkt, dass "
425
+ "Benachrichtigungs-E-Mails nur gesendet werden, wenn die <tt>svn up</tt> "
426
+ "scheitert."
 
 
 
 
 
 
427
 
428
  # @ automatic-updater
429
+ #: automatic-updater.php:318
430
  #, php-format
431
  msgid ""
432
  "We're sorry it didn't work out. Please try upgrading manually, instead. This "
437
 
438
  # @ automatic-updater
439
  #. 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.
440
+ #: automatic-updater.php:408
441
  #, php-format
442
  msgid ""
443
  "<a href=\"%1$s\">%2$s</a>: We encounted an error upgrading this plugin: %3$s "
448
 
449
  # @ automatic-updater
450
  #. 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.
451
+ #: automatic-updater.php:502
452
  #, php-format
453
  msgid ""
454
  "<a href=\"%1$s\">%2$s</a>: We encounted an error upgrading this theme: %3$s "
458
  "dieses Themes festgestellt: %3$s (Versuch %4$d von %5$d)"
459
 
460
  # @ automatic-updater
461
+ #: automatic-updater.php:548
462
  msgid "WordPress Core:"
463
  msgstr "WordPress:"
464
 
465
  # @ automatic-updater
466
+ #: automatic-updater.php:558
467
  msgid "We successfully upgraded WordPress Core from SVN!"
468
  msgstr "Wir haben WordPress erfolgreich vom SVN aktualisiert!"
469
 
470
  # @ automatic-updater
471
+ #: automatic-updater.php:564
472
  msgid ""
473
  "While upgrading WordPress Core from SVN, we ran into the following error:"
474
  msgstr ""
476
  "folgenden Fehler:"
477
 
478
  # @ automatic-updater
479
+ #: automatic-updater.php:610
480
  msgid "We upgraded the following plugin:"
481
  msgid_plural "We upgraded the following plugins:"
482
  msgstr[0] "Wir haben das folgende Plugin aktualisiert:"
483
  msgstr[1] "Wir haben die folgenden Plugins aktualisiert:"
484
 
485
  # @ automatic-updater
486
+ #: automatic-updater.php:651
487
  msgid "We upgraded the following theme:"
488
  msgid_plural "We upgraded the following themes:"
489
  msgstr[0] "Wir haben das folgende Theme aktualisiert:"
490
  msgstr[1] "Wir haben die folgenden Themes aktualisiert:"
491
 
492
  # @ automatic-updater
493
+ #: automatic-updater.php:692
494
  msgid ""
495
  "It looks like something went wrong during the update. Note that, if "
496
  "Automatic Updater continues to encounter problems, it will stop trying to do "
500
  "Beachte bitte, dass Automatic Updater, bei Problemen aufhören wird zu "
501
  "aktualisieren und es erst wieder versuchen wird, nachdem Sie manuell "
502
  "aktualisiert haben."
503
+
504
+ # @ automatic-updater
505
+ #: admin.php:98
506
+ #, php-format
507
+ msgid ""
508
+ "It looks like Automatic Updater may not be able to run automatically, due to "
509
+ "not having permission to write to the WordPress directory, or connect to the "
510
+ "server over FTP. If you usually upgrade by entering your FTP login details, "
511
+ "please read <a href=\"%s\">this documentation</a> on storing your connection "
512
+ "details."
513
+ msgstr ""
514
+ "Es sieht danach aus, als ob der Automatic Updater nicht automatisch aufgrund "
515
+ "fehlender Schreibrecht im WordPress-Verzeichnis ausgeführt werden oder sich "
516
+ "nicht mit über FTP mit dem Server verbinden kann. Wenn Sie in der Regel "
517
+ "aktualisieren, indem Sie Ihre FTP-Zugangsdaten eingeben, lesen Sie bitte <a "
518
+ "href=\"%s\">diese Dokumentation</a>, um Ihre Verbindungsdaten zu speichern."
519
+
520
+ # @ automatic-updater
521
+ #: admin.php:99
522
+ #, php-format
523
+ msgid ""
524
+ "Alternatively, if WordPress normally upgrades immediately when you click the "
525
+ "Update button, or if you don't want to see this message again, feel free to "
526
+ "<a href=\"%1$s\" id=\"%2$s\">hide it</a>."
527
+ msgstr ""
528
+ "Alternativ, sofern sich WordPress normalerweise sofort aktualisiert, wenn "
529
+ "Sie die Update-Schaltfläche klicken oder wenn Sie diese Meldung nicht mehr "
530
+ "sehen möchten, können Sie das gerne <a href=\"%1$s\" id=\"%2$s\">hier "
531
+ "verstecken</a>."
532
+
533
+ # @ automatic-updater
534
+ #: admin.php:112
535
+ #, php-format
536
+ msgid ""
537
+ "The Better WP Security plugin is hiding updates, which will prevent "
538
+ "Automatic Updater from operating correctly. Please <a href=\"%s\">disable "
539
+ "these options</a>."
540
+ msgstr ""
541
+ "Das Better WP Security-Plugin versteckt zurzeit Aktualisierungen, was den "
542
+ "ordnungsgemäßen Betrieb des Automatic Updater verhindert. Bitte <a href=\"%s"
543
+ "\">deaktivieren Sie diese Optionen</a>."
544
+
545
+ # @ automatic-updater
546
+ #. translators: plugin header field 'Version'
547
+ #: automatic-updater.php:0
548
+ msgid "0.9"
549
+ msgstr ""
550
+
551
+ # @ automatic-updater
552
+ #: automatic-updater.php:322
553
+ #, php-format
554
+ msgid ""
555
+ "We've successfully upgraded WordPress from version %1$s to version %2$s, the "
556
+ "latest nightly build!"
557
+ msgstr ""
558
+ "Wir haben WordPress erfolgreich von Version %1$s zu Version %2$s, der "
559
+ "neuesten Nightly-Build, aktualisiert!"
languages/automatic-updater-nl_NL.mo CHANGED
Binary file
languages/automatic-updater-nl_NL.po CHANGED
@@ -2,10 +2,10 @@
2
  # This file is distributed under the same license as the Automatic Updater package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Automatic Updater 0.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"
@@ -13,19 +13,19 @@ msgstr ""
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\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."
@@ -33,7 +33,7 @@ msgstr ""
33
  "Op deze instellingen pagina kun je kiezen om je WordPress Core, je plugins "
34
  "en je thema&#39;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,45 +43,79 @@ 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
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&#39;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,11 +125,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: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,15 +137,15 @@ msgstr ""
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 "
@@ -126,19 +160,19 @@ msgstr ""
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,15 +184,15 @@ msgstr ""
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 "
@@ -170,11 +204,11 @@ msgstr ""
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&#39;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 "
@@ -186,7 +220,7 @@ msgstr ""
186
  "Twenty Ten, Eleven of Twelve thema&#39;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 "
@@ -198,11 +232,11 @@ msgstr ""
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."
@@ -211,23 +245,23 @@ msgstr ""
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,12 +269,12 @@ msgstr ""
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."
@@ -248,22 +282,25 @@ 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!"
@@ -273,7 +310,7 @@ msgstr[1] "We hebben bijgewerkte plugins gevonden!"
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)"
@@ -287,13 +324,13 @@ msgstr ""
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,7 +343,7 @@ msgstr ""
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!"
@@ -316,7 +353,7 @@ msgstr[1] "We hebben bijgewerkte thema&#39;s gevonden!"
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)"
@@ -324,7 +361,7 @@ 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 "
@@ -337,47 +374,47 @@ msgstr ""
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&#39;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,7 +422,7 @@ msgstr ""
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 "
@@ -396,11 +433,11 @@ msgstr ""
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
 
@@ -414,7 +451,7 @@ msgid ""
414
  "Never worry about falling behing on updating again!"
415
  msgstr ""
416
  "Automatisch bijwerken van je WordPress site, zodra een nieuwe versie "
417
- "beschikbaar is!Maak je nooit meer zorgen om achterop te raken met bijwerken!"
418
 
419
  #. Author of the plugin/theme
420
  msgid "pento"
@@ -424,5 +461,9 @@ msgstr "pento"
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?"
2
  # This file is distributed under the same license as the Automatic Updater package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Automatic Updater 0.9\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/automatic-updater\n"
7
+ "POT-Creation-Date: 2013-07-29 01:49:13+00:00\n"
8
+ "PO-Revision-Date: 2013-07-30 20:42+1000\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"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
+ "X-Generator: Poedit 1.5.7\n"
17
 
18
+ #. #-#-#-#-# plugin.pot (Automatic Updater 0.9) #-#-#-#-#
19
  #. Plugin Name of the plugin/theme
20
+ #: admin.php:34 admin.php:81
21
  msgid "Automatic Updater"
22
  msgstr "Automatic Updater"
23
 
24
+ #: admin.php:44
25
  msgid "Overview"
26
  msgstr "Overzicht"
27
 
28
+ #: admin.php:46
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."
33
  "Op deze instellingen pagina kun je kiezen om je WordPress Core, je plugins "
34
  "en je thema&#39;s automatisch bij te werken."
35
 
36
+ #: admin.php:47
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:51
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:52
51
  msgid "Donations"
52
  msgstr "Donaties"
53
 
54
+ #: admin.php:53
55
  msgid "Support Forums"
56
  msgstr "Support forums"
57
 
58
+ #: admin.php:62
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:69
63
  msgid "Settings updated"
64
  msgstr "Instellingen bijgewerkt"
65
 
66
+ #: admin.php:98
67
+ msgid ""
68
+ "It looks like Automatic Updater may not be able to run automatically, due to "
69
+ "not having permission to write to the WordPress directory, or connect to the "
70
+ "server over FTP. If you usually upgrade by entering your FTP login details, "
71
+ "please read <a href=\"%s\">this documentation</a> on storing your connection "
72
+ "details."
73
+ msgstr ""
74
+ "Het ziet ernaar uit dat Automatic Updater niet automatisch kan werken, omdat "
75
+ "het geen schrijf toestemming heeft in de WordPress map of geen verbinding "
76
+ "kan maken met de server middels FTP. Als je normaal gesproken bijwerkingen "
77
+ "uitvoert door je FTP gegevens in te vullen, lees dan <a href=\"%s\">dit "
78
+ "document</a> over het opslaan van gegevens voor verbinding maken."
79
+
80
+ #: admin.php:99
81
+ msgid ""
82
+ "Alternatively, if WordPress normally upgrades immediately when you click the "
83
+ "Update button, or if you don't want to see this message again, feel free to "
84
+ "<a href=\"%1$s\" id=\"%2$s\">hide it</a>."
85
+ msgstr ""
86
+ "Echter, als WordPress normaal bijgewerkt wordt nadat je de Bijwerken knop "
87
+ "indrukt, of als je dit bericht niet meer wil zien, <a href=\"%1$s\" id=\"%2$s"
88
+ "\">verberg deze dan</a>."
89
+
90
+ #: admin.php:112
91
+ msgid ""
92
+ "The Better WP Security plugin is hiding updates, which will prevent "
93
+ "Automatic Updater from operating correctly. Please <a href=\"%s\">disable "
94
+ "these options</a>."
95
+ msgstr ""
96
+ "De Better WP Security plugin verbergt updates, welk voorkomt dat Automatic "
97
+ "Updater correct werkt. Schakel <a href=\"%s\">deze opties</a> alsjeblieft "
98
+ "uit."
99
+
100
+ #: admin.php:124
101
  msgid ""
102
  "Update WordPress Core automatically? <strong>(Strongly Recommended)</strong>"
103
  msgstr ""
104
  "WordPress Core automatisch bijwerken? <strong>(Sterk aanbevolen)</strong>"
105
 
106
+ #: admin.php:125
107
  msgid "Update your plugins automatically?"
108
  msgstr "Plugins automatisch bijwerken?"
109
 
110
+ #: admin.php:126
111
  msgid "Update your themes automatically?"
112
  msgstr "Thema&#39;s automatisch bijwerken?"
113
 
114
+ #: admin.php:139
115
  msgid "Notification Email"
116
  msgstr "E-mail notificatie"
117
 
118
+ #: admin.php:140
119
  msgid ""
120
  "By default, Automatic Updater will send an email to the Site Admin when an "
121
  "update is performed. If you would like to send that email to a different "
125
  "een update is uitgevoerd. Als je deze e-mail naar een ander adres wilt "
126
  "sturen, kan je deze hier opgeven."
127
 
128
+ #: admin.php:141
129
  msgid "Override Email Address"
130
  msgstr "E-mailadres overschrijven"
131
 
132
+ #: admin.php:149
133
  msgid ""
134
  "If you don't want to receive an email when updates are installed, you can "
135
  "disable them completely."
137
  "Als je geen e-mail wilt ontvangen nadat er updates zijn geïnstalleerd, kan "
138
  "je dit uitschakelen."
139
 
140
+ #: admin.php:150
141
  msgid "Disable email notifications."
142
  msgstr "E-mail notificatie uitschakelen"
143
 
144
+ #: admin.php:153
145
  msgid "Retries"
146
  msgstr "Pogingen"
147
 
148
+ #: admin.php:154
149
  msgid ""
150
  "To avoid updating when something is broken, Automatic Updater can limit the "
151
  "number of times it will attempt to update WordPress Core, a plugin or a "
160
  "een handmatig bijwerken van de plugin gedaan wordt, of er een nieuwe versie "
161
  "uitgegeven is."
162
 
163
+ #: admin.php:155
164
  msgid "Retries Limit"
165
  msgstr "Aantal pogingen"
166
 
167
+ #: admin.php:165
168
  msgid "SVN Support"
169
  msgstr "SVN ondersteuning"
170
 
171
+ #: admin.php:175
172
  msgid "WordPress Core"
173
  msgstr "WordPress Core"
174
 
175
+ #: admin.php:176
176
  msgid ""
177
  "It looks like you're running an SVN version of WordPress, that's cool! "
178
  "Automatic Updater can run <tt>svn up</tt> once an hour, to keep you up-to-"
184
  "date te houden. Door deze optie aan te zetten zal voor de veiligheid het "
185
  "normale WordPress core bijwerken uitgeschakeld worden."
186
 
187
+ #: admin.php:177
188
  msgid "Update WordPress Core hourly?"
189
  msgstr "WordPress Core ieder uur updaten?"
190
 
191
+ #: admin.php:184
192
  msgid "Plugins"
193
  msgstr "Plugins"
194
 
195
+ #: admin.php:185
196
  msgid ""
197
  "Running plugins from SVN is great for helping plugin devs fine tune them "
198
  "before release, so on behalf of all of us, thanks! If you see Akismet here "
204
  "je Akismet hier ziet en het niet van een aangepast archief gebruikt, zal het "
205
  "waarschijnlijk automatisch bijwerken als WordPress Core SVN bijgewerkt wordt."
206
 
207
+ #: admin.php:203
208
  msgid "Themes"
209
  msgstr "Thema&#39;s"
210
 
211
+ #: admin.php:204
212
  msgid ""
213
  "Running themes from SVN makes you an excellent person who makes the "
214
  "WordPress community better - thank you! If you see any of the default Twenty "
220
  "Twenty Ten, Eleven of Twelve thema&#39;s hier ziet, zullen deze "
221
  "waarschijnlijk automatisch bijwerken als WordPress Core SVN bijgewerkt wordt."
222
 
223
+ #: admin.php:223
224
  msgid ""
225
  "The items marked in red don't have their .svn directory writable, so <tt>svn "
226
  "up</tt> will probably fail when the web server runs it. You need to give the "
232
  "moet de gebruiker <tt>%s</tt> schrijf toestemmingen geven voor je hele "
233
  "WordPress installatie, inclusief .svn mappen."
234
 
235
+ #: admin.php:230
236
  msgid "SVN Options"
237
  msgstr "SVN Opties"
238
 
239
+ #: admin.php:231
240
  msgid ""
241
  "Send email on <tt>svn up</tt> success? Disabling this will cause "
242
  "notification emails to only be sent if the <tt>svn up</tt> fails."
245
  "zal alleen een notificatie e-mail verstuurd worden als <tt>svn up</tt> "
246
  "mislukt."
247
 
248
+ #: admin.php:249
249
  msgid "Debug Information"
250
  msgstr "Debug informatie"
251
 
252
+ #: admin.php:250
253
  msgid "Show debug information in the notification email."
254
  msgstr "Toon debug informatie in de notificatie e-mail."
255
 
256
+ #: admin.php:251
257
  msgid "Save Changes"
258
  msgstr "Wijzigingen opslaan"
259
 
260
+ #: admin.php:327
261
  msgid "Settings"
262
  msgstr "Instellingen"
263
 
264
+ #: automatic-updater.php:152
265
  msgid ""
266
  "Automatic Updater requires WordPress 3.4 or higher! Please upgrade WordPress "
267
  "manually, then reactivate Automatic Updater."
269
  "Automatic Updater vereist WordPress 3.4 of hoger! Werk WordPress alsjeblieft "
270
  "handmatig bij, heractiveer daarna Automatic Updater."
271
 
272
+ #: automatic-updater.php:316
273
  msgid "While trying to upgrade WordPress, we ran into the following error:"
274
  msgstr ""
275
  "Bij het bijwerken van WordPress, zijn we de volgende fout tegengekomen:"
276
 
277
+ #: automatic-updater.php:318
278
  msgid ""
279
  "We're sorry it didn't work out. Please try upgrading manually, instead. This "
280
  "is attempt %1$d of %2$d."
282
  "Sorry dat het niet lukte. Voer het bijwerken alsjeblieft handmatig uit. Dit "
283
  "is poging %1$d van %2$d."
284
 
285
+ #: automatic-updater.php:322
286
+ #, fuzzy
287
+ msgid ""
288
+ "We've successfully upgraded WordPress from version %1$s to version %2$s, the "
289
+ "latest nightly build!"
290
  msgstr ""
291
+ "We hebben WordPress succesvol bijgewerkt van versie %1$s naar versie %2$s!"
292
 
293
+ #: automatic-updater.php:323 automatic-updater.php:329
294
  msgid "Have fun!"
295
  msgstr "Veel plezier!"
296
 
297
+ #: automatic-updater.php:328
298
  msgid ""
299
  "We've successfully upgraded WordPress from version %1$s to version %2$s!"
300
  msgstr ""
301
  "We hebben WordPress succesvol bijgewerkt van versie %1$s naar versie %2$s!"
302
 
303
+ #: automatic-updater.php:389
304
  msgid "We found a plugin upgrade!"
305
  msgid_plural "We found upgrades for some plugins!"
306
  msgstr[0] "We hebben een bijgewerkte plugin gevonden!"
310
  #. name, third argument is the error encountered while upgrading. The fourth
311
  #. and fifth arguments refer to how many retries we've had at installing this
312
  #. plugin.
313
+ #: automatic-updater.php:408
314
  msgid ""
315
  "<a href=\"%1$s\">%2$s</a>: We encounted an error upgrading this plugin: %3$s "
316
  "(Attempt %4$d of %5$d)"
324
  #. translators: First argument is the theme URL, second argument is the Theme
325
  #. name, third argument is the old version number, fourth argument is the new
326
  #. version number
327
+ #: automatic-updater.php:417 automatic-updater.php:511
328
  msgid ""
329
  "<a href=\"%1$s\">%2$s</a>: Successfully upgraded from version %3$s to %4$s!"
330
  msgstr ""
331
  "<a href=\"%1$s\">%2$s</a>: Successvol bijgewerkt van versie %3$s naar %4$s!"
332
 
333
+ #: automatic-updater.php:430
334
  msgid ""
335
  "Plugin authors depend on your feedback to make their plugins better, and the "
336
  "WordPress community depends on plugin ratings for checking the quality of a "
343
  "klik dan op de naam van de plugin hierboven en voer een Compatability Vote "
344
  "of een Rating in!"
345
 
346
+ #: automatic-updater.php:483
347
  msgid "We found a theme upgrade!"
348
  msgid_plural "We found upgrades for some themes!"
349
  msgstr[0] "We hebben een bijgewerkt thema gevonden!"
353
  #. name, third argument is the error encountered while upgrading. The fourth
354
  #. and fifth arguments refer to how many retries we've had at installing this
355
  #. theme.
356
+ #: automatic-updater.php:502
357
  msgid ""
358
  "<a href=\"%1$s\">%2$s</a>: We encounted an error upgrading this theme: %3$s "
359
  "(Attempt %4$d of %5$d)"
361
  "<a href=\"%1$s\">%2$s</a>: Er is een fout opgetreden bij het bijwerken van "
362
  "dit thema: %3$s. (Poging %4$d van %5$d.)"
363
 
364
+ #: automatic-updater.php:524
365
  msgid ""
366
  "Theme authors depend on your feedback to make their plugins better, and the "
367
  "WordPress community depends on theme ratings for checking the quality of a "
374
  "klik dan op de naam van het thema hierboven en voer een Compatability Vote "
375
  "of een Rating in!"
376
 
377
+ #: automatic-updater.php:548
378
  msgid "WordPress Core:"
379
  msgstr "WordPress Core:"
380
 
381
+ #: automatic-updater.php:558
382
  msgid "We successfully upgraded WordPress Core from SVN!"
383
  msgstr "We hebben WordPress Core succesvol bijgewerkt vanuit SVN!"
384
 
385
+ #: automatic-updater.php:564
386
  msgid ""
387
  "While upgrading WordPress Core from SVN, we ran into the following error:"
388
  msgstr ""
389
  "Tijdens het bijwerken van WordPress Core vanuit SVN, kwamen we de volgende "
390
  "fout tegen:"
391
 
392
+ #: automatic-updater.php:566
393
  msgid "We're sorry it didn't work out. Please try upgrading manually, instead."
394
  msgstr ""
395
  "Sorry dat het niet lukte. Voer het bijwerken alsjeblieft handmatig uit."
396
 
397
+ #: automatic-updater.php:610
398
  msgid "We upgraded the following plugin:"
399
  msgid_plural "We upgraded the following plugins:"
400
  msgstr[0] "We hebben de volgende plugin bijgewerkt:"
401
  msgstr[1] "We hebben de volgende plugins bijgewerkt:"
402
 
403
+ #: automatic-updater.php:651
404
  msgid "We upgraded the following theme:"
405
  msgid_plural "We upgraded the following themes:"
406
  msgstr[0] "We hebben het volgende thema bijgewerkt:"
407
  msgstr[1] "We hebben de volgende thema&#39;s bijgewerkt:"
408
 
409
+ #: automatic-updater.php:676
410
  msgid "WordPress Update: %s"
411
  msgstr "WordPress bijwerken: %s"
412
 
413
+ #: automatic-updater.php:682
414
  msgid "Howdy!"
415
  msgstr "Hallo!"
416
 
417
+ #: automatic-updater.php:684
418
  msgid ""
419
  "Automatic Updater just ran on your site, <a href=\"%1$s\">%1$s</a>, with the "
420
  "following result:"
422
  "Automatic Updater is zojuist uitgevoerd op je site, <a href=\"%1$s\">%1$s</"
423
  "a>, met het volgende resultaat:"
424
 
425
+ #: automatic-updater.php:692
426
  msgid ""
427
  "It looks like something went wrong during the update. Note that, if "
428
  "Automatic Updater continues to encounter problems, it will stop trying to do "
433
  "proberen bij te werken en zal het niet weer proberen tot nadat er een "
434
  "handmatig bijwerken geschied is."
435
 
436
+ #: automatic-updater.php:696
437
  msgid "Thanks for using the Automatic Updater plugin!"
438
  msgstr "Bedankt voor het gebruiken van de Automatic Updater plugin!"
439
 
440
+ #: automatic-updater.php:700
441
  msgid "Debug Information:"
442
  msgstr "Debug informatie:"
443
 
451
  "Never worry about falling behing on updating again!"
452
  msgstr ""
453
  "Automatisch bijwerken van je WordPress site, zodra een nieuwe versie "
454
+ "beschikbaar is! Maak je nooit meer zorgen om achterop te raken met bijwerken!"
455
 
456
  #. Author of the plugin/theme
457
  msgid "pento"
461
  msgid "http://pento.net/"
462
  msgstr "http://pento.net/"
463
 
464
+ #~ msgid "We've successfully upgraded WordPress to the latest nightly build!"
465
+ #~ msgstr ""
466
+ #~ "We hebben WordPress succesvol bijgewerkt naar de nieuwste nightly build!"
467
+
468
  #~ msgid "Run <tt>svn up</tt> hourly?"
469
  #~ msgstr "Voer <tt>svn up</tt> ieder uur uit?"
languages/automatic-updater.pot CHANGED
@@ -1,103 +1,126 @@
1
- # Copyright (C) 2012 Automatic Updater
2
  # This file is distributed under the same license as the Automatic Updater package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Automatic Updater 0.8\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/automatic-updater\n"
7
- "POT-Creation-Date: 2012-12-02 05:02:04+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2012-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #. #-#-#-#-# plugin.pot (Automatic Updater 0.8) #-#-#-#-#
16
  #. Plugin Name of the plugin/theme
17
- #: admin.php:32 admin.php:75
18
  msgid "Automatic Updater"
19
  msgstr ""
20
 
21
- #: admin.php:40
22
  msgid "Overview"
23
  msgstr ""
24
 
25
- #: admin.php:42
26
  msgid ""
27
  "This settings page allows you to select whether you would like WordPress "
28
  "Core, your plugins, and your themes to be automatically updated."
29
  msgstr ""
30
 
31
- #: admin.php:43
32
  msgid ""
33
  "It is very important to keep your WordPress installation up to date for "
34
  "security reasons, so unless you have a specific reason not to, we recommend "
35
  "allowing everything to automatically update."
36
  msgstr ""
37
 
38
- #: admin.php:47
39
  msgid "A Plugin By <a href=\"%s\" target=\"_blank\">Gary</a>"
40
  msgstr ""
41
 
42
- #: admin.php:48
43
  msgid "Donations"
44
  msgstr ""
45
 
46
- #: admin.php:49
47
  msgid "Support Forums"
48
  msgstr ""
49
 
50
- #: admin.php:57
51
  msgid "You do not have sufficient permissions to access this page."
52
  msgstr ""
53
 
54
- #: admin.php:64
55
  msgid "Settings updated"
56
  msgstr ""
57
 
58
- #: admin.php:68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
  msgid ""
60
  "Update WordPress Core automatically? <strong>(Strongly Recommended)</strong>"
61
  msgstr ""
62
 
63
- #: admin.php:69
64
  msgid "Update your plugins automatically?"
65
  msgstr ""
66
 
67
- #: admin.php:70
68
  msgid "Update your themes automatically?"
69
  msgstr ""
70
 
71
- #: admin.php:97
72
  msgid "Notification Email"
73
  msgstr ""
74
 
75
- #: admin.php:98
76
  msgid ""
77
  "By default, Automatic Updater will send an email to the Site Admin when an "
78
  "update is performed. If you would like to send that email to a different "
79
  "address, you can set it here."
80
  msgstr ""
81
 
82
- #: admin.php:99
83
  msgid "Override Email Address"
84
  msgstr ""
85
 
86
- #: admin.php:107
87
  msgid ""
88
  "If you don't want to receive an email when updates are installed, you can "
89
  "disable them completely."
90
  msgstr ""
91
 
92
- #: admin.php:108
93
  msgid "Disable email notifications."
94
  msgstr ""
95
 
96
- #: admin.php:111
97
  msgid "Retries"
98
  msgstr ""
99
 
100
- #: admin.php:112
101
  msgid ""
102
  "To avoid updating when something is broken, Automatic Updater can limit the "
103
  "number of times it will attempt to update WordPress Core, a plugin or a "
@@ -106,19 +129,19 @@ msgid ""
106
  "or a new version is released."
107
  msgstr ""
108
 
109
- #: admin.php:113
110
  msgid "Retries Limit"
111
  msgstr ""
112
 
113
- #: admin.php:123
114
  msgid "SVN Support"
115
  msgstr ""
116
 
117
- #: admin.php:133
118
  msgid "WordPress Core"
119
  msgstr ""
120
 
121
- #: admin.php:134
122
  msgid ""
123
  "It looks like you're running an SVN version of WordPress, that's cool! "
124
  "Automatic Updater can run <tt>svn up</tt> once an hour, to keep you up-to-"
@@ -126,15 +149,15 @@ msgid ""
126
  "core updates."
127
  msgstr ""
128
 
129
- #: admin.php:135
130
  msgid "Update WordPress Core hourly?"
131
  msgstr ""
132
 
133
- #: admin.php:142
134
  msgid "Plugins"
135
  msgstr ""
136
 
137
- #: admin.php:143
138
  msgid ""
139
  "Running plugins from SVN is great for helping plugin devs fine tune them "
140
  "before release, so on behalf of all of us, thanks! If you see Akismet here "
@@ -142,11 +165,11 @@ msgid ""
142
  "automatically update when the WordPress Core SVN update occurs."
143
  msgstr ""
144
 
145
- #: admin.php:158
146
  msgid "Themes"
147
  msgstr ""
148
 
149
- #: admin.php:159
150
  msgid ""
151
  "Running themes from SVN makes you an excellent person who makes the "
152
  "WordPress community better - thank you! If you see any of the default Twenty "
@@ -154,7 +177,7 @@ msgid ""
154
  "the WordPress Core SVN update occurs."
155
  msgstr ""
156
 
157
- #: admin.php:175
158
  msgid ""
159
  "The items marked in red don't have their .svn directory writable, so <tt>svn "
160
  "up</tt> will probably fail when the web server runs it. You need to give the "
@@ -162,62 +185,64 @@ msgid ""
162
  "including .svn directories."
163
  msgstr ""
164
 
165
- #: admin.php:182
166
  msgid "SVN Options"
167
  msgstr ""
168
 
169
- #: admin.php:183
170
  msgid ""
171
  "Send email on <tt>svn up</tt> success? Disabling this will cause "
172
  "notification emails to only be sent if the <tt>svn up</tt> fails."
173
  msgstr ""
174
 
175
- #: admin.php:201
176
  msgid "Debug Information"
177
  msgstr ""
178
 
179
- #: admin.php:202
180
  msgid "Show debug information in the notification email."
181
  msgstr ""
182
 
183
- #: admin.php:203
184
  msgid "Save Changes"
185
  msgstr ""
186
 
187
- #: admin.php:265
188
  msgid "Settings"
189
  msgstr ""
190
 
191
- #: automatic-updater.php:134
192
  msgid ""
193
  "Automatic Updater requires WordPress 3.4 or higher! Please upgrade WordPress "
194
  "manually, then reactivate Automatic Updater."
195
  msgstr ""
196
 
197
- #: automatic-updater.php:282
198
  msgid "While trying to upgrade WordPress, we ran into the following error:"
199
  msgstr ""
200
 
201
- #: automatic-updater.php:284
202
  msgid ""
203
  "We're sorry it didn't work out. Please try upgrading manually, instead. This "
204
  "is attempt %1$d of %2$d."
205
  msgstr ""
206
 
207
- #: automatic-updater.php:288
208
- msgid "We've successfully upgraded WordPress to the latest nightly build!"
 
 
209
  msgstr ""
210
 
211
- #: automatic-updater.php:289 automatic-updater.php:295
212
  msgid "Have fun!"
213
  msgstr ""
214
 
215
- #: automatic-updater.php:294
216
  msgid ""
217
  "We've successfully upgraded WordPress from version %1$s to version %2$s!"
218
  msgstr ""
219
 
220
- #: automatic-updater.php:351
221
  msgid "We found a plugin upgrade!"
222
  msgid_plural "We found upgrades for some plugins!"
223
  msgstr[0] ""
@@ -227,7 +252,7 @@ msgstr[1] ""
227
  #. name, third argument is the error encountered while upgrading. The fourth
228
  #. and fifth arguments refer to how many retries we've had at installing this
229
  #. plugin.
230
- #: automatic-updater.php:369
231
  msgid ""
232
  "<a href=\"%1$s\">%2$s</a>: We encounted an error upgrading this plugin: %3$s "
233
  "(Attempt %4$d of %5$d)"
@@ -239,12 +264,12 @@ msgstr ""
239
  #. translators: First argument is the theme URL, second argument is the Theme
240
  #. name, third argument is the old version number, fourth argument is the new
241
  #. version number
242
- #: automatic-updater.php:378 automatic-updater.php:467
243
  msgid ""
244
  "<a href=\"%1$s\">%2$s</a>: Successfully upgraded from version %3$s to %4$s!"
245
  msgstr ""
246
 
247
- #: automatic-updater.php:391
248
  msgid ""
249
  "Plugin authors depend on your feedback to make their plugins better, and the "
250
  "WordPress community depends on plugin ratings for checking the quality of a "
@@ -252,7 +277,7 @@ msgid ""
252
  "and leave a Compatibility Vote or a Rating!"
253
  msgstr ""
254
 
255
- #: automatic-updater.php:440
256
  msgid "We found a theme upgrade!"
257
  msgid_plural "We found upgrades for some themes!"
258
  msgstr[0] ""
@@ -262,13 +287,13 @@ msgstr[1] ""
262
  #. name, third argument is the error encountered while upgrading. The fourth
263
  #. and fifth arguments refer to how many retries we've had at installing this
264
  #. theme.
265
- #: automatic-updater.php:458
266
  msgid ""
267
  "<a href=\"%1$s\">%2$s</a>: We encounted an error upgrading this theme: %3$s "
268
  "(Attempt %4$d of %5$d)"
269
  msgstr ""
270
 
271
- #: automatic-updater.php:480
272
  msgid ""
273
  "Theme authors depend on your feedback to make their plugins better, and the "
274
  "WordPress community depends on theme ratings for checking the quality of a "
@@ -276,61 +301,61 @@ msgid ""
276
  "leave a Compatibility Vote or a Rating!"
277
  msgstr ""
278
 
279
- #: automatic-updater.php:501
280
  msgid "WordPress Core:"
281
  msgstr ""
282
 
283
- #: automatic-updater.php:510
284
  msgid "We successfully upgraded WordPress Core from SVN!"
285
  msgstr ""
286
 
287
- #: automatic-updater.php:515
288
  msgid ""
289
  "While upgrading WordPress Core from SVN, we ran into the following error:"
290
  msgstr ""
291
 
292
- #: automatic-updater.php:517
293
  msgid "We're sorry it didn't work out. Please try upgrading manually, instead."
294
  msgstr ""
295
 
296
- #: automatic-updater.php:558
297
  msgid "We upgraded the following plugin:"
298
  msgid_plural "We upgraded the following plugins:"
299
  msgstr[0] ""
300
  msgstr[1] ""
301
 
302
- #: automatic-updater.php:597
303
  msgid "We upgraded the following theme:"
304
  msgid_plural "We upgraded the following themes:"
305
  msgstr[0] ""
306
  msgstr[1] ""
307
 
308
- #: automatic-updater.php:622
309
  msgid "WordPress Update: %s"
310
  msgstr ""
311
 
312
- #: automatic-updater.php:628
313
  msgid "Howdy!"
314
  msgstr ""
315
 
316
- #: automatic-updater.php:630
317
  msgid ""
318
  "Automatic Updater just ran on your site, <a href=\"%1$s\">%1$s</a>, with the "
319
  "following result:"
320
  msgstr ""
321
 
322
- #: automatic-updater.php:638
323
  msgid ""
324
  "It looks like something went wrong during the update. Note that, if "
325
  "Automatic Updater continues to encounter problems, it will stop trying to do "
326
  "this update, and will not try again until after you manually update."
327
  msgstr ""
328
 
329
- #: automatic-updater.php:642
330
  msgid "Thanks for using the Automatic Updater plugin!"
331
  msgstr ""
332
 
333
- #: automatic-updater.php:646
334
  msgid "Debug Information:"
335
  msgstr ""
336
 
1
+ # Copyright (C) 2013 Automatic Updater
2
  # This file is distributed under the same license as the Automatic Updater package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Automatic Updater 0.9\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/automatic-updater\n"
7
+ "POT-Creation-Date: 2013-07-29 01:49:13+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2013-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #. #-#-#-#-# plugin.pot (Automatic Updater 0.9) #-#-#-#-#
16
  #. Plugin Name of the plugin/theme
17
+ #: admin.php:34 admin.php:81
18
  msgid "Automatic Updater"
19
  msgstr ""
20
 
21
+ #: admin.php:44
22
  msgid "Overview"
23
  msgstr ""
24
 
25
+ #: admin.php:46
26
  msgid ""
27
  "This settings page allows you to select whether you would like WordPress "
28
  "Core, your plugins, and your themes to be automatically updated."
29
  msgstr ""
30
 
31
+ #: admin.php:47
32
  msgid ""
33
  "It is very important to keep your WordPress installation up to date for "
34
  "security reasons, so unless you have a specific reason not to, we recommend "
35
  "allowing everything to automatically update."
36
  msgstr ""
37
 
38
+ #: admin.php:51
39
  msgid "A Plugin By <a href=\"%s\" target=\"_blank\">Gary</a>"
40
  msgstr ""
41
 
42
+ #: admin.php:52
43
  msgid "Donations"
44
  msgstr ""
45
 
46
+ #: admin.php:53
47
  msgid "Support Forums"
48
  msgstr ""
49
 
50
+ #: admin.php:62
51
  msgid "You do not have sufficient permissions to access this page."
52
  msgstr ""
53
 
54
+ #: admin.php:69
55
  msgid "Settings updated"
56
  msgstr ""
57
 
58
+ #: admin.php:98
59
+ msgid ""
60
+ "It looks like Automatic Updater may not be able to run automatically, due to "
61
+ "not having permission to write to the WordPress directory, or connect to the "
62
+ "server over FTP. If you usually upgrade by entering your FTP login details, "
63
+ "please read <a href=\"%s\">this documentation</a> on storing your connection "
64
+ "details."
65
+ msgstr ""
66
+
67
+ #: admin.php:99
68
+ msgid ""
69
+ "Alternatively, if WordPress normally upgrades immediately when you click the "
70
+ "Update button, or if you don't want to see this message again, feel free to "
71
+ "<a href=\"%1$s\" id=\"%2$s\">hide it</a>."
72
+ msgstr ""
73
+
74
+ #: admin.php:112
75
+ msgid ""
76
+ "The Better WP Security plugin is hiding updates, which will prevent "
77
+ "Automatic Updater from operating correctly. Please <a href=\"%s\">disable "
78
+ "these options</a>."
79
+ msgstr ""
80
+
81
+ #: admin.php:124
82
  msgid ""
83
  "Update WordPress Core automatically? <strong>(Strongly Recommended)</strong>"
84
  msgstr ""
85
 
86
+ #: admin.php:125
87
  msgid "Update your plugins automatically?"
88
  msgstr ""
89
 
90
+ #: admin.php:126
91
  msgid "Update your themes automatically?"
92
  msgstr ""
93
 
94
+ #: admin.php:139
95
  msgid "Notification Email"
96
  msgstr ""
97
 
98
+ #: admin.php:140
99
  msgid ""
100
  "By default, Automatic Updater will send an email to the Site Admin when an "
101
  "update is performed. If you would like to send that email to a different "
102
  "address, you can set it here."
103
  msgstr ""
104
 
105
+ #: admin.php:141
106
  msgid "Override Email Address"
107
  msgstr ""
108
 
109
+ #: admin.php:149
110
  msgid ""
111
  "If you don't want to receive an email when updates are installed, you can "
112
  "disable them completely."
113
  msgstr ""
114
 
115
+ #: admin.php:150
116
  msgid "Disable email notifications."
117
  msgstr ""
118
 
119
+ #: admin.php:153
120
  msgid "Retries"
121
  msgstr ""
122
 
123
+ #: admin.php:154
124
  msgid ""
125
  "To avoid updating when something is broken, Automatic Updater can limit the "
126
  "number of times it will attempt to update WordPress Core, a plugin or a "
129
  "or a new version is released."
130
  msgstr ""
131
 
132
+ #: admin.php:155
133
  msgid "Retries Limit"
134
  msgstr ""
135
 
136
+ #: admin.php:165
137
  msgid "SVN Support"
138
  msgstr ""
139
 
140
+ #: admin.php:175
141
  msgid "WordPress Core"
142
  msgstr ""
143
 
144
+ #: admin.php:176
145
  msgid ""
146
  "It looks like you're running an SVN version of WordPress, that's cool! "
147
  "Automatic Updater can run <tt>svn up</tt> once an hour, to keep you up-to-"
149
  "core updates."
150
  msgstr ""
151
 
152
+ #: admin.php:177
153
  msgid "Update WordPress Core hourly?"
154
  msgstr ""
155
 
156
+ #: admin.php:184
157
  msgid "Plugins"
158
  msgstr ""
159
 
160
+ #: admin.php:185
161
  msgid ""
162
  "Running plugins from SVN is great for helping plugin devs fine tune them "
163
  "before release, so on behalf of all of us, thanks! If you see Akismet here "
165
  "automatically update when the WordPress Core SVN update occurs."
166
  msgstr ""
167
 
168
+ #: admin.php:203
169
  msgid "Themes"
170
  msgstr ""
171
 
172
+ #: admin.php:204
173
  msgid ""
174
  "Running themes from SVN makes you an excellent person who makes the "
175
  "WordPress community better - thank you! If you see any of the default Twenty "
177
  "the WordPress Core SVN update occurs."
178
  msgstr ""
179
 
180
+ #: admin.php:223
181
  msgid ""
182
  "The items marked in red don't have their .svn directory writable, so <tt>svn "
183
  "up</tt> will probably fail when the web server runs it. You need to give the "
185
  "including .svn directories."
186
  msgstr ""
187
 
188
+ #: admin.php:230
189
  msgid "SVN Options"
190
  msgstr ""
191
 
192
+ #: admin.php:231
193
  msgid ""
194
  "Send email on <tt>svn up</tt> success? Disabling this will cause "
195
  "notification emails to only be sent if the <tt>svn up</tt> fails."
196
  msgstr ""
197
 
198
+ #: admin.php:249
199
  msgid "Debug Information"
200
  msgstr ""
201
 
202
+ #: admin.php:250
203
  msgid "Show debug information in the notification email."
204
  msgstr ""
205
 
206
+ #: admin.php:251
207
  msgid "Save Changes"
208
  msgstr ""
209
 
210
+ #: admin.php:327
211
  msgid "Settings"
212
  msgstr ""
213
 
214
+ #: automatic-updater.php:152
215
  msgid ""
216
  "Automatic Updater requires WordPress 3.4 or higher! Please upgrade WordPress "
217
  "manually, then reactivate Automatic Updater."
218
  msgstr ""
219
 
220
+ #: automatic-updater.php:316
221
  msgid "While trying to upgrade WordPress, we ran into the following error:"
222
  msgstr ""
223
 
224
+ #: automatic-updater.php:318
225
  msgid ""
226
  "We're sorry it didn't work out. Please try upgrading manually, instead. This "
227
  "is attempt %1$d of %2$d."
228
  msgstr ""
229
 
230
+ #: automatic-updater.php:322
231
+ msgid ""
232
+ "We've successfully upgraded WordPress from version %1$s to version %2$s, the "
233
+ "latest nightly build!"
234
  msgstr ""
235
 
236
+ #: automatic-updater.php:323 automatic-updater.php:329
237
  msgid "Have fun!"
238
  msgstr ""
239
 
240
+ #: automatic-updater.php:328
241
  msgid ""
242
  "We've successfully upgraded WordPress from version %1$s to version %2$s!"
243
  msgstr ""
244
 
245
+ #: automatic-updater.php:389
246
  msgid "We found a plugin upgrade!"
247
  msgid_plural "We found upgrades for some plugins!"
248
  msgstr[0] ""
252
  #. name, third argument is the error encountered while upgrading. The fourth
253
  #. and fifth arguments refer to how many retries we've had at installing this
254
  #. plugin.
255
+ #: automatic-updater.php:408
256
  msgid ""
257
  "<a href=\"%1$s\">%2$s</a>: We encounted an error upgrading this plugin: %3$s "
258
  "(Attempt %4$d of %5$d)"
264
  #. translators: First argument is the theme URL, second argument is the Theme
265
  #. name, third argument is the old version number, fourth argument is the new
266
  #. version number
267
+ #: automatic-updater.php:417 automatic-updater.php:511
268
  msgid ""
269
  "<a href=\"%1$s\">%2$s</a>: Successfully upgraded from version %3$s to %4$s!"
270
  msgstr ""
271
 
272
+ #: automatic-updater.php:430
273
  msgid ""
274
  "Plugin authors depend on your feedback to make their plugins better, and the "
275
  "WordPress community depends on plugin ratings for checking the quality of a "
277
  "and leave a Compatibility Vote or a Rating!"
278
  msgstr ""
279
 
280
+ #: automatic-updater.php:483
281
  msgid "We found a theme upgrade!"
282
  msgid_plural "We found upgrades for some themes!"
283
  msgstr[0] ""
287
  #. name, third argument is the error encountered while upgrading. The fourth
288
  #. and fifth arguments refer to how many retries we've had at installing this
289
  #. theme.
290
+ #: automatic-updater.php:502
291
  msgid ""
292
  "<a href=\"%1$s\">%2$s</a>: We encounted an error upgrading this theme: %3$s "
293
  "(Attempt %4$d of %5$d)"
294
  msgstr ""
295
 
296
+ #: automatic-updater.php:524
297
  msgid ""
298
  "Theme authors depend on your feedback to make their plugins better, and the "
299
  "WordPress community depends on theme ratings for checking the quality of a "
301
  "leave a Compatibility Vote or a Rating!"
302
  msgstr ""
303
 
304
+ #: automatic-updater.php:548
305
  msgid "WordPress Core:"
306
  msgstr ""
307
 
308
+ #: automatic-updater.php:558
309
  msgid "We successfully upgraded WordPress Core from SVN!"
310
  msgstr ""
311
 
312
+ #: automatic-updater.php:564
313
  msgid ""
314
  "While upgrading WordPress Core from SVN, we ran into the following error:"
315
  msgstr ""
316
 
317
+ #: automatic-updater.php:566
318
  msgid "We're sorry it didn't work out. Please try upgrading manually, instead."
319
  msgstr ""
320
 
321
+ #: automatic-updater.php:610
322
  msgid "We upgraded the following plugin:"
323
  msgid_plural "We upgraded the following plugins:"
324
  msgstr[0] ""
325
  msgstr[1] ""
326
 
327
+ #: automatic-updater.php:651
328
  msgid "We upgraded the following theme:"
329
  msgid_plural "We upgraded the following themes:"
330
  msgstr[0] ""
331
  msgstr[1] ""
332
 
333
+ #: automatic-updater.php:676
334
  msgid "WordPress Update: %s"
335
  msgstr ""
336
 
337
+ #: automatic-updater.php:682
338
  msgid "Howdy!"
339
  msgstr ""
340
 
341
+ #: automatic-updater.php:684
342
  msgid ""
343
  "Automatic Updater just ran on your site, <a href=\"%1$s\">%1$s</a>, with the "
344
  "following result:"
345
  msgstr ""
346
 
347
+ #: automatic-updater.php:692
348
  msgid ""
349
  "It looks like something went wrong during the update. Note that, if "
350
  "Automatic Updater continues to encounter problems, it will stop trying to do "
351
  "this update, and will not try again until after you manually update."
352
  msgstr ""
353
 
354
+ #: automatic-updater.php:696
355
  msgid "Thanks for using the Automatic Updater plugin!"
356
  msgstr ""
357
 
358
+ #: automatic-updater.php:700
359
  msgid "Debug Information:"
360
  msgstr ""
361
 
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.6
7
- Stable tag: 0.8.5
8
  License: GPL2+
9
 
10
  Automatically update WordPress, your themes and plugins! Never have to click the update button again!
@@ -41,6 +41,14 @@ There are some Actions and Filters provided, check the [Documentation](http://pe
41
 
42
  == Changelog ==
43
 
 
 
 
 
 
 
 
 
44
  = 0.9 =
45
  * ADDED: Warning when Better WP Security is hiding update info
46
  * ADDED: Warning when the user can't update directly, but hasn't defined S/FTP login details
4
  Tags: updates, core, plugins, themes, stable, nightly, svn, wordpress automatic upgrader
5
  Requires at least: 3.4
6
  Tested up to: 3.6
7
+ Stable tag: 0.9
8
  License: GPL2+
9
 
10
  Automatically update WordPress, your themes and plugins! Never have to click the update button again!
41
 
42
  == Changelog ==
43
 
44
+ = 0.9.1 =
45
+ * UPDATED: Language POT file
46
+ * UPDATED: German (de_DE) translation. Props [Alexander Pfabel](http://alexander.pfabel.de/)
47
+ * UPDATED: Dutch (nl_NL) translation. Props Trifon Rijksen
48
+ * FIXED: If the `svn up` output was empty, don't send an update email
49
+ * FIXED: Removed pass-by-reference, it's too old school for @wonderboymusic
50
+ * FIXED: The settings link was incorrect in Multisite
51
+
52
  = 0.9 =
53
  * ADDED: Warning when Better WP Security is hiding update info
54
  * ADDED: Warning when the user can't update directly, but hasn't defined S/FTP login details