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
- msgstr "jours"
262
-
263
- #@ wp-maintenance-mode
264
- #: wp-maintenance-mode.php:569
265
- msgid "weeks"
266
- msgstr "semaines"
267
-
268
- #@ wp-maintenance-mode
269
- #: wp-maintenance-mode.php:577
270
- msgid "years"
271
- msgstr "années"
272
-
273
- #@ wp-maintenance-mode
274
- #: wp-maintenance-mode.php:624
275
- msgid "Plugin by:"
276
- msgstr "Plugin de:"
277
-
278
- #@ wp-maintenance-mode
279
- #: wp-maintenance-mode.php:626
280
- #: wp-maintenance-mode.php:629
281
- #: wp-maintenance-mode.php:632
282
- #: wp-maintenance-mode.php:635
283
- #: wp-maintenance-mode.php:638
284
- #: wp-maintenance-mode.php:641
285
- #: wp-maintenance-mode.php:644
286
- #: wp-maintenance-mode.php:647
287
- #: wp-maintenance-mode.php:650
288
- #: wp-maintenance-mode.php:653
289
- msgid "Design by:"
290
- msgstr "Design par:"
291
-
292
- #@ wp-maintenance-mode
293
- #: site.php:6
294
- #: site.php:82
295
- msgid "Maintenance Mode"
296
- msgstr "Mode Maintenance"
297
-
298
- #@ wp-maintenance-mode
299
- #: site.php:79
300
- msgid "Admin-Login"
301
- msgstr "Admin-Login"
302
 
303
- #@ wp-maintenance-mode
304
- #: wp-maintenance-mode.php:311
305
  msgid "Title:"
306
- msgstr "Titre:"
307
-
308
- #@ wp-maintenance-mode
309
- #: wp-maintenance-mode.php:306
310
- msgid "URL to the css-file"
311
- msgstr "URL du fichier CSS"
312
 
313
- #@ wp-maintenance-mode
314
- #: wp-maintenance-mode.php:314
315
- #: wp-maintenance-mode.php:322
316
- #: wp-maintenance-mode.php:330
317
  msgid "Leave empty for default."
318
  msgstr "Laissez vide par défaut."
319
 
320
- #@ wp-maintenance-mode
321
- #: wp-maintenance-mode.php:319
322
  msgid "Header:"
323
- msgstr "Entête:"
324
 
325
- #@ wp-maintenance-mode
326
- #: wp-maintenance-mode.php:327
327
  msgid "Heading:"
328
- msgstr "Titre:"
329
 
330
- #@ wp-maintenance-mode
331
- #: wp-maintenance-mode.php:277
332
- msgid "Please leave a link to the plugin- and design-author on your maintenance mode site."
333
- msgstr "Merci de laissez un lien vers le plugin et le designer sur votre site en mode maintenance."
334
 
335
- #@ wp-maintenance-mode
336
- #: wp-maintenance-mode.php:573
337
- msgid "months"
338
- msgstr "mois"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
339
 
340
- #@ wp-maintenance-mode
341
- #: wp-maintenance-mode.php:340
342
  #, php-format
343
- 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 is possible"
344
- msgstr "Utilisez le premier<em> %1$s</em> pour la durée ou le compte à rebours et le second<em> %2$s</em> pour l'unité de temps ou la fin du compte à rebours; HTML possible"
 
 
 
 
 
 
345
 
346
- #@ wp-maintenance-mode
347
- #: site.php:72
348
- msgid "Access to the admin area blocked"
349
- msgstr "Accès à la zone d'administration bloquée"
 
 
 
 
350
 
351
- #@ wp-maintenance-mode
352
- #: site.php:75
353
- msgid "Admin-Logout"
354
- msgstr "Admin-Logout"
355
 
356
- #@ wp-maintenance-mode
357
- #: wp-maintenance-mode.php:376
358
- msgid "Allowed userrole for see the frontend of this blog."
359
- msgstr "Niveau autorisé pour voir ce blog"
 
 
 
 
360
 
361
- #@ wp-maintenance-mode
362
- #: wp-maintenance-mode.php:536
363
- msgid "Caution: Maintenance mode is <strong>active</strong>!"
364
  msgstr ""
365
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-04-15 23:03+0100\n"
7
+ "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: Poedit 1.5.5\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: c:/xampp/htdocs/wp-plugins/wp-maintenance-mode/\n"
18
  "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ # @ wp-maintenance-mode
22
+ #: site.php:27 site.php:65
23
+ msgid "Maintenance Mode"
24
+ msgstr "Mode de maintenance"
25
+
26
+ # @ wp-maintenance-mode
27
+ #: site.php:72
28
+ msgid "Access to the admin area blocked"
29
+ msgstr "Accès à la zone d'administration bloqué"
30
+
31
+ # @ wp-maintenance-mode
32
+ #: site.php:75
33
+ msgid "Admin-Logout"
34
+ msgstr "Admin-Logout"
35
+
36
+ # @ wp-maintenance-mode
37
+ #: site.php:80
38
+ msgid "Admin-Login"
39
+ msgstr "Admin-Login"
40
+
41
+ # @ default
42
+ #: inc/wp-maintenance-mode-settings.php:55
43
+ #: inc/wp-maintenance-mode-settings.php:65
44
  msgid "Settings"
45
  msgstr "Réglages"
46
 
47
+ # @ wp-maintenance-mode
48
+ #: wp-maintenance-mode.php:304
49
+ msgid "Maintenance mode"
50
+ msgstr "Mode de maintenance"
51
+
52
+ # @ wp-maintenance-mode
53
+ #: wp-maintenance-mode.php:305
54
+ #, php-format
55
+ msgid ""
56
+ "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
57
+ "scheduled maintenance.<br /><strong>Please try back in %1$s %2$s</"
58
+ "strong><br />Thank you for your understanding.</p>"
59
+ msgstr ""
60
+
61
+ # @ wp-maintenance-mode
62
+ #: wp-maintenance-mode.php:348 wp-maintenance-mode.php:428
63
+ msgid "Updated"
64
+ msgstr "Mis à jour"
65
+
66
+ # @ wp-maintenance-mode
67
+ #: wp-maintenance-mode.php:607
68
+ msgid "seconds"
69
+ msgstr "secondes"
70
+
71
+ # @ wp-maintenance-mode
72
+ #: wp-maintenance-mode.php:611
73
+ msgid "minutes"
74
+ msgstr "minutes"
75
+
76
+ # @ wp-maintenance-mode
77
+ #: wp-maintenance-mode.php:615
78
+ msgid "hours"
79
+ msgstr "heures"
80
+
81
+ # @ wp-maintenance-mode
82
+ #: wp-maintenance-mode.php:619
83
+ msgid "days"
84
+ msgstr "jours"
85
+
86
+ # @ wp-maintenance-mode
87
+ #: wp-maintenance-mode.php:623
88
+ msgid "weeks"
89
+ msgstr "semaines"
90
+
91
+ # @ wp-maintenance-mode
92
+ #: wp-maintenance-mode.php:627
93
+ msgid "months"
94
+ msgstr "mois"
95
+
96
+ # @ wp-maintenance-mode
97
+ #: wp-maintenance-mode.php:631
98
+ msgid "years"
99
+ msgstr "années"
100
+
101
+ # @ wp-maintenance-mode
102
+ #: wp-maintenance-mode.php:693
103
+ msgid " &amp; WP Super Cache flushed."
104
+ msgstr " &amp; Cache de WP Super vidé."
105
+
106
+ # @ wp-maintenance-mode
107
+ #: wp-maintenance-mode.php:700
108
+ msgid " &amp; W3 Total Cache for pages flushed."
109
+ msgstr " &amp; Cache de W3 Total Cache vidé."
110
+
111
+ # @ wp-maintenance-mode
112
+ #: wp-maintenance-mode.php:705 wp-maintenance-mode.php:1013
113
+ msgid "Caution: Maintenance mode is <strong>active</strong>!"
114
+ msgstr "Attention : Le mode de maintenance est <strong>actif</strong> !"
115
+
116
+ # @ wp-maintenance-mode
117
+ #: wp-maintenance-mode.php:707
118
+ msgid "Deactivate or change Settings"
119
+ msgstr "Désactiver ou modifier les réglages"
120
+
121
+ # @ wp-maintenance-mode
122
+ #: wp-maintenance-mode.php:815
123
+ msgid "Plugin by:"
124
+ msgstr "Extension par :"
125
+
126
+ # @ wp-maintenance-mode
127
+ #: wp-maintenance-mode.php:817 wp-maintenance-mode.php:819
128
+ #: wp-maintenance-mode.php:821 wp-maintenance-mode.php:823
129
+ #: wp-maintenance-mode.php:825 wp-maintenance-mode.php:827
130
+ #: wp-maintenance-mode.php:829 wp-maintenance-mode.php:831
131
+ #: wp-maintenance-mode.php:833 wp-maintenance-mode.php:835
132
+ #: wp-maintenance-mode.php:837
133
+ msgid "Design by:"
134
+ msgstr "Design par :"
135
+
136
+ # @ wp-maintenance-mode
137
+ #: inc/wp-maintenance-mode-settings.php:100
138
+ #: inc/wp-maintenance-mode-settings.php:429
139
  #, php-format
140
  msgid "Plugin %s settings <strong>updated</strong>."
141
+ msgstr "Les réglages de l'extension %s <strong>a été mis à jour</strong>."
142
 
143
+ # @ wp-maintenance-mode
144
+ #: inc/wp-maintenance-mode-settings.php:103
145
+ #: inc/wp-maintenance-mode-settings.php:116
146
  #, php-format
147
  msgid "Plugin %s active status <strong>updated</strong>."
148
+ msgstr "L'extension %s a changé <strong>d'état</strong>."
149
 
150
+ # @ wp-maintenance-mode
151
+ #: inc/wp-maintenance-mode-settings.php:106
152
  msgid "Plugin Activate"
153
+ msgstr "Activation de l'extension"
154
+
155
+ # @ wp-maintenance-mode
156
+ #: inc/wp-maintenance-mode-settings.php:110
157
+ #: inc/wp-maintenance-mode-settings.php:129
158
+ #: inc/wp-maintenance-mode-settings.php:173
159
+ #: inc/wp-maintenance-mode-settings.php:186
160
+ #: inc/wp-maintenance-mode-settings.php:261
161
+ #: inc/wp-maintenance-mode-settings.php:333
162
+ #: inc/wp-maintenance-mode-settings.php:419
163
  msgid "False"
164
+ msgstr "Non"
165
+
166
+ # @ wp-maintenance-mode
167
+ #: inc/wp-maintenance-mode-settings.php:111
168
+ #: inc/wp-maintenance-mode-settings.php:130
169
+ #: inc/wp-maintenance-mode-settings.php:174
170
+ #: inc/wp-maintenance-mode-settings.php:187
171
+ #: inc/wp-maintenance-mode-settings.php:262
172
+ #: inc/wp-maintenance-mode-settings.php:334
173
+ #: inc/wp-maintenance-mode-settings.php:420
174
  msgid "True"
175
+ msgstr "Oui"
176
 
177
+ # @ wp-maintenance-mode
178
+ #: inc/wp-maintenance-mode-settings.php:113
179
  msgid "Update"
180
+ msgstr "Mettre à jour"
181
 
182
+ # @ wp-maintenance-mode
183
+ #: inc/wp-maintenance-mode-settings.php:119
184
  msgid "Plugin Settings"
185
+ msgstr "Réglages de l'extension"
186
 
187
+ # @ wp-maintenance-mode
188
+ #: inc/wp-maintenance-mode-settings.php:125
189
  msgid "Countdown:"
190
+ msgstr "Compte à rebours"
191
 
192
+ # @ wp-maintenance-mode
193
+ #: inc/wp-maintenance-mode-settings.php:136
194
+ #: inc/wp-maintenance-mode-settings.php:139
195
  msgid "Click for datepicker"
196
+ msgstr "Cliquez pour afficher le calendrier"
197
 
198
+ # @ wp-maintenance-mode
199
+ #: inc/wp-maintenance-mode-settings.php:136
200
  msgid "Date:"
201
+ msgstr "Date :"
202
 
203
+ # @ wp-maintenance-mode
204
+ #: inc/wp-maintenance-mode-settings.php:140
205
+ msgid ""
206
+ "Activate countdown for using this. Use value and unit or use the countdown "
207
+ "and set the date."
208
+ msgstr ""
209
+ "Activez le compte à rebours pour utiliser ce champ. Renseignez la date et "
210
+ "l'heure d'échéance. Sinon saisissez une durée et une unité de temps."
211
 
212
+ # @ wp-maintenance-mode
213
+ #: inc/wp-maintenance-mode-settings.php:145
214
  msgid "Value:"
215
+ msgstr "Durée :"
216
 
217
+ # @ wp-maintenance-mode
218
+ #: inc/wp-maintenance-mode-settings.php:153
219
  msgid "Unit:"
220
+ msgstr "Unité :"
221
 
222
+ # @ wp-maintenance-mode
223
+ #: inc/wp-maintenance-mode-settings.php:157
224
  msgid "second"
225
  msgstr "seconde"
226
 
227
+ # @ wp-maintenance-mode
228
+ #: inc/wp-maintenance-mode-settings.php:158
229
  msgid "minute"
230
  msgstr "minute"
231
 
232
+ # @ wp-maintenance-mode
233
+ #: inc/wp-maintenance-mode-settings.php:159
234
  msgid "hour"
235
  msgstr "heure"
236
 
237
+ # @ wp-maintenance-mode
238
+ #: inc/wp-maintenance-mode-settings.php:160
239
  msgid "day"
240
  msgstr "jour"
241
 
242
+ # @ wp-maintenance-mode
243
+ #: inc/wp-maintenance-mode-settings.php:161
244
  msgid "week"
245
  msgstr "semaine"
246
 
247
+ # @ wp-maintenance-mode
248
+ #: inc/wp-maintenance-mode-settings.php:162
249
  msgid "month"
250
  msgstr "mois"
251
 
252
+ # @ wp-maintenance-mode
253
+ #: inc/wp-maintenance-mode-settings.php:163
254
  msgid "year"
255
  msgstr "année"
256
 
257
+ # @ wp-maintenance-mode
258
+ #: inc/wp-maintenance-mode-settings.php:169
259
  msgid "Link:"
260
+ msgstr "Lien :"
261
 
262
+ # @ wp-maintenance-mode
263
+ #: inc/wp-maintenance-mode-settings.php:177
264
+ msgid ""
265
+ "Please leave a link to the plugin- and design-author on your maintenance "
266
+ "mode site."
267
+ msgstr ""
268
+ "Merci de laisser un lien vers le site de l'auteur pendant la maintenance de "
269
+ "votre site."
270
 
271
+ # @ wp-maintenance-mode
272
+ #: inc/wp-maintenance-mode-settings.php:182
273
+ msgid "Admin Link:"
274
+ msgstr "Lien vers l'admin :"
275
 
276
+ # @ wp-maintenance-mode
277
+ #: inc/wp-maintenance-mode-settings.php:190
278
+ msgid "Do you will a link to the admin area of your install?"
279
+ msgstr "Souhaitez-vous un lien vers la zone d'administration de votre site ?"
280
+
281
+ # @ wp-maintenance-mode
282
+ #: inc/wp-maintenance-mode-settings.php:200
283
  msgid "Simple Text"
284
  msgstr "Texte simple"
285
 
286
+ # @ wp-maintenance-mode
287
+ #: inc/wp-maintenance-mode-settings.php:201
288
  msgid "The Truck"
289
+ msgstr "Le camion"
290
 
291
+ # @ wp-maintenance-mode
292
+ #: inc/wp-maintenance-mode-settings.php:202
293
  msgid "The Sun"
294
+ msgstr "Le soleil"
295
 
296
+ # @ wp-maintenance-mode
297
+ #: inc/wp-maintenance-mode-settings.php:203
298
  msgid "The FF Error"
299
  msgstr "Erreur FF"
300
 
301
+ # @ wp-maintenance-mode
302
+ #: inc/wp-maintenance-mode-settings.php:204
303
  msgid "Monster"
304
  msgstr "Monstre"
305
 
306
+ # @ wp-maintenance-mode
307
+ #: inc/wp-maintenance-mode-settings.php:205
308
  msgid "Chastely"
309
+ msgstr "Chastement"
310
 
311
+ # @ wp-maintenance-mode
312
+ #: inc/wp-maintenance-mode-settings.php:206
313
  msgid "Only Typo"
314
+ msgstr "Typo uniquement"
315
 
316
+ # @ wp-maintenance-mode
317
+ #: inc/wp-maintenance-mode-settings.php:207
318
  msgid "Paint"
