WP Maintenance Mode - Version 1.8.1

Version Description

  • Add option for value of robots meta tag
  • Add option for optional admin login
Download this release

Release Info

Developer Bueltge
Plugin Icon 128x128 WP Maintenance Mode
Version 1.8.1
Comparing to
See all releases

Code changes from version 1.8.0 to 1.8.1

inc/wp-maintenance-mode-settings.php CHANGED
@@ -114,6 +114,19 @@ class WPMaintenanceMode_Settings {
114
  <small><?php _e( 'Please leave a link to the plugin- and design-author on your maintenance mode site.', FB_WM_TEXTDOMAIN ); ?></small>
115
  </td>
116
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
117
  <tr valign="top">
118
  <th scope="row" class="alternate">
119
  <label for="wm_config-theme"><?php _e( 'Theme:', FB_WM_TEXTDOMAIN ); ?></label>
@@ -154,6 +167,19 @@ class WPMaintenanceMode_Settings {
154
  <a onclick="return false;" href="<?php echo WP_PLUGIN_URL . '/' . FB_WM_BASEDIR; ?>/index.php?TB_iframe=true" class="thickbox button"><?php _e( 'Preview', FB_WM_TEXTDOMAIN ); ?></a>
155
  </td>
156
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
157
  <tr valign="top">
158
  <th scope="row">
159
  <label for="wm_config-title"><?php _e( 'Title:', FB_WM_TEXTDOMAIN ); ?></label>
114
  <small><?php _e( 'Please leave a link to the plugin- and design-author on your maintenance mode site.', FB_WM_TEXTDOMAIN ); ?></small>
115
  </td>
116
  </tr>
117
+ <tr valign="top">
118
+ <th scope="row">
119
+ <label for="wm_config-admin_link"><?php _e( 'Admin Link:', FB_WM_TEXTDOMAIN ); ?></label>
120
+ </th>
121
+ <td>
122
+ <select name="wm_config-admin_link" id="wm_config-admin_link">
123
+ <option value="0"<?php if ( isset($value['admin_link']) && 0 === $value['admin_link'] ) { echo ' selected="selected"'; } ?>><?php _e('False', FB_WM_TEXTDOMAIN ); ?> </option>
124
+ <option value="1"<?php if ( isset($value['admin_link']) && 1 === $value['admin_link'] ) { echo ' selected="selected"'; } ?>><?php _e('True', FB_WM_TEXTDOMAIN ); ?> </option>
125
+ </select>
126
+ <br />
127
+ <small><?php _e( 'Do you will a link to the admin area of your install?', FB_WM_TEXTDOMAIN ); ?></small>
128
+ </td>
129
+ </tr>
130
  <tr valign="top">
131
  <th scope="row" class="alternate">
132
  <label for="wm_config-theme"><?php _e( 'Theme:', FB_WM_TEXTDOMAIN ); ?></label>
167
  <a onclick="return false;" href="<?php echo WP_PLUGIN_URL . '/' . FB_WM_BASEDIR; ?>/index.php?TB_iframe=true" class="thickbox button"><?php _e( 'Preview', FB_WM_TEXTDOMAIN ); ?></a>
168
  </td>
169
  </tr>
170
+ <tr valign="top">
171
+ <th scope="row">
172
+ <label for="wm_config-index"><?php _e( 'noindex, nofollow:', FB_WM_TEXTDOMAIN ); ?></label>
173
+ </th>
174
+ <td>
175
+ <select name="wm_config-index" id="wm_config-index">
176
+ <option value="0"<?php if ( isset($value['index']) && 0 === $value['index'] ) { echo ' selected="selected"'; } ?>><?php _e('False', FB_WM_TEXTDOMAIN ); ?> </option>
177
+ <option value="1"<?php if ( isset($value['index']) && 1 === $value['index'] ) { echo ' selected="selected"'; } ?>><?php _e('True', FB_WM_TEXTDOMAIN ); ?> </option>
178
+ </select>
179
+ <br />
180
+ <small><?php _e( 'The robots meta tag lets you utilize a granular, page-specific approach to controlling how an individual page should be indexed and served to users in search results. Set TRUE for noindex, nofollow; set FALSE for index, follow.', FB_WM_TEXTDOMAIN ); ?></small>
181
+ </td>
182
+ </tr>
183
  <tr valign="top">
184
  <th scope="row">
185
  <label for="wm_config-title"><?php _e( 'Title:', FB_WM_TEXTDOMAIN ); ?></label>
index.php DELETED
@@ -1,11 +0,0 @@
1
- <?php
2
- require_once('../../../wp-load.php');
3
-
4
- if( !current_user_can('unfiltered_html') )
5
- wp_die( __('Cheatin&#8217; uh?') );
6
-
7
- $WPMaintenanceMode = new WPMaintenanceMode();
8
- $WPMaintenanceMode->on_active();
9
-
10
- include 'site.php';
11
- ?>
 
 
 
 
 
 
 
 
 
 
 
js/wp-maintenance-mode.js CHANGED
@@ -24,9 +24,11 @@ jQuery(document).ready( function($){
24
 
25
  time_Val = $('#wm_config-time').val();
26
  link_Val = $('#wm_config-link').val();
 
27
  unit_Val = $('#wm_config-unit').val();
28
  theme_Val = $('#wm_config-theme').val();
29
  styleurl_Val = $('#wm_config-styleurl').val();
 
30
  title_Val = $('#wm_config-title').val();
31
  header_Val = $('#wm_config-header').val();
32
  heading_Val = $('#wm_config-heading').val();
@@ -44,8 +46,10 @@ jQuery(document).ready( function($){
44
  "wm_config-time" : time_Val,
45
  "wm_config-unit" : unit_Val,
46
  "wm_config-link" : link_Val,
 
47
  "wm_config-theme" : theme_Val,
48
  "wm_config-styleurl" : styleurl_Val,
 
49
  "wm_config-title" : title_Val,
50
  "wm_config-header" : header_Val,
51
  "wm_config-heading" : heading_Val,
24
 
25
  time_Val = $('#wm_config-time').val();
26
  link_Val = $('#wm_config-link').val();
27
+ admin_link_Val = $('#wm_config-admin_link').val();
28
  unit_Val = $('#wm_config-unit').val();
29
  theme_Val = $('#wm_config-theme').val();
30
  styleurl_Val = $('#wm_config-styleurl').val();
31
+ index_Val = $('#wm_config-index').val();
32
  title_Val = $('#wm_config-title').val();
33
  header_Val = $('#wm_config-header').val();
34
  heading_Val = $('#wm_config-heading').val();
46
  "wm_config-time" : time_Val,
47
  "wm_config-unit" : unit_Val,
48
  "wm_config-link" : link_Val,
49
+ "wm_config-admin_link" : admin_link_Val,
50
  "wm_config-theme" : theme_Val,
51
  "wm_config-styleurl" : styleurl_Val,
52
+ "wm_config-index" : index_Val,
53
  "wm_config-title" : title_Val,
54
  "wm_config-header" : header_Val,
55
  "wm_config-heading" : heading_Val,
languages/wp-maintenance-mode-de_DE.mo CHANGED
Binary file
languages/wp-maintenance-mode-de_DE.po CHANGED
@@ -2,432 +2,435 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-01-04 12:57+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
8
  "Language-Team: \n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: \n"
14
- "X-Poedit-Country: \n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
- "X-Poedit-Basepath: d:/xampp/htdocs/wpbeta/wp-content/plugins/wartungsmodus/\n"
18
- "X-Poedit-Bookmarks: \n"
19
  "X-Poedit-SearchPath-0: .\n"
20
- "X-Textdomain-Support: yes"
21
 
22
- #. translators: plugin header field 'Description'
23
- #: wp-maintenance-mode.php:0
24
- #@ wp-maintenance-mode
25
- msgid "The plugin adds a splash page to your blog that lets visitors know your blog is down for maintenance. Logged in users get full access to the blog including the front-end, depends of the settings."
26
- msgstr "Das Plugin fügt eine statische Seite in deinem Blog ein und lässt Besucher wissen, dass Wartungsarbeiten durchgeführt werden. Eingeloggte Nutzer können das Frontend je nach Einstellungen der Rechte uneingeschränkt nutzen."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
 
28
- #: wp-maintenance-mode.php:160
29
- #@ default
 
 
 
 
 
 
30
  msgid "Settings"
31
  msgstr "Einstellungen"
32
 
33
- #: wp-maintenance-mode.php:260
34
- #: wp-maintenance-mode.php:454
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  #, php-format
36
- #@ wp-maintenance-mode
37
  msgid "Plugin %s settings <strong>updated</strong>."
38
  msgstr "Plugin %s Einstellungen <strong>gespeichert</strong>."
39
 
40
- #: wp-maintenance-mode.php:263
41
- #: wp-maintenance-mode.php:276
 
42
  #, php-format
43
- #@ wp-maintenance-mode
44
  msgid "Plugin %s active status <strong>updated</strong>."
45
  msgstr "Plugin %s aktiv-status <strong>aktualisiert</strong>."
46
 
47
- #: wp-maintenance-mode.php:266
48
- #@ wp-maintenance-mode
49
  msgid "Plugin Activate"
50
  msgstr "Plugin aktivieren"
51
 
52
- #: wp-maintenance-mode.php:270
53
- #: wp-maintenance-mode.php:289
54
- #: wp-maintenance-mode.php:333
55
- #@ wp-maintenance-mode
 
 
56
  msgid "False"
57
  msgstr "Nein"
58
 
59
- #: wp-maintenance-mode.php:271
60
- #: wp-maintenance-mode.php:290
61
- #: wp-maintenance-mode.php:334
62
- #@ wp-maintenance-mode
 
 
63
  msgid "True"
64
  msgstr "Ja"
65
 
66
- #: wp-maintenance-mode.php:273
67
- #@ wp-maintenance-mode
68
  msgid "Update"
69
  msgstr "Aktualisieren"
70
 
71
- #: wp-maintenance-mode.php:279
72
- #@ wp-maintenance-mode
73
  msgid "Plugin Settings"
74
  msgstr "Plugin Einstellungen"
75
 
76
- #: wp-maintenance-mode.php:285
77
- #@ wp-maintenance-mode
78
  msgid "Countdown:"
79
  msgstr "Countdown:"
80
 
81
- #: wp-maintenance-mode.php:296
82
- #: wp-maintenance-mode.php:299
83
- #@ wp-maintenance-mode
84
  msgid "Click for datepicker"
85
  msgstr "Klick für den Datums-Picker"
86
 
87
- #: wp-maintenance-mode.php:296
88
- #@ wp-maintenance-mode
89
  msgid "Date:"
90
  msgstr "Datum:"
91
 
92
- #: wp-maintenance-mode.php:300
93
- #@ wp-maintenance-mode
94
  msgid "Activate countdown for using this. Use value and unit or use the countdown and set the date."
95
  msgstr "Aktiviere den Countdown um ihn zu nutzen. Vergebe Wert und Einheit oder wähle ein Datum für den Countdown."
96
 
97
- #: wp-maintenance-mode.php:305
98
- #@ wp-maintenance-mode
99
  msgid "Value:"
100
  msgstr "Wert:"
101
 
102
- #: wp-maintenance-mode.php:313
103
- #@ wp-maintenance-mode
104
  msgid "Unit:"
105
  msgstr "Einheit:"
106
 
107
- #: wp-maintenance-mode.php:317
108
- #@ wp-maintenance-mode
109
  msgid "second"
110
  msgstr "sekunde"
111
 
112
- #: wp-maintenance-mode.php:318
113
- #@ wp-maintenance-mode
114
  msgid "minute"
115
  msgstr "minute"
116
 
117
- #: wp-maintenance-mode.php:319
118
- #@ wp-maintenance-mode
119
  msgid "hour"
120
  msgstr "stunde"
121
 
122
- #: wp-maintenance-mode.php:320
123
- #@ wp-maintenance-mode
124
  msgid "day"
125
  msgstr "tag"
126
 
127
- #: wp-maintenance-mode.php:321
128
- #@ wp-maintenance-mode
129
  msgid "week"
130
  msgstr "woche"
131
 
132
- #: wp-maintenance-mode.php:322
133
- #@ wp-maintenance-mode
134
  msgid "month"
135
  msgstr "monat"
136
 
137
- #: wp-maintenance-mode.php:323
138
- #@ wp-maintenance-mode
139
  msgid "year"
140
  msgstr "jahr"
141
 
142
- #: wp-maintenance-mode.php:329
143
- #@ wp-maintenance-mode
144
  msgid "Link:"
145
  msgstr "Link:"
146
 
147
- #: wp-maintenance-mode.php:342
148
- #@ wp-maintenance-mode
 
 
 
 
 
 
 
 
 
 
 
 
 
 
149
  msgid "Theme:"
150
  msgstr "Theme:"
151
 
152
- #: wp-maintenance-mode.php:346
153
- #@ wp-maintenance-mode
154
  msgid "Own Style"
155
  msgstr "Eigenes Design"
156
 
157
- #: wp-maintenance-mode.php:347
158
- #@ wp-maintenance-mode
159
  msgid "Simple Text"
160
  msgstr "Einfach Text"
161
 
162
- #: wp-maintenance-mode.php:348
163
- #@ wp-maintenance-mode
164
  msgid "The Truck"
165
  msgstr "Der Truck"
166
 
167
- #: wp-maintenance-mode.php:349
168
- #@ wp-maintenance-mode
169
  msgid "The Sun"
170
  msgstr "The Sun"
171
 
172
- #: wp-maintenance-mode.php:350
173
- #@ wp-maintenance-mode
174
  msgid "The FF Error"
175
  msgstr "The FF Error"
176
 
177
- #: wp-maintenance-mode.php:351
178
- #@ wp-maintenance-mode
179
  msgid "Monster"
180
  msgstr "Monster"
181
 
182
- #: wp-maintenance-mode.php:352
183
- #@ wp-maintenance-mode
184
  msgid "Chastely"
185
  msgstr "Chastely"
186
 
187
- #: wp-maintenance-mode.php:353
188
- #@ wp-maintenance-mode
189
  msgid "Only Typo"
190
  msgstr "Only Typo"
191
 
192
- #: wp-maintenance-mode.php:354
193
- #@ wp-maintenance-mode
194
  msgid "Paint"
195
  msgstr "Paint"
196
 
197
- #: wp-maintenance-mode.php:356
198
- #@ wp-maintenance-mode
 
 
 
 
 
199
  msgid "Damask"
200
  msgstr "Damask"
201
 
202
- #: wp-maintenance-mode.php:357
203
- #@ wp-maintenance-mode
204
  msgid "Lego"
205
  msgstr "Lego"
206
 
207
- #: wp-maintenance-mode.php:364
208
- #@ wp-maintenance-mode
 
 
 
 
 
209
  msgid "Own Style URL (incl. http://):"
210
  msgstr "Eigene Design URL (inkl. http://)"
211
 
212
- #: wp-maintenance-mode.php:406
213
- #@ wp-maintenance-mode
214
- msgid "Text:"
215
- msgstr "Text:"
216
-
217
- #: wp-maintenance-mode.php:416
218
- #@ wp-maintenance-mode
219
- msgid "Excludes:"
220
- msgstr "Ausnahmen:"
221
-
222
- #: wp-maintenance-mode.php:426
223
- #@ wp-maintenance-mode
224
- msgid "Role:"
225
- msgstr "Rolle:"
226
-
227
- #: wp-maintenance-mode.php:457
228
- #@ wp-maintenance-mode
229
- msgid "Save"
230
- msgstr "Speichern"
231
-
232
- #: wp-maintenance-mode.php:502
233
- #: wp-maintenance-mode.php:545
234
- #@ wp-maintenance-mode
235
- msgid "Updated"
236
- msgstr "Gespeichert"
237
-
238
- #: wp-maintenance-mode.php:697
239
- #: wp-maintenance-mode.php:699
240
- #@ wp-maintenance-mode
241
- msgid "Deactivate or change Settings"
242
- msgstr "Deaktivieren oder Einstellungen ändern "
243
-
244
- #: wp-maintenance-mode.php:625
245
- #@ wp-maintenance-mode
246
- msgid "seconds"
247
- msgstr "Sekunden"
248
-
249
- #: wp-maintenance-mode.php:629
250
- #@ wp-maintenance-mode
251
- msgid "minutes"
252
- msgstr "Minuten"
253
-
254
- #: wp-maintenance-mode.php:633
255
- #@ wp-maintenance-mode
256
- msgid "hours"
257
- msgstr "Stunden"
258
-
259
- #: wp-maintenance-mode.php:637
260
- #@ wp-maintenance-mode
261
- msgid "days"
262
- msgstr "Tagen"
263
-
264
- #: wp-maintenance-mode.php:641
265
- #@ wp-maintenance-mode
266
- msgid "weeks"
267
- msgstr "Wochen"
268
-
269
- #: wp-maintenance-mode.php:649
270
- #@ wp-maintenance-mode
271
- msgid "years"
272
- msgstr "Jahren"
273
 
274
- #: wp-maintenance-mode.php:763
275
- #@ wp-maintenance-mode
276
- msgid "Plugin by:"
277
- msgstr "Plugin von:"
278
 
279
- #: wp-maintenance-mode.php:765
280
- #: wp-maintenance-mode.php:767
281
- #: wp-maintenance-mode.php:769
282
- #: wp-maintenance-mode.php:771
283
- #: wp-maintenance-mode.php:773
284
- #: wp-maintenance-mode.php:775
285
- #: wp-maintenance-mode.php:777
286
- #: wp-maintenance-mode.php:779
287
- #: wp-maintenance-mode.php:781
288
- #: wp-maintenance-mode.php:783
289
- #: wp-maintenance-mode.php:785
290
- #@ wp-maintenance-mode
291
- msgid "Design by:"
292
- msgstr "Design von:"
293
 
294
- #: site.php:12
295
- #: site.php:48
296
- #@ wp-maintenance-mode
297
- msgid "Maintenance Mode"
298
- msgstr "Wartungsmodus"
299
 
300
- #: site.php:62
301
- #@ wp-maintenance-mode
302
- msgid "Admin-Login"
303
- msgstr "Admin-Login"
304
 
305
- #: wp-maintenance-mode.php:382
306
- #@ wp-maintenance-mode
307
  msgid "Title:"
308
  msgstr "Titel:"
309
 
310
- #: wp-maintenance-mode.php:367
311
- #@ wp-maintenance-mode
312
- msgid "URL to the css-file"
313
- msgstr "URL zur css-Datei"
314
-
315
- #: wp-maintenance-mode.php:385
316
- #: wp-maintenance-mode.php:393
317
- #: wp-maintenance-mode.php:401
318
- #@ wp-maintenance-mode
319
  msgid "Leave empty for default."
320
  msgstr "Leer lassen für den Standardtext."
321
 
322
- #: wp-maintenance-mode.php:390
323
- #@ wp-maintenance-mode
324
  msgid "Header:"
325
  msgstr "Header:"
326
 
327
- #: wp-maintenance-mode.php:398
328
- #@ wp-maintenance-mode
329
  msgid "Heading:"
330
  msgstr "Überschrift:"
331
 
332
- #: wp-maintenance-mode.php:337
333
- #@ wp-maintenance-mode
334
- msgid "Please leave a link to the plugin- and design-author on your maintenance mode site."
335
- msgstr "Bitte hinterlasse einen Link zum Plugin- und Design-Autor auf deiner Wartungsmodus-Seite."
336
 
337
- #: wp-maintenance-mode.php:645
338
- #@ wp-maintenance-mode
339
- msgid "months"
340
- msgstr "Monate"
 
341
 
342
- #: site.php:55
343
- #@ wp-maintenance-mode
344
- msgid "Access to the admin area blocked"
345
- msgstr "Zugang zum Admin-Bereich wurde blockiert"
346
 
347
- #: site.php:58
348
- #@ wp-maintenance-mode
349
- msgid "Admin-Logout"
350
- msgstr "Admin-Logout"
351
 
352
- #: wp-maintenance-mode.php:447
353
- #@ wp-maintenance-mode
 
 
 
 
 
354
  msgid "Allowed userrole to see the frontend of this blog."
355
  msgstr "Erlaubte User-Rolle für das Sehen des Frontend von diesem Blog."
356
 
357
- #: wp-maintenance-mode.php:695
358
- #@ wp-maintenance-mode
359
- msgid "Caution: Maintenance mode is <strong>active</strong>!"
360
- msgstr "Achtung: Wartungsmodus ist <strong>aktiv</strong>!"
361
-
362
- #: index.php:5
363
- #@ default
364
- msgid "Cheatin&#8217; uh?"
365
- msgstr ""
366
-
367
- #: wp-maintenance-mode.php:369
368
- #@ wp-maintenance-mode
369
- msgid "<strong>Coution:</strong> Please don&acute;t copy the stylesheet in your plugin folder, it will be deleted on the next automatical update of the plugin!"
370
- msgstr "<strong>Hinweis:</strong> Bitte speichere das Sytelsheet nicht im Plugin-Ordner, der Ordner wird beim automatischen Update ersetzt!"
371
-
372
- #: wp-maintenance-mode.php:374
373
- #: wp-maintenance-mode.php:377
374
- #@ wp-maintenance-mode
375
- msgid "Preview"
376
- msgstr "Vorschau"
377
-
378
- #. translators: plugin header field 'Name'
379
- #: wp-maintenance-mode.php:0
380
- #@ wp-maintenance-mode
381
- msgid "WP Maintenance Mode"
382
- msgstr "WP Maintenance Mode - Wartungsmodus"
383
-
384
- #. translators: plugin header field 'PluginURI'
385
- #: wp-maintenance-mode.php:0
386
- #@ wp-maintenance-mode
387
- msgid "http://bueltge.de/wp-wartungsmodus-plugin/101/"
388
- msgstr ""
389
-
390
- #. translators: plugin header field 'Author'
391
- #: wp-maintenance-mode.php:0
392
- #@ wp-maintenance-mode
393
- msgid "Frank B&uuml;ltge"
394
- msgstr ""
395
-
396
- #. translators: plugin header field 'AuthorURI'
397
- #: wp-maintenance-mode.php:0
398
- #@ wp-maintenance-mode
399
- msgid "http://bueltge.de/"
400
- msgstr ""
401
-
402
- #: wp-maintenance-mode.php:355
403
- #@ wp-maintenance-mode
404
- msgid "Animate (Flash)"
405
- msgstr "Animate (Flash)"
406
-
407
- #: wp-maintenance-mode.php:358
408
- #@ wp-maintenance-mode
409
- msgid "Chemistry"
410
- msgstr "Chemielabor"
411
-
412
- #: wp-maintenance-mode.php:411
413
- #, php-format
414
- #@ wp-maintenance-mode
415
- msgid "Use the first <em>%1$s</em> for the time value or countdown and second <em>%2$s</em> for the unit of the time or countdown-value; HTML and Shortcodes are possible"
416
- msgstr "Nutze das erste %1$s für den Zeitwert oder den Countdown und das zweite %2$s für die Einheit der Zeit oder die Ausgabe des Zeitwert, HTML und Shortcodes sind möglich"
417
-
418
- #. translators: plugin header field 'Version'
419
- #: wp-maintenance-mode.php:0
420
- #@ wp-maintenance-mode
421
- msgid "1.6.7"
422
- msgstr ""
423
-
424
- #: wp-maintenance-mode.php:448
425
- #@ wp-maintenance-mode
426
  msgid "Super Admin has always access."
427
  msgstr "Super Admin hat immer Zugang."
428
 
429
- #: wp-maintenance-mode.php:421
430
- #@ wp-maintenance-mode
431
- msgid "Exclude feed, pages, posts or archives from the maintenance mode. Add the Slug of page or post as a comma-separated list.<br />Example:"
432
- msgstr "Die Ausnahme des Wartungsmodus ist möglich für Inhalte aller Art, auch der Feed. Füge den Titelform (Slug) hinzu, als Komma-Separierte Liste.<br />Beispiel:"
433
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-28 21:56+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
8
  "Language-Team: \n"
9
+ "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 
14
  "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
16
+ "X-Poedit-Basepath: /var/www/wp-plugins/WP-Maintenance-Mode/\n"
17
+ "X-Textdomain-Support: yes\n"
18
  "X-Poedit-SearchPath-0: .\n"
 
19
 
20
+ # @ wp-maintenance-mode
21
+ #: site.php:15
22
+ #: site.php:57
23
+ msgid "Maintenance Mode"
24
+ msgstr "Wartungsmodus"
25
+
26
+ # @ wp-maintenance-mode
27
+ #: site.php:64
28
+ msgid "Access to the admin area blocked"
29
+ msgstr "Zugang zum Admin-Bereich wurde blockiert"
30
+
31
+ # @ wp-maintenance-mode
32
+ #: site.php:67
33
+ msgid "Admin-Logout"
34
+ msgstr "Admin-Logout"
35
+
36
+ # @ wp-maintenance-mode
37
+ #: site.php:71
38
+ msgid "Admin-Login"
39
+ msgstr "Admin-Login"
40
 
41
+ # @ default
42
+ #: index.php:5
43
+ msgid "Cheatin&#8217; uh?"
44
+ msgstr "Mogeln&#8217; was?"
45
+
46
+ # @ default
47
+ #: wp-maintenance-mode.php:208
48
+ #: wp-maintenance-mode.php:218
49
  msgid "Settings"
50
  msgstr "Einstellungen"
51
 
52
+ # @ wp-maintenance-mode
53
+ #: wp-maintenance-mode.php:235
54
+ msgid "Maintenance mode"
55
+ msgstr "Wartungsmodus"
56
+
57
+ #: wp-maintenance-mode.php:236
58
+ #, php-format
59
+ msgid "<p>Sorry for the inconvenience.<br />Our website is currently undergoing scheduled maintenance.<br /><strong>Please try back in %1$s %2$s</strong><br />Thank you for your understanding.</p>"
60
+ msgstr "<p>Es tut uns leid..<br />Auf unserer Site werden aktuelle Wartungsarbeiten durchgeführt.<br /><strong>Bitte besuche uns in %1$s %2$s</strong> wieder.<br />Vielen Dank für das Verständnis.</p>"
61
+
62
+ # @ wp-maintenance-mode
63
+ #: wp-maintenance-mode.php:276
64
+ #: wp-maintenance-mode.php:329
65
+ msgid "Updated"
66
+ msgstr "Gespeichert"
67
+
68
+ # @ wp-maintenance-mode
69
+ #: wp-maintenance-mode.php:429
70
+ msgid "seconds"
71
+ msgstr "Sekunden"
72
+
73
+ # @ wp-maintenance-mode
74
+ #: wp-maintenance-mode.php:433
75
+ msgid "minutes"
76
+ msgstr "Minuten"
77
+
78
+ # @ wp-maintenance-mode
79
+ #: wp-maintenance-mode.php:437
80
+ msgid "hours"
81
+ msgstr "Stunden"
82
+
83
+ # @ wp-maintenance-mode
84
+ #: wp-maintenance-mode.php:441
85
+ msgid "days"
86
+ msgstr "Tagen"
87
+
88
+ # @ wp-maintenance-mode
89
+ #: wp-maintenance-mode.php:445
90
+ msgid "weeks"
91
+ msgstr "Wochen"
92
+
93
+ # @ wp-maintenance-mode
94
+ #: wp-maintenance-mode.php:449
95
+ msgid "months"
96
+ msgstr "Monate"
97
+
98
+ # @ wp-maintenance-mode
99
+ #: wp-maintenance-mode.php:453
100
+ msgid "years"
101
+ msgstr "Jahren"
102
+
103
+ #: wp-maintenance-mode.php:518
104
+ msgid " &amp; WP Super Cache flushed."
105
+ msgstr " &amp; WP Super Cache aktualisiert."
106
+
107
+ #: wp-maintenance-mode.php:524
108
+ msgid " &amp; W3 Total Cache for pages flushed."
109
+ msgstr " &amp; W3 Total Cache für Seiten aktualisiert."
110
+
111
+ # @ wp-maintenance-mode
112
+ #: wp-maintenance-mode.php:527
113
+ #: wp-maintenance-mode.php:807
114
+ msgid "Caution: Maintenance mode is <strong>active</strong>!"
115
+ msgstr "Achtung: Wartungsmodus ist <strong>aktiv</strong>!"
116
+
117
+ # @ wp-maintenance-mode
118
+ #: wp-maintenance-mode.php:529
119
+ #: wp-maintenance-mode.php:533
120
+ msgid "Deactivate or change Settings"
121
+ msgstr "Deaktivieren oder Einstellungen ändern "
122
+
123
+ # @ wp-maintenance-mode
124
+ #: wp-maintenance-mode.php:604
125
+ msgid "Plugin by:"
126
+ msgstr "Plugin von:"
127
+
128
+ # @ wp-maintenance-mode
129
+ #: wp-maintenance-mode.php:606
130
+ #: wp-maintenance-mode.php:608
131
+ #: wp-maintenance-mode.php:610
132
+ #: wp-maintenance-mode.php:612
133
+ #: wp-maintenance-mode.php:614
134
+ #: wp-maintenance-mode.php:616
135
+ #: wp-maintenance-mode.php:618
136
+ #: wp-maintenance-mode.php:620
137
+ #: wp-maintenance-mode.php:622
138
+ #: wp-maintenance-mode.php:624
139
+ #: wp-maintenance-mode.php:626
140
+ msgid "Design by:"
141
+ msgstr "Design von:"
142
+
143
+ # @ wp-maintenance-mode
144
+ #: inc/wp-maintenance-mode-settings.php:37
145
+ #: inc/wp-maintenance-mode-settings.php:272
146
  #, php-format
 
147
  msgid "Plugin %s settings <strong>updated</strong>."
148
  msgstr "Plugin %s Einstellungen <strong>gespeichert</strong>."
149
 
150
+ # @ wp-maintenance-mode
151
+ #: inc/wp-maintenance-mode-settings.php:40
152
+ #: inc/wp-maintenance-mode-settings.php:53
153
  #, php-format
 
154
  msgid "Plugin %s active status <strong>updated</strong>."
155
  msgstr "Plugin %s aktiv-status <strong>aktualisiert</strong>."
156
 
157
+ # @ wp-maintenance-mode
158
+ #: inc/wp-maintenance-mode-settings.php:43
159
  msgid "Plugin Activate"
160
  msgstr "Plugin aktivieren"
161
 
162
+ # @ wp-maintenance-mode
163
+ #: inc/wp-maintenance-mode-settings.php:47
164
+ #: inc/wp-maintenance-mode-settings.php:66
165
+ #: inc/wp-maintenance-mode-settings.php:110
166
+ #: inc/wp-maintenance-mode-settings.php:123
167
+ #: inc/wp-maintenance-mode-settings.php:176
168
  msgid "False"
169
  msgstr "Nein"
170
 
171
+ # @ wp-maintenance-mode
172
+ #: inc/wp-maintenance-mode-settings.php:48
173
+ #: inc/wp-maintenance-mode-settings.php:67
174
+ #: inc/wp-maintenance-mode-settings.php:111
175
+ #: inc/wp-maintenance-mode-settings.php:124
176
+ #: inc/wp-maintenance-mode-settings.php:177
177
  msgid "True"
178
  msgstr "Ja"
179
 
180
+ # @ wp-maintenance-mode
181
+ #: inc/wp-maintenance-mode-settings.php:50
182
  msgid "Update"
183
  msgstr "Aktualisieren"
184
 
185
+ # @ wp-maintenance-mode
186
+ #: inc/wp-maintenance-mode-settings.php:56
187
  msgid "Plugin Settings"
188
  msgstr "Plugin Einstellungen"
189
 
190
+ # @ wp-maintenance-mode
191
+ #: inc/wp-maintenance-mode-settings.php:62
192
  msgid "Countdown:"
193
  msgstr "Countdown:"
194
 
195
+ # @ wp-maintenance-mode
196
+ #: inc/wp-maintenance-mode-settings.php:73
197
+ #: inc/wp-maintenance-mode-settings.php:76
198
  msgid "Click for datepicker"
199
  msgstr "Klick für den Datums-Picker"
200
 
201
+ # @ wp-maintenance-mode
202
+ #: inc/wp-maintenance-mode-settings.php:73
203
  msgid "Date:"
204
  msgstr "Datum:"
205
 
206
+ # @ wp-maintenance-mode
207
+ #: inc/wp-maintenance-mode-settings.php:77
208
  msgid "Activate countdown for using this. Use value and unit or use the countdown and set the date."
209
  msgstr "Aktiviere den Countdown um ihn zu nutzen. Vergebe Wert und Einheit oder wähle ein Datum für den Countdown."
210
 
211
+ # @ wp-maintenance-mode
212
+ #: inc/wp-maintenance-mode-settings.php:82
213
  msgid "Value:"
214
  msgstr "Wert:"
215
 
216
+ # @ wp-maintenance-mode
217
+ #: inc/wp-maintenance-mode-settings.php:90
218
  msgid "Unit:"
219
  msgstr "Einheit:"
220
 
221
+ # @ wp-maintenance-mode
222
+ #: inc/wp-maintenance-mode-settings.php:94
223
  msgid "second"
224
  msgstr "sekunde"
225
 
226
+ # @ wp-maintenance-mode
227
+ #: inc/wp-maintenance-mode-settings.php:95
228
  msgid "minute"
229
  msgstr "minute"
230
 
231
+ # @ wp-maintenance-mode
232
+ #: inc/wp-maintenance-mode-settings.php:96
233
  msgid "hour"
234
  msgstr "stunde"
235
 
236
+ # @ wp-maintenance-mode
237
+ #: inc/wp-maintenance-mode-settings.php:97
238
  msgid "day"
239
  msgstr "tag"
240
 
241
+ # @ wp-maintenance-mode
242
+ #: inc/wp-maintenance-mode-settings.php:98
243
  msgid "week"
244
  msgstr "woche"
245
 
246
+ # @ wp-maintenance-mode
247
+ #: inc/wp-maintenance-mode-settings.php:99
248
  msgid "month"
249
  msgstr "monat"
250
 
251
+ # @ wp-maintenance-mode
252
+ #: inc/wp-maintenance-mode-settings.php:100
253
  msgid "year"
254
  msgstr "jahr"
255
 
256
+ # @ wp-maintenance-mode
257
+ #: inc/wp-maintenance-mode-settings.php:106
258
  msgid "Link:"
259
  msgstr "Link:"
260
 
261
+ # @ wp-maintenance-mode
262
+ #: inc/wp-maintenance-mode-settings.php:114
263
+ msgid "Please leave a link to the plugin- and design-author on your maintenance mode site."
264
+ msgstr "Bitte hinterlasse einen Link zum Plugin- und Design-Autor auf deiner Wartungsmodus-Seite."
265
+
266
+ # @ wp-maintenance-mode
267
+ #: inc/wp-maintenance-mode-settings.php:119
268
+ msgid "Admin Link:"
269
+ msgstr "Admin Link:"
270
+
271
+ #: inc/wp-maintenance-mode-settings.php:127
272
+ msgid "Do you will a link to the admin area of your install?"
273
+ msgstr "Willst du einen Link zum Admin Bereich dieser Installation?"
274
+
275
+ # @ wp-maintenance-mode
276
+ #: inc/wp-maintenance-mode-settings.php:132
277
  msgid "Theme:"
278
  msgstr "Theme:"
279
 
280
+ # @ wp-maintenance-mode
281
+ #: inc/wp-maintenance-mode-settings.php:136
282
  msgid "Own Style"
283
  msgstr "Eigenes Design"
284
 
285
+ # @ wp-maintenance-mode
286
+ #: inc/wp-maintenance-mode-settings.php:137
287
  msgid "Simple Text"
288
  msgstr "Einfach Text"
289
 
290
+ # @ wp-maintenance-mode
291
+ #: inc/wp-maintenance-mode-settings.php:138
292
  msgid "The Truck"
293
  msgstr "Der Truck"
294
 
295
+ # @ wp-maintenance-mode
296
+ #: inc/wp-maintenance-mode-settings.php:139
297
  msgid "The Sun"
298
  msgstr "The Sun"
299
 
300
+ # @ wp-maintenance-mode
301
+ #: inc/wp-maintenance-mode-settings.php:140
302
  msgid "The FF Error"
303
  msgstr "The FF Error"
304
 
305
+ # @ wp-maintenance-mode
306
+ #: inc/wp-maintenance-mode-settings.php:141
307
  msgid "Monster"
308
  msgstr "Monster"
309
 
310
+ # @ wp-maintenance-mode
311
+ #: inc/wp-maintenance-mode-settings.php:142
312
  msgid "Chastely"
313
  msgstr "Chastely"
314
 
315
+ # @ wp-maintenance-mode
316
+ #: inc/wp-maintenance-mode-settings.php:143
317
  msgid "Only Typo"
318
  msgstr "Only Typo"
319
 
320
+ # @ wp-maintenance-mode
321
+ #: inc/wp-maintenance-mode-settings.php:144
322
  msgid "Paint"
323
  msgstr "Paint"
324
 
325
+ # @ wp-maintenance-mode
326
+ #: inc/wp-maintenance-mode-settings.php:145
327
+ msgid "Animate (Flash)"
328
+ msgstr "Animate (Flash)"
329
+
330
+ # @ wp-maintenance-mode
331
+ #: inc/wp-maintenance-mode-settings.php:146
332
  msgid "Damask"
333
  msgstr "Damask"
334
 
335
+ # @ wp-maintenance-mode
336
+ #: inc/wp-maintenance-mode-settings.php:147
337
  msgid "Lego"
338
  msgstr "Lego"
339
 
340
+ # @ wp-maintenance-mode
341
+ #: inc/wp-maintenance-mode-settings.php:148
342
+ msgid "Chemistry"
343
+ msgstr "Chemielabor"
344
+
345
+ # @ wp-maintenance-mode
346
+ #: inc/wp-maintenance-mode-settings.php:154
347
  msgid "Own Style URL (incl. http://):"
348
  msgstr "Eigene Design URL (inkl. http://)"
349
 
350
+ # @ wp-maintenance-mode
351
+ #: inc/wp-maintenance-mode-settings.php:157
352
+ msgid "URL to the css-file"
353
+ msgstr "URL zur css-Datei"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
354
 
355
+ # @ wp-maintenance-mode
356
+ #: inc/wp-maintenance-mode-settings.php:159
357
+ msgid "<strong>Coution:</strong> Please don&acute;t copy the stylesheet in your plugin folder, it will be deleted on the next automatical update of the plugin!"
358
+ msgstr "<strong>Hinweis:</strong> Bitte speichere das Sytelsheet nicht im Plugin-Ordner, der Ordner wird beim automatischen Update ersetzt!"
359
 
360
+ # @ wp-maintenance-mode
361
+ #: inc/wp-maintenance-mode-settings.php:164
362
+ #: inc/wp-maintenance-mode-settings.php:167
363
+ msgid "Preview"
364
+ msgstr "Vorschau"
 
 
 
 
 
 
 
 
 
365
 
366
+ #: inc/wp-maintenance-mode-settings.php:172
367
+ msgid "noindex, nofollow:"
368
+ msgstr "noindex, nofollow:"
 
 
369
 
370
+ #: inc/wp-maintenance-mode-settings.php:180
371
+ msgid "The robots meta tag lets you utilize a granular, page-specific approach to controlling how an individual page should be indexed and served to users in search results. Set TRUE for noindex, nofollow; set FALSE for index, follow."
372
+ msgstr "Der robots meta Tag gibt die Möglichkeit die Indizierung der Site durch Suchmaschinen zu steuern. Wähle den Wert, der auf Wartungsseite genutzt werden soll. Setze Ja für nonidex, nofollow; setze Nein für index, follow."
 
373
 
374
+ # @ wp-maintenance-mode
375
+ #: inc/wp-maintenance-mode-settings.php:185
376
  msgid "Title:"
377
  msgstr "Titel:"
378
 
379
+ # @ wp-maintenance-mode
380
+ #: inc/wp-maintenance-mode-settings.php:188
381
+ #: inc/wp-maintenance-mode-settings.php:196
382
+ #: inc/wp-maintenance-mode-settings.php:204
 
 
 
 
 
383
  msgid "Leave empty for default."
384
  msgstr "Leer lassen für den Standardtext."
385
 
386
+ # @ wp-maintenance-mode
387
+ #: inc/wp-maintenance-mode-settings.php:193
388
  msgid "Header:"
389
  msgstr "Header:"
390
 
391
+ # @ wp-maintenance-mode
392
+ #: inc/wp-maintenance-mode-settings.php:201
393
  msgid "Heading:"
394
  msgstr "Überschrift:"
395
 
396
+ # @ wp-maintenance-mode
397
+ #: inc/wp-maintenance-mode-settings.php:209
398
+ msgid "Text:"
399
+ msgstr "Text:"
400
 
401
+ # @ wp-maintenance-mode
402
+ #: inc/wp-maintenance-mode-settings.php:214
403
+ #, php-format
404
+ msgid "Use the first <em>%1$s</em> for the time value or countdown and second <em>%2$s</em> for the unit of the time or countdown-value; HTML and Shortcodes are possible"
405
+ msgstr "Nutze das erste %1$s für den Zeitwert oder den Countdown und das zweite %2$s für die Einheit der Zeit oder die Ausgabe des Zeitwert, HTML und Shortcodes sind möglich"
406
 
407
+ # @ wp-maintenance-mode
408
+ #: inc/wp-maintenance-mode-settings.php:219
409
+ msgid "Excludes:"
410
+ msgstr "Ausnahmen:"
411
 
412
+ # @ wp-maintenance-mode
413
+ #: inc/wp-maintenance-mode-settings.php:235
414
+ msgid "Exclude feed, pages, posts, archives or IPs from the maintenance mode. Add the Slug of page or post as a comma-separated list.<br />Example:"
415
+ msgstr "Die Ausnahme des Wartungsmodus ist möglich für Inhalte aller Art, auch der Feed. Füge den Titelform (Slug) hinzu, als Komma-Separierte Liste.<br />Beispiel:"
416
 
417
+ # @ wp-maintenance-mode
418
+ #: inc/wp-maintenance-mode-settings.php:240
419
+ msgid "Role:"
420
+ msgstr "Rolle:"
421
+
422
+ # @ wp-maintenance-mode
423
+ #: inc/wp-maintenance-mode-settings.php:265
424
  msgid "Allowed userrole to see the frontend of this blog."
425
  msgstr "Erlaubte User-Rolle für das Sehen des Frontend von diesem Blog."
426
 
427
+ # @ wp-maintenance-mode
428
+ #: inc/wp-maintenance-mode-settings.php:266
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
429
  msgid "Super Admin has always access."
430
  msgstr "Super Admin hat immer Zugang."
431
 
432
+ # @ wp-maintenance-mode
433
+ #: inc/wp-maintenance-mode-settings.php:275
434
+ msgid "Save"
435
+ msgstr "Speichern"
436
 
languages/wp-maintenance-mode-xx_XX.pot CHANGED
@@ -2,432 +2,435 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-01-04 12:57+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
8
  "Language-Team: \n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: \n"
14
- "X-Poedit-Country: \n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
- "X-Poedit-Basepath: d:/xampp/htdocs/wpbeta/wp-content/plugins/wartungsmodus/\n"
18
- "X-Poedit-Bookmarks: \n"
19
  "X-Poedit-SearchPath-0: .\n"
20
- "X-Textdomain-Support: yes"
21
 
22
- #. translators: plugin header field 'Description'
23
- #: wp-maintenance-mode.php:0
24
- #@ wp-maintenance-mode
25
- msgid "The plugin adds a splash page to your blog that lets visitors know your blog is down for maintenance. Logged in users get full access to the blog including the front-end, depends of the settings."
26
- msgstr "Das Plugin fügt eine statische Seite in deinem Blog ein und lässt Besucher wissen, dass Wartungsarbeiten durchgeführt werden. Eingeloggte Nutzer können das Frontend je nach Einstellungen der Rechte uneingeschränkt nutzen."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
 
28
- #: wp-maintenance-mode.php:160
29
- #@ default
 
 
 
 
 
 
30
  msgid "Settings"
31
  msgstr "Einstellungen"
32
 
33
- #: wp-maintenance-mode.php:260
34
- #: wp-maintenance-mode.php:454
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  #, php-format
36
- #@ wp-maintenance-mode
37
  msgid "Plugin %s settings <strong>updated</strong>."
38
  msgstr "Plugin %s Einstellungen <strong>gespeichert</strong>."
39
 
40
- #: wp-maintenance-mode.php:263
41
- #: wp-maintenance-mode.php:276
 
42
  #, php-format
43
- #@ wp-maintenance-mode
44
  msgid "Plugin %s active status <strong>updated</strong>."
45
  msgstr "Plugin %s aktiv-status <strong>aktualisiert</strong>."
46
 
47
- #: wp-maintenance-mode.php:266
48
- #@ wp-maintenance-mode
49
  msgid "Plugin Activate"
50
  msgstr "Plugin aktivieren"
51
 
52
- #: wp-maintenance-mode.php:270
53
- #: wp-maintenance-mode.php:289
54
- #: wp-maintenance-mode.php:333
55
- #@ wp-maintenance-mode
 
 
56
  msgid "False"
57
  msgstr "Nein"
58
 
59
- #: wp-maintenance-mode.php:271
60
- #: wp-maintenance-mode.php:290
61
- #: wp-maintenance-mode.php:334
62
- #@ wp-maintenance-mode
 
 
63
  msgid "True"
64
  msgstr "Ja"
65
 
66
- #: wp-maintenance-mode.php:273
67
- #@ wp-maintenance-mode
68
  msgid "Update"
69
  msgstr "Aktualisieren"
70
 
71
- #: wp-maintenance-mode.php:279
72
- #@ wp-maintenance-mode
73
  msgid "Plugin Settings"
74
  msgstr "Plugin Einstellungen"
75
 
76
- #: wp-maintenance-mode.php:285
77
- #@ wp-maintenance-mode
78
  msgid "Countdown:"
79
  msgstr "Countdown:"
80
 
81
- #: wp-maintenance-mode.php:296
82
- #: wp-maintenance-mode.php:299
83
- #@ wp-maintenance-mode
84
  msgid "Click for datepicker"
85
  msgstr "Klick für den Datums-Picker"
86
 
87
- #: wp-maintenance-mode.php:296
88
- #@ wp-maintenance-mode
89
  msgid "Date:"
90
  msgstr "Datum:"
91
 
92
- #: wp-maintenance-mode.php:300
93
- #@ wp-maintenance-mode
94
  msgid "Activate countdown for using this. Use value and unit or use the countdown and set the date."
95
  msgstr "Aktiviere den Countdown um ihn zu nutzen. Vergebe Wert und Einheit oder wähle ein Datum für den Countdown."
96
 
97
- #: wp-maintenance-mode.php:305
98
- #@ wp-maintenance-mode
99
  msgid "Value:"
100
  msgstr "Wert:"
101
 
102
- #: wp-maintenance-mode.php:313
103
- #@ wp-maintenance-mode
104
  msgid "Unit:"
105
  msgstr "Einheit:"
106
 
107
- #: wp-maintenance-mode.php:317
108
- #@ wp-maintenance-mode
109
  msgid "second"
110
  msgstr "sekunde"
111
 
112
- #: wp-maintenance-mode.php:318
113
- #@ wp-maintenance-mode
114
  msgid "minute"
115
  msgstr "minute"
116
 
117
- #: wp-maintenance-mode.php:319
118
- #@ wp-maintenance-mode
119
  msgid "hour"
120
  msgstr "stunde"
121
 
122
- #: wp-maintenance-mode.php:320
123
- #@ wp-maintenance-mode
124
  msgid "day"
125
  msgstr "tag"
126
 
127
- #: wp-maintenance-mode.php:321
128
- #@ wp-maintenance-mode
129
  msgid "week"
130
  msgstr "woche"
131
 
132
- #: wp-maintenance-mode.php:322
133
- #@ wp-maintenance-mode
134
  msgid "month"
135
  msgstr "monat"
136
 
137
- #: wp-maintenance-mode.php:323
138
- #@ wp-maintenance-mode
139
  msgid "year"
140
  msgstr "jahr"
141
 
142
- #: wp-maintenance-mode.php:329
143
- #@ wp-maintenance-mode
144
  msgid "Link:"
145
  msgstr "Link:"
146
 
147
- #: wp-maintenance-mode.php:342
148
- #@ wp-maintenance-mode
 
 
 
 
 
 
 
 
 
 
 
 
 
 
149
  msgid "Theme:"
150
  msgstr "Theme:"
151
 
152
- #: wp-maintenance-mode.php:346
153
- #@ wp-maintenance-mode
154
  msgid "Own Style"
155
  msgstr "Eigenes Design"
156
 
157
- #: wp-maintenance-mode.php:347
158
- #@ wp-maintenance-mode
159
  msgid "Simple Text"
160
  msgstr "Einfach Text"
161
 
162
- #: wp-maintenance-mode.php:348
163
- #@ wp-maintenance-mode
164
  msgid "The Truck"
165
  msgstr "Der Truck"
166
 
167
- #: wp-maintenance-mode.php:349
168
- #@ wp-maintenance-mode
169
  msgid "The Sun"
170
  msgstr "The Sun"
171
 
172
- #: wp-maintenance-mode.php:350
173
- #@ wp-maintenance-mode
174
  msgid "The FF Error"
175
  msgstr "The FF Error"
176
 
177
- #: wp-maintenance-mode.php:351
178
- #@ wp-maintenance-mode
179
  msgid "Monster"
180
  msgstr "Monster"
181
 
182
- #: wp-maintenance-mode.php:352
183
- #@ wp-maintenance-mode
184
  msgid "Chastely"
185
  msgstr "Chastely"
186
 
187
- #: wp-maintenance-mode.php:353
188
- #@ wp-maintenance-mode
189
  msgid "Only Typo"
190
  msgstr "Only Typo"
191
 
192
- #: wp-maintenance-mode.php:354
193
- #@ wp-maintenance-mode
194
  msgid "Paint"
195
  msgstr "Paint"
196
 
197
- #: wp-maintenance-mode.php:356
198
- #@ wp-maintenance-mode
 
 
 
 
 
199
  msgid "Damask"
200
  msgstr "Damask"
201
 
202
- #: wp-maintenance-mode.php:357
203
- #@ wp-maintenance-mode
204
  msgid "Lego"
205
  msgstr "Lego"
206
 
207
- #: wp-maintenance-mode.php:364
208
- #@ wp-maintenance-mode
 
 
 
 
 
209
  msgid "Own Style URL (incl. http://):"
210
  msgstr "Eigene Design URL (inkl. http://)"
211
 
212
- #: wp-maintenance-mode.php:406
213
- #@ wp-maintenance-mode
214
- msgid "Text:"
215
- msgstr "Text:"
216
-
217
- #: wp-maintenance-mode.php:416
218
- #@ wp-maintenance-mode
219
- msgid "Excludes:"
220
- msgstr "Ausnahmen:"
221
-
222
- #: wp-maintenance-mode.php:426
223
- #@ wp-maintenance-mode
224
- msgid "Role:"
225
- msgstr "Rolle:"
226
-
227
- #: wp-maintenance-mode.php:457
228
- #@ wp-maintenance-mode
229
- msgid "Save"
230
- msgstr "Speichern"
231
-
232
- #: wp-maintenance-mode.php:502
233
- #: wp-maintenance-mode.php:545
234
- #@ wp-maintenance-mode
235
- msgid "Updated"
236
- msgstr "Gespeichert"
237
-
238
- #: wp-maintenance-mode.php:697
239
- #: wp-maintenance-mode.php:699
240
- #@ wp-maintenance-mode
241
- msgid "Deactivate or change Settings"
242
- msgstr "Deaktivieren oder Einstellungen ändern "
243
-
244
- #: wp-maintenance-mode.php:625
245
- #@ wp-maintenance-mode
246
- msgid "seconds"
247
- msgstr "Sekunden"
248
-
249
- #: wp-maintenance-mode.php:629
250
- #@ wp-maintenance-mode
251
- msgid "minutes"
252
- msgstr "Minuten"
253
-
254
- #: wp-maintenance-mode.php:633
255
- #@ wp-maintenance-mode
256
- msgid "hours"
257
- msgstr "Stunden"
258
-
259
- #: wp-maintenance-mode.php:637
260
- #@ wp-maintenance-mode
261
- msgid "days"
262
- msgstr "Tagen"
263
-
264
- #: wp-maintenance-mode.php:641
265
- #@ wp-maintenance-mode
266
- msgid "weeks"
267
- msgstr "Wochen"
268
-
269
- #: wp-maintenance-mode.php:649
270
- #@ wp-maintenance-mode
271
- msgid "years"
272
- msgstr "Jahren"
273
 
274
- #: wp-maintenance-mode.php:763
275
- #@ wp-maintenance-mode
276
- msgid "Plugin by:"
277
- msgstr "Plugin von:"
278
 
279
- #: wp-maintenance-mode.php:765
280
- #: wp-maintenance-mode.php:767
281
- #: wp-maintenance-mode.php:769
282
- #: wp-maintenance-mode.php:771
283
- #: wp-maintenance-mode.php:773
284
- #: wp-maintenance-mode.php:775
285
- #: wp-maintenance-mode.php:777
286
- #: wp-maintenance-mode.php:779
287
- #: wp-maintenance-mode.php:781
288
- #: wp-maintenance-mode.php:783
289
- #: wp-maintenance-mode.php:785
290
- #@ wp-maintenance-mode
291
- msgid "Design by:"
292
- msgstr "Design von:"
293
 
294
- #: site.php:12
295
- #: site.php:48
296
- #@ wp-maintenance-mode
297
- msgid "Maintenance Mode"
298
- msgstr "Wartungsmodus"
299
 
300
- #: site.php:62
301
- #@ wp-maintenance-mode
302
- msgid "Admin-Login"
303
- msgstr "Admin-Login"
304
 
305
- #: wp-maintenance-mode.php:382
306
- #@ wp-maintenance-mode
307
  msgid "Title:"
308
  msgstr "Titel:"
309
 
310
- #: wp-maintenance-mode.php:367
311
- #@ wp-maintenance-mode
312
- msgid "URL to the css-file"
313
- msgstr "URL zur css-Datei"
314
-
315
- #: wp-maintenance-mode.php:385
316
- #: wp-maintenance-mode.php:393
317
- #: wp-maintenance-mode.php:401
318
- #@ wp-maintenance-mode
319
  msgid "Leave empty for default."
320
  msgstr "Leer lassen für den Standardtext."
321
 
322
- #: wp-maintenance-mode.php:390
323
- #@ wp-maintenance-mode
324
  msgid "Header:"
325
  msgstr "Header:"
326
 
327
- #: wp-maintenance-mode.php:398
328
- #@ wp-maintenance-mode
329
  msgid "Heading:"
330
  msgstr "Überschrift:"
331
 
332
- #: wp-maintenance-mode.php:337
333
- #@ wp-maintenance-mode
334
- msgid "Please leave a link to the plugin- and design-author on your maintenance mode site."
335
- msgstr "Bitte hinterlasse einen Link zum Plugin- und Design-Autor auf deiner Wartungsmodus-Seite."
336
 
337
- #: wp-maintenance-mode.php:645
338
- #@ wp-maintenance-mode
339
- msgid "months"
340
- msgstr "Monate"
 
341
 
342
- #: site.php:55
343
- #@ wp-maintenance-mode
344
- msgid "Access to the admin area blocked"
345
- msgstr "Zugang zum Admin-Bereich wurde blockiert"
346
 
347
- #: site.php:58
348
- #@ wp-maintenance-mode
349
- msgid "Admin-Logout"
350
- msgstr "Admin-Logout"
351
 
352
- #: wp-maintenance-mode.php:447
353
- #@ wp-maintenance-mode
 
 
 
 
 
354
  msgid "Allowed userrole to see the frontend of this blog."
355
  msgstr "Erlaubte User-Rolle für das Sehen des Frontend von diesem Blog."
356
 
357
- #: wp-maintenance-mode.php:695
358
- #@ wp-maintenance-mode
359
- msgid "Caution: Maintenance mode is <strong>active</strong>!"
360
- msgstr "Achtung: Wartungsmodus ist <strong>aktiv</strong>!"
361
-
362
- #: index.php:5
363
- #@ default
364
- msgid "Cheatin&#8217; uh?"
365
- msgstr ""
366
-
367
- #: wp-maintenance-mode.php:369
368
- #@ wp-maintenance-mode
369
- msgid "<strong>Coution:</strong> Please don&acute;t copy the stylesheet in your plugin folder, it will be deleted on the next automatical update of the plugin!"
370
- msgstr "<strong>Hinweis:</strong> Bitte speichere das Sytelsheet nicht im Plugin-Ordner, der Ordner wird beim automatischen Update ersetzt!"
371
-
372
- #: wp-maintenance-mode.php:374
373
- #: wp-maintenance-mode.php:377
374
- #@ wp-maintenance-mode
375
- msgid "Preview"
376
- msgstr "Vorschau"
377
-
378
- #. translators: plugin header field 'Name'
379
- #: wp-maintenance-mode.php:0
380
- #@ wp-maintenance-mode
381
- msgid "WP Maintenance Mode"
382
- msgstr "WP Maintenance Mode - Wartungsmodus"
383
-
384
- #. translators: plugin header field 'PluginURI'
385
- #: wp-maintenance-mode.php:0
386
- #@ wp-maintenance-mode
387
- msgid "http://bueltge.de/wp-wartungsmodus-plugin/101/"
388
- msgstr ""
389
-
390
- #. translators: plugin header field 'Author'
391
- #: wp-maintenance-mode.php:0
392
- #@ wp-maintenance-mode
393
- msgid "Frank B&uuml;ltge"
394
- msgstr ""
395
-
396
- #. translators: plugin header field 'AuthorURI'
397
- #: wp-maintenance-mode.php:0
398
- #@ wp-maintenance-mode
399
- msgid "http://bueltge.de/"
400
- msgstr ""
401
-
402
- #: wp-maintenance-mode.php:355
403
- #@ wp-maintenance-mode
404
- msgid "Animate (Flash)"
405
- msgstr "Animate (Flash)"
406
-
407
- #: wp-maintenance-mode.php:358
408
- #@ wp-maintenance-mode
409
- msgid "Chemistry"
410
- msgstr "Chemielabor"
411
-
412
- #: wp-maintenance-mode.php:411
413
- #, php-format
414
- #@ wp-maintenance-mode
415
- msgid "Use the first <em>%1$s</em> for the time value or countdown and second <em>%2$s</em> for the unit of the time or countdown-value; HTML and Shortcodes are possible"
416
- msgstr "Nutze das erste %1$s für den Zeitwert oder den Countdown und das zweite %2$s für die Einheit der Zeit oder die Ausgabe des Zeitwert, HTML und Shortcodes sind möglich"
417
-
418
- #. translators: plugin header field 'Version'
419
- #: wp-maintenance-mode.php:0
420
- #@ wp-maintenance-mode
421
- msgid "1.6.7"
422
- msgstr ""
423
-
424
- #: wp-maintenance-mode.php:448
425
- #@ wp-maintenance-mode
426
  msgid "Super Admin has always access."
427
  msgstr "Super Admin hat immer Zugang."
428
 
429
- #: wp-maintenance-mode.php:421
430
- #@ wp-maintenance-mode
431
- msgid "Exclude feed, pages, posts or archives from the maintenance mode. Add the Slug of page or post as a comma-separated list.<br />Example:"
432
- msgstr "Die Ausnahme des Wartungsmodus ist möglich für Inhalte aller Art, auch der Feed. Füge den Titelform (Slug) hinzu, als Komma-Separierte Liste.<br />Beispiel:"
433
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-28 21:56+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
8
  "Language-Team: \n"
9
+ "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 
14
  "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
16
+ "X-Poedit-Basepath: /var/www/wp-plugins/WP-Maintenance-Mode/\n"
17
+ "X-Textdomain-Support: yes\n"
18
  "X-Poedit-SearchPath-0: .\n"
 
19
 
20
+ # @ wp-maintenance-mode
21
+ #: site.php:15
22
+ #: site.php:57
23
+ msgid "Maintenance Mode"
24
+ msgstr "Wartungsmodus"
25
+
26
+ # @ wp-maintenance-mode
27
+ #: site.php:64
28
+ msgid "Access to the admin area blocked"
29
+ msgstr "Zugang zum Admin-Bereich wurde blockiert"
30
+
31
+ # @ wp-maintenance-mode
32
+ #: site.php:67
33
+ msgid "Admin-Logout"
34
+ msgstr "Admin-Logout"
35
+
36
+ # @ wp-maintenance-mode
37
+ #: site.php:71
38
+ msgid "Admin-Login"
39
+ msgstr "Admin-Login"
40
 
41
+ # @ default
42
+ #: index.php:5
43
+ msgid "Cheatin&#8217; uh?"
44
+ msgstr "Mogeln&#8217; was?"
45
+
46
+ # @ default
47
+ #: wp-maintenance-mode.php:208
48
+ #: wp-maintenance-mode.php:218
49
  msgid "Settings"
50
  msgstr "Einstellungen"
51
 
52
+ # @ wp-maintenance-mode
53
+ #: wp-maintenance-mode.php:235
54
+ msgid "Maintenance mode"
55
+ msgstr "Wartungsmodus"
56
+
57
+ #: wp-maintenance-mode.php:236
58
+ #, php-format
59
+ msgid "<p>Sorry for the inconvenience.<br />Our website is currently undergoing scheduled maintenance.<br /><strong>Please try back in %1$s %2$s</strong><br />Thank you for your understanding.</p>"
60
+ msgstr "<p>Es tut uns leid..<br />Auf unserer Site werden aktuelle Wartungsarbeiten durchgeführt.<br /><strong>Bitte besuche uns in %1$s %2$s</strong> wieder.<br />Vielen Dank für das Verständnis.</p>"
61
+
62
+ # @ wp-maintenance-mode
63
+ #: wp-maintenance-mode.php:276
64
+ #: wp-maintenance-mode.php:329
65
+ msgid "Updated"
66
+ msgstr "Gespeichert"
67
+
68
+ # @ wp-maintenance-mode
69
+ #: wp-maintenance-mode.php:429
70
+ msgid "seconds"
71
+ msgstr "Sekunden"
72
+
73
+ # @ wp-maintenance-mode
74
+ #: wp-maintenance-mode.php:433
75
+ msgid "minutes"
76
+ msgstr "Minuten"
77
+
78
+ # @ wp-maintenance-mode
79
+ #: wp-maintenance-mode.php:437
80
+ msgid "hours"
81
+ msgstr "Stunden"
82
+
83
+ # @ wp-maintenance-mode
84
+ #: wp-maintenance-mode.php:441
85
+ msgid "days"
86
+ msgstr "Tagen"
87
+
88
+ # @ wp-maintenance-mode
89
+ #: wp-maintenance-mode.php:445
90
+ msgid "weeks"
91
+ msgstr "Wochen"
92
+
93
+ # @ wp-maintenance-mode
94
+ #: wp-maintenance-mode.php:449
95
+ msgid "months"
96
+ msgstr "Monate"
97
+
98
+ # @ wp-maintenance-mode
99
+ #: wp-maintenance-mode.php:453
100
+ msgid "years"
101
+ msgstr "Jahren"
102
+
103
+ #: wp-maintenance-mode.php:518
104
+ msgid " &amp; WP Super Cache flushed."
105
+ msgstr " &amp; WP Super Cache aktualisiert."
106
+
107
+ #: wp-maintenance-mode.php:524
108
+ msgid " &amp; W3 Total Cache for pages flushed."
109
+ msgstr " &amp; W3 Total Cache für Seiten aktualisiert."
110
+
111
+ # @ wp-maintenance-mode
112
+ #: wp-maintenance-mode.php:527
113
+ #: wp-maintenance-mode.php:807
114
+ msgid "Caution: Maintenance mode is <strong>active</strong>!"
115
+ msgstr "Achtung: Wartungsmodus ist <strong>aktiv</strong>!"
116
+
117
+ # @ wp-maintenance-mode
118
+ #: wp-maintenance-mode.php:529
119
+ #: wp-maintenance-mode.php:533
120
+ msgid "Deactivate or change Settings"
121
+ msgstr "Deaktivieren oder Einstellungen ändern "
122
+
123
+ # @ wp-maintenance-mode
124
+ #: wp-maintenance-mode.php:604
125
+ msgid "Plugin by:"
126
+ msgstr "Plugin von:"
127
+
128
+ # @ wp-maintenance-mode
129
+ #: wp-maintenance-mode.php:606
130
+ #: wp-maintenance-mode.php:608
131
+ #: wp-maintenance-mode.php:610
132
+ #: wp-maintenance-mode.php:612
133
+ #: wp-maintenance-mode.php:614
134
+ #: wp-maintenance-mode.php:616
135
+ #: wp-maintenance-mode.php:618
136
+ #: wp-maintenance-mode.php:620
137
+ #: wp-maintenance-mode.php:622
138
+ #: wp-maintenance-mode.php:624
139
+ #: wp-maintenance-mode.php:626
140
+ msgid "Design by:"
141
+ msgstr "Design von:"
142
+
143
+ # @ wp-maintenance-mode
144
+ #: inc/wp-maintenance-mode-settings.php:37
145
+ #: inc/wp-maintenance-mode-settings.php:272
146
  #, php-format
 
147
  msgid "Plugin %s settings <strong>updated</strong>."
148
  msgstr "Plugin %s Einstellungen <strong>gespeichert</strong>."
149
 
150
+ # @ wp-maintenance-mode
151
+ #: inc/wp-maintenance-mode-settings.php:40
152
+ #: inc/wp-maintenance-mode-settings.php:53
153
  #, php-format
 
154
  msgid "Plugin %s active status <strong>updated</strong>."
155
  msgstr "Plugin %s aktiv-status <strong>aktualisiert</strong>."
156
 
157
+ # @ wp-maintenance-mode
158
+ #: inc/wp-maintenance-mode-settings.php:43
159
  msgid "Plugin Activate"
160
  msgstr "Plugin aktivieren"
161
 
162
+ # @ wp-maintenance-mode
163
+ #: inc/wp-maintenance-mode-settings.php:47
164
+ #: inc/wp-maintenance-mode-settings.php:66
165
+ #: inc/wp-maintenance-mode-settings.php:110
166
+ #: inc/wp-maintenance-mode-settings.php:123
167
+ #: inc/wp-maintenance-mode-settings.php:176
168
  msgid "False"
169
  msgstr "Nein"
170
 
171
+ # @ wp-maintenance-mode
172
+ #: inc/wp-maintenance-mode-settings.php:48
173
+ #: inc/wp-maintenance-mode-settings.php:67
174
+ #: inc/wp-maintenance-mode-settings.php:111
175
+ #: inc/wp-maintenance-mode-settings.php:124
176
+ #: inc/wp-maintenance-mode-settings.php:177
177
  msgid "True"
178
  msgstr "Ja"
179
 
180
+ # @ wp-maintenance-mode
181
+ #: inc/wp-maintenance-mode-settings.php:50
182
  msgid "Update"
183
  msgstr "Aktualisieren"
184
 
185
+ # @ wp-maintenance-mode
186
+ #: inc/wp-maintenance-mode-settings.php:56
187
  msgid "Plugin Settings"
188
  msgstr "Plugin Einstellungen"
189
 
190
+ # @ wp-maintenance-mode
191
+ #: inc/wp-maintenance-mode-settings.php:62
192
  msgid "Countdown:"
193
  msgstr "Countdown:"
194
 
195
+ # @ wp-maintenance-mode
196
+ #: inc/wp-maintenance-mode-settings.php:73
197
+ #: inc/wp-maintenance-mode-settings.php:76
198
  msgid "Click for datepicker"
199
  msgstr "Klick für den Datums-Picker"
200
 
201
+ # @ wp-maintenance-mode
202
+ #: inc/wp-maintenance-mode-settings.php:73
203
  msgid "Date:"
204
  msgstr "Datum:"
205
 
206
+ # @ wp-maintenance-mode
207
+ #: inc/wp-maintenance-mode-settings.php:77
208
  msgid "Activate countdown for using this. Use value and unit or use the countdown and set the date."
209
  msgstr "Aktiviere den Countdown um ihn zu nutzen. Vergebe Wert und Einheit oder wähle ein Datum für den Countdown."
210
 
211
+ # @ wp-maintenance-mode
212
+ #: inc/wp-maintenance-mode-settings.php:82
213
  msgid "Value:"
214
  msgstr "Wert:"
215
 
216
+ # @ wp-maintenance-mode
217
+ #: inc/wp-maintenance-mode-settings.php:90
218
  msgid "Unit:"
219
  msgstr "Einheit:"
220
 
221
+ # @ wp-maintenance-mode
222
+ #: inc/wp-maintenance-mode-settings.php:94
223
  msgid "second"
224
  msgstr "sekunde"
225
 
226
+ # @ wp-maintenance-mode
227
+ #: inc/wp-maintenance-mode-settings.php:95
228
  msgid "minute"
229
  msgstr "minute"
230
 
231
+ # @ wp-maintenance-mode
232
+ #: inc/wp-maintenance-mode-settings.php:96
233
  msgid "hour"
234
  msgstr "stunde"
235
 
236
+ # @ wp-maintenance-mode
237
+ #: inc/wp-maintenance-mode-settings.php:97
238
  msgid "day"
239
  msgstr "tag"
240
 
241
+ # @ wp-maintenance-mode
242
+ #: inc/wp-maintenance-mode-settings.php:98
243
  msgid "week"
244
  msgstr "woche"
245
 
246
+ # @ wp-maintenance-mode
247
+ #: inc/wp-maintenance-mode-settings.php:99
248
  msgid "month"
249
  msgstr "monat"
250
 
251
+ # @ wp-maintenance-mode
252
+ #: inc/wp-maintenance-mode-settings.php:100
253
  msgid "year"
254
  msgstr "jahr"
255
 
256
+ # @ wp-maintenance-mode
257
+ #: inc/wp-maintenance-mode-settings.php:106
258
  msgid "Link:"
259
  msgstr "Link:"
260
 
261
+ # @ wp-maintenance-mode
262
+ #: inc/wp-maintenance-mode-settings.php:114
263
+ msgid "Please leave a link to the plugin- and design-author on your maintenance mode site."
264
+ msgstr "Bitte hinterlasse einen Link zum Plugin- und Design-Autor auf deiner Wartungsmodus-Seite."
265
+
266
+ # @ wp-maintenance-mode
267
+ #: inc/wp-maintenance-mode-settings.php:119
268
+ msgid "Admin Link:"
269
+ msgstr "Admin Link:"
270
+
271
+ #: inc/wp-maintenance-mode-settings.php:127
272
+ msgid "Do you will a link to the admin area of your install?"
273
+ msgstr "Willst du einen Link zum Admin Bereich dieser Installation?"
274
+
275
+ # @ wp-maintenance-mode
276
+ #: inc/wp-maintenance-mode-settings.php:132
277
  msgid "Theme:"
278
  msgstr "Theme:"
279
 
280
+ # @ wp-maintenance-mode
281
+ #: inc/wp-maintenance-mode-settings.php:136
282
  msgid "Own Style"
283
  msgstr "Eigenes Design"
284
 
285
+ # @ wp-maintenance-mode
286
+ #: inc/wp-maintenance-mode-settings.php:137
287
  msgid "Simple Text"
288
  msgstr "Einfach Text"
289
 
290
+ # @ wp-maintenance-mode
291
+ #: inc/wp-maintenance-mode-settings.php:138
292
  msgid "The Truck"
293
  msgstr "Der Truck"
294
 
295
+ # @ wp-maintenance-mode
296
+ #: inc/wp-maintenance-mode-settings.php:139
297
  msgid "The Sun"
298
  msgstr "The Sun"
299
 
300
+ # @ wp-maintenance-mode
301
+ #: inc/wp-maintenance-mode-settings.php:140
302
  msgid "The FF Error"
303
  msgstr "The FF Error"
304
 
305
+ # @ wp-maintenance-mode
306
+ #: inc/wp-maintenance-mode-settings.php:141
307
  msgid "Monster"
308
  msgstr "Monster"
309
 
310
+ # @ wp-maintenance-mode
311
+ #: inc/wp-maintenance-mode-settings.php:142
312
  msgid "Chastely"
313
  msgstr "Chastely"
314
 
315
+ # @ wp-maintenance-mode
316
+ #: inc/wp-maintenance-mode-settings.php:143
317
  msgid "Only Typo"
318
  msgstr "Only Typo"
319
 
320
+ # @ wp-maintenance-mode
321
+ #: inc/wp-maintenance-mode-settings.php:144
322
  msgid "Paint"
323
  msgstr "Paint"
324
 
325
+ # @ wp-maintenance-mode
326
+ #: inc/wp-maintenance-mode-settings.php:145
327
+ msgid "Animate (Flash)"
328
+ msgstr "Animate (Flash)"
329
+
330
+ # @ wp-maintenance-mode
331
+ #: inc/wp-maintenance-mode-settings.php:146
332
  msgid "Damask"
333
  msgstr "Damask"
334
 
335
+ # @ wp-maintenance-mode
336
+ #: inc/wp-maintenance-mode-settings.php:147
337
  msgid "Lego"
338
  msgstr "Lego"
339
 
340
+ # @ wp-maintenance-mode
341
+ #: inc/wp-maintenance-mode-settings.php:148
342
+ msgid "Chemistry"
343
+ msgstr "Chemielabor"
344
+
345
+ # @ wp-maintenance-mode
346
+ #: inc/wp-maintenance-mode-settings.php:154
347
  msgid "Own Style URL (incl. http://):"
348
  msgstr "Eigene Design URL (inkl. http://)"
349
 
350
+ # @ wp-maintenance-mode
351
+ #: inc/wp-maintenance-mode-settings.php:157
352
+ msgid "URL to the css-file"
353
+ msgstr "URL zur css-Datei"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
354
 
355
+ # @ wp-maintenance-mode
356
+ #: inc/wp-maintenance-mode-settings.php:159
357
+ msgid "<strong>Coution:</strong> Please don&acute;t copy the stylesheet in your plugin folder, it will be deleted on the next automatical update of the plugin!"
358
+ msgstr "<strong>Hinweis:</strong> Bitte speichere das Sytelsheet nicht im Plugin-Ordner, der Ordner wird beim automatischen Update ersetzt!"
359
 
360
+ # @ wp-maintenance-mode
361
+ #: inc/wp-maintenance-mode-settings.php:164
362
+ #: inc/wp-maintenance-mode-settings.php:167
363
+ msgid "Preview"
364
+ msgstr "Vorschau"
 
 
 
 
 
 
 
 
 
365
 
366
+ #: inc/wp-maintenance-mode-settings.php:172
367
+ msgid "noindex, nofollow:"
368
+ msgstr "noindex, nofollow:"
 
 
369
 
370
+ #: inc/wp-maintenance-mode-settings.php:180
371
+ msgid "The robots meta tag lets you utilize a granular, page-specific approach to controlling how an individual page should be indexed and served to users in search results. Set TRUE for noindex, nofollow; set FALSE for index, follow."
372
+ msgstr "Der robots meta Tag gibt die Möglichkeit die Indizierung der Site durch Suchmaschinen zu steuern. Wähle den Wert, der auf Wartungsseite genutzt werden soll. Setze Ja für nonidex, nofollow; setze Nein für index, follow."
 
373
 
374
+ # @ wp-maintenance-mode
375
+ #: inc/wp-maintenance-mode-settings.php:185
376
  msgid "Title:"
377
  msgstr "Titel:"
378
 
379
+ # @ wp-maintenance-mode
380
+ #: inc/wp-maintenance-mode-settings.php:188
381
+ #: inc/wp-maintenance-mode-settings.php:196
382
+ #: inc/wp-maintenance-mode-settings.php:204
 
 
 
 
 
383
  msgid "Leave empty for default."
384
  msgstr "Leer lassen für den Standardtext."
385
 
386
+ # @ wp-maintenance-mode
387
+ #: inc/wp-maintenance-mode-settings.php:193
388
  msgid "Header:"
389
  msgstr "Header:"
390
 
391
+ # @ wp-maintenance-mode
392
+ #: inc/wp-maintenance-mode-settings.php:201
393
  msgid "Heading:"
394
  msgstr "Überschrift:"
395
 
396
+ # @ wp-maintenance-mode
397
+ #: inc/wp-maintenance-mode-settings.php:209
398
+ msgid "Text:"
399
+ msgstr "Text:"
400
 
401
+ # @ wp-maintenance-mode
402
+ #: inc/wp-maintenance-mode-settings.php:214
403
+ #, php-format
404
+ msgid "Use the first <em>%1$s</em> for the time value or countdown and second <em>%2$s</em> for the unit of the time or countdown-value; HTML and Shortcodes are possible"
405
+ msgstr "Nutze das erste %1$s für den Zeitwert oder den Countdown und das zweite %2$s für die Einheit der Zeit oder die Ausgabe des Zeitwert, HTML und Shortcodes sind möglich"
406
 
407
+ # @ wp-maintenance-mode
408
+ #: inc/wp-maintenance-mode-settings.php:219
409
+ msgid "Excludes:"
410
+ msgstr "Ausnahmen:"
411
 
412
+ # @ wp-maintenance-mode
413
+ #: inc/wp-maintenance-mode-settings.php:235
414
+ msgid "Exclude feed, pages, posts, archives or IPs from the maintenance mode. Add the Slug of page or post as a comma-separated list.<br />Example:"
415
+ msgstr "Die Ausnahme des Wartungsmodus ist möglich für Inhalte aller Art, auch der Feed. Füge den Titelform (Slug) hinzu, als Komma-Separierte Liste.<br />Beispiel:"
416
 
417
+ # @ wp-maintenance-mode
418
+ #: inc/wp-maintenance-mode-settings.php:240
419
+ msgid "Role:"
420
+ msgstr "Rolle:"
421
+
422
+ # @ wp-maintenance-mode
423
+ #: inc/wp-maintenance-mode-settings.php:265
424
  msgid "Allowed userrole to see the frontend of this blog."
425
  msgstr "Erlaubte User-Rolle für das Sehen des Frontend von diesem Blog."
426
 
427
+ # @ wp-maintenance-mode
428
+ #: inc/wp-maintenance-mode-settings.php:266
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
429
  msgid "Super Admin has always access."
430
  msgstr "Super Admin hat immer Zugang."
431
 
432
+ # @ wp-maintenance-mode
433
+ #: inc/wp-maintenance-mode-settings.php:275
434
+ msgid "Save"
435
+ msgstr "Speichern"
436
 
readme.txt CHANGED
@@ -7,8 +7,8 @@ Author URI: http://bueltge.de/
7
  Donate link: http://bueltge.de/wunschliste/
8
  Tags: maintenance, mode, admin, administration, unavailable, coming soon, multisite
9
  Requires at least: 2.6
10
- Tested up to: 3.5-alpha
11
- Stable tag: 1.8.0
12
 
13
  Adds a splash page to your site that lets visitors know your site is down for maintenance. Full access to the back- & front-end is optional.
14
 
@@ -242,6 +242,10 @@ Please visit [Automatisches Backup der WordPress-Datenbank](http://www.beedy.de/
242
 
243
 
244
  == Changelog ==
 
 
 
 
245
  = 1.8.0 =
246
  * Include all scripts in backend via function
247
  * Update datepicker and countdown js
7
  Donate link: http://bueltge.de/wunschliste/
8
  Tags: maintenance, mode, admin, administration, unavailable, coming soon, multisite
9
  Requires at least: 2.6
10
+ Tested up to: 3.5-beta1
11
+ Stable tag: 1.8.1
12
 
13
  Adds a splash page to your site that lets visitors know your site is down for maintenance. Full access to the back- & front-end is optional.
14
 
242
 
243
 
244
  == Changelog ==
245
+ = 1.8.1 =
246
+ * Add option for value of robots meta tag
247
+ * Add option for optional admin login
248
+
249
  = 1.8.0 =
250
  * Include all scripts in backend via function
251
  * Update datepicker and countdown js
site.php CHANGED
@@ -17,7 +17,13 @@ if ( !isset($value) ) {
17
  <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
18
  <meta name="author" content="WP Maintenance Mode: Frank Bueltge, http://bueltge.de" />
19
  <meta name="description" content="<?php bloginfo('name'); echo ' - '; bloginfo('description'); ?>" />
20
- <meta name="robots" content="noindex,nofollow" />
 
 
 
 
 
 
21
  <link rel="Shortcut Icon" type="image/x-icon" href="<?php echo get_option('home'); ?>/favicon.ico" />
22
  <link rel="stylesheet" type="text/css" href="<?php echo WP_PLUGIN_URL . '/' . FB_WM_BASEDIR ?>/css/jquery.countdown.css" media="all" />
23
 
@@ -51,21 +57,23 @@ if ( !isset($value) ) {
51
  <h1><?php if ( isset($value['heading']) && ($value['heading'] != '') ) echo stripslashes_deep( $value['heading'] ); else _e( 'Maintenance Mode', FB_WM_TEXTDOMAIN ); ?></h1>
52
 
53
  <?php wm_content();
54
-
55
- if (isset($user_ID) && $user_ID) {
56
- $adminlogin = wp_logout_url();
57
- if ( isset($rolestatus) && 'norights' == $rolestatus )
58
- $adminloginmsg = '<h3>' . __( 'Access to the admin area blocked', FB_WM_TEXTDOMAIN ) . '</h3>';
59
- else
 
 
 
 
60
  $adminloginmsg = '';
61
- $adminloginstr = __( 'Admin-Logout', FB_WM_TEXTDOMAIN );
62
- } else {
63
- $adminlogin = site_url('wp-login.php', 'login');
64
- $adminloginmsg = '';
65
- $adminloginstr = __( 'Admin-Login', FB_WM_TEXTDOMAIN );
66
- } ?>
67
- <?php echo $adminloginmsg; ?>
68
  <div class="admin" onclick="location.href='<?php echo $adminlogin; ?>';" onkeypress="location.href='<?php echo $adminlogin; ?>';"><a href="<?php echo $adminlogin; ?>"><?php echo $adminloginstr; ?></a></div>
 
69
  </div>
70
 
71
  <?php wm_footer(); ?>
17
  <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
18
  <meta name="author" content="WP Maintenance Mode: Frank Bueltge, http://bueltge.de" />
19
  <meta name="description" content="<?php bloginfo('name'); echo ' - '; bloginfo('description'); ?>" />
20
+ <?php
21
+ if ( isset( $value['index'] ) && 1 === $value['index'] )
22
+ $content = 'noindex, nofollow';
23
+ else {
24
+ $content = 'index, follow';
25
+ } ?>
26
+ <meta name="robots" content="<?php echo $content; ?>" />
27
  <link rel="Shortcut Icon" type="image/x-icon" href="<?php echo get_option('home'); ?>/favicon.ico" />
28
  <link rel="stylesheet" type="text/css" href="<?php echo WP_PLUGIN_URL . '/' . FB_WM_BASEDIR ?>/css/jquery.countdown.css" media="all" />
29
 
57
  <h1><?php if ( isset($value['heading']) && ($value['heading'] != '') ) echo stripslashes_deep( $value['heading'] ); else _e( 'Maintenance Mode', FB_WM_TEXTDOMAIN ); ?></h1>
58
 
59
  <?php wm_content();
60
+ if ( isset( $value['admin_link'] ) && 1 === $value['admin_link'] ) {
61
+ if ( isset($user_ID) && $user_ID ) {
62
+ $adminlogin = wp_logout_url();
63
+ if ( isset($rolestatus) && 'norights' == $rolestatus )
64
+ $adminloginmsg = '<h3>' . __( 'Access to the admin area blocked', FB_WM_TEXTDOMAIN ) . '</h3>';
65
+ else
66
+ $adminloginmsg = '';
67
+ $adminloginstr = __( 'Admin-Logout', FB_WM_TEXTDOMAIN );
68
+ } else {
69
+ $adminlogin = site_url('wp-login.php', 'login');
70
  $adminloginmsg = '';
71
+ $adminloginstr = __( 'Admin-Login', FB_WM_TEXTDOMAIN );
72
+ }
73
+ echo $adminloginmsg;
74
+ ?>
 
 
 
75
  <div class="admin" onclick="location.href='<?php echo $adminlogin; ?>';" onkeypress="location.href='<?php echo $adminlogin; ?>';"><a href="<?php echo $adminlogin; ?>"><?php echo $adminloginstr; ?></a></div>
76
+ <?php } ?>
77
  </div>
78
 
79
  <?php wm_footer(); ?>
wp-maintenance-mode.php CHANGED
@@ -8,8 +8,8 @@
8
  * Author: Frank B&uuml;ltge
9
  * Author URI: http://bueltge.de/
10
  * Donate URI: http://bueltge.de/wunschliste/
11
- * Version: 1.8.0
12
- * Last change: 09/20/2012
13
  * Licence: GPLv3
14
  *
15
  *
@@ -84,10 +84,15 @@ if ( ! class_exists('WPMaintenanceMode') ) {
84
  // load all files with the pattern *.php from the directory inc
85
  foreach( glob( dirname( __FILE__ ) . '/inc/*.php' ) as $class )
86
  require_once $class;
87
-
88
  }
89
 
90
-
 
 
 
 
 
 
91
  function esc_attr( $text ) {
92
 
93
  if ( function_exists('esc_attr') )
@@ -118,8 +123,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
118
  $url = str_replace( 'http://', "{$scheme}://", $url );
119
  }
120
 
121
- if ( !empty($plugin) && is_string($plugin) )
122
- {
123
  $folder = dirname(plugin_basename($plugin));
124
  if ('.' != $folder)
125
  $url .= '/' . ltrim($folder, '/');
@@ -136,9 +140,8 @@ if ( ! class_exists('WPMaintenanceMode') ) {
136
 
137
  load_plugin_textdomain( FB_WM_TEXTDOMAIN, FALSE, FB_WM_BASEDIR . '/languages' );
138
 
139
- if ( is_multisite() && ! function_exists( 'is_plugin_active_for_network' ) ) {
140
  require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
141
- }
142
 
143
  if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) )
144
  $valuemsqld = get_site_option( FB_WM_TEXTDOMAIN . '-msqld' );
@@ -221,16 +224,17 @@ if ( ! class_exists('WPMaintenanceMode') ) {
221
  function add_config() {
222
 
223
  $this->data = array(
224
- 'active' => 0,
225
- 'radio' => 0,
226
- 'time' => 60,
227
- 'link' => 1,
228
- 'theme' => 1,
229
- 'role' => 'administrator',
230
- 'unit' => 1,
231
- 'title' => 'Maintenance mode',
232
- 'text' => '<p>Sorry for the inconvenience.<br />Our website is currently undergoing scheduled maintenance.<br /><strong>Please try back in %1$s %2$s</strong><br />Thank you for your understanding.</p>',
233
- 'exclude' => 'wp-cron, feed, wp-admin'
 
234
  );
235
  // if is active in network of multisite
236
  if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) ) {
@@ -287,6 +291,8 @@ if ( ! class_exists('WPMaintenanceMode') ) {
287
  $this->data['unit'] = (int) $_POST['wm_config-unit'];
288
  if ( isset($_POST['wm_config-link']) )
289
  $this->data['link'] = (int) $_POST['wm_config-link'];
 
 
290
  if ( isset($_POST['wm_config-theme']) )
291
  $this->data['theme'] = (int) $_POST['wm_config-theme'];
292
  if ( isset($_POST['wm_config-styleurl']) ) {
@@ -296,6 +302,8 @@ if ( ! class_exists('WPMaintenanceMode') ) {
296
  $this->data['styleurl'] = clean_url( $_POST['wm_config-styleurl'] );
297
  }
298
  }
 
 
299
  if ( isset($_POST['wm_config-title']) )
300
  $this->data['title'] = stripslashes_deep( $_POST['wm_config-title'] );
301
  if ( isset($_POST['wm_config-header']) )
8
  * Author: Frank B&uuml;ltge
9
  * Author URI: http://bueltge.de/
10
  * Donate URI: http://bueltge.de/wunschliste/
11
+ * Version: 1.8.1
12
+ * Last change: 09/28/2012
13
  * Licence: GPLv3
14
  *
15
  *
84
  // load all files with the pattern *.php from the directory inc
85
  foreach( glob( dirname( __FILE__ ) . '/inc/*.php' ) as $class )
86
  require_once $class;
 
87
  }
88
 
89
+ /**
90
+ * Function to escape strings
91
+ * Use WP default, if exists
92
+ *
93
+ * @param String
94
+ * @return String
95
+ */
96
  function esc_attr( $text ) {
97
 
98
  if ( function_exists('esc_attr') )
123
  $url = str_replace( 'http://', "{$scheme}://", $url );
124
  }
125
 
126
+ if ( !empty($plugin) && is_string($plugin) ) {
 
127
  $folder = dirname(plugin_basename($plugin));
128
  if ('.' != $folder)
129
  $url .= '/' . ltrim($folder, '/');
140
 
141
  load_plugin_textdomain( FB_WM_TEXTDOMAIN, FALSE, FB_WM_BASEDIR . '/languages' );
142
 
143
+ if ( is_multisite() && ! function_exists( 'is_plugin_active_for_network' ) )
144
  require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
 
145
 
146
  if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) )
147
  $valuemsqld = get_site_option( FB_WM_TEXTDOMAIN . '-msqld' );
224
  function add_config() {
225
 
226
  $this->data = array(
227
+ 'active' => 0,
228
+ 'radio' => 0,
229
+ 'time' => 60,
230
+ 'link' => 1,
231
+ 'admin_link' => 1,
232
+ 'theme' => 1,
233
+ 'role' => 'administrator',
234
+ 'unit' => 1,
235
+ 'title' => __( 'Maintenance mode', FB_WM_TEXTDOMAIN ),
236
+ 'text' => __( '<p>Sorry for the inconvenience.<br />Our website is currently undergoing scheduled maintenance.<br /><strong>Please try back in %1$s %2$s</strong><br />Thank you for your understanding.</p>', FB_WM_TEXTDOMAIN ),
237
+ 'exclude' => 'wp-cron, feed, wp-admin'
238
  );
239
  // if is active in network of multisite
240
  if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) ) {
291
  $this->data['unit'] = (int) $_POST['wm_config-unit'];
292
  if ( isset($_POST['wm_config-link']) )
293
  $this->data['link'] = (int) $_POST['wm_config-link'];
294
+ if ( isset($_POST['wm_config-admin_link']) )
295
+ $this->data['admin_link'] = (int) $_POST['wm_config-admin_link'];
296
  if ( isset($_POST['wm_config-theme']) )
297
  $this->data['theme'] = (int) $_POST['wm_config-theme'];
298
  if ( isset($_POST['wm_config-styleurl']) ) {
302
  $this->data['styleurl'] = clean_url( $_POST['wm_config-styleurl'] );
303
  }
304
  }
305
+ if ( isset($_POST['wm_config-index']) )
306
+ $this->data['index'] = (int) $_POST['wm_config-index'];
307
  if ( isset($_POST['wm_config-title']) )
308
  $this->data['title'] = stripslashes_deep( $_POST['wm_config-title'] );
309
  if ( isset($_POST['wm_config-header']) )