Easy Updates Manager - Version 5.1.1

Version Description

Updated: 2015-08-24

  • Fixed internationalization in plugin files.
  • Added German translation.
  • Updated internal plugin documentation.
  • Fixing errant status messages.
Download this release

Release Info

Developer ronalfy
Plugin Icon 128x128 Easy Updates Manager
Version 5.1.1
Comparing to
See all releases

Code changes from version 5.1.0 to 5.1.1

includes/MPSUM_Admin_Help.php CHANGED
@@ -92,12 +92,7 @@ CONTENT5;
92
 
93
  $content6 = '<p>';
94
  $content6 .= esc_html__( 'WordPress encourages you to update your plugins, themes, and core to make sure that there are no bugs. Even though you most likely want to disable all the updates and never think about updating again, you should still consider updating every once in a while to avoid major bugs and errors on your WordPress website.', 'stops-core-theme-and-plugin-updates' );
95
- $content6 .= sprintf( '<h3>%s</h3>', esc_html__( 'This plugin is tested so there are no known major issues.', 'stops-core-theme-and-plugin-updates' ) );
96
- $content6 .= '<ul>';
97
- $content6 .= sprintf( '<li>%s</li>', esc_html__( 'Tested with WordPress 4.1.1.', 'stops-core-theme-and-plugin-updates' ) );
98
- $content6 .= sprintf( '<li>%s</li>', esc_html__( 'Tested with popular plugins to ensure that there are no conflicts.', 'stops-core-theme-and-plugin-updates' ) );
99
- $content6 .= sprintf( '<li>%s</li>', esc_html__( 'Tested with popular themes to ensure that there are no conflicts.', 'stops-core-theme-and-plugin-updates' ) );
100
- $content6 .= '</ul>';
101
  $content6 .= '</p>';
102
 
103
  $screen->add_help_tab(array(
@@ -108,7 +103,7 @@ CONTENT5;
108
 
109
  $screen->add_help_tab(array(
110
  'id' => 'help_tab_content_4',
111
- 'title' => __( 'Tabs', 'stops-core-theme-and-plugin-updates' ),
112
  'content' => $content4,
113
  ));
114
 
@@ -131,7 +126,7 @@ CONTENT5;
131
  ));
132
 
133
  $screen->set_help_sidebar($content5);
134
-
135
  } //end constructor
136
 
137
  }
92
 
93
  $content6 = '<p>';
94
  $content6 .= esc_html__( 'WordPress encourages you to update your plugins, themes, and core to make sure that there are no bugs. Even though you most likely want to disable all the updates and never think about updating again, you should still consider updating every once in a while to avoid major bugs and errors on your WordPress website.', 'stops-core-theme-and-plugin-updates' );
95
+ $content6 .= sprintf( '<h4>%s</h4>', esc_html__( 'This plugin is tested with the most recent versions of WordPress to ensure that there are no major issues.', 'stops-core-theme-and-plugin-updates' ) );
 
 
 
 
 
96
  $content6 .= '</p>';
97
 
98
  $screen->add_help_tab(array(
103
 
104
  $screen->add_help_tab(array(
105
  'id' => 'help_tab_content_4',
106
+ 'title' => __( 'Navigation', 'stops-core-theme-and-plugin-updates' ),
107
  'content' => $content4,
108
  ));
109
 
126
  ));
127
 
128
  $screen->set_help_sidebar($content5);
129
+
130
  } //end constructor
131
 
132
  }