319
  msgstr "Peinture"
320
 
321
+ # @ wp-maintenance-mode
322
+ #: inc/wp-maintenance-mode-settings.php:208
323
+ msgid "Animate (Flash)"
324
+ msgstr "Animation (Flash)"
325
 
326
+ # @ wp-maintenance-mode
327
+ #: inc/wp-maintenance-mode-settings.php:209
328
  msgid "Damask"
329
+ msgstr "Damas"
330
 
331
+ # @ wp-maintenance-mode
332
+ #: inc/wp-maintenance-mode-settings.php:210
333
  msgid "Lego"
334
  msgstr "Lego"
335
 
336
+ # @ wp-maintenance-mode
337
+ #: inc/wp-maintenance-mode-settings.php:211
338
+ msgid "Chemistry"
339
+ msgstr "Chimie"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
340
 
341
+ # @ wp-maintenance-mode
342
+ #: inc/wp-maintenance-mode-settings.php:220
343
+ msgid "URL to the css-file (incl. http://)"
344
+ msgstr "URL du fichier CSS (avec http://)"
345
 
346
+ # @ wp-maintenance-mode
347
+ #: inc/wp-maintenance-mode-settings.php:222
348
+ msgid ""
349
+ "<strong>Caution:</strong> Please don&acute;t copy the stylesheet in your "
350
+ "plugin folder, it will be deleted on the next automatical update of the "
351
+ "plugin!"
352
+ msgstr ""
353
+ "<strong>Attention :</strong> Veillez à ne pas copier votre fichier css dans "
354
+ "le dossier de l'extension, il sera supprimé lors de la prochaine mise à jour "
355
+ "de l'extension !"
356
+
357
+ # @ wp-maintenance-mode
358
+ #: inc/wp-maintenance-mode-settings.php:227
359
+ #: inc/wp-maintenance-mode-settings.php:250
360
+ msgid "Preview"
361
+ msgstr "Prévisualisation"
362
+
363
+ # @ wp-maintenance-mode
364
+ #: inc/wp-maintenance-mode-settings.php:257
365
+ msgid "noindex, nofollow:"
366
+ msgstr "noindex, nofollow :"
367
+
368
+ # @ wp-maintenance-mode
369
+ #: inc/wp-maintenance-mode-settings.php:265
370
+ msgid ""
371
+ "The robots meta tag lets you utilize a granular, page-specific approach to "
372
+ "controlling how an individual page should be indexed and served to users in "
373
+ "search results. Set TRUE for noindex, nofollow; set FALSE for index, follow."
374
+ msgstr ""
375
+ "La meta tag robot vous permet d'avoir une approche granulaire, spécifique à "
376
+ "chaque page pour contrôler si celle-ci doit être indexée et affichée dans "
377
+ "les résultats des moteurs de recherche. Utilisez OUI pour noindex, nofollow "
378
+ "et NON pour index, follow."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
379
 
380
+ # @ wp-maintenance-mode
381
+ #: inc/wp-maintenance-mode-settings.php:270
382
  msgid "Title:"
383
+ msgstr "Balise title :"
 
 
 
 
 
384
 
385
+ # @ wp-maintenance-mode
386
+ #: inc/wp-maintenance-mode-settings.php:273
387
+ #: inc/wp-maintenance-mode-settings.php:281
388
+ #: inc/wp-maintenance-mode-settings.php:289
389
  msgid "Leave empty for default."
390
  msgstr "Laissez vide par défaut."
391
 
392
+ # @ wp-maintenance-mode
393
+ #: inc/wp-maintenance-mode-settings.php:278
394
  msgid "Header:"
395
+ msgstr "Entête :"
396
 
397
+ # @ wp-maintenance-mode
398
+ #: inc/wp-maintenance-mode-settings.php:286
399
  msgid "Heading:"
400
+ msgstr "Titre :"
401
 
402
+ # @ wp-maintenance-mode
403
+ #: inc/wp-maintenance-mode-settings.php:294
404
+ msgid "Text:"
405
+ msgstr "Texte :"
406
 
407
+ # @ wp-maintenance-mode
408
+ #: inc/wp-maintenance-mode-settings.php:307
409
+ msgid "Exclude:"
410
+ msgstr "Exclure :"
411
+
412
+ # @ wp-maintenance-mode
413
+ #: inc/wp-maintenance-mode-settings.php:323
414
+ msgid ""
415
+ "Exclude feed, pages, posts, archives or IPs from the maintenance mode. Add "
416
+ "the Slug of page or post as a comma-separated list.<br />Example:"
417
+ msgstr ""
418
+ "Exclure les flux RSS, les pages, les articles, les catégories ou des IPs du "
419
+ "mode de maintenance. Ajoutez le slug de la page ou de l'article séparé d'une "
420
+ "virgule.<br /> Exemple :"
421
+
422
+ # @ wp-maintenance-mode
423
+ #: inc/wp-maintenance-mode-settings.php:342
424
+ msgid "Backend Role:"
425
+ msgstr "Rôle de la zone d'administration:"
426
+
427
+ # @ wp-maintenance-mode
428
+ #: inc/wp-maintenance-mode-settings.php:367
429
+ msgid "Allowed userrole to access the backend of this blog."
430
+ msgstr "Rôle autorisé à accéder à l'administration du blog."
431
+
432
+ # @ wp-maintenance-mode
433
+ #: inc/wp-maintenance-mode-settings.php:368
434
+ #: inc/wp-maintenance-mode-settings.php:399
435
+ msgid "Super Admin has always access."
436
+ msgstr "Le Super Admin a toujours accès."
437
+
438
+ # @ wp-maintenance-mode
439
+ #: inc/wp-maintenance-mode-settings.php:373
440
+ msgid "Frontend Role:"
441
+ msgstr "Rôle de la partie publique :"
442
+
443
+ # @ wp-maintenance-mode
444
+ #: inc/wp-maintenance-mode-settings.php:398
445
+ msgid "Allowed userrole to see the frontend of this blog."
446
+ msgstr "Rôle autorisé à accéder à la partie publique du blog."
447
+
448
+ # @ wp-maintenance-mode
449
+ #: inc/wp-maintenance-mode-settings.php:404
450
+ msgid "Redirection:"
451
+ msgstr "Redirection :"
452
+
453
+ # @ wp-maintenance-mode
454
+ #: inc/wp-maintenance-mode-settings.php:409
455
+ msgid ""
456
+ "If you want that after the login the destination address is not standard to "
457
+ "the dashboard, then defining a URL. (incl. http://)"
458
+ msgstr ""
459
+ "Si vous souhaitez être redirigé vers une adresse spécifique lors de la "
460
+ "connexion à la zone d'administration, définissez l'url ici (avec http://)"
461
+
462
+ # @ wp-maintenance-mode
463
+ #: inc/wp-maintenance-mode-settings.php:432
464
+ msgid "Save"
465
+ msgstr "Enregistrer"
466
 
467
+ # @ wp-maintenance-mode
468
+ #: inc/wp-maintenance-mode-settings.php:300
469
  #, php-format
470
+ msgid ""
471
+ "Use the first <em>%1$s</em> for the time value or countdown and second <em>"
472
+ "%2$s</em> for the unit of the time or countdown-value; HTML and Shortcodes "
473
+ "are possible."
474
+ msgstr ""
475
+ "Utilisez le premier <em>%1$s</em> pour la durée ou le temps en seconde du "
476
+ "compte à rebours et le second <em>%2$s</em> pour les unités de temps; Code "
477
+ "HTML et Shortcodes sont utilisables."
478
 
479
+ # @ wp-maintenance-mode
480
+ #: inc/wp-maintenance-mode-settings.php:301
481
+ msgid ""
482
+ "Use <code>[loginform]</code> for add the default login form in the "
483
+ "maintenance page."
484
+ msgstr ""
485
+ "Utilisez le shortcode <code>[loginform]</code> pour ajouter le formulaire de "
486
+ "login par défaut sur la page de maintenance."
487
 
488
+ # @ wp-maintenance-mode
489
+ #: inc/wp-maintenance-mode-settings.php:415
490
+ msgid "Notice:"
491
+ msgstr "Remarque :"
492
 
493
+ # @ wp-maintenance-mode
494
+ #: inc/wp-maintenance-mode-settings.php:422
495
+ msgid ""
496
+ "Do you will see all notices, inside backend, the Admin Bar and the login "
497
+ "screen?"
498
+ msgstr ""
499
+ "Voulez-vous voir toutes les alertes dans la zone d'administration ainsi que "
500
+ "la barre d'admin et l'ecran de connexion ?"
501
 
502
+ # @ default
503
+ #: index.php:25
504
+ msgid "Cheatin&#8217; uh?"
505
  msgstr ""
506
 
