WP Maintenance Mode - Version 1.8.7

Version Description

(04/07/2013) = * Add RTL support for splash page * Add Filter Hook wp_maintenance_mode_status_code Status Code; default is 503 * Add support for custom splash page; leave a file with this name wp-maintenance-mode.php in the wp-content; the plugin use this file The plugin checks in WP_CONTENT_DIR . '/wp-maintenance-mode.php' * Small minor changes * Add filter for more date on splash page

Download this release

Release Info

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

Code changes from version 1.8.6 to 1.8.7

inc/wp-maintenance-mode-settings.php CHANGED
@@ -85,6 +85,12 @@ class WPMaintenanceMode_Settings {
85
  $value = get_site_option( FB_WM_TEXTDOMAIN );
86
  else
87
  $value = get_option( FB_WM_TEXTDOMAIN );
 
 
 
 
 
 
88
  ?>
89
  <tr id="wm_config_tr" >
90
  <td colspan="3">
@@ -120,8 +126,8 @@ class WPMaintenanceMode_Settings {
120
  </th>
121
  <td>
122
  <select name="wm_config-radio" id="wm_config-radio">
123
- <option value="0"<?php if ( isset($value['radio']) && 0 === $value['radio'] ) { echo ' selected="selected"'; } ?>><?php _e('False', FB_WM_TEXTDOMAIN ); ?> </option>
124
- <option value="1"<?php if ( isset($value['radio']) && 1 === $value['radio'] ) { echo ' selected="selected"'; } ?>><?php _e('True', FB_WM_TEXTDOMAIN ); ?> </option>
125
  </select>
126
  </td>
127
  </tr>
@@ -135,7 +141,7 @@ class WPMaintenanceMode_Settings {
135
  </td>
136
  </tr>
137
  <tr valign="top">
138
- <th scope="row" class="alternate">
139
  <label for="wm_config-time"><?php _e( 'Value:', FB_WM_TEXTDOMAIN ); ?></label>
140
  </th>
141
  <td class="alternate">
@@ -143,18 +149,18 @@ class WPMaintenanceMode_Settings {
143
  </td>
144
  </tr>
145
  <tr valign="top">
146
- <th scope="row" class="alternate">
147
  <label for="wm_config-unit"><?php _e( 'Unit:', FB_WM_TEXTDOMAIN ); ?></label>
148
  </th>
149
  <td class="alternate">
150
  <select name="wm_config-unit" id="wm_config-unit">
151
- <option value="0"<?php if ( isset($value['unit']) && 0 === $value['unit'] ) { echo ' selected="selected"'; } ?>><?php _e('second', FB_WM_TEXTDOMAIN ); ?> </option>
152
- <option value="1"<?php if ( isset($value['unit']) && 1 === $value['unit'] ) { echo ' selected="selected"'; } ?>><?php _e('minute', FB_WM_TEXTDOMAIN ); ?> </option>
153
- <option value="2"<?php if ( isset($value['unit']) && 2 === $value['unit'] ) { echo ' selected="selected"'; } ?>><?php _e('hour', FB_WM_TEXTDOMAIN ); ?> </option>
154
- <option value="3"<?php if ( isset($value['unit']) && 3 === $value['unit'] ) { echo ' selected="selected"'; } ?>><?php _e('day', FB_WM_TEXTDOMAIN ); ?> </option>
155
- <option value="4"<?php if ( isset($value['unit']) && 4 === $value['unit'] ) { echo ' selected="selected"'; } ?>><?php _e('week', FB_WM_TEXTDOMAIN ); ?> </option>
156
- <option value="5"<?php if ( isset($value['unit']) && 5 === $value['unit'] ) { echo ' selected="selected"'; } ?>><?php _e('month', FB_WM_TEXTDOMAIN ); ?> </option>
157
- <option value="6"<?php if ( isset($value['unit']) && 6 === $value['unit'] ) { echo ' selected="selected"'; } ?>><?php _e('year', FB_WM_TEXTDOMAIN ); ?> </option>
158
  </select>
159
  </td>
160
  </tr>
@@ -164,8 +170,8 @@ class WPMaintenanceMode_Settings {
164
  </th>
165
  <td>
166
  <select name="wm_config-link" id="wm_config-link">
167
- <option value="0"<?php if ( isset($value['link']) && 0 === $value['link'] ) { echo ' selected="selected"'; } ?>><?php _e('False', FB_WM_TEXTDOMAIN ); ?> </option>
168
- <option value="1"<?php if ( isset($value['link']) && 1 === $value['link'] ) { echo ' selected="selected"'; } ?>><?php _e('True', FB_WM_TEXTDOMAIN ); ?> </option>
169
  </select>
170
  <br />
171
  <small><?php _e( 'Please leave a link to the plugin- and design-author on your maintenance mode site.', FB_WM_TEXTDOMAIN ); ?></small>
@@ -177,38 +183,38 @@ class WPMaintenanceMode_Settings {
177
  </th>
178
  <td>
179
  <select name="wm_config-admin_link" id="wm_config-admin_link">
180
- <option value="0"<?php if ( isset($value['admin_link']) && 0 === $value['admin_link'] ) { echo ' selected="selected"'; } ?>><?php _e('False', FB_WM_TEXTDOMAIN ); ?> </option>
181
- <option value="1"<?php if ( isset($value['admin_link']) && 1 === $value['admin_link'] ) { echo ' selected="selected"'; } ?>><?php _e('True', FB_WM_TEXTDOMAIN ); ?> </option>
182
  </select>
183
  <br />
184
  <small><?php _e( 'Do you will a link to the admin area of your install?', FB_WM_TEXTDOMAIN ); ?></small>
185
  </td>
186
  </tr>
187
  <tr valign="top">
188
- <th scope="row" class="alternate">
189
- <label for="wm_config-theme"><?php _e( 'Theme:', FB_WM_TEXTDOMAIN ); ?></label>
190
  </th>
191
  <td class="alternate">
192
  <select name="wm_config-theme" id="wm_config-theme">
193
- <option value="0"<?php if ( isset($value['theme']) && 0 === $value['theme'] ) { echo ' selected="selected"'; } ?>><?php _e('Own Style', FB_WM_TEXTDOMAIN ); ?> </option>
194
- <option value="1"<?php if ( isset($value['theme']) && 1 === $value['theme'] ) { echo ' selected="selected"'; } ?>><?php _e('Simple Text', FB_WM_TEXTDOMAIN ); ?> </option>
195
- <option value="2"<?php if ( isset($value['theme']) && 2 === $value['theme'] ) { echo ' selected="selected"'; } ?>><?php _e('The Truck', FB_WM_TEXTDOMAIN ); ?> </option>
196
- <option value="3"<?php if ( isset($value['theme']) && 3 === $value['theme'] ) { echo ' selected="selected"'; } ?>><?php _e('The Sun', FB_WM_TEXTDOMAIN ); ?> </option>
197
- <option value="4"<?php if ( isset($value['theme']) && 4 === $value['theme'] ) { echo ' selected="selected"'; } ?>><?php _e('The FF Error', FB_WM_TEXTDOMAIN ); ?> </option>
198
- <option value="5"<?php if ( isset($value['theme']) && 5 === $value['theme'] ) { echo ' selected="selected"'; } ?>><?php _e('Monster', FB_WM_TEXTDOMAIN ); ?> </option>
199
- <option value="6"<?php if ( isset($value['theme']) && 6 === $value['theme'] ) { echo ' selected="selected"'; } ?>><?php _e('Chastely', FB_WM_TEXTDOMAIN ); ?> </option>
200
- <option value="7"<?php if ( isset($value['theme']) && 7 === $value['theme'] ) { echo ' selected="selected"'; } ?>><?php _e('Only Typo', FB_WM_TEXTDOMAIN ); ?> </option>
201
- <option value="8"<?php if ( isset($value['theme']) && 8 === $value['theme'] ) { echo ' selected="selected"'; } ?>><?php _e('Paint', FB_WM_TEXTDOMAIN ); ?> </option>
202
- <option value="9"<?php if ( isset($value['theme']) && 9 === $value['theme'] ) { echo ' selected="selected"'; } ?>><?php _e('Animate (Flash)', FB_WM_TEXTDOMAIN ); ?> </option>
203
- <option value="10"<?php if ( isset($value['theme']) && 10 === $value['theme'] ) { echo ' selected="selected"'; } ?>><?php _e('Damask', FB_WM_TEXTDOMAIN ); ?> </option>
204
- <option value="11"<?php if ( isset($value['theme']) && 11 === $value['theme'] ) { echo ' selected="selected"'; } ?>><?php _e('Lego', FB_WM_TEXTDOMAIN ); ?> </option>
205
- <option value="12"<?php if ( isset($value['theme']) && 12 === $value['theme'] ) { echo ' selected="selected"'; } ?>><?php _e('Chemistry', FB_WM_TEXTDOMAIN ); ?> </option>
206
  </select>
207
  </td>
208
  </tr>
209
  <tr valign="top">
210
- <th scope="row" class="alternate">
211
- <label for="wm_config-styleurl"><?php _e( 'Own Style URL:', FB_WM_TEXTDOMAIN ); ?></label>
212
  </th>
213
  <td class="alternate">
214
  <input size="30" type="text" id="wm_config-styleurl" name="wm_config-styleurl" value="<?php if ( isset($value['styleurl']) ) echo $value['styleurl']; ?>" /> <small><?php _e( 'URL to the css-file (incl. http://)', FB_WM_TEXTDOMAIN ); ?></small>
@@ -217,7 +223,7 @@ class WPMaintenanceMode_Settings {
217
  </td>
218
  </tr>
219
  <tr valign="top">
220
- <th scope="row" class="alternate">
221
  <label for="wm_config-preview"><?php _e( 'Preview', FB_WM_TEXTDOMAIN ); ?></label>
222
  </th>
223
  <td class="alternate" style="padding:5px 0 0 0;">
@@ -252,8 +258,8 @@ class WPMaintenanceMode_Settings {
252
  </th>
253
  <td>
254
  <select name="wm_config-index" id="wm_config-index">
255
- <option value="0"<?php if ( isset($value['index']) && 0 === $value['index'] ) { echo ' selected="selected"'; } ?>><?php _e('False', FB_WM_TEXTDOMAIN ); ?> </option>
256
- <option value="1"<?php if ( isset($value['index']) && 1 === $value['index'] ) { echo ' selected="selected"'; } ?>><?php _e('True', FB_WM_TEXTDOMAIN ); ?> </option>
257
  </select>
258
  <br />
259
  <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>
@@ -268,7 +274,7 @@ class WPMaintenanceMode_Settings {
268
  </td>
269
  </tr>
270
  <tr valign="top">
271
- <th scope="row" class="alternate">
272
  <label for="wm_config-header"><?php _e( 'Header:', FB_WM_TEXTDOMAIN ); ?></label>
273
  </th>
274
  <td class="alternate">
@@ -284,7 +290,7 @@ class WPMaintenanceMode_Settings {
284
  </td>
285
  </tr>
286
  <tr valign="top">
287
- <th scope="row" class="alternate">
288
  <label for="wm_config-text"><?php _e( 'Text:', FB_WM_TEXTDOMAIN ); ?></label>
289
  </th>
290
  <td class="alternate">
@@ -317,8 +323,22 @@ class WPMaintenanceMode_Settings {
317
  <small><?php _e( '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:', FB_WM_TEXTDOMAIN ); ?> <code>wp-cron, feed, wp-admin, ?page_id=12, about, category/test, 127.0.0.1</code></small>
318
  </td>
319
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
320
  <tr valign="top">
321
- <th scope="row" class="alternate">
322
  <label for="wm_config-role"><?php _e( 'Backend Role:', FB_WM_TEXTDOMAIN ); ?></label>
323
  </th>
324
  <td class="alternate">
@@ -349,7 +369,7 @@ class WPMaintenanceMode_Settings {
349
  </td>
350
  </tr>
351
  <tr valign="top">
352
- <th scope="row" class="alternate">
353
  <label for="wm_config-role_frontend"><?php _e( 'Frontend Role:', FB_WM_TEXTDOMAIN ); ?></label>
354
  </th>
355
  <td class="alternate">
@@ -380,7 +400,7 @@ class WPMaintenanceMode_Settings {
380
  </td>
381
  </tr>
382
  <tr valign="top">
383
- <th scope="row" class="alternate">
384
  <label for="wm_config-rewrite"><?php _e( 'Redirection:', FB_WM_TEXTDOMAIN ); ?></label>
385
  </th>
386
  <td class="alternate">
@@ -396,8 +416,8 @@ class WPMaintenanceMode_Settings {
396
  </th>
397
  <td>
398
  <select name="wm_config-notice" id="wm_config-notice">
399
- <option value="0"<?php if ( isset($value['notice']) && 0 === $value['notice'] ) { echo ' selected="selected"'; } ?>><?php _e('False', FB_WM_TEXTDOMAIN ); ?> </option>
400
- <option value="1"<?php if ( isset($value['notice']) && 1 === $value['notice'] ) { echo ' selected="selected"'; } ?>><?php _e('True', FB_WM_TEXTDOMAIN ); ?> </option>
401
  </select>
402
  <small><?php _e( 'Do you will see all notices, inside backend, the Admin Bar and the login screen?', FB_WM_TEXTDOMAIN ); ?></small>
403
  </td>
85
  $value = get_site_option( FB_WM_TEXTDOMAIN );
86
  else
87
  $value = get_option( FB_WM_TEXTDOMAIN );
88
+
89
+ // check the additional settings
90
+ if ( ! isset( $value['notice'] ) )
91
+ $value['notice'] = 1;
92
+ if ( ! isset( $value['bypass'] ) )
93
+ $value['bypass'] = 0;
94
  ?>
95
  <tr id="wm_config_tr" >
96
  <td colspan="3">
126
  </th>
127
  <td>
128
  <select name="wm_config-radio" id="wm_config-radio">
129
+ <option value="0" <?php selected( $value['radio'], 0 ); ?>><?php _e('False', FB_WM_TEXTDOMAIN ); ?> </option>
130
+ <option value="1" <?php selected( $value['radio'], 1 ); ?>><?php _e('True', FB_WM_TEXTDOMAIN ); ?> </option>
131
  </select>
132
  </td>
133
  </tr>
141
  </td>
142
  </tr>
143
  <tr valign="top">
144
+ <th scope="row">
145
  <label for="wm_config-time"><?php _e( 'Value:', FB_WM_TEXTDOMAIN ); ?></label>
146
  </th>
147
  <td class="alternate">
149
  </td>
150
  </tr>
151
  <tr valign="top">
152
+ <th scope="row">
153
  <label for="wm_config-unit"><?php _e( 'Unit:', FB_WM_TEXTDOMAIN ); ?></label>
154
  </th>
155
  <td class="alternate">
156
  <select name="wm_config-unit" id="wm_config-unit">
157
+ <option value="0" <?php selected( $value['unit'], 0 ); ?>><?php _e('second', FB_WM_TEXTDOMAIN ); ?> </option>
158
+ <option value="1" <?php selected( $value['unit'], 1 ); ?>><?php _e('minute', FB_WM_TEXTDOMAIN ); ?> </option>
159
+ <option value="2" <?php selected( $value['unit'], 2 ); ?>><?php _e('hour', FB_WM_TEXTDOMAIN ); ?> </option>
160
+ <option value="3" <?php selected( $value['unit'], 3 ); ?>><?php _e('day', FB_WM_TEXTDOMAIN ); ?> </option>
161
+ <option value="4" <?php selected( $value['unit'], 4 ); ?>><?php _e('week', FB_WM_TEXTDOMAIN ); ?> </option>
162
+ <option value="5" <?php selected( $value['unit'], 5 ); ?>><?php _e('month', FB_WM_TEXTDOMAIN ); ?> </option>
163
+ <option value="6" <?php selected( $value['unit'], 6 ); ?>><?php _e('year', FB_WM_TEXTDOMAIN ); ?> </option>
164
  </select>
165
  </td>
166
  </tr>
170
  </th>
171
  <td>
172
  <select name="wm_config-link" id="wm_config-link">
173
+ <option value="0" <?php selected( $value['link'], 0 ); ?>><?php _e('False', FB_WM_TEXTDOMAIN ); ?> </option>
174
+ <option value="1" <?php selected( $value['link'], 1 ); ?>><?php _e('True', FB_WM_TEXTDOMAIN ); ?> </option>
175
  </select>
176
  <br />
177
  <small><?php _e( 'Please leave a link to the plugin- and design-author on your maintenance mode site.', FB_WM_TEXTDOMAIN ); ?></small>
183
  </th>
184
  <td>
185
  <select name="wm_config-admin_link" id="wm_config-admin_link">
186
+ <option value="0" <?php selected( $value['admin_link'], 0 ); ?>><?php _e('False', FB_WM_TEXTDOMAIN ); ?> </option>
187
+ <option value="1" <?php selected( $value['admin_link'], 1 ); ?>><?php _e('True', FB_WM_TEXTDOMAIN ); ?> </option>
188
  </select>
189
  <br />
190
  <small><?php _e( 'Do you will a link to the admin area of your install?', FB_WM_TEXTDOMAIN ); ?></small>
191
  </td>
192
  </tr>
193
  <tr valign="top">
194
+ <th scope="row">
195
+ <label for="wm_config-theme"><?php _e( 'CSS Style:', FB_WM_TEXTDOMAIN ); ?></label>
196
  </th>
197
  <td class="alternate">
198
  <select name="wm_config-theme" id="wm_config-theme">
199
+ <option value="0" <?php selected( $value['theme'], 0 ); ?>><?php _e('Own CSS Stylesheet', FB_WM_TEXTDOMAIN ); ?> </option>
200
+ <option value="1" <?php selected( $value['theme'], 1 ); ?>><?php _e('Simple Text', FB_WM_TEXTDOMAIN ); ?> </option>
201
+ <option value="2" <?php selected( $value['theme'], 2 ); ?>><?php _e('The Truck', FB_WM_TEXTDOMAIN ); ?> </option>
202
+ <option value="3" <?php selected( $value['theme'], 3 ); ?>><?php _e('The Sun', FB_WM_TEXTDOMAIN ); ?> </option>
203
+ <option value="4" <?php selected( $value['theme'], 4 ); ?>><?php _e('The FF Error', FB_WM_TEXTDOMAIN ); ?> </option>
204
+ <option value="5" <?php selected( $value['theme'], 5 ); ?>><?php _e('Monster', FB_WM_TEXTDOMAIN ); ?> </option>
205
+ <option value="6" <?php selected( $value['theme'], 6 ); ?>><?php _e('Chastely', FB_WM_TEXTDOMAIN ); ?> </option>
206
+ <option value="7" <?php selected( $value['theme'], 7 ); ?>><?php _e('Only Typo', FB_WM_TEXTDOMAIN ); ?> </option>
207
+ <option value="8" <?php selected( $value['theme'], 8 ); ?>><?php _e('Paint', FB_WM_TEXTDOMAIN ); ?> </option>
208
+ <option value="9" <?php selected( $value['theme'], 9 ); ?>><?php _e('Animate (Flash)', FB_WM_TEXTDOMAIN ); ?> </option>
209
+ <option value="10" <?php selected( $value['theme'], 10 ); ?>><?php _e('Damask', FB_WM_TEXTDOMAIN ); ?> </option>
210
+ <option value="11" <?php selected( $value['theme'], 11 ); ?>><?php _e('Lego', FB_WM_TEXTDOMAIN ); ?> </option>
211
+ <option value="12" <?php selected( $value['theme'], 12 ); ?>><?php _e('Chemistry', FB_WM_TEXTDOMAIN ); ?> </option>
212
  </select>
213
  </td>
214
  </tr>
215
  <tr valign="top">
216
+ <th scope="row">
217
+ <label for="wm_config-styleurl"><?php _e( 'Own CSS Style URL:', FB_WM_TEXTDOMAIN ); ?></label>
218
  </th>
219
  <td class="alternate">
220
  <input size="30" type="text" id="wm_config-styleurl" name="wm_config-styleurl" value="<?php if ( isset($value['styleurl']) ) echo $value['styleurl']; ?>" /> <small><?php _e( 'URL to the css-file (incl. http://)', FB_WM_TEXTDOMAIN ); ?></small>
223
  </td>
224
  </tr>
225
  <tr valign="top">
226
+ <th scope="row">
227
  <label for="wm_config-preview"><?php _e( 'Preview', FB_WM_TEXTDOMAIN ); ?></label>
228
  </th>
229
  <td class="alternate" style="padding:5px 0 0 0;">
258
  </th>
259
  <td>
260
  <select name="wm_config-index" id="wm_config-index">
261
+ <option value="0" <?php selected( $value['index'], 0 ); ?>><?php _e('False', FB_WM_TEXTDOMAIN ); ?> </option>
262
+ <option value="1" <?php selected( $value['index'], 1 ); ?>><?php _e('True', FB_WM_TEXTDOMAIN ); ?> </option>
263
  </select>
264
  <br />
265
  <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>
274
  </td>
275
  </tr>
276
  <tr valign="top">
277
+ <th scope="row">
278
  <label for="wm_config-header"><?php _e( 'Header:', FB_WM_TEXTDOMAIN ); ?></label>
279
  </th>
280
  <td class="alternate">
290
  </td>
291
  </tr>
292
  <tr valign="top">
293
+ <th scope="row">
294
  <label for="wm_config-text"><?php _e( 'Text:', FB_WM_TEXTDOMAIN ); ?></label>
295
  </th>
296
  <td class="alternate">
323
  <small><?php _e( '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:', FB_WM_TEXTDOMAIN ); ?> <code>wp-cron, feed, wp-admin, ?page_id=12, about, category/test, 127.0.0.1</code></small>
324
  </td>
325
  </tr>
326
+
327
+ <tr valign="top">
328
+ <th scope="row">
329
+ <label for="wm_config-bypass"><?php _e( 'Bypass for Search Bots:', FB_WM_TEXTDOMAIN ); ?></label>
330
+ </th>
331
+ <td>
332
+ <select name="wm_config-bypass" id="wm_config-bypass">
333
+ <option value="0" <?php selected( $value['bypass'], 0 ); ?>><?php _e('False', FB_WM_TEXTDOMAIN ); ?> </option>
334
+ <option value="1" <?php selected( $value['bypass'], 1 ); ?>><?php _e('True', FB_WM_TEXTDOMAIN ); ?> </option>
335
+ </select>
336
+ <small><?php _e( 'Allow Search Bots to bypass maintenance mode?', FB_WM_TEXTDOMAIN ); ?></small>
337
+ </td>
338
+ </tr>
339
+
340
  <tr valign="top">
341
+ <th scope="row">
342
  <label for="wm_config-role"><?php _e( 'Backend Role:', FB_WM_TEXTDOMAIN ); ?></label>
343
  </th>
344
  <td class="alternate">
369
  </td>
370
  </tr>
371
  <tr valign="top">
372
+ <th scope="row">
373
  <label for="wm_config-role_frontend"><?php _e( 'Frontend Role:', FB_WM_TEXTDOMAIN ); ?></label>
374
  </th>
375
  <td class="alternate">
400
  </td>
401
  </tr>
402
  <tr valign="top">
403
+ <th scope="row">
404
  <label for="wm_config-rewrite"><?php _e( 'Redirection:', FB_WM_TEXTDOMAIN ); ?></label>
405
  </th>
406
  <td class="alternate">
416
  </th>
417
  <td>
418
  <select name="wm_config-notice" id="wm_config-notice">
419
+ <option value="0" <?php selected( $value['notice'], 0 ); ?>><?php _e('False', FB_WM_TEXTDOMAIN ); ?> </option>
420
+ <option value="1" <?php selected( $value['notice'], 1 ); ?>><?php _e('True', FB_WM_TEXTDOMAIN ); ?> </option>
421
  </select>
422
  <small><?php _e( 'Do you will see all notices, inside backend, the Admin Bar and the login screen?', FB_WM_TEXTDOMAIN ); ?></small>
423
  </td>
index.php CHANGED
@@ -25,5 +25,6 @@ if( ! defined( 'ABSPATH' ) || ! current_user_can('unfiltered_html') ) {
25
  wp_die( __('Cheatin&#8217; uh?') );
26
  exit;
27
  }
28
-
29
- include 'site.php';
 
25
  wp_die( __('Cheatin&#8217; uh?') );
26
  exit;
27
  }
28
+ // Allow alternative splash page
29
+ if ( ! file_exists( WP_CONTENT_DIR . '/wp-maintenance-mode.php' ) )
30
+ include 'site.php';
js/wp-maintenance-mode.js CHANGED
@@ -6,7 +6,7 @@ jQuery(document).ready( function($){
6
  //$("#wm_config-date").datepicker({ dateFormat: 'dd-mm-yy' });
7
  $("#wm_config-date").datetimepicker({ timeFormat: 'HH:mm:ss', dateFormat: 'dd-mm-yy' });
8
 
9
- function wm_config_active(){
10
 
11
  var active_Val = $('#wm_config-active').val();
12
  $.post( ajaxurl, {
@@ -19,6 +19,12 @@ jQuery(document).ready( function($){
19
  3000).hide('slow');
20
  }
21
  );
 
 
 
 
 
 
22
  }
23
 
24
  function wm_config_update() {
@@ -37,6 +43,7 @@ jQuery(document).ready( function($){
37
  heading_Val = $('#wm_config-heading').val();
38
  text_Val = $('#wm_config-text').val();
39
  exclude_Val = $('#wm_config-exclude').val();
 
40
  role_Val = $('#wm_config-role').val();
41
  role_frontend_Val = $('#wm_config-role_frontend').val();
42
  radio_Val = $('#wm_config-radio').val();
@@ -60,7 +67,8 @@ jQuery(document).ready( function($){
60
  "wm_config-header" : header_Val,
61
  "wm_config-heading" : heading_Val,
62
  "wm_config-text" : text_Val,
63
- "wm_config-exclude" : exclude_Val,
 
64
  "wm_config-role" : role_Val,
65
  "wm_config-role_frontend" : role_frontend_Val,
66
  "wm_config-radio" : radio_Val,
6
  //$("#wm_config-date").datepicker({ dateFormat: 'dd-mm-yy' });
7
  $("#wm_config-date").datetimepicker({ timeFormat: 'HH:mm:ss', dateFormat: 'dd-mm-yy' });
8
 
9
+ function wm_config_active() {
10
 
11
  var active_Val = $('#wm_config-active').val();
12
  $.post( ajaxurl, {
19
  3000).hide('slow');
20
  }
21
  );
22
+ // show admin bar and message note
23
+ if ( active_Val == 1 )
24
+ $('#wp-admin-bar-mm_alert, #message.error').show('fast');
25
+ // hide admin bar and message note
26
+ if ( active_Val == 0 )
27
+ $('#wp-admin-bar-mm_alert, #message.error').hide('fast');
28
  }
29
 
30
  function wm_config_update() {
43
  heading_Val = $('#wm_config-heading').val();
44
  text_Val = $('#wm_config-text').val();
45
  exclude_Val = $('#wm_config-exclude').val();
46
+ bypass_Val = $('#wm_config-bypass').val();
47
  role_Val = $('#wm_config-role').val();
48
  role_frontend_Val = $('#wm_config-role_frontend').val();
49
  radio_Val = $('#wm_config-radio').val();
67
  "wm_config-header" : header_Val,
68
  "wm_config-heading" : heading_Val,
69
  "wm_config-text" : text_Val,
70
+ "wm_config-exclude" : exclude_Val,
71
+ "wm_config-bypass" : bypass_Val,
72
  "wm_config-role" : role_Val,
73
  "wm_config-role_frontend" : role_frontend_Val,
74
  "wm_config-radio" : radio_Val,
languages/wp-maintenance-mode-cs_CZ.mo ADDED
Binary file
languages/wp-maintenance-mode-cs_CZ.po ADDED
@@ -0,0 +1,531 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode v1.8.7\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2013-05-17 21:32+0100\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=3; plural=n%100/10==1 ? 2 : n%10==1 ? 0 : (n+9)%10>3 ? 2 : 1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: Czech\n"
15
+ "X-Poedit-Country: CZECH REPUBLIC\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "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"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Textdomain-Support: yes\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ #@ default
23
+ #: inc/wp-maintenance-mode-settings.php:55
24
+ #: inc/wp-maintenance-mode-settings.php:65
25
+ msgid "Settings"
26
+ msgstr ""
27
+
28
+ #@ wp-maintenance-mode
29
+ #: inc/wp-maintenance-mode-settings.php:100
30
+ #: inc/wp-maintenance-mode-settings.php:429
31
+ #, php-format
32
+ msgid "Plugin %s settings <strong>updated</strong>."
33
+ msgstr "Nastavení pluginu %s <strong>aktualizováno</strong>."
34
+
35
+ #@ wp-maintenance-mode
36
+ #: inc/wp-maintenance-mode-settings.php:103
37
+ #: inc/wp-maintenance-mode-settings.php:116
38
+ #, php-format
39
+ msgid "Plugin %s active status <strong>updated</strong>."
40
+ msgstr "Status pluginu %s <strong>aktualizován</strong>."
41
+
42
+ #@ wp-maintenance-mode
43
+ #: inc/wp-maintenance-mode-settings.php:106
44
+ msgid "Plugin Activate"
45
+ msgstr "Zapnout režim údržby"
46
+
47
+ #@ wp-maintenance-mode
48
+ #: inc/wp-maintenance-mode-settings.php:110
49
+ #: inc/wp-maintenance-mode-settings.php:129
50
+ #: inc/wp-maintenance-mode-settings.php:173
51
+ #: inc/wp-maintenance-mode-settings.php:186
52
+ #: inc/wp-maintenance-mode-settings.php:261
53
+ #: inc/wp-maintenance-mode-settings.php:333
54
+ #: inc/wp-maintenance-mode-settings.php:419
55
+ msgid "False"
56
+ msgstr "Ne"
57
+
58
+ #@ wp-maintenance-mode
59
+ #: inc/wp-maintenance-mode-settings.php:111
60
+ #: inc/wp-maintenance-mode-settings.php:130
61
+ #: inc/wp-maintenance-mode-settings.php:174
62
+ #: inc/wp-maintenance-mode-settings.php:187
63
+ #: inc/wp-maintenance-mode-settings.php:262
64
+ #: inc/wp-maintenance-mode-settings.php:334
65
+ #: inc/wp-maintenance-mode-settings.php:420
66
+ msgid "True"
67
+ msgstr "Ano"
68
+
69
+ #@ wp-maintenance-mode
70
+ #: inc/wp-maintenance-mode-settings.php:113
71
+ msgid "Update"
72
+ msgstr "Změnit"
73
+
74
+ #@ wp-maintenance-mode
75
+ #: inc/wp-maintenance-mode-settings.php:119
76
+ msgid "Plugin Settings"
77
+ msgstr "Nastavení pluginu"
78
+
79
+ #@ wp-maintenance-mode
80
+ #: inc/wp-maintenance-mode-settings.php:125
81
+ msgid "Countdown:"
82
+ msgstr "Odpočítávání:"
83
+
84
+ #@ wp-maintenance-mode
85
+ #: inc/wp-maintenance-mode-settings.php:136
86
+ #: inc/wp-maintenance-mode-settings.php:139
87
+ msgid "Click for datepicker"
88
+ msgstr "Klikněte pro výběr data"
89
+
90
+ #@ wp-maintenance-mode
91
+ #: inc/wp-maintenance-mode-settings.php:136
92
+ msgid "Date:"
93
+ msgstr "Datum:"
94
+
95
+ #@ wp-maintenance-mode
96
+ #: inc/wp-maintenance-mode-settings.php:140
97
+ msgid "Activate countdown for using this. Use value and unit or use the countdown and set the date."
98
+ msgstr "Použije se jen, když zapnete odpočítávání. Nastavte hodnotu a jednotku, nebo nastavte datum odpočítávání."
99
+
100
+ #@ wp-maintenance-mode
101
+ #: inc/wp-maintenance-mode-settings.php:145
102
+ msgid "Value:"
103
+ msgstr "Hodnota:"
104
+
105
+ #@ wp-maintenance-mode
106
+ #: inc/wp-maintenance-mode-settings.php:153
107
+ msgid "Unit:"
108
+ msgstr "Jednotka:"
109
+
110
+ #@ wp-maintenance-mode
111
+ #: inc/wp-maintenance-mode-settings.php:157
112
+ msgid "second"
113
+ msgstr "sekunda/sekund"
114
+
115
+ #@ wp-maintenance-mode
116
+ #: inc/wp-maintenance-mode-settings.php:158
117
+ msgid "minute"
118
+ msgstr "minuta/minut"
119
+
120
+ #@ wp-maintenance-mode
121
+ #: inc/wp-maintenance-mode-settings.php:159
122
+ msgid "hour"
123
+ msgstr "hodina/hodin"
124
+
125
+ #@ wp-maintenance-mode
126
+ #: inc/wp-maintenance-mode-settings.php:160
127
+ msgid "day"
128
+ msgstr "den/dny"
129
+
130
+ #@ wp-maintenance-mode
131
+ #: inc/wp-maintenance-mode-settings.php:161
132
+ msgid "week"
133
+ msgstr "týden/týdny"
134
+
135
+ #@ wp-maintenance-mode
136
+ #: inc/wp-maintenance-mode-settings.php:162
137
+ msgid "month"
138
+ msgstr "měsíc/měsíce"
139
+
140
+ #@ wp-maintenance-mode
141
+ #: inc/wp-maintenance-mode-settings.php:163
142
+ msgid "year"
143
+ msgstr "rok/roky"
144
+
145
+ #@ wp-maintenance-mode
146
+ #: inc/wp-maintenance-mode-settings.php:169
147
+ msgid "Link:"
148
+ msgstr "Odkaz na plugin:"
149
+
150
+ #@ wp-maintenance-mode
151
+ #: inc/wp-maintenance-mode-settings.php:177
152
+ msgid "Please leave a link to the plugin- and design-author on your maintenance mode site."
153
+ msgstr "Prosím nechte odkaz na plugin na vaší stránce v režimu údržby."
154
+
155
+ #@ wp-maintenance-mode
156
+ #: inc/wp-maintenance-mode-settings.php:182
157
+ msgid "Admin Link:"
158
+ msgstr "Odkaz na administraci:"
159
+
160
+ #@ wp-maintenance-mode
161
+ #: inc/wp-maintenance-mode-settings.php:190
162
+ msgid "Do you will a link to the admin area of your install?"
163
+ msgstr "Chcete zobrazit odkaz pro přihlášení?"
164
+
165
+ #@ wp-maintenance-mode
166
+ #: inc/wp-maintenance-mode-settings.php:195
167
+ msgid "CSS Style:"
168
+ msgstr "CSS styl:"
169
+
170
+ #@ wp-maintenance-mode
171
+ #: inc/wp-maintenance-mode-settings.php:199
172
+ msgid "Own CSS Stylesheet"
173
+ msgstr "Vlastní CSS soubor"
174
+
175
+ #@ wp-maintenance-mode
176
+ #: inc/wp-maintenance-mode-settings.php:200
177
+ msgid "Simple Text"
178
+ msgstr "Jednoduchý text"
179
+
180
+ #@ wp-maintenance-mode
181
+ #: inc/wp-maintenance-mode-settings.php:201
182
+ msgid "The Truck"
183
+ msgstr "Kamion"
184
+
185
+ #@ wp-maintenance-mode
186
+ #: inc/wp-maintenance-mode-settings.php:202
187
+ msgid "The Sun"
188
+ msgstr "Slunce"
189
+
190
+ #@ wp-maintenance-mode
191
+ #: inc/wp-maintenance-mode-settings.php:203
192
+ msgid "The FF Error"
193
+ msgstr "Chyba Firefoxu"
194
+
195
+ #@ wp-maintenance-mode
196
+ #: inc/wp-maintenance-mode-settings.php:204
197
+ msgid "Monster"
198
+ msgstr "Příšera"
199
+
200
+ #@ wp-maintenance-mode
201
+ #: inc/wp-maintenance-mode-settings.php:205
202
+ msgid "Chastely"
203
+ msgstr "Decentní"
204
+
205
+ #@ wp-maintenance-mode
206
+ #: inc/wp-maintenance-mode-settings.php:206
207
+ msgid "Only Typo"
208
+ msgstr "Typografický"
209
+
210
+ #@ wp-maintenance-mode
211
+ #: inc/wp-maintenance-mode-settings.php:207
212
+ msgid "Paint"
213
+ msgstr "Malba"
214
+
215
+ #@ wp-maintenance-mode
216
+ #: inc/wp-maintenance-mode-settings.php:208
217
+ msgid "Animate (Flash)"
218
+ msgstr "Animace (flash v němčině)"
219
+
220
+ #@ wp-maintenance-mode
221
+ #: inc/wp-maintenance-mode-settings.php:209
222
+ msgid "Damask"
223
+ msgstr "Damaškový"
224
+
225
+ #@ wp-maintenance-mode
226
+ #: inc/wp-maintenance-mode-settings.php:210
227
+ msgid "Lego"
228
+ msgstr "Lego"
229
+
230
+ #@ wp-maintenance-mode
231
+ #: inc/wp-maintenance-mode-settings.php:211
232
+ msgid "Chemistry"
233
+ msgstr "Chemie"
234
+
235
+ #@ wp-maintenance-mode
236
+ #: inc/wp-maintenance-mode-settings.php:217
237
+ msgid "Own CSS Style URL:"
238
+ msgstr "Adresa vlastního CSS stylu:"
239
+
240
+ #@ wp-maintenance-mode
241
+ #: inc/wp-maintenance-mode-settings.php:220
242
+ msgid "URL to the css-file (incl. http://)"
243
+ msgstr "Adresa souboru (včetně http://)"
244
+
245
+ #@ wp-maintenance-mode
246
+ #: inc/wp-maintenance-mode-settings.php:222
247
+ msgid "<strong>Caution:</strong> Please don&acute;t copy the stylesheet in your plugin folder, it will be deleted on the next automatical update of the plugin!"
248
+ msgstr "<strong>Pozor:</strong> Nedávejte soubor do složky pluginu. Při případné aktualizaci by byl vymazán."
249
+
250
+ #@ wp-maintenance-mode
251
+ #: inc/wp-maintenance-mode-settings.php:227
252
+ #: inc/wp-maintenance-mode-settings.php:250
253
+ msgid "Preview"
254
+ msgstr "Náhled (nejprve uložte předvolby)"
255
+
256
+ #@ wp-maintenance-mode
257
+ #: inc/wp-maintenance-mode-settings.php:257
258
+ msgid "noindex, nofollow:"
259
+ msgstr "noindex, nofollow:"
260
+
261
+ #@ wp-maintenance-mode
262
+ #: inc/wp-maintenance-mode-settings.php:265
263
+ 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."
264
+ msgstr "Nastavte ANO, aby se obsah neindexoval; nastavte NE pro indexování."
265
+
266
+ #@ wp-maintenance-mode
267
+ #: inc/wp-maintenance-mode-settings.php:270
268
+ msgid "Title:"
269
+ msgstr "Záhlaví:"
270
+
271
+ #@ wp-maintenance-mode
272
+ #: inc/wp-maintenance-mode-settings.php:273
273
+ #: inc/wp-maintenance-mode-settings.php:281
274
+ #: inc/wp-maintenance-mode-settings.php:289
275
+ msgid "Leave empty for default."
276
+ msgstr "Když necháte prázdné, tak se použije výchozí."
277
+
278
+ #@ wp-maintenance-mode
279
+ #: inc/wp-maintenance-mode-settings.php:278
280
+ msgid "Header:"
281
+ msgstr "Nadpis:"
282
+
283
+ #@ wp-maintenance-mode
284
+ #: inc/wp-maintenance-mode-settings.php:286
285
+ msgid "Heading:"
286
+ msgstr "Hlavička:"
287
+
288
+ #@ wp-maintenance-mode
289
+ #: inc/wp-maintenance-mode-settings.php:294
290
+ msgid "Text:"
291
+ msgstr "Text:"
292
+
293
+ #@ wp-maintenance-mode
294
+ #: inc/wp-maintenance-mode-settings.php:300
295
+ #, php-format
296
+ 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."
297
+ msgstr "Použijte <em>%1$s</em> pro časový údaj nebo odpočítávání a <em>%2$s</em> pro jednotku času nebo jednotku odpočítávání; Je možné použít HTML a zkratkové kódy."
298
+
299
+ #@ wp-maintenance-mode
300
+ #: inc/wp-maintenance-mode-settings.php:301
301
+ msgid "Use <code>[loginform]</code> for add the default login form in the maintenance page."
302
+ msgstr "Kód <code>[loginform]</code> zobrazí standardní přihlašovací formulář na stránce v režimu ůdržby."
303
+
304
+ #@ wp-maintenance-mode
305
+ #: inc/wp-maintenance-mode-settings.php:307
306
+ msgid "Exclude:"
307
+ msgstr "Vynechat:"
308
+
309
+ #@ wp-maintenance-mode
310
+ #: inc/wp-maintenance-mode-settings.php:323
311
+ 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:"
312
+ msgstr "Zadejte adresy, které chcete vyloučit.<br />Příklady:"
313
+
314
+ #@ wp-maintenance-mode
315
+ #: inc/wp-maintenance-mode-settings.php:329
316
+ msgid "Bypass for Search Bots:"
317
+ msgstr "Povolit vyhledávací roboty:"
318
+
319
+ #@ wp-maintenance-mode
320
+ #: inc/wp-maintenance-mode-settings.php:336
321
+ msgid "Allow Search Bots to bypass maintenance mode?"
322
+ msgstr "Nechat vyhledávací roboty obejít režim údržby?"
323
+
324
+ #@ wp-maintenance-mode
325
+ #: inc/wp-maintenance-mode-settings.php:342
326
+ msgid "Backend Role:"
327
+ msgstr "Přístup do administrace:"
328
+
329
+ #@ wp-maintenance-mode
330
+ #: inc/wp-maintenance-mode-settings.php:367
331
+ msgid "Allowed userrole to access the backend of this blog."
332
+ msgstr "Uživatelé, kteří budou mít přístup k administraci blogu."
333
+
334
+ #@ wp-maintenance-mode
335
+ #: inc/wp-maintenance-mode-settings.php:368
336
+ #: inc/wp-maintenance-mode-settings.php:399
337
+ msgid "Super Admin has always access."
338
+ msgstr "Super Admin má vždy přístup."
339
+
340
+ #@ wp-maintenance-mode
341
+ #: inc/wp-maintenance-mode-settings.php:373
342
+ msgid "Frontend Role:"
343
+ msgstr "Kdo může vidět web:"
344
+
345
+ #@ wp-maintenance-mode
346
+ #: inc/wp-maintenance-mode-settings.php:398
347
+ msgid "Allowed userrole to see the frontend of this blog."
348
+ msgstr "Kdo si po přihlášení může prohlédnout web."
349
+
350
+ #@ wp-maintenance-mode
351
+ #: inc/wp-maintenance-mode-settings.php:404
352
+ msgid "Redirection:"
353
+ msgstr "Přesměrování:"
354
+
355
+ #@ wp-maintenance-mode
356
+ #: inc/wp-maintenance-mode-settings.php:409
357
+ msgid "If you want that after the login the destination address is not standard to the dashboard, then defining a URL. (incl. http://)"
358
+ msgstr "Pokud nechcete po přihlášení otevřít nástěnku (adresa včetně http://)."
359
+
360
+ #@ wp-maintenance-mode
361
+ #: inc/wp-maintenance-mode-settings.php:415
362
+ msgid "Notice:"
363
+ msgstr "Připomínka:"
364
+
365
+ #@ wp-maintenance-mode
366
+ #: inc/wp-maintenance-mode-settings.php:422
367
+ msgid "Do you will see all notices, inside backend, the Admin Bar and the login screen?"
368
+ msgstr "Uvidíte upozornění na režim údržby v administraci a na přihlašovací stránce."
369
+
370
+ #@ wp-maintenance-mode
371
+ #: inc/wp-maintenance-mode-settings.php:432
372
+ msgid "Save"
373
+ msgstr "Uložit"
374
+
375
+ #@ default
376
+ #: index.php:25
377
+ msgid "Cheatin&#8217; uh?"
378
+ msgstr ""
379
+
380
+ #@ wp-maintenance-mode
381
+ #: site.php:29
382
+ #: site.php:70
383
+ msgid "Maintenance Mode"
384
+ msgstr "Režim údržby"
385
+
386
+ #@ wp-maintenance-mode
387
+ #: site.php:90
388
+ msgid "Access to the admin area blocked"
389
+ msgstr "Přístup do administrace je zakázán"
390
+
391
+ #@ wp-maintenance-mode
392
+ #: site.php:93
393
+ msgid "Admin-Logout"
394
+ msgstr "Odhlášení z administrace"
395
+
396
+ #@ wp-maintenance-mode
397
+ #: site.php:98
398
+ msgid "Admin-Login"
399
+ msgstr "Přihlášení k administraci"
400
+
401
+ #@ wp-maintenance-mode
402
+ #. translators: plugin header field 'Name'
403
+ #: wp-maintenance-mode.php:0
404
+ msgid "WP Maintenance Mode"
405
+ msgstr "WP Maintenance Mode"
406
+
407
+ #@ wp-maintenance-mode
408
+ #. translators: plugin header field 'PluginURI'
409
+ #: wp-maintenance-mode.php:0
410
+ msgid "http://wordpress.org/extend/plugins/wp-maintenance-mode/"
411
+ msgstr "http://wordpress.org/extend/plugins/wp-maintenance-mode/"
412
+
413
+ #@ wp-maintenance-mode
414
+ #. translators: plugin header field 'Description'
415
+ #: wp-maintenance-mode.php:0
416
+ 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."
417
+ msgstr "Plugin přidá krycí domácí stránku s upozorněním, že se blog upravuje. Přihlášení uživatelé mohou vidět vzhled webu, pokud to povolíte v nastavení."
418
+
419
+ #@ wp-maintenance-mode
420
+ #. translators: plugin header field 'Author'
421
+ #: wp-maintenance-mode.php:0
422
+ msgid "Frank B&uuml;ltge"
423
+ msgstr "Frank B&uuml;ltge"
424
+
425
+ #@ wp-maintenance-mode
426
+ #. translators: plugin header field 'AuthorURI'
427
+ #: wp-maintenance-mode.php:0
428
+ msgid "http://bueltge.de/"
429
+ msgstr "http://bueltge.de/"
430
+
431
+ #@ wp-maintenance-mode
432
+ #. translators: plugin header field 'Version'
433
+ #: wp-maintenance-mode.php:0
434
+ msgid "1.8.7"
435
+ msgstr "1.8.7"
436
+
437
+ #@ wp-maintenance-mode
438
+ #: wp-maintenance-mode.php:340
439
+ msgid "Maintenance mode"
440
+ msgstr "Režim údržby"
441
+
442
+ #@ wp-maintenance-mode
443
+ #: wp-maintenance-mode.php:341
444
+ #, php-format
445
+ 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>"
446
+ msgstr ""
447
+ "<p>Omlouváme se.<br />Na stránce právě probíhá plánovaná údržba.<br /><strong>\n"
448
+ "Prosím zkuste se sem vrátit za %1$s %2$s</strong><br />Děkujeme za pochopení.</p>"
449
+
450
+ #@ wp-maintenance-mode
451
+ #: wp-maintenance-mode.php:384
452
+ #: wp-maintenance-mode.php:464
453
+ msgid "Updated"
454
+ msgstr "Uloženo"
455
+
456
+ #@ wp-maintenance-mode
457
+ #: wp-maintenance-mode.php:643
458
+ msgid "seconds"
459
+ msgstr "sekundy"
460
+
461
+ #@ wp-maintenance-mode
462
+ #: wp-maintenance-mode.php:647
463
+ msgid "minutes"
464
+ msgstr "minuty"
465
+
466
+ #@ wp-maintenance-mode
467
+ #: wp-maintenance-mode.php:651
468
+ msgid "hours"
469
+ msgstr "hodiny"
470
+
471
+ #@ wp-maintenance-mode
472
+ #: wp-maintenance-mode.php:655
473
+ msgid "days"
474
+ msgstr "dny"
475
+
476
+ #@ wp-maintenance-mode
477
+ #: wp-maintenance-mode.php:659
478
+ msgid "weeks"
479
+ msgstr "týdny"
480
+
481
+ #@ wp-maintenance-mode
482
+ #: wp-maintenance-mode.php:663
483
+ msgid "months"
484
+ msgstr "měsíce"
485
+
486
+ #@ wp-maintenance-mode
487
+ #: wp-maintenance-mode.php:667
488
+ msgid "years"
489
+ msgstr "roky"
490
+
491
+ #@ wp-maintenance-mode
492
+ #: wp-maintenance-mode.php:729
493
+ msgid " &amp; WP Super Cache flushed."
494
+ msgstr " &amp; WP Super Cache vyprázdněna."
495
+
496
+ #@ wp-maintenance-mode
497
+ #: wp-maintenance-mode.php:736
498
+ msgid " &amp; W3 Total Cache for pages flushed."
499
+ msgstr " &amp; W3 Total Cache vyprázdněna."
500
+
501
+ #@ wp-maintenance-mode
502
+ #: wp-maintenance-mode.php:741
503
+ #: wp-maintenance-mode.php:1059
504
+ msgid "Caution: Maintenance mode is <strong>active</strong>!"
505
+ msgstr "Pozor: Režim údržby je <strong>zapnutý</strong>!"
506
+
507
+ #@ wp-maintenance-mode
508
+ #: wp-maintenance-mode.php:743
509
+ msgid "Deactivate or change Settings"
510
+ msgstr "Vypnout nebo změnit nastavení"
511
+
512
+ #@ wp-maintenance-mode
513
+ #: wp-maintenance-mode.php:851
514
+ msgid "Plugin by:"
515
+ msgstr "Plugin od:"
516
+
517
+ #@ wp-maintenance-mode
518
+ #: wp-maintenance-mode.php:853
519
+ #: wp-maintenance-mode.php:855
520
+ #: wp-maintenance-mode.php:857
521
+ #: wp-maintenance-mode.php:859
522
+ #: wp-maintenance-mode.php:861
523
+ #: wp-maintenance-mode.php:863
524
+ #: wp-maintenance-mode.php:865
525
+ #: wp-maintenance-mode.php:867
526
+ #: wp-maintenance-mode.php:869
527
+ #: wp-maintenance-mode.php:871
528
+ #: wp-maintenance-mode.php:873
529
+ msgid "Design by:"
530
+ msgstr "Design:"
531
+
languages/wp-maintenance-mode-de_DE.mo CHANGED
Binary file
languages/wp-maintenance-mode-de_DE.po CHANGED
@@ -1,15 +1,16 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: WP Maintenance Mode v1.8.5\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2012-11-14 12:06+0100\n"
6
- "PO-Revision-Date: 2013-01-24 19:44:04+0000\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"
@@ -19,23 +20,23 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: site.php:10
23
- #: site.php:52
24
  #@ wp-maintenance-mode
25
  msgid "Maintenance Mode"
26
  msgstr "Wartungsmodus"
27
 
28
- #: site.php:59
29
  #@ wp-maintenance-mode
30
  msgid "Access to the admin area blocked"
31
  msgstr "Zugang zum Admin-Bereich wurde blockiert"
32
 
33
- #: site.php:62
34
  #@ wp-maintenance-mode
35
  msgid "Admin-Logout"
36
  msgstr "Admin-Logout"
37
 
38
- #: site.php:66
39
  #@ wp-maintenance-mode
40
  msgid "Admin-Login"
41
  msgstr "Admin-Login"
@@ -46,431 +47,418 @@ msgstr "Admin-Login"
46
  msgid "Settings"
47
  msgstr "Einstellungen"
48
 
49
- #: wp-maintenance-mode.php:256
50
  #@ wp-maintenance-mode
51
  msgid "Maintenance mode"
52
  msgstr "Wartungsmodus"
53
 
54
- #: wp-maintenance-mode.php:257
55
  #, php-format
56
  #@ wp-maintenance-mode
57
  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>"
58
  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>"
59
 
60
- #: wp-maintenance-mode.php:299
61
- #: wp-maintenance-mode.php:359
62
  #@ wp-maintenance-mode
63
  msgid "Updated"
64
  msgstr "Gespeichert"
65
 
66
- #: wp-maintenance-mode.php:491
67
  #@ wp-maintenance-mode
68
  msgid "seconds"
69
  msgstr "Sekunden"
70
 
71
- #: wp-maintenance-mode.php:495
72
  #@ wp-maintenance-mode
73
  msgid "minutes"
74
  msgstr "Minuten"
75
 
76
- #: wp-maintenance-mode.php:499
77
  #@ wp-maintenance-mode
78
  msgid "hours"
79
  msgstr "Stunden"
80
 
81
- #: wp-maintenance-mode.php:503
82
  #@ wp-maintenance-mode
83
  msgid "days"
84
  msgstr "Tagen"
85
 
86
- #: wp-maintenance-mode.php:507
87
  #@ wp-maintenance-mode
88
  msgid "weeks"
89
  msgstr "Wochen"
90
 
91
- #: wp-maintenance-mode.php:511
92
  #@ wp-maintenance-mode
93
  msgid "months"
94
  msgstr "Monate"
95
 
96
- #: wp-maintenance-mode.php:515
97
  #@ wp-maintenance-mode
98
  msgid "years"
99
  msgstr "Jahren"
100
 
101
- #: wp-maintenance-mode.php:576
102
  #@ wp-maintenance-mode
103
  msgid " &amp; WP Super Cache flushed."
104
  msgstr " &amp; WP Super Cache aktualisiert."
105
 
106
- #: wp-maintenance-mode.php:583
107
  #@ wp-maintenance-mode
108
  msgid " &amp; W3 Total Cache for pages flushed."
109
  msgstr " &amp; W3 Total Cache für Seiten aktualisiert."
110
 
111
- #: wp-maintenance-mode.php:588
112
- #: wp-maintenance-mode.php:874
113
  #@ wp-maintenance-mode
114
  msgid "Caution: Maintenance mode is <strong>active</strong>!"
115
  msgstr "Achtung: Wartungsmodus ist <strong>aktiv</strong>!"
116
 
117
- #: wp-maintenance-mode.php:590
118
  #@ wp-maintenance-mode
119
  msgid "Deactivate or change Settings"
120
  msgstr "Deaktivieren oder Einstellungen ändern "
121
 
122
- #: wp-maintenance-mode.php:676
123
  #@ wp-maintenance-mode
124
  msgid "Plugin by:"
125
  msgstr "Plugin von:"
126
 
127
- #: wp-maintenance-mode.php:678
128
- #: wp-maintenance-mode.php:680
129
- #: wp-maintenance-mode.php:682
130
- #: wp-maintenance-mode.php:684
131
- #: wp-maintenance-mode.php:686
132
- #: wp-maintenance-mode.php:688
133
- #: wp-maintenance-mode.php:690
134
- #: wp-maintenance-mode.php:692
135
- #: wp-maintenance-mode.php:694
136
- #: wp-maintenance-mode.php:696
137
- #: wp-maintenance-mode.php:698
138
  #@ wp-maintenance-mode
139
  msgid "Design by:"
140
  msgstr "Design von:"
141
 
142
- #: inc/wp-maintenance-mode-settings.php:94
143
- #: inc/wp-maintenance-mode-settings.php:410
144
  #, php-format
145
  #@ wp-maintenance-mode
146
  msgid "Plugin %s settings <strong>updated</strong>."
147
  msgstr "Plugin %s Einstellungen <strong>gespeichert</strong>."
148
 
149
- #: inc/wp-maintenance-mode-settings.php:97
150
- #: inc/wp-maintenance-mode-settings.php:110
151
  #, php-format
152
  #@ wp-maintenance-mode
153
  msgid "Plugin %s active status <strong>updated</strong>."
154
  msgstr "Plugin %s aktiv-status <strong>aktualisiert</strong>."
155
 
156
- #: inc/wp-maintenance-mode-settings.php:100
157
  #@ wp-maintenance-mode
158
  msgid "Plugin Activate"
159
  msgstr "Plugin aktivieren"
160
 
161
- #: inc/wp-maintenance-mode-settings.php:104
162
- #: inc/wp-maintenance-mode-settings.php:123
163
- #: inc/wp-maintenance-mode-settings.php:167
164
- #: inc/wp-maintenance-mode-settings.php:180
165
- #: inc/wp-maintenance-mode-settings.php:256
166
- #: inc/wp-maintenance-mode-settings.php:400
 
167
  #@ wp-maintenance-mode
168
  msgid "False"
169
  msgstr "Nein"
170
 
171
- #: inc/wp-maintenance-mode-settings.php:105
172
- #: inc/wp-maintenance-mode-settings.php:124
173
- #: inc/wp-maintenance-mode-settings.php:168
174
- #: inc/wp-maintenance-mode-settings.php:181
175
- #: inc/wp-maintenance-mode-settings.php:257
176
- #: inc/wp-maintenance-mode-settings.php:401
 
177
  #@ wp-maintenance-mode
178
  msgid "True"
179
  msgstr "Ja"
180
 
181
- #: inc/wp-maintenance-mode-settings.php:107
182
  #@ wp-maintenance-mode
183
  msgid "Update"
184
  msgstr "Aktualisieren"
185
 
186
- #: inc/wp-maintenance-mode-settings.php:113
187
  #@ wp-maintenance-mode
188
  msgid "Plugin Settings"
189
  msgstr "Plugin Einstellungen"
190
 
191
- #: inc/wp-maintenance-mode-settings.php:119
192
  #@ wp-maintenance-mode
193
  msgid "Countdown:"
194
  msgstr "Countdown:"
195
 
196
- #: inc/wp-maintenance-mode-settings.php:130
197
- #: inc/wp-maintenance-mode-settings.php:133
198
  #@ wp-maintenance-mode
199
  msgid "Click for datepicker"
200
  msgstr "Klick für den Datums-Picker"
201
 
202
- #: inc/wp-maintenance-mode-settings.php:130
203
  #@ wp-maintenance-mode
204
  msgid "Date:"
205
  msgstr "Datum:"
206
 
207
- #: inc/wp-maintenance-mode-settings.php:134
208
  #@ wp-maintenance-mode
209
  msgid "Activate countdown for using this. Use value and unit or use the countdown and set the date."
210
  msgstr "Aktiviere den Countdown um ihn zu nutzen. Vergebe Wert und Einheit oder wähle ein Datum für den Countdown."
211
 
212
- #: inc/wp-maintenance-mode-settings.php:139
213
  #@ wp-maintenance-mode
214
  msgid "Value:"
215
  msgstr "Wert:"
216
 
217
- #: inc/wp-maintenance-mode-settings.php:147
218
  #@ wp-maintenance-mode
219
  msgid "Unit:"
220
  msgstr "Einheit:"
221
 
222
- #: inc/wp-maintenance-mode-settings.php:151
223
  #@ wp-maintenance-mode
224
  msgid "second"
225
  msgstr "sekunde"
226
 
227
- #: inc/wp-maintenance-mode-settings.php:152
228
  #@ wp-maintenance-mode
229
  msgid "minute"
230
  msgstr "minute"
231
 
232
- #: inc/wp-maintenance-mode-settings.php:153
233
  #@ wp-maintenance-mode
234
  msgid "hour"
235
  msgstr "stunde"
236
 
237
- #: inc/wp-maintenance-mode-settings.php:154
238
  #@ wp-maintenance-mode
239
  msgid "day"
240
  msgstr "tag"
241
 
242
- #: inc/wp-maintenance-mode-settings.php:155
243
  #@ wp-maintenance-mode
244
  msgid "week"
245
  msgstr "woche"
246
 
247
- #: inc/wp-maintenance-mode-settings.php:156
248
  #@ wp-maintenance-mode
249
  msgid "month"
250
  msgstr "monat"
251
 
252
- #: inc/wp-maintenance-mode-settings.php:157
253
  #@ wp-maintenance-mode
254
  msgid "year"
255
  msgstr "jahr"
256
 
257
- #: inc/wp-maintenance-mode-settings.php:163
258
  #@ wp-maintenance-mode
259
  msgid "Link:"
260
  msgstr "Link:"
261
 
262
- #: inc/wp-maintenance-mode-settings.php:171
263
  #@ wp-maintenance-mode
264
  msgid "Please leave a link to the plugin- and design-author on your maintenance mode site."
265
  msgstr "Bitte hinterlasse einen Link zum Plugin- und Design-Autor auf deiner Wartungsmodus-Seite."
266
 
267
- #: inc/wp-maintenance-mode-settings.php:176
268
  #@ wp-maintenance-mode
269
  msgid "Admin Link:"
270
  msgstr "Admin Link:"
271
 
272
- #: inc/wp-maintenance-mode-settings.php:184
273
  #@ wp-maintenance-mode
274
  msgid "Do you will a link to the admin area of your install?"
275
  msgstr "Willst du einen Link zum Admin Bereich dieser Installation?"
276
 
277
- #: inc/wp-maintenance-mode-settings.php:189
278
- #@ wp-maintenance-mode
279
- msgid "Theme:"
280
- msgstr "Theme:"
281
-
282
- #: inc/wp-maintenance-mode-settings.php:193
283
- #@ wp-maintenance-mode
284
- msgid "Own Style"
285
- msgstr "Eigenes Design"
286
-
287
- #: inc/wp-maintenance-mode-settings.php:194
288
  #@ wp-maintenance-mode
289
  msgid "Simple Text"
290
  msgstr "Einfach Text"
291
 
292
- #: inc/wp-maintenance-mode-settings.php:195
293
  #@ wp-maintenance-mode
294
  msgid "The Truck"
295
  msgstr "Der Truck"
296
 
297
- #: inc/wp-maintenance-mode-settings.php:196
298
  #@ wp-maintenance-mode
299
  msgid "The Sun"
300
  msgstr "The Sun"
301
 
302
- #: inc/wp-maintenance-mode-settings.php:197
303
  #@ wp-maintenance-mode
304
  msgid "The FF Error"
305
  msgstr "The FF Error"
306
 
307
- #: inc/wp-maintenance-mode-settings.php:198
308
  #@ wp-maintenance-mode
309
  msgid "Monster"
310
  msgstr "Monster"
311
 
312
- #: inc/wp-maintenance-mode-settings.php:199
313
  #@ wp-maintenance-mode
314
  msgid "Chastely"
315
  msgstr "Chastely"
316
 
317
- #: inc/wp-maintenance-mode-settings.php:200
318
  #@ wp-maintenance-mode
319
  msgid "Only Typo"
320
  msgstr "Only Typo"
321
 
322
- #: inc/wp-maintenance-mode-settings.php:201
323
  #@ wp-maintenance-mode
324
  msgid "Paint"
325
  msgstr "Paint"
326
 
327
- #: inc/wp-maintenance-mode-settings.php:202
328
  #@ wp-maintenance-mode
329
  msgid "Animate (Flash)"
330
  msgstr "Animate (Flash)"
331
 
332
- #: inc/wp-maintenance-mode-settings.php:203
333
  #@ wp-maintenance-mode
334
  msgid "Damask"
335
  msgstr "Damask"
336
 
337
- #: inc/wp-maintenance-mode-settings.php:204
338
  #@ wp-maintenance-mode
339
  msgid "Lego"
340
  msgstr "Lego"
341
 
342
- #: inc/wp-maintenance-mode-settings.php:205
343
  #@ wp-maintenance-mode
344
  msgid "Chemistry"
345
  msgstr "Chemielabor"
346
 
347
- #: inc/wp-maintenance-mode-settings.php:211
348
- #@ wp-maintenance-mode
349
- msgid "Own Style URL:"
350
- msgstr "Eigenes Design:"
351
-
352
- #: inc/wp-maintenance-mode-settings.php:214
353
  #@ wp-maintenance-mode
354
  msgid "URL to the css-file (incl. http://)"
355
  msgstr "URL zur css-Datei (inkl. http://)"
356
 
357
- #: inc/wp-maintenance-mode-settings.php:216
358
  #@ wp-maintenance-mode
359
  msgid "<strong>Caution:</strong> Please don&acute;t copy the stylesheet in your plugin folder, it will be deleted on the next automatical update of the plugin!"
360
  msgstr "<strong>Hinweis:</strong> Bitte speichere das Sytelsheet nicht im Plugin-Ordner, der Ordner wird beim automatischen Update ersetzt!"
361
 
362
- #: inc/wp-maintenance-mode-settings.php:221
363
- #: inc/wp-maintenance-mode-settings.php:245
364
  #@ wp-maintenance-mode
365
  msgid "Preview"
366
  msgstr "Vorschau"
367
 
368
- #: inc/wp-maintenance-mode-settings.php:252
369
  #@ wp-maintenance-mode
370
  msgid "noindex, nofollow:"
371
  msgstr "noindex, nofollow:"
372
 
373
- #: inc/wp-maintenance-mode-settings.php:260
374
  #@ wp-maintenance-mode
375
  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."
376
  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."
377
 
378
- #: inc/wp-maintenance-mode-settings.php:265
379
  #@ wp-maintenance-mode
380
  msgid "Title:"
381
  msgstr "Titel:"
382
 
383
- #: inc/wp-maintenance-mode-settings.php:268
384
- #: inc/wp-maintenance-mode-settings.php:276
385
- #: inc/wp-maintenance-mode-settings.php:284
386
  #@ wp-maintenance-mode
387
  msgid "Leave empty for default."
388
  msgstr "Leer lassen für den Standardtext."
389
 
390
- #: inc/wp-maintenance-mode-settings.php:273
391
  #@ wp-maintenance-mode
392
  msgid "Header:"
393
  msgstr "Header:"
394
 
395
- #: inc/wp-maintenance-mode-settings.php:281
396
  #@ wp-maintenance-mode
397
  msgid "Heading:"
398
  msgstr "Überschrift:"
399
 
400
- #: inc/wp-maintenance-mode-settings.php:289
401
  #@ wp-maintenance-mode
402
  msgid "Text:"
403
  msgstr "Text:"
404
 
405
- #: inc/wp-maintenance-mode-settings.php:302
406
  #, fuzzy
407
  #@ wp-maintenance-mode
408
  msgid "Exclude:"
409
  msgstr "Ausnahmen:"
410
 
411
- #: inc/wp-maintenance-mode-settings.php:318
412
  #@ wp-maintenance-mode
413
  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:"
414
  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:"
415
 
416
- #: inc/wp-maintenance-mode-settings.php:323
417
  #@ wp-maintenance-mode
418
  msgid "Backend Role:"
419
  msgstr "Backendrolle:"
420
 
421
- #: inc/wp-maintenance-mode-settings.php:348
422
  #@ wp-maintenance-mode
423
  msgid "Allowed userrole to access the backend of this blog."
424
  msgstr "Erlaubte User-Rolle für das Sehen des Backend von diesem Blog."
425
 
426
- #: inc/wp-maintenance-mode-settings.php:349
427
- #: inc/wp-maintenance-mode-settings.php:380
428
  #@ wp-maintenance-mode
429
  msgid "Super Admin has always access."
430
  msgstr "Super Admin hat immer Zugang."
431
 
432
- #: inc/wp-maintenance-mode-settings.php:354
433
  #@ wp-maintenance-mode
434
  msgid "Frontend Role:"
435
  msgstr "Frontendrolle:"
436
 
437
- #: inc/wp-maintenance-mode-settings.php:379
438
  #@ wp-maintenance-mode
439
  msgid "Allowed userrole to see the frontend of this blog."
440
  msgstr "Erlaubte User-Rolle für das Sehen des Frontend von diesem Blog."
441
 
442
- #: inc/wp-maintenance-mode-settings.php:385
443
  #@ wp-maintenance-mode
444
  msgid "Redirection:"
445
  msgstr "Weiterleitung:"
446
 
447
- #: inc/wp-maintenance-mode-settings.php:390
448
  #@ wp-maintenance-mode
449
  msgid "If you want that after the login the destination address is not standard to the dashboard, then defining a URL. (incl. http://)"
450
  msgstr "Wenn du nach dem Login eine Weiterleitung verändert zum Standard, dem Dashboard, wünschst, dann definiere eine URL. (inkl. http://)"
451
 
452
- #: inc/wp-maintenance-mode-settings.php:413
453
  #@ wp-maintenance-mode
454
  msgid "Save"
455
  msgstr "Speichern"
456
 
457
- #: inc/wp-maintenance-mode-settings.php:295
458
  #, php-format
459
  #@ wp-maintenance-mode
460
  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."
461
  msgstr "Nutze zu erst <em>%1$s</em>für die Zeitwerte oder den Countdown und den zweiten String <em>%2$s</em> für die Einheit der Zeit oder der Countdown-Werte; HTML und Shortcodes sind möglich."
462
 
463
- #: inc/wp-maintenance-mode-settings.php:296
464
  #@ wp-maintenance-mode
465
  msgid "Use <code>[loginform]</code> for add the default login form in the maintenance page."
466
  msgstr "Nutze <code>[loginform]</code> für das Hinzufügen eines Login Formulars auf der Wartungsseite."
467
 
468
- #: inc/wp-maintenance-mode-settings.php:396
469
  #@ wp-maintenance-mode
470
  msgid "Notice:"
471
  msgstr "Hinweis:"
472
 
473
- #: inc/wp-maintenance-mode-settings.php:403
474
  #@ wp-maintenance-mode
475
  msgid "Do you will see all notices, inside backend, the Admin Bar and the login screen?"
476
  msgstr "Willst du alle Hinweise zum aktiven Wartungsmodus sehen, im Backend, in der Admin Bar und im Login Screen?"
@@ -510,9 +498,34 @@ msgstr ""
510
  msgid "http://bueltge.de/"
511
  msgstr ""
512
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
513
  #. translators: plugin header field 'Version'
514
  #: wp-maintenance-mode.php:0
515
  #@ wp-maintenance-mode
516
- msgid "1.8.5"
517
  msgstr ""
518
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode v1.8.7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2012-11-14 12:06+0100\n"
6
+ "PO-Revision-Date: 2013-03-21 12:20:53+0000\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-Generator: CSL v1.x\n"
14
  "X-Poedit-Language: \n"
15
  "X-Poedit-Country: \n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: site.php:27
24
+ #: site.php:65
25
  #@ wp-maintenance-mode
26
  msgid "Maintenance Mode"
27
  msgstr "Wartungsmodus"
28
 
29
+ #: site.php:72
30
  #@ wp-maintenance-mode
31
  msgid "Access to the admin area blocked"
32
  msgstr "Zugang zum Admin-Bereich wurde blockiert"
33
 
34
+ #: site.php:75
35
  #@ wp-maintenance-mode
36
  msgid "Admin-Logout"
37
  msgstr "Admin-Logout"
38
 
39
+ #: site.php:80
40
  #@ wp-maintenance-mode
41
  msgid "Admin-Login"
42
  msgstr "Admin-Login"
47
  msgid "Settings"
48
  msgstr "Einstellungen"
49
 
50
+ #: wp-maintenance-mode.php:304
51
  #@ wp-maintenance-mode
52
  msgid "Maintenance mode"
53
  msgstr "Wartungsmodus"
54
 
55
+ #: wp-maintenance-mode.php:305
56
  #, php-format
57
  #@ wp-maintenance-mode
58
  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>"
59
  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>"
60
 
61
+ #: wp-maintenance-mode.php:348
62
+ #: wp-maintenance-mode.php:428
63
  #@ wp-maintenance-mode
64
  msgid "Updated"
65
  msgstr "Gespeichert"
66
 
67
+ #: wp-maintenance-mode.php:607
68
  #@ wp-maintenance-mode
69
  msgid "seconds"
70
  msgstr "Sekunden"
71
 
72
+ #: wp-maintenance-mode.php:611
73
  #@ wp-maintenance-mode
74
  msgid "minutes"
75
  msgstr "Minuten"
76
 
77
+ #: wp-maintenance-mode.php:615
78
  #@ wp-maintenance-mode
79
  msgid "hours"
80
  msgstr "Stunden"
81
 
82
+ #: wp-maintenance-mode.php:619
83
  #@ wp-maintenance-mode
84
  msgid "days"
85
  msgstr "Tagen"
86
 
87
+ #: wp-maintenance-mode.php:623
88
  #@ wp-maintenance-mode
89
  msgid "weeks"
90
  msgstr "Wochen"
91
 
92
+ #: wp-maintenance-mode.php:627
93
  #@ wp-maintenance-mode
94
  msgid "months"
95
  msgstr "Monate"
96
 
97
+ #: wp-maintenance-mode.php:631
98
  #@ wp-maintenance-mode
99
  msgid "years"
100
  msgstr "Jahren"
101
 
102
+ #: wp-maintenance-mode.php:693
103
  #@ wp-maintenance-mode
104
  msgid " &amp; WP Super Cache flushed."
105
  msgstr " &amp; WP Super Cache aktualisiert."
106
 
107
+ #: wp-maintenance-mode.php:700
108
  #@ wp-maintenance-mode
109
  msgid " &amp; W3 Total Cache for pages flushed."
110
  msgstr " &amp; W3 Total Cache für Seiten aktualisiert."
111
 
112
+ #: wp-maintenance-mode.php:705
113
+ #: wp-maintenance-mode.php:1013
114
  #@ wp-maintenance-mode
115
  msgid "Caution: Maintenance mode is <strong>active</strong>!"
116
  msgstr "Achtung: Wartungsmodus ist <strong>aktiv</strong>!"
117
 
118
+ #: wp-maintenance-mode.php:707
119
  #@ wp-maintenance-mode
120
  msgid "Deactivate or change Settings"
121
  msgstr "Deaktivieren oder Einstellungen ändern "
122
 
123
+ #: wp-maintenance-mode.php:815
124
  #@ wp-maintenance-mode
125
  msgid "Plugin by:"
126
  msgstr "Plugin von:"
127
 
128
+ #: wp-maintenance-mode.php:817
129
+ #: wp-maintenance-mode.php:819
130
+ #: wp-maintenance-mode.php:821
131
+ #: wp-maintenance-mode.php:823
132
+ #: wp-maintenance-mode.php:825
133
+ #: wp-maintenance-mode.php:827
134
+ #: wp-maintenance-mode.php:829
135
+ #: wp-maintenance-mode.php:831
136
+ #: wp-maintenance-mode.php:833
137
+ #: wp-maintenance-mode.php:835
138
+ #: wp-maintenance-mode.php:837
139
  #@ wp-maintenance-mode
140
  msgid "Design by:"
141
  msgstr "Design von:"
142
 
143
+ #: inc/wp-maintenance-mode-settings.php:100
144
+ #: inc/wp-maintenance-mode-settings.php:429
145
  #, php-format
146
  #@ wp-maintenance-mode
147
  msgid "Plugin %s settings <strong>updated</strong>."
148
  msgstr "Plugin %s Einstellungen <strong>gespeichert</strong>."
149
 
150
+ #: inc/wp-maintenance-mode-settings.php:103
151
+ #: inc/wp-maintenance-mode-settings.php:116
152
  #, php-format
153
  #@ wp-maintenance-mode
154
  msgid "Plugin %s active status <strong>updated</strong>."
155
  msgstr "Plugin %s aktiv-status <strong>aktualisiert</strong>."
156
 
157
+ #: inc/wp-maintenance-mode-settings.php:106
158
  #@ wp-maintenance-mode
159
  msgid "Plugin Activate"
160
  msgstr "Plugin aktivieren"
161
 
162
+ #: inc/wp-maintenance-mode-settings.php:110
163
+ #: inc/wp-maintenance-mode-settings.php:129
164
+ #: inc/wp-maintenance-mode-settings.php:173
165
+ #: inc/wp-maintenance-mode-settings.php:186
166
+ #: inc/wp-maintenance-mode-settings.php:261
167
+ #: inc/wp-maintenance-mode-settings.php:333
168
+ #: inc/wp-maintenance-mode-settings.php:419
169
  #@ wp-maintenance-mode
170
  msgid "False"
171
  msgstr "Nein"
172
 
173
+ #: inc/wp-maintenance-mode-settings.php:111
174
+ #: inc/wp-maintenance-mode-settings.php:130
175
+ #: inc/wp-maintenance-mode-settings.php:174
176
+ #: inc/wp-maintenance-mode-settings.php:187
177
+ #: inc/wp-maintenance-mode-settings.php:262
178
+ #: inc/wp-maintenance-mode-settings.php:334
179
+ #: inc/wp-maintenance-mode-settings.php:420
180
  #@ wp-maintenance-mode
181
  msgid "True"
182
  msgstr "Ja"
183
 
184
+ #: inc/wp-maintenance-mode-settings.php:113
185
  #@ wp-maintenance-mode
186
  msgid "Update"
187
  msgstr "Aktualisieren"
188
 
189
+ #: inc/wp-maintenance-mode-settings.php:119
190
  #@ wp-maintenance-mode
191
  msgid "Plugin Settings"
192
  msgstr "Plugin Einstellungen"
193
 
194
+ #: inc/wp-maintenance-mode-settings.php:125
195
  #@ wp-maintenance-mode
196
  msgid "Countdown:"
197
  msgstr "Countdown:"
198
 
199
+ #: inc/wp-maintenance-mode-settings.php:136
200
+ #: inc/wp-maintenance-mode-settings.php:139
201
  #@ wp-maintenance-mode
202
  msgid "Click for datepicker"
203
  msgstr "Klick für den Datums-Picker"
204
 
205
+ #: inc/wp-maintenance-mode-settings.php:136
206
  #@ wp-maintenance-mode
207
  msgid "Date:"
208
  msgstr "Datum:"
209
 
210
+ #: inc/wp-maintenance-mode-settings.php:140
211
  #@ wp-maintenance-mode
212
  msgid "Activate countdown for using this. Use value and unit or use the countdown and set the date."
213
  msgstr "Aktiviere den Countdown um ihn zu nutzen. Vergebe Wert und Einheit oder wähle ein Datum für den Countdown."
214
 
215
+ #: inc/wp-maintenance-mode-settings.php:145
216
  #@ wp-maintenance-mode
217
  msgid "Value:"
218
  msgstr "Wert:"
219
 
220
+ #: inc/wp-maintenance-mode-settings.php:153
221
  #@ wp-maintenance-mode
222
  msgid "Unit:"
223
  msgstr "Einheit:"
224
 
225
+ #: inc/wp-maintenance-mode-settings.php:157
226
  #@ wp-maintenance-mode
227
  msgid "second"
228
  msgstr "sekunde"
229
 
230
+ #: inc/wp-maintenance-mode-settings.php:158
231
  #@ wp-maintenance-mode
232
  msgid "minute"
233
  msgstr "minute"
234
 
235
+ #: inc/wp-maintenance-mode-settings.php:159
236
  #@ wp-maintenance-mode
237
  msgid "hour"
238
  msgstr "stunde"
239
 
240
+ #: inc/wp-maintenance-mode-settings.php:160
241
  #@ wp-maintenance-mode
242
  msgid "day"
243
  msgstr "tag"
244
 
245
+ #: inc/wp-maintenance-mode-settings.php:161
246
  #@ wp-maintenance-mode
247
  msgid "week"
248
  msgstr "woche"
249
 
250
+ #: inc/wp-maintenance-mode-settings.php:162
251
  #@ wp-maintenance-mode
252
  msgid "month"
253
  msgstr "monat"
254
 
255
+ #: inc/wp-maintenance-mode-settings.php:163
256
  #@ wp-maintenance-mode
257
  msgid "year"
258
  msgstr "jahr"
259
 
260
+ #: inc/wp-maintenance-mode-settings.php:169
261
  #@ wp-maintenance-mode
262
  msgid "Link:"
263
  msgstr "Link:"
264
 
265
+ #: inc/wp-maintenance-mode-settings.php:177
266
  #@ wp-maintenance-mode
267
  msgid "Please leave a link to the plugin- and design-author on your maintenance mode site."
268
  msgstr "Bitte hinterlasse einen Link zum Plugin- und Design-Autor auf deiner Wartungsmodus-Seite."
269
 
270
+ #: inc/wp-maintenance-mode-settings.php:182
271
  #@ wp-maintenance-mode
272
  msgid "Admin Link:"
273
  msgstr "Admin Link:"
274
 
275
+ #: inc/wp-maintenance-mode-settings.php:190
276
  #@ wp-maintenance-mode
277
  msgid "Do you will a link to the admin area of your install?"
278
  msgstr "Willst du einen Link zum Admin Bereich dieser Installation?"
279
 
280
+ #: inc/wp-maintenance-mode-settings.php:200
 
 
 
 
 
 
 
 
 
 
281
  #@ wp-maintenance-mode
282
  msgid "Simple Text"
283
  msgstr "Einfach Text"
284
 
285
+ #: inc/wp-maintenance-mode-settings.php:201
286
  #@ wp-maintenance-mode
287
  msgid "The Truck"
288
  msgstr "Der Truck"
289
 
290
+ #: inc/wp-maintenance-mode-settings.php:202
291
  #@ wp-maintenance-mode
292
  msgid "The Sun"
293
  msgstr "The Sun"
294
 
295
+ #: inc/wp-maintenance-mode-settings.php:203
296
  #@ wp-maintenance-mode
297
  msgid "The FF Error"
298
  msgstr "The FF Error"
299
 
300
+ #: inc/wp-maintenance-mode-settings.php:204
301
  #@ wp-maintenance-mode
302
  msgid "Monster"
303
  msgstr "Monster"
304
 
305
+ #: inc/wp-maintenance-mode-settings.php:205
306
  #@ wp-maintenance-mode
307
  msgid "Chastely"
308
  msgstr "Chastely"
309
 
310
+ #: inc/wp-maintenance-mode-settings.php:206
311
  #@ wp-maintenance-mode
312
  msgid "Only Typo"
313
  msgstr "Only Typo"
314
 
315
+ #: inc/wp-maintenance-mode-settings.php:207
316
  #@ wp-maintenance-mode
317
  msgid "Paint"
318
  msgstr "Paint"
319
 
320
+ #: inc/wp-maintenance-mode-settings.php:208
321
  #@ wp-maintenance-mode
322
  msgid "Animate (Flash)"
323
  msgstr "Animate (Flash)"
324
 
325
+ #: inc/wp-maintenance-mode-settings.php:209
326
  #@ wp-maintenance-mode
327
  msgid "Damask"
328
  msgstr "Damask"
329
 
330
+ #: inc/wp-maintenance-mode-settings.php:210
331
  #@ wp-maintenance-mode
332
  msgid "Lego"
333
  msgstr "Lego"
334
 
335
+ #: inc/wp-maintenance-mode-settings.php:211
336
  #@ wp-maintenance-mode
337
  msgid "Chemistry"
338
  msgstr "Chemielabor"
339
 
340
+ #: inc/wp-maintenance-mode-settings.php:220
 
 
 
 
 
341
  #@ wp-maintenance-mode
342
  msgid "URL to the css-file (incl. http://)"
343
  msgstr "URL zur css-Datei (inkl. http://)"
344
 
345
+ #: inc/wp-maintenance-mode-settings.php:222
346
  #@ wp-maintenance-mode
347
  msgid "<strong>Caution:</strong> Please don&acute;t copy the stylesheet in your plugin folder, it will be deleted on the next automatical update of the plugin!"
348
  msgstr "<strong>Hinweis:</strong> Bitte speichere das Sytelsheet nicht im Plugin-Ordner, der Ordner wird beim automatischen Update ersetzt!"
349
 
350
+ #: inc/wp-maintenance-mode-settings.php:227
351
+ #: inc/wp-maintenance-mode-settings.php:250
352
  #@ wp-maintenance-mode
353
  msgid "Preview"
354
  msgstr "Vorschau"
355
 
356
+ #: inc/wp-maintenance-mode-settings.php:257
357
  #@ wp-maintenance-mode
358
  msgid "noindex, nofollow:"
359
  msgstr "noindex, nofollow:"
360
 
361
+ #: inc/wp-maintenance-mode-settings.php:265
362
  #@ wp-maintenance-mode
363
  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."
364
  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."
365
 
366
+ #: inc/wp-maintenance-mode-settings.php:270
367
  #@ wp-maintenance-mode
368
  msgid "Title:"
369
  msgstr "Titel:"
370
 
371
+ #: inc/wp-maintenance-mode-settings.php:273
372
+ #: inc/wp-maintenance-mode-settings.php:281
373
+ #: inc/wp-maintenance-mode-settings.php:289
374
  #@ wp-maintenance-mode
375
  msgid "Leave empty for default."
376
  msgstr "Leer lassen für den Standardtext."
377
 
378
+ #: inc/wp-maintenance-mode-settings.php:278
379
  #@ wp-maintenance-mode
380
  msgid "Header:"
381
  msgstr "Header:"
382
 
383
+ #: inc/wp-maintenance-mode-settings.php:286
384
  #@ wp-maintenance-mode
385
  msgid "Heading:"
386
  msgstr "Überschrift:"
387
 
388
+ #: inc/wp-maintenance-mode-settings.php:294
389
  #@ wp-maintenance-mode
390
  msgid "Text:"
391
  msgstr "Text:"
392
 
393
+ #: inc/wp-maintenance-mode-settings.php:307
394
  #, fuzzy
395
  #@ wp-maintenance-mode
396
  msgid "Exclude:"
397
  msgstr "Ausnahmen:"
398
 
399
+ #: inc/wp-maintenance-mode-settings.php:323
400
  #@ wp-maintenance-mode
401
  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:"
402
  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:"
403
 
404
+ #: inc/wp-maintenance-mode-settings.php:342
405
  #@ wp-maintenance-mode
406
  msgid "Backend Role:"
407
  msgstr "Backendrolle:"
408
 
409
+ #: inc/wp-maintenance-mode-settings.php:367
410
  #@ wp-maintenance-mode
411
  msgid "Allowed userrole to access the backend of this blog."
412
  msgstr "Erlaubte User-Rolle für das Sehen des Backend von diesem Blog."
413
 
414
+ #: inc/wp-maintenance-mode-settings.php:368
415
+ #: inc/wp-maintenance-mode-settings.php:399
416
  #@ wp-maintenance-mode
417
  msgid "Super Admin has always access."
418
  msgstr "Super Admin hat immer Zugang."
419
 
420
+ #: inc/wp-maintenance-mode-settings.php:373
421
  #@ wp-maintenance-mode
422
  msgid "Frontend Role:"
423
  msgstr "Frontendrolle:"
424
 
425
+ #: inc/wp-maintenance-mode-settings.php:398
426
  #@ wp-maintenance-mode
427
  msgid "Allowed userrole to see the frontend of this blog."
428
  msgstr "Erlaubte User-Rolle für das Sehen des Frontend von diesem Blog."
429
 
430
+ #: inc/wp-maintenance-mode-settings.php:404
431
  #@ wp-maintenance-mode
432
  msgid "Redirection:"
433
  msgstr "Weiterleitung:"
434
 
435
+ #: inc/wp-maintenance-mode-settings.php:409
436
  #@ wp-maintenance-mode
437
  msgid "If you want that after the login the destination address is not standard to the dashboard, then defining a URL. (incl. http://)"
438
  msgstr "Wenn du nach dem Login eine Weiterleitung verändert zum Standard, dem Dashboard, wünschst, dann definiere eine URL. (inkl. http://)"
439
 
440
+ #: inc/wp-maintenance-mode-settings.php:432
441
  #@ wp-maintenance-mode
442
  msgid "Save"
443
  msgstr "Speichern"
444
 
445
+ #: inc/wp-maintenance-mode-settings.php:300
446
  #, php-format
447
  #@ wp-maintenance-mode
448
  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."
449
  msgstr "Nutze zu erst <em>%1$s</em>für die Zeitwerte oder den Countdown und den zweiten String <em>%2$s</em> für die Einheit der Zeit oder der Countdown-Werte; HTML und Shortcodes sind möglich."
450
 
451
+ #: inc/wp-maintenance-mode-settings.php:301
452
  #@ wp-maintenance-mode
453
  msgid "Use <code>[loginform]</code> for add the default login form in the maintenance page."
454
  msgstr "Nutze <code>[loginform]</code> für das Hinzufügen eines Login Formulars auf der Wartungsseite."
455
 
456
+ #: inc/wp-maintenance-mode-settings.php:415
457
  #@ wp-maintenance-mode
458
  msgid "Notice:"
459
  msgstr "Hinweis:"
460
 
461
+ #: inc/wp-maintenance-mode-settings.php:422
462
  #@ wp-maintenance-mode
463
  msgid "Do you will see all notices, inside backend, the Admin Bar and the login screen?"
464
  msgstr "Willst du alle Hinweise zum aktiven Wartungsmodus sehen, im Backend, in der Admin Bar und im Login Screen?"
498
  msgid "http://bueltge.de/"
499
  msgstr ""
500
 
501
+ #: inc/wp-maintenance-mode-settings.php:195
502
+ #@ wp-maintenance-mode
503
+ msgid "CSS Style:"
504
+ msgstr "CSS Style:"
505
+
506
+ #: inc/wp-maintenance-mode-settings.php:199
507
+ #@ wp-maintenance-mode
508
+ msgid "Own CSS Stylesheet"
509
+ msgstr "Eigenes CSS Stylesheet"
510
+
511
+ #: inc/wp-maintenance-mode-settings.php:217
512
+ #@ wp-maintenance-mode
513
+ msgid "Own CSS Style URL:"
514
+ msgstr "Eigene CSS Stylesheet URL:"
515
+
516
+ #: inc/wp-maintenance-mode-settings.php:329
517
+ #@ wp-maintenance-mode
518
+ msgid "Bypass for Search Bots:"
519
+ msgstr "Bypass für Such-Robots:"
520
+
521
+ #: inc/wp-maintenance-mode-settings.php:336
522
+ #@ wp-maintenance-mode
523
+ msgid "Allow Search Bots to bypass maintenance mode?"
524
+ msgstr "Erlaube Suchmaschinen-Robots den Wartungsmodus zu umgehen?"
525
+
526
  #. translators: plugin header field 'Version'
527
  #: wp-maintenance-mode.php:0
528
  #@ wp-maintenance-mode
529
+ msgid "1.8.7"
530
  msgstr ""
531
 
languages/wp-maintenance-mode-fr_FR.mo CHANGED
Binary file
languages/wp-maintenance-mode-fr_FR.po CHANGED
@@ -1,365 +1,575 @@
1
  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-SourceCharset: utf-8\n"
14
- "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;_nx:4c,1,2;_nx_noop:4c,1,2\n"
15
- "X-Poedit-Basepath: d:/xampp/htdocs/wpbeta/wp-content/plugins/wartungsmodus/\n"
 
 
16
  "X-Textdomain-Support: yes\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: wp-maintenance-mode.php:134
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  msgid "Settings"
21
  msgstr "Réglages"
22
 
23
- #@ wp-maintenance-mode
24
- #: wp-maintenance-mode.php:205
25
- #: wp-maintenance-mode.php:381
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  #, php-format
27
  msgid "Plugin %s settings <strong>updated</strong>."
28
- msgstr "Paramètres plugin %s <strong>mis a jour</strong>."
29
 
30
- #@ wp-maintenance-mode
31
- #: wp-maintenance-mode.php:206
32
- #: wp-maintenance-mode.php:217
33
  #, php-format
34
  msgid "Plugin %s active status <strong>updated</strong>."
35
- msgstr "Plugin %s status actif <strong>mis a jour</strong>."
36
 
37
- #@ wp-maintenance-mode
38
- #: wp-maintenance-mode.php:208
39
  msgid "Plugin Activate"
40
- msgstr "Activation plugin"
41
-
42
- #@ wp-maintenance-mode
43
- #: wp-maintenance-mode.php:212
44
- #: wp-maintenance-mode.php:229
45
- #: wp-maintenance-mode.php:273
 
 
 
 
46
  msgid "False"
47
- msgstr "Faux"
48
-
49
- #@ wp-maintenance-mode
50
- #: wp-maintenance-mode.php:213
51
- #: wp-maintenance-mode.php:230
52
- #: wp-maintenance-mode.php:274
 
 
 
 
53
  msgid "True"
54
- msgstr "Vrai"
55
 
56
- #@ wp-maintenance-mode
57
- #: wp-maintenance-mode.php:215
58
  msgid "Update"
59
- msgstr "Mis à jour"
60
 
61
- #@ wp-maintenance-mode
62
- #: wp-maintenance-mode.php:219
63
  msgid "Plugin Settings"
64
- msgstr "Réglages plugin"
65
 
66
- #@ wp-maintenance-mode
67
- #: wp-maintenance-mode.php:225
68
  msgid "Countdown:"
69
- msgstr "Compte à rebours:"
70
 
71
- #@ wp-maintenance-mode
72
- #: wp-maintenance-mode.php:236
73
- #: wp-maintenance-mode.php:239
74
  msgid "Click for datepicker"
75
- msgstr "Cliquez pour récupérer la date"
76
 
77
- #@ wp-maintenance-mode
78
- #: wp-maintenance-mode.php:236
79
  msgid "Date:"
80
- msgstr "Date:"
81
 
82
- #@ wp-maintenance-mode
83
- #: wp-maintenance-mode.php:240
84
- msgid "Activate countdown for using this. Use value and unit or use the countdown and set the date."
85
- msgstr "Activez le compte à rebours pour utiliser celui ci et paramètrez la date et l'heure d'échéance. Sinon saisissez une durée et une unité de temps."
 
 
 
 
86
 
87
- #@ wp-maintenance-mode
88
- #: wp-maintenance-mode.php:245
89
  msgid "Value:"
90
- msgstr "Durée:"
91
 
92
- #@ wp-maintenance-mode
93
- #: wp-maintenance-mode.php:253
94
  msgid "Unit:"
95
- msgstr "Unité:"
96
 
97
- #@ wp-maintenance-mode
98
- #: wp-maintenance-mode.php:257
99
  msgid "second"
100
  msgstr "seconde"
101
 
102
- #@ wp-maintenance-mode
103
- #: wp-maintenance-mode.php:258
104
  msgid "minute"
105
  msgstr "minute"
106
 
107
- #@ wp-maintenance-mode
108
- #: wp-maintenance-mode.php:259
109
  msgid "hour"
110
  msgstr "heure"
111
 
112
- #@ wp-maintenance-mode
113
- #: wp-maintenance-mode.php:260
114
  msgid "day"
115
  msgstr "jour"
116
 
117
- #@ wp-maintenance-mode
118
- #: wp-maintenance-mode.php:261
119
  msgid "week"
120
  msgstr "semaine"
121
 
122
- #@ wp-maintenance-mode
123
- #: wp-maintenance-mode.php:262
124
  msgid "month"
125
  msgstr "mois"
126
 
127
- #@ wp-maintenance-mode
128
- #: wp-maintenance-mode.php:263
129
  msgid "year"
130
  msgstr "année"
131
 
132
- #@ wp-maintenance-mode
133
- #: wp-maintenance-mode.php:269
134
  msgid "Link:"
135
- msgstr "Lien:"
136
 
137
- #@ wp-maintenance-mode
138
- #: wp-maintenance-mode.php:282
139
- msgid "Theme:"
140
- msgstr "Thème:"
 
 
 
 
141
 
142
- #@ wp-maintenance-mode
143
- #: wp-maintenance-mode.php:286
144
- msgid "Own Style"
145
- msgstr "Style personnel"
146
 
147
- #@ wp-maintenance-mode
148
- #: wp-maintenance-mode.php:287
 
 
 
 
 
149
  msgid "Simple Text"
150
  msgstr "Texte simple"
151
 
152
- #@ wp-maintenance-mode
153
- #: wp-maintenance-mode.php:288
154
  msgid "The Truck"
155
- msgstr "Camion"
156
 
157
- #@ wp-maintenance-mode
158
- #: wp-maintenance-mode.php:289
159
  msgid "The Sun"
160
- msgstr "Soleil"
161
 
162
- #@ wp-maintenance-mode
163
- #: wp-maintenance-mode.php:290
164
  msgid "The FF Error"
165
  msgstr "Erreur FF"
166
 
167
- #@ wp-maintenance-mode
168
- #: wp-maintenance-mode.php:291
169
  msgid "Monster"
170
  msgstr "Monstre"
171
 
172
- #@ wp-maintenance-mode
173
- #: wp-maintenance-mode.php:292
174
  msgid "Chastely"
175
- msgstr "Chastely"
176
 
177
- #@ wp-maintenance-mode
178
- #: wp-maintenance-mode.php:293
179
  msgid "Only Typo"
180
- msgstr "Typo seulement"
181
 
182
- #@ wp-maintenance-mode
183
- #: wp-maintenance-mode.php:294
184
  msgid "Paint"
185
  msgstr "Peinture"
186
 
187
- #@ wp-maintenance-mode
188
- #: wp-maintenance-mode.php:295
189
- msgid "Animate (Flash, only german)"
190
- msgstr "Animation (Flash, seulement en allemand)"
191
 
192
- #@ wp-maintenance-mode
193
- #: wp-maintenance-mode.php:296
194
  msgid "Damask"
195
- msgstr "Tapisserie"
196
 
197
- #@ wp-maintenance-mode
198
- #: wp-maintenance-mode.php:297
199
  msgid "Lego"
200
  msgstr "Lego"
201
 
202
- #@ wp-maintenance-mode
203
- #: wp-maintenance-mode.php:303
204
- msgid "Own Style URL (incl. http://):"
205
- msgstr "URL Style Personnel (inclure http://):"
206
-
207
- #@ wp-maintenance-mode
208
- #: wp-maintenance-mode.php:335
209
- msgid "Text:"
210
- msgstr "Texte:"
211
-
212
- #@ wp-maintenance-mode
213
- #: wp-maintenance-mode.php:345
214
- msgid "Excludes:"
215
- msgstr "Exclus:"
216
-
217
- #@ wp-maintenance-mode
218
- #: wp-maintenance-mode.php:350
219
- msgid "Exlude pages, posts or archives from the maintenance mode. Add the Slug of page or post as a comma-separated list.<br />Example: "
220
- msgstr "Pages, articles ou archives exclus du mode maintenance. Ajouter le permalien de la page ou de l'article sous forme de liste séparés par des virgules. <br /> Exemple:"
221
 
222
- #@ wp-maintenance-mode
223
- #: wp-maintenance-mode.php:355
224
- msgid "Role:"
225
- msgstr "Rôle:"
226
 
227
- #@ wp-maintenance-mode
228
- #: wp-maintenance-mode.php:383
229
- msgid "Save"
230
- msgstr "Sauvegarder"
231
-
232
- #@ wp-maintenance-mode
233
- #: wp-maintenance-mode.php:418
234
- #: wp-maintenance-mode.php:461
235
- msgid "Updated"
236
- msgstr "Mis à jour"
237
-
238
- #@ wp-maintenance-mode
239
- #: wp-maintenance-mode.php:538
240
- msgid "Deactivate or change Settings"
241
- msgstr "Désactiver ou changer les paramètres"
242
-
243
- #@ wp-maintenance-mode
244
- #: wp-maintenance-mode.php:553
245
- msgid "seconds"
246
- msgstr "secondes"
247
-
248
- #@ wp-maintenance-mode
249
- #: wp-maintenance-mode.php:557
250
- msgid "minutes"
251
- msgstr "minutes"
252
-
253
- #@ wp-maintenance-mode
254
- #: wp-maintenance-mode.php:561
255
- msgid "hours"
256
- msgstr "heures"
257
-
258
- #@ wp-maintenance-mode
259
- #: wp-maintenance-mode.php:565
260
- msgid "days"
261