Easy Updates Manager - Version 5.3.1

Version Description

Released 2015-09-27 * Fixing automatic updates dashboard widget.

Download this release

Release Info

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

Code changes from version 5.3.0 to 5.3.1

css/style.css CHANGED
@@ -6,6 +6,7 @@
6
  overflow: hidden;
7
  margin-right: 20px;
8
  margin-bottom: 30px;
 
9
  }
10
  .dashboard-item-wrapper {
11
  background: #e4e4e4; /* Old browsers */
6
  overflow: hidden;
7
  margin-right: 20px;
8
  margin-bottom: 30px;
9
+ margin-top: 30px;
10
  }
11
  .dashboard-item-wrapper {
12
  background: #e4e4e4; /* Old browsers */
includes/MPSUM_Admin_Dashboard.php CHANGED
@@ -213,13 +213,6 @@ class MPSUM_Admin_Dashboard {
213
  <div class="dashboard-item-header"><?php esc_html_e( 'Core E-mails', 'stops-core-theme-and-plugin-updates' ); ?>
214
  </div><!-- .dashboard-item-header -->
215
  <div class="dashboard-item-choice">
216
- <?php
217
- /* [notification_core_update_emails] => on
218
- [notification_core_update_emails_plugins] => off
219
- [notification_core_update_emails_themes] => off
220
- [notification_core_update_emails_translations] => on
221
- */
222
- ?>
223
  <input type="checkbox" name="options[notification_core_update_emails]" value="off" />
224
  <input type="checkbox" data-context="core" data-action="notification_core_update_emails" class="dashboard-hide" name="options[notification_core_update_emails]" value="on" id="notification_core_update_emails_on" <?php checked( 'on', $options[ 'notification_core_update_emails' ] ); ?> />&nbsp;<label for="notification_core_update_emails_on"><?php esc_html_e( 'Enabled', 'stops-core-theme-and-plugin-updates' ); ?></label>
225
  </div><!-- .dashboard-item-choice -->
@@ -375,21 +368,23 @@ class MPSUM_Admin_Dashboard {
375
  <?php
376
  $can_show_plugins = false;
377
  $options = MPSUM_Updates_Manager::get_options( 'core' );
378
- if ( !isset( $options[ 'automatic_theme_updates' ] ) ) {
379
  $options[ 'automatic_plugin_updates' ] = 'default';
380
- $auto_theme_updates = $options[ 'automatic_plugin_updates' ];
381
  } else {
382
- $auto_theme_updates = 'default';
 
 
 
383
  }
384
- $auto_theme_updates = $options[ 'automatic_plugin_updates' ];
385
  $error = '';
386
- if ( 'default' == $auto_theme_updates ) {
387
  $can_show_plugins = false;
388
  $error = __( 'WordPress defaults control which updates are automatic or not.', 'stops-core-theme-and-plugin-updates' );
389
- } elseif ( 'on' == $auto_theme_updates ) {
390
  $can_show_plugins = false;
391
  $error = __( 'Automatic updates are on for all plugins', 'stops-core-theme-and-plugin-updates' );
392
- } elseif ( 'off' == $auto_theme_updates ) {
393
  $can_show_plugins = false;
394
  $error = __( 'Automatic updates are disabled for all plugins', 'stops-core-theme-and-plugin-updates' );
395
  } else {
@@ -402,9 +397,9 @@ class MPSUM_Admin_Dashboard {
402
  $options = MPSUM_Updates_Manager::get_options( 'plugins_automatic' );
403
  $plugins = get_plugins();
404
  foreach( $plugins as $plugin_slug => $plugin_data ) {
405
- $is_plugin_active = true;
406
  if ( in_array( $plugin_slug, $options ) ) {
407
- $is_plugin_active = false;
408
  }
409
  $plugin_name = $plugin_data[ 'Name' ];
410
  ?>
@@ -442,9 +437,12 @@ class MPSUM_Admin_Dashboard {
442
  $options[ 'automatic_theme_updates' ] = 'default';
443
  $auto_theme_updates = $options[ 'automatic_theme_updates' ];
444
  } else {
445
- $auto_theme_updates = 'default';
 
 
 
 
446
  }
447
-
448
  $error = '';
449
  if ( 'default' == $auto_theme_updates ) {
450
  $can_show_themes = false;
@@ -459,13 +457,13 @@ class MPSUM_Admin_Dashboard {
459
  $can_show_themes = true;
460
  }
461
  if( $can_show_themes ) :
462
- $options = MPSUM_Updates_Manager::get_options( 'themes' );
463
  $themes = wp_get_themes();
464
-
465
  foreach( $themes as $theme_slug => $theme_data ) {
466
- $is_theme_active = true;
467
  if ( in_array( $theme_slug, $options ) ) {
468
- $is_theme_active = false;
469
  }
470
  $theme_name = $theme_data->Name;
471
  ?>
@@ -481,8 +479,8 @@ class MPSUM_Admin_Dashboard {
481
  }
482
 
483
  ?>
484
- <input type="hidden" name="options[themes]" value="<?php echo esc_attr( $theme_slug ); ?> " />
485
- <input id="<?php echo esc_attr( $theme_slug ); ?>-check" type="checkbox" data-context="themes" data-action="<?php echo esc_attr( $theme_slug ); ?>" class="dashboard-hide update-option" name="options[themes]" value="<?php echo esc_attr( $theme_slug ); ?>" id="<?php echo esc_attr( $theme_slug ); ?>_off" <?php checked( true, $is_theme_active ); ?> <?php disabled( true, false ); ?> />&nbsp;<label for="<?php echo esc_attr( $theme_slug ); ?>-check"><?php esc_html_e( 'Disabled', 'stops-core-theme-and-plugin-updates' ); ?></label>
486
  </div><!-- .dashboard-item-choice -->
487
  </div><!-- dashboard-item-->
488
 
213
  <div class="dashboard-item-header"><?php esc_html_e( 'Core E-mails', 'stops-core-theme-and-plugin-updates' ); ?>
214
  </div><!-- .dashboard-item-header -->
215
  <div class="dashboard-item-choice">
 
 
 
 
 
 
 
216
  <input type="checkbox" name="options[notification_core_update_emails]" value="off" />
217
  <input type="checkbox" data-context="core" data-action="notification_core_update_emails" class="dashboard-hide" name="options[notification_core_update_emails]" value="on" id="notification_core_update_emails_on" <?php checked( 'on', $options[ 'notification_core_update_emails' ] ); ?> />&nbsp;<label for="notification_core_update_emails_on"><?php esc_html_e( 'Enabled', 'stops-core-theme-and-plugin-updates' ); ?></label>
218
  </div><!-- .dashboard-item-choice -->
368
  <?php
369
  $can_show_plugins = false;
370
  $options = MPSUM_Updates_Manager::get_options( 'core' );
371
+ if ( !isset( $options[ 'automatic_plugin_updates' ] ) ) {
372
  $options[ 'automatic_plugin_updates' ] = 'default';
373
+ $can_show_plugins = $options[ 'automatic_plugin_updates' ];
374
  } else {
375
+ $can_show_plugins = $options[ 'automatic_plugin_updates' ];
376
+ }
377
+ if ( isset( $options[ 'plugin_updates' ] ) && 'off' == $options[ 'plugin_updates' ] ) {
378
+ $can_show_plugins = 'off';
379
  }
 
380
  $error = '';
381
+ if ( 'default' == $can_show_plugins ) {
382
  $can_show_plugins = false;
383
  $error = __( 'WordPress defaults control which updates are automatic or not.', 'stops-core-theme-and-plugin-updates' );
384
+ } elseif ( 'on' == $can_show_plugins ) {
385
  $can_show_plugins = false;
386
  $error = __( 'Automatic updates are on for all plugins', 'stops-core-theme-and-plugin-updates' );
387
+ } elseif ( 'off' == $can_show_plugins ) {
388
  $can_show_plugins = false;
389
  $error = __( 'Automatic updates are disabled for all plugins', 'stops-core-theme-and-plugin-updates' );
390
  } else {
397
  $options = MPSUM_Updates_Manager::get_options( 'plugins_automatic' );
398
  $plugins = get_plugins();
399
  foreach( $plugins as $plugin_slug => $plugin_data ) {
400
+ $is_plugin_active = false;
401
  if ( in_array( $plugin_slug, $options ) ) {
402
+ $is_plugin_active = true;
403
  }
404
  $plugin_name = $plugin_data[ 'Name' ];
405
  ?>
437
  $options[ 'automatic_theme_updates' ] = 'default';
438
  $auto_theme_updates = $options[ 'automatic_theme_updates' ];
439
  } else {
440
+ $auto_theme_updates = $options[ 'automatic_theme_updates' ];
441
+ }
442
+ if ( isset( $options[ 'theme_updates' ] ) && 'off' == $options[ 'theme_updates' ] ) {
443
+ $can_show_plugins = 'off';
444
+ $auto_theme_updates = 'off';
445
  }
 
446
  $error = '';
447
  if ( 'default' == $auto_theme_updates ) {
448
  $can_show_themes = false;
457
  $can_show_themes = true;
458
  }
459
  if( $can_show_themes ) :
460
+ $options = MPSUM_Updates_Manager::get_options( 'themes_automatic' );
461
  $themes = wp_get_themes();
462
+
463
  foreach( $themes as $theme_slug => $theme_data ) {
464
+ $is_theme_active = false;
465
  if ( in_array( $theme_slug, $options ) ) {
466
+ $is_theme_active = true;
467
  }
468
  $theme_name = $theme_data->Name;
469
  ?>
479
  }
480
 
481
  ?>
482
+ <input type="hidden" name="options[themes_automatic]" value="<?php echo esc_attr( $theme_slug ); ?> " />
483
+ <input id="themes_automatic_on_<?php echo $theme_slug; ?>" type="checkbox" data-context="themes_automatic" data-action="<?php echo esc_attr( $theme_slug ); ?>" class="dashboard-hide update-option" name="options[themes_automatic]" value="<?php echo esc_attr( $theme_slug ); ?>" id="<?php echo esc_attr( $theme_slug ); ?>_off" <?php checked( true, $is_theme_active ); ?> <?php disabled( true, false ); ?> />&nbsp;<label for="themes_automatic_on_<?php echo $theme_slug; ?>"><?php esc_html_e( 'Disabled', 'stops-core-theme-and-plugin-updates' ); ?></label>
484
  </div><!-- .dashboard-item-choice -->
485
  </div><!-- dashboard-item-->
486
 
languages/stops-core-theme-and-plugin-updates-de_DE.mo DELETED
Binary file
languages/stops-core-theme-and-plugin-updates-de_DE.po DELETED
@@ -1,873 +0,0 @@
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-09-27 10:49-0600\n"
6
- "PO-Revision-Date: 2015-09-28 01:08+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.1\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:172 includes/MPSUM_Admin.php:189
23
- msgid "Updates Options"
24
- msgstr "Aktualisierungs-Optionen"
25
-
26
- #: includes/MPSUM_Admin.php:208
27
- msgid "Manage Updates"
28
- msgstr "Aktualisierungen verwalten"
29
-
30
- #: includes/MPSUM_Admin.php:215
31
- msgid "Dashboard"
32
- msgstr "Dashboard"
33
-
34
- #: includes/MPSUM_Admin.php:221 includes/MPSUM_Admin_Help.php:51
35
- msgid "General"
36
- msgstr "Allgemein"
37
-
38
- #: includes/MPSUM_Admin.php:227 includes/MPSUM_Admin_Help.php:52
39
- msgid "Plugins"
40
- msgstr "Plugins"
41
-
42
- #: includes/MPSUM_Admin.php:233 includes/MPSUM_Admin_Help.php:53
43
- msgid "Themes"
44
- msgstr "Themes"
45
-
46
- #: includes/MPSUM_Admin.php:239 includes/MPSUM_Admin_Help.php:54
47
- msgid "Advanced"
48
- msgstr "Erweitert"
49
-
50
- #: includes/MPSUM_Admin.php:295
51
- msgid "Configure"
52
- msgstr "Konfigurieren"
53
-
54
- #: includes/MPSUM_Admin_Advanced.php:123
55
- msgid "The exclusion of users option has been updated."
56
- msgstr "Der Ausschluss von Benutzern Option wurde aktualisiert."
57
-
58
- #: includes/MPSUM_Admin_Advanced.php:126
59
- msgid "The plugin settings have now been reset."
60
- msgstr "Die Aktualisierung ausgewählter Plugins wurde aktiviert."
61
-
62
- #: includes/MPSUM_Admin_Advanced.php:129
63
- msgid ""
64
- "Force update checks have been initialized. Please check your site in 90 "
65
- "seconds, and refresh to test automatic updates."
66
- msgstr ""
67
- "Führe diese Aktualisierung aus, warte etwa 60 Sekunden und lade dann neu, um "
68
- "automatische Aktualisierungen zu testen."
69
-
70
- #: includes/MPSUM_Admin_Advanced.php:132 includes/MPSUM_Admin_Core.php:134
71
- msgid "Options saved."
72
- msgstr "Einstellungen gespeichert."
73
-
74
- #: includes/MPSUM_Admin_Advanced.php:144
75
- msgid "Exclude Users"
76
- msgstr "Anwender ausschließen"
77
-
78
- #: includes/MPSUM_Admin_Advanced.php:145
79
- msgid ""
80
- "Select which users to be excluded from the settings of this plugin. Default "
81
- "WordPress behavior will be used."
82
- msgstr ""
83
- "Wähle, welche Anwender von den Einstellungen dieses Plugins ausgeschlossen "
84
- "werden sollen. Das normale Verhalten von WordPress wird dann verwendet."
85
-
86
- #: includes/MPSUM_Admin_Advanced.php:146
87
- msgid ""
88
- "This option is useful if, for example, you would like to disable updates, "
89
- "but have a user account that can still update WordPress."
90
- msgstr ""
91
- "Diese Option ist zum Beispiel sinnvoll, wenn du Aktualisierungen abschalten "
92
- "möchtest, aber gleichzeitig ein Anwender weiterhin WordPress aktualisieren "
93
- "können soll."
94
-
95
- #: includes/MPSUM_Admin_Advanced.php:149
96
- msgid "Users to be Excluded"
97
- msgstr "Anwender, die ausgeschlossen werden sollen"
98
-
99
- #: includes/MPSUM_Admin_Advanced.php:188
100
- msgid "Save Users"
101
- msgstr "Anwender speichern"
102
-
103
- #: includes/MPSUM_Admin_Advanced.php:193
104
- msgid "Reset Options"
105
- msgstr "Einstellungen zurücksetzen"
106
-
107
- #: includes/MPSUM_Admin_Advanced.php:194
108
- msgid ""
109
- "This will reset all options to as if you have just installed the plugin."
110
- msgstr ""
111
- "Hiermit werden alle Einstellungen so zurückgesetzt, als hättest du das "
112
- "Plugin gerade erst installiert."
113
-
114
- #: includes/MPSUM_Admin_Advanced.php:199
115
- msgid "Reset All Options"
116
- msgstr "Alle Einstellungen zurücksetzen"
117
-
118
- #: includes/MPSUM_Admin_Advanced.php:204
119
- msgid "Force Automatic Updates"
120
- msgstr "Automatische Aktualisierungen erzwingen"
121
-
122
- #: includes/MPSUM_Admin_Advanced.php:205
123
- msgid ""
124
- "This will attempt to force automatic updates. This is useful for debugging."
125
- msgstr ""
126
- "Es wird versucht, automatische Aktualisierungen zu erzwingen. Nützlich bei "
127
- "der Fehlersuche."
128
-
129
- #: includes/MPSUM_Admin_Advanced.php:210
130
- msgid "Force Updates"
131
- msgstr "Aktualisierungen erzwingen"
132
-
133
- #: includes/MPSUM_Admin_Core.php:143
134
- msgid "Global Settings"
135
- msgstr "Globale Einstellungen"
136
-
137
- #: includes/MPSUM_Admin_Core.php:146 includes/MPSUM_Admin_Dashboard.php:70
138
- msgid "All Updates"
139
- msgstr "Alle Aktualisierungen"
140
-
141
- #: includes/MPSUM_Admin_Core.php:148 includes/MPSUM_Admin_Core.php:156
142
- #: includes/MPSUM_Admin_Core.php:164 includes/MPSUM_Admin_Core.php:171
143
- #: includes/MPSUM_Admin_Core.php:178 includes/MPSUM_Admin_Core.php:189
144
- #: includes/MPSUM_Admin_Core.php:197 includes/MPSUM_Admin_Core.php:205
145
- #: includes/MPSUM_Admin_Core.php:213 includes/MPSUM_Admin_Core.php:223
146
- #: includes/MPSUM_Admin_Core.php:233 includes/MPSUM_Admin_Core.php:261
147
- #: includes/MPSUM_Admin_Core.php:269 includes/MPSUM_Admin_Dashboard.php:84
148
- #: includes/MPSUM_Admin_Dashboard.php:166
149
- #: includes/MPSUM_Admin_Dashboard.php:199
150
- #: includes/MPSUM_Admin_Dashboard.php:209
151
- #: includes/MPSUM_Admin_Dashboard.php:232
152
- #: includes/MPSUM_Admin_Dashboard.php:247
153
- #: includes/MPSUM_Admin_Dashboard.php:262
154
- #: includes/MPSUM_Admin_Dashboard.php:271
155
- msgid "Enabled"
156
- msgstr "Aktiviert"
157
-
158
- #: includes/MPSUM_Admin_Core.php:149 includes/MPSUM_Admin_Core.php:157
159
- #: includes/MPSUM_Admin_Core.php:165 includes/MPSUM_Admin_Core.php:172
160
- #: includes/MPSUM_Admin_Core.php:179 includes/MPSUM_Admin_Core.php:190
161
- #: includes/MPSUM_Admin_Core.php:198 includes/MPSUM_Admin_Core.php:206
162
- #: includes/MPSUM_Admin_Core.php:214 includes/MPSUM_Admin_Core.php:224
163
- #: includes/MPSUM_Admin_Core.php:234 includes/MPSUM_Admin_Core.php:262
164
- #: includes/MPSUM_Admin_Core.php:270 includes/MPSUM_Admin_Dashboard.php:99
165
- #: includes/MPSUM_Admin_Dashboard.php:114
166
- #: includes/MPSUM_Admin_Dashboard.php:129
167
- #: includes/MPSUM_Admin_Dashboard.php:144
168
- #: includes/MPSUM_Admin_Dashboard.php:175
169
- #: includes/MPSUM_Admin_Dashboard.php:183
170
- #: includes/MPSUM_Admin_Dashboard.php:192
171
- #: includes/MPSUM_Admin_Dashboard.php:200
172
- #: includes/MPSUM_Admin_Dashboard.php:210
173
- #: includes/MPSUM_Admin_Dashboard.php:311
174
- #: includes/MPSUM_Admin_Dashboard.php:355
175
- #: includes/MPSUM_Admin_Dashboard.php:418
176
- #: includes/MPSUM_Admin_Dashboard.php:481
177
- msgid "Disabled"
178
- msgstr "Deaktiviert"
179
-
180
- #: includes/MPSUM_Admin_Core.php:150
181
- msgid "If this option is disabled, this will override all settings."
182
- msgstr ""
183
- "Wird diese Einstellung deaktiviert, überschreibt dies alle übrigen "
184
- "Einstellungen."
185
-
186
- #: includes/MPSUM_Admin_Core.php:154 includes/MPSUM_Admin_Dashboard.php:88
187
- msgid "WordPress Core Updates"
188
- msgstr "WordPress Core-Aktualisierungen"
189
-
190
- #: includes/MPSUM_Admin_Core.php:158
191
- msgid "Prevents WordPress from showing it needs to be updated."
192
- msgstr "Hält WordPress davon ab, notwendige Aktualisierungen anzuzeigen."
193
-
194
- #: includes/MPSUM_Admin_Core.php:162 includes/MPSUM_Admin_Dashboard.php:103
195
- msgid "All Plugin Updates"
196
- msgstr "Aktualisierung aller Plugins"
197
-
198
- #: includes/MPSUM_Admin_Core.php:169 includes/MPSUM_Admin_Dashboard.php:118
199
- msgid "All Theme Updates"
200
- msgstr "Aktualisierung aller Themes"
201
-
202
- #: includes/MPSUM_Admin_Core.php:176 includes/MPSUM_Admin_Dashboard.php:133
203
- msgid "All Translation Updates"
204
- msgstr "Aktualisierung aller Übersetzungen"
205
-
206
- #: includes/MPSUM_Admin_Core.php:183 includes/MPSUM_Admin_Dashboard.php:151
207
- msgid "Automatic Updates"
208
- msgstr "Automatische Aktualisierungen"
209
-
210
- #: includes/MPSUM_Admin_Core.php:184
211
- msgid ""
212
- "These options will enable or disable automatic updates (background updates) "
213
- "of certain parts of WordPress."
214
- msgstr ""
215
- "Diese Einstellungen aktivieren oder deaktivieren automatische "
216
- "Aktualisierungen (Hintergrundaktulisierungen) bestimmter Teile von WordPress."
217
-
218
- #: includes/MPSUM_Admin_Core.php:187 includes/MPSUM_Admin_Dashboard.php:162
219
- msgid "Major Releases"
220
- msgstr "Hauptversion"
221
-
222
- #: includes/MPSUM_Admin_Core.php:191
223
- msgid "Automatically update to major releases (e.g., 4.1, 4.2, 4.3)."
224
- msgstr "Automatisch Hauptversionen aktualisieren (z.B. 4.1, 4.2, 4.3)."
225
-
226
- #: includes/MPSUM_Admin_Core.php:195 includes/MPSUM_Admin_Dashboard.php:170
227
- msgid "Minor Releases"
228
- msgstr "Nebenversion"
229
-
230
- #: includes/MPSUM_Admin_Core.php:199
231
- msgid "Automatically update to minor releases (e.g., 4.1.1, 4.1.2, 4.1.3)."
232
- msgstr "Automatisch Nebenversionen aktualisieren (z.B. 4.1.1, 4.1.2, 4.1.3)."
233
-
234
- #: includes/MPSUM_Admin_Core.php:203 includes/MPSUM_Admin_Dashboard.php:179
235
- msgid "Development Updates"
236
- msgstr "Entwicklungs-Aktualisierungen"
237
-
238
- #: includes/MPSUM_Admin_Core.php:207
239
- msgid "Update automatically to Bleeding Edge releases."
240
- msgstr "Automatisch auf beta-Versionen aktualisieren."
241
-
242
- #: includes/MPSUM_Admin_Core.php:211 includes/MPSUM_Admin_Dashboard.php:196
243
- msgid "Automatic Plugin Updates"
244
- msgstr "Automatische Plugin-Aktualisierungen"
245
-
246
- #: includes/MPSUM_Admin_Core.php:215 includes/MPSUM_Admin_Core.php:225
247
- #: includes/MPSUM_Admin_Dashboard.php:201
248
- #: includes/MPSUM_Admin_Dashboard.php:211
249
- msgid "Default"
250
- msgstr "Standard"
251
-
252
- #: includes/MPSUM_Admin_Core.php:216 includes/MPSUM_Admin_Core.php:226
253
- #: includes/MPSUM_Admin_Dashboard.php:202
254
- #: includes/MPSUM_Admin_Dashboard.php:212
255
- msgid "Select Individually"
256
- msgstr "Individuelle Auswahl"
257
-
258
- #: includes/MPSUM_Admin_Core.php:217
259
- msgid ""
260
- "Automatically update your plugins. Select always on, always off, the "
261
- "WordPress default, or select plugins individually."
262
- msgstr ""
263
- "Aktualisiere deine Plugins automatisch. Wähle aus immer an, immer aus, "
264
- "WordPress-Standard oder wähle Plugins individuell."
265
-
266
- #: includes/MPSUM_Admin_Core.php:221 includes/MPSUM_Admin_Dashboard.php:206
267
- msgid "Automatic Theme Updates"
268
- msgstr "Automatische Theme-Updates"
269
-
270
- #: includes/MPSUM_Admin_Core.php:227
271
- msgid ""
272
- "Automatically update your themes. Select always on, always off, the "
273
- "WordPress default, or select themes individually."
274
- msgstr ""
275
- "Aktualisiere deine Plugins automatisch. Wähle immer an, immer aus, WordPress-"
276
- "Standard oder wähle Themes individuell."
277
-
278
- #: includes/MPSUM_Admin_Core.php:231 includes/MPSUM_Admin_Dashboard.php:187
279
- msgid "Translation Updates"
280
- msgstr "Aktualisierung der Übersetzungen"
281
-
282
- #: includes/MPSUM_Admin_Core.php:235
283
- msgid "Automatically update your translations."
284
- msgstr "Aktualisiere deine Übersetzungen automatisch."
285
-
286
- #: includes/MPSUM_Admin_Core.php:239
287
- msgid "Notifications"
288
- msgstr "Benachrichtigung"
289
-
290
- #: includes/MPSUM_Admin_Core.php:242 includes/MPSUM_Admin_Dashboard.php:221
291
- msgid "Core E-mails"
292
- msgstr "Core E-Mails"
293
-
294
- #: includes/MPSUM_Admin_Core.php:245
295
- msgid "Core Update Emails"
296
- msgstr "Core Aktualisierungs-E-Mails"
297
-
298
- #: includes/MPSUM_Admin_Core.php:247 includes/MPSUM_Admin_Dashboard.php:236
299
- msgid "Core Plugin Emails"
300
- msgstr "Core Plugin-E-Mails"
301
-
302
- #: includes/MPSUM_Admin_Core.php:249 includes/MPSUM_Admin_Dashboard.php:251
303
- msgid "Core Theme Emails"
304
- msgstr "Core Theme-E-Mails"
305
-
306
- #: includes/MPSUM_Admin_Core.php:251 includes/MPSUM_Admin_Dashboard.php:266
307
- msgid "Core Translation Emails"
308
- msgstr "Core Übersetzungs-E-Mails"
309
-
310
- #: includes/MPSUM_Admin_Core.php:252
311
- msgid ""
312
- "Disable e-mails that are sent when your site has been upgraded "
313
- "automatically. These will not be functional until WordPress 4.4."
314
- msgstr ""
315
- "Versand von E-Mails nach automatischer Aktualisierung deiner Website "
316
- "abschalten. Funktioniert erst ab WordPress 4.4."
317
-
318
- #: includes/MPSUM_Admin_Core.php:256
319
- msgid "Miscellaneous"
320
- msgstr "Verschiedenes"
321
-
322
- #: includes/MPSUM_Admin_Core.php:259
323
- msgid "Browser Nag"
324
- msgstr "Browser-Hinweis"
325
-
326
- #: includes/MPSUM_Admin_Core.php:263
327
- msgid "Removes the browser nag for people using older browsers."
328
- msgstr "Entfernt den Hinweis bei Verwendung älterer Browser."
329
-
330
- #: includes/MPSUM_Admin_Core.php:267
331
- msgid "WordPress Version in Footer"
332
- msgstr "WordPress-Version in der Fußzeile"
333
-
334
- #: includes/MPSUM_Admin_Core.php:271
335
- msgid "Removes the WordPress version in the footer."
336
- msgstr "Entfernt die Anzeige der WordPress-Version in der Fußzeile."
337
-
338
- #: includes/MPSUM_Admin_Core.php:279
339
- msgid "Save Changes"
340
- msgstr "Änderungen speichern"
341
-
342
- #: includes/MPSUM_Admin_Core.php:281
343
- msgid "Reset to Defaults"
344
- msgstr "Zurücksetzen"
345
-
346
- #: includes/MPSUM_Admin_Dashboard.php:67
347
- msgid "WordPress Updates"
348
- msgstr "WordPress-Aktualisierungen"
349
-
350
- #: includes/MPSUM_Admin_Dashboard.php:218
351
- msgid "WordPress Notifications"
352
- msgstr "WordPress-Benachrichtigungen"
353
-
354
- #: includes/MPSUM_Admin_Dashboard.php:278
355
- msgid "Plugin and Theme Updates"
356
- msgstr "Plugin- und Theme-Aktualisierungen"
357
-
358
- #: includes/MPSUM_Admin_Dashboard.php:280
359
- #: includes/MPSUM_Admin_Dashboard.php:378
360
- msgid "Plugin Updates"
361
- msgstr "Plugin-Aktualisierungen"
362
-
363
- #: includes/MPSUM_Admin_Dashboard.php:281
364
- #: includes/MPSUM_Admin_Dashboard.php:379
365
- msgid "Theme Updates"
366
- msgstr "Theme-Aktualisierungen"
367
-
368
- #: includes/MPSUM_Admin_Dashboard.php:320 includes/MPSUM_Admin_Plugins.php:260
369
- msgid "All plugin updates have been disabled."
370
- msgstr "Alle Plugin-Aktualisierungen wurden deaktiviert."
371
-
372
- #: includes/MPSUM_Admin_Dashboard.php:364 includes/MPSUM_Admin_Themes.php:221
373
- msgid "All theme updates have been disabled."
374
- msgstr "Alle Theme-Aktualisierungen wurden deaktiviert."
375
-
376
- #: includes/MPSUM_Admin_Dashboard.php:376
377
- msgid "Plugin and Theme Automatic Updates"
378
- msgstr "Automatics Plugin- und Theme-Aktualisierungen"
379
-
380
- #: includes/MPSUM_Admin_Dashboard.php:390
381
- #: includes/MPSUM_Admin_Dashboard.php:447
382
- msgid "WordPress defaults control which updates are automatic or not."
383
- msgstr ""
384
- "WordPress-Vorgaben bestimmen, welche Aktualisierungen automtisch vorgenommen "
385
- "werden."
386
-
387
- #: includes/MPSUM_Admin_Dashboard.php:393
388
- msgid "Automatic updates are on for all plugins"
389
- msgstr "Automatische Aktualisierungen sind für alle Plugins aktiviert"
390
-
391
- #: includes/MPSUM_Admin_Dashboard.php:396
392
- msgid "Automatic updates are disabled for all plugins"
393
- msgstr "Automatische Aktualisierungen sind für alle Plugins deaktiviert"
394
-
395
- #: includes/MPSUM_Admin_Dashboard.php:450
396
- msgid "Automatic updates are on for all themes"
397
- msgstr "Automatische Aktualisierungen sind für alle Themes aktiviert"
398
-
399
- #: includes/MPSUM_Admin_Dashboard.php:453
400
- msgid "Automatic updates are disabled for all themes"
401
- msgstr "Automatische Aktualisierungen sind für alle Themes deaktiviert"
402
-
403
- #: includes/MPSUM_Admin_Help.php:27
404
- msgid ""
405
- "This is the Easy Updates Manager settings help tab. In here you will find "
406
- "helpful information on what Easy Updates Manager does and how to use it."
407
- msgstr ""
408
- "Dies ist der Hilfe-Tab zu den Einstellungen des Easy Updates Manager. Hier "
409
- "findest du hilfreiche Informationen darüber, was der Easy Updates Manager "
410
- "tut und wie er verwendet wird."
411
-
412
- #: includes/MPSUM_Admin_Help.php:29
413
- msgid "Please Note!"
414
- msgstr "Bitte beachten!"
415
-
416
- #: includes/MPSUM_Admin_Help.php:29
417
- msgid ""
418
- "If either your WordPress core, theme, or plugins get too out of date, you "
419
- "may run into compatibility problems. Check the capability tab for more "
420
- "information."
421
- msgstr ""
422
- "Wenn deine WordPress-Coredateien, Theme oder Plugins zu veraltet sind, "
423
- "können Kompatibilitätsprobleme entstehen. Sieh im Tab Kompatibilität nach, "
424
- "um mehr zu erfahren."
425
-
426
- #: includes/MPSUM_Admin_Help.php:31
427
- msgid "Please see our Wiki for documentation and videos."
428
- msgstr "Dokumentation und Videos findest du in unserem Wiki."
429
-
430
- #: includes/MPSUM_Admin_Help.php:34
431
- msgid "Our Website"
432
- msgstr "Unsere Website"
433
-
434
- #: includes/MPSUM_Admin_Help.php:35
435
- msgid "Support on WordPress"
436
- msgstr "Support für WordPress"
437
-
438
- #: includes/MPSUM_Admin_Help.php:36
439
- msgid "GitHub Repository"
440
- msgstr "GitHub Repository"
441
-
442
- #: includes/MPSUM_Admin_Help.php:37
443
- msgid "Official Documentation"
444
- msgstr "Offizielle Dokumentation"
445
-
446
- #: includes/MPSUM_Admin_Help.php:50
447
- msgid "You will see four tabs where you can configure the update options."
448
- msgstr ""
449
- "Du siehst vier Tabs, in denen du die Aktualisierung-Einstellungen "
450
- "konfigurieren kannst."
451
-
452
- #: includes/MPSUM_Admin_Help.php:51
453
- msgid ""
454
- "Use this screen to finely tune which updates and automatic updates you would "
455
- "like to see."
456
- msgstr ""
457
- "Benutze diesen Bildschirm für detaillierte Einstellungen zu gewünschten "
458
- "Aktualisierungen und automatischen Aktualisierungen."
459
-
460
- #: includes/MPSUM_Admin_Help.php:52
461
- msgid ""
462
- "If plugin updates are enabled and/or automatic updates for plugins are "
463
- "enabled, you can configure which plugins will receive updates and/or "
464
- "automatic updates."
465
- msgstr ""
466
- "Wenn Plugin-Aktualisierungen und/oder automatische Plugin-Aktualisierungen "
467
- "aktiviert wurden, kannst du einstellen, welche Plugins aktualisiert und/oder "
468
- "automatisch aktualisiert werden."
469
-
470
- #: includes/MPSUM_Admin_Help.php:53
471
- msgid ""
472
- "If theme updates are enabled and/or automatic updates for themes are "
473
- "enabled, you can configure which themes will receive updates and/or "
474
- "automatic updates."
475
- msgstr ""
476
- "Wenn Theme-Aktualisierungen und/oder automatische Theme-Aktualisierungen "
477
- "aktiviert wurden, kannst du einstellen, welche Themes aktualisiert und/oder "
478
- "automatisch aktualisiert werden."
479
-
480
- #: includes/MPSUM_Admin_Help.php:54
481
- msgid ""
482
- "Reset all options or allow certain users to see all updates regardless of "
483
- "what settings you have set."
484
- msgstr ""
485
- "Setze alle Einstellungen zurück oder erlaube bestimmten Anwendern, "
486
- "unabhängig von deinen Einstellungen Aktualisierungen zu sehen."
487
-
488
- #: includes/MPSUM_Admin_Help.php:79
489
- msgid "Contributors:"
490
- msgstr "Mitwirkende:"
491
-
492
- #: includes/MPSUM_Admin_Help.php:94
493
- msgid ""
494
- "WordPress encourages you to update your plugins, themes, and core to make "
495
- "sure that there are no bugs. Even though you most likely want to disable all "
496
- "the updates and never think about updating again, you should still consider "
497
- "updating every once in a while to avoid major bugs and errors on your "
498
- "WordPress website."
499
- msgstr ""
500
- "WordPress empfiehlt, dass du deine Plugins, Themes und Core-Dateien immer "
501
- "aktuell hältst, um Programmfehler auszuschließen. Auch wenn du am liebsten "
502
- "alle Aktualisierungen abschalten und dich nie wieder damit beschäftigen "
503
- "möchtest, solltest du hin und wieder über eine Aktualisierung nachdenken, um "
504
- "gravierende Fehler und Software-Bugs in deiner WordPress-Website zu "
505
- "vermeiden. "
506
-
507
- #: includes/MPSUM_Admin_Help.php:95
508
- msgid ""
509
- "This plugin is tested with the most recent versions of WordPress to ensure "
510
- "that there are no major issues."
511
- msgstr ""
512
- "Dieses Plugin wurde darauf getestet, dass keine gravierenden Probleme "
513
- "bestehen."
514
-
515
- #: includes/MPSUM_Admin_Help.php:100
516
- msgid "Overview"
517
- msgstr "Überblick"
518
-
519
- #: includes/MPSUM_Admin_Help.php:106
520
- msgid "Navigation"
521
- msgstr "Tabs"
522
-
523
- #: includes/MPSUM_Admin_Help.php:112
524
- msgid "Documentation"
525
- msgstr "Dokumentation"
526
-
527
- #: includes/MPSUM_Admin_Help.php:118
528
- msgid "Capability"
529
- msgstr "Kompatibilität"
530
-
531
- #: includes/MPSUM_Admin_Help.php:124
532
- msgid "Troubleshooting"
533
- msgstr "Fehlerbehebung"
534
-
535
- #: includes/MPSUM_Admin_Plugins.php:128 includes/MPSUM_Admin_Themes.php:251
536
- #: includes/MPSUM_Plugins_List_Table.php:248
537
- #: includes/MPSUM_Themes_List_Table.php:258
538
- msgid "Allow Updates"
539
- msgstr "Aktualisierungen erlauben"
540
-
541
- #: includes/MPSUM_Admin_Plugins.php:132 includes/MPSUM_Admin_Themes.php:256
542
- #: includes/MPSUM_Plugins_List_Table.php:249
543
- #: includes/MPSUM_Themes_List_Table.php:259
544
- msgid "Disallow Updates"
545
- msgstr "Aktualisierungen verbieten"
546
-
547
- #: includes/MPSUM_Admin_Plugins.php:141 includes/MPSUM_Admin_Themes.php:265
548
- #: includes/MPSUM_Plugins_List_Table.php:253
549
- #: includes/MPSUM_Themes_List_Table.php:263
550
- msgid "Disallow Automatic Updates"
551
- msgstr "Automatische Aktualisierungen verbieten"
552
-
553
- #: includes/MPSUM_Admin_Plugins.php:145 includes/MPSUM_Admin_Themes.php:269
554
- msgid "Enable Automatic Updates"
555
- msgstr "Automatische Aktualisierungen aktivieren"
556
-
557
- #: includes/MPSUM_Admin_Plugins.php:231 includes/MPSUM_Admin_Themes.php:191
558
- msgid "Settings have been updated."
559
- msgstr "Einstellungen wurden aktualisiert."
560
-
561
- #: includes/MPSUM_Admin_Plugins.php:234
562
- msgid "The selected plugins have had automatic updates enabled."
563
- msgstr ""
564
- "Für die ausgewählten Plugins wurde eine automatische Aktualisierung "
565
- "aktiviert."
566
-
567
- #: includes/MPSUM_Admin_Plugins.php:236
568
- msgid "The selected plugins have had automatic updates disabled."
569
- msgstr ""
570
- "Für die ausgewählten Plugins wurde eine automatische Aktualisierung "
571
- "deaktiviert."
572
-
573
- #: includes/MPSUM_Admin_Plugins.php:238
574
- msgid "The selected plugin updates have been disabled."
575
- msgstr "Die Aktivierung ausgewählter Plugins wurde deaktiviert."
576
-
577
- #: includes/MPSUM_Admin_Plugins.php:240
578
- msgid "The selected plugin updates have been enabled."
579
- msgstr "Die Aktualisierung ausgewählter Plugins wurde aktiviert."
580
-
581
- #: includes/MPSUM_Admin_Plugins.php:256
582
- msgid "Plugin Update Options"
583
- msgstr "Optionen zur Plugin-Aktualisierung"
584
-
585
- #: includes/MPSUM_Admin_Themes.php:193
586
- msgid "The selected themes have had automatic updates enabled."
587
- msgstr ""
588
- "Für die ausgewählten Themes wurde eine automatische Aktualisierung aktiviert."
589
-
590
- #: includes/MPSUM_Admin_Themes.php:195
591
- msgid "The selected themes have had automatic updates disabled."
592
- msgstr ""
593
- "Für die ausgewählten Themes wurde eine automatische Aktualisierung "
594
- "deaktiviert."
595
-
596
- #: includes/MPSUM_Admin_Themes.php:197
597
- msgid "The selected theme updates have been disabled."
598
- msgstr "Die Aktualisierung ausgewählter Themes wurde deaktiviert."
599
-
600
- #: includes/MPSUM_Admin_Themes.php:199
601
- msgid "The selected theme updates have been enabled."
602
- msgstr "Die Aktualisierung ausgewählter Themes wurde aktiviert."
603
-
604
- #: includes/MPSUM_Admin_Themes.php:216
605
- msgid "Theme Update Options"
606
- msgstr "Optionen zur Theme-Aktualisierung"
607
-
608
- #: includes/MPSUM_List_Table.php:143
609
- msgid "List View"
610
- msgstr "Listenansicht"
611
-
612
- #: includes/MPSUM_List_Table.php:144
613
- msgid "Excerpt View"
614
- msgstr "Auszugansicht"
615
-
616
- #: includes/MPSUM_List_Table.php:313
617
- msgid "No items found."
618
- msgstr "Keine Elemente gefunden."
619
-
620
- #: includes/MPSUM_List_Table.php:439
621
- msgid "Select bulk action"
622
- msgstr "Aktion wählen"
623
-
624
- #: includes/MPSUM_List_Table.php:441
625
- msgid "Bulk Actions"
626
- msgstr "Aktionen"
627
-
628
- #: includes/MPSUM_List_Table.php:451
629
- msgid "Apply"
630
- msgstr "Anwenden"
631
-
632
- #: includes/MPSUM_List_Table.php:501
633
- msgid "Show more details"
634
- msgstr "Details anzeigen"
635
-
636
- #: includes/MPSUM_List_Table.php:556
637
- msgid "Filter by date"
638
- msgstr "Nach Datum filtern"
639
-
640
- #: includes/MPSUM_List_Table.php:558
641
- msgid "All dates"
642
- msgstr "Alle Daten anzeigen"
643
-
644
- #: includes/MPSUM_List_Table.php:571
645
- #, php-format
646
- msgid "%1$s %2$d"
647
- msgstr "%1$s %2$d"
648
-
649
- #: includes/MPSUM_List_Table.php:623
650
- #, php-format
651
- msgid "%s comment"
652
- msgid_plural "%s comments"
653
- msgstr[0] "%s Kommentar"
654
- msgstr[1] "%s Kommentare"
655
-
656
- #: includes/MPSUM_List_Table.php:624
657
- #, php-format
658
- msgid "%s approved comment"
659
- msgid_plural "%s approved comments"
660
- msgstr[0] "%s genehmigter Kommentar"
661
- msgstr[1] "%s genehmigte Kommentare"
662
-
663
- #: includes/MPSUM_List_Table.php:625
664
- #, php-format
665
- msgid "%s pending comment"
666
- msgid_plural "%s pending comments"
667
- msgstr[0] "%s ausstehender Kommentar"
668
- msgstr[1] "%s ausstehende Kommentare"
669
-
670
- #: includes/MPSUM_List_Table.php:630 includes/MPSUM_List_Table.php:642
671
- msgid "No comments"
672
- msgstr "Keine Kommentare"
673
-
674
- #: includes/MPSUM_List_Table.php:642
675
- msgid "No approved comments"
676
- msgstr "Keine genehmigten Kommentare"
677
-
678
- #: includes/MPSUM_List_Table.php:723 includes/MPSUM_List_Table.php:1287
679
- #, php-format
680
- msgid "%s item"
681
- msgid_plural "%s items"
682
- msgstr[0] "%s Element"
683
- msgstr[1] "%s Elemente"
684
-
685
- #: includes/MPSUM_List_Table.php:758
686
- msgid "First page"
687
- msgstr "Erste Seite"
688
-
689
- #: includes/MPSUM_List_Table.php:768
690
- msgid "Previous page"
691
- msgstr "Vorherige Seite"
692
-
693
- #: includes/MPSUM_List_Table.php:775 includes/MPSUM_List_Table.php:778
694
- msgid "Current Page"
695
- msgstr "Aktuelle Seite"
696
-
697
- #: includes/MPSUM_List_Table.php:784
698
- #, php-format
699
- msgctxt "paging"
700
- msgid "%1$s of %2$s"
701
- msgstr "%1$s von %2$s"
702
-
703
- #: includes/MPSUM_List_Table.php:791
704
- msgid "Next page"
705
- msgstr "Nächste Seite"
706
-
707
- #: includes/MPSUM_List_Table.php:801
708
- msgid "Last page"
709
- msgstr "Letzte Seite"
710
-
711
- #: includes/MPSUM_List_Table.php:1011
712
- msgid "Select All"
713
- msgstr "Alle auswählen"
714
-
715
- #: includes/MPSUM_Plugins_List_Table.php:184
716
- msgid "No plugins found."
717
- msgstr "Keine Plugins gefunden."
718
-
719
- #: includes/MPSUM_Plugins_List_Table.php:186
720
- msgid "You do not appear to have any plugins available at this time."
721
- msgstr ""
722
- "Es sieht nicht so aus, als stünden dir im Moment Plugins zur Verfügung."
723
-
724
- #: includes/MPSUM_Plugins_List_Table.php:194
725
- msgid "Plugin"
726
- msgstr "Plugin"
727
-
728
- #: includes/MPSUM_Plugins_List_Table.php:195
729
- #: includes/MPSUM_Themes_List_Table.php:204
730
- msgid "Description"
731
- msgstr "Beschreibung"
732
-
733
- #: includes/MPSUM_Plugins_List_Table.php:213
734
- #, php-format
735
- msgctxt "plugins"
736
- msgid "All <span class=\"count\">(%s)</span>"
737
- msgid_plural "All <span class=\"count\">(%s)</span>"
738
- msgstr[0] "Alle <span class=\"count\">(%s)</span>"
739
- msgstr[1] "Alle <span class=\"count\">(%s)</span>"
740
-
741
- #: includes/MPSUM_Plugins_List_Table.php:216
742
- #: includes/MPSUM_Themes_List_Table.php:228
743
- #, php-format
744
- msgid "Updates Enabled <span class=\"count\">(%s)</span>"
745
- msgid_plural "Updates Enabled <span class=\"count\">(%s)</span>"
746
- msgstr[0] "Aktualisierungen aktiviert <span class=\"count\">(%s)</span>"
747
- msgstr[1] "Aktualisierungen aktiviert <span class=\"count\">(%s)</span>"
748
-
749
- #: includes/MPSUM_Plugins_List_Table.php:219
750
- #: includes/MPSUM_Themes_List_Table.php:225
751
- #, php-format
752
- msgid "Updates Disabled <span class=\"count\">(%s)</span>"
753
- msgid_plural "Updates Disabled <span class=\"count\">(%s)</span>"
754
- msgstr[0] "Aktualisierungen deaktiviert <span class=\"count\">(%s)</span>"
755
- msgstr[1] "Aktualisierungen deaktiviert <span class=\"count\">(%s)</span>"
756
-
757
- #: includes/MPSUM_Plugins_List_Table.php:222
758
- #: includes/MPSUM_Themes_List_Table.php:231
759
- #, php-format
760
- msgid "Automatic Updates <span class=\"count\">(%s)</span>"
761
- msgid_plural "Automatic Updates <span class=\"count\">(%s)</span>"
762
- msgstr[0] "Automatische Aktualisierungen <span class=\"count\">(%s)</span>"
763
- msgstr[1] "Automatische Aktualisierungen <span class=\"count\">(%s)</span>"
764
-
765
- #: includes/MPSUM_Plugins_List_Table.php:252
766
- #: includes/MPSUM_Themes_List_Table.php:262
767
- msgid "Allow Automatic Updates"
768
- msgstr "Automatische Aktualisierungen erlauben"
769
-
770
- #: includes/MPSUM_Plugins_List_Table.php:287
771
- msgid "Clear List"
772
- msgstr "Liste löschen"
773
-
774
- #: includes/MPSUM_Plugins_List_Table.php:289
775
- #, php-format
776
- msgid "Files in the <code>%s</code> directory are executed automatically."
777
- msgstr "Dateien im Verzeichnis <code>%s</code> werden automatisch ausgeführt."
778
-
779
- #: includes/MPSUM_Plugins_List_Table.php:291
780
- #, php-format
781
- msgid ""
782
- "Drop-ins are advanced plugins in the <code>%s</code> directory that replace "
783
- "WordPress functionality when present."
784
- msgstr ""
785
- "Drop-ins sind weiterentwickelte Plugins im Verzeichnis <code>%s</code>, die "
786
- "WordPress-Funktionalität ersetzen."
787
-
788
- #: includes/MPSUM_Plugins_List_Table.php:344
789
- #, php-format
790
- msgid "Select %s"
791
- msgstr "Wähle %s"
792
-
793
- #: includes/MPSUM_Plugins_List_Table.php:376
794
- #: includes/MPSUM_Themes_List_Table.php:337
795
- #, php-format
796
- msgid "Version %s"
797
- msgstr "Version %s"
798
-
799
- #: includes/MPSUM_Plugins_List_Table.php:381
800
- #: includes/MPSUM_Themes_List_Table.php:339
801
- #, php-format
802
- msgid "By %s"
803
- msgstr "Von %s"
804
-
805
- #: includes/MPSUM_Plugins_List_Table.php:389
806
- #, php-format
807
- msgid "More information about %s"
808
- msgstr "Mehr Informationen zu %s"
809
-
810
- #: includes/MPSUM_Plugins_List_Table.php:391
811
- msgid "View details"
812
- msgstr "Details ansehen"
813
-
814
- #: includes/MPSUM_Plugins_List_Table.php:396
815
- msgid "Visit plugin site"
816
- msgstr "Besuche die Plugin-Website"
817
-
818
- #: includes/MPSUM_Themes_List_Table.php:193
819
- msgid "No themes found."
820
- msgstr "Keine Themes gefunden."
821
-
822
- #: includes/MPSUM_Themes_List_Table.php:195
823
- msgid "You do not appear to have any themes available at this time."
824
- msgstr "Es sieht nicht so aus, als stünden dir im Moment Themes zur Verfügung."
825
-
826
- #: includes/MPSUM_Themes_List_Table.php:203
827
- msgid "Theme"
828
- msgstr "Theme"
829
-
830
- #: includes/MPSUM_Themes_List_Table.php:222
831
- #, php-format
832
- msgctxt "themes"
833
- msgid "All <span class=\"count\">(%s)</span>"
834
- msgid_plural "All <span class=\"count\">(%s)</span>"
835
- msgstr[0] "Alle <span class=\"count\">(%s)</span>"
836
- msgstr[1] "Alle <span class=\"count\">(%s)</span>"
837
-
838
- #: includes/MPSUM_Themes_List_Table.php:299
839
- msgid "Select"
840
- msgstr "Auswählen"
841
-
842
- #: includes/MPSUM_Themes_List_Table.php:328
843
- msgid "Broken Theme:"
844
- msgstr "Defektes Theme:"
845
-
846
- #: includes/MPSUM_Themes_List_Table.php:342
847
- msgid "Visit theme homepage"
848
- msgstr "Besuche die Theme-Homepage"
849
-
850
- #: includes/MPSUM_Themes_List_Table.php:342
851
- msgid "Visit Theme Site"
852
- msgstr "Besuche die Theme-Website"
853
-
854
- #~ msgid "Core Update E-mails"
855
- #~ msgstr "E-Mails für Core-Aktualisierungen"
856
-
857
- #~ msgid ""
858
- #~ "Disable e-mails that are sent when your site has been upgraded "
859
- #~ "automatically."
860
- #~ msgstr ""
861
- #~ "Deaktiviere den Erhalt von E-Mails, nachdem deine Website automatisch "
862
- #~ "aktualisiert wurde."
863
-
864
- #~ msgid ""
865
- #~ "Manage and disable WordPress updates, including core, plugin, theme, and "
866
- #~ "automatic updates - Works with Multisite."
867
- #~ msgstr ""
868
- #~ "Verwalte und deaktiviere WordPress-Aktualisierungen, einschließlich Core, "
869
- #~ "Plugins, Themes und automatischen Aktualisierungen. Funktioniert auch bei "
870
- #~ "Multisite."
871
-
872
- #~ msgid "Update Options"
873
- #~ msgstr "Aktualisierungs-Optionen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/stops-core-theme-and-plugin-updates-de_DE_formal.mo DELETED
Binary file
languages/stops-core-theme-and-plugin-updates-de_DE_formal.po DELETED
@@ -1,876 +0,0 @@
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-09-28 00:56+0100\n"
6
- "PO-Revision-Date: 2015-09-28 01:33+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.1\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:172 includes/MPSUM_Admin.php:189
23
- msgid "Updates Options"
24
- msgstr "Aktualisierungs-Optionen"
25
-
26
- #: includes/MPSUM_Admin.php:208
27
- msgid "Manage Updates"
28
- msgstr "Aktualisierungen verwalten"
29
-
30
- #: includes/MPSUM_Admin.php:215
31
- msgid "Dashboard"
32
- msgstr "Dashboard"
33
-
34
- #: includes/MPSUM_Admin.php:221 includes/MPSUM_Admin_Help.php:51
35
- msgid "General"
36
- msgstr "Allgemein"
37
-
38
- #: includes/MPSUM_Admin.php:227 includes/MPSUM_Admin_Help.php:52
39
- msgid "Plugins"
40
- msgstr "Plugins"
41
-
42
- #: includes/MPSUM_Admin.php:233 includes/MPSUM_Admin_Help.php:53
43
- msgid "Themes"
44
- msgstr "Themes"
45
-
46
- #: includes/MPSUM_Admin.php:239 includes/MPSUM_Admin_Help.php:54
47
- msgid "Advanced"
48
- msgstr "Erweitert"
49
-
50
- #: includes/MPSUM_Admin.php:295
51
- msgid "Configure"
52
- msgstr "Konfigurieren"
53
-
54
- #: includes/MPSUM_Admin_Advanced.php:123
55
- msgid "The exclusion of users option has been updated."
56
- msgstr "Der Ausschluss von Benutzern Option wurde aktualisiert."
57
-
58
- #: includes/MPSUM_Admin_Advanced.php:126
59
- msgid "The plugin settings have now been reset."
60
- msgstr "Die Aktualisierung ausgewählter Plugins wurde aktiviert."
61
-
62
- #: includes/MPSUM_Admin_Advanced.php:129
63
- msgid ""
64
- "Force update checks have been initialized. Please check your site in 90 "
65
- "seconds, and refresh to test automatic updates."
66
- msgstr ""
67
- "Führen Sie diese Aktualisierung aus, warten Sie etwa 60 Sekunden und laden "
68
- "Sie dann neu, um automatische Aktualisierungen zu testen."
69
-
70
- #: includes/MPSUM_Admin_Advanced.php:132 includes/MPSUM_Admin_Core.php:134
71
- msgid "Options saved."
72
- msgstr "Einstellungen gespeichert."
73
-
74
- #: includes/MPSUM_Admin_Advanced.php:144
75
- msgid "Exclude Users"
76
- msgstr "Anwender ausschließen"
77
-
78
- #: includes/MPSUM_Admin_Advanced.php:145
79
- msgid ""
80
- "Select which users to be excluded from the settings of this plugin. Default "
81
- "WordPress behavior will be used."
82
- msgstr ""
83
- "Wählen Sie, welche Anwender von den Einstellungen dieses Plugins "
84
- "ausgeschlossen werden sollen. Das normale Verhalten von WordPress wird dann "
85
- "verwendet."
86
-
87
- #: includes/MPSUM_Admin_Advanced.php:146
88
- msgid ""
89
- "This option is useful if, for example, you would like to disable updates, "
90
- "but have a user account that can still update WordPress."
91
- msgstr ""
92
- "Diese Option ist zum Beispiel sinnvoll, wenn Sie Aktualisierungen abschalten "
93
- "möchten, aber gleichzeitig ein Anwender weiterhin WordPress aktualisieren "
94
- "können soll."
95
-
96
- #: includes/MPSUM_Admin_Advanced.php:149
97
- msgid "Users to be Excluded"
98
- msgstr "Anwender, die ausgeschlossen werden sollen"
99
-
100
- #: includes/MPSUM_Admin_Advanced.php:188
101
- msgid "Save Users"
102
- msgstr "Anwender speichern"
103
-
104
- #: includes/MPSUM_Admin_Advanced.php:193
105
- msgid "Reset Options"
106
- msgstr "Einstellungen zurücksetzen"
107
-
108
- #: includes/MPSUM_Admin_Advanced.php:194
109
- msgid ""
110
- "This will reset all options to as if you have just installed the plugin."
111
- msgstr ""
112
- "Hiermit werden alle Einstellungen so zurückgesetzt, als hätten Sie das "
113
- "Plugin gerade erst installiert."
114
-
115
- #: includes/MPSUM_Admin_Advanced.php:199
116
- msgid "Reset All Options"
117
- msgstr "Alle Einstellungen zurücksetzen"
118
-
119
- #: includes/MPSUM_Admin_Advanced.php:204
120
- msgid "Force Automatic Updates"
121
- msgstr "Automatische Aktualisierungen erzwingen"
122
-
123
- #: includes/MPSUM_Admin_Advanced.php:205
124
- msgid ""
125
- "This will attempt to force automatic updates. This is useful for debugging."
126
- msgstr ""
127
- "Es wird versucht, automatische Aktualisierungen zu erzwingen. Nützlich bei "
128
- "der Fehlersuche."
129
-
130
- #: includes/MPSUM_Admin_Advanced.php:210
131
- msgid "Force Updates"
132
- msgstr "Aktualisierungen erzwingen"
133
-
134
- #: includes/MPSUM_Admin_Core.php:143
135
- msgid "Global Settings"
136
- msgstr "Globale Einstellungen"
137
-
138
- #: includes/MPSUM_Admin_Core.php:146 includes/MPSUM_Admin_Dashboard.php:70
139
- msgid "All Updates"
140
- msgstr "Alle Aktualisierungen"
141
-
142
- #: includes/MPSUM_Admin_Core.php:148 includes/MPSUM_Admin_Core.php:156
143
- #: includes/MPSUM_Admin_Core.php:164 includes/MPSUM_Admin_Core.php:171
144
- #: includes/MPSUM_Admin_Core.php:178 includes/MPSUM_Admin_Core.php:189
145
- #: includes/MPSUM_Admin_Core.php:197 includes/MPSUM_Admin_Core.php:205
146
- #: includes/MPSUM_Admin_Core.php:213 includes/MPSUM_Admin_Core.php:223
147
- #: includes/MPSUM_Admin_Core.php:233 includes/MPSUM_Admin_Core.php:261
148
- #: includes/MPSUM_Admin_Core.php:269 includes/MPSUM_Admin_Dashboard.php:84
149
- #: includes/MPSUM_Admin_Dashboard.php:166
150
- #: includes/MPSUM_Admin_Dashboard.php:199
151
- #: includes/MPSUM_Admin_Dashboard.php:209
152
- #: includes/MPSUM_Admin_Dashboard.php:232
153
- #: includes/MPSUM_Admin_Dashboard.php:247
154
- #: includes/MPSUM_Admin_Dashboard.php:262
155
- #: includes/MPSUM_Admin_Dashboard.php:271
156
- msgid "Enabled"
157
- msgstr "Aktiviert"
158
-
159
- #: includes/MPSUM_Admin_Core.php:149 includes/MPSUM_Admin_Core.php:157
160
- #: includes/MPSUM_Admin_Core.php:165 includes/MPSUM_Admin_Core.php:172
161
- #: includes/MPSUM_Admin_Core.php:179 includes/MPSUM_Admin_Core.php:190
162
- #: includes/MPSUM_Admin_Core.php:198 includes/MPSUM_Admin_Core.php:206
163
- #: includes/MPSUM_Admin_Core.php:214 includes/MPSUM_Admin_Core.php:224
164
- #: includes/MPSUM_Admin_Core.php:234 includes/MPSUM_Admin_Core.php:262
165
- #: includes/MPSUM_Admin_Core.php:270 includes/MPSUM_Admin_Dashboard.php:99
166
- #: includes/MPSUM_Admin_Dashboard.php:114
167
- #: includes/MPSUM_Admin_Dashboard.php:129
168
- #: includes/MPSUM_Admin_Dashboard.php:144
169
- #: includes/MPSUM_Admin_Dashboard.php:175
170
- #: includes/MPSUM_Admin_Dashboard.php:183
171
- #: includes/MPSUM_Admin_Dashboard.php:192
172
- #: includes/MPSUM_Admin_Dashboard.php:200
173
- #: includes/MPSUM_Admin_Dashboard.php:210
174
- #: includes/MPSUM_Admin_Dashboard.php:311
175
- #: includes/MPSUM_Admin_Dashboard.php:355
176
- #: includes/MPSUM_Admin_Dashboard.php:418
177
- #: includes/MPSUM_Admin_Dashboard.php:481
178
- msgid "Disabled"
179
- msgstr "Deaktiviert"
180
-
181
- #: includes/MPSUM_Admin_Core.php:150
182
- msgid "If this option is disabled, this will override all settings."
183
- msgstr ""
184
- "Wird diese Einstellung deaktiviert, überschreibt dies alle übrigen "
185
- "Einstellungen."
186
-
187
- #: includes/MPSUM_Admin_Core.php:154 includes/MPSUM_Admin_Dashboard.php:88
188
- msgid "WordPress Core Updates"
189
- msgstr "WordPress Core-Aktualisierungen"
190
-
191
- #: includes/MPSUM_Admin_Core.php:158
192
- msgid "Prevents WordPress from showing it needs to be updated."
193
- msgstr "Hält WordPress davon ab, notwendige Aktualisierungen anzuzeigen."
194
-
195
- #: includes/MPSUM_Admin_Core.php:162 includes/MPSUM_Admin_Dashboard.php:103
196
- msgid "All Plugin Updates"
197
- msgstr "Aktualisierung aller Plugins"
198
-
199
- #: includes/MPSUM_Admin_Core.php:169 includes/MPSUM_Admin_Dashboard.php:118
200
- msgid "All Theme Updates"
201
- msgstr "Aktualisierung aller Themes"
202
-
203
- #: includes/MPSUM_Admin_Core.php:176 includes/MPSUM_Admin_Dashboard.php:133
204
- msgid "All Translation Updates"
205
- msgstr "Aktualisierung aller Übersetzungen"
206
-
207
- #: includes/MPSUM_Admin_Core.php:183 includes/MPSUM_Admin_Dashboard.php:151
208
- msgid "Automatic Updates"
209
- msgstr "Automatische Aktualisierungen"
210
-
211
- #: includes/MPSUM_Admin_Core.php:184
212
- msgid ""
213
- "These options will enable or disable automatic updates (background updates) "
214
- "of certain parts of WordPress."
215
- msgstr ""
216
- "Diese Einstellungen aktivieren oder deaktivieren automatische "
217
- "Aktualisierungen (Hintergrundaktulisierungen) bestimmter Teile von WordPress."
218
-
219
- #: includes/MPSUM_Admin_Core.php:187 includes/MPSUM_Admin_Dashboard.php:162
220
- msgid "Major Releases"
221
- msgstr "Hauptversion"
222
-
223
- #: includes/MPSUM_Admin_Core.php:191
224
- msgid "Automatically update to major releases (e.g., 4.1, 4.2, 4.3)."
225
- msgstr "Automatisch Hauptversionen aktualisieren (z.B. 4.1, 4.2, 4.3)."
226
-
227
- #: includes/MPSUM_Admin_Core.php:195 includes/MPSUM_Admin_Dashboard.php:170
228
- msgid "Minor Releases"
229
- msgstr "Nebenversion"
230
-
231
- #: includes/MPSUM_Admin_Core.php:199
232
- msgid "Automatically update to minor releases (e.g., 4.1.1, 4.1.2, 4.1.3)."
233
- msgstr "Automatisch Nebenversionen aktualisieren (z.B. 4.1.1, 4.1.2, 4.1.3)."
234
-
235
- #: includes/MPSUM_Admin_Core.php:203 includes/MPSUM_Admin_Dashboard.php:179
236
- msgid "Development Updates"
237
- msgstr "Entwicklungs-Aktualisierungen"
238
-
239
- #: includes/MPSUM_Admin_Core.php:207
240
- msgid "Update automatically to Bleeding Edge releases."
241
- msgstr "Automatisch auf beta-Versionen aktualisieren."
242
-
243
- #: includes/MPSUM_Admin_Core.php:211 includes/MPSUM_Admin_Dashboard.php:196
244
- msgid "Automatic Plugin Updates"
245
- msgstr "Automatische Plugin-Aktualisierungen"
246
-
247
- #: includes/MPSUM_Admin_Core.php:215 includes/MPSUM_Admin_Core.php:225
248
- #: includes/MPSUM_Admin_Dashboard.php:201
249
- #: includes/MPSUM_Admin_Dashboard.php:211
250
- msgid "Default"
251
- msgstr "Standard"
252
-
253
- #: includes/MPSUM_Admin_Core.php:216 includes/MPSUM_Admin_Core.php:226
254
- #: includes/MPSUM_Admin_Dashboard.php:202
255
- #: includes/MPSUM_Admin_Dashboard.php:212
256
- msgid "Select Individually"
257
- msgstr "Individuelle Auswahl"
258
-
259
- #: includes/MPSUM_Admin_Core.php:217
260
- msgid ""
261
- "Automatically update your plugins. Select always on, always off, the "
262
- "WordPress default, or select plugins individually."
263
- msgstr ""
264
- "Aktualisieren Sie ihre Plugins automatisch. Wählen Sie aus immer an, immer "
265
- "aus, WordPress-Standard oder wählen Sie Plugins individuell."
266
-
267
- #: includes/MPSUM_Admin_Core.php:221 includes/MPSUM_Admin_Dashboard.php:206
268
- msgid "Automatic Theme Updates"
269
- msgstr "Automatische Theme-Updates"
270
-
271
- #: includes/MPSUM_Admin_Core.php:227
272
- msgid ""
273
- "Automatically update your themes. Select always on, always off, the "
274
- "WordPress default, or select themes individually."
275
- msgstr ""
276
- "Aktualisieren Sie ihre Plugins automatisch. Wählen Sie immer an, immer aus, "
277
- "WordPress-Standard oder wählen Sie Themes individuell."
278
-
279
- #: includes/MPSUM_Admin_Core.php:231 includes/MPSUM_Admin_Dashboard.php:187
280
- msgid "Translation Updates"
281
- msgstr "Aktualisierung der Übersetzungen"
282
-
283
- #: includes/MPSUM_Admin_Core.php:235
284
- msgid "Automatically update your translations."
285
- msgstr "Aktualisieren Sie ihre Übersetzungen automatisch."
286
-
287
- #: includes/MPSUM_Admin_Core.php:239
288
- msgid "Notifications"
289
- msgstr "Benachrichtigung"
290
-
291
- #: includes/MPSUM_Admin_Core.php:242 includes/MPSUM_Admin_Dashboard.php:221
292
- msgid "Core E-mails"
293
- msgstr "Core E-Mails"
294
-
295
- #: includes/MPSUM_Admin_Core.php:245
296
- msgid "Core Update Emails"
297
- msgstr "Core Aktualisierungs-Emails"
298
-
299
- #: includes/MPSUM_Admin_Core.php:247 includes/MPSUM_Admin_Dashboard.php:236
300
- msgid "Core Plugin Emails"
301
- msgstr "Core Plugin-E-Mails"
302
-
303
- #: includes/MPSUM_Admin_Core.php:249 includes/MPSUM_Admin_Dashboard.php:251
304
- msgid "Core Theme Emails"
305
- msgstr "Core Theme-E-Mails"
306
-
307
- #: includes/MPSUM_Admin_Core.php:251 includes/MPSUM_Admin_Dashboard.php:266
308
- msgid "Core Translation Emails"
309
- msgstr "Core Übersetzungs-E-Mails"
310
-
311
- #: includes/MPSUM_Admin_Core.php:252
312
- msgid ""
313
- "Disable e-mails that are sent when your site has been upgraded "
314
- "automatically. These will not be functional until WordPress 4.4."
315
- msgstr ""
316
- "Versand von E-Mails nach automatischer Aktualisierung Ihrer Website "
317
- "abschalten. Funktioniert erst ab WordPress 4.4."
318
-
319
- #: includes/MPSUM_Admin_Core.php:256
320
- msgid "Miscellaneous"
321
- msgstr "Verschiedenes"
322
-
323
- #: includes/MPSUM_Admin_Core.php:259
324
- msgid "Browser Nag"
325
- msgstr "Browser-Hinweis"
326
-
327
- #: includes/MPSUM_Admin_Core.php:263
328
- msgid "Removes the browser nag for people using older browsers."
329
- msgstr "Entfernt den Hinweis bei Verwendung älterer Browser."
330
-
331
- #: includes/MPSUM_Admin_Core.php:267
332
- msgid "WordPress Version in Footer"
333
- msgstr "WordPress-Version in der Fußzeile"
334
-
335
- #: includes/MPSUM_Admin_Core.php:271
336
- msgid "Removes the WordPress version in the footer."
337
- msgstr "Entfernt die Anzeige der WordPress-Version in der Fußzeile."
338
-
339
- #: includes/MPSUM_Admin_Core.php:279
340
- msgid "Save Changes"
341
- msgstr "Änderungen speichern"
342
-
343
- #: includes/MPSUM_Admin_Core.php:281
344
- msgid "Reset to Defaults"
345
- msgstr "Zurücksetzen"
346
-
347
- #: includes/MPSUM_Admin_Dashboard.php:67
348
- msgid "WordPress Updates"
349
- msgstr "WordPress-Aktualisierungen"
350
-
351
- #: includes/MPSUM_Admin_Dashboard.php:218
352
- msgid "WordPress Notifications"
353
- msgstr "WordPress-Benachrichtigungen"
354
-
355
- #: includes/MPSUM_Admin_Dashboard.php:278
356
- msgid "Plugin and Theme Updates"
357
- msgstr "Plugin- und Theme-Aktualisierungen"
358
-
359
- #: includes/MPSUM_Admin_Dashboard.php:280
360
- #: includes/MPSUM_Admin_Dashboard.php:378
361
- msgid "Plugin Updates"
362
- msgstr "Plugin-Aktualisierungen"
363
-
364
- #: includes/MPSUM_Admin_Dashboard.php:281
365
- #: includes/MPSUM_Admin_Dashboard.php:379
366
- msgid "Theme Updates"
367
- msgstr "Theme-Aktualisierungen"
368
-
369
- #: includes/MPSUM_Admin_Dashboard.php:320 includes/MPSUM_Admin_Plugins.php:260
370
- msgid "All plugin updates have been disabled."
371
- msgstr "Alle Plugin-Aktualisierungen wurden deaktiviert."
372
-
373
- #: includes/MPSUM_Admin_Dashboard.php:364 includes/MPSUM_Admin_Themes.php:221
374
- msgid "All theme updates have been disabled."
375
- msgstr "Alle Theme-Aktualisierungen wurden deaktiviert."
376
-
377
- #: includes/MPSUM_Admin_Dashboard.php:376
378
- msgid "Plugin and Theme Automatic Updates"
379
- msgstr "Automatische Plugin- und Theme-Aktualisierungen"
380
-
381
- #: includes/MPSUM_Admin_Dashboard.php:390
382
- #: includes/MPSUM_Admin_Dashboard.php:447
383
- msgid "WordPress defaults control which updates are automatic or not."
384
- msgstr ""
385
- "WordPress-Vorgaben bestimmen, welche Aktualisierungen automtisch vorgenommen "
386
- "werden."
387
-
388
- #: includes/MPSUM_Admin_Dashboard.php:393
389
- msgid "Automatic updates are on for all plugins"
390
- msgstr "Automatische Aktualisierungen sind für alle Plugins aktiviert"
391
-
392
- #: includes/MPSUM_Admin_Dashboard.php:396
393
- msgid "Automatic updates are disabled for all plugins"
394
- msgstr "Automatische Aktualisierungen sind für alle Plugins deaktiviert"
395
-
396
- #: includes/MPSUM_Admin_Dashboard.php:450
397
- msgid "Automatic updates are on for all themes"
398
- msgstr "Automatische Aktualisierungen sind für alle Themes aktiviert"
399
-
400
- #: includes/MPSUM_Admin_Dashboard.php:453
401
- msgid "Automatic updates are disabled for all themes"
402
- msgstr "Automatische Aktualisierungen sind für alle Themes deaktiviert"
403
-
404
- #: includes/MPSUM_Admin_Help.php:27
405
- msgid ""
406
- "This is the Easy Updates Manager settings help tab. In here you will find "
407
- "helpful information on what Easy Updates Manager does and how to use it."
408
- msgstr ""
409
- "Dies ist der Hilfe-Tab zu den Einstellungen des Easy Updates Manager. Hier "
410
- "finden Sie hilfreiche Informationen darüber, was der Easy Updates Manager "
411
- "tut und wie er verwendet wird."
412
-
413
- #: includes/MPSUM_Admin_Help.php:29
414
- msgid "Please Note!"
415
- msgstr "Bitte beachten!"
416
-
417
- #: includes/MPSUM_Admin_Help.php:29
418
- msgid ""
419
- "If either your WordPress core, theme, or plugins get too out of date, you "
420
- "may run into compatibility problems. Check the capability tab for more "
421
- "information."
422
- msgstr ""
423
- "Wenn Ihre WordPress-Coredateien, Theme oder Plugins zu veraltet sind, können "
424
- "Kompatibilitätsprobleme entstehen. Sehen Sie im Tab Kompatibilität nach, um "
425
- "mehr zu erfahren."
426
-
427
- #: includes/MPSUM_Admin_Help.php:31
428
- msgid "Please see our Wiki for documentation and videos."
429
- msgstr "Dokumentation und Videos finden Sie in unserem Wiki."
430
-
431
- #: includes/MPSUM_Admin_Help.php:34
432
- msgid "Our Website"
433
- msgstr "Unsere Website"
434
-
435
- #: includes/MPSUM_Admin_Help.php:35
436
- msgid "Support on WordPress"
437
- msgstr "Support für WordPress"
438
-
439
- #: includes/MPSUM_Admin_Help.php:36
440
- msgid "GitHub Repository"
441
- msgstr "GitHub Repository"
442
-
443
- #: includes/MPSUM_Admin_Help.php:37
444
- msgid "Official Documentation"
445
- msgstr "Offizielle Dokumentation"
446
-
447
- #: includes/MPSUM_Admin_Help.php:50
448
- msgid "You will see four tabs where you can configure the update options."
449
- msgstr ""
450
- "Sie sehen vier Tabs, in denen Sie die Aktualisierung-Einstellungen "
451
- "konfigurieren können."
452
-
453
- #: includes/MPSUM_Admin_Help.php:51
454
- msgid ""
455
- "Use this screen to finely tune which updates and automatic updates you would "
456
- "like to see."
457
- msgstr ""
458
- "Benutzen Sie diesen Bildschirm für detaillierte Einstellungen zu gewünschten "
459
- "Aktualisierungen und automatischen Aktualisierungen."
460
-
461
- #: includes/MPSUM_Admin_Help.php:52
462
- msgid ""
463
- "If plugin updates are enabled and/or automatic updates for plugins are "
464
- "enabled, you can configure which plugins will receive updates and/or "
465
- "automatic updates."
466
- msgstr ""
467
- "Wenn Plugin-Aktualisierungen und/oder automatische Plugin-Aktualisierungen "
468
- "aktiviert wurden, können Sie einstellen, welche Plugins aktualisiert und/"
469
- "oder automatisch aktualisiert werden."
470
-
471
- #: includes/MPSUM_Admin_Help.php:53
472
- msgid ""
473
- "If theme updates are enabled and/or automatic updates for themes are "
474
- "enabled, you can configure which themes will receive updates and/or "
475
- "automatic updates."
476
- msgstr ""
477
- "Wenn Theme-Aktualisierungen und/oder automatische Theme-Aktualisierungen "
478
- "aktiviert wurden, können Sie einstellen, welche Themes aktualisiert und/oder "
479
- "automatisch aktualisiert werden."
480
-
481
- #: includes/MPSUM_Admin_Help.php:54
482
- msgid ""
483
- "Reset all options or allow certain users to see all updates regardless of "
484
- "what settings you have set."
485
- msgstr ""
486
- "Setzen Sie alle Einstellungen zurück oder erlauben Sie bestimmten Anwendern, "
487
- "unabhängig von ihren Einstellungen Aktualisierungen zu sehen."
488
-
489
- #: includes/MPSUM_Admin_Help.php:79
490
- msgid "Contributors:"
491
- msgstr "Mitwirkende:"
492
-
493
- #: includes/MPSUM_Admin_Help.php:94
494
- msgid ""
495
- "WordPress encourages you to update your plugins, themes, and core to make "
496
- "sure that there are no bugs. Even though you most likely want to disable all "
497
- "the updates and never think about updating again, you should still consider "
498
- "updating every once in a while to avoid major bugs and errors on your "
499
- "WordPress website."
500
- msgstr ""
501
- "WordPress empfiehlt, dass Sie ihre Plugins, Themes und Core-Dateien immer "
502
- "aktuell halten, um Programmfehler auszuschließen. Auch wenn Sie am liebsten "
503
- "alle Aktualisierungen abschalten und sich nie wieder damit beschäftigen "
504
- "möchten, sollten Sie hin und wieder über eine Aktualisierung nachdenken, um "
505
- "gravierende Fehler und Software-Bugs in ihrer WordPress-Website zu vermeiden."
506
-
507
- #: includes/MPSUM_Admin_Help.php:95
508
- msgid ""
509
- "This plugin is tested with the most recent versions of WordPress to ensure "
510
- "that there are no major issues."
511
- msgstr ""
512
- "Dieses Plugin wurde darauf getestet, dass keine gravierenden Probleme "
513
- "bestehen."
514
-
515
- #: includes/MPSUM_Admin_Help.php:100
516
- msgid "Overview"
517
- msgstr "Überblick"
518
-
519
- #: includes/MPSUM_Admin_Help.php:106
520
- msgid "Navigation"
521
- msgstr "Tabs"
522
-
523
- #: includes/MPSUM_Admin_Help.php:112
524
- msgid "Documentation"
525
- msgstr "Dokumentation"
526
-
527
- #: includes/MPSUM_Admin_Help.php:118
528
- msgid "Capability"
529
- msgstr "Kompatibilität"
530
-
531
- #: includes/MPSUM_Admin_Help.php:124
532
- msgid "Troubleshooting"
533
- msgstr "Fehlerbehebung"
534
-
535
- #: includes/MPSUM_Admin_Plugins.php:128 includes/MPSUM_Admin_Themes.php:251
536
- #: includes/MPSUM_Plugins_List_Table.php:248
537
- #: includes/MPSUM_Themes_List_Table.php:258
538
- msgid "Allow Updates"
539
- msgstr "Aktualisierungen erlauben"
540
-
541
- #: includes/MPSUM_Admin_Plugins.php:132 includes/MPSUM_Admin_Themes.php:256
542
- #: includes/MPSUM_Plugins_List_Table.php:249
543
- #: includes/MPSUM_Themes_List_Table.php:259
544
- msgid "Disallow Updates"
545
- msgstr "Aktualisierungen verbieten"
546
-
547
- #: includes/MPSUM_Admin_Plugins.php:141 includes/MPSUM_Admin_Themes.php:265
548
- #: includes/MPSUM_Plugins_List_Table.php:253
549
- #: includes/MPSUM_Themes_List_Table.php:263
550
- msgid "Disallow Automatic Updates"
551
- msgstr "Automatische Aktualisierungen verbieten"
552
-
553
- #: includes/MPSUM_Admin_Plugins.php:145 includes/MPSUM_Admin_Themes.php:269
554
- msgid "Enable Automatic Updates"
555
- msgstr "Automatische Aktualisierungen aktivieren"
556
-
557
- #: includes/MPSUM_Admin_Plugins.php:231 includes/MPSUM_Admin_Themes.php:191
558
- msgid "Settings have been updated."
559
- msgstr "Einstellungen wurden aktualisiert."
560
-
561
- #: includes/MPSUM_Admin_Plugins.php:234
562
- msgid "The selected plugins have had automatic updates enabled."
563
- msgstr ""
564
- "Für die ausgewählten Plugins wurde eine automatische Aktualisierung "
565
- "aktiviert."
566
-
567
- #: includes/MPSUM_Admin_Plugins.php:236
568
- msgid "The selected plugins have had automatic updates disabled."
569
- msgstr ""
570
- "Für die ausgewählten Plugins wurde eine automatische Aktualisierung "
571
- "deaktiviert."
572
-
573
- #: includes/MPSUM_Admin_Plugins.php:238
574
- msgid "The selected plugin updates have been disabled."
575
- msgstr "Die Aktivierung ausgewählter Plugins wurde deaktiviert."
576
-
577
- #: includes/MPSUM_Admin_Plugins.php:240
578
- msgid "The selected plugin updates have been enabled."
579
- msgstr "Die Aktualisierung ausgewählter Plugins wurde aktiviert."
580
-
581
- #: includes/MPSUM_Admin_Plugins.php:256
582
- msgid "Plugin Update Options"
583
- msgstr "Optionen zur Plugin-Aktualisierung"
584
-
585
- #: includes/MPSUM_Admin_Themes.php:193
586
- msgid "The selected themes have had automatic updates enabled."
587
- msgstr ""
588
- "Für die ausgewählten Themes wurde eine automatische Aktualisierung aktiviert."
589
-
590
- #: includes/MPSUM_Admin_Themes.php:195
591
- msgid "The selected themes have had automatic updates disabled."
592
- msgstr ""
593
- "Für die ausgewählten Themes wurde eine automatische Aktualisierung "
594
- "deaktiviert."
595
-
596
- #: includes/MPSUM_Admin_Themes.php:197
597
- msgid "The selected theme updates have been disabled."
598
- msgstr "Die Aktualisierung ausgewählter Themes wurde deaktiviert."
599
-
600
- #: includes/MPSUM_Admin_Themes.php:199
601
- msgid "The selected theme updates have been enabled."
602
- msgstr "Die Aktualisierung ausgewählter Themes wurde aktiviert."
603
-
604
- #: includes/MPSUM_Admin_Themes.php:216
605
- msgid "Theme Update Options"
606
- msgstr "Optionen zur Theme-Aktualisierung"
607
-
608
- #: includes/MPSUM_List_Table.php:143
609
- msgid "List View"
610
- msgstr "Listenansicht"
611
-
612
- #: includes/MPSUM_List_Table.php:144
613
- msgid "Excerpt View"
614
- msgstr "Auszugansicht"
615
-
616
- #: includes/MPSUM_List_Table.php:313
617
- msgid "No items found."
618
- msgstr "Keine Elemente gefunden."
619
-
620
- #: includes/MPSUM_List_Table.php:439
621
- msgid "Select bulk action"
622
- msgstr "Aktion wählen"
623
-
624
- #: includes/MPSUM_List_Table.php:441
625
- msgid "Bulk Actions"
626
- msgstr "Aktionen"
627
-
628
- #: includes/MPSUM_List_Table.php:451
629
- msgid "Apply"
630
- msgstr "Anwenden"
631
-
632
- #: includes/MPSUM_List_Table.php:501
633
- msgid "Show more details"
634
- msgstr "Details anzeigen"
635
-
636
- #: includes/MPSUM_List_Table.php:556
637
- msgid "Filter by date"
638
- msgstr "Nach Datum filtern"
639
-
640
- #: includes/MPSUM_List_Table.php:558
641
- msgid "All dates"
642
- msgstr "Alle Daten anzeigen"
643
-
644
- #. translators: 1: month name, 2: 4-digit year
645
- #: includes/MPSUM_List_Table.php:571
646
- #, php-format
647
- msgid "%1$s %2$d"
648
- msgstr "%1$s %2$d"
649
-
650
- #: includes/MPSUM_List_Table.php:623
651
- #, php-format
652
- msgid "%s comment"
653
- msgid_plural "%s comments"
654
- msgstr[0] "%s Kommentar"
655
- msgstr[1] "%s Kommentare"
656
-
657
- #: includes/MPSUM_List_Table.php:624
658
- #, php-format
659
- msgid "%s approved comment"
660
- msgid_plural "%s approved comments"
661
- msgstr[0] "%s genehmigter Kommentar"
662
- msgstr[1] "%s genehmigte Kommentare"
663
-
664
- #: includes/MPSUM_List_Table.php:625
665
- #, php-format
666
- msgid "%s pending comment"
667
- msgid_plural "%s pending comments"
668
- msgstr[0] "%s ausstehender Kommentar"
669
- msgstr[1] "%s ausstehende Kommentare"
670
-
671
- #: includes/MPSUM_List_Table.php:630 includes/MPSUM_List_Table.php:642
672
- msgid "No comments"
673
- msgstr "Keine Kommentare"
674
-
675
- #: includes/MPSUM_List_Table.php:642
676
- msgid "No approved comments"
677
- msgstr "Keine genehmigten Kommentare"
678
-
679
- #: includes/MPSUM_List_Table.php:723 includes/MPSUM_List_Table.php:1287
680
- #, php-format
681
- msgid "%s item"
682
- msgid_plural "%s items"
683
- msgstr[0] "%s Element"
684
- msgstr[1] "%s Elemente"
685
-
686
- #: includes/MPSUM_List_Table.php:758
687
- msgid "First page"
688
- msgstr "Erste Seite"
689
-
690
- #: includes/MPSUM_List_Table.php:768
691
- msgid "Previous page"
692
- msgstr "Vorherige Seite"
693
-
694
- #: includes/MPSUM_List_Table.php:775 includes/MPSUM_List_Table.php:778
695
- msgid "Current Page"
696
- msgstr "Aktuelle Seite"
697
-
698
- #: includes/MPSUM_List_Table.php:784
699
- #, php-format
700
- msgctxt "paging"
701
- msgid "%1$s of %2$s"
702
- msgstr "%1$s von %2$s"
703
-
704
- #: includes/MPSUM_List_Table.php:791
705
- msgid "Next page"
706
- msgstr "Nächste Seite"
707
-
708
- #: includes/MPSUM_List_Table.php:801
709
- msgid "Last page"
710
- msgstr "Letzte Seite"
711
-
712
- #: includes/MPSUM_List_Table.php:1011
713
- msgid "Select All"
714
- msgstr "Alle auswählen"
715
-
716
- #: includes/MPSUM_Plugins_List_Table.php:184
717
- msgid "No plugins found."
718
- msgstr "Keine Plugins gefunden."
719
-
720
- #: includes/MPSUM_Plugins_List_Table.php:186
721
- msgid "You do not appear to have any plugins available at this time."
722
- msgstr ""
723
- "Es sieht nicht so aus, als stünden Ihnen im Moment Plugins zur Verfügung."
724
-
725
- #: includes/MPSUM_Plugins_List_Table.php:194
726
- msgid "Plugin"
727
- msgstr "Plugin"
728
-
729
- #: includes/MPSUM_Plugins_List_Table.php:195
730
- #: includes/MPSUM_Themes_List_Table.php:204
731
- msgid "Description"
732
- msgstr "Beschreibung"
733
-
734
- #: includes/MPSUM_Plugins_List_Table.php:213
735
- #, php-format
736
- msgctxt "plugins"
737
- msgid "All <span class=\"count\">(%s)</span>"
738
- msgid_plural "All <span class=\"count\">(%s)</span>"
739
- msgstr[0] "Alle <span class=\"count\">(%s)</span>"
740
- msgstr[1] "Alle <span class=\"count\">(%s)</span>"
741
-
742
- #: includes/MPSUM_Plugins_List_Table.php:216
743
- #: includes/MPSUM_Themes_List_Table.php:228
744
- #, php-format
745
- msgid "Updates Enabled <span class=\"count\">(%s)</span>"
746
- msgid_plural "Updates Enabled <span class=\"count\">(%s)</span>"
747
- msgstr[0] "Aktualisierungen aktiviert <span class=\"count\">(%s)</span>"
748
- msgstr[1] "Aktualisierungen aktiviert <span class=\"count\">(%s)</span>"
749
-
750
- #: includes/MPSUM_Plugins_List_Table.php:219
751
- #: includes/MPSUM_Themes_List_Table.php:225
752
- #, php-format
753
- msgid "Updates Disabled <span class=\"count\">(%s)</span>"
754
- msgid_plural "Updates Disabled <span class=\"count\">(%s)</span>"
755
- msgstr[0] "Aktualisierungen deaktiviert <span class=\"count\">(%s)</span>"
756
- msgstr[1] "Aktualisierungen deaktiviert <span class=\"count\">(%s)</span>"
757
-
758
- #: includes/MPSUM_Plugins_List_Table.php:222
759
- #: includes/MPSUM_Themes_List_Table.php:231
760
- #, php-format
761
- msgid "Automatic Updates <span class=\"count\">(%s)</span>"
762
- msgid_plural "Automatic Updates <span class=\"count\">(%s)</span>"
763
- msgstr[0] "Automatische Aktualisierungen <span class=\"count\">(%s)</span>"
764
- msgstr[1] "Automatische Aktualisierungen <span class=\"count\">(%s)</span>"
765
-
766
- #: includes/MPSUM_Plugins_List_Table.php:252
767
- #: includes/MPSUM_Themes_List_Table.php:262
768
- msgid "Allow Automatic Updates"
769
- msgstr "Automatische Aktualisierungen erlauben"
770
-
771
- #: includes/MPSUM_Plugins_List_Table.php:287
772
- msgid "Clear List"
773
- msgstr "Liste löschen"
774
-
775
- #: includes/MPSUM_Plugins_List_Table.php:289
776
- #, php-format
777
- msgid "Files in the <code>%s</code> directory are executed automatically."
778
- msgstr "Dateien im Verzeichnis <code>%s</code> werden automatisch ausgeführt."
779
-
780
- #: includes/MPSUM_Plugins_List_Table.php:291
781
- #, php-format
782
- msgid ""
783
- "Drop-ins are advanced plugins in the <code>%s</code> directory that replace "
784
- "WordPress functionality when present."
785
- msgstr ""
786
- "Drop-ins sind weiterentwickelte Plugins im Verzeichnis <code>%s</code>, die "
787
- "WordPress-Funktionalität ersetzen."
788
-
789
- #: includes/MPSUM_Plugins_List_Table.php:344
790
- #, php-format
791
- msgid "Select %s"
792
- msgstr "Wählen Sie %s"
793
-
794
- #: includes/MPSUM_Plugins_List_Table.php:376
795
- #: includes/MPSUM_Themes_List_Table.php:337
796
- #, php-format
797
- msgid "Version %s"
798
- msgstr "Version %s"
799
-
800
- #: includes/MPSUM_Plugins_List_Table.php:381
801
- #: includes/MPSUM_Themes_List_Table.php:339
802
- #, php-format
803
- msgid "By %s"
804
- msgstr "Von %s"
805
-
806
- #: includes/MPSUM_Plugins_List_Table.php:389
807
- #, php-format
808
- msgid "More information about %s"
809
- msgstr "Mehr Informationen zu %s"
810
-
811
- #: includes/MPSUM_Plugins_List_Table.php:391
812
- msgid "View details"
813
- msgstr "Details ansehen"
814
-
815
- #: includes/MPSUM_Plugins_List_Table.php:396
816
- msgid "Visit plugin site"
817
- msgstr "Besuchen Sie die Plugin-Website"
818
-
819
- #: includes/MPSUM_Themes_List_Table.php:193
820
- msgid "No themes found."
821
- msgstr "Keine Themes gefunden."
822
-
823
- #: includes/MPSUM_Themes_List_Table.php:195
824
- msgid "You do not appear to have any themes available at this time."
825
- msgstr ""
826
- "Es sieht nicht so aus, als stünden ihnen im Moment Themes zur Verfügung."
827
-
828
- #: includes/MPSUM_Themes_List_Table.php:203
829
- msgid "Theme"
830
- msgstr "Theme"
831
-
832
- #: includes/MPSUM_Themes_List_Table.php:222
833
- #, php-format
834
- msgctxt "themes"
835
- msgid "All <span class=\"count\">(%s)</span>"
836
- msgid_plural "All <span class=\"count\">(%s)</span>"
837
- msgstr[0] "Alle <span class=\"count\">(%s)</span>"
838
- msgstr[1] "Alle <span class=\"count\">(%s)</span>"
839
-
840
- #: includes/MPSUM_Themes_List_Table.php:299
841
- msgid "Select"
842
- msgstr "Auswählen"
843
-
844
- #: includes/MPSUM_Themes_List_Table.php:328
845
- msgid "Broken Theme:"
846
- msgstr "Defektes Theme:"
847
-
848
- #: includes/MPSUM_Themes_List_Table.php:342
849
- msgid "Visit theme homepage"
850
- msgstr "Besuchen Sie die Theme-Homepage"
851
-
852
- #: includes/MPSUM_Themes_List_Table.php:342
853
- msgid "Visit Theme Site"
854
- msgstr "Besuchen Sie die Theme-Website"
855
-
856
- #: main.php:402
857
- msgid ""
858
- "Manage and disable WordPress updates, including core, plugin, theme, and "
859
- "automatic updates - Works with Multisite."
860
- msgstr ""
861
- "Verwalten und deaktivieren Sie WordPress-Aktualisierungen, einschließlich "
862
- "Core, Plugins, Themes und automatischen Aktualisierungen. Funktioniert auch "
863
- "bei Multisite."
864
-
865
- #~ msgid "Core Update E-mails"
866
- #~ msgstr "E-Mails für Core-Aktualisierungen"
867
-
868
- #~ msgid ""
869
- #~ "Disable e-mails that are sent when your site has been upgraded "
870
- #~ "automatically."
871
- #~ msgstr ""
872
- #~ "Deaktivieren Sie den Erhalt von E-Mails, nachdem ihre Website automatisch "
873
- #~ "aktualisiert wurde."
874
-
875
- #~ msgid "Update Options"
876
- #~ msgstr "Aktualisierungs-Optionen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/stops-core-theme-and-plugin-updates.pot DELETED
@@ -1,801 +0,0 @@
1
- # WordPress Blank Pot
2
- # Copyright (C) 2014 ...
3
- # This file is distributed under the GNU General Public License v2 or later.
4
- 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-09-27 18:56-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"
14
- "Content-Type: text/plain; charset=UTF-8\n"
15
- "Content-Transfer-Encoding: 8bit\n"
16
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
- "X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
18
- "X-Poedit-SourceCharset: UTF-8\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.5.3\n"
24
- "X-Poedit-SearchPath-0: .\n"
25
-
26
- #: includes/MPSUM_Admin.php:172 includes/MPSUM_Admin.php:189
27
- msgid "Updates Options"
28
- msgstr ""
29
-
30
- #: includes/MPSUM_Admin.php:208
31
- msgid "Manage Updates"
32
- msgstr ""
33
-
34
- #: includes/MPSUM_Admin.php:215 includes/MPSUM_Admin_Help.php:51
35
- msgid "Dashboard"
36
- msgstr ""
37
-
38
- #: includes/MPSUM_Admin.php:221 includes/MPSUM_Admin_Help.php:52
39
- msgid "General"
40
- msgstr ""
41
-
42
- #: includes/MPSUM_Admin.php:227 includes/MPSUM_Admin_Help.php:53
43
- msgid "Plugins"
44
- msgstr ""
45
-
46
- #: includes/MPSUM_Admin.php:233 includes/MPSUM_Admin_Help.php:54
47
- msgid "Themes"
48
- msgstr ""
49
-
50
- #: includes/MPSUM_Admin.php:239 includes/MPSUM_Admin_Help.php:55
51
- msgid "Advanced"
52
- msgstr ""
53
-
54
- #: includes/MPSUM_Admin.php:295
55
- msgid "Configure"
56
- msgstr ""
57
-
58
- #: includes/MPSUM_Admin_Advanced.php:123
59
- msgid "The exclusion of users option has been updated."
60
- msgstr ""
61
-
62
- #: includes/MPSUM_Admin_Advanced.php:126
63
- msgid "The plugin settings have now been reset."
64
- msgstr ""
65
-
66
- #: includes/MPSUM_Admin_Advanced.php:129
67
- msgid ""
68
- "Force update checks have been initialized. Please check your site in 90 "
69
- "seconds, and refresh to test automatic updates."
70
- msgstr ""
71
-
72
- #: includes/MPSUM_Admin_Advanced.php:132 includes/MPSUM_Admin_Core.php:134
73
- msgid "Options saved."
74
- msgstr ""
75
-
76
- #: includes/MPSUM_Admin_Advanced.php:144
77
- msgid "Exclude Users"
78
- msgstr ""
79
-
80
- #: includes/MPSUM_Admin_Advanced.php:145
81
- msgid ""
82
- "Select which users to be excluded from the settings of this plugin. Default "
83
- "WordPress behavior will be used."
84
- msgstr ""
85
-
86
- #: includes/MPSUM_Admin_Advanced.php:146
87
- msgid ""
88
- "This option is useful if, for example, you would like to disable updates, "
89
- "but have a user account that can still update WordPress."
90
- msgstr ""
91
-
92
- #: includes/MPSUM_Admin_Advanced.php:149
93
- msgid "Users to be Excluded"
94
- msgstr ""
95
-
96
- #: includes/MPSUM_Admin_Advanced.php:188
97
- msgid "Save Users"
98
- msgstr ""
99
-
100
- #: includes/MPSUM_Admin_Advanced.php:193
101
- msgid "Reset Options"
102
- msgstr ""
103
-
104
- #: includes/MPSUM_Admin_Advanced.php:194
105
- msgid ""
106
- "This will reset all options to as if you have just installed the plugin."
107
- msgstr ""
108
-
109
- #: includes/MPSUM_Admin_Advanced.php:199
110
- msgid "Reset All Options"
111
- msgstr ""
112
-
113
- #: includes/MPSUM_Admin_Advanced.php:204
114
- msgid "Force Automatic Updates"
115
- msgstr ""
116
-
117
- #: includes/MPSUM_Admin_Advanced.php:205
118
- msgid ""
119
- "This will attempt to force automatic updates. This is useful for debugging."
120
- msgstr ""
121
-
122
- #: includes/MPSUM_Admin_Advanced.php:210
123
- msgid "Force Updates"
124
- msgstr ""
125
-
126
- #: includes/MPSUM_Admin_Core.php:143
127
- msgid "Global Settings"
128
- msgstr ""
129
-
130
- #: includes/MPSUM_Admin_Core.php:146 includes/MPSUM_Admin_Dashboard.php:70
131
- msgid "All Updates"
132
- msgstr ""
133
-
134
- #: includes/MPSUM_Admin_Core.php:148 includes/MPSUM_Admin_Core.php:156
135
- #: includes/MPSUM_Admin_Core.php:164 includes/MPSUM_Admin_Core.php:171
136
- #: includes/MPSUM_Admin_Core.php:178 includes/MPSUM_Admin_Core.php:189
137
- #: includes/MPSUM_Admin_Core.php:197 includes/MPSUM_Admin_Core.php:205
138
- #: includes/MPSUM_Admin_Core.php:213 includes/MPSUM_Admin_Core.php:223
139
- #: includes/MPSUM_Admin_Core.php:233 includes/MPSUM_Admin_Core.php:261
140
- #: includes/MPSUM_Admin_Core.php:269 includes/MPSUM_Admin_Dashboard.php:84
141
- #: includes/MPSUM_Admin_Dashboard.php:158
142
- #: includes/MPSUM_Admin_Dashboard.php:191
143
- #: includes/MPSUM_Admin_Dashboard.php:201
144
- #: includes/MPSUM_Admin_Dashboard.php:224
145
- #: includes/MPSUM_Admin_Dashboard.php:239
146
- #: includes/MPSUM_Admin_Dashboard.php:254
147
- #: includes/MPSUM_Admin_Dashboard.php:263
148
- msgid "Enabled"
149
- msgstr ""
150
-
151
- #: includes/MPSUM_Admin_Core.php:149 includes/MPSUM_Admin_Core.php:157
152
- #: includes/MPSUM_Admin_Core.php:165 includes/MPSUM_Admin_Core.php:172
153
- #: includes/MPSUM_Admin_Core.php:179 includes/MPSUM_Admin_Core.php:190
154
- #: includes/MPSUM_Admin_Core.php:198 includes/MPSUM_Admin_Core.php:206
155
- #: includes/MPSUM_Admin_Core.php:214 includes/MPSUM_Admin_Core.php:224
156
- #: includes/MPSUM_Admin_Core.php:234 includes/MPSUM_Admin_Core.php:262
157
- #: includes/MPSUM_Admin_Core.php:270 includes/MPSUM_Admin_Dashboard.php:99
158
- #: includes/MPSUM_Admin_Dashboard.php:114
159
- #: includes/MPSUM_Admin_Dashboard.php:129
160
- #: includes/MPSUM_Admin_Dashboard.php:144
161
- #: includes/MPSUM_Admin_Dashboard.php:167
162
- #: includes/MPSUM_Admin_Dashboard.php:175
163
- #: includes/MPSUM_Admin_Dashboard.php:184
164
- #: includes/MPSUM_Admin_Dashboard.php:192
165
- #: includes/MPSUM_Admin_Dashboard.php:202
166
- #: includes/MPSUM_Admin_Dashboard.php:303
167
- #: includes/MPSUM_Admin_Dashboard.php:347
168
- #: includes/MPSUM_Admin_Dashboard.php:416
169
- #: includes/MPSUM_Admin_Dashboard.php:485
170
- msgid "Disabled"
171
- msgstr ""
172
-
173
- #: includes/MPSUM_Admin_Core.php:150
174
- msgid "If this option is disabled, this will override all settings."
175
- msgstr ""
176
-
177
- #: includes/MPSUM_Admin_Core.php:154 includes/MPSUM_Admin_Dashboard.php:88
178
- msgid "WordPress Core Updates"
179
- msgstr ""
180
-
181
- #: includes/MPSUM_Admin_Core.php:158
182
- msgid "Prevents WordPress from showing it needs to be updated."
183
- msgstr ""
184
-
185
- #: includes/MPSUM_Admin_Core.php:162 includes/MPSUM_Admin_Dashboard.php:103
186
- msgid "All Plugin Updates"
187
- msgstr ""
188
-
189
- #: includes/MPSUM_Admin_Core.php:169 includes/MPSUM_Admin_Dashboard.php:118
190
- msgid "All Theme Updates"
191
- msgstr ""
192
-
193
- #: includes/MPSUM_Admin_Core.php:176 includes/MPSUM_Admin_Dashboard.php:133
194
- msgid "All Translation Updates"
195
- msgstr ""
196
-
197
- #: includes/MPSUM_Admin_Core.php:183 includes/MPSUM_Admin_Dashboard.php:151
198
- msgid "Automatic Updates"
199
- msgstr ""
200
-
201
- #: includes/MPSUM_Admin_Core.php:184
202
- msgid ""
203
- "These options will enable or disable automatic updates (background updates) "
204
- "of certain parts of WordPress."
205
- msgstr ""
206
-
207
- #: includes/MPSUM_Admin_Core.php:187 includes/MPSUM_Admin_Dashboard.php:154
208
- msgid "Major Releases"
209
- msgstr ""
210
-
211
- #: includes/MPSUM_Admin_Core.php:191
212
- msgid "Automatically update to major releases (e.g., 4.1, 4.2, 4.3)."
213
- msgstr ""
214
-
215
- #: includes/MPSUM_Admin_Core.php:195 includes/MPSUM_Admin_Dashboard.php:162
216
- msgid "Minor Releases"
217
- msgstr ""
218
-
219
- #: includes/MPSUM_Admin_Core.php:199
220
- msgid "Automatically update to minor releases (e.g., 4.1.1, 4.1.2, 4.1.3)."
221
- msgstr ""
222
-
223
- #: includes/MPSUM_Admin_Core.php:203 includes/MPSUM_Admin_Dashboard.php:171
224
- msgid "Development Updates"
225
- msgstr ""
226
-
227
- #: includes/MPSUM_Admin_Core.php:207
228
- msgid "Update automatically to Bleeding Edge releases."
229
- msgstr ""
230
-
231
- #: includes/MPSUM_Admin_Core.php:211 includes/MPSUM_Admin_Dashboard.php:188
232
- msgid "Automatic Plugin Updates"
233
- msgstr ""
234
-
235
- #: includes/MPSUM_Admin_Core.php:215 includes/MPSUM_Admin_Core.php:225
236
- #: includes/MPSUM_Admin_Dashboard.php:193
237
- #: includes/MPSUM_Admin_Dashboard.php:203
238
- msgid "Default"
239
- msgstr ""
240
-
241
- #: includes/MPSUM_Admin_Core.php:216 includes/MPSUM_Admin_Core.php:226
242
- #: includes/MPSUM_Admin_Dashboard.php:194
243
- #: includes/MPSUM_Admin_Dashboard.php:204
244
- msgid "Select Individually"
245
- msgstr ""
246
-
247
- #: includes/MPSUM_Admin_Core.php:217
248
- msgid ""
249
- "Automatically update your plugins. Select always on, always off, the "
250
- "WordPress default, or select plugins individually."
251
- msgstr ""
252
-
253
- #: includes/MPSUM_Admin_Core.php:221 includes/MPSUM_Admin_Dashboard.php:198
254
- msgid "Automatic Theme Updates"
255
- msgstr ""
256
-
257
- #: includes/MPSUM_Admin_Core.php:227
258
- msgid ""
259
- "Automatically update your themes. Select always on, always off, the "
260
- "WordPress default, or select themes individually."
261
- msgstr ""
262
-
263
- #: includes/MPSUM_Admin_Core.php:231 includes/MPSUM_Admin_Dashboard.php:179
264
- msgid "Translation Updates"
265
- msgstr ""
266
-
267
- #: includes/MPSUM_Admin_Core.php:235
268
- msgid "Automatically update your translations."
269
- msgstr ""
270
-
271
- #: includes/MPSUM_Admin_Core.php:239
272
- msgid "Notifications"
273
- msgstr ""
274
-
275
- #: includes/MPSUM_Admin_Core.php:242 includes/MPSUM_Admin_Dashboard.php:213
276
- msgid "Core E-mails"
277
- msgstr ""
278
-
279
- #: includes/MPSUM_Admin_Core.php:245
280
- msgid "Core Update Emails"
281
- msgstr ""
282
-
283
- #: includes/MPSUM_Admin_Core.php:247 includes/MPSUM_Admin_Dashboard.php:228
284
- msgid "Core Plugin Emails"
285
- msgstr ""
286
-
287
- #: includes/MPSUM_Admin_Core.php:249 includes/MPSUM_Admin_Dashboard.php:243
288
- msgid "Core Theme Emails"
289
- msgstr ""
290
-
291
- #: includes/MPSUM_Admin_Core.php:251 includes/MPSUM_Admin_Dashboard.php:258
292
- msgid "Core Translation Emails"
293
- msgstr ""
294
-
295
- #: includes/MPSUM_Admin_Core.php:252
296
- msgid ""
297
- "Disable e-mails that are sent when your site has been upgraded "
298
- "automatically. These will not be functional until WordPress 4.4."
299
- msgstr ""
300
-
301
- #: includes/MPSUM_Admin_Core.php:256
302
- msgid "Miscellaneous"
303
- msgstr ""
304
-
305
- #: includes/MPSUM_Admin_Core.php:259
306
- msgid "Browser Nag"
307
- msgstr ""
308
-
309
- #: includes/MPSUM_Admin_Core.php:263
310
- msgid "Removes the browser nag for people using older browsers."
311
- msgstr ""
312
-
313
- #: includes/MPSUM_Admin_Core.php:267
314
- msgid "WordPress Version in Footer"
315
- msgstr ""
316
-
317
- #: includes/MPSUM_Admin_Core.php:271
318
- msgid "Removes the WordPress version in the footer."
319
- msgstr ""
320
-
321
- #: includes/MPSUM_Admin_Core.php:279
322
- msgid "Save Changes"
323
- msgstr ""
324
-
325
- #: includes/MPSUM_Admin_Core.php:281
326
- msgid "Reset to Defaults"
327
- msgstr ""
328
-
329
- #: includes/MPSUM_Admin_Dashboard.php:67
330
- msgid "WordPress Updates"
331
- msgstr ""
332
-
333
- #: includes/MPSUM_Admin_Dashboard.php:210
334
- msgid "WordPress Notifications"
335
- msgstr ""
336
-
337
- #: includes/MPSUM_Admin_Dashboard.php:270
338
- msgid "Plugin and Theme Updates"
339
- msgstr ""
340
-
341
- #: includes/MPSUM_Admin_Dashboard.php:272
342
- #: includes/MPSUM_Admin_Dashboard.php:370
343
- msgid "Plugin Updates"
344
- msgstr ""
345
-
346
- #: includes/MPSUM_Admin_Dashboard.php:273
347
- #: includes/MPSUM_Admin_Dashboard.php:371
348
- msgid "Theme Updates"
349
- msgstr ""
350
-
351
- #: includes/MPSUM_Admin_Dashboard.php:312 includes/MPSUM_Admin_Plugins.php:260
352
- msgid "All plugin updates have been disabled."
353
- msgstr ""
354
-
355
- #: includes/MPSUM_Admin_Dashboard.php:356 includes/MPSUM_Admin_Themes.php:221
356
- msgid "All theme updates have been disabled."
357
- msgstr ""
358
-
359
- #: includes/MPSUM_Admin_Dashboard.php:368
360
- msgid "Plugin and Theme Automatic Updates"
361
- msgstr ""
362
-
363
- #: includes/MPSUM_Admin_Dashboard.php:388
364
- #: includes/MPSUM_Admin_Dashboard.php:451
365
- msgid "WordPress defaults control which updates are automatic or not."
366
- msgstr ""
367
-
368
- #: includes/MPSUM_Admin_Dashboard.php:391
369
- msgid "Automatic updates are on for all plugins"
370
- msgstr ""
371
-
372
- #: includes/MPSUM_Admin_Dashboard.php:394
373
- msgid "Automatic updates are disabled for all plugins"
374
- msgstr ""
375
-
376
- #: includes/MPSUM_Admin_Dashboard.php:454
377
- msgid "Automatic updates are on for all themes"
378
- msgstr ""
379
-
380
- #: includes/MPSUM_Admin_Dashboard.php:457
381
- msgid "Automatic updates are disabled for all themes"
382
- msgstr ""
383
-
384
- #: includes/MPSUM_Admin_Help.php:27
385
- msgid ""
386
- "This is the Easy Updates Manager settings help tab. In here you will find "
387
- "helpful information on what Easy Updates Manager does and how to use it."
388
- msgstr ""
389
-
390
- #: includes/MPSUM_Admin_Help.php:29
391
- msgid "Please Note!"
392
- msgstr ""
393
-
394
- #: includes/MPSUM_Admin_Help.php:29
395
- msgid ""
396
- "If either your WordPress core, theme, or plugins get too out of date, you "
397
- "may run into compatibility problems. Check the capability tab for more "
398
- "information."
399
- msgstr ""
400
-
401
- #: includes/MPSUM_Admin_Help.php:31
402
- msgid "Please see our Wiki for documentation and videos."
403
- msgstr ""
404
-
405
- #: includes/MPSUM_Admin_Help.php:34
406
- msgid "Our Website"
407
- msgstr ""
408
-
409
- #: includes/MPSUM_Admin_Help.php:35
410
- msgid "Support on WordPress"
411
- msgstr ""
412
-
413
- #: includes/MPSUM_Admin_Help.php:36
414
- msgid "GitHub Repository"
415
- msgstr ""
416
-
417
- #: includes/MPSUM_Admin_Help.php:37
418
- msgid "Official Documentation"
419
- msgstr ""
420
-
421
- #: includes/MPSUM_Admin_Help.php:50
422
- msgid "You will see four tabs where you can configure the update options."
423
- msgstr ""
424
-
425
- #: includes/MPSUM_Admin_Help.php:51
426
- msgid "Use this screen for an at-a-glance view of your settings."
427
- msgstr ""
428
-
429
- #: includes/MPSUM_Admin_Help.php:52
430
- msgid ""
431
- "Use this screen to finely tune which updates and automatic updates you would "
432
- "like to see."
433
- msgstr ""
434
-
435
- #: includes/MPSUM_Admin_Help.php:53
436
- msgid ""
437
- "If plugin updates are enabled and/or automatic updates for plugins are "
438
- "enabled, you can configure which plugins will receive updates and/or "
439
- "automatic updates."
440
- msgstr ""
441
-
442
- #: includes/MPSUM_Admin_Help.php:54
443
- msgid ""
444
- "If theme updates are enabled and/or automatic updates for themes are "
445
- "enabled, you can configure which themes will receive updates and/or "
446
- "automatic updates."
447
- msgstr ""
448
-
449
- #: includes/MPSUM_Admin_Help.php:55
450
- msgid ""
451
- "Reset all options or allow certain users to see all updates regardless of "
452
- "what settings you have set."
453
- msgstr ""
454
-
455
- #: includes/MPSUM_Admin_Help.php:82
456
- msgid "Contributors:"
457
- msgstr ""
458
-
459
- #: includes/MPSUM_Admin_Help.php:97
460
- msgid ""
461
- "WordPress encourages you to update your plugins, themes, and core to make "
462
- "sure that there are no bugs. Even though you most likely want to disable all "
463
- "the updates and never think about updating again, you should still consider "
464
- "updating every once in a while to avoid major bugs and errors on your "
465
- "WordPress website."
466
- msgstr ""
467
-
468
- #: includes/MPSUM_Admin_Help.php:98
469
- msgid ""
470
- "This plugin is tested with the most recent versions of WordPress to ensure "
471
- "that there are no major issues."
472
- msgstr ""
473
-
474
- #: includes/MPSUM_Admin_Help.php:103
475
- msgid "Overview"
476
- msgstr ""
477
-
478
- #: includes/MPSUM_Admin_Help.php:109
479
- msgid "Navigation"
480
- msgstr ""
481
-
482
- #: includes/MPSUM_Admin_Help.php:115
483
- msgid "Documentation"
484
- msgstr ""
485
-
486
- #: includes/MPSUM_Admin_Help.php:121
487
- msgid "Capability"
488
- msgstr ""
489
-
490
- #: includes/MPSUM_Admin_Help.php:127
491
- msgid "Troubleshooting"
492
- msgstr ""
493
-
494
- #: includes/MPSUM_Admin_Plugins.php:128 includes/MPSUM_Admin_Themes.php:251
495
- #: includes/MPSUM_Plugins_List_Table.php:248
496
- #: includes/MPSUM_Themes_List_Table.php:258
497
- msgid "Allow Updates"
498
- msgstr ""
499
-
500
- #: includes/MPSUM_Admin_Plugins.php:132 includes/MPSUM_Admin_Themes.php:256
501
- #: includes/MPSUM_Plugins_List_Table.php:249
502
- #: includes/MPSUM_Themes_List_Table.php:259
503
- msgid "Disallow Updates"
504
- msgstr ""
505
-
506
- #: includes/MPSUM_Admin_Plugins.php:141 includes/MPSUM_Admin_Themes.php:265
507
- #: includes/MPSUM_Plugins_List_Table.php:253
508
- #: includes/MPSUM_Themes_List_Table.php:263
509
- msgid "Disallow Automatic Updates"
510
- msgstr ""
511
-
512
- #: includes/MPSUM_Admin_Plugins.php:145 includes/MPSUM_Admin_Themes.php:269
513
- msgid "Enable Automatic Updates"
514
- msgstr ""
515
-
516
- #: includes/MPSUM_Admin_Plugins.php:231 includes/MPSUM_Admin_Themes.php:191
517
- msgid "Settings have been updated."
518
- msgstr ""
519
-
520
- #: includes/MPSUM_Admin_Plugins.php:234
521
- msgid "The selected plugins have had automatic updates enabled."
522
- msgstr ""
523
-
524
- #: includes/MPSUM_Admin_Plugins.php:236
525
- msgid "The selected plugins have had automatic updates disabled."
526
- msgstr ""
527
-
528
- #: includes/MPSUM_Admin_Plugins.php:238
529
- msgid "The selected plugin updates have been disabled."
530
- msgstr ""
531
-
532
- #: includes/MPSUM_Admin_Plugins.php:240
533
- msgid "The selected plugin updates have been enabled."
534
- msgstr ""
535
-
536
- #: includes/MPSUM_Admin_Plugins.php:256
537
- msgid "Plugin Update Options"
538
- msgstr ""
539
-
540
- #: includes/MPSUM_Admin_Themes.php:193
541
- msgid "The selected themes have had automatic updates enabled."
542
- msgstr ""
543
-
544
- #: includes/MPSUM_Admin_Themes.php:195
545
- msgid "The selected themes have had automatic updates disabled."
546
- msgstr ""
547
-
548
- #: includes/MPSUM_Admin_Themes.php:197
549
- msgid "The selected theme updates have been disabled."
550
- msgstr ""
551
-
552
- #: includes/MPSUM_Admin_Themes.php:199
553
- msgid "The selected theme updates have been enabled."
554
- msgstr ""
555
-
556
- #: includes/MPSUM_Admin_Themes.php:216
557
- msgid "Theme Update Options"
558
- msgstr ""
559
-
560
- #: includes/MPSUM_List_Table.php:143
561
- msgid "List View"
562
- msgstr ""
563
-
564
- #: includes/MPSUM_List_Table.php:144
565
- msgid "Excerpt View"
566
- msgstr ""
567
-
568
- #: includes/MPSUM_List_Table.php:313
569
- msgid "No items found."
570
- msgstr ""
571
-
572
- #: includes/MPSUM_List_Table.php:439
573
- msgid "Select bulk action"
574
- msgstr ""
575
-
576
- #: includes/MPSUM_List_Table.php:441
577
- msgid "Bulk Actions"
578
- msgstr ""
579
-
580
- #: includes/MPSUM_List_Table.php:451
581
- msgid "Apply"
582
- msgstr ""
583
-
584
- #: includes/MPSUM_List_Table.php:501
585
- msgid "Show more details"
586
- msgstr ""
587
-
588
- #: includes/MPSUM_List_Table.php:556
589
- msgid "Filter by date"
590
- msgstr ""
591
-
592
- #: includes/MPSUM_List_Table.php:558
593
- msgid "All dates"
594
- msgstr ""
595
-
596
- #: includes/MPSUM_List_Table.php:571
597
- #, php-format
598
- msgid "%1$s %2$d"
599
- msgstr ""
600
-
601
- #: includes/MPSUM_List_Table.php:623
602
- #, php-format
603
- msgid "%s comment"
604
- msgid_plural "%s comments"
605
- msgstr[0] ""
606
- msgstr[1] ""
607
-
608
- #: includes/MPSUM_List_Table.php:624
609
- #, php-format
610
- msgid "%s approved comment"
611
- msgid_plural "%s approved comments"
612
- msgstr[0] ""
613
- msgstr[1] ""
614
-
615
- #: includes/MPSUM_List_Table.php:625
616
- #, php-format
617
- msgid "%s pending comment"
618
- msgid_plural "%s pending comments"
619
- msgstr[0] ""
620
- msgstr[1] ""
621
-
622
- #: includes/MPSUM_List_Table.php:630 includes/MPSUM_List_Table.php:642
623
- msgid "No comments"
624
- msgstr ""
625
-
626
- #: includes/MPSUM_List_Table.php:642
627
- msgid "No approved comments"
628
- msgstr ""
629
-
630
- #: includes/MPSUM_List_Table.php:723 includes/MPSUM_List_Table.php:1287
631
- #, php-format
632
- msgid "%s item"
633
- msgid_plural "%s items"
634
- msgstr[0] ""
635
- msgstr[1] ""
636
-
637
- #: includes/MPSUM_List_Table.php:758
638
- msgid "First page"
639
- msgstr ""
640
-
641
- #: includes/MPSUM_List_Table.php:768
642
- msgid "Previous page"
643
- msgstr ""
644
-
645
- #: includes/MPSUM_List_Table.php:775 includes/MPSUM_List_Table.php:778
646
- msgid "Current Page"
647
- msgstr ""
648
-
649
- #: includes/MPSUM_List_Table.php:784
650
- #, php-format
651
- msgctxt "paging"
652
- msgid "%1$s of %2$s"
653
- msgstr ""
654
-
655
- #: includes/MPSUM_List_Table.php:791
656
- msgid "Next page"
657
- msgstr ""
658
-
659
- #: includes/MPSUM_List_Table.php:801
660
- msgid "Last page"
661
- msgstr ""
662
-
663
- #: includes/MPSUM_List_Table.php:1011
664
- msgid "Select All"
665
- msgstr ""
666
-
667
- #: includes/MPSUM_Plugins_List_Table.php:184
668
- msgid "No plugins found."
669
- msgstr ""
670
-
671
- #: includes/MPSUM_Plugins_List_Table.php:186
672
- msgid "You do not appear to have any plugins available at this time."
673
- msgstr ""
674
-
675
- #: includes/MPSUM_Plugins_List_Table.php:194
676
- msgid "Plugin"
677
- msgstr ""
678
-
679
- #: includes/MPSUM_Plugins_List_Table.php:195
680
- #: includes/MPSUM_Themes_List_Table.php:204
681
- msgid "Description"
682
- msgstr ""
683
-
684
- #: includes/MPSUM_Plugins_List_Table.php:213
685
- #, php-format
686
- msgctxt "plugins"
687
- msgid "All <span class=\"count\">(%s)</span>"
688
- msgid_plural "All <span class=\"count\">(%s)</span>"
689
- msgstr[0] ""
690
- msgstr[1] ""
691
-
692
- #: includes/MPSUM_Plugins_List_Table.php:216
693
- #: includes/MPSUM_Themes_List_Table.php:228
694
- #, php-format
695
- msgid "Updates Enabled <span class=\"count\">(%s)</span>"
696
- msgid_plural "Updates Enabled <span class=\"count\">(%s)</span>"
697
- msgstr[0] ""
698
- msgstr[1] ""
699
-
700
- #: includes/MPSUM_Plugins_List_Table.php:219
701
- #: includes/MPSUM_Themes_List_Table.php:225
702
- #, php-format
703
- msgid "Updates Disabled <span class=\"count\">(%s)</span>"
704
- msgid_plural "Updates Disabled <span class=\"count\">(%s)</span>"
705
- msgstr[0] ""
706
- msgstr[1] ""
707
-
708
- #: includes/MPSUM_Plugins_List_Table.php:222
709
- #: includes/MPSUM_Themes_List_Table.php:231
710
- #, php-format
711
- msgid "Automatic Updates <span class=\"count\">(%s)</span>"
712
- msgid_plural "Automatic Updates <span class=\"count\">(%s)</span>"
713
- msgstr[0] ""
714
- msgstr[1] ""
715
-
716
- #: includes/MPSUM_Plugins_List_Table.php:252
717
- #: includes/MPSUM_Themes_List_Table.php:262
718
- msgid "Allow Automatic Updates"
719
- msgstr ""
720
-
721
- #: includes/MPSUM_Plugins_List_Table.php:287
722
- msgid "Clear List"
723
- msgstr ""
724
-
725
- #: includes/MPSUM_Plugins_List_Table.php:289
726
- #, php-format
727
- msgid "Files in the <code>%s</code> directory are executed automatically."
728
- msgstr ""
729
-
730
- #: includes/MPSUM_Plugins_List_Table.php:291
731
- #, php-format
732
- msgid ""
733
- "Drop-ins are advanced plugins in the <code>%s</code> directory that replace "
734
- "WordPress functionality when present."
735
- msgstr ""
736
-
737
- #: includes/MPSUM_Plugins_List_Table.php:344
738
- #, php-format
739
- msgid "Select %s"
740
- msgstr ""
741
-
742
- #: includes/MPSUM_Plugins_List_Table.php:376
743
- #: includes/MPSUM_Themes_List_Table.php:337
744
- #, php-format
745
- msgid "Version %s"
746
- msgstr ""
747
-
748
- #: includes/MPSUM_Plugins_List_Table.php:381
749
- #: includes/MPSUM_Themes_List_Table.php:339
750
- #, php-format
751
- msgid "By %s"
752
- msgstr ""
753
-
754
- #: includes/MPSUM_Plugins_List_Table.php:389
755
- #, php-format
756
- msgid "More information about %s"
757
- msgstr ""
758
-
759
- #: includes/MPSUM_Plugins_List_Table.php:391
760
- msgid "View details"
761
- msgstr ""
762
-
763
- #: includes/MPSUM_Plugins_List_Table.php:396
764
- msgid "Visit plugin site"
765
- msgstr ""
766
-
767
- #: includes/MPSUM_Themes_List_Table.php:193
768
- msgid "No themes found."
769
- msgstr ""
770
-
771
- #: includes/MPSUM_Themes_List_Table.php:195
772
- msgid "You do not appear to have any themes available at this time."
773
- msgstr ""
774
-
775
- #: includes/MPSUM_Themes_List_Table.php:203
776
- msgid "Theme"
777
- msgstr ""
778
-
779
- #: includes/MPSUM_Themes_List_Table.php:222
780
- #, php-format
781
- msgctxt "themes"
782
- msgid "All <span class=\"count\">(%s)</span>"
783
- msgid_plural "All <span class=\"count\">(%s)</span>"
784
- msgstr[0] ""
785
- msgstr[1] ""
786
-
787
- #: includes/MPSUM_Themes_List_Table.php:299
788
- msgid "Select"
789
- msgstr ""
790
-
791
- #: includes/MPSUM_Themes_List_Table.php:328
792
- msgid "Broken Theme:"
793
- msgstr ""
794
-
795
- #: includes/MPSUM_Themes_List_Table.php:342
796
- msgid "Visit theme homepage"
797
- msgstr ""
798
-
799
- #: includes/MPSUM_Themes_List_Table.php:342
800
- msgid "Visit Theme Site"
801
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
main.php CHANGED
@@ -4,7 +4,7 @@ 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.3.0
8
  Requires at least: 4.3
9
  Author URI: https://wordpress.org/plugins/stops-core-theme-and-plugin-updates/
10
  Contributors: kidsguide, ronalfy
@@ -326,7 +326,7 @@ class MPSUM_Updates_Manager {
326
  $options[ $option ] = $val;
327
  }
328
  MPSUM_Updates_Manager::update_options( $options, $context );
329
- } else if ( 'plugins' == $context || 'themes' == $context || 'plugins_automatic' == $context || 'themes_automatic' == $context ) {
330
  $plugin_options = MPSUM_Updates_Manager::get_options( $context );
331
  if ( 'on' == $option_value ) {
332
  foreach( $plugin_options as $plugin ) {
@@ -338,7 +338,22 @@ class MPSUM_Updates_Manager {
338
  $plugin_options[] = $option;
339
  $plugin_options = array_values( array_unique( $plugin_options ) );
340
  }
341
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
342
  MPSUM_Updates_Manager::update_options( $plugin_options, $context );
343
  }
344
 
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.3.1
8
  Requires at least: 4.3
9
  Author URI: https://wordpress.org/plugins/stops-core-theme-and-plugin-updates/
10
  Contributors: kidsguide, ronalfy
326
  $options[ $option ] = $val;
327
  }
328
  MPSUM_Updates_Manager::update_options( $options, $context );
329
+ } else if ( 'plugins' == $context || 'themes' == $context ) {
330
  $plugin_options = MPSUM_Updates_Manager::get_options( $context );
331
  if ( 'on' == $option_value ) {
332
  foreach( $plugin_options as $plugin ) {
338
  $plugin_options[] = $option;
339
  $plugin_options = array_values( array_unique( $plugin_options ) );
340
  }
341
+
342
+ MPSUM_Updates_Manager::update_options( $plugin_options, $context );
343
+ } elseif( 'plugins_automatic' == $context || 'themes_automatic' == $context ) {
344
+ $plugin_options = MPSUM_Updates_Manager::get_options( $context );
345
+ if ( 'off' == $option_value ) {
346
+ foreach( $plugin_options as $plugin ) {
347
+ if ( ( $key = array_search( $option, $plugin_options ) ) !== false ) {
348
+ unset( $plugin_options[ $key ] );
349
+ }
350
+ }
351
+ } else {
352
+ $options = MPSUM_Updates_Manager::get_options( $context );
353
+ $options[] = $option;
354
+ $plugin_options = array_values( array_unique( $options ) );
355
+ }
356
+
357
  MPSUM_Updates_Manager::update_options( $plugin_options, $context );
358
  }
359
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ 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.1
6
- Stable tag: 5.3.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.
@@ -101,6 +101,10 @@ For additional information and FAQs for Easy Updates Manager check out our <a hr
101
 
102
  == Changelog ==
103
 
 
 
 
 
104
  = 5.3.0 =
105
  Released 2015-09-27
106
 
@@ -143,6 +147,9 @@ In version 5.0.0 we completely re-wrote the plugin to offer a faster and more se
143
 
144
  == Upgrade Notice ==
145
 
 
 
 
146
  = 5.3.0 =
147
  New Dashboard View. Support for WordPress 4.4 Email Notifications.
148
 
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.1
6
+ Stable tag: 5.3.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.
101
 
102
  == Changelog ==
103
 
104
+ = 5.3.1 =
105
+ Released 2015-09-27
106
+ * Fixing automatic updates dashboard widget.
107
+
108
  = 5.3.0 =
109
  Released 2015-09-27
110
 
147
 
148
  == Upgrade Notice ==
149
 
150
+ = 5.3.1 =
151
+ Fixing automatic updates in dashboard view.
152
+
153
  = 5.3.0 =
154
  New Dashboard View. Support for WordPress 4.4 Email Notifications.
155