507
+ # @ wp-maintenance-mode
508
+ #. translators: plugin header field 'Name'
509
+ #: wp-maintenance-mode.php:0
510
+ msgid "WP Maintenance Mode"
511
+ msgstr "WP Maintenance Mode"
512
+
513
+ # @ wp-maintenance-mode
514
+ #. translators: plugin header field 'PluginURI'
515
+ #: wp-maintenance-mode.php:0
516
+ msgid "http://wordpress.org/extend/plugins/wp-maintenance-mode/"
517
+ msgstr "http://wordpress.org/extend/plugins/wp-maintenance-mode/"
518
+
519
+ # @ wp-maintenance-mode
520
+ #. translators: plugin header field 'Description'
521
+ #: wp-maintenance-mode.php:0
522
+ msgid ""
523
+ "The plugin adds a splash page to your blog that lets visitors know your blog "
524
+ "is down for maintenance. Logged in users get full access to the blog "
525
+ "including the front-end, depends of the settings."
526
+ msgstr ""
527
+ "Le plugin ajoute une page de garde à votre blog qui permet aux visiteurs de "
528
+ "voir si votre blog est en maintenance. Les utilisateurs connectés ont un "
529
+ "accès complet au blog, la partie publique du site y compris, en fonction des "
530
+ "réglages."
531
+
532
+ # @ wp-maintenance-mode
533
+ #. translators: plugin header field 'Author'
534
+ #: wp-maintenance-mode.php:0
535
+ msgid "Frank B&uuml;ltge"
536
+ msgstr "Frank B&uuml;ltge"
537
+
538
+ # @ wp-maintenance-mode
539
+ #. translators: plugin header field 'AuthorURI'
540
+ #: wp-maintenance-mode.php:0
541
+ msgid "http://bueltge.de/"
542
+ msgstr "http://bueltge.de/"
543
+
544
+ # @ wp-maintenance-mode
545
+ #: inc/wp-maintenance-mode-settings.php:195
546
+ msgid "CSS Style:"
547
+ msgstr "Style CSS :"
548
+
549
+ # @ wp-maintenance-mode
550
+ #: inc/wp-maintenance-mode-settings.php:199
551
+ msgid "Own CSS Stylesheet"
552
+ msgstr "Fichier CSS personnalisé"
553
+
554
+ # @ wp-maintenance-mode
555
+ #: inc/wp-maintenance-mode-settings.php:217
556
+ msgid "Own CSS Style URL:"
557
+ msgstr "URL de votre fichier CSS personnalisé :"
558
+
559
+ # @ wp-maintenance-mode
560
+ #: inc/wp-maintenance-mode-settings.php:329
561
+ msgid "Bypass for Search Bots:"
562
+ msgstr "By-pass des robots des moteurs de recherche :"
563
+
564
+ # @ wp-maintenance-mode
565
+ #: inc/wp-maintenance-mode-settings.php:336
566
+ msgid "Allow Search Bots to bypass maintenance mode?"
567
+ msgstr ""
568
+ "Permettre aux robots de passer outre le mode de maintenance (indexer les "
569
+ "pages) ?"
570
+
571
+ # @ wp-maintenance-mode
572
+ #. translators: plugin header field 'Version'
573
+ #: wp-maintenance-mode.php:0
574
+ msgid "1.8.7"
575
+ msgstr "1.8.7"
languages/wp-maintenance-mode-ja.mo ADDED
Binary file
languages/wp-maintenance-mode-ja.po ADDED
@@ -0,0 +1,573 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-04-13 15:48+0900\n"
7
+ "Last-Translator: YAT <yat@yat-net.com>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: Poedit 1.5.5\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: c:/xampp/htdocs/wp-plugins/wp-maintenance-mode/\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ # @ wp-maintenance-mode
22
+ #: site.php:27 site.php:65
23
+ msgid "Maintenance Mode"
24
+ msgstr "メンテナンスモード"
25
+
26
+ # @ wp-maintenance-mode
27
+ #: site.php:72
28
+ msgid "Access to the admin area blocked"
29
+ msgstr "管理機能へのアクセスはブロックされています"
30
+
31
+ # @ wp-maintenance-mode
32
+ #: site.php:75
33
+ msgid "Admin-Logout"
34
+ msgstr "管理者ログアウト"
35
+
36
+ # @ wp-maintenance-mode
37
+ #: site.php:80
38
+ msgid "Admin-Login"
39
+ msgstr "管理者ログイン"
40
+
41
+ # @ default
42
+ #: inc/wp-maintenance-mode-settings.php:55
43
+ #: inc/wp-maintenance-mode-settings.php:65
44
+ msgid "Settings"
45
+ msgstr "設定"
46
+
47
+ # @ wp-maintenance-mode
48
+ #: wp-maintenance-mode.php:304
49
+ msgid "Maintenance mode"
50
+ msgstr "メンテナンスモード"
51
+
52
+ # @ wp-maintenance-mode
53
+ #: wp-maintenance-mode.php:305
54
+ #, php-format
55
+ msgid ""
56
+ "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
57
+ "scheduled maintenance.<br /><strong>Please try back in %1$s %2$s</"
58
+ "strong><br />Thank you for your understanding.</p>"
59
+ msgstr ""
60
+ "<p>ご不便をおかけしており大変恐縮です。<br />現在メンテナンス中です。<br />お"
61
+ "手数をおかけしますが、<strong> %1$s %2$s </strong>頃に再度ご訪問いただきます"
62
+ "ようお願いいたします。</p>"
63
+
64
+ # @ wp-maintenance-mode
65
+ #: wp-maintenance-mode.php:348 wp-maintenance-mode.php:428
66
+ msgid "Updated"
67
+ msgstr "更新しました。"
68
+
69
+ # @ wp-maintenance-mode
70
+ #: wp-maintenance-mode.php:607
71
+ msgid "seconds"
72
+ msgstr "秒"
73
+
74
+ # @ wp-maintenance-mode
75
+ #: wp-maintenance-mode.php:611
76
+ msgid "minutes"
77
+ msgstr "分"
78
+
79
+ # @ wp-maintenance-mode
80
+ #: wp-maintenance-mode.php:615
81
+ msgid "hours"
82
+ msgstr "時"
83
+
84
+ # @ wp-maintenance-mode
85
+ #: wp-maintenance-mode.php:619
86
+ msgid "days"
87
+ msgstr "日"
88
+
89
+ # @ wp-maintenance-mode
90
+ #: wp-maintenance-mode.php:623
91
+ msgid "weeks"
92
+ msgstr "週"
93
+
94
+ # @ wp-maintenance-mode
95
+ #: wp-maintenance-mode.php:627
96
+ msgid "months"
97
+ msgstr "月"
98
+
99
+ # @ wp-maintenance-mode
100
+ #: wp-maintenance-mode.php:631
101
+ msgid "years"
102
+ msgstr "年"
103
+
104
+ # @ wp-maintenance-mode
105
+ #: wp-maintenance-mode.php:693
106
+ msgid " &amp; WP Super Cache flushed."
107
+ msgstr " & WP Super Cache のフラッシュを行ないました。"
108
+
109
+ # @ wp-maintenance-mode
110
+ #: wp-maintenance-mode.php:700
111
+ msgid " &amp; W3 Total Cache for pages flushed."
112
+ msgstr " & W3 Total Cache のフラッシュを行ないました。"
113
+
114
+ # @ wp-maintenance-mode
115
+ #: wp-maintenance-mode.php:705 wp-maintenance-mode.php:1013
116
+ msgid "Caution: Maintenance mode is <strong>active</strong>!"
117
+ msgstr "注意: メンテナンスモードは<strong>有効</strong>です!"
118
+
119
+ # @ wp-maintenance-mode
120
+ #: wp-maintenance-mode.php:707
121
+ msgid "Deactivate or change Settings"
122
+ msgstr "無効化または設定変更"
123
+
124
+ # @ wp-maintenance-mode
125
+ #: wp-maintenance-mode.php:815
126
+ msgid "Plugin by:"
127
+ msgstr "プラグイン作成:"
128
+
129
+ # @ wp-maintenance-mode
130
+ #: wp-maintenance-mode.php:817 wp-maintenance-mode.php:819
131
+ #: wp-maintenance-mode.php:821 wp-maintenance-mode.php:823
132
+ #: wp-maintenance-mode.php:825 wp-maintenance-mode.php:827
133
+ #: wp-maintenance-mode.php:829 wp-maintenance-mode.php:831
134
+ #: wp-maintenance-mode.php:833 wp-maintenance-mode.php:835
135
+ #: wp-maintenance-mode.php:837
136
+ msgid "Design by:"
137
+ msgstr "デザイン:"
138
+
139
+ # @ wp-maintenance-mode
140
+ #: inc/wp-maintenance-mode-settings.php:100
141
+ #: inc/wp-maintenance-mode-settings.php:429
142
+ #, php-format
143
+ msgid "Plugin %s settings <strong>updated</strong>."
144
+ msgstr "プラグイン %s の設定が <strong>変更されました</strong>。"
145
+
146
+ # @ wp-maintenance-mode
147
+ #: inc/wp-maintenance-mode-settings.php:103
148
+ #: inc/wp-maintenance-mode-settings.php:116
149
+ #, php-format
150
+ msgid "Plugin %s active status <strong>updated</strong>."
151
+ msgstr "プラグイン%sの有効状態が <strong>更新されました</strong>。"
152
+
153
+ # @ wp-maintenance-mode
154
+ #: inc/wp-maintenance-mode-settings.php:106
155
+ msgid "Plugin Activate"
156
+ msgstr "プラグイン有効化"
157
+
158
+ # @ wp-maintenance-mode
159
+ #: inc/wp-maintenance-mode-settings.php:110
160
+ #: inc/wp-maintenance-mode-settings.php:129
161
+ #: inc/wp-maintenance-mode-settings.php:173
162
+ #: inc/wp-maintenance-mode-settings.php:186
163
+ #: inc/wp-maintenance-mode-settings.php:261
164
+ #: inc/wp-maintenance-mode-settings.php:333
165
+ #: inc/wp-maintenance-mode-settings.php:419
166
+ msgid "False"
167
+ msgstr "いいえ"
168
+
169
+ # @ wp-maintenance-mode
170
+ #: inc/wp-maintenance-mode-settings.php:111
171
+ #: inc/wp-maintenance-mode-settings.php:130
172
+ #: inc/wp-maintenance-mode-settings.php:174
173
+ #: inc/wp-maintenance-mode-settings.php:187
174
+ #: inc/wp-maintenance-mode-settings.php:262
175
+ #: inc/wp-maintenance-mode-settings.php:334
176
+ #: inc/wp-maintenance-mode-settings.php:420
177
+ msgid "True"
178
+ msgstr "はい"
179
+
180
+ # @ wp-maintenance-mode
181
+ #: inc/wp-maintenance-mode-settings.php:113
182
+ msgid "Update"
183
+ msgstr "更新"
184
+
185
+ # @ wp-maintenance-mode
186
+ #: inc/wp-maintenance-mode-settings.php:119
187
+ msgid "Plugin Settings"
188
+ msgstr "プラグイン設定"
189
+
190
+ # @ wp-maintenance-mode
191
+ #: inc/wp-maintenance-mode-settings.php:125
192
+ msgid "Countdown:"
193
+ msgstr "カウントダウン:"
194
+
195
+ # @ wp-maintenance-mode
196
+ #: inc/wp-maintenance-mode-settings.php:136
197
+ #: inc/wp-maintenance-mode-settings.php:139
198
+ msgid "Click for datepicker"
199
+ msgstr "日付を選択"
200
+
201
+ # @ wp-maintenance-mode
202
+ #: inc/wp-maintenance-mode-settings.php:136
203
+ msgid "Date:"
204
+ msgstr "日付:"
205
+
206
+ # @ wp-maintenance-mode
207
+ #: inc/wp-maintenance-mode-settings.php:140
208
+ msgid ""
209
+ "Activate countdown for using this. Use value and unit or use the countdown "
210
+ "and set the date."
211
+ msgstr ""
212
+ "これを使うには「カウントダウン」を有効にして下さい。値と時間単位を使うか、カ"
213
+ "ウントダウンを使って日数を設定して下さい"
214
+
215
+ # @ wp-maintenance-mode
216
+ #: inc/wp-maintenance-mode-settings.php:145
217
+ msgid "Value:"
218
+ msgstr "値:"
219
+
220
+ # @ wp-maintenance-mode
221
+ #: inc/wp-maintenance-mode-settings.php:153
222
+ msgid "Unit:"
223
+ msgstr "時間単位:"
224
+
225
+ # @ wp-maintenance-mode
226
+ #: inc/wp-maintenance-mode-settings.php:157
227
+ msgid "second"
228
+ msgstr "秒"
229
+
230
+ # @ wp-maintenance-mode
231
+ #: inc/wp-maintenance-mode-settings.php:158
232
+ msgid "minute"
233
+ msgstr "分"
234
+
235
+ # @ wp-maintenance-mode
236
+ #: inc/wp-maintenance-mode-settings.php:159
237
+ msgid "hour"
238
+ msgstr "時"
239
+
240
+ # @ wp-maintenance-mode
241
+ #: inc/wp-maintenance-mode-settings.php:160
242
+ msgid "day"
243
+ msgstr "日"
244
+
245
+ # @ wp-maintenance-mode
246
+ #: inc/wp-maintenance-mode-settings.php:161
247
+ msgid "week"
248
+ msgstr "週"
249
+
250
+ # @ wp-maintenance-mode
251
+ #: inc/wp-maintenance-mode-settings.php:162
252
+ msgid "month"
253
+ msgstr "月"
254
+
255
+ # @ wp-maintenance-mode
256
+ #: inc/wp-maintenance-mode-settings.php:163
257
+ msgid "year"
258
+ msgstr "年"
259
+
260
+ # @ wp-maintenance-mode
261
+ #: inc/wp-maintenance-mode-settings.php:169
262
+ msgid "Link:"
263
+ msgstr "リンク:"
264
+
265
+ # @ wp-maintenance-mode
266
+ #: inc/wp-maintenance-mode-settings.php:177
267
+ msgid ""
268
+ "Please leave a link to the plugin- and design-author on your maintenance "
269
+ "mode site."
270
+ msgstr ""
271
+ "プラグイン作者とデザイン担当へのリンクは残しておいてくださるとありがたいで"
272
+ "す。"
273
+
274
+ # @ wp-maintenance-mode
275
+ #: inc/wp-maintenance-mode-settings.php:182
276
+ msgid "Admin Link:"
277
+ msgstr "管理者リンク"
278
+
279
+ # @ wp-maintenance-mode
280
+ #: inc/wp-maintenance-mode-settings.php:190
281
+ msgid "Do you will a link to the admin area of your install?"
282
+ msgstr "管理領域へのリンクを置きますか?"
283
+
284
+ # @ wp-maintenance-mode
285
+ #: inc/wp-maintenance-mode-settings.php:200
286
+ msgid "Simple Text"
287
+ msgstr "Simple Text"
288
+
289
+ # @ wp-maintenance-mode
290
+ #: inc/wp-maintenance-mode-settings.php:201
291
+ msgid "The Truck"
292
+ msgstr "Thr Truck"
293
+
294
+ # @ wp-maintenance-mode
295
+ #: inc/wp-maintenance-mode-settings.php:202
296
+ msgid "The Sun"
297
+ msgstr "The Sun"
298
+
299
+ # @ wp-maintenance-mode
300
+ #: inc/wp-maintenance-mode-settings.php:203
301
+ msgid "The FF Error"
302
+ msgstr "The FF Error(Firefox向けのエラーページ)"
303
+
304
+ # @ wp-maintenance-mode
305
+ #: inc/wp-maintenance-mode-settings.php:204
306
+ msgid "Monster"
307
+ msgstr "Monster"
308
+
309
+ # @ wp-maintenance-mode
310
+ #: inc/wp-maintenance-mode-settings.php:205
311
+ msgid "Chastely"
312
+ msgstr "Chastely"
313
+
314
+ # @ wp-maintenance-mode
315
+ #: inc/wp-maintenance-mode-settings.php:206
316
+ msgid "Only Typo"
317
+ msgstr "Only Typo"
318
+
319
+ # @ wp-maintenance-mode
320
+ #: inc/wp-maintenance-mode-settings.php:207
321
+ msgid "Paint"
322
+ msgstr "Paint"
323
+
324
+ # @ wp-maintenance-mode
325
+ #: inc/wp-maintenance-mode-settings.php:208
326
+ msgid "Animate (Flash)"
327
+ msgstr "Animate (Flash)"
328
+
329
+ # @ wp-maintenance-mode
330
+ #: inc/wp-maintenance-mode-settings.php:209
331
+ msgid "Damask"
332
+ msgstr "Damask"
333
+
334
+ # @ wp-maintenance-mode
335
+ #: inc/wp-maintenance-mode-settings.php:210
336
+ msgid "Lego"
337
+ msgstr "Lego"
338
+
339
+ # @ wp-maintenance-mode
340
+ #: inc/wp-maintenance-mode-settings.php:211
341
+ msgid "Chemistry"
342
+ msgstr "Chemistry"
343
+
344
+ # @ wp-maintenance-mode
345
+ #: inc/wp-maintenance-mode-settings.php:220
346
+ msgid "URL to the css-file (incl. http://)"
347
+ msgstr "CSSファイルへのリンク(http:// で始まること)"
348
+
349
+ # @ wp-maintenance-mode
350
+ #: inc/wp-maintenance-mode-settings.php:222
351
+ msgid ""
352
+ "<strong>Caution:</strong> Please don&acute;t copy the stylesheet in your "
353
+ "plugin folder, it will be deleted on the next automatical update of the "
354
+ "plugin!"
355
+ msgstr ""
356
+ "<strong>ご注意:</strong> スタイルシートをプラグインディレクトリの中にコピーし"
357
+ "ないで下さい。次回の自動更新の時に削除されてしまいます!"
358
+
359
+ # @ wp-maintenance-mode
360
+ #: inc/wp-maintenance-mode-settings.php:227
361
+ #: inc/wp-maintenance-mode-settings.php:250
362
+ msgid "Preview"
363
+ msgstr "プレビュー"
364
+
365
+ # @ wp-maintenance-mode
366
+ #: inc/wp-maintenance-mode-settings.php:257
367
+ msgid "noindex, nofollow:"
368
+ msgstr "noindex, nofollow:"
369
+
370
+ # @ wp-maintenance-mode
371
+ #: inc/wp-maintenance-mode-settings.php:265
372
+ msgid ""
373
+ "The robots meta tag lets you utilize a granular, page-specific approach to "
374
+ "controlling how an individual page should be indexed and served to users in "
375
+ "search results. Set TRUE for noindex, nofollow; set FALSE for index, follow."
376
+ msgstr ""
377
+ "ロボットメタタグは、どのページがインデックスされ検索結果に載せられてユーザー"
378
+ "に提供されるかを、きめ細かくページ単位で制御するやり方を可能にします。イン"
379
+ "デックスもリンク追跡もしなければ「はい」を、インデックスもリンク追跡も許可す"
380
+ "るなら「いいえ」を設定してください。"
381
+
382
+ # @ wp-maintenance-mode
383
+ #: inc/wp-maintenance-mode-settings.php:270
384
+ msgid "Title:"
385
+ msgstr "タイトル:"
386
+
387
+ # @ wp-maintenance-mode
388
+ #: inc/wp-maintenance-mode-settings.php:273
389
+ #: inc/wp-maintenance-mode-settings.php:281
390
+ #: inc/wp-maintenance-mode-settings.php:289
391
+ msgid "Leave empty for default."
392
+ msgstr "空にしておくとデフォルトの値が使われます。"
393
+
394
+ # @ wp-maintenance-mode
395
+ #: inc/wp-maintenance-mode-settings.php:278
396
+ msgid "Header:"
397
+ msgstr "ヘッダー:"
398
+
399
+ # @ wp-maintenance-mode
400
+ #: inc/wp-maintenance-mode-settings.php:286
401
+ msgid "Heading:"
402
+ msgstr "ヘッディング:"
403
+
404
+ # @ wp-maintenance-mode
405
+ #: inc/wp-maintenance-mode-settings.php:294
406
+ msgid "Text:"
407
+ msgstr "テキスト:"
408
+
409
+ # @ wp-maintenance-mode
410
+ #: inc/wp-maintenance-mode-settings.php:307
411
+ msgid "Exclude:"
412
+ msgstr "除外項目:"
413
+
414
+ # @ wp-maintenance-mode
415
+ #: inc/wp-maintenance-mode-settings.php:323
416
+ msgid ""
417
+ "Exclude feed, pages, posts, archives or IPs from the maintenance mode. Add "
418
+ "the Slug of page or post as a comma-separated list.<br />Example:"
419
+ msgstr ""
420
+ "フィード、ページや投稿、または特定のIPアドレスからのアクセスをメンテナンスか"
421
+ "ら除外できます。ページや投稿のスラッグをカンマで区切って入力してください。"
422
+
423
+ # @ wp-maintenance-mode
424
+ #: inc/wp-maintenance-mode-settings.php:342
425
+ msgid "Backend Role:"
426
+ msgstr "バックエンドロール:"
427
+
428
+ # @ wp-maintenance-mode
429
+ #: inc/wp-maintenance-mode-settings.php:367
430
+ msgid "Allowed userrole to access the backend of this blog."
431
+ msgstr "このブログのバックエンドに対するアクセスを持ったユーザー権限"
432
+
433
+ # @ wp-maintenance-mode
434
+ #: inc/wp-maintenance-mode-settings.php:368
435
+ #: inc/wp-maintenance-mode-settings.php:399
436
+ msgid "Super Admin has always access."
437
+ msgstr "特権管理者は常にアクセスできます。"
438
+
439
+ # @ wp-maintenance-mode
440
+ #: inc/wp-maintenance-mode-settings.php:373
441
+ msgid "Frontend Role:"
442
+ msgstr "フロントエンドロール:"
443
+
444
+ # @ wp-maintenance-mode
445
+ #: inc/wp-maintenance-mode-settings.php:398
446
+ msgid "Allowed userrole to see the frontend of this blog."
447
+ msgstr "このブログのフロントエンドにアクセスできるユーザーロール"
448
+
449
+ # @ wp-maintenance-mode
450
+ #: inc/wp-maintenance-mode-settings.php:404
451
+ msgid "Redirection:"
452
+ msgstr "リダイレクト:"
453
+
454
+ # @ wp-maintenance-mode
455
+ #: inc/wp-maintenance-mode-settings.php:409
456
+ msgid ""
457
+ "If you want that after the login the destination address is not standard to "
458
+ "the dashboard, then defining a URL. (incl. http://)"
459
+ msgstr ""
460
+ "フロントエンドでユーザーがログインした場合、ログイン後別のアドレスにリダイレ"
461
+ "クトさせたい場合は、そのURLを定義してください。(http://を含めてください)"
462
+
463
+ # @ wp-maintenance-mode
464
+ #: inc/wp-maintenance-mode-settings.php:432
465
+ msgid "Save"
466
+ msgstr "保存"
467
+
468
+ # @ wp-maintenance-mode
469
+ #: inc/wp-maintenance-mode-settings.php:300
470
+ #, php-format
471
+ msgid ""
472
+ "Use the first <em>%1$s</em> for the time value or countdown and second <em>"
473
+ "%2$s</em> for the unit of the time or countdown-value; HTML and Shortcodes "
474
+ "are possible."
475
+ msgstr ""
476
+ "最初の %1$s はカウントダウンの時間値、二番目の %2$s はカウントダウン値に対す"
477
+ "る単位です。HTMLの記法やショートコードも記述可能です。"
478
+
479
+ # @ wp-maintenance-mode
480
+ #: inc/wp-maintenance-mode-settings.php:301
481
+ msgid ""
482
+ "Use <code>[loginform]</code> for add the default login form in the "
483
+ "maintenance page."
484
+ msgstr ""
485
+ "メンテナンスページにログインフォームを追加するために <code>[loginform]</"
486
+ "code> を使ってください。"
487
+
488
+ # @ wp-maintenance-mode
489
+ #: inc/wp-maintenance-mode-settings.php:415
490
+ msgid "Notice:"
491
+ msgstr "注意:"
492
+
493
+ # @ wp-maintenance-mode
494
+ #: inc/wp-maintenance-mode-settings.php:422
495
+ msgid ""
496
+ "Do you will see all notices, inside backend, the Admin Bar and the login "
497
+ "screen?"
498
+ msgstr ""
499
+ "バックエンドの中や、管理バー、ログインスクリーンにすべてのお知らせを載せます"
500
+ "か?"
501
+
502
+ # @ default
503
+ #: index.php:25
504
+ msgid "Cheatin&#8217; uh?"
505
+ msgstr "cheat in"
506
+
507
+ # @ wp-maintenance-mode
508
+ #. translators: plugin header field 'Name'
509
+ #: wp-maintenance-mode.php:0
510
+ msgid "WP Maintenance Mode"
511
+ msgstr "WP Maintenance Mode"
512
+
513
+ # @ wp-maintenance-mode
514
+ #. translators: plugin header field 'PluginURI'
515
+ #: wp-maintenance-mode.php:0
516
+ msgid "http://wordpress.org/extend/plugins/wp-maintenance-mode/"
517
+ msgstr "http://wordpress.org/extend/plugins/wp-maintenance-mode/"
518
+
519
+ # @ wp-maintenance-mode
520
+ #. translators: plugin header field 'Description'
521
+ #: wp-maintenance-mode.php:0
522
+ msgid ""
523
+ "The plugin adds a splash page to your blog that lets visitors know your blog "
524
+ "is down for maintenance. Logged in users get full access to the blog "
525
+ "including the front-end, depends of the settings."
526
+ msgstr ""
527
+ "このプラグインは訪問者にあなたのブログががメンテナンス中だと知らせるスプラッ"
528
+ "シュページを追加します。設定内容によって、ログインしたユーザーはフロントエン"
529
+ "ドを含むすべてのページへアクセスできます。"
530
+
531
+ # @ wp-maintenance-mode
532
+ #. translators: plugin header field 'Author'
533
+ #: wp-maintenance-mode.php:0
534
+ msgid "Frank B&uuml;ltge"
535
+ msgstr "Frank B&uuml;ltge"
536
+
537
+ # @ wp-maintenance-mode
538
+ #. translators: plugin header field 'AuthorURI'
539
+ #: wp-maintenance-mode.php:0
540
+ msgid "http://bueltge.de/"
541
+ msgstr "http://bueltge.de/"
542
+
543
+ # @ wp-maintenance-mode
544
+ #: inc/wp-maintenance-mode-settings.php:195
545
+ msgid "CSS Style:"
546
+ msgstr "CSSスタイル:"
547
+
548
+ # @ wp-maintenance-mode
549
+ #: inc/wp-maintenance-mode-settings.php:199
550
+ msgid "Own CSS Stylesheet"
551
+ msgstr "独自CSSスタイルシート"
552
+
553
+ # @ wp-maintenance-mode
554
+ #: inc/wp-maintenance-mode-settings.php:217
555
+ msgid "Own CSS Style URL:"
556
+ msgstr "独自CSSスタイルのURL:"
557
+
558
+ # @ wp-maintenance-mode
559
+ #: inc/wp-maintenance-mode-settings.php:329
560
+ msgid "Bypass for Search Bots:"
561
+ msgstr "検索ボットのクローリングを許可:"
562
+
563
+ # @ wp-maintenance-mode
564
+ #: inc/wp-maintenance-mode-settings.php:336
565
+ msgid "Allow Search Bots to bypass maintenance mode?"
566
+ msgstr ""
567
+ "検索ボットがメンテナンスモード中でもクローリングさせる事を可能にしますか?"
568
+
569
+ # @ wp-maintenance-mode
570
+ #. translators: plugin header field 'Version'
571
+ #: wp-maintenance-mode.php:0
572
+ msgid "1.8.7"
573
+ msgstr "1.8.7"
languages/wp-maintenance-mode-uk.mo ADDED
Binary file
languages/wp-maintenance-mode-uk.po ADDED
@@ -0,0 +1,578 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-04-29 22:28+0200\n"
7
+ "Last-Translator: Maksym Kobieliev <maximaximums@gmail.com>\n"
8
+ "Language-Team: <maximaximums@gmail.com>\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%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
13
+ "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
14
+ "X-Generator: Poedit 1.5.4\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
+ "_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: c:/xampp/htdocs/wp-plugins/wp-maintenance-mode/\n"
19
+ "X-Textdomain-Support: yes\n"
20
+ "Language: uk\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+
23
+ # @ wp-maintenance-mode
24
+ #: site.php:27 site.php:65
25
+ msgid "Maintenance Mode"
26
+ msgstr ""
27
+
28
+ # @ wp-maintenance-mode
29
+ #: site.php:72
30
+ msgid "Access to the admin area blocked"
31
+ msgstr "Доступ до панелі адміністратора заблоковано"
32
+
33
+ # @ wp-maintenance-mode
34
+ #: site.php:75
35
+ msgid "Admin-Logout"
36
+ msgstr "Вийти"
37
+
38
+ # @ wp-maintenance-mode
39
+ #: site.php:80
40
+ msgid "Admin-Login"
41
+ msgstr "Вхід для адміністраторів"
42
+
43
+ # @ default
44
+ #: inc/wp-maintenance-mode-settings.php:55
45
+ #: inc/wp-maintenance-mode-settings.php:65
46
+ msgid "Settings"
47
+ msgstr "Налаштування"
48
+
49
+ # @ wp-maintenance-mode
50
+ #: wp-maintenance-mode.php:304
51
+ msgid "Maintenance mode"
52
+ msgstr ""
53
+
54
+ # @ wp-maintenance-mode
55
+ #: wp-maintenance-mode.php:305
56
+ #, php-format
57
+ msgid ""
58
+ "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
59
+ "scheduled maintenance.<br /><strong>Please try back in %1$s %2$s</"
60
+ "strong><br />Thank you for your understanding.</p>"
61
+ msgstr ""
62
+ "<p>Даруйте за незручності.<br />На нашому веб-сайті зараз проводиться "
63
+ "планові технічні роботи.<br /><strong>Будь ласка, спробуйте ще раз через "
64
+ "%1$s %2$s</strong><br />Дякуємо за розуміння.</p>"
65
+
66
+ # @ wp-maintenance-mode
67
+ #: wp-maintenance-mode.php:348 wp-maintenance-mode.php:428
68
+ msgid "Updated"
69
+ msgstr ""
70
+
71
+ # @ wp-maintenance-mode
72
+ #: wp-maintenance-mode.php:607
73
+ msgid "seconds"
74
+ msgstr ""
75
+
76
+ # @ wp-maintenance-mode
77
+ #: wp-maintenance-mode.php:611
78
+ msgid "minutes"
79
+ msgstr ""
80
+
81
+ # @ wp-maintenance-mode
82
+ #: wp-maintenance-mode.php:615
83
+ msgid "hours"
84
+ msgstr ""
85
+
86
+ # @ wp-maintenance-mode
87
+ #: wp-maintenance-mode.php:619
88
+ msgid "days"
89
+ msgstr ""
90
+
91
+ # @ wp-maintenance-mode
92
+ #: wp-maintenance-mode.php:623
93
+ msgid "weeks"
94
+ msgstr ""
95
+
96
+ # @ wp-maintenance-mode
97
+ #: wp-maintenance-mode.php:627
98
+ msgid "months"
99
+ msgstr ""
100
+
101
+ # @ wp-maintenance-mode
102
+ #: wp-maintenance-mode.php:631
103
+ msgid "years"
104
+ msgstr ""
105
+
106
+ # @ wp-maintenance-mode
107
+ #: wp-maintenance-mode.php:693
108
+ msgid " &amp; WP Super Cache flushed."
109
+ msgstr ""
110
+
111
+ # @ wp-maintenance-mode
112
+ #: wp-maintenance-mode.php:700
113
+ msgid " &amp; W3 Total Cache for pages flushed."
114
+ msgstr ""
115
+
116
+ # @ wp-maintenance-mode
117
+ #: wp-maintenance-mode.php:705 wp-maintenance-mode.php:1013
118
+ msgid "Caution: Maintenance mode is <strong>active</strong>!"
119
+ msgstr "Увага: Режим обслуговування <strong>активовано</strong>!"
120
+
121
+ # @ wp-maintenance-mode
122
+ #: wp-maintenance-mode.php:707
123
+ msgid "Deactivate or change Settings"
124
+ msgstr "Деактивувати або змінити налаштування"
125
+
126
+ # @ wp-maintenance-mode
127
+ #: wp-maintenance-mode.php:815
128
+ msgid "Plugin by:"
129
+ msgstr "Автор плаґіну:"
130
+
131
+ # @ wp-maintenance-mode
132
+ #: wp-maintenance-mode.php:817 wp-maintenance-mode.php:819
133
+ #: wp-maintenance-mode.php:821 wp-maintenance-mode.php:823
134
+ #: wp-maintenance-mode.php:825 wp-maintenance-mode.php:827
135
+ #: wp-maintenance-mode.php:829 wp-maintenance-mode.php:831
136
+ #: wp-maintenance-mode.php:833 wp-maintenance-mode.php:835
137
+ #: wp-maintenance-mode.php:837
138
+ msgid "Design by:"
139
+ msgstr "Дизайн плаґіну:"
140
+
141
+ # @ wp-maintenance-mode
142
+ #: inc/wp-maintenance-mode-settings.php:100
143
+ #: inc/wp-maintenance-mode-settings.php:429
144
+ #, php-format
145
+ msgid "Plugin %s settings <strong>updated</strong>."
146
+ msgstr "Налаштування плаґіна %s <strong>оновлено</strong>."
147
+
148
+ # @ wp-maintenance-mode
149
+ #: inc/wp-maintenance-mode-settings.php:103
150
+ #: inc/wp-maintenance-mode-settings.php:116
151
+ #, php-format
152
+ msgid "Plugin %s active status <strong>updated</strong>."
153
+ msgstr "Статус плаґіна %s <strong>оновлено</strong>."
154
+
155
+ # @ wp-maintenance-mode
156
+ #: inc/wp-maintenance-mode-settings.php:106
157
+ msgid "Plugin Activate"
158
+ msgstr "Активність плаґіну"
159
+
160
+ # @ wp-maintenance-mode
161
+ #: inc/wp-maintenance-mode-settings.php:110
162
+ #: inc/wp-maintenance-mode-settings.php:129
163
+ #: inc/wp-maintenance-mode-settings.php:173
164
+ #: inc/wp-maintenance-mode-settings.php:186
165
+ #: inc/wp-maintenance-mode-settings.php:261
166
+ #: inc/wp-maintenance-mode-settings.php:333
167
+ #: inc/wp-maintenance-mode-settings.php:419
168
+ msgid "False"
169
+ msgstr "Ні"
170
+
171
+ # @ wp-maintenance-mode
172
+ #: inc/wp-maintenance-mode-settings.php:111
173
+ #: inc/wp-maintenance-mode-settings.php:130
174
+ #: inc/wp-maintenance-mode-settings.php:174
175
+ #: inc/wp-maintenance-mode-settings.php:187
176
+ #: inc/wp-maintenance-mode-settings.php:262
177
+ #: inc/wp-maintenance-mode-settings.php:334
178
+ #: inc/wp-maintenance-mode-settings.php:420
179
+ msgid "True"
180
+ msgstr "Так"
181
+
182
+ # @ wp-maintenance-mode
183
+ #: inc/wp-maintenance-mode-settings.php:113
184
+ msgid "Update"
185
+ msgstr "Оновити"
186
+
187
+ # @ wp-maintenance-mode
188
+ #: inc/wp-maintenance-mode-settings.php:119
189
+ msgid "Plugin Settings"
190
+ msgstr "Налаштування плаґіна"
191
+
192
+ # @ wp-maintenance-mode
193
+ #: inc/wp-maintenance-mode-settings.php:125
194
+ msgid "Countdown:"
195
+ msgstr "Зворотній відлік:"
196
+
197
+ # @ wp-maintenance-mode
198
+ #: inc/wp-maintenance-mode-settings.php:136
199
+ #: inc/wp-maintenance-mode-settings.php:139
200
+ msgid "Click for datepicker"
201
+ msgstr "Клацніть, щоб відобразити календар"
202
+
203
+ # @ wp-maintenance-mode
204
+ #: inc/wp-maintenance-mode-settings.php:136
205
+ msgid "Date:"
206
+ msgstr "Дата:"
207
+
208
+ # @ wp-maintenance-mode
209
+ #: inc/wp-maintenance-mode-settings.php:140
210
+ msgid ""
211
+ "Activate countdown for using this. Use value and unit or use the countdown "
212
+ "and set the date."
213
+ msgstr ""
214
+ "Активуйте зворотній відлік, щоб використовувати це. Вкажіть значення і "
215
+ "одиницю виміру або вкажіть дату."
216
+
217
+ # @ wp-maintenance-mode
218
+ #: inc/wp-maintenance-mode-settings.php:145
219
+ msgid "Value:"
220
+ msgstr "Значення:"
221
+
222
+ # @ wp-maintenance-mode
223
+ #: inc/wp-maintenance-mode-settings.php:153
224
+ msgid "Unit:"
225
+ msgstr "Одиниця виміру:"
226
+
227
+ # @ wp-maintenance-mode
228
+ #: inc/wp-maintenance-mode-settings.php:157
229
+ msgid "second"
230
+ msgstr "секунда"
231
+
232
+ # @ wp-maintenance-mode
233
+ #: inc/wp-maintenance-mode-settings.php:158
234
+ msgid "minute"
235
+ msgstr "хвилина"
236
+
237
+ # @ wp-maintenance-mode
238
+ #: inc/wp-maintenance-mode-settings.php:159
239
+ msgid "hour"
240
+ msgstr "година"
241
+
242
+ # @ wp-maintenance-mode
243
+ #: inc/wp-maintenance-mode-settings.php:160
244
+ msgid "day"
245
+ msgstr "день"
246
+
247
+ # @ wp-maintenance-mode
248
+ #: inc/wp-maintenance-mode-settings.php:161
249
+ msgid "week"
250
+ msgstr "тиждень"
251
+
252
+ # @ wp-maintenance-mode
253
+ #: inc/wp-maintenance-mode-settings.php:162
254
+ msgid "month"
255
+ msgstr "місяць"
256
+
257
+ # @ wp-maintenance-mode
258
+ #: inc/wp-maintenance-mode-settings.php:163
259
+ msgid "year"
260
+ msgstr "рік"
261
+
262
+ # @ wp-maintenance-mode
263
+ #: inc/wp-maintenance-mode-settings.php:169
264
+ msgid "Link:"
265
+ msgstr "Посилання:"
266
+
267
+ # @ wp-maintenance-mode
268
+ #: inc/wp-maintenance-mode-settings.php:177
269
+ msgid ""
270
+ "Please leave a link to the plugin- and design-author on your maintenance "
271
+ "mode site."
272
+ msgstr ""
273
+ "Будь ласка, залишіть посилання на дизайнера та автора плаґіну на вашому "
274
+ "сайті, що перебуває в режимі обслуговування."
275
+
276
+ # @ wp-maintenance-mode
277
+ #: inc/wp-maintenance-mode-settings.php:182
278
+ msgid "Admin Link:"
279
+ msgstr "Посилання на адмінку:"
280
+
281
+ # @ wp-maintenance-mode
282
+ #: inc/wp-maintenance-mode-settings.php:190
283
+ msgid "Do you will a link to the admin area of your install?"
284
+ msgstr "Ви хочете відображати посилання на адмінку вашого сайту?"
285
+
286
+ # @ wp-maintenance-mode
287
+ #: inc/wp-maintenance-mode-settings.php:200
288
+ msgid "Simple Text"
289
+ msgstr "Простий текст"
290
+
291
+ # @ wp-maintenance-mode
292
+ #: inc/wp-maintenance-mode-settings.php:201
293
+ msgid "The Truck"
294
+ msgstr "Вантажівка"
295
+
296
+ # @ wp-maintenance-mode
297
+ #: inc/wp-maintenance-mode-settings.php:202
298
+ msgid "The Sun"
299
+ msgstr "Сонце"
300
+
301
+ # @ wp-maintenance-mode
302
+ #: inc/wp-maintenance-mode-settings.php:203
303
+ msgid "The FF Error"
304
+ msgstr "Помилка ВогнеЛиса"
305
+
306
+ # @ wp-maintenance-mode
307
+ #: inc/wp-maintenance-mode-settings.php:204
308
+ msgid "Monster"
309
+ msgstr "Монстр"
310
+
311
+ # @ wp-maintenance-mode
312
+ #: inc/wp-maintenance-mode-settings.php:205
313
+ msgid "Chastely"
314
+ msgstr "Поміркованість"
315
+
316
+ # @ wp-maintenance-mode
317
+ #: inc/wp-maintenance-mode-settings.php:206
318
+ msgid "Only Typo"
319
+ msgstr "Тільки опечатки"
320
+
321
+ # @ wp-maintenance-mode
322
+ #: inc/wp-maintenance-mode-settings.php:207
323
+ msgid "Paint"
324
+ msgstr "Фарба"
325
+
326
+ # @ wp-maintenance-mode
327
+ #: inc/wp-maintenance-mode-settings.php:208
328
+ msgid "Animate (Flash)"
329
+ msgstr "Анімація (Flash)"
330
+
331
+ # @ wp-maintenance-mode
332
+ #: inc/wp-maintenance-mode-settings.php:209
333
+ msgid "Damask"
334
+ msgstr "Дамаск"
335
+
336
+ # @ wp-maintenance-mode
337
+ #: inc/wp-maintenance-mode-settings.php:210
338
+ msgid "Lego"
339
+ msgstr "Леґо"
340
+
341
+ # @ wp-maintenance-mode
342
+ #: inc/wp-maintenance-mode-settings.php:211
343
+ msgid "Chemistry"
344
+ msgstr "Хімія"
345
+
346
+ # @ wp-maintenance-mode
347
+ #: inc/wp-maintenance-mode-settings.php:220
348
+ msgid "URL to the css-file (incl. http://)"
349
+ msgstr "Шлях до css-файлу (включаючи http://)"
350
+
351
+ # @ wp-maintenance-mode
352
+ #: inc/wp-maintenance-mode-settings.php:222
353
+ msgid ""
354
+ "<strong>Caution:</strong> Please don&acute;t copy the stylesheet in your "
355
+ "plugin folder, it will be deleted on the next automatical update of the "
356
+ "plugin!"
357
+ msgstr ""
358
+ "<strong>Увага:</strong> Будь ласка, не копіюйте ваш CSS-файл у теку плаґіну, "
359
+ "оскільки він буде видалений при наступному автоматичному оновленні плаґіну!"
360
+
361
+ # @ wp-maintenance-mode
362
+ #: inc/wp-maintenance-mode-settings.php:227
363
+ #: inc/wp-maintenance-mode-settings.php:250
364
+ msgid "Preview"
365
+ msgstr "Попередній перегляд"
366
+
367
+ # @ wp-maintenance-mode
368
+ #: inc/wp-maintenance-mode-settings.php:257
369
+ msgid "noindex, nofollow:"
370
+ msgstr ""
371
+
372
+ # @ wp-maintenance-mode
373
+ #: inc/wp-maintenance-mode-settings.php:265
374
+ msgid ""
375
+ "The robots meta tag lets you utilize a granular, page-specific approach to "
376
+ "controlling how an individual page should be indexed and served to users in "
377
+ "search results. Set TRUE for noindex, nofollow; set FALSE for index, follow."
378
+ msgstr ""
379
+ "Мета-теґи для пошукових роботів дають можливість використовувати тонко "
380
+ "налаштований, специфічний для кожної сторінки підхід то управління тим, як "
381
+ "конкретна сторінка індексується та надається користувачам у результатах "
382
+ "пошукових запитів. Встановіть Так для noindex, nofollow; встановіть Ні для "
383
+ "index, follow."
384
+
385
+ # @ wp-maintenance-mode
386
+ #: inc/wp-maintenance-mode-settings.php:270
387
+ msgid "Title:"
388
+ msgstr "Назва:"
389
+
390
+ # @ wp-maintenance-mode
391
+ #: inc/wp-maintenance-mode-settings.php:273
392
+ #: inc/wp-maintenance-mode-settings.php:281
393
+ #: inc/wp-maintenance-mode-settings.php:289
394
+ msgid "Leave empty for default."
395
+ msgstr "Лишіть порожнім, щоб використати значення за замовчуванням."
396
+
397
+ # @ wp-maintenance-mode
398
+ #: inc/wp-maintenance-mode-settings.php:278
399
+ msgid "Header:"
400
+ msgstr "Заголовок:"
401
+
402
+ # @ wp-maintenance-mode
403
+ #: inc/wp-maintenance-mode-settings.php:286
404
+ msgid "Heading:"
405
+ msgstr "Підзаголовок:"
406
+
407
+ # @ wp-maintenance-mode
408
+ #: inc/wp-maintenance-mode-settings.php:294
409
+ msgid "Text:"
410
+ msgstr "Текст:"
411
+
412
+ # @ wp-maintenance-mode
413
+ #: inc/wp-maintenance-mode-settings.php:307
414
+ msgid "Exclude:"
415
+ msgstr "Винятки:"
416
+
417
+ # @ wp-maintenance-mode
418
+ #: inc/wp-maintenance-mode-settings.php:323
419
+ msgid ""
420
+ "Exclude feed, pages, posts, archives or IPs from the maintenance mode. Add "
421
+ "the Slug of page or post as a comma-separated list.<br />Example:"
422
+ msgstr ""
423
+ "Виключіть RSS-канал, сторінки, публікації, архіви або IP-адреси з режиму "
424
+ "обслуговування. Додайте скорочення сторінок або публікацій, розділені комами."
425
+
426
+ # @ wp-maintenance-mode
427
+ #: inc/wp-maintenance-mode-settings.php:342
428
+ msgid "Backend Role:"
429
+ msgstr "Роль для адмінки:"
430
+
431
+ # @ wp-maintenance-mode
432
+ #: inc/wp-maintenance-mode-settings.php:367
433
+ msgid "Allowed userrole to access the backend of this blog."
434
+ msgstr "Роль, якій надано доступ до адмінки блоґу."
435
+
436
+ # @ wp-maintenance-mode
437
+ #: inc/wp-maintenance-mode-settings.php:368
438
+ #: inc/wp-maintenance-mode-settings.php:399
439
+ msgid "Super Admin has always access."
440
+ msgstr "Суперадміністоратор завжди має доступ."
441
+
442
+ # @ wp-maintenance-mode
443
+ #: inc/wp-maintenance-mode-settings.php:373
444
+ msgid "Frontend Role:"
445
+ msgstr "Роль для фронтенду:"
446
+
447
+ # @ wp-maintenance-mode
448
+ #: inc/wp-maintenance-mode-settings.php:398
449
+ msgid "Allowed userrole to see the frontend of this blog."
450
+ msgstr "Роль, якій дозволено переглядати фронтенд блоґу."
451
+
452
+ # @ wp-maintenance-mode
453
+ #: inc/wp-maintenance-mode-settings.php:404
454
+ msgid "Redirection:"
455
+ msgstr "Перенаправлення:"
456
+
457
+ # @ wp-maintenance-mode
458
+ #: inc/wp-maintenance-mode-settings.php:409
459
+ msgid ""
460
+ "If you want that after the login the destination address is not standard to "
461
+ "the dashboard, then defining a URL. (incl. http://)"
462
+ msgstr ""
463
+ "Якщо Ви хочете, щоб після входу здійснювалася переадресація на сторінку, "
464
+ "відмінну від головної сторінки майстерні, вкажіть адресу сторінки. (влючаючи "
465
+ "http://)"
466
+
467
+ # @ wp-maintenance-mode
468
+ #: inc/wp-maintenance-mode-settings.php:432
469
+ msgid "Save"
470
+ msgstr "Зберегти"
471
+
472
+ # @ wp-maintenance-mode
473
+ #: inc/wp-maintenance-mode-settings.php:300
474
+ #, php-format
475
+ msgid ""
476
+ "Use the first <em>%1$s</em> for the time value or countdown and second <em>"
477
+ "%2$s</em> for the unit of the time or countdown-value; HTML and Shortcodes "
478
+ "are possible."
479
+ msgstr ""
480
+ "Використовуйте <em>%1$s</em> замість значення часу або зворотнього відліку і "
481
+ "<em>%2$s</em> замість одиниць виміру часу або зворотнього відліку; можна "
482
+ "також використовувати HTML і Shortcodes."
483
+
484
+ # @ wp-maintenance-mode
485
+ #: inc/wp-maintenance-mode-settings.php:301
486
+ msgid ""
487
+ "Use <code>[loginform]</code> for add the default login form in the "
488
+ "maintenance page."
489
+ msgstr ""
490
+ "Використовуйте код <code>[loginform]</code>, щоб вставити стандартну форму "
491
+ "входу на сторінці режиму обслуговування."
492
+
493
+ # @ wp-maintenance-mode
494
+ #: inc/wp-maintenance-mode-settings.php:415
495
+ msgid "Notice:"
496
+ msgstr "Сповіщення:"
497
+
498
+ # @ wp-maintenance-mode
499
+ #: inc/wp-maintenance-mode-settings.php:422
500
+ msgid ""
501
+ "Do you will see all notices, inside backend, the Admin Bar and the login "
502
+ "screen?"
503
+ msgstr ""
504
+ "Чи хочете Ви бачити всі сповіщення в адмінці, рядку адміністратора вгорі "
505
+ "сторінки у фронтенді, та на сторінці входу?"
506
+
507
+ # @ default
508
+ #: index.php:25
509
+ msgid "Cheatin&#8217; uh?"
510
+ msgstr ""
511
+
512
+ # @ wp-maintenance-mode
513
+ #. translators: plugin header field 'Name'
514
+ #: wp-maintenance-mode.php:0
515
+ msgid "WP Maintenance Mode"
516
+ msgstr "Режим обслуговування Wordpress"
517
+
518
+ # @ wp-maintenance-mode
519
+ #. translators: plugin header field 'PluginURI'
520
+ #: wp-maintenance-mode.php:0
521
+ msgid "http://wordpress.org/extend/plugins/wp-maintenance-mode/"
522
+ msgstr "http://wordpress.org/extend/plugins/wp-maintenance-mode/"
523
+
524
+ # @ wp-maintenance-mode
525
+ #. translators: plugin header field 'Description'
526
+ #: wp-maintenance-mode.php:0
527
+ msgid ""
528
+ "The plugin adds a splash page to your blog that lets visitors know your blog "
529
+ "is down for maintenance. Logged in users get full access to the blog "
530
+ "including the front-end, depends of the settings."
531
+ msgstr ""
532
+ "Плаґін додає до Вашого блоґу спеціальну сторінку, яка дає відвідувачам "
533
+ "знати, що блоґ тимчасово закритий і проводяться роботи з технічного "
534
+ "обслуговування. Користувачі, що увійшли, отримують повний доступ до блоґу, "
535
+ "включно із фронтендом, в залежності від налаштувань."
536
+
537
+ # @ wp-maintenance-mode
538
+ #. translators: plugin header field 'Author'
539
+ #: wp-maintenance-mode.php:0
540
+ msgid "Frank B&uuml;ltge"
541
+ msgstr "Frank B&uuml;ltge"
542
+
543
+ # @ wp-maintenance-mode
544
+ #. translators: plugin header field 'AuthorURI'
545
+ #: wp-maintenance-mode.php:0
546
+ msgid "http://bueltge.de/"
547
+ msgstr "http://bueltge.de/"
548
+
549
+ # @ wp-maintenance-mode
550
+ #: inc/wp-maintenance-mode-settings.php:195
551
+ msgid "CSS Style:"
552
+ msgstr "Стиль CSS:"
553
+
554
+ # @ wp-maintenance-mode
555
+ #: inc/wp-maintenance-mode-settings.php:199
556
+ msgid "Own CSS Stylesheet"
557
+ msgstr "Власна таблиця стилів CSS"
558
+
559
+ # @ wp-maintenance-mode
560
+ #: inc/wp-maintenance-mode-settings.php:217
561
+ msgid "Own CSS Style URL:"
562
+ msgstr "Шлях до власної таблиців стилів CSS:"
563
+
564
+ # @ wp-maintenance-mode
565
+ #: inc/wp-maintenance-mode-settings.php:329
566
+ msgid "Bypass for Search Bots:"
567
+ msgstr "Обхід для пошукових роботів:"
568
+
569
+ # @ wp-maintenance-mode
570
+ #: inc/wp-maintenance-mode-settings.php:336
571
+ msgid "Allow Search Bots to bypass maintenance mode?"
572
+ msgstr "Дозволити пошуковим роботам обходити режим обслуговування?"
573
+
574
+ # @ wp-maintenance-mode
575
+ #. translators: plugin header field 'Version'
576
+ #: wp-maintenance-mode.php:0
577
+ msgid "1.8.7"
578
+ msgstr "1.8.7"
languages/wp-maintenance-mode-xx_XX.pot 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
 