includes/MPSUM_Admin_Plugins.php CHANGED
@@ -82,12 +82,9 @@ class MPSUM_Admin_Plugins {
82
  if ( !isset( $_GET[ 'page' ] ) || $_GET[ 'page' ] != $this->slug ) return;
83
  if ( !isset( $_GET[ 'tab' ] ) || $_GET[ 'tab' ] != $this->tab ) return;
84
  if ( !isset( $_REQUEST[ 'action' ] ) ) return;
 
85
 
86
  $action = $_REQUEST[ 'action' ];
87
- $plugin_disabled = false;
88
- if ( 'disallow-update-selected' == $action || 'disallow-automatic-selected' == $action ) {
89
- $plugin_disabled = true;
90
- }
91
 
92
  //Build Query Args
93
  $paged = isset( $_GET[ 'paged' ] ) ? absint( $_GET[ 'paged' ] ) : false;
@@ -96,11 +93,7 @@ class MPSUM_Admin_Plugins {
96
  if ( false !== $paged ) {
97
  $query_args[ 'paged' ] = $paged;
98
  }
99
- if ( false == $plugin_disabled ) {
100
- $query_args[ 'disabled' ] = 0;
101
- } else {
102
- $query_args[ 'disabled' ] = 1;
103
- }
104
  $query_args[ 'tab' ] = $this->tab;
105
  $plugin_status = isset( $_REQUEST[ 'plugin_status' ] ) ? $_REQUEST[ 'plugin_status' ] : false;
106
  if ( false !== $plugin_status ) {
@@ -211,8 +204,9 @@ class MPSUM_Admin_Plugins {
211
  return;
212
  }
213
  //Check nonce
 
214
  check_admin_referer( 'mpsum_plugin_update', '_mpsum' );
215
-
216
  //Update option
217
  $plugin_options = array_values( array_unique( $plugin_options ) );
218
  $plugin_automatic_options = array_values( array_unique( $plugin_automatic_options ) );
@@ -233,11 +227,18 @@ class MPSUM_Admin_Plugins {
233
  * @internal Uses the mpsum_admin_tab_plugins action
234
  */
235
  public function tab_output_plugins() {
236
- if ( isset( $_GET[ 'disabled' ] ) ) {
237
- $message = __( 'The selected plugin updates have been enabled.', 'stops-core-theme-and-plugin-updates' );
238
- if ( $_GET[ 'disabled' ] == 1 ) {
239
- $message = __( 'The selected plugin updates have been disabled.', 'stops-core-theme-and-plugin-updates' );
240
- }
 
 
 
 
 
 
 
241
  ?>
242
  <div class="updated"><p><strong><?php echo esc_html( $message ); ?></strong></p></div>
243
  <?php
82
  if ( !isset( $_GET[ 'page' ] ) || $_GET[ 'page' ] != $this->slug ) return;
83
  if ( !isset( $_GET[ 'tab' ] ) || $_GET[ 'tab' ] != $this->tab ) return;
84
  if ( !isset( $_REQUEST[ 'action' ] ) ) return;
85
+ if ( !isset( $_REQUEST[ '_mpsum' ] ) ) return;
86
 
87
  $action = $_REQUEST[ 'action' ];
 
 
 
 
88
 
89
  //Build Query Args
90
  $paged = isset( $_GET[ 'paged' ] ) ? absint( $_GET[ 'paged' ] ) : false;
93
  if ( false !== $paged ) {
94
  $query_args[ 'paged' ] = $paged;
95
  }
96
+ $query_args[ 'action' ] = $action;
 
 
 
 
97
  $query_args[ 'tab' ] = $this->tab;
98
  $plugin_status = isset( $_REQUEST[ 'plugin_status' ] ) ? $_REQUEST[ 'plugin_status' ] : false;
99
  if ( false !== $plugin_status ) {
204
  return;
205
  }
206
  //Check nonce
207
+
208
  check_admin_referer( 'mpsum_plugin_update', '_mpsum' );
209
+
210
  //Update option
211
  $plugin_options = array_values( array_unique( $plugin_options ) );
212
  $plugin_automatic_options = array_values( array_unique( $plugin_automatic_options ) );
227
  * @internal Uses the mpsum_admin_tab_plugins action
228
  */
229
  public function tab_output_plugins() {
230
+ if ( isset( $_GET[ 'action' ] ) ) {
231
+ $message = __( 'Settings have been updated.', 'stops-core-theme-and-plugin-updates' );
232
+
233
+ if ( 'allow-automatic-selected' == $_GET[ 'action' ] ) {
234
+ $message = __( 'The selected plugins have had automatic updates enabled.', 'stops-core-theme-and-plugin-updates' );
235
+ } elseif( 'disallow-automatic-selected' == $_GET[ 'action' ] ) {
236
+ $message = __( 'The selected plugins have had automatic updates disabled.', 'stops-core-theme-and-plugin-updates' );
237
+ } elseif( 'disallow-update-selected' == $_GET[ 'action' ] ) {
238
+ $message = __( 'The selected plugin updates have been disabled.', 'stops-core-theme-and-plugin-updates' );
239
+ } elseif( 'allow-update-selected' == $_GET[ 'action' ] ) {
240
+ $message = __( 'The selected plugin updates have been enabled.', 'stops-core-theme-and-plugin-updates' );
241
+ }
242
  ?>
243
  <div class="updated"><p><strong><?php echo esc_html( $message ); ?></strong></p></div>
244
  <?php
includes/MPSUM_Admin_Themes.php CHANGED
@@ -83,12 +83,9 @@ class MPSUM_Admin_Themes {
83
  if ( !isset( $_GET[ 'page' ] ) || $_GET[ 'page' ] != $this->slug ) return;
84
  if ( !isset( $_GET[ 'tab' ] ) || $_GET[ 'tab' ] != $this->tab ) return;
85
  if ( !isset( $_REQUEST[ 'action' ] ) ) return;
 
86
 
87
  $action = $_REQUEST[ 'action' ];
88
- $theme_disabled = false;
89
- if ( 'disallow-update-selected' == $action || 'disallow-automatic-selected' == $action ) {
90
- $theme_disabled = true;
91
- }
92
 
93
  //Build Query Args
94
  $paged = isset( $_GET[ 'paged' ] ) ? absint( $_GET[ 'paged' ] ) : false;
@@ -97,11 +94,7 @@ class MPSUM_Admin_Themes {
97
  if ( false !== $paged ) {
98
  $query_args[ 'paged' ] = $paged;
99
  }
100
- if ( false == $theme_disabled ) {
101
- $query_args[ 'disabled' ] = 0;
102
- } else {
103
- $query_args[ 'disabled' ] = 1;
104
- }
105
  $query_args[ 'tab' ] = $this->tab;
106
  $theme_status = isset( $_REQUEST[ 'theme_status' ] ) ? $_REQUEST[ 'theme_status' ] : false;
107
  if ( false !== $theme_status ) {
@@ -194,10 +187,16 @@ class MPSUM_Admin_Themes {
194
  * @internal Uses the mpsum_admin_tab_themes action
195
  */
196
  public function tab_output_themes() {
197
- if ( isset( $_GET[ 'disabled' ] ) ) {
198
- $message = __( 'The selected theme updates have been enabled.', 'stops-core-theme-and-plugin-updates' );
199
- if ( $_GET[ 'disabled' ] == 1 ) {
200
- $message = __( 'The selected theme updates have been disabled.', 'stops-core-theme-and-plugin-updates' );
 
 
 
 
 
 
201
  }
202
  ?>
203
  <div class="updated"><p><strong><?php echo esc_html( $message ); ?></strong></p></div>
83
  if ( !isset( $_GET[ 'page' ] ) || $_GET[ 'page' ] != $this->slug ) return;
84
  if ( !isset( $_GET[ 'tab' ] ) || $_GET[ 'tab' ] != $this->tab ) return;
85
  if ( !isset( $_REQUEST[ 'action' ] ) ) return;
86
+ if ( !isset( $_REQUEST[ '_mpsum' ] ) ) return;
87
 
88
  $action = $_REQUEST[ 'action' ];
 
 
 
 
89
 
90
  //Build Query Args
91
  $paged = isset( $_GET[ 'paged' ] ) ? absint( $_GET[ 'paged' ] ) : false;
94
  if ( false !== $paged ) {
95
  $query_args[ 'paged' ] = $paged;
96
  }
97
+ $query_args[ 'action' ] = $action;
 
 
 
 
98
  $query_args[ 'tab' ] = $this->tab;
99
  $theme_status = isset( $_REQUEST[ 'theme_status' ] ) ? $_REQUEST[ 'theme_status' ] : false;
100
  if ( false !== $theme_status ) {
187
  * @internal Uses the mpsum_admin_tab_themes action
188
  */
189
  public function tab_output_themes() {
190
+ if ( isset( $_GET[ 'action' ] ) ) {
191
+ $message = __( 'Settings have been updated.', 'stops-core-theme-and-plugin-updates' );
192
+ if ( 'allow-automatic-selected' == $_GET[ 'action' ] ) {
193
+ $message = __( 'The selected themes have had automatic updates enabled.', 'stops-core-theme-and-plugin-updates' );
194
+ } elseif( 'disallow-automatic-selected' == $_GET[ 'action' ] ) {
195
+ $message = __( 'The selected themes have had automatic updates disabled.', 'stops-core-theme-and-plugin-updates' );
196
+ } elseif( 'disallow-update-selected' == $_GET[ 'action' ] ) {
197
+ $message = __( 'The selected theme updates have been disabled.', 'stops-core-theme-and-plugin-updates' );
198
+ } elseif( 'allow-update-selected' == $_GET[ 'action' ] ) {
199
+ $message = __( 'The selected theme updates have been enabled.', 'stops-core-theme-and-plugin-updates' );
200
  }
201
  ?>
202
  <div class="updated"><p><strong><?php echo esc_html( $message ); ?></strong></p></div>
includes/MPSUM_Plugins_List_Table.php CHANGED
@@ -181,9 +181,9 @@ class MPSUM_Plugins_List_Table extends MPSUM_List_Table {
181
  global $plugins;
182
 
183
  if ( !empty( $plugins['all'] ) )
184
- _e( 'No plugins found.' );
185
  else
186
- _e( 'You do not appear to have any plugins available at this time.' );
187
  }
188
 
189
  public function get_columns() {
@@ -191,8 +191,8 @@ class MPSUM_Plugins_List_Table extends MPSUM_List_Table {
191
 
192
  return array(
193
  'cb' => !in_array( $status, array( 'mustuse', 'dropins' ) ) ? '<input type="checkbox" />' : '',
194
- 'name' => __( 'Plugin' ),
195
- 'description' => __( 'Description' ),
196
  );
197
  }
198
 
@@ -245,12 +245,12 @@ class MPSUM_Plugins_List_Table extends MPSUM_List_Table {
245
 
246
  $actions = array();
247
 
248
- $actions[ 'allow-update-selected' ] = esc_html__( 'Allow Updates', 'disable-plugin-and-theme-updates' );
249
- $actions[ 'disallow-update-selected' ] = esc_html__( 'Disallow Updates', 'disable-plugin-and-theme-updates' );
250
  $core_options = MPSUM_Updates_Manager::get_options( 'core' );
251
  if ( isset( $core_options[ 'automatic_plugin_updates' ] ) && 'individual' == $core_options[ 'automatic_plugin_updates' ] ) {
252
- $actions[ 'allow-automatic-selected' ] = esc_html__( 'Allow Automatic Updates', 'disable-plugin-and-theme-updates' );
253
- $actions[ 'disallow-automatic-selected' ] = esc_html__( 'Disallow Automatic Updates', 'disable-plugin-and-theme-updates' );
254
  }
255
 
256
  return $actions;
@@ -284,11 +284,11 @@ class MPSUM_Plugins_List_Table extends MPSUM_List_Table {
284
  echo '<div class="alignleft actions">';
285
 
286
  if ( ! $this->screen->in_admin( 'network' ) && 'recently_activated' == $status )
287
- submit_button( __( 'Clear List' ), 'button', 'clear-recent-list', false );
288
  elseif ( 'top' == $which && 'mustuse' == $status )
289
- echo '<p>' . sprintf( __( 'Files in the <code>%s</code> directory are executed automatically.' ), str_replace( ABSPATH, '/', WPMU_PLUGIN_DIR ) ) . '</p>';
290
  elseif ( 'top' == $which && 'dropins' == $status )
291
- echo '<p>' . sprintf( __( 'Drop-ins are advanced plugins in the <code>%s</code> directory that replace WordPress functionality when present.' ), str_replace( ABSPATH, '', WP_CONTENT_DIR ) ) . '</p>';
292
 
293
  echo '</div>';
294
  }
@@ -341,7 +341,7 @@ class MPSUM_Plugins_List_Table extends MPSUM_List_Table {
341
  $class = 'inactive';
342
  }
343
  $checkbox_id = "checkbox_" . md5($plugin_data['Name']);
344
- $checkbox = "<label class='screen-reader-text' for='" . $checkbox_id . "' >" . sprintf( __( 'Select %s' ), $plugin_data['Name'] ) . "</label>"
345
  . "<input type='checkbox' name='checked[]' value='" . esc_attr( $plugin_file ) . "' id='" . $checkbox_id . "' />";
346
  $description = '<p>' . ( $plugin_data['Description'] ? $plugin_data['Description'] : '&nbsp;' ) . '</p>';
347
  $plugin_name = $plugin_data['Name'];
@@ -373,12 +373,12 @@ class MPSUM_Plugins_List_Table extends MPSUM_List_Table {
373
 
374
  $plugin_meta = array();
375
  if ( !empty( $plugin_data['Version'] ) )
376
- $plugin_meta[] = sprintf( __( 'Version %s' ), $plugin_data['Version'] );
377
  if ( !empty( $plugin_data['Author'] ) ) {
378
  $author = $plugin_data['Author'];
379
  if ( !empty( $plugin_data['AuthorURI'] ) )
380
  $author = '<a href="' . $plugin_data['AuthorURI'] . '">' . $plugin_data['Author'] . '</a>';
381
- $plugin_meta[] = sprintf( __( 'By %s' ), $author );
382
  }
383
 
384
  // Details link using API info, if available
@@ -386,14 +386,14 @@ class MPSUM_Plugins_List_Table extends MPSUM_List_Table {
386
  $plugin_meta[] = sprintf( '<a href="%s" class="thickbox" aria-label="%s" data-title="%s">%s</a>',
387
  esc_url( network_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $plugin_data['slug'] .
388
  '&TB_iframe=true&width=600&height=550' ) ),
389
- esc_attr( sprintf( __( 'More information about %s' ), $plugin_name ) ),
390
  esc_attr( $plugin_name ),
391
- __( 'View details' )
392
  );
393
  } elseif ( ! empty( $plugin_data['PluginURI'] ) ) {
394
  $plugin_meta[] = sprintf( '<a href="%s">%s</a>',
395
  esc_url( $plugin_data['PluginURI'] ),
396
- __( 'Visit plugin site' )
397
  );
398
  }
399
 
181
  global $plugins;
182
 
183
  if ( !empty( $plugins['all'] ) )
184
+ _e( 'No plugins found.', 'stops-core-theme-and-plugin-updates' );
185
  else
186
+ _e( 'You do not appear to have any plugins available at this time.', 'stops-core-theme-and-plugin-updates' );
187
  }
188
 
189
  public function get_columns() {
191
 
192
  return array(
193
  'cb' => !in_array( $status, array( 'mustuse', 'dropins' ) ) ? '<input type="checkbox" />' : '',
194
+ 'name' => __( 'Plugin', 'stops-core-theme-and-plugin-updates' ),
195
+ 'description' => __( 'Description', 'stops-core-theme-and-plugin-updates' ),
196
  );
197
  }
198
 
245
 
246
  $actions = array();
247
 
248
+ $actions[ 'allow-update-selected' ] = esc_html__( 'Allow Updates', 'stops-core-theme-and-plugin-updates' );
249
+ $actions[ 'disallow-update-selected' ] = esc_html__( 'Disallow Updates', 'stops-core-theme-and-plugin-updates' );
250
  $core_options = MPSUM_Updates_Manager::get_options( 'core' );
251
  if ( isset( $core_options[ 'automatic_plugin_updates' ] ) && 'individual' == $core_options[ 'automatic_plugin_updates' ] ) {
252
+ $actions[ 'allow-automatic-selected' ] = esc_html__( 'Allow Automatic Updates', 'stops-core-theme-and-plugin-updates' );
253
+ $actions[ 'disallow-automatic-selected' ] = esc_html__( 'Disallow Automatic Updates', 'stops-core-theme-and-plugin-updates' );
254
  }
255
 
256
  return $actions;
284
  echo '<div class="alignleft actions">';
285
 
286
  if ( ! $this->screen->in_admin( 'network' ) && 'recently_activated' == $status )
287
+ submit_button( __( 'Clear List', 'stops-core-theme-and-plugin-updates' ), 'button', 'clear-recent-list', false );
288
  elseif ( 'top' == $which && 'mustuse' == $status )
289
+ echo '<p>' . sprintf( __( 'Files in the <code>%s</code> directory are executed automatically.', 'stops-core-theme-and-plugin-updates' ), str_replace( ABSPATH, '/', WPMU_PLUGIN_DIR ) ) . '</p>';
290
  elseif ( 'top' == $which && 'dropins' == $status )
291
+ echo '<p>' . sprintf( __( 'Drop-ins are advanced plugins in the <code>%s</code> directory that replace WordPress functionality when present.', 'stops-core-theme-and-plugin-updates' ), str_replace( ABSPATH, '', WP_CONTENT_DIR ) ) . '</p>';
292
 
293
  echo '</div>';
294
  }
341
  $class = 'inactive';
342
  }
343
  $checkbox_id = "checkbox_" . md5($plugin_data['Name']);
344
+ $checkbox = "<label class='screen-reader-text' for='" . $checkbox_id . "' >" . sprintf( __( 'Select %s', 'stops-core-theme-and-plugin-updates' ), $plugin_data['Name'] ) . "</label>"
345
  . "<input type='checkbox' name='checked[]' value='" . esc_attr( $plugin_file ) . "' id='" . $checkbox_id . "' />";
346
  $description = '<p>' . ( $plugin_data['Description'] ? $plugin_data['Description'] : '&nbsp;' ) . '</p>';
347
  $plugin_name = $plugin_data['Name'];
373
 
374
  $plugin_meta = array();
375
  if ( !empty( $plugin_data['Version'] ) )
376
+ $plugin_meta[] = sprintf( __( 'Version %s', 'stops-core-theme-and-plugin-updates' ), $plugin_data['Version'] );
377
  if ( !empty( $plugin_data['Author'] ) ) {
378
  $author = $plugin_data['Author'];
379
  if ( !empty( $plugin_data['AuthorURI'] ) )
380
  $author = '<a href="' . $plugin_data['AuthorURI'] . '">' . $plugin_data['Author'] . '</a>';
381
+ $plugin_meta[] = sprintf( __( 'By %s', 'stops-core-theme-and-plugin-updates' ), $author );
382
  }
383
 
384
  // Details link using API info, if available
386
  $plugin_meta[] = sprintf( '<a href="%s" class="thickbox" aria-label="%s" data-title="%s">%s</a>',
387
  esc_url( network_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $plugin_data['slug'] .
388
  '&TB_iframe=true&width=600&height=550' ) ),
389
+ esc_attr( sprintf( __( 'More information about %s', 'stops-core-theme-and-plugin-updates' ), $plugin_name ) ),
390
  esc_attr( $plugin_name ),
391
+ __( 'View details', 'stops-core-theme-and-plugin-updates' )
392
  );
393
  } elseif ( ! empty( $plugin_data['PluginURI'] ) ) {
394
  $plugin_meta[] = sprintf( '<a href="%s">%s</a>',
395
  esc_url( $plugin_data['PluginURI'] ),
396
+ __( 'Visit plugin site', 'stops-core-theme-and-plugin-updates' )
397
  );
398
  }
399
 
includes/MPSUM_Themes_List_Table.php CHANGED
@@ -190,9 +190,9 @@ class MPSUM_Themes_List_Table extends MPSUM_List_Table {
190
 
191
  public function no_items() {
192
  if ( ! $this->has_items )
193
- _e( 'No themes found.' );
194
  else
195
- _e( 'You do not appear to have any themes available at this time.' );
196
  }
197
 
198
  public function get_columns() {
@@ -200,8 +200,8 @@ class MPSUM_Themes_List_Table extends MPSUM_List_Table {
200
 
201
  return array(
202
  'cb' => '<input type="checkbox" />',
203
- 'name' => __( 'Theme' ),
204
- 'description' => __( 'Description' ),
205
  );
206
  }
207
 
@@ -255,12 +255,12 @@ class MPSUM_Themes_List_Table extends MPSUM_List_Table {
255
 
256
  $actions = array();
257
 
258
- $actions[ 'allow-update-selected' ] = esc_html__( 'Allow Updates', 'disable-plugin-and-theme-updates' );
259
- $actions[ 'disallow-update-selected' ] = esc_html__( 'Disallow Updates', 'disable-plugin-and-theme-updates' );
260
  $core_options = MPSUM_Updates_Manager::get_options( 'core' );
261
  if ( isset( $core_options[ 'automatic_theme_updates' ] ) && 'individual' == $core_options[ 'automatic_theme_updates' ] ) {
262
- $actions[ 'allow-automatic-selected' ] = esc_html__( 'Allow Automatic Updates', 'disable-plugin-and-theme-updates' );
263
- $actions[ 'disallow-automatic-selected' ] = esc_html__( 'Disallow Automatic Updates', 'disable-plugin-and-theme-updates' );
264
  }
265
 
266
  return $actions;
@@ -296,7 +296,7 @@ class MPSUM_Themes_List_Table extends MPSUM_List_Table {
296
  $actions = apply_filters( 'mpsum_theme_action_links', array(), $theme, 'all' );
297
 
298
  $checkbox_id = "checkbox_" . md5( $theme->get('Name') );
299
- $checkbox = "<input type='checkbox' name='checked[]' value='" . esc_attr( $stylesheet ) . "' id='" . $checkbox_id . "' /><label class='screen-reader-text' for='" . $checkbox_id . "' >" . __('Select') . " " . $theme->display('Name') . "</label>";
300
 
301
  $id = sanitize_html_class( $theme->get_stylesheet() );
302
  $class = 'active';
@@ -325,7 +325,7 @@ class MPSUM_Themes_List_Table extends MPSUM_List_Table {
325
  case 'description':
326
  echo "<td class='column-description desc'$style>";
327
  if ( $theme->errors() ) {
328
- $pre = $status == 'broken' ? __( 'Broken Theme:' ) . ' ' : '';
329
  echo '<p><strong class="attention">' . $pre . $theme->errors()->get_error_message() . '</strong></p>';
330
  }
331
  echo "<div class='theme-description'><p>" . $theme->display( 'Description' ) . "</p></div>
@@ -334,12 +334,12 @@ class MPSUM_Themes_List_Table extends MPSUM_List_Table {
334
  $theme_meta = array();
335
 
336
  if ( $theme->get('Version') )
337
- $theme_meta[] = sprintf( __( 'Version %s' ), $theme->display('Version') );
338
 
339
- $theme_meta[] = sprintf( __( 'By %s' ), $theme->display('Author') );
340
 
341
  if ( $theme->get('ThemeURI') )
342
- $theme_meta[] = '<a href="' . $theme->display('ThemeURI') . '" title="' . esc_attr__( 'Visit theme homepage' ) . '">' . __( 'Visit Theme Site' ) . '</a>';
343
 
344
  /**
345
  * Filter the array of row meta for each theme in the Multisite themes
190
 
191
  public function no_items() {
192
  if ( ! $this->has_items )
193
+ _e( 'No themes found.', 'stops-core-theme-and-plugin-updates' );
194
  else
195
+ _e( 'You do not appear to have any themes available at this time.', 'stops-core-theme-and-plugin-updates' );
196
  }
197
 
198
  public function get_columns() {
200
 
201
  return array(
202
  'cb' => '<input type="checkbox" />',
203
+ 'name' => __( 'Theme', 'stops-core-theme-and-plugin-updates' ),
204
+ 'description' => __( 'Description', 'stops-core-theme-and-plugin-updates' ),
205
  );
206
  }
207
 
255
 
256
  $actions = array();
257
 
258
+ $actions[ 'allow-update-selected' ] = esc_html__( 'Allow Updates', 'stops-core-theme-and-plugin-updates' );
259
+ $actions[ 'disallow-update-selected' ] = esc_html__( 'Disallow Updates', 'stops-core-theme-and-plugin-updates' );
260
  $core_options = MPSUM_Updates_Manager::get_options( 'core' );
261
  if ( isset( $core_options[ 'automatic_theme_updates' ] ) && 'individual' == $core_options[ 'automatic_theme_updates' ] ) {
262
+ $actions[ 'allow-automatic-selected' ] = esc_html__( 'Allow Automatic Updates', 'stops-core-theme-and-plugin-updates' );
263
+ $actions[ 'disallow-automatic-selected' ] = esc_html__( 'Disallow Automatic Updates', 'stops-core-theme-and-plugin-updates' );
264
  }
265
 
266
  return $actions;
296
  $actions = apply_filters( 'mpsum_theme_action_links', array(), $theme, 'all' );
297
 
298
  $checkbox_id = "checkbox_" . md5( $theme->get('Name') );
299
+ $checkbox = "<input type='checkbox' name='checked[]' value='" . esc_attr( $stylesheet ) . "' id='" . $checkbox_id . "' /><label class='screen-reader-text' for='" . $checkbox_id . "' >" . __('Select', 'stops-core-theme-and-plugin-updates' ) . " " . $theme->display('Name') . "</label>";
300
 
301
  $id = sanitize_html_class( $theme->get_stylesheet() );
302
  $class = 'active';
325
  case 'description':
326
  echo "<td class='column-description desc'$style>";
327
  if ( $theme->errors() ) {
328
+ $pre = $status == 'broken' ? __( 'Broken Theme:', 'stops-core-theme-and-plugin-updates' ) . ' ' : '';
329
  echo '<p><strong class="attention">' . $pre . $theme->errors()->get_error_message() . '</strong></p>';
330
  }
331
  echo "<div class='theme-description'><p>" . $theme->display( 'Description' ) . "</p></div>
334
  $theme_meta = array();
335
 
336
  if ( $theme->get('Version') )
337
+ $theme_meta[] = sprintf( __( 'Version %s', 'stops-core-theme-and-plugin-updates' ), $theme->display('Version') );
338
 
339
+ $theme_meta[] = sprintf( __( 'By %s', 'stops-core-theme-and-plugin-updates' ), $theme->display('Author') );
340
 
341
  if ( $theme->get('ThemeURI') )
342
+ $theme_meta[] = '<a href="' . $theme->display('ThemeURI') . '" title="' . esc_attr__( 'Visit theme homepage', 'stops-core-theme-and-plugin-updates' ) . '">' . __( 'Visit Theme Site', 'stops-core-theme-and-plugin-updates' ) . '</a>';
343
 
344
  /**
345
  * Filter the array of row meta for each theme in the Multisite themes
languages/stops-core-theme-and-plugin-updates-de_DE.mo ADDED
Binary file
languages/stops-core-theme-and-plugin-updates-de_DE.po ADDED
@@ -0,0 +1,737 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Easy Updates Manager\n"
4
+ "Report-Msgid-Bugs-To: Ronald Huereca <ronalfy@gmail.com>\n"
5
+ "POT-Creation-Date: 2015-08-25 11:27+0100\n"
6
+ "PO-Revision-Date: 2015-08-25 11:32+0100\n"
7
+ "Last-Translator: Pixolin <pixolin@gmx.com>\n"
8
+ "Language-Team: pixolin <pixolin@gmx.com>\n"
9
+ "Language: de_DE\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.7\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
17
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
18
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
19
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ #: includes/MPSUM_Admin.php:164 includes/MPSUM_Admin.php:180
23
+ msgid "Update Options"
24
+ msgstr "Aktualisierungs-Optionen"
25
+
26
+ #: includes/MPSUM_Admin.php:198
27
+ msgid "Manage Updates"
28
+ msgstr "Aktualisierungen verwalten"
29
+
30
+ #: includes/MPSUM_Admin.php:205 includes/MPSUM_Admin_Help.php:51
31
+ msgid "General"
32
+ msgstr "Allgemein"
33
+
34
+ #: includes/MPSUM_Admin.php:211 includes/MPSUM_Admin_Help.php:52
35
+ msgid "Plugins"
36
+ msgstr "Plugins"
37
+
38
+ #: includes/MPSUM_Admin.php:217 includes/MPSUM_Admin_Help.php:53
39
+ msgid "Themes"
40
+ msgstr "Themes"
41
+
42
+ #: includes/MPSUM_Admin.php:223 includes/MPSUM_Admin_Help.php:54
43
+ msgid "Advanced"
44
+ msgstr "Erweitert"
45
+
46
+ #: includes/MPSUM_Admin.php:279
47
+ msgid "Configure"
48
+ msgstr "Konfigurieren"
49
+
50
+ #: includes/MPSUM_Admin_Advanced.php:113 includes/MPSUM_Admin_Core.php:130
51
+ msgid "Options saved."
52
+ msgstr "Einstellungen gespeichert."
53
+
54
+ #: includes/MPSUM_Admin_Advanced.php:122
55
+ msgid "Exclude Users"
56
+ msgstr "Anwender ausschließen"
57
+
58
+ #: includes/MPSUM_Admin_Advanced.php:123
59
+ msgid ""
60
+ "Select which users to be excluded from the settings of this plugin. Default "
61
+ "WordPress behavior will be used."
62
+ msgstr ""
63
+ "Wähle, welche Anwender von den Einstellungen dieses Plugins ausgeschlossen "
64
+ "werden sollen. Das normale Verhalten von WordPress wird dann verwendet."
65
+
66
+ #: includes/MPSUM_Admin_Advanced.php:124
67
+ msgid ""
68
+ "This option is useful if, for example, you would like to disable updates, "
69
+ "but have a user account that can still update WordPress."
70
+ msgstr ""
71
+ "Diese Option ist zum Beispiel sinnvoll, wenn du Aktualisierungen abschalten "
72
+ "möchtest, aber gleichzeitig ein Anwender weiterhin WordPress aktualisieren "
73
+ "können soll."
74
+
75
+ #: includes/MPSUM_Admin_Advanced.php:127
76
+ msgid "Users to be Excluded"
77
+ msgstr "Anwender, die ausgeschlossen werden sollen"
78
+
79
+ #: includes/MPSUM_Admin_Advanced.php:166
80
+ msgid "Save Users"
81
+ msgstr "Anwender speichern"
82
+
83
+ #: includes/MPSUM_Admin_Advanced.php:171
84
+ msgid "Reset Options"
85
+ msgstr "Einstellungen zurücksetzen"
86
+
87
+ #: includes/MPSUM_Admin_Advanced.php:172
88
+ msgid ""
89
+ "This will reset all options to as if you have just installed the plugin."
90
+ msgstr ""
91
+ "Hiermit werden alle Einstellungen so zurückgesetzt, als hättest du das "
92
+ "Plugin gerade erst installiert."
93
+
94
+ #: includes/MPSUM_Admin_Advanced.php:177
95
+ msgid "Reset All Options"
96
+ msgstr "Alle Einstellungen zurücksetzen"
97
+
98
+ #: includes/MPSUM_Admin_Core.php:139
99
+ msgid "Global Settings"
100
+ msgstr "Globale Einstellungen"
101
+
102
+ #: includes/MPSUM_Admin_Core.php:142
103
+ msgid "All Updates"
104
+ msgstr "Alle Aktualisierungen"
105
+
106
+ #: includes/MPSUM_Admin_Core.php:144 includes/MPSUM_Admin_Core.php:152
107
+ #: includes/MPSUM_Admin_Core.php:160 includes/MPSUM_Admin_Core.php:167
108
+ #: includes/MPSUM_Admin_Core.php:174 includes/MPSUM_Admin_Core.php:185
109
+ #: includes/MPSUM_Admin_Core.php:193 includes/MPSUM_Admin_Core.php:201
110
+ #: includes/MPSUM_Admin_Core.php:209 includes/MPSUM_Admin_Core.php:219
111
+ #: includes/MPSUM_Admin_Core.php:229 includes/MPSUM_Admin_Core.php:240
112
+ #: includes/MPSUM_Admin_Core.php:251 includes/MPSUM_Admin_Core.php:259
113
+ msgid "Enabled"
114
+ msgstr "Aktiviert"
115
+
116
+ #: includes/MPSUM_Admin_Core.php:145 includes/MPSUM_Admin_Core.php:153
117
+ #: includes/MPSUM_Admin_Core.php:161 includes/MPSUM_Admin_Core.php:168
118
+ #: includes/MPSUM_Admin_Core.php:175 includes/MPSUM_Admin_Core.php:186
119
+ #: includes/MPSUM_Admin_Core.php:194 includes/MPSUM_Admin_Core.php:202
120
+ #: includes/MPSUM_Admin_Core.php:210 includes/MPSUM_Admin_Core.php:220
121
+ #: includes/MPSUM_Admin_Core.php:230 includes/MPSUM_Admin_Core.php:241
122
+ #: includes/MPSUM_Admin_Core.php:252 includes/MPSUM_Admin_Core.php:260
123
+ msgid "Disabled"
124
+ msgstr "Deaktiviert"
125
+
126
+ #: includes/MPSUM_Admin_Core.php:146
127
+ msgid "If this option is disabled, this will override all settings."
128
+ msgstr ""
129
+ "Wird diese Einstellung deaktiviert, überschreibt dies alle übrigen "
130
+ "Einstellungen."
131
+
132
+ #: includes/MPSUM_Admin_Core.php:150
133
+ msgid "WordPress Core Updates"
134
+ msgstr "WordPress Core-Aktualisierungen"
135
+
136
+ #: includes/MPSUM_Admin_Core.php:154
137
+ msgid "Prevents WordPress from showing it needs to be updated."
138
+ msgstr "Hält WordPress davon ab, notwendige Aktualisierungen anzuzeigen."
139
+
140
+ #: includes/MPSUM_Admin_Core.php:158
141
+ msgid "All Plugin Updates"
142
+ msgstr "Aktualisierung aller Plugins"
143
+
144
+ #: includes/MPSUM_Admin_Core.php:165
145
+ msgid "All Theme Updates"
146
+ msgstr "Aktualisierung aller Themes"
147
+
148
+ #: includes/MPSUM_Admin_Core.php:172
149
+ msgid "All Translation Updates"
150
+ msgstr "Aktualisierung aller Übersetzungen"
151
+
152
+ #: includes/MPSUM_Admin_Core.php:179
153
+ msgid "Automatic Updates"
154
+ msgstr "Automatische Aktualisierungen"
155
+
156
+ #: includes/MPSUM_Admin_Core.php:180
157
+ msgid ""
158
+ "These options will enable or disable automatic updates (background updates) "
159
+ "of certain parts of WordPress."
160
+ msgstr ""
161
+ "Diese Einstellungen aktivieren oder deaktivieren automatische "
162
+ "Aktualisierungen (Hintergrundaktulisierungen) bestimmter Teile von WordPress."
163
+
164
+ #: includes/MPSUM_Admin_Core.php:183
165
+ msgid "Major Releases"
166
+ msgstr "Hauptversion"
167
+
168
+ #: includes/MPSUM_Admin_Core.php:187
169
+ msgid "Automatically update to major releases (e.g., 4.1, 4.2, 4.3)."
170
+ msgstr "Automatisch Hauptversionen aktualisieren (z.B. 4.1, 4.2, 4.3)."
171
+
172
+ #: includes/MPSUM_Admin_Core.php:191
173
+ msgid "Minor Releases"
174
+ msgstr "Nebenversion"
175
+
176
+ #: includes/MPSUM_Admin_Core.php:195
177
+ msgid "Automatically update to minor releases (e.g., 4.1.1, 4.1.2, 4.1.3)."
178
+ msgstr "Automatisch Nebenversionen aktualisieren (z.B. 4.1.1, 4.1.2, 4.1.3)."
179
+
180
+ #: includes/MPSUM_Admin_Core.php:199
181
+ msgid "Development Updates"
182
+ msgstr "Entwicklungs-Aktualisierungen"
183
+
184
+ #: includes/MPSUM_Admin_Core.php:203
185
+ msgid "Update automatically to Bleeding Edge releases."
186
+ msgstr "Automatisch auf beta-Versionen aktualisieren."
187
+
188
+ #: includes/MPSUM_Admin_Core.php:207
189
+ msgid "Automatic Plugin Updates"
190
+ msgstr "Automatische Plugin-Aktualisierungen"
191
+
192
+ #: includes/MPSUM_Admin_Core.php:211 includes/MPSUM_Admin_Core.php:221
193
+ msgid "Default"
194
+ msgstr "Standard"
195
+
196
+ #: includes/MPSUM_Admin_Core.php:212 includes/MPSUM_Admin_Core.php:222
197
+ msgid "Select Individually"
198
+ msgstr "Individuelle Auswahl"
199
+
200
+ #: includes/MPSUM_Admin_Core.php:213
201
+ msgid ""
202
+ "Automatically update your plugins. Select always on, always off, the "
203
+ "WordPress default, or select plugins individually."
204
+ msgstr ""
205
+ "Aktualisiere deine Plugins automatisch. Wähle aus immer an, immer aus, "
206
+ "WordPress-Standard oder wähle Plugins individuell."
207
+
208
+ #: includes/MPSUM_Admin_Core.php:217
209
+ msgid "Automatic Theme Updates"
210
+ msgstr "Automatische Theme-Updates"
211
+
212
+ #: includes/MPSUM_Admin_Core.php:223
213
+ msgid ""
214
+ "Automatically update your themes. Select always on, always off, the "
215
+ "WordPress default, or select themes individually."
216
+ msgstr ""
217
+ "Aktualisiere deine Plugins automatisch. Wähle immer an, immer aus, WordPress-"
218
+ "Standard oder wähle Themes individuell."
219
+
220
+ #: includes/MPSUM_Admin_Core.php:227
221
+ msgid "Translation Updates"
222
+ msgstr "Aktualisierung der Übersetzungen"
223
+
224
+ #: includes/MPSUM_Admin_Core.php:231
225
+ msgid "Automatically update your translations."
226
+ msgstr "Aktualisiere deine Übersetzungen automatisch."
227
+
228
+ #: includes/MPSUM_Admin_Core.php:235
229
+ msgid "Notifications"
230
+ msgstr "Benachrichtigung"
231
+
232
+ #: includes/MPSUM_Admin_Core.php:238
233
+ msgid "Core Update E-mails"
234
+ msgstr "E-Mails für Core-Aktualisierungen"
235
+
236
+ #: includes/MPSUM_Admin_Core.php:242
237
+ msgid ""
238
+ "Disable e-mails that are sent when your site has been upgraded automatically."
239
+ msgstr ""
240
+ "Deaktiviere den Erhalt von E-Mails, nachdem deine Website automatisch "
241
+ "aktualisiert wurde."
242
+
243
+ #: includes/MPSUM_Admin_Core.php:246
244
+ msgid "Miscellaneous"
245
+ msgstr "Verschiedenes"
246
+
247
+ #: includes/MPSUM_Admin_Core.php:249
248
+ msgid "Browser Nag"
249
+ msgstr "Browser-Hinweis"
250
+
251
+ #: includes/MPSUM_Admin_Core.php:253
252
+ msgid "Removes the browser nag for people using older browsers."
253
+ msgstr "Entfernt den Hinweis bei Verwendung älterer Browser."
254
+
255
+ #: includes/MPSUM_Admin_Core.php:257
256
+ msgid "WordPress Version in Footer"
257
+ msgstr "WordPress-Version in der Fußzeile"
258
+
259
+ #: includes/MPSUM_Admin_Core.php:261
260
+ msgid "Removes the WordPress version in the footer."
261
+ msgstr "Entfernt die Anzeige der WordPress-Version in der Fußzeile."
262
+
263
+ #: includes/MPSUM_Admin_Core.php:269
264
+ msgid "Save Changes"
265
+ msgstr "Änderungen speichern"
266
+
267
+ #: includes/MPSUM_Admin_Core.php:271
268
+ msgid "Reset to Defaults"
269
+ msgstr "Zurücksetzen"
270
+
271
+ #: includes/MPSUM_Admin_Help.php:27
272
+ msgid ""
273
+ "This is the Easy Updates Manager settings help tab. In here you will find "
274
+ "helpful information on what Easy Updates Manager does and how to use it."
275
+ msgstr ""
276
+ "Dies ist der Hilfe-Tab zu den Einstellungen des Easy Updates Manager. Hier "
277
+ "findest du hilfreiche Informationen darüber, was der Easy Updates Manager "
278
+ "tut und wie er verwendet wird."
279
+
280
+ #: includes/MPSUM_Admin_Help.php:29
281
+ msgid "Please Note!"
282
+ msgstr "Bitte beachten!"
283
+
284
+ #: includes/MPSUM_Admin_Help.php:29
285
+ msgid ""
286
+ "If either your WordPress core, theme, or plugins get too out of date, you "
287
+ "may run into compatibility problems. Check the capability tab for more "
288
+ "information."
289
+ msgstr ""
290
+ "Wenn deine WordPress-Coredateien, Theme oder Plugins zu veraltet sind, "
291
+ "können Kompatibilitätsprobleme entstehen. Sieh im Tab Kompatibilität nach, "
292
+ "um mehr zu erfahren."
293
+
294
+ #: includes/MPSUM_Admin_Help.php:31
295
+ msgid "Please see our Wiki for documentation and videos."
296
+ msgstr "Dokumentation und Videos findest du in unserem Wiki."
297
+
298
+ #: includes/MPSUM_Admin_Help.php:34
299
+ msgid "Our Website"
300
+ msgstr "Unsere Website"
301
+
302
+ #: includes/MPSUM_Admin_Help.php:35
303
+ msgid "Support on WordPress"
304
+ msgstr "Support für WordPress"
305
+
306
+ #: includes/MPSUM_Admin_Help.php:36
307
+ msgid "GitHub Repository"
308
+ msgstr "GitHub Repository"
309
+
310
+ #: includes/MPSUM_Admin_Help.php:37
311
+ msgid "Official Documentation"
312
+ msgstr "Offizielle Dokumentation"
313
+
314
+ #: includes/MPSUM_Admin_Help.php:50
315
+ msgid "You will see four tabs where you can configure the update options."
316
+ msgstr ""
317
+ "Du siehst vier Tabs, in denen du die Aktualisierung-Einstellungen "
318
+ "konfigurieren kannst."
319
+
320
+ #: includes/MPSUM_Admin_Help.php:51
321
+ msgid ""
322
+ "Use this screen to finely tune which updates and automatic updates you would "
323
+ "like to see."
324
+ msgstr ""
325
+ "Benutze diesen Bildschirm für detaillierte Einstellungen zu gewünschten "
326
+ "Aktualisierungen und automatischen Aktualisierungen."
327
+
328
+ #: includes/MPSUM_Admin_Help.php:52
329
+ msgid ""
330
+ "If plugin updates are enabled and/or automatic updates for plugins are "
331
+ "enabled, you can configure which plugins will receive updates and/or "
332
+ "automatic updates."
333
+ msgstr ""
334
+ "Wenn Plugin-Aktualisierungen und/oder automatische Plugin-Aktualisierungen "
335
+ "aktiviert wurden, kannst du einstellen, welche Plugins aktualisiert und/oder "
336
+ "automatisch aktualisiert werden."
337
+
338
+ #: includes/MPSUM_Admin_Help.php:53
339
+ msgid ""
340
+ "If theme updates are enabled and/or automatic updates for themes are "
341
+ "enabled, you can configure which themes will receive updates and/or "
342
+ "automatic updates."
343
+ msgstr ""
344
+ "Wenn Theme-Aktualisierungen und/oder automatische Theme-Aktualisierungen "
345
+ "aktiviert wurden, kannst du einstellen, welche Themes aktualisiert und/oder "
346
+ "automatisch aktualisiert werden."
347
+
348
+ #: includes/MPSUM_Admin_Help.php:54
349
+ msgid ""
350
+ "Reset all options or allow certain users to see all updates regardless of "
351
+ "what settings you have set."
352
+ msgstr ""
353
+ "Setze alle Einstellungen zurück oder erlaube bestimmten Anwendern, "
354
+ "unabhängig von deinen Einstellungen Aktualisierungen zu sehen."
355
+
356
+ #: includes/MPSUM_Admin_Help.php:79
357
+ msgid "Contributors:"
358
+ msgstr "Mitwirkende:"
359
+
360
+ #: includes/MPSUM_Admin_Help.php:94
361
+ msgid ""
362
+ "WordPress encourages you to update your plugins, themes, and core to make "
363
+ "sure that there are no bugs. Even though you most likely want to disable all "
364
+ "the updates and never think about updating again, you should still consider "
365
+ "updating every once in a while to avoid major bugs and errors on your "
366
+ "WordPress website."
367
+ msgstr ""
368
+ "WordPress empfiehlt, dass du deine Plugins, Themes und Core-Dateien immer "
369
+ "aktuell hältst, um Programmfehler auszuschließen. Auch wenn du am liebsten "
370
+ "alle Aktualisierungen abschalten und dich nie wieder damit beschäftigen "
371
+ "möchtest, solltest du hin und wieder über eine Aktualisierung nachdenken, um "
372
+ "gravierende Fehler und Software-Bugs in deiner WordPress-Website zu "
373
+ "vermeiden. "
374
+
375
+ #: includes/MPSUM_Admin_Help.php:95
376
+ msgid ""
377
+ "This plugin is tested with the most recent versions of WordPress to ensure "
378
+ "that there are no major issues."
379
+ msgstr ""
380
+ "Dieses Plugin wurde darauf getestet, dass keine gravierenden Probleme "
381
+ "bestehen."
382
+
383
+ #: includes/MPSUM_Admin_Help.php:100
384
+ msgid "Overview"
385
+ msgstr "Überblick"
386
+
387
+ #: includes/MPSUM_Admin_Help.php:106
388
+ msgid "Navigation"
389
+ msgstr "Tabs"
390
+
391
+ #: includes/MPSUM_Admin_Help.php:112
392
+ msgid "Documentation"
393
+ msgstr "Dokumentation"
394
+
395
+ #: includes/MPSUM_Admin_Help.php:118
396
+ msgid "Capability"
397
+ msgstr "Kompatibilität"
398
+
399
+ #: includes/MPSUM_Admin_Help.php:124
400
+ msgid "Troubleshooting"
401
+ msgstr "Fehlerbehebung"
402
+
403
+ #: includes/MPSUM_Admin_Plugins.php:128 includes/MPSUM_Admin_Themes.php:251
404
+ #: includes/MPSUM_Plugins_List_Table.php:248
405
+ #: includes/MPSUM_Themes_List_Table.php:258
406
+ msgid "Allow Updates"
407
+ msgstr "Aktualisierungen erlauben"
408
+
409
+ #: includes/MPSUM_Admin_Plugins.php:132 includes/MPSUM_Admin_Themes.php:256
410
+ #: includes/MPSUM_Plugins_List_Table.php:249
411
+ #: includes/MPSUM_Themes_List_Table.php:259
412
+ msgid "Disallow Updates"
413
+ msgstr "Aktualisierungen verbieten"
414
+
415
+ #: includes/MPSUM_Admin_Plugins.php:141 includes/MPSUM_Admin_Themes.php:265
416
+ #: includes/MPSUM_Plugins_List_Table.php:253
417
+ #: includes/MPSUM_Themes_List_Table.php:263
418
+ msgid "Disallow Automatic Updates"
419
+ msgstr "Automatische Aktualisierungen verbieten"
420
+
421
+ #: includes/MPSUM_Admin_Plugins.php:145 includes/MPSUM_Admin_Themes.php:269
422
+ msgid "Enable Automatic Updates"
423
+ msgstr "Automatische Aktualisierungen aktivieren"
424
+
425
+ #: includes/MPSUM_Admin_Plugins.php:231 includes/MPSUM_Admin_Themes.php:191
426
+ msgid "Settings have been updated."
427
+ msgstr "Einstellungen wurden aktualisiert."
428
+
429
+ #: includes/MPSUM_Admin_Plugins.php:234
430
+ msgid "The selected plugins have had automatic updates enabled."
431
+ msgstr ""
432
+ "Für die ausgewählten Plugins wurde eine automatische Aktualisierung "
433
+ "aktiviert."
434
+
435
+ #: includes/MPSUM_Admin_Plugins.php:236
436
+ msgid "The selected plugins have had automatic updates disabled."
437
+ msgstr ""
438
+ "Für die ausgewählten Plugins wurde eine automatische Aktualisierung "
439
+ "deaktiviert."
440
+
441
+ #: includes/MPSUM_Admin_Plugins.php:238
442
+ msgid "The selected plugin updates have been disabled."
443
+ msgstr "Die Aktivierung ausgewählter Plugins wurde deaktiviert."
444
+
445
+ #: includes/MPSUM_Admin_Plugins.php:240
446
+ msgid "The selected plugin updates have been enabled."
447
+ msgstr "Die Aktualisierung ausgewählter Plugins wurde aktiviert."
448
+
449
+ #: includes/MPSUM_Admin_Plugins.php:256
450
+ msgid "Plugin Update Options"
451
+ msgstr "Optionen zur Plugin-Aktualisierung"
452
+
453
+ #: includes/MPSUM_Admin_Plugins.php:260
454
+ msgid "All plugin updates have been disabled."
455
+ msgstr "Alle Plugin-Aktualisierungen wurden deaktiviert."
456
+
457
+ #: includes/MPSUM_Admin_Themes.php:193
458
+ msgid "The selected themes have had automatic updates enabled."
459
+ msgstr ""
460
+ "Für die ausgewählten Themes wurde eine automatische Aktualisierung aktiviert."
461
+
462
+ #: includes/MPSUM_Admin_Themes.php:195
463
+ msgid "The selected themes have had automatic updates disabled."
464
+ msgstr ""
465
+ "Für die ausgewählten Themes wurde eine automatische Aktualisierung "
466
+ "deaktiviert."
467
+
468
+ #: includes/MPSUM_Admin_Themes.php:197
469
+ msgid "The selected theme updates have been disabled."
470
+ msgstr "Die Aktualisierung ausgewählter Themes wurde deaktiviert."
471
+
472
+ #: includes/MPSUM_Admin_Themes.php:199
473
+ msgid "The selected theme updates have been enabled."
474
+ msgstr "Die Aktualisierung ausgewählter Themes wurde aktiviert."
475
+
476
+ #: includes/MPSUM_Admin_Themes.php:216
477
+ msgid "Theme Update Options"
478
+ msgstr "Optionen zur Theme-Aktualisierung"
479
+
480
+ #: includes/MPSUM_Admin_Themes.php:221
481
+ msgid "All theme updates have been disabled."
482
+ msgstr "Alle Theme-Aktualisierungen wurden deaktiviert."
483
+
484
+ #: includes/MPSUM_List_Table.php:143
485
+ msgid "List View"
486
+ msgstr "Listenansicht"
487
+
488
+ #: includes/MPSUM_List_Table.php:144
489
+ msgid "Excerpt View"
490
+ msgstr "Auszugansicht"
491
+
492
+ #: includes/MPSUM_List_Table.php:313
493
+ msgid "No items found."
494
+ msgstr "Keine Elemente gefunden."
495
+
496
+ #: includes/MPSUM_List_Table.php:439
497
+ msgid "Select bulk action"
498
+ msgstr "Aktion wählen"
499
+
500
+ #: includes/MPSUM_List_Table.php:441
501
+ msgid "Bulk Actions"
502
+ msgstr "Aktionen"
503
+
504
+ #: includes/MPSUM_List_Table.php:451
505
+ msgid "Apply"
506
+ msgstr "Anwenden"
507
+
508
+ #: includes/MPSUM_List_Table.php:501
509
+ msgid "Show more details"
510
+ msgstr "Details anzeigen"
511
+
512
+ #: includes/MPSUM_List_Table.php:556
513
+ msgid "Filter by date"
514
+ msgstr "Nach Datum filtern"
515
+
516
+ #: includes/MPSUM_List_Table.php:558
517
+ msgid "All dates"
518
+ msgstr "Alle Daten anzeigen"
519
+
520
+ #: includes/MPSUM_List_Table.php:571
521
+ #, php-format
522
+ msgid "%1$s %2$d"
523
+ msgstr "%1$s %2$d"
524
+
525
+ #: includes/MPSUM_List_Table.php:623
526
+ #, php-format
527
+ msgid "%s comment"
528
+ msgid_plural "%s comments"
529
+ msgstr[0] "%s Kommentar"
530
+ msgstr[1] "%s Kommentare"
531
+
532
+ #: includes/MPSUM_List_Table.php:624
533
+ #, php-format
534
+ msgid "%s approved comment"
535
+ msgid_plural "%s approved comments"
536
+ msgstr[0] "%s genehmigter Kommentar"
537
+ msgstr[1] "%s genehmigte Kommentare"
538
+
539
+ #: includes/MPSUM_List_Table.php:625
540
+ #, php-format
541
+ msgid "%s pending comment"
542
+ msgid_plural "%s pending comments"
543
+ msgstr[0] "%s ausstehender Kommentar"
544
+ msgstr[1] "%s ausstehende Kommentare"
545
+
546
+ #: includes/MPSUM_List_Table.php:630 includes/MPSUM_List_Table.php:642
547
+ msgid "No comments"
548
+ msgstr "Keine Kommentare"
549
+
550
+ #: includes/MPSUM_List_Table.php:642
551
+ msgid "No approved comments"
552
+ msgstr "Keine genehmigten Kommentare"
553
+
554
+ #: includes/MPSUM_List_Table.php:723 includes/MPSUM_List_Table.php:1287
555
+ #, php-format
556
+ msgid "%s item"
557
+ msgid_plural "%s items"
558
+ msgstr[0] "%s Element"
559
+ msgstr[1] "%s Elemente"
560
+
561
+ #: includes/MPSUM_List_Table.php:758
562
+ msgid "First page"
563
+ msgstr "Erste Seite"
564
+
565
+ #: includes/MPSUM_List_Table.php:768
566
+ msgid "Previous page"
567
+ msgstr "Vorherige Seite"
568
+
569
+ #: includes/MPSUM_List_Table.php:775 includes/MPSUM_List_Table.php:778
570
+ msgid "Current Page"
571
+ msgstr "Aktuelle Seite"
572
+
573
+ #: includes/MPSUM_List_Table.php:784
574
+ #, php-format
575
+ msgctxt "paging"
576
+ msgid "%1$s of %2$s"
577
+ msgstr "%1$s von %2$s"
578
+
579
+ #: includes/MPSUM_List_Table.php:791
580
+ msgid "Next page"
581
+ msgstr "Nächste Seite"
582
+
583
+ #: includes/MPSUM_List_Table.php:801
584
+ msgid "Last page"
585
+ msgstr "Letzte Seite"
586
+
587
+ #: includes/MPSUM_List_Table.php:1011
588
+ msgid "Select All"
589
+ msgstr "Alle auswählen"
590
+
591
+ #: includes/MPSUM_Plugins_List_Table.php:184
592
+ msgid "No plugins found."
593
+ msgstr "Keine Plugins gefunden."
594
+
595
+ #: includes/MPSUM_Plugins_List_Table.php:186
596
+ msgid "You do not appear to have any plugins available at this time."
597
+ msgstr ""
598
+ "Es sieht nicht so aus, als stünden dir im Moment Plugins zur Verfügung."
599
+
600
+ #: includes/MPSUM_Plugins_List_Table.php:194
601
+ msgid "Plugin"
602
+ msgstr "Plugin"
603
+
604
+ #: includes/MPSUM_Plugins_List_Table.php:195
605
+ #: includes/MPSUM_Themes_List_Table.php:204
606
+ msgid "Description"
607
+ msgstr "Beschreibung"
608
+
609
+ #: includes/MPSUM_Plugins_List_Table.php:213
610
+ #, php-format
611
+ msgctxt "plugins"
612
+ msgid "All <span class=\"count\">(%s)</span>"
613
+ msgid_plural "All <span class=\"count\">(%s)</span>"
614
+ msgstr[0] "Alle <span class=\"count\">(%s)</span>"
615
+ msgstr[1] "Alle <span class=\"count\">(%s)</span>"
616
+
617
+ #: includes/MPSUM_Plugins_List_Table.php:216
618
+ #: includes/MPSUM_Themes_List_Table.php:228
619
+ #, php-format
620
+ msgid "Updates Enabled <span class=\"count\">(%s)</span>"
621
+ msgid_plural "Updates Enabled <span class=\"count\">(%s)</span>"
622
+ msgstr[0] "Aktualisierungen aktiviert <span class=\"count\">(%s)</span>"
623
+ msgstr[1] "Aktualisierungen aktiviert <span class=\"count\">(%s)</span>"
624
+
625
+ #: includes/MPSUM_Plugins_List_Table.php:219
626
+ #: includes/MPSUM_Themes_List_Table.php:225
627
+ #, php-format
628
+ msgid "Updates Disabled <span class=\"count\">(%s)</span>"
629
+ msgid_plural "Updates Disabled <span class=\"count\">(%s)</span>"
630
+ msgstr[0] "Aktualisierungen deaktiviert <span class=\"count\">(%s)</span>"
631
+ msgstr[1] "Aktualisierungen deaktiviert <span class=\"count\">(%s)</span>"
632
+
633
+ #: includes/MPSUM_Plugins_List_Table.php:222
634
+ #: includes/MPSUM_Themes_List_Table.php:231
635
+ #, php-format
636
+ msgid "Automatic Updates <span class=\"count\">(%s)</span>"
637
+ msgid_plural "Automatic Updates <span class=\"count\">(%s)</span>"
638
+ msgstr[0] "Automatische Aktualisierungen <span class=\"count\">(%s)</span>"
639
+ msgstr[1] "Automatische Aktualisierungen <span class=\"count\">(%s)</span>"
640
+
641
+ #: includes/MPSUM_Plugins_List_Table.php:252
642
+ #: includes/MPSUM_Themes_List_Table.php:262
643
+ msgid "Allow Automatic Updates"
644
+ msgstr "Automatische Aktualisierungen erlauben"
645
+
646
+ #: includes/MPSUM_Plugins_List_Table.php:287
647
+ msgid "Clear List"
648
+ msgstr "Liste löschen"
649
+
650
+ #: includes/MPSUM_Plugins_List_Table.php:289
651
+ #, php-format
652
+ msgid "Files in the <code>%s</code> directory are executed automatically."
653
+ msgstr "Dateien im Verzeichnis <code>%s</code> werden automatisch ausgeführt."
654
+
655
+ #: includes/MPSUM_Plugins_List_Table.php:291
656
+ #, php-format
657
+ msgid ""
658
+ "Drop-ins are advanced plugins in the <code>%s</code> directory that replace "
659
+ "WordPress functionality when present."
660
+ msgstr ""
661
+ "Drop-ins sind weiterentwickelte Plugins im Verzeichnis <code>%s</code>, die "
662
+ "WordPress-Funktionalität ersetzen."
663
+
664
+ #: includes/MPSUM_Plugins_List_Table.php:344
665
+ #, php-format
666
+ msgid "Select %s"
667
+ msgstr "Wähle %s"
668
+
669
+ #: includes/MPSUM_Plugins_List_Table.php:376
670
+ #: includes/MPSUM_Themes_List_Table.php:337
671
+ #, php-format
672
+ msgid "Version %s"
673
+ msgstr "Version %s"
674
+
675
+ #: includes/MPSUM_Plugins_List_Table.php:381
676
+ #: includes/MPSUM_Themes_List_Table.php:339
677
+ #, php-format
678
+ msgid "By %s"
679
+ msgstr "Von %s"
680
+
681
+ #: includes/MPSUM_Plugins_List_Table.php:389
682
+ #, php-format
683
+ msgid "More information about %s"
684
+ msgstr "Mehr Informationen zu %s"
685
+
686
+ #: includes/MPSUM_Plugins_List_Table.php:391
687
+ msgid "View details"
688
+ msgstr "Details ansehen"
689
+
690
+ #: includes/MPSUM_Plugins_List_Table.php:396
691
+ msgid "Visit plugin site"
692
+ msgstr "Besuche die Plugin-Website"
693
+
694
+ #: includes/MPSUM_Themes_List_Table.php:193
695
+ msgid "No themes found."
696
+ msgstr "Keine Themes gefunden."
697
+
698
+ #: includes/MPSUM_Themes_List_Table.php:195
699
+ msgid "You do not appear to have any themes available at this time."
700
+ msgstr "Es sieht nicht so aus, als stünden dir im Moment Themes zur Verfügung."
701
+
702
+ #: includes/MPSUM_Themes_List_Table.php:203
703
+ msgid "Theme"
704
+ msgstr "Theme"
705
+
706
+ #: includes/MPSUM_Themes_List_Table.php:222
707
+ #, php-format
708
+ msgctxt "themes"
709
+ msgid "All <span class=\"count\">(%s)</span>"
710
+ msgid_plural "All <span class=\"count\">(%s)</span>"
711
+ msgstr[0] "Alle <span class=\"count\">(%s)</span>"
712
+ msgstr[1] "Alle <span class=\"count\">(%s)</span>"
713
+
714
+ #: includes/MPSUM_Themes_List_Table.php:299
715
+ msgid "Select"
716
+ msgstr "Auswählen"
717
+
718
+ #: includes/MPSUM_Themes_List_Table.php:328
719
+ msgid "Broken Theme:"
720
+ msgstr "Defektes Theme:"
721
+
722
+ #: includes/MPSUM_Themes_List_Table.php:342
723
+ msgid "Visit theme homepage"
724
+ msgstr "Besuche die Theme-Homepage"
725
+
726
+ #: includes/MPSUM_Themes_List_Table.php:342
727
+ msgid "Visit Theme Site"
728
+ msgstr "Besuche die Theme-Website"
729
+
730
+ #: main.php:335
731
+ msgid ""
732
+ "Manage and disable WordPress updates, including core, plugin, theme, and "
733
+ "automatic updates - Works with Multisite."
734
+ msgstr ""
735
+ "Verwalte und deaktiviere WordPress-Aktualisierungen, einschließlich Core, "
736
+ "Plugins, Themes und automatischen Aktualisierungen. Funktioniert auch bei "
737
+ "Multisite."
languages/stops-core-theme-and-plugin-updates-de_DE_formal.mo ADDED
Binary file
languages/stops-core-theme-and-plugin-updates-de_DE_formal.po ADDED
@@ -0,0 +1,738 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Easy Updates Manager\n"
4
+ "Report-Msgid-Bugs-To: Ronald Huereca <ronalfy@gmail.com>\n"
5
+ "POT-Creation-Date: 2015-08-25 11:27+0100\n"
6
+ "PO-Revision-Date: 2015-08-25 11:34+0100\n"
7
+ "Last-Translator: Pixolin <pixolin@gmx.com>\n"
8
+ "Language-Team: pixolin <pixolin@gmx.com>\n"
9
+ "Language: de_DE\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.7\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
17
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
18
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
19
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ #: includes/MPSUM_Admin.php:164 includes/MPSUM_Admin.php:180
23
+ msgid "Update Options"
24
+ msgstr "Aktualisierungs-Optionen"
25
+
26
+ #: includes/MPSUM_Admin.php:198
27
+ msgid "Manage Updates"
28
+ msgstr "Aktualisierungen verwalten"
29
+
30
+ #: includes/MPSUM_Admin.php:205 includes/MPSUM_Admin_Help.php:51
31
+ msgid "General"
32
+ msgstr "Allgemein"
33
+
34
+ #: includes/MPSUM_Admin.php:211 includes/MPSUM_Admin_Help.php:52
35
+ msgid "Plugins"
36
+ msgstr "Plugins"
37
+
38
+ #: includes/MPSUM_Admin.php:217 includes/MPSUM_Admin_Help.php:53
39
+ msgid "Themes"
40
+ msgstr "Themes"
41
+
42
+ #: includes/MPSUM_Admin.php:223 includes/MPSUM_Admin_Help.php:54
43
+ msgid "Advanced"
44
+ msgstr "Erweitert"
45
+
46
+ #: includes/MPSUM_Admin.php:279
47
+ msgid "Configure"
48
+ msgstr "Konfigurieren"
49
+
50
+ #: includes/MPSUM_Admin_Advanced.php:113 includes/MPSUM_Admin_Core.php:130
51
+ msgid "Options saved."
52
+ msgstr "Einstellungen gespeichert."
53
+
54
+ #: includes/MPSUM_Admin_Advanced.php:122
55
+ msgid "Exclude Users"
56
+ msgstr "Anwender ausschließen"
57
+
58
+ #: includes/MPSUM_Admin_Advanced.php:123
59
+ msgid ""
60
+ "Select which users to be excluded from the settings of this plugin. Default "
61
+ "WordPress behavior will be used."
62
+ msgstr ""
63
+ "Wählen Sie, welche Anwender von den Einstellungen dieses Plugins "
64
+ "ausgeschlossen werden sollen. Das normale Verhalten von WordPress wird dann "
65
+ "verwendet."
66
+
67
+ #: includes/MPSUM_Admin_Advanced.php:124
68
+ msgid ""
69
+ "This option is useful if, for example, you would like to disable updates, "
70
+ "but have a user account that can still update WordPress."
71
+ msgstr ""
72
+ "Diese Option ist zum Beispiel sinnvoll, wenn Sie Aktualisierungen abschalten "
73
+ "möchten, aber gleichzeitig ein Anwender weiterhin WordPress aktualisieren "
74
+ "können soll."
75
+
76
+ #: includes/MPSUM_Admin_Advanced.php:127
77
+ msgid "Users to be Excluded"
78
+ msgstr "Anwender, die ausgeschlossen werden sollen"
79
+
80
+ #: includes/MPSUM_Admin_Advanced.php:166
81
+ msgid "Save Users"
82
+ msgstr "Anwender speichern"
83
+
84
+ #: includes/MPSUM_Admin_Advanced.php:171
85
+ msgid "Reset Options"
86
+ msgstr "Einstellungen zurücksetzen"
87
+
88
+ #: includes/MPSUM_Admin_Advanced.php:172
89
+ msgid ""
90
+ "This will reset all options to as if you have just installed the plugin."
91
+ msgstr ""
92
+ "Hiermit werden alle Einstellungen so zurückgesetzt, als hätten Sie das "
93
+ "Plugin gerade erst installiert."
94
+
95
+ #: includes/MPSUM_Admin_Advanced.php:177
96
+ msgid "Reset All Options"
97
+ msgstr "Alle Einstellungen zurücksetzen"
98
+
99
+ #: includes/MPSUM_Admin_Core.php:139
100
+ msgid "Global Settings"
101
+ msgstr "Globale Einstellungen"
102
+
103
+ #: includes/MPSUM_Admin_Core.php:142
104
+ msgid "All Updates"
105
+ msgstr "Alle Aktualisierungen"
106
+
107
+ #: includes/MPSUM_Admin_Core.php:144 includes/MPSUM_Admin_Core.php:152
108
+ #: includes/MPSUM_Admin_Core.php:160 includes/MPSUM_Admin_Core.php:167
109
+ #: includes/MPSUM_Admin_Core.php:174 includes/MPSUM_Admin_Core.php:185
110
+ #: includes/MPSUM_Admin_Core.php:193 includes/MPSUM_Admin_Core.php:201
111
+ #: includes/MPSUM_Admin_Core.php:209 includes/MPSUM_Admin_Core.php:219
112
+ #: includes/MPSUM_Admin_Core.php:229 includes/MPSUM_Admin_Core.php:240
113
+ #: includes/MPSUM_Admin_Core.php:251 includes/MPSUM_Admin_Core.php:259
114
+ msgid "Enabled"
115
+ msgstr "Aktiviert"
116
+
117
+ #: includes/MPSUM_Admin_Core.php:145 includes/MPSUM_Admin_Core.php:153
118
+ #: includes/MPSUM_Admin_Core.php:161 includes/MPSUM_Admin_Core.php:168
119
+ #: includes/MPSUM_Admin_Core.php:175 includes/MPSUM_Admin_Core.php:186
120
+ #: includes/MPSUM_Admin_Core.php:194 includes/MPSUM_Admin_Core.php:202
121
+ #: includes/MPSUM_Admin_Core.php:210 includes/MPSUM_Admin_Core.php:220
122
+ #: includes/MPSUM_Admin_Core.php:230 includes/MPSUM_Admin_Core.php:241
123
+ #: includes/MPSUM_Admin_Core.php:252 includes/MPSUM_Admin_Core.php:260
124
+ msgid "Disabled"
125
+ msgstr "Deaktiviert"
126
+
127
+ #: includes/MPSUM_Admin_Core.php:146
128
+ msgid "If this option is disabled, this will override all settings."
129
+ msgstr ""
130
+ "Wird diese Einstellung deaktiviert, überschreibt dies alle übrigen "
131
+ "Einstellungen."
132
+
133
+ #: includes/MPSUM_Admin_Core.php:150
134
+ msgid "WordPress Core Updates"
135
+ msgstr "WordPress Core-Aktualisierungen"
136
+
137
+ #: includes/MPSUM_Admin_Core.php:154
138
+ msgid "Prevents WordPress from showing it needs to be updated."
139
+ msgstr "Hält WordPress davon ab, notwendige Aktualisierungen anzuzeigen."
140
+
141
+ #: includes/MPSUM_Admin_Core.php:158
142
+ msgid "All Plugin Updates"
143
+ msgstr "Aktualisierung aller Plugins"
144
+
145
+ #: includes/MPSUM_Admin_Core.php:165
146
+ msgid "All Theme Updates"
147
+ msgstr "Aktualisierung aller Themes"
148
+
149
+ #: includes/MPSUM_Admin_Core.php:172
150
+ msgid "All Translation Updates"
151
+ msgstr "Aktualisierung aller Übersetzungen"
152
+
153
+ #: includes/MPSUM_Admin_Core.php:179
154
+ msgid "Automatic Updates"
155
+ msgstr "Automatische Aktualisierungen"
156
+
157
+ #: includes/MPSUM_Admin_Core.php:180
158
+ msgid ""
159
+ "These options will enable or disable automatic updates (background updates) "
160
+ "of certain parts of WordPress."
161
+ msgstr ""
162
+ "Diese Einstellungen aktivieren oder deaktivieren automatische "
163
+ "Aktualisierungen (Hintergrundaktulisierungen) bestimmter Teile von WordPress."
164
+
165
+ #: includes/MPSUM_Admin_Core.php:183
166
+ msgid "Major Releases"
167
+ msgstr "Hauptversion"
168
+
169
+ #: includes/MPSUM_Admin_Core.php:187
170
+ msgid "Automatically update to major releases (e.g., 4.1, 4.2, 4.3)."
171
+ msgstr "Automatisch Hauptversionen aktualisieren (z.B. 4.1, 4.2, 4.3)."
172
+
173
+ #: includes/MPSUM_Admin_Core.php:191
174
+ msgid "Minor Releases"
175
+ msgstr "Nebenversion"
176
+
177
+ #: includes/MPSUM_Admin_Core.php:195
178
+ msgid "Automatically update to minor releases (e.g., 4.1.1, 4.1.2, 4.1.3)."
179
+ msgstr "Automatisch Nebenversionen aktualisieren (z.B. 4.1.1, 4.1.2, 4.1.3)."
180
+
181
+ #: includes/MPSUM_Admin_Core.php:199
182
+ msgid "Development Updates"
183
+ msgstr "Entwicklungs-Aktualisierungen"
184
+
185
+ #: includes/MPSUM_Admin_Core.php:203
186
+ msgid "Update automatically to Bleeding Edge releases."
187
+ msgstr "Automatisch auf beta-Versionen aktualisieren."
188
+
189
+ #: includes/MPSUM_Admin_Core.php:207
190
+ msgid "Automatic Plugin Updates"
191
+ msgstr "Automatische Plugin-Aktualisierungen"
192
+
193
+ #: includes/MPSUM_Admin_Core.php:211 includes/MPSUM_Admin_Core.php:221
194
+ msgid "Default"
195
+ msgstr "Standard"
196
+
197
+ #: includes/MPSUM_Admin_Core.php:212 includes/MPSUM_Admin_Core.php:222
198
+ msgid "Select Individually"
199
+ msgstr "Individuelle Auswahl"
200
+
201
+ #: includes/MPSUM_Admin_Core.php:213
202
+ msgid ""
203
+ "Automatically update your plugins. Select always on, always off, the "
204
+ "WordPress default, or select plugins individually."
205
+ msgstr ""
206
+ "Aktualisieren Sie ihre Plugins automatisch. Wählen Sie aus immer an, immer "
207
+ "aus, WordPress-Standard oder wählen Sie Plugins individuell."
208
+
209
+ #: includes/MPSUM_Admin_Core.php:217
210
+ msgid "Automatic Theme Updates"
211
+ msgstr "Automatische Theme-Updates"
212
+
213
+ #: includes/MPSUM_Admin_Core.php:223
214
+ msgid ""
215
+ "Automatically update your themes. Select always on, always off, the "
216
+ "WordPress default, or select themes individually."
217
+ msgstr ""
218
+ "Aktualisieren Sie ihre Plugins automatisch. Wählen Sie immer an, immer aus, "
219
+ "WordPress-Standard oder wählen Sie Themes individuell."
220
+
221
+ #: includes/MPSUM_Admin_Core.php:227
222
+ msgid "Translation Updates"
223
+ msgstr "Aktualisierung der Übersetzungen"
224
+
225
+ #: includes/MPSUM_Admin_Core.php:231
226
+ msgid "Automatically update your translations."
227
+ msgstr "Aktualisieren Sie ihre Übersetzungen automatisch."
228
+
229
+ #: includes/MPSUM_Admin_Core.php:235
230
+ msgid "Notifications"
231
+ msgstr "Benachrichtigung"
232
+
233
+ #: includes/MPSUM_Admin_Core.php:238
234
+ msgid "Core Update E-mails"
235
+ msgstr "E-Mails für Core-Aktualisierungen"
236
+
237
+ #: includes/MPSUM_Admin_Core.php:242
238
+ msgid ""
239
+ "Disable e-mails that are sent when your site has been upgraded automatically."
240
+ msgstr ""
241
+ "Deaktivieren Sie den Erhalt von E-Mails, nachdem ihre Website automatisch "
242
+ "aktualisiert wurde."
243
+
244
+ #: includes/MPSUM_Admin_Core.php:246
245
+ msgid "Miscellaneous"
246
+ msgstr "Verschiedenes"
247
+
248
+ #: includes/MPSUM_Admin_Core.php:249
249
+ msgid "Browser Nag"
250
+ msgstr "Browser-Hinweis"
251
+
252
+ #: includes/MPSUM_Admin_Core.php:253
253
+ msgid "Removes the browser nag for people using older browsers."
254
+ msgstr "Entfernt den Hinweis bei Verwendung älterer Browser."
255
+
256
+ #: includes/MPSUM_Admin_Core.php:257
257
+ msgid "WordPress Version in Footer"
258
+ msgstr "WordPress-Version in der Fußzeile"
259
+
260
+ #: includes/MPSUM_Admin_Core.php:261
261
+ msgid "Removes the WordPress version in the footer."
262
+ msgstr "Entfernt die Anzeige der WordPress-Version in der Fußzeile."
263
+
264
+ #: includes/MPSUM_Admin_Core.php:269
265
+ msgid "Save Changes"
266
+ msgstr "Änderungen speichern"
267
+
268
+ #: includes/MPSUM_Admin_Core.php:271
269
+ msgid "Reset to Defaults"
270
+ msgstr "Zurücksetzen"
271
+
272
+ #: includes/MPSUM_Admin_Help.php:27
273
+ msgid ""
274
+ "This is the Easy Updates Manager settings help tab. In here you will find "
275
+ "helpful information on what Easy Updates Manager does and how to use it."
276
+ msgstr ""
277
+ "Dies ist der Hilfe-Tab zu den Einstellungen des Easy Updates Manager. Hier "
278
+ "finden Sie hilfreiche Informationen darüber, was der Easy Updates Manager "
279
+ "tut und wie er verwendet wird."
280
+
281
+ #: includes/MPSUM_Admin_Help.php:29
282
+ msgid "Please Note!"
283
+ msgstr "Bitte beachten!"
284
+
285
+ #: includes/MPSUM_Admin_Help.php:29
286
+ msgid ""
287
+ "If either your WordPress core, theme, or plugins get too out of date, you "
288
+ "may run into compatibility problems. Check the capability tab for more "
289
+ "information."
290
+ msgstr ""
291
+ "Wenn ihre WordPress-Coredateien, Theme oder Plugins zu veraltet sind, können "
292
+ "Kompatibilitätsprobleme entstehen. Sehen Sie im Tab Kompatibilität nach, um "
293
+ "mehr zu erfahren."
294
+
295
+ #: includes/MPSUM_Admin_Help.php:31
296
+ msgid "Please see our Wiki for documentation and videos."
297
+ msgstr "Dokumentation und Videos finden Sie in unserem Wiki."
298
+
299
+ #: includes/MPSUM_Admin_Help.php:34
300
+ msgid "Our Website"
301
+ msgstr "Unsere Website"
302
+
303
+ #: includes/MPSUM_Admin_Help.php:35
304
+ msgid "Support on WordPress"
305
+ msgstr "Support für WordPress"
306
+
307
+ #: includes/MPSUM_Admin_Help.php:36
308
+ msgid "GitHub Repository"
309
+ msgstr "GitHub Repository"
310
+
311
+ #: includes/MPSUM_Admin_Help.php:37
312
+ msgid "Official Documentation"
313
+ msgstr "Offizielle Dokumentation"
314
+
315
+ #: includes/MPSUM_Admin_Help.php:50
316
+ msgid "You will see four tabs where you can configure the update options."
317
+ msgstr ""
318
+ "Sie sehen vier Tabs, in denen Sie die Aktualisierung-Einstellungen "
319
+ "konfigurieren können."
320
+
321
+ #: includes/MPSUM_Admin_Help.php:51
322
+ msgid ""
323
+ "Use this screen to finely tune which updates and automatic updates you would "
324
+ "like to see."
325
+ msgstr ""
326
+ "Benutzen Sie diesen Bildschirm für detaillierte Einstellungen zu gewünschten "
327
+ "Aktualisierungen und automatischen Aktualisierungen."
328
+
329
+ #: includes/MPSUM_Admin_Help.php:52
330
+ msgid ""
331
+ "If plugin updates are enabled and/or automatic updates for plugins are "
332
+ "enabled, you can configure which plugins will receive updates and/or "
333
+ "automatic updates."
334
+ msgstr ""
335
+ "Wenn Plugin-Aktualisierungen und/oder automatische Plugin-Aktualisierungen "
336
+ "aktiviert wurden, können Sie einstellen, welche Plugins aktualisiert und/"
337
+ "oder automatisch aktualisiert werden."
338
+
339
+ #: includes/MPSUM_Admin_Help.php:53
340
+ msgid ""
341
+ "If theme updates are enabled and/or automatic updates for themes are "
342
+ "enabled, you can configure which themes will receive updates and/or "
343
+ "automatic updates."
344
+ msgstr ""
345
+ "Wenn Theme-Aktualisierungen und/oder automatische Theme-Aktualisierungen "
346
+ "aktiviert wurden, können Sie einstellen, welche Themes aktualisiert und/oder "
347
+ "automatisch aktualisiert werden."
348
+
349
+ #: includes/MPSUM_Admin_Help.php:54
350
+ msgid ""
351
+ "Reset all options or allow certain users to see all updates regardless of "
352
+ "what settings you have set."
353
+ msgstr ""
354
+ "Setzen Sie alle Einstellungen zurück oder erlauben Sie bestimmten Anwendern, "
355
+ "unabhängig von ihren Einstellungen Aktualisierungen zu sehen."
356
+
357
+ #: includes/MPSUM_Admin_Help.php:79
358
+ msgid "Contributors:"
359
+ msgstr "Mitwirkende:"
360
+
361
+ #: includes/MPSUM_Admin_Help.php:94
362
+ msgid ""
363
+ "WordPress encourages you to update your plugins, themes, and core to make "
364
+ "sure that there are no bugs. Even though you most likely want to disable all "
365
+ "the updates and never think about updating again, you should still consider "
366
+ "updating every once in a while to avoid major bugs and errors on your "
367
+ "WordPress website."
368
+ msgstr ""
369
+ "WordPress empfiehlt, dass Sie ihre Plugins, Themes und Core-Dateien immer "
370
+ "aktuell halten, um Programmfehler auszuschließen. Auch wenn Sie am liebsten "
371
+ "alle Aktualisierungen abschalten und sich nie wieder damit beschäftigen "
372
+ "möchten, sollten Sie hin und wieder über eine Aktualisierung nachdenken, um "
373
+ "gravierende Fehler und Software-Bugs in ihrer WordPress-Website zu vermeiden."
374
+
375
+ #: includes/MPSUM_Admin_Help.php:95
376
+ msgid ""
377
+ "This plugin is tested with the most recent versions of WordPress to ensure "
378
+ "that there are no major issues."
379
+ msgstr ""
380
+ "Dieses Plugin wurde darauf getestet, dass keine gravierenden Probleme "
381
+ "bestehen."
382
+
383
+ #: includes/MPSUM_Admin_Help.php:100
384
+ msgid "Overview"
385
+ msgstr "Überblick"
386
+
387
+ #: includes/MPSUM_Admin_Help.php:106
388
+ msgid "Navigation"
389
+ msgstr "Tabs"
390
+
391
+ #: includes/MPSUM_Admin_Help.php:112
392
+ msgid "Documentation"
393
+ msgstr "Dokumentation"
394
+
395
+ #: includes/MPSUM_Admin_Help.php:118
396
+ msgid "Capability"
397
+ msgstr "Kompatibilität"
398
+
399
+ #: includes/MPSUM_Admin_Help.php:124
400
+ msgid "Troubleshooting"
401
+ msgstr "Fehlerbehebung"
402
+
403
+ #: includes/MPSUM_Admin_Plugins.php:128 includes/MPSUM_Admin_Themes.php:251
404
+ #: includes/MPSUM_Plugins_List_Table.php:248
405
+ #: includes/MPSUM_Themes_List_Table.php:258
406
+ msgid "Allow Updates"
407
+ msgstr "Aktualisierungen erlauben"
408
+
409
+ #: includes/MPSUM_Admin_Plugins.php:132 includes/MPSUM_Admin_Themes.php:256
410
+ #: includes/MPSUM_Plugins_List_Table.php:249
411
+ #: includes/MPSUM_Themes_List_Table.php:259
412
+ msgid "Disallow Updates"
413
+ msgstr "Aktualisierungen verbieten"
414
+
415
+ #: includes/MPSUM_Admin_Plugins.php:141 includes/MPSUM_Admin_Themes.php:265
416
+ #: includes/MPSUM_Plugins_List_Table.php:253
417
+ #: includes/MPSUM_Themes_List_Table.php:263
418
+ msgid "Disallow Automatic Updates"
419
+ msgstr "Automatische Aktualisierungen verbieten"
420
+
421
+ #: includes/MPSUM_Admin_Plugins.php:145 includes/MPSUM_Admin_Themes.php:269
422
+ msgid "Enable Automatic Updates"
423
+ msgstr "Automatische Aktualisierungen aktivieren"
424
+
425
+ #: includes/MPSUM_Admin_Plugins.php:231 includes/MPSUM_Admin_Themes.php:191
426
+ msgid "Settings have been updated."
427
+ msgstr "Einstellungen wurden aktualisiert."
428
+
429
+ #: includes/MPSUM_Admin_Plugins.php:234
430
+ msgid "The selected plugins have had automatic updates enabled."
431
+ msgstr ""
432
+ "Für die ausgewählten Plugins wurde eine automatische Aktualisierung "
433
+ "aktiviert."
434
+
435
+ #: includes/MPSUM_Admin_Plugins.php:236
436
+ msgid "The selected plugins have had automatic updates disabled."
437
+ msgstr ""
438
+ "Für die ausgewählten Plugins wurde eine automatische Aktualisierung "
439
+ "deaktiviert."
440
+
441
+ #: includes/MPSUM_Admin_Plugins.php:238
442
+ msgid "The selected plugin updates have been disabled."
443
+ msgstr "Die Aktivierung ausgewählter Plugins wurde deaktiviert."
444
+
445
+ #: includes/MPSUM_Admin_Plugins.php:240
446
+ msgid "The selected plugin updates have been enabled."
447
+ msgstr "Die Aktualisierung ausgewählter Plugins wurde aktiviert."
448
+
449
+ #: includes/MPSUM_Admin_Plugins.php:256
450
+ msgid "Plugin Update Options"
451
+ msgstr "Optionen zur Plugin-Aktualisierung"
452
+
453
+ #: includes/MPSUM_Admin_Plugins.php:260
454
+ msgid "All plugin updates have been disabled."
455
+ msgstr "Alle Plugin-Aktualisierungen wurden deaktiviert."
456
+
457
+ #: includes/MPSUM_Admin_Themes.php:193
458
+ msgid "The selected themes have had automatic updates enabled."
459
+ msgstr ""
460
+ "Für die ausgewählten Themes wurde eine automatische Aktualisierung aktiviert."
461
+
462
+ #: includes/MPSUM_Admin_Themes.php:195
463
+ msgid "The selected themes have had automatic updates disabled."
464
+ msgstr ""
465
+ "Für die ausgewählten Themes wurde eine automatische Aktualisierung "
466
+ "deaktiviert."
467
+
468
+ #: includes/MPSUM_Admin_Themes.php:197
469
+ msgid "The selected theme updates have been disabled."
470
+ msgstr "Die Aktualisierung ausgewählter Themes wurde deaktiviert."
471
+
472
+ #: includes/MPSUM_Admin_Themes.php:199
473
+ msgid "The selected theme updates have been enabled."
474
+ msgstr "Die Aktualisierung ausgewählter Themes wurde aktiviert."
475
+
476
+ #: includes/MPSUM_Admin_Themes.php:216
477
+ msgid "Theme Update Options"
478
+ msgstr "Optionen zur Theme-Aktualisierung"
479
+
480
+ #: includes/MPSUM_Admin_Themes.php:221
481
+ msgid "All theme updates have been disabled."
482
+ msgstr "Alle Theme-Aktualisierungen wurden deaktiviert."
483
+
484
+ #: includes/MPSUM_List_Table.php:143
485
+ msgid "List View"
486
+ msgstr "Listenansicht"
487
+
488
+ #: includes/MPSUM_List_Table.php:144
489
+ msgid "Excerpt View"
490
+ msgstr "Auszugansicht"
491
+
492
+ #: includes/MPSUM_List_Table.php:313
493
+ msgid "No items found."
494
+ msgstr "Keine Elemente gefunden."
495
+
496
+ #: includes/MPSUM_List_Table.php:439
497
+ msgid "Select bulk action"
498
+ msgstr "Aktion wählen"
499
+
500
+ #: includes/MPSUM_List_Table.php:441
501
+ msgid "Bulk Actions"
502
+ msgstr "Aktionen"
503
+
504
+ #: includes/MPSUM_List_Table.php:451
505
+ msgid "Apply"
506
+ msgstr "Anwenden"
507
+
508
+ #: includes/MPSUM_List_Table.php:501
509
+ msgid "Show more details"
510
+ msgstr "Details anzeigen"
511
+
512
+ #: includes/MPSUM_List_Table.php:556
513
+ msgid "Filter by date"
514
+ msgstr "Nach Datum filtern"
515
+
516
+ #: includes/MPSUM_List_Table.php:558
517
+ msgid "All dates"
518
+ msgstr "Alle Daten anzeigen"
519
+
520
+ #: includes/MPSUM_List_Table.php:571
521
+ #, php-format
522
+ msgid "%1$s %2$d"
523
+ msgstr "%1$s %2$d"
524
+
525
+ #: includes/MPSUM_List_Table.php:623
526
+ #, php-format
527
+ msgid "%s comment"
528
+ msgid_plural "%s comments"
529
+ msgstr[0] "%s Kommentar"
530
+ msgstr[1] "%s Kommentare"
531
+
532
+ #: includes/MPSUM_List_Table.php:624
533
+ #, php-format
534
+ msgid "%s approved comment"
535
+ msgid_plural "%s approved comments"
536
+ msgstr[0] "%s genehmigter Kommentar"
537
+ msgstr[1] "%s genehmigte Kommentare"
538
+
539
+ #: includes/MPSUM_List_Table.php:625
540
+ #, php-format
541
+ msgid "%s pending comment"
542
+ msgid_plural "%s pending comments"
543
+ msgstr[0] "%s ausstehender Kommentar"
544
+ msgstr[1] "%s ausstehende Kommentare"
545
+
546
+ #: includes/MPSUM_List_Table.php:630 includes/MPSUM_List_Table.php:642
547
+ msgid "No comments"
548
+ msgstr "Keine Kommentare"
549
+
550
+ #: includes/MPSUM_List_Table.php:642
551
+ msgid "No approved comments"
552
+ msgstr "Keine genehmigten Kommentare"
553
+
554
+ #: includes/MPSUM_List_Table.php:723 includes/MPSUM_List_Table.php:1287
555
+ #, php-format
556
+ msgid "%s item"
557
+ msgid_plural "%s items"
558
+ msgstr[0] "%s Element"
559
+ msgstr[1] "%s Elemente"
560
+
561
+ #: includes/MPSUM_List_Table.php:758
562
+ msgid "First page"
563
+ msgstr "Erste Seite"
564
+
565
+ #: includes/MPSUM_List_Table.php:768
566
+ msgid "Previous page"
567
+ msgstr "Vorherige Seite"
568
+
569
+ #: includes/MPSUM_List_Table.php:775 includes/MPSUM_List_Table.php:778
570
+ msgid "Current Page"
571
+ msgstr "Aktuelle Seite"
572
+
573
+ #: includes/MPSUM_List_Table.php:784
574
+ #, php-format
575
+ msgctxt "paging"
576
+ msgid "%1$s of %2$s"
577
+ msgstr "%1$s von %2$s"
578
+
579
+ #: includes/MPSUM_List_Table.php:791
580
+ msgid "Next page"
581
+ msgstr "Nächste Seite"
582
+
583
+ #: includes/MPSUM_List_Table.php:801
584
+ msgid "Last page"
585
+ msgstr "Letzte Seite"
586
+
587
+ #: includes/MPSUM_List_Table.php:1011
588
+ msgid "Select All"
589
+ msgstr "Alle auswählen"
590
+
591
+ #: includes/MPSUM_Plugins_List_Table.php:184
592
+ msgid "No plugins found."
593
+ msgstr "Keine Plugins gefunden."
594
+
595
+ #: includes/MPSUM_Plugins_List_Table.php:186
596
+ msgid "You do not appear to have any plugins available at this time."
597
+ msgstr ""
598
+ "Es sieht nicht so aus, als stünden Ihnen im Moment Plugins zur Verfügung."
599
+
600
+ #: includes/MPSUM_Plugins_List_Table.php:194
601
+ msgid "Plugin"
602
+ msgstr "Plugin"
603
+
604
+ #: includes/MPSUM_Plugins_List_Table.php:195
605
+ #: includes/MPSUM_Themes_List_Table.php:204
606
+ msgid "Description"
607
+ msgstr "Beschreibung"
608
+
609
+ #: includes/MPSUM_Plugins_List_Table.php:213
610
+ #, php-format
611
+ msgctxt "plugins"
612
+ msgid "All <span class=\"count\">(%s)</span>"
613
+ msgid_plural "All <span class=\"count\">(%s)</span>"
614
+ msgstr[0] "Alle <span class=\"count\">(%s)</span>"
615
+ msgstr[1] "Alle <span class=\"count\">(%s)</span>"
616
+
617
+ #: includes/MPSUM_Plugins_List_Table.php:216
618
+ #: includes/MPSUM_Themes_List_Table.php:228
619
+ #, php-format
620
+ msgid "Updates Enabled <span class=\"count\">(%s)</span>"
621
+ msgid_plural "Updates Enabled <span class=\"count\">(%s)</span>"
622
+ msgstr[0] "Aktualisierungen aktiviert <span class=\"count\">(%s)</span>"
623
+ msgstr[1] "Aktualisierungen aktiviert <span class=\"count\">(%s)</span>"
624
+
625
+ #: includes/MPSUM_Plugins_List_Table.php:219
626
+ #: includes/MPSUM_Themes_List_Table.php:225
627
+ #, php-format
628
+ msgid "Updates Disabled <span class=\"count\">(%s)</span>"
629
+ msgid_plural "Updates Disabled <span class=\"count\">(%s)</span>"
630
+ msgstr[0] "Aktualisierungen deaktiviert <span class=\"count\">(%s)</span>"
631
+ msgstr[1] "Aktualisierungen deaktiviert <span class=\"count\">(%s)</span>"
632
+
633
+ #: includes/MPSUM_Plugins_List_Table.php:222
634
+ #: includes/MPSUM_Themes_List_Table.php:231
635
+ #, php-format
636
+ msgid "Automatic Updates <span class=\"count\">(%s)</span>"
637
+ msgid_plural "Automatic Updates <span class=\"count\">(%s)</span>"
638
+ msgstr[0] "Automatische Aktualisierungen <span class=\"count\">(%s)</span>"
639
+ msgstr[1] "Automatische Aktualisierungen <span class=\"count\">(%s)</span>"
640
+
641
+ #: includes/MPSUM_Plugins_List_Table.php:252
642
+ #: includes/MPSUM_Themes_List_Table.php:262
643
+ msgid "Allow Automatic Updates"
644
+ msgstr "Automatische Aktualisierungen erlauben"
645
+
646
+ #: includes/MPSUM_Plugins_List_Table.php:287
647
+ msgid "Clear List"
648
+ msgstr "Liste löschen"
649
+
650
+ #: includes/MPSUM_Plugins_List_Table.php:289
651
+ #, php-format
652
+ msgid "Files in the <code>%s</code> directory are executed automatically."
653
+ msgstr "Dateien im Verzeichnis <code>%s</code> werden automatisch ausgeführt."
654
+
655
+ #: includes/MPSUM_Plugins_List_Table.php:291
656
+ #, php-format
657
+ msgid ""
658
+ "Drop-ins are advanced plugins in the <code>%s</code> directory that replace "
659
+ "WordPress functionality when present."
660
+ msgstr ""
661
+ "Drop-ins sind weiterentwickelte Plugins im Verzeichnis <code>%s</code>, die "
662
+ "WordPress-Funktionalität ersetzen."
663
+
664
+ #: includes/MPSUM_Plugins_List_Table.php:344
665
+ #, php-format
666
+ msgid "Select %s"
667
+ msgstr "Wählen Sie %s"
668
+
669
+ #: includes/MPSUM_Plugins_List_Table.php:376
670
+ #: includes/MPSUM_Themes_List_Table.php:337
671
+ #, php-format
672
+ msgid "Version %s"
673
+ msgstr "Version %s"
674
+
675
+ #: includes/MPSUM_Plugins_List_Table.php:381
676
+ #: includes/MPSUM_Themes_List_Table.php:339
677
+ #, php-format
678
+ msgid "By %s"
679
+ msgstr "Von %s"
680
+
681
+ #: includes/MPSUM_Plugins_List_Table.php:389
682
+ #, php-format
683
+ msgid "More information about %s"
684
+ msgstr "Mehr Informationen zu %s"
685
+
686
+ #: includes/MPSUM_Plugins_List_Table.php:391
687
+ msgid "View details"
688
+ msgstr "Details ansehen"
689
+
690
+ #: includes/MPSUM_Plugins_List_Table.php:396
691
+ msgid "Visit plugin site"
692
+ msgstr "Besuchen Sie die Plugin-Website"
693
+
694
+ #: includes/MPSUM_Themes_List_Table.php:193
695
+ msgid "No themes found."
696
+ msgstr "Keine Themes gefunden."
697
+
698
+ #: includes/MPSUM_Themes_List_Table.php:195
699
+ msgid "You do not appear to have any themes available at this time."
700
+ msgstr ""
701
+ "Es sieht nicht so aus, als stünden ihnen im Moment Themes zur Verfügung."
702
+
703
+ #: includes/MPSUM_Themes_List_Table.php:203
704
+ msgid "Theme"
705
+ msgstr "Theme"
706
+
707
+ #: includes/MPSUM_Themes_List_Table.php:222
708
+ #, php-format
709
+ msgctxt "themes"
710
+ msgid "All <span class=\"count\">(%s)</span>"
711
+ msgid_plural "All <span class=\"count\">(%s)</span>"
712
+ msgstr[0] "Alle <span class=\"count\">(%s)</span>"
713
+ msgstr[1] "Alle <span class=\"count\">(%s)</span>"
714
+
715
+ #: includes/MPSUM_Themes_List_Table.php:299
716
+ msgid "Select"
717
+ msgstr "Auswählen"
718
+
719
+ #: includes/MPSUM_Themes_List_Table.php:328
720
+ msgid "Broken Theme:"
721
+ msgstr "Defektes Theme:"
722
+
723
+ #: includes/MPSUM_Themes_List_Table.php:342
724
+ msgid "Visit theme homepage"
725
+ msgstr "Besuchen Sie die Theme-Homepage"
726
+
727
+ #: includes/MPSUM_Themes_List_Table.php:342
728
+ msgid "Visit Theme Site"
729
+ msgstr "Besuchen Sie die Theme-Website"
730
+
731
+ #: main.php:335
732
+ msgid ""
733
+ "Manage and disable WordPress updates, including core, plugin, theme, and "
734
+ "automatic updates - Works with Multisite."
735
+ msgstr ""
736
+ "Verwalten und deaktivieren Sie WordPress-Aktualisierungen, einschließlich "
737
+ "Core, Plugins, Themes und automatischen Aktualisierungen. Funktioniert auch "
738
+ "bei Multisite."
languages/stops-core-theme-and-plugin-updates.pot CHANGED
@@ -5,9 +5,9 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Easy Updates Manager v1.0.0\n"
7
  "Report-Msgid-Bugs-To: Ronald Huereca <ronalfy@gmail.com>\n"
8
- "POT-Creation-Date: 2015-03-24 16:55-0600\n"
9
  "PO-Revision-Date: \n"
10
- "Last-Translator: Ronald Huereca <ron@ronalfy.com>\n"
11
  "Language-Team: Ronald Huereca <ronalfy@gmail.com>\n"
12
  "Language: en_US\n"
13
  "MIME-Version: 1.0\n"
@@ -19,8 +19,8 @@ msgstr ""
19
  "X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
20
  "esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
21
  "_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
22
- "X-Poedit-Basepath: ../\n"
23
- "X-Generator: Poedit 1.5.3\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
 
26
  #: includes/MPSUM_Admin.php:164 includes/MPSUM_Admin.php:180
@@ -104,9 +104,9 @@ msgstr ""
104
  #: includes/MPSUM_Admin_Core.php:160 includes/MPSUM_Admin_Core.php:167
105
  #: includes/MPSUM_Admin_Core.php:174 includes/MPSUM_Admin_Core.php:185
106
  #: includes/MPSUM_Admin_Core.php:193 includes/MPSUM_Admin_Core.php:201
107
- #: includes/MPSUM_Admin_Core.php:209 includes/MPSUM_Admin_Core.php:218
108
- #: includes/MPSUM_Admin_Core.php:227 includes/MPSUM_Admin_Core.php:238
109
- #: includes/MPSUM_Admin_Core.php:249 includes/MPSUM_Admin_Core.php:257
110
  msgid "Enabled"
111
  msgstr ""
112
 
@@ -114,9 +114,9 @@ msgstr ""
114
  #: includes/MPSUM_Admin_Core.php:161 includes/MPSUM_Admin_Core.php:168
115
  #: includes/MPSUM_Admin_Core.php:175 includes/MPSUM_Admin_Core.php:186
116
  #: includes/MPSUM_Admin_Core.php:194 includes/MPSUM_Admin_Core.php:202
117
- #: includes/MPSUM_Admin_Core.php:210 includes/MPSUM_Admin_Core.php:219
118
- #: includes/MPSUM_Admin_Core.php:228 includes/MPSUM_Admin_Core.php:239
119
- #: includes/MPSUM_Admin_Core.php:250 includes/MPSUM_Admin_Core.php:258
120
  msgid "Disabled"
121
  msgstr ""
122
 
@@ -182,72 +182,76 @@ msgstr ""
182
  msgid "Automatic Plugin Updates"
183
  msgstr ""
184
 
185
- #: includes/MPSUM_Admin_Core.php:211 includes/MPSUM_Admin_Core.php:220
 
 
 
 
186
  msgid "Select Individually"
187
  msgstr ""
188
 
189
- #: includes/MPSUM_Admin_Core.php:212
190
  msgid ""
191
- "Automatically update your plugins. Select always on, always off, or select "
192
- "plugins individually."
193
  msgstr ""
194
 
195
- #: includes/MPSUM_Admin_Core.php:216
196
  msgid "Automatic Theme Updates"
197
  msgstr ""
198
 
199
- #: includes/MPSUM_Admin_Core.php:221
200
  msgid ""
201
- "Automatically update your themes. Select always on, always off, or select "
202
- "themes individually."
203
  msgstr ""
204
 
205
- #: includes/MPSUM_Admin_Core.php:225
206
  msgid "Translation Updates"
207
  msgstr ""
208
 
209
- #: includes/MPSUM_Admin_Core.php:229
210
  msgid "Automatically update your translations."
211
  msgstr ""
212
 
213
- #: includes/MPSUM_Admin_Core.php:233
214
  msgid "Notifications"
215
  msgstr ""
216
 
217
- #: includes/MPSUM_Admin_Core.php:236
218
  msgid "Core Update E-mails"
219
  msgstr ""
220
 
221
- #: includes/MPSUM_Admin_Core.php:240
222
  msgid ""
223
  "Disable e-mails that are sent when your site has been upgraded automatically."
224
  msgstr ""
225
 
226
- #: includes/MPSUM_Admin_Core.php:244
227
  msgid "Miscellaneous"
228
  msgstr ""
229
 
230
- #: includes/MPSUM_Admin_Core.php:247
231
  msgid "Browser Nag"
232
  msgstr ""
233
 
234
- #: includes/MPSUM_Admin_Core.php:251
235
  msgid "Removes the browser nag for people using older browsers."
236
  msgstr ""
237
 
238
- #: includes/MPSUM_Admin_Core.php:255
239
  msgid "WordPress Version in Footer"
240
  msgstr ""
241
 
242
- #: includes/MPSUM_Admin_Core.php:259
243
  msgid "Removes the WordPress version in the footer."
244
  msgstr ""
245
 
246
- #: includes/MPSUM_Admin_Core.php:267
247
  msgid "Save Changes"
248
  msgstr ""
249
 
250
- #: includes/MPSUM_Admin_Core.php:269
251
  msgid "Reset to Defaults"
252
  msgstr ""
253
 
@@ -332,175 +336,209 @@ msgid ""
332
  msgstr ""
333
 
334
  #: includes/MPSUM_Admin_Help.php:95
335
- msgid "This plugin is tested so there are no known major issues."
336
- msgstr ""
337
-
338
- #: includes/MPSUM_Admin_Help.php:97
339
- msgid "Tested with WordPress 4.1.1."
340
- msgstr ""
341
-
342
- #: includes/MPSUM_Admin_Help.php:98
343
- msgid "Tested with popular plugins to ensure that there are no conflicts."
344
- msgstr ""
345
-
346
- #: includes/MPSUM_Admin_Help.php:99
347
- msgid "Tested with popular themes to ensure that there are no conflicts."
348
  msgstr ""
349
 
350
- #: includes/MPSUM_Admin_Help.php:105
351
  msgid "Overview"
352
  msgstr ""
353
 
354
- #: includes/MPSUM_Admin_Help.php:111
355
- msgid "Tabs"
356
  msgstr ""
357
 
358
- #: includes/MPSUM_Admin_Help.php:117
359
  msgid "Documentation"
360
  msgstr ""
361
 
362
- #: includes/MPSUM_Admin_Help.php:123
363
  msgid "Capability"
364
  msgstr ""
365
 
366
- #: includes/MPSUM_Admin_Help.php:129
367
  msgid "Troubleshooting"
368
  msgstr ""
369
 
370
- #: includes/MPSUM_Admin_Plugins.php:135 includes/MPSUM_Admin_Themes.php:252
371
  #: includes/MPSUM_Plugins_List_Table.php:248
372
  #: includes/MPSUM_Themes_List_Table.php:258
373
  msgid "Allow Updates"
374
  msgstr ""
375
 
376
- #: includes/MPSUM_Admin_Plugins.php:139 includes/MPSUM_Admin_Themes.php:257
377
  #: includes/MPSUM_Plugins_List_Table.php:249
378
  #: includes/MPSUM_Themes_List_Table.php:259
379
  msgid "Disallow Updates"
380
  msgstr ""
381
 
382
- #: includes/MPSUM_Admin_Plugins.php:148 includes/MPSUM_Admin_Themes.php:266
383
  #: includes/MPSUM_Plugins_List_Table.php:253
384
  #: includes/MPSUM_Themes_List_Table.php:263
385
  msgid "Disallow Automatic Updates"
386
  msgstr ""
387
 
388
- #: includes/MPSUM_Admin_Plugins.php:152 includes/MPSUM_Admin_Themes.php:270
389
  msgid "Enable Automatic Updates"
390
  msgstr ""
391
 
392
- #: includes/MPSUM_Admin_Plugins.php:237
393
- msgid "The selected plugin updates have been enabled."
394
  msgstr ""
395
 
396
- #: includes/MPSUM_Admin_Plugins.php:239
 
 
 
 
 
 
 
 
397
  msgid "The selected plugin updates have been disabled."
398
  msgstr ""
399
 
400
- #: includes/MPSUM_Admin_Plugins.php:255
 
 
 
 
401
  msgid "Plugin Update Options"
402
  msgstr ""
403
 
404
- #: includes/MPSUM_Admin_Plugins.php:259
405
  msgid "All plugin updates have been disabled."
406
  msgstr ""
407
 
408
- #: includes/MPSUM_Admin_Themes.php:198
409
- msgid "The selected theme updates have been enabled."
410
  msgstr ""
411
 
412
- #: includes/MPSUM_Admin_Themes.php:200
 
 
 
 
413
  msgid "The selected theme updates have been disabled."
414
  msgstr ""
415
 
416
- #: includes/MPSUM_Admin_Themes.php:217
 
 
 
 
417
  msgid "Theme Update Options"
418
  msgstr ""
419
 
420
- #: includes/MPSUM_Admin_Themes.php:222
421
  msgid "All theme updates have been disabled."
422
  msgstr ""
423
 
424
- #: includes/MPSUM_List_Table.php:130
425
  msgid "List View"
426
  msgstr ""
427
 
428
- #: includes/MPSUM_List_Table.php:131
429
  msgid "Excerpt View"
430
  msgstr ""
431
 
432
- #: includes/MPSUM_List_Table.php:287
433
  msgid "No items found."
434
  msgstr ""
435
 
436
- #: includes/MPSUM_List_Table.php:413
437
  msgid "Select bulk action"
438
  msgstr ""
439
 
440
- #: includes/MPSUM_List_Table.php:415
441
  msgid "Bulk Actions"
442
  msgstr ""
443
 
444
- #: includes/MPSUM_List_Table.php:425
445
  msgid "Apply"
446
  msgstr ""
447
 
448
- #: includes/MPSUM_List_Table.php:513
 
 
 
 
449
  msgid "Filter by date"
450
  msgstr ""
451
 
452
- #: includes/MPSUM_List_Table.php:515
453
  msgid "All dates"
454
  msgstr ""
455
 
456
- #: includes/MPSUM_List_Table.php:528
457
  #, php-format
458
  msgid "%1$s %2$d"
459
  msgstr ""
460
 
461
- #: includes/MPSUM_List_Table.php:575
462
  #, php-format
463
- msgid "%s pending"
464
- msgstr ""
 
 
465
 
466
- #: includes/MPSUM_List_Table.php:654 includes/MPSUM_List_Table.php:1076
467
  #, php-format
468
- msgid "1 item"
469
- msgid_plural "%s items"
 
 
 
 
 
 
 
470
  msgstr[0] ""
471
  msgstr[1] ""
472
 
473
- #: includes/MPSUM_List_Table.php:673
474
- msgid "Go to the first page"
475
  msgstr ""
476
 
477
- #: includes/MPSUM_List_Table.php:680
478
- msgid "Go to the previous page"
479
  msgstr ""
480
 
481
- #: includes/MPSUM_List_Table.php:689
482
- msgid "Select Page"
 
 
 
 
 
 
 
483
  msgstr ""
484
 
485
- #: includes/MPSUM_List_Table.php:690
486
- msgid "Current page"
487
  msgstr ""
488
 
489
- #: includes/MPSUM_List_Table.php:696
 
 
 
 
490
  #, php-format
491
  msgctxt "paging"
492
  msgid "%1$s of %2$s"
493
  msgstr ""
494
 
495
- #: includes/MPSUM_List_Table.php:700
496
- msgid "Go to the next page"
497
  msgstr ""
498
 
499
- #: includes/MPSUM_List_Table.php:707
500
- msgid "Go to the last page"
501
  msgstr ""
502
 
503
- #: includes/MPSUM_List_Table.php:844
504
  msgid "Select All"
505
  msgstr ""
506
 
@@ -639,3 +677,9 @@ msgstr ""
639
  #: includes/MPSUM_Themes_List_Table.php:342
640
  msgid "Visit Theme Site"
641
  msgstr ""
 
 
 
 
 
 
5
  msgstr ""
6
  "Project-Id-Version: Easy Updates Manager v1.0.0\n"
7
  "Report-Msgid-Bugs-To: Ronald Huereca <ronalfy@gmail.com>\n"
8
+ "POT-Creation-Date: 2015-08-25 11:27+0100\n"
9
  "PO-Revision-Date: \n"
10
+ "Last-Translator: Pixolin <pixolin@gmx.com>\n"
11
  "Language-Team: Ronald Huereca <ronalfy@gmail.com>\n"
12
  "Language: en_US\n"
13
  "MIME-Version: 1.0\n"
19
  "X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
20
  "esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
21
  "_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
22
+ "X-Poedit-Basepath: ..\n"
23
+ "X-Generator: Poedit 1.7\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
 
26
  #: includes/MPSUM_Admin.php:164 includes/MPSUM_Admin.php:180
104
  #: includes/MPSUM_Admin_Core.php:160 includes/MPSUM_Admin_Core.php:167
105
  #: includes/MPSUM_Admin_Core.php:174 includes/MPSUM_Admin_Core.php:185
106
  #: includes/MPSUM_Admin_Core.php:193 includes/MPSUM_Admin_Core.php:201
107
+ #: includes/MPSUM_Admin_Core.php:209 includes/MPSUM_Admin_Core.php:219
108
+ #: includes/MPSUM_Admin_Core.php:229 includes/MPSUM_Admin_Core.php:240
109
+ #: includes/MPSUM_Admin_Core.php:251 includes/MPSUM_Admin_Core.php:259
110
  msgid "Enabled"
111
  msgstr ""
112
 
114
  #: includes/MPSUM_Admin_Core.php:161 includes/MPSUM_Admin_Core.php:168
115
  #: includes/MPSUM_Admin_Core.php:175 includes/MPSUM_Admin_Core.php:186
116
  #: includes/MPSUM_Admin_Core.php:194 includes/MPSUM_Admin_Core.php:202
117
+ #: includes/MPSUM_Admin_Core.php:210 includes/MPSUM_Admin_Core.php:220
118
+ #: includes/MPSUM_Admin_Core.php:230 includes/MPSUM_Admin_Core.php:241
119
+ #: includes/MPSUM_Admin_Core.php:252 includes/MPSUM_Admin_Core.php:260
120
  msgid "Disabled"
121
  msgstr ""
122
 
182
  msgid "Automatic Plugin Updates"
183
  msgstr ""
184
 
185
+ #: includes/MPSUM_Admin_Core.php:211 includes/MPSUM_Admin_Core.php:221
186
+ msgid "Default"
187
+ msgstr ""
188
+
189
+ #: includes/MPSUM_Admin_Core.php:212 includes/MPSUM_Admin_Core.php:222
190
  msgid "Select Individually"
191
  msgstr ""
192
 
193
+ #: includes/MPSUM_Admin_Core.php:213
194
  msgid ""
195
+ "Automatically update your plugins. Select always on, always off, the "
196
+ "WordPress default, or select plugins individually."
197
  msgstr ""
198
 
199
+ #: includes/MPSUM_Admin_Core.php:217
200
  msgid "Automatic Theme Updates"
201
  msgstr ""
202
 
203
+ #: includes/MPSUM_Admin_Core.php:223
204
  msgid ""
205
+ "Automatically update your themes. Select always on, always off, the "
206
+ "WordPress default, or select themes individually."
207
  msgstr ""
208
 
209
+ #: includes/MPSUM_Admin_Core.php:227
210
  msgid "Translation Updates"
211
  msgstr ""
212
 
213
+ #: includes/MPSUM_Admin_Core.php:231
214
  msgid "Automatically update your translations."
215
  msgstr ""
216
 
217
+ #: includes/MPSUM_Admin_Core.php:235
218
  msgid "Notifications"
219
  msgstr ""
220
 
221
+ #: includes/MPSUM_Admin_Core.php:238
222
  msgid "Core Update E-mails"
223
  msgstr ""
224
 
225
+ #: includes/MPSUM_Admin_Core.php:242
226
  msgid ""
227
  "Disable e-mails that are sent when your site has been upgraded automatically."
228
  msgstr ""
229
 
230
+ #: includes/MPSUM_Admin_Core.php:246
231
  msgid "Miscellaneous"
232
  msgstr ""
233
 
234
+ #: includes/MPSUM_Admin_Core.php:249
235
  msgid "Browser Nag"
236
  msgstr ""
237
 
238
+ #: includes/MPSUM_Admin_Core.php:253
239
  msgid "Removes the browser nag for people using older browsers."
240
  msgstr ""
241
 
242
+ #: includes/MPSUM_Admin_Core.php:257
243
  msgid "WordPress Version in Footer"
244
  msgstr ""
245
 
246
+ #: includes/MPSUM_Admin_Core.php:261
247
  msgid "Removes the WordPress version in the footer."
248
  msgstr ""
249
 
250
+ #: includes/MPSUM_Admin_Core.php:269
251
  msgid "Save Changes"
252
  msgstr ""
253
 
254
+ #: includes/MPSUM_Admin_Core.php:271
255
  msgid "Reset to Defaults"
256
  msgstr ""
257
 
336
  msgstr ""
337
 
338
  #: includes/MPSUM_Admin_Help.php:95
339
+ msgid ""
340
+ "This plugin is tested with the most recent versions of WordPress to ensure "
341
+ "that there are no major issues."
 
 
 
 
 
 
 
 
 
 
342
  msgstr ""
343
 
344
+ #: includes/MPSUM_Admin_Help.php:100
345
  msgid "Overview"
346
  msgstr ""
347
 
348
+ #: includes/MPSUM_Admin_Help.php:106
349
+ msgid "Navigation"
350
  msgstr ""
351
 
352
+ #: includes/MPSUM_Admin_Help.php:112
353
  msgid "Documentation"
354
  msgstr ""
355
 
356
+ #: includes/MPSUM_Admin_Help.php:118
357
  msgid "Capability"
358
  msgstr ""
359
 
360
+ #: includes/MPSUM_Admin_Help.php:124
361
  msgid "Troubleshooting"
362
  msgstr ""
363
 
364
+ #: includes/MPSUM_Admin_Plugins.php:128 includes/MPSUM_Admin_Themes.php:251
365
  #: includes/MPSUM_Plugins_List_Table.php:248
366
  #: includes/MPSUM_Themes_List_Table.php:258
367
  msgid "Allow Updates"
368
  msgstr ""
369
 
370
+ #: includes/MPSUM_Admin_Plugins.php:132 includes/MPSUM_Admin_Themes.php:256
371
  #: includes/MPSUM_Plugins_List_Table.php:249
372
  #: includes/MPSUM_Themes_List_Table.php:259
373
  msgid "Disallow Updates"
374
  msgstr ""
375
 
376
+ #: includes/MPSUM_Admin_Plugins.php:141 includes/MPSUM_Admin_Themes.php:265
377
  #: includes/MPSUM_Plugins_List_Table.php:253
378
  #: includes/MPSUM_Themes_List_Table.php:263
379
  msgid "Disallow Automatic Updates"
380
  msgstr ""
381
 
382
+ #: includes/MPSUM_Admin_Plugins.php:145 includes/MPSUM_Admin_Themes.php:269
383
  msgid "Enable Automatic Updates"
384
  msgstr ""
385
 
386
+ #: includes/MPSUM_Admin_Plugins.php:231 includes/MPSUM_Admin_Themes.php:191
387
+ msgid "Settings have been updated."
388
  msgstr ""
389
 
390
+ #: includes/MPSUM_Admin_Plugins.php:234
391
+ msgid "The selected plugins have had automatic updates enabled."
392
+ msgstr ""
393
+
394
+ #: includes/MPSUM_Admin_Plugins.php:236
395
+ msgid "The selected plugins have had automatic updates disabled."
396
+ msgstr ""
397
+
398
+ #: includes/MPSUM_Admin_Plugins.php:238
399
  msgid "The selected plugin updates have been disabled."
400
  msgstr ""
401
 
402
+ #: includes/MPSUM_Admin_Plugins.php:240
403
+ msgid "The selected plugin updates have been enabled."
404
+ msgstr ""
405
+
406
+ #: includes/MPSUM_Admin_Plugins.php:256
407
  msgid "Plugin Update Options"
408
  msgstr ""
409
 
410
+ #: includes/MPSUM_Admin_Plugins.php:260
411
  msgid "All plugin updates have been disabled."
412
  msgstr ""
413
 
414
+ #: includes/MPSUM_Admin_Themes.php:193
415
+ msgid "The selected themes have had automatic updates enabled."
416
  msgstr ""
417
 
418
+ #: includes/MPSUM_Admin_Themes.php:195
419
+ msgid "The selected themes have had automatic updates disabled."
420
+ msgstr ""
421
+
422
+ #: includes/MPSUM_Admin_Themes.php:197
423
  msgid "The selected theme updates have been disabled."
424
  msgstr ""
425
 
426
+ #: includes/MPSUM_Admin_Themes.php:199
427
+ msgid "The selected theme updates have been enabled."
428
+ msgstr ""
429
+
430
+ #: includes/MPSUM_Admin_Themes.php:216
431
  msgid "Theme Update Options"
432
  msgstr ""
433
 
434
+ #: includes/MPSUM_Admin_Themes.php:221
435
  msgid "All theme updates have been disabled."
436
  msgstr ""
437
 
438
+ #: includes/MPSUM_List_Table.php:143
439
  msgid "List View"
440
  msgstr ""
441
 
442
+ #: includes/MPSUM_List_Table.php:144
443
  msgid "Excerpt View"
444
  msgstr ""
445
 
446
+ #: includes/MPSUM_List_Table.php:313
447
  msgid "No items found."
448
  msgstr ""
449
 
450
+ #: includes/MPSUM_List_Table.php:439
451
  msgid "Select bulk action"
452
  msgstr ""
453
 
454
+ #: includes/MPSUM_List_Table.php:441
455
  msgid "Bulk Actions"
456
  msgstr ""
457
 
458
+ #: includes/MPSUM_List_Table.php:451
459
  msgid "Apply"
460
  msgstr ""
461
 
462
+ #: includes/MPSUM_List_Table.php:501
463
+ msgid "Show more details"
464
+ msgstr ""
465
+
466
+ #: includes/MPSUM_List_Table.php:556
467
  msgid "Filter by date"
468
  msgstr ""
469
 
470
+ #: includes/MPSUM_List_Table.php:558
471
  msgid "All dates"
472
  msgstr ""
473
 
474
+ #: includes/MPSUM_List_Table.php:571
475
  #, php-format
476
  msgid "%1$s %2$d"
477
  msgstr ""
478
 
479
+ #: includes/MPSUM_List_Table.php:623
480
  #, php-format
481
+ msgid "%s comment"
482
+ msgid_plural "%s comments"
483
+ msgstr[0] ""
484
+ msgstr[1] ""
485
 
486
+ #: includes/MPSUM_List_Table.php:624
487
  #, php-format
488
+ msgid "%s approved comment"
489
+ msgid_plural "%s approved comments"
490
+ msgstr[0] ""
491
+ msgstr[1] ""
492
+
493
+ #: includes/MPSUM_List_Table.php:625
494
+ #, php-format
495
+ msgid "%s pending comment"
496
+ msgid_plural "%s pending comments"
497
  msgstr[0] ""
498
  msgstr[1] ""
499
 
500
+ #: includes/MPSUM_List_Table.php:630 includes/MPSUM_List_Table.php:642
501
+ msgid "No comments"
502
  msgstr ""
503
 
504
+ #: includes/MPSUM_List_Table.php:642
505
+ msgid "No approved comments"
506
  msgstr ""
507
 
508
+ #: includes/MPSUM_List_Table.php:723 includes/MPSUM_List_Table.php:1287
509
+ #, php-format
510
+ msgid "%s item"
511
+ msgid_plural "%s items"
512
+ msgstr[0] ""
513
+ msgstr[1] ""
514
+
515
+ #: includes/MPSUM_List_Table.php:758
516
+ msgid "First page"
517
  msgstr ""
518
 
519
+ #: includes/MPSUM_List_Table.php:768
520
+ msgid "Previous page"
521
  msgstr ""
522
 
523
+ #: includes/MPSUM_List_Table.php:775 includes/MPSUM_List_Table.php:778
524
+ msgid "Current Page"
525
+ msgstr ""
526
+
527
+ #: includes/MPSUM_List_Table.php:784
528
  #, php-format
529
  msgctxt "paging"
530
  msgid "%1$s of %2$s"
531
  msgstr ""
532
 
533
+ #: includes/MPSUM_List_Table.php:791
534
+ msgid "Next page"
535
  msgstr ""
536
 
537
+ #: includes/MPSUM_List_Table.php:801
538
+ msgid "Last page"
539
  msgstr ""
540
 
541
+ #: includes/MPSUM_List_Table.php:1011
542
  msgid "Select All"
543
  msgstr ""
544
 
677
  #: includes/MPSUM_Themes_List_Table.php:342
678
  msgid "Visit Theme Site"
679
  msgstr ""
680
+
681
+ #: main.php:335
682
+ msgid ""
683
+ "Manage and disable WordPress updates, including core, plugin, theme, and "
684
+ "automatic updates - Works with Multisite."
685
+ msgstr ""
main.php CHANGED
@@ -2,9 +2,9 @@
2
  /*
3
  Plugin Name: Easy Updates Manager
4
  Plugin URI: https://wordpress.org/plugins/stops-core-theme-and-plugin-updates/
5
- Description: Manage and disable WordPress updates, including core, plugin, theme, and automatic updates - Works with Multisite
6
  Author: kidsguide, ronalfy
7
- Version: 5.1.0
8
  Requires at least: 4.3
9
  Author URI: https://wordpress.org/plugins/stops-core-theme-and-plugin-updates/
10
  Contributors: kidsguide, ronalfy
2
  /*
3
  Plugin Name: Easy Updates Manager
4
  Plugin URI: https://wordpress.org/plugins/stops-core-theme-and-plugin-updates/
5
+ Description: Manage and disable WordPress updates, including core, plugin, theme, and automatic updates - Works with Multisite.
6
  Author: kidsguide, ronalfy
7
+ Version: 5.1.1
8
  Requires at least: 4.3
9
  Author URI: https://wordpress.org/plugins/stops-core-theme-and-plugin-updates/
10
  Contributors: kidsguide, ronalfy
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
  === Easy Updates Manager ===
2
  Contributors: kidsguide, ronalfy
3
- Tags: updates manager, easy updates manager, disable updates manager, disable updates, update control, plugin updates, theme updates, core updates, automatic updates
4
  Requires at least: 4.3
5
  Tested up to: 4.3
6
- Stable tag: 5.1.0
7
  License: GPLv2 or later
8
 
9
  Manage all your WordPress updates, including individual plugin/theme updates, automatic updates, and loads more. Also works with WordPress Multisite.
@@ -36,16 +36,24 @@ Easy Updates Manager is a light yet powerful plugin which enables you to manage
36
 
37
  For more information on how to use Easy Updates Manager, check out our <a href="https://github.com/easy-updates-manager/easy-updates-manager/wiki">wiki</a>.
38
 
 
 
 
 
 
 
 
 
39
  == Screenshots ==
40
- 1. Easy Updates Manager on Single-Site Plugins Screen with Shortcut Configure Option
41
- 2. Easy Updates Manager Options are Under Dashboard on Single-Site
42
- 3. Easy Updates Manager on Multisite Plugins Screen with Shortcut Configure Option
43
- 4. Easy Updates Manager Options are Under Updates on Multisite
44
- 5. General Options Allow You to Enable or Disable Updates
45
- 6. Plugin Options Allow You to Enable or Disable Updates Per Plugin
46
- 7. Theme Options Allow You to Enable or Disable Updates Per Theme
47
- 8. Advanced Options Allow You to Exclude Users or Reset All Options
48
- 9. Help Screen Provides Helpful Links
49
 
50
  == Installation ==
51
  <strong>Installing Easy Updates Manager in your WordPress Dashboard</strong> (recommended)
@@ -89,8 +97,16 @@ For additional information and FAQs for Easy Updates Manager check out our <a hr
89
 
90
  == Changelog ==
91
 
 
 
 
 
 
 
 
 
92
  = 5.1.0 =
93
- Updated: 2015-08-11
94
 
95
  * WordPress 4.3 tested and is now the minimum supported version.
96
  * Added default option to plugin/theme automatic updates.
@@ -109,6 +125,10 @@ In version 5.0.0 we completely re-wrote the plugin to offer a faster and more se
109
  * New contributor: <a href="https://profiles.wordpress.org/ronalfy">ronalfy</a>
110
 
111
  == Upgrade Notice ==
 
 
 
 
112
  = 5.1.0 =
113
  Only upgrade if using WordPress 4.3. Many changes to ensure WordPress 4.3 compatibility.
114
 
1
  === Easy Updates Manager ===
2
  Contributors: kidsguide, ronalfy
3
+ Tags: updates manager, easy updates manager, disable updates manager, disable updates, update control, plugin updates, theme updates, core updates, automatic updates, multisite
4
  Requires at least: 4.3
5
  Tested up to: 4.3
6
+ Stable tag: 5.1.1
7
  License: GPLv2 or later
8
 
9
  Manage all your WordPress updates, including individual plugin/theme updates, automatic updates, and loads more. Also works with WordPress Multisite.
36
 
37
  For more information on how to use Easy Updates Manager, check out our <a href="https://github.com/easy-updates-manager/easy-updates-manager/wiki">wiki</a>.
38
 
39
+ <h3>Translations</h3>
40
+
41
+ <ul>
42
+ <li>German - Props <a href="https://github.com/pixolin">Bego Mario Garde</a></li>
43
+ </ul>
44
+
45
+ If you are interested in translating our plugin, please create a new support request with a link to your translation or <a href="https://github.com/easy-updates-manager/easy-updates-manager">submit a pull request</a>.
46
+
47
  == Screenshots ==
48
+ 1. Single site install settings page location
49
+ 2. Multisite install settings page location
50
+ 3. Global settings in General tab
51
+ 4. Automatic Update settings in General tab
52
+ 5. Notification and Miscellaneous settings in Global tab
53
+ 6. Enable/Disable updates and automatic updates individually for plugins
54
+ 7. Enable/Disable updates and automatic updates individually for themes
55
+ 8. Advanced options tab
56
+ 9. Help tab
57
 
58
  == Installation ==
59
  <strong>Installing Easy Updates Manager in your WordPress Dashboard</strong> (recommended)
97
 
98
  == Changelog ==
99
 
100
+ = 5.1.1 =
101
+ Updated: 2015-08-24
102
+
103
+ * Fixed internationalization in plugin files.
104
+ * Added German translation.
105
+ * Updated internal plugin documentation.
106
+ * Fixing errant status messages.
107
+
108
  = 5.1.0 =
109
+ Updated: 2015-08-13
110
 
111
  * WordPress 4.3 tested and is now the minimum supported version.
112
  * Added default option to plugin/theme automatic updates.
125
  * New contributor: <a href="https://profiles.wordpress.org/ronalfy">ronalfy</a>
126
 
127
  == Upgrade Notice ==
128
+
129
+ = 5.1.1 =
130
+ Fixing internationalization issues and adding German translation.
131
+
132
  = 5.1.0 =
133
  Only upgrade if using WordPress 4.3. Many changes to ensure WordPress 4.3 compatibility.
134