readme.md ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # WP Maintenance Mode
2
+
3
+ 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. Works also with WordPress Multisite installs.
4
+
5
+ ## Description
6
+ Adds a maintenance-page to your blog that lets visitors know your blog is down for maintenancetime. User with rights for theme-options get full access to the blog including the frontend.
7
+ Activate the plugin and your blog is in maintenance-mode, works and see the frontend, only registered users with enough rights. You can use a date with a countdown for informations the visitors or set a value and unit for infomrations.
8
+ Also you can add urls for exlude of maintenance mode.
9
+
10
+ Use the shortcode `[loginform]` for easy use a login form on the maintenance page.
11
+
12
+ ### Adding Custom CSS
13
+ In plugin settings, choose the "Own CSS Style" in the CSS Style dropdown. Then enter the full URL to your stylesheet in the textbox underneath.
14
+
15
+ ### Custom HTML
16
+ You can add your own html by dropping a `wp-maintenance-mode.php` file in the wp-content folder. It will automatically be used instead of the default html.
17
+ The default html Markup and my source for countdown and more find you in the `site.php` inside the plugin folder of this plugin.
18
+
19
+ ### Custom Content
20
+ You can also add content via these hook:
21
+
22
+ * `wm_head` - hook inside the head of the maintenance mode site
23
+ * `wm_content` - hook over the content, after the div with id content
24
+ * `wm_footer` - hook inside the footer
25
+
26
+
27
+ **Example:**
28
+
29
+ function add_my_link() {
30
+ echo '<a href="http://mylink.com/">My Link</a>
31
+ }
32
+ add_action( 'wm_footer', 'add_my_link' );
33
+
34
+ More hooks for meta data inside the head. The `<meta>` tag provides metadata about the HTML document. Metadata will not be displayed on the page, but will be machine parsable. You can change the data for 3 different meta data values:
35
+
36
+ * `wm_meta_author` - Define the author of a page
37
+ * `wm_meta_description` - Define a description of your web page
38
+ * `wm_meta_keywords` - Define keywords for search engines
39
+
40
+ More hooks for other data, if the settings possibilities is not enough.
41
+
42
+ * `wm_title` - Filter the title on splash page
43
+ * `wm_header` - Filter for header string on splash page
44
+ * `wm_heading` - Filter for the heading string
45
+
46
+ ## Other Notes
47
+ ### License
48
+ Good news, this plugin is free for everyone! Since it's released under the GPL, you can use it free of charge on your personal or commercial blog. But if you enjoy this plugin, you can thank me and leave a [small donation](http://bueltge.de/wunschliste/ "Wishliste and Donate") for the time I've spent writing and supporting this plugin. And I really don't want to know how many hours of my life this plugin has already eaten ;)
49
+
50
+ ### Translations
51
+ The plugin comes with various translations, please refer to the [WordPress Codex](http://codex.wordpress.org/Installing_WordPress_in_Your_Language "Installing WordPress in Your Language") for more information about activating the translation. If you want to help to translate the plugin to your language, please have a look at the .pot file which contains all defintions and may be used with a [gettext](http://www.gnu.org/software/gettext/) editor like [Poedit](http://www.poedit.net/) (Linux, Mac OS X, Windows).
52
+
53
+ ### Contact & Feedback
54
+ The plugin is designed and developed by me ([Frank Bültge](http://bueltge.de))
55
+
56
+ Please let me know if you like the plugin or you hate it or whatever ... Please fork it, add an issue for ideas and bugs.
57
+
58
+ ### Disclaimer
59
+ I'm German and my English might be gruesome here and there. So please be patient with me and let me know of typos or grammatical farts. Thanks
readme.txt CHANGED
@@ -6,9 +6,9 @@ Author: Frank B&uuml;ltge
6
  Author URI: http://bueltge.de/
7
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4578111
8
  Tags: maintenance, mode, admin, administration, unavailable, coming soon, multisite
9
- Requires at least: 2.6
10
- Tested up to: 3.6-alpha
11
- Stable tag: 1.8.6
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
 
@@ -19,42 +19,19 @@ Also you can add urls for exlude of maintenance mode.
19
 
20
  Use the shortcode `[loginform]` for easy use a login form on the maintenance page.
21
 
22
- You can add your own html and stylesheet and add the url of this style to the options of the plugin. Write your style to this markup and upload to the webspace; after add the url include http:// to the settings of this plugin and change th theme to `"Own Theme"`:
23
-
24
- <!DOCTYPE html>
25
- <html lang="en-US" id="wp_maintenance_mode" >
26
-
27
- <head>
28
- <title>Blogname - Maintenance Mode</title>
29
- </head>
30
-
31
- <body>
32
-
33
- <div id="header">
34
- <p>WP Dev</p>
35
- </div>
36
-
37
- <div id="content">
38
-
39
- <h1>Maintenance Mode</h1>
40
- <p>Sorry for the inconvenience.<br />Our website is currently undergoing scheduled maintenance.<br /><strong>Please try back in 231 weeks.</strong><br />Thank you for your understanding.</p>
41
- <div class="admin"><a href="http://example.com/wp-admin/">Admin-Login</a></div>
42
- </div>
43
-
44
- <div id="footer">
45
- <p><a href="http://bueltge.de/">Plugin by: <img src="http://bueltge.de/favicon.ico" alt="bueltge.de" width="16" height="16" /></a></p>
46
- </div>
47
-
48
- </body>
49
- </html>
50
-
51
-
52
- Also you can add content via hook:
53
-
54
- `wm_head` - hook inside the head of the maintenance mode site
55
- `wm_content` - hook over the content, after the div with id content
56
- `wm_footer` - hook inside the footer
57
 
 
 
 
 
 
 
 
 
 
 
58
 
59
  Example:
60
 
@@ -63,9 +40,20 @@ Example:
63
  }
64
  add_action( 'wm_footer', 'add_my_link' );
65
 
 
 
 
 
 
 
 
 
 
 
 
66
 
67
  = Requirements =
68
- 1. WordPress version 2.6 and later, works also on Multisite
69
  1. PHP 5
70
 
71
  = Bugs, technical hints or contribute =
@@ -223,7 +211,7 @@ Please visit [Automatisches Backup der WordPress-Datenbank](http://www.beedy.de/
223
  * Thanks to [Stefan Wilhelm](http://www.beedy.de/) for Idea, Tests and a tutorial for work with MySQLDumper
224
 
225
  * Thanks to [Omer Faruk ](http://yakalasam.com) and [H&uuml;seyin &Uuml;lk&uuml;](http://www.salsabar.org/ "H&uuml;seyin &Uuml;lk&uuml;") for turkey language file
226
- * Thanks to [Gilles WALET](http://www.nevermindfr.com/ "Gilles WALET") for frensh language file
227
  * Thanks to [J&uuml;rgen Toth](http://www.relijoc.ro/ "J&uuml;rgen Toth") for romanian language file
228
  * Thanks to [Gianni Diurno](http://gidibao.net/ "Gianni Diurno") for italian language file and an [tutorial](http://gidibao.net/index.php/2010/09/16/wp-maintenance-mode-in-italiano/ "WP Maintenance Mode in italiano") for italien users
229
  * Thanks to [Romeo Shuka](http://www.romeolab.com/wp-wartungsmodus-shqip "About this Plugin in albanian language") for albanian language file
@@ -241,9 +229,24 @@ Please visit [Automatisches Backup der WordPress-Datenbank](http://www.beedy.de/
241
  * Lithuanian translation files by [Vincent G](http://www.host1plus.com)
242
  * Swedish translation files by [Kenneth Andersson](http://www.telia.se/)
243
  * Japanese translation files by [Groove Brain]
244
-
 
245
 
246
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
  = 1.8.6 (02/22/2013) =
248
  * Remove log inside console for JS
249
  * Add support for time inside the countdown
6
  Author URI: http://bueltge.de/
7
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4578111
8
  Tags: maintenance, mode, admin, administration, unavailable, coming soon, multisite
9
+ Requires at least: 3.0
10
+ Tested up to: 3.6-beta3
11
+ Stable tag: 1.8.7
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
 
19
 
20
  Use the shortcode `[loginform]` for easy use a login form on the maintenance page.
21
 
22
+ = Adding Custom CSS =
23
+ In plugin settings, choose the "Own CSS Style" in the CSS Style dropdown. Then enter the full URL to your stylesheet in the textbox underneath.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
 
25
+ = Custom HTML =
26
+ You can add your own html by dropping a wp-maintenance-mode.php file in the wp-content folder. It will automatically be used instead of the default html.
27
+ The default html Markup and my source for countdown and more find you in the `site.php` inside the plugin folder of this plugin.
28
+
29
+ = Custom Content =
30
+ You can also add content via these hook:
31
+
32
+ * `wm_head` - hook inside the head of the maintenance mode site
33
+ * `wm_content` - hook over the content, after the div with id content
34
+ * `wm_footer` - hook inside the footer
35
 
36
  Example:
37
 
40
  }
41
  add_action( 'wm_footer', 'add_my_link' );
42
 
43
+ More hooks for meta data inside the head. The `<meta>` tag provides metadata about the HTML document. Metadata will not be displayed on the page, but will be machine parsable. You can change the data for 3 different meta data values:
44
+
45
+ * `wm_meta_author` - Define the author of a page
46
+ * `wm_meta_description` - Define a description of your web page
47
+ * `wm_meta_keywords` - Define keywords for search engines
48
+
49
+ More hooks for other data, if the settings possibilities is not enough.
50
+
51
+ * `wm_title` - Filter the title on splash page
52
+ * `wm_header` - Filter for header string on splash page
53
+ * `wm_heading` - Filter for the heading string
54
 
55
  = Requirements =
56
+ 1. WordPress version 3.0 and later, works also on Multisite
57
  1. PHP 5
58
 
59
  = Bugs, technical hints or contribute =
211
  * Thanks to [Stefan Wilhelm](http://www.beedy.de/) for Idea, Tests and a tutorial for work with MySQLDumper
212
 
213
  * Thanks to [Omer Faruk ](http://yakalasam.com) and [H&uuml;seyin &Uuml;lk&uuml;](http://www.salsabar.org/ "H&uuml;seyin &Uuml;lk&uuml;") for turkey language file
214
+ * Thanks to LIJE Creative, [Agence web Strasbourg](http://www.lije-creative.com/ "Agence web LIJE Creative") and [Gilles WALET](http://www.nevermindfr.com/ "Gilles WALET") for frensh language file
215
  * Thanks to [J&uuml;rgen Toth](http://www.relijoc.ro/ "J&uuml;rgen Toth") for romanian language file
216
  * Thanks to [Gianni Diurno](http://gidibao.net/ "Gianni Diurno") for italian language file and an [tutorial](http://gidibao.net/index.php/2010/09/16/wp-maintenance-mode-in-italiano/ "WP Maintenance Mode in italiano") for italien users
217
  * Thanks to [Romeo Shuka](http://www.romeolab.com/wp-wartungsmodus-shqip "About this Plugin in albanian language") for albanian language file
229
  * Lithuanian translation files by [Vincent G](http://www.host1plus.com)
230
  * Swedish translation files by [Kenneth Andersson](http://www.telia.se/)
231
  * Japanese translation files by [Groove Brain]
232
+ * Thanks to [Maksym Kobieliev](mailto:maximaximums@gmail.com) for ukrainian translation
233
+ * Thanks to Michal Nusko for czech translation
234
 
235
  == Changelog ==
236
+ = 1.8.8 (*/*/2013) =
237
+ * Fix path to localized flash content
238
+ * Fix preview function
239
+ * Add ukrainian translation
240
+ * Add czech translation
241
+
242
+ = 1.8.7 (04/07/2013) =
243
+ * Add RTL support for splash page
244
+ * Add Filter Hook `wp_maintenance_mode_status_code` Status Code; default is 503
245
+ * 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
246
+ The plugin checks in `WP_CONTENT_DIR . '/wp-maintenance-mode.php'`
247
+ * Small minor changes
248
+ * Add filter for more date on splash page
249
+
250
  = 1.8.6 (02/22/2013) =
251
  * Remove log inside console for JS
252
  * Add support for time inside the countdown
site.php CHANGED
@@ -1,10 +1,11 @@
1
  <!DOCTYPE html>
2
- <html <?php language_attributes(); ?> id="wp_maintenance_mode" >
3
  <head>
4
  <?php
5
  if ( ! isset($value) ) {
6
- $value = WPMaintenanceMode::get_options();
7
- $unitvalues = $WPMaintenanceMode->case_unit($value['unit']);
 
8
  }
9
 
10
  $author = 'WP Maintenance Mode: Frank Bueltge, http://bueltge.de';
@@ -22,11 +23,15 @@
22
  $content = 'index, follow';
23
  }
24
 
 
 
 
 
25
  ?>
26
 
27
- <title><?php if ( isset($value['title']) && ($value['title'] != '') ) echo stripslashes_deep( $value['title'] ); else { bloginfo('name'); echo ' - '; _e( 'Maintenance Mode', FB_WM_TEXTDOMAIN ); } ?></title>
28
 
29
- <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
30
  <meta name="author" content="<?php echo $author; ?>" />
31
  <meta name="description" content="<?php echo $desc; ?>" />
32
  <meta name="keywords" content="<?php echo $keywords; ?>" />
@@ -50,19 +55,32 @@
50
  get_currentuserinfo();
51
  $locale = get_locale();
52
 
53
- wm_head(); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
54
 
55
  </head>
56
 
57
  <body>
58
 
59
  <div id="header">
60
- <p><?php if ( isset($value['header']) && ($value['header'] != '') ) echo stripslashes_deep( $value['header'] ); else { bloginfo('name'); echo ' - '; bloginfo('description'); } ?></p>
61
  </div>
62
 
63
  <div id="content">
64
 
65
- <h1><?php if ( isset($value['heading']) && ($value['heading'] != '') ) echo stripslashes_deep( $value['heading'] ); else _e( 'Maintenance Mode', FB_WM_TEXTDOMAIN ); ?></h1>
66
 
67
  <?php wm_content();
68
  if ( isset( $value['admin_link'] ) && 1 === $value['admin_link'] ) {
@@ -74,7 +92,8 @@
74
  $adminloginmsg = '';
75
  $adminloginstr = __( 'Admin-Logout', FB_WM_TEXTDOMAIN );
76
  } else {
77
- $adminlogin = site_url('wp-login.php', 'login');
 
78
  $adminloginmsg = '';
79
  $adminloginstr = __( 'Admin-Login', FB_WM_TEXTDOMAIN );
80
  }
@@ -92,7 +111,7 @@
92
  $locale = substr($locale, 0, 2);
93
  ?>
94
 
95
- <script type="text/javascript" src="<?php bloginfo('url') ?>/wp-includes/js/jquery/jquery.js"></script>
96
  <script type="text/javascript" src="<?php echo WPMaintenanceMode::get_plugins_url( 'js/jquery.countdown.pack.js', __FILE__ ); ?>"></script>
97
  <?php if ( @file_exists( FB_WM_BASE . '/js/jquery.countdown-' . $locale . '.js') ) { ?>
98
  <script type="text/javascript" src="<?php echo WPMaintenanceMode::get_plugins_url( 'js/jquery.countdown-' . $locale . '.js', __FILE__ ); ?>"></script>
1
  <!DOCTYPE html>
2
+ <html <?php language_attributes(); ?> id="wp_maintenance_mode"<?php if ( is_rtl() ) echo ' dir="rtl"'; ?>>
3
  <head>
4
  <?php
5
  if ( ! isset($value) ) {
6
+ //$WPMaintenanceMode = new WPMaintenanceMode();
7
+ $value = WPMaintenanceMode::get_options();
8
+ $unitvalues = WPMaintenanceMode::case_unit( $value['unit'] );
9
  }
10
 
11
  $author = 'WP Maintenance Mode: Frank Bueltge, http://bueltge.de';
23
  $content = 'index, follow';
24
  }
25
 
26
+ if ( isset($value['title']) && ($value['title'] != '') )
27
+ $title = stripslashes_deep( $value['title'] );
28
+ else
29
+ $title = get_bloginfo( 'name' ) . ' - ' . __( 'Maintenance Mode', FB_WM_TEXTDOMAIN );
30
  ?>
31
 
32
+ <title><?php echo apply_filters( 'wm_title', $title ); ?></title>
33
 
34
+ <meta http-equiv="Content-Type" content="<?php bloginfo( 'html_type' ); ?>; charset=<?php bloginfo( 'charset' ); ?>" />
35
  <meta name="author" content="<?php echo $author; ?>" />
36
  <meta name="description" content="<?php echo $desc; ?>" />
37
  <meta name="keywords" content="<?php echo $keywords; ?>" />
55
  get_currentuserinfo();
56
  $locale = get_locale();
57
 
58
+ wm_head();
59
+
60
+ // header string
61
+ if ( isset( $value['header'] ) && ( $value['header'] != '' ) )
62
+ $header = stripslashes_deep( $value['header'] );
63
+ else
64
+ $header = get_bloginfo( 'name' ) . ' - ' . get_bloginfo( 'description' );
65
+
66
+ // heading string
67
+ if ( isset( $value['heading'] ) && ( $value['heading'] != '' ) )
68
+ $heading = stripslashes_deep( $value['heading'] );
69
+ else
70
+ $heading = __( 'Maintenance Mode', FB_WM_TEXTDOMAIN );
71
+ ?>
72
 
73
  </head>
74
 
75
  <body>
76
 
77
  <div id="header">
78
+ <p><?php echo apply_filters( 'wm_header', $header ); ?></p>
79
  </div>
80
 
81
  <div id="content">
82
 
83
+ <h1><?php echo apply_filters( 'wm_heading', $heading ); ?></h1>
84
 
85
  <?php wm_content();
86
  if ( isset( $value['admin_link'] ) && 1 === $value['admin_link'] ) {
92
  $adminloginmsg = '';
93
  $adminloginstr = __( 'Admin-Logout', FB_WM_TEXTDOMAIN );
94
  } else {
95
+ // Returns the Log In URL
96
+ $adminlogin = wp_login_url();
97
  $adminloginmsg = '';
98
  $adminloginstr = __( 'Admin-Login', FB_WM_TEXTDOMAIN );
99
  }
111
  $locale = substr($locale, 0, 2);
112
  ?>
113
 
114
+ <script type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/jquery/jquery.js"></script>
115
  <script type="text/javascript" src="<?php echo WPMaintenanceMode::get_plugins_url( 'js/jquery.countdown.pack.js', __FILE__ ); ?>"></script>
116
  <?php if ( @file_exists( FB_WM_BASE . '/js/jquery.countdown-' . $locale . '.js') ) { ?>
117
  <script type="text/javascript" src="<?php echo WPMaintenanceMode::get_plugins_url( 'js/jquery.countdown-' . $locale . '.js', __FILE__ ); ?>"></script>
styles/be.css CHANGED
@@ -35,7 +35,7 @@
35
  h3 {
36
  color: #8f1218; }
37
 
38
- #header { margin-bottom:90px; padding-left: 0; }
39
 
40
  div.admin a {
41
 
35
  h3 {
36
  color: #8f1218; }
37
 
38
+ #header { margin-bottom:50px; padding-left:0; }
39
 
40
  div.admin a {
41
 
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.6
12
- * Last change: 02/22/2013
13
  * License: GPLv3
14
  *
15
  *
@@ -55,19 +55,68 @@ if ( ! class_exists('WPMaintenanceMode') ) {
55
  define( 'FB_WM_BASE', rtrim(dirname (__FILE__), '/') );
56
  define( 'FB_WM_TEXTDOMAIN', 'wp-maintenance-mode' );
57
 
 
 
58
  class WPMaintenanceMode {
59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  function WPMaintenanceMode() {
61
 
62
- $this->data = array();
63
- $this->datamsqld = array();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
 
65
  $this->load_classes();
66
 
67
  register_activation_hook( __FILE__, array( $this, 'add_config' ) );
68
  add_action( 'admin_print_scripts-plugins.php', array( $this, 'add_scripts' ) );
69
  //add_action( 'load-plugins.php', array(&$this, 'add_scripts') );
70
- add_action( 'init', array( $this, 'on_init'), 1 );
71
  //add_action( 'admin_init', array( $this, 'admin_init') );
72
  add_action( 'admin_menu', array( $this, 'redirect' ) );
73
 
@@ -78,6 +127,21 @@ if ( ! class_exists('WPMaintenanceMode') ) {
78
  }
79
 
80
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
  /**
82
  * Returns array of features, also
83
  * Scans the plugins subfolder "/classes"
@@ -99,7 +163,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
99
  * @param String
100
  * @return String
101
  */
102
- function esc_attr( $text ) {
103
 
104
  if ( function_exists('esc_attr') )
105
  $text = esc_attr($text);
@@ -111,7 +175,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
111
 
112
 
113
  // function for WP < 2.8
114
- function get_plugins_url( $path = '', $plugin = '' ) {
115
 
116
  if ( function_exists('plugins_url') )
117
  return plugins_url($path, $plugin);
@@ -120,10 +184,12 @@ if ( ! class_exists('WPMaintenanceMode') ) {
120
  $scheme = ( is_ssl() ? 'https' : 'http' );
121
  else
122
  $scheme = 'http';
 
123
  if ( function_exists('plugins_url') )
124
  $url = plugins_url();
125
  else
126
  $url = WP_PLUGIN_URL;
 
127
  if ( 0 === strpos($url, 'http') ) {
128
  if ( function_exists('is_ssl') && is_ssl() )
129
  $url = str_replace( 'http://', "{$scheme}://", $url );
@@ -142,23 +208,24 @@ if ( ! class_exists('WPMaintenanceMode') ) {
142
  }
143
 
144
 
145
- function on_init() {
146
 
147
  load_plugin_textdomain( FB_WM_TEXTDOMAIN, FALSE, FB_WM_BASEDIR . '/languages' );
148
 
149
  if ( is_multisite() && ! function_exists( 'is_plugin_active_for_network' ) )
150
  require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
151
 
152
- $value = self::get_options();
153
  $valuemsqld = self::get_msqld_option();
154
 
155
- if ( 1 === intval( $valuemsqld ) ) {
156
  $this->on_active();
157
  if ( ! isset( $value['notice'] ) || 0 !== $value['notice'] )
158
  add_action( 'admin_bar_menu', array( $this, 'add_admin_bar_alert' ), 9999 );
159
  }
160
  }
161
 
 
162
  /**
163
  * Return the options, check for install and active on WP multisite
164
  *
@@ -178,17 +245,19 @@ if ( ! class_exists('WPMaintenanceMode') ) {
178
  /**
179
  * Return the msql-dumper-options, check for install and active on WP multisite
180
  *
181
- * @return Array | Boolean $valuemsqld
182
  */
183
  public static function get_msqld_option() {
184
-
 
 
185
  if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) ) {
186
- $valuemsqld = get_site_option( FB_WM_TEXTDOMAIN . '-msqld' );
187
  } else {
188
- $valuemsqld = (int) get_option( FB_WM_TEXTDOMAIN . '-msqld' );
189
  }
190
 
191
- return $valuemsqld;
192
  }
193
 
194
  /**
@@ -257,7 +326,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
257
  }
258
 
259
 
260
- function add_config() {
261
 
262
  $this->data = array(
263
  'active' => 0,
@@ -278,6 +347,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
278
  4 => 'wp-admin',
279
  5 => 'wp-admin/admin-ajax.php'
280
  ),
 
281
  'notice' => 1,
282
  );
283
  // if is active in network of multisite
@@ -295,7 +365,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
295
  }
296
 
297
 
298
- function save_active() {
299
 
300
  $this->data = self::get_options();
301
  $this->datamsqld = self::get_msqld_option();
@@ -315,18 +385,19 @@ if ( ! class_exists('WPMaintenanceMode') ) {
315
  }
316
 
317
 
318
- function save_config() {
319
 
320
  $this->data = self::get_options();
321
 
322
  if ( isset($_POST['wm_config-time']) )
323
  $this->data['time'] = (int) $_POST['wm_config-time'];
324
- if ( isset($_POST['wm_config-unit']) )
325
- $this->data['unit'] = (int) $_POST['wm_config-unit'];
326
  if ( isset($_POST['wm_config-link']) )
327
  $this->data['link'] = (int) $_POST['wm_config-link'];
 
328
  if ( isset($_POST['wm_config-admin_link']) )
329
  $this->data['admin_link'] = (int) $_POST['wm_config-admin_link'];
 
330
  if ( isset($_POST['wm_config-rewrite']) ) {
331
  if ( function_exists('esc_url') ) {
332
  $this->data['rewrite'] = esc_url( $_POST['wm_config-rewrite'] );
@@ -334,10 +405,16 @@ if ( ! class_exists('WPMaintenanceMode') ) {
334
  $this->data['rewrite'] = clean_url( $_POST['wm_config-rewrite'] );
335
  }
336
  }
337
- if ( isset($_POST['wm_config-notice']) )
 
338
  $this->data['notice'] = (int) $_POST['wm_config-notice'];
 
 
 
 
339
  if ( isset($_POST['wm_config-theme']) )
340
  $this->data['theme'] = (int) $_POST['wm_config-theme'];
 
341
  if ( isset($_POST['wm_config-styleurl']) ) {
342
  if ( function_exists('esc_url') ) {
343
  $this->data['styleurl'] = esc_url( $_POST['wm_config-styleurl'] );
@@ -345,24 +422,37 @@ if ( ! class_exists('WPMaintenanceMode') ) {
345
  $this->data['styleurl'] = clean_url( $_POST['wm_config-styleurl'] );
346
  }
347
  }
 
348
  if ( isset($_POST['wm_config-index']) )
349
  $this->data['index'] = (int) $_POST['wm_config-index'];
 
350
  if ( isset($_POST['wm_config-title']) )
351
  $this->data['title'] = stripslashes_deep( $_POST['wm_config-title'] );
352
- if ( isset($_POST['wm_config-header']) )
 
353
  $this->data['header'] = stripslashes_deep( $_POST['wm_config-header'] );
 
354
  if ( isset($_POST['wm_config-heading']) )
355
  $this->data['heading'] = stripslashes_deep( $_POST['wm_config-heading'] );
 
356
  if ( isset($_POST['wm_config-text']) )
357
  $this->data['text'] = stripslashes_deep( $_POST['wm_config-text'] );
 
358
  if ( isset($_POST['wm_config-exclude']) )
359
  $this->data['exclude'] = preg_split("/[\s,]+/", $this->esc_attr( $_POST['wm_config-exclude'] ) );
 
 
 
 
360
  if ( isset($_POST['wm_config-role']) )
361
  $this->data['role'] = preg_split("/[\s,]+/", $this->esc_attr( $_POST['wm_config-role'] ) );
 
362
  if ( isset($_POST['wm_config-role_frontend']) )
363
  $this->data['role_frontend'] = preg_split("/[\s,]+/", $this->esc_attr( $_POST['wm_config-role_frontend'] ) );
 
364
  if ( isset($_POST['wm_config-radio']) )
365
  $this->data['radio'] = (int) $_POST['wm_config-radio'];
 
366
  if ( isset($_POST['wm_config-date']) )
367
  $this->data['date'] = $this->esc_attr( $_POST['wm_config-date'] );
368
 
@@ -375,7 +465,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
375
  }
376
 
377
 
378
- function del_config() {
379
 
380
  if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) ) {
381
  delete_site_option( FB_WM_TEXTDOMAIN );
@@ -387,10 +477,10 @@ if ( ! class_exists('WPMaintenanceMode') ) {
387
  }
388
 
389
 
390
- function check_version() {
391
  global $wp_version;
392
 
393
- if ( version_compare($wp_version, '2.1-dev', '<') ) {
394
  require (ABSPATH . WPINC . '/pluggable-functions.php'); // < WP 2.1
395
  } else {
396
  require (ABSPATH . WPINC . '/pluggable.php'); // >= WP 2.1
@@ -402,7 +492,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
402
  *
403
  * @return void
404
  */
405
- function redirect() {
406
 
407
  $value = self::get_options();
408
 
@@ -425,7 +515,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
425
  }
426
 
427
 
428
- function check_exclude() {
429
 
430
  $value = self::get_options();
431
 
@@ -445,7 +535,54 @@ if ( ! class_exists('WPMaintenanceMode') ) {
445
  }
446
 
447
 
448
- function check_role() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
449
 
450
  $value = self::get_options();
451
 
@@ -496,7 +633,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
496
  }
497
 
498
 
499
- function case_unit($unitvalue) {
500
 
501
  $value['unit'] = $unitvalue;
502
  $unitvalues = array();
@@ -536,7 +673,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
536
  }
537
 
538
 
539
- function check_datetime() {
540
 
541
  $datetime = NULL;
542
  $time = NULL;
@@ -569,7 +706,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
569
  }
570
 
571
 
572
- function on_active() {
573
  global $current_user;
574
 
575
  if ( is_multisite() && ! function_exists( 'is_plugin_active_for_network' ) ) {
@@ -620,11 +757,11 @@ if ( ! class_exists('WPMaintenanceMode') ) {
620
  */
621
  }
622
 
623
- add_action( 'wm_head', array(&$this, 'add_theme') );
624
- add_action( 'wm_content', array(&$this, 'add_flash') );
625
- add_action( 'wm_content', array( &$this, 'add_content' ) );
626
  if ( isset($value['link']) && 1 === $value['link'] )
627
- add_action( 'wm_footer', array(&$this, 'add_link') );
628
 
629
  $locale = get_locale();
630
 
@@ -642,23 +779,40 @@ if ( ! class_exists('WPMaintenanceMode') ) {
642
  else
643
  $backtime = NULL;
644
 
 
 
 
 
 
 
645
  if ( ( ! $this->check_role() )
646
  && ! strstr($_SERVER['PHP_SELF'], 'wp-login.php' )
 
647
  && ! strstr($_SERVER['PHP_SELF'], 'async-upload.php')
 
648
  && ! strstr($_SERVER['PHP_SELF'], '/plugins/')
 
649
  && ! $this->check_exclude()
 
650
  ) {
651
  $rolestatus = 'norights';
 
652
  nocache_headers();
653
  ob_start();
654
- header("Content-type: text/html; charset=$charset");
655
- header("HTTP/1.0 503 Service Unavailable");
656
- header("Retry-After: $backtime");
657
- include('site.php');
 
 
 
 
658
  ob_flush();
659
  exit();
660
  }
661
 
 
 
662
  //$this->check_version();
663
  if ( ! strstr($_SERVER['PHP_SELF'], 'feed/')
664
  && ! strstr($_SERVER['PHP_SELF'], 'wp-admin/')
@@ -669,22 +823,27 @@ if ( ! class_exists('WPMaintenanceMode') ) {
669
  && ! strstr($_SERVER['PHP_SELF'], '/plugins/')
670
  && ! strstr($_SERVER['PHP_SELF'], '/xmlrpc.php')
671
  && ! $this->check_exclude()
 
672
  && ! $this->check_role()
673
  ) {
674
- include('site.php');
 
 
 
 
675
  exit();
676
  } else if ( strstr($_SERVER['PHP_SELF'], 'feed/') || strstr($_SERVER['PHP_SELF'], 'trackback/') ) {
677
  nocache_headers();
678
- header("Content-type: text/html; charset=$charset");
679
- header("HTTP/1.0 503 Service Unavailable");
680
- header("Retry-After: $backtime");
681
  exit();
682
  }
683
-
684
  }
685
 
686
 
687
- function add_link() {
688
 
689
  $value = self::get_options();
690
  ?>
@@ -719,7 +878,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
719
  }
720
 
721
 
722
- function add_theme() {
723
 
724
  $locale = get_locale();
725
  $value = self::get_options();
@@ -786,8 +945,12 @@ if ( ! class_exists('WPMaintenanceMode') ) {
786
  echo $link . $style;
787
  }
788
 
789
-
790
- function add_flash() {
 
 
 
 
791
 
792
  $locale = get_locale();
793
  $value = self::get_options();
@@ -802,7 +965,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
802
  case 9:
803
  $flash = FB_WM_BASE . '/styles/wartung-' . $locale . '.swf';
804
  if ( file_exists($flash) ) {
805
- $flash = $flash;
806
  } else {
807
  $flash = $this->get_plugins_url( 'styles/', __FILE__ ) . 'wartung.swf';
808
  }
@@ -814,16 +977,22 @@ if ( ! class_exists('WPMaintenanceMode') ) {
814
  </object>';
815
  break;
816
  }
 
817
  echo $object;
818
  }
819
 
820
 
821
- function add_content() {
 
 
 
 
 
822
 
823
  $locale = get_locale();
824
  $value = self::get_options();
825
 
826
- $echo = NULL;
827
 
828
  // default for unit
829
  if ( ! isset($value['unit']) )
@@ -833,7 +1002,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
833
  $td = $this->check_datetime();
834
 
835
  if ( ! empty( $value['text'] ) )
836
- $value['text'] = apply_filters( 'the_content', $value['text'] );
837
 
838
  if ( isset($value['radio']) && 1 === $value['radio'] && 0 !== $td[2] ) {
839
  $echo = wp_sprintf(
@@ -849,11 +1018,11 @@ if ( ! class_exists('WPMaintenanceMode') ) {
849
  $echo = wp_sprintf( stripslashes_deep( $value['text'] ), $value['time'], $unitvalues['unit'] );
850
  }
851
 
852
- echo do_shortcode($echo);
853
  }
854
 
855
 
856
- function check_file($url) {
857
 
858
  $url = parse_url($url);
859
  $fp = fsockopen($url['host'], 80, $errno, $errstr, 30);
@@ -877,7 +1046,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
877
  }
878
  }
879
 
880
- function add_admin_bar_alert() {
881
 
882
  if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) )
883
  $settings_link = network_admin_url() . 'plugins.php#wm-pluginconflink';
@@ -894,12 +1063,14 @@ if ( ! class_exists('WPMaintenanceMode') ) {
894
  }
895
 
896
 
897
- function url_exists($url) {
898
 
899
- if ( ( strpos($url, "http") ) === FALSE )
900
- $url = "http://" . $url;
901
 
902
- if ( is_array(@get_headers($url)) )
 
 
 
903
  return TRUE;
904
  else
905
  return FALSE;
@@ -912,18 +1083,17 @@ if ( ! class_exists('WPMaintenanceMode') ) {
912
  */
913
  function wm_head() {
914
 
915
- do_action('wm_head');
916
  }
917
 
918
  function wm_content() {
919
 
920
- do_action('wm_content');
921
  }
922
 
923
  function wm_footer() {
924
 
925
- do_action('wm_footer');
926
  }
927
 
928
- $GLOBALS['WPMaintenanceMode'] = new WPMaintenanceMode();
929
- }
8
  * Author: Frank B&uuml;ltge
9
  * Author URI: http://bueltge.de/
10
  * Donate URI: http://bueltge.de/wunschliste/
11
+ * Version: 1.8.7
12
+ * Last change: 04/08/2013
13
  * License: GPLv3
14
  *
15
  *
55
  define( 'FB_WM_BASE', rtrim(dirname (__FILE__), '/') );
56
  define( 'FB_WM_TEXTDOMAIN', 'wp-maintenance-mode' );
57
 
58
+ add_action( 'plugins_loaded', array ( 'WPMaintenanceMode', 'get_instance' ) );
59
+
60
  class WPMaintenanceMode {
61
 
62
+ /**
63
+ * Plugin instance.
64
+ *
65
+ * @see get_instance()
66
+ * @type object
67
+ */
68
+ protected static $instance = NULL;
69
+
70
+ /**
71
+ * Var for crawlers list
72
+ *
73
+ * @type Array
74
+ */
75
+ public $crawlers = array();
76
+
77
  function WPMaintenanceMode() {
78
 
79
+ $this->data = array();
80
+ $this->datamsqld = FALSE;
81
+
82
+ /**
83
+ * Crawler List for bypass function
84
+ *
85
+ * Description, Name => Spider, String for check
86
+ */
87
+ $this->crawlers = array(
88
+ 'Abacho' => 'AbachoBOT',
89
+ 'Accoona' => 'Acoon',
90
+ 'AcoiRobot' => 'AcoiRobot',
91
+ 'Adidxbot' => 'adidxbot',
92
+ 'AltaVista robot' => 'Altavista',
93
+ 'Altavista robot' => 'Scooter',
94
+ 'ASPSeek' => 'ASPSeek',
95
+ 'Atomz' => 'Atomz',
96
+ 'Bing' => 'bingbot',
97
+ 'BingPreview' => 'BingPreview',
98
+ 'CrocCrawler' => 'CrocCrawler',
99
+ 'Dumbot' => 'Dumbot',
100
+ 'eStyle Bot' => 'eStyle',
101
+ 'FAST-WebCrawler' => 'FAST-WebCrawler',
102
+ 'GeonaBot' => 'GeonaBot',
103
+ 'Gigabot' => 'Gigabot',
104
+ 'Google' => 'Googlebot',
105
+ 'ID-Search Bot' => 'IDBot',
106
+ 'Lycos spider' => 'Lycos',
107
+ 'MSN' => 'msnbot',
108
+ 'MSRBOT' => 'MSRBOT',
109
+ 'Rambler' => 'Rambler',
110
+ 'Scrubby robot' => 'Scrubby',
111
+ 'Yahoo' => 'Yahoo',
112
+ );
113
 
114
  $this->load_classes();
115
 
116
  register_activation_hook( __FILE__, array( $this, 'add_config' ) );
117
  add_action( 'admin_print_scripts-plugins.php', array( $this, 'add_scripts' ) );
118
  //add_action( 'load-plugins.php', array(&$this, 'add_scripts') );
119
+ add_action( 'init', array( $this, 'on_init') );
120
  //add_action( 'admin_init', array( $this, 'admin_init') );
121
  add_action( 'admin_menu', array( $this, 'redirect' ) );
122
 
127
  }
128
 
129
 
130
+ /**
131
+ * Access this plugin’s working instance
132
+ *
133
+ * @wp-hook plugins_loaded
134
+ * @since 04/05/2013
135
+ * @return object of this class
136
+ */
137
+ public static function get_instance() {
138
+
139
+ NULL === self::$instance and self::$instance = new self;
140
+
141
+ return self::$instance;
142
+ }
143
+
144
+
145
  /**
146
  * Returns array of features, also
147
  * Scans the plugins subfolder "/classes"
163
  * @param String
164
  * @return String
165
  */
166
+ public function esc_attr( $text ) {
167
 
168
  if ( function_exists('esc_attr') )
169
  $text = esc_attr($text);
175
 
176
 
177
  // function for WP < 2.8
178
+ public function get_plugins_url( $path = '', $plugin = '' ) {
179
 
180
  if ( function_exists('plugins_url') )
181
  return plugins_url($path, $plugin);
184
  $scheme = ( is_ssl() ? 'https' : 'http' );
185
  else
186
  $scheme = 'http';
187
+
188
  if ( function_exists('plugins_url') )
189
  $url = plugins_url();
190
  else
191
  $url = WP_PLUGIN_URL;
192
+
193
  if ( 0 === strpos($url, 'http') ) {
194
  if ( function_exists('is_ssl') && is_ssl() )
195
  $url = str_replace( 'http://', "{$scheme}://", $url );
208
  }
209
 
210
 
211
+ public function on_init() {
212
 
213
  load_plugin_textdomain( FB_WM_TEXTDOMAIN, FALSE, FB_WM_BASEDIR . '/languages' );
214
 
215
  if ( is_multisite() && ! function_exists( 'is_plugin_active_for_network' ) )
216
  require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
217
 
218
+ $value = self::get_options();
219
  $valuemsqld = self::get_msqld_option();
220
 
221
+ if ( $valuemsqld ) {
222
  $this->on_active();
223
  if ( ! isset( $value['notice'] ) || 0 !== $value['notice'] )
224
  add_action( 'admin_bar_menu', array( $this, 'add_admin_bar_alert' ), 9999 );
225
  }
226
  }
227
 
228
+
229
  /**
230
  * Return the options, check for install and active on WP multisite
231
  *
245
  /**
246
  * Return the msql-dumper-options, check for install and active on WP multisite
247
  *
248
+ * @return Boolean $valuemsqld
249
  */
250
  public static function get_msqld_option() {
251
+
252
+ $msqld = FB_WM_TEXTDOMAIN . '-msqld';
253
+
254
  if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) ) {
255
+ $valuemsqld = get_site_option( $msqld );
256
  } else {
257
+ $valuemsqld = get_option( $msqld );
258
  }
259
 
260
+ return (bool) $valuemsqld;
261
  }
262
 
263
  /**
326
  }
327
 
328
 
329
+ public function add_config() {
330
 
331
  $this->data = array(
332
  'active' => 0,
347
  4 => 'wp-admin',
348
  5 => 'wp-admin/admin-ajax.php'
349
  ),
350
+ 'bypass' => 0,
351
  'notice' => 1,
352
  );
353
  // if is active in network of multisite
365
  }
366
 
367
 
368
+ public function save_active() {
369
 
370
  $this->data = self::get_options();
371
  $this->datamsqld = self::get_msqld_option();
385
  }
386
 
387
 
388
+ public function save_config() {
389
 
390
  $this->data = self::get_options();
391
 
392
  if ( isset($_POST['wm_config-time']) )
393
  $this->data['time'] = (int) $_POST['wm_config-time'];
394
+
 
395
  if ( isset($_POST['wm_config-link']) )
396
  $this->data['link'] = (int) $_POST['wm_config-link'];
397
+
398
  if ( isset($_POST['wm_config-admin_link']) )
399
  $this->data['admin_link'] = (int) $_POST['wm_config-admin_link'];
400
+
401
  if ( isset($_POST['wm_config-rewrite']) ) {
402
  if ( function_exists('esc_url') ) {
403
  $this->data['rewrite'] = esc_url( $_POST['wm_config-rewrite'] );
405
  $this->data['rewrite'] = clean_url( $_POST['wm_config-rewrite'] );
406
  }
407
  }
408
+
409
+ if ( isset( $_POST['wm_config-notice'] ) )
410
  $this->data['notice'] = (int) $_POST['wm_config-notice'];
411
+
412
+ if ( isset($_POST['wm_config-unit']) )
413
+ $this->data['unit'] = (int) $_POST['wm_config-unit'];
414
+
415
  if ( isset($_POST['wm_config-theme']) )
416
  $this->data['theme'] = (int) $_POST['wm_config-theme'];
417
+
418
  if ( isset($_POST['wm_config-styleurl']) ) {
419
  if ( function_exists('esc_url') ) {
420
  $this->data['styleurl'] = esc_url( $_POST['wm_config-styleurl'] );
422
  $this->data['styleurl'] = clean_url( $_POST['wm_config-styleurl'] );
423
  }
424
  }
425
+
426
  if ( isset($_POST['wm_config-index']) )
427
  $this->data['index'] = (int) $_POST['wm_config-index'];
428
+
429
  if ( isset($_POST['wm_config-title']) )
430
  $this->data['title'] = stripslashes_deep( $_POST['wm_config-title'] );
431
+
432
+ if ( isset($_POST['wm_config-header']) )
433
  $this->data['header'] = stripslashes_deep( $_POST['wm_config-header'] );
434
+
435
  if ( isset($_POST['wm_config-heading']) )
436
  $this->data['heading'] = stripslashes_deep( $_POST['wm_config-heading'] );
437
+
438
  if ( isset($_POST['wm_config-text']) )
439
  $this->data['text'] = stripslashes_deep( $_POST['wm_config-text'] );
440
+
441
  if ( isset($_POST['wm_config-exclude']) )
442
  $this->data['exclude'] = preg_split("/[\s,]+/", $this->esc_attr( $_POST['wm_config-exclude'] ) );
443
+
444
+ if ( isset( $_POST['wm_config-bypass'] ) )
445
+ $this->data['bypass'] = (int) $_POST['wm_config-bypass'];
446
+
447
  if ( isset($_POST['wm_config-role']) )
448
  $this->data['role'] = preg_split("/[\s,]+/", $this->esc_attr( $_POST['wm_config-role'] ) );
449
+
450
  if ( isset($_POST['wm_config-role_frontend']) )
451
  $this->data['role_frontend'] = preg_split("/[\s,]+/", $this->esc_attr( $_POST['wm_config-role_frontend'] ) );
452
+
453
  if ( isset($_POST['wm_config-radio']) )
454
  $this->data['radio'] = (int) $_POST['wm_config-radio'];
455
+
456
  if ( isset($_POST['wm_config-date']) )
457
  $this->data['date'] = $this->esc_attr( $_POST['wm_config-date'] );
458
 
465
  }
466
 
467
 
468
+ public function del_config() {
469
 
470
  if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) ) {
471
  delete_site_option( FB_WM_TEXTDOMAIN );
477
  }
478
 
479
 
480
+ public function check_version() {
481
  global $wp_version;
482
 
483
+ if ( version_compare( $wp_version, '2.1-dev', '<' ) ) {
484
  require (ABSPATH . WPINC . '/pluggable-functions.php'); // < WP 2.1
485
  } else {
486
  require (ABSPATH . WPINC . '/pluggable.php'); // >= WP 2.1
492
  *
493
  * @return void
494
  */
495
+ public function redirect() {
496
 
497
  $value = self::get_options();
498
 
515
  }
516
 
517
 
518
+ public function check_exclude() {
519
 
520
  $value = self::get_options();
521
 
535
  }
536
 
537
 
538
+ /**
539
+ * Check exclude for search bots
540
+ *
541
+ * @since 20/03/2013
542
+ * @return boolean
543
+ */
544
+ public function check_bypass() {
545
+
546
+ $value = self::get_options();
547
+
548
+ if ( ! isset($value['bypass']) || ( 0 === $value['bypass'] ) )
549
+ return FALSE;
550
+
551
+ $crawler = $this->crawler_detect( $_SERVER['HTTP_USER_AGENT'] );
552
+ if ( $crawler )
553
+ return TRUE;
554
+
555
+ return FALSE;
556
+ }
557
+
558
+ /**
559
+ * Check for str array value
560
+ *
561
+ * @since 20/03/2013
562
+ * @see http://stackoverflow.com/a/5927675/730125
563
+ * @return boolean
564
+ */
565
+ public function str_in_array( $str, $array ) {
566
+
567
+ $regexp = '~(' . implode( '|', array_values( $array ) ) . ')~i';
568
+ return (bool) preg_match( $regexp, $str );
569
+ }
570
+
571
+ /**
572
+ * Check for crawlers
573
+ *
574
+ * @since 20/03/2013
575
+ * @return boolean TRUE, if is a crawler detect
576
+ */
577
+ public function crawler_detect( $user_agent ) {
578
+
579
+ if ( $this->str_in_array( $user_agent, $this->crawlers ) )
580
+ return TRUE;
581
+
582
+ return FALSE;
583
+ }
584
+
585
+ public function check_role() {
586
 
587
  $value = self::get_options();
588
 
633
  }
634
 
635
 
636
+ public function case_unit( $unitvalue ) {
637
 
638
  $value['unit'] = $unitvalue;
639
  $unitvalues = array();
673
  }
674
 
675
 
676
+ public function check_datetime() {
677
 
678
  $datetime = NULL;
679
  $time = NULL;
706
  }
707
 
708
 
709
+ public function on_active() {
710
  global $current_user;
711
 
712
  if ( is_multisite() && ! function_exists( 'is_plugin_active_for_network' ) ) {
757
  */
758
  }
759
 
760
+ add_action( 'wm_head', array( $this, 'add_theme' ) );
761
+ add_action( 'wm_content', array( $this, 'add_flash' ) );
762
+ add_action( 'wm_content', array( $this, 'add_content' ) );
763
  if ( isset($value['link']) && 1 === $value['link'] )
764
+ add_action( 'wm_footer', array( $this, 'add_link' ) );
765
 
766
  $locale = get_locale();
767
 
779
  else
780
  $backtime = NULL;
781
 
782
+ $protocol = $_SERVER["SERVER_PROTOCOL"];
783
+ if ( 'HTTP/1.1' != $protocol && 'HTTP/1.0' != $protocol )
784
+ $protocol = 'HTTP/1.0';
785
+ // Allow to change status code via hook
786
+ $status_code = (int) apply_filters( 'wp_maintenance_mode_status_code', '503' );
787
+
788
  if ( ( ! $this->check_role() )
789
  && ! strstr($_SERVER['PHP_SELF'], 'wp-login.php' )
790
+ && ! strstr($_SERVER['PHP_SELF'], 'wp-admin/')
791
  && ! strstr($_SERVER['PHP_SELF'], 'async-upload.php')
792
+ && ! ( strstr($_SERVER['PHP_SELF'], 'upgrade.php') && $this->check_role() )
793
  && ! strstr($_SERVER['PHP_SELF'], '/plugins/')
794
+ && ! strstr($_SERVER['PHP_SELF'], '/xmlrpc.php')
795
  && ! $this->check_exclude()
796
+ && ! $this->check_bypass()
797
  ) {
798
  $rolestatus = 'norights';
799
+
800
  nocache_headers();
801
  ob_start();
802
+ header( "Content-type: text/html; charset=$charset" );
803
+ header( "$protocol $status_code Service Unavailable", TRUE, $status_code );
804
+ header( "Retry-After: $backtime" );
805
+ // Allow alternative splash page
806
+ if ( file_exists( WP_CONTENT_DIR . '/wp-maintenance-mode.php' ) )
807
+ include( WP_CONTENT_DIR . '/wp-maintenance-mode.php' );
808
+ else
809
+ include('site.php');
810
  ob_flush();
811
  exit();
812
  }
813
 
814
+ /*
815
+ * @TODO: check this old source
816
  //$this->check_version();
817
  if ( ! strstr($_SERVER['PHP_SELF'], 'feed/')
818
  && ! strstr($_SERVER['PHP_SELF'], 'wp-admin/')
823
  && ! strstr($_SERVER['PHP_SELF'], '/plugins/')
824
  && ! strstr($_SERVER['PHP_SELF'], '/xmlrpc.php')
825
  && ! $this->check_exclude()
826
+ && ! $this->check_bypass()
827
  && ! $this->check_role()
828
  ) {
829
+ // Allow alternative splash page
830
+ if ( file_exists( WP_CONTENT_DIR . '/wp-maintenance-mode.php' ) )
831
+ include( WP_CONTENT_DIR . '/wp-maintenance-mode.php' );
832
+ else
833
+ include('site.php');
834
  exit();
835
  } else if ( strstr($_SERVER['PHP_SELF'], 'feed/') || strstr($_SERVER['PHP_SELF'], 'trackback/') ) {
836
  nocache_headers();
837
+ header( "Content-type: text/html; charset=$charset" );
838
+ header( "$protocol $status_code Service Unavailable", TRUE, $status_code );
839
+ header( "Retry-After: $backtime" );
840
  exit();
841
  }
842
+ */
843
  }
844
 
845
 
846
+ public function add_link() {
847
 
848
  $value = self::get_options();
849
  ?>
878
  }
879
 
880
 
881
+ public function add_theme() {
882
 
883
  $locale = get_locale();
884
  $value = self::get_options();
945
  echo $link . $style;
946
  }
947
 
948
+ /**
949
+ * Add markup for flash theme
950
+ *
951
+ * @return String
952
+ */
953
+ public function add_flash() {
954
 
955
  $locale = get_locale();
956
  $value = self::get_options();
965
  case 9:
966
  $flash = FB_WM_BASE . '/styles/wartung-' . $locale . '.swf';
967
  if ( file_exists($flash) ) {
968
+ $flash = $this->get_plugins_url( 'styles/', __FILE__ ) . 'wartung-' . $locale . '.swf';
969
  } else {
970
  $flash = $this->get_plugins_url( 'styles/', __FILE__ ) . 'wartung.swf';
971
  }
977
  </object>';
978
  break;
979
  }
980
+
981
  echo $object;
982
  }
983
 
984
 
985
+ /**
986
+ * Add content on splash page
987
+ *
988
+ * @return String
989
+ */
990
+ public function add_content() {
991
 
992
  $locale = get_locale();
993
  $value = self::get_options();
994
 
995
+ $echo = '';
996
 
997
  // default for unit
998
  if ( ! isset($value['unit']) )
1002
  $td = $this->check_datetime();
1003
 
1004
  if ( ! empty( $value['text'] ) )
1005
+ $value['text'] = wpautop( $value['text'] ); // apply_filters( 'the_content', $value['text'] );
1006
 
1007
  if ( isset($value['radio']) && 1 === $value['radio'] && 0 !== $td[2] ) {
1008
  $echo = wp_sprintf(
1018
  $echo = wp_sprintf( stripslashes_deep( $value['text'] ), $value['time'], $unitvalues['unit'] );
1019
  }
1020
 
1021
+ echo do_shortcode( $echo );
1022
  }
1023
 
1024
 
1025
+ public function check_file($url) {
1026
 
1027
  $url = parse_url($url);
1028
  $fp = fsockopen($url['host'], 80, $errno, $errstr, 30);
1046
  }
1047
  }
1048
 
1049
+ public function add_admin_bar_alert() {
1050
 
1051
  if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) )
1052
  $settings_link = network_admin_url() . 'plugins.php#wm-pluginconflink';
1063
  }
1064
 
1065
 
1066
+ public function url_exists( $url ) {
1067
 
1068
+ $scheme = ( is_ssl() ? 'https://' : 'http://' );
 
1069
 
1070
+ if ( ( strpos( $url, $scheme ) ) === FALSE )
1071
+ $url = $scheme . $url;
1072
+
1073
+ if ( is_array( @get_headers( $url ) ) )
1074
  return TRUE;
1075
  else
1076
  return FALSE;
1083
  */
1084
  function wm_head() {
1085
 
1086
+ do_action( 'wm_head', '' );
1087
  }
1088
 
1089
  function wm_content() {
1090
 
1091
+ do_action( 'wm_content', '' );
1092
  }
1093
 
1094
  function wm_footer() {
1095
 
1096
+ do_action( 'wm_footer', '' );
1097
  }
1098
 
1099
+ } // end if class exists