WP Maintenance Mode - Version 1.8.5

Version Description

(01/24/2013) = * Added new settings for hide, view notices about the active maintenance mode * Changes on source, codex * Fix PHP Notices Support Thread * Change default settings, added ajax * Fix Preview function * Fix uninstall in WPMU * Small updates on styles for login form

Download this release

Release Info

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

Code changes from version 1.8.4 to 1.8.5

WP Maintenance Mode-da_DK.txt DELETED
@@ -1,28 +0,0 @@
1
- WP Maintenance Mode 1.6.5
2
-
3
- Sprogfilerne skal ligge i wp-maintenance-mode/languages
4
- Oplysning om stierne er pakket med.
5
- Underst�tter dit udpakningsprogram anvendelse heraf,
6
- kan du udpakke direkte til (formentlig) wp-content/plugins
7
-
8
- En overs�ttelse til HTML-beskeden kunne v�re:
9
-
10
- "<p>Beklager ulejligheden.<br />Der foreg�r i �jeblikket planlagt vedligeholdelse af siten.<br /><strong>Pr�v at komme tilbage om %1$s %2$s</strong><br />Mange tak for din forst�else.</p>"
11
-
12
- Evt. opdateringer eller info herom kan hentes via http://wordpress.blogos.dk/wpdadkdownloads
13
- eller direkte p� http://wordpress.blogos.dk/s%C3%B8g-efter-downloads/?did=250
14
-
15
- Se evt. ogs� http://wordpress.blogos.dk/tag/wp-maintenance-mode
16
-
17
-
18
-
19
- FOR THE DEVELOPER
20
- You are very welcome to check for updated language files in one of the following ways:
21
-
22
- 1. On my downloads page that list all files available for download:
23
- http://wordpress.blogos.dk/wpdadkdownloads/
24
-
25
- 2. Directly on my Download Monitor download page: http://wordpress.blogos.dk/s%C3%B8g-efter-downloads/?did=250
26
-
27
- If I have blogged about your plugin, theme or other resource, you will be able to find it via this tag: http://wordpress.blogos.dk/tag/wp-maintenance-mode
28
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/style.css CHANGED
@@ -23,4 +23,14 @@ display: none;
23
  }
24
  #wphead a#mm_in_admin_header:hover {
25
  text-decoration: underline;
26
- }
 
 
 
 
 
 
 
 
 
 
23
  }
24
  #wphead a#mm_in_admin_header:hover {
25
  text-decoration: underline;
26
+ }
27
+ /*
28
+ .plugins-php #TB_window, .plugins-php #TB_window iframe {
29
+ width: 96% !important;
30
+ left: 1% !important;
31
+ margin-left: 1% !important;
32
+ }
33
+ .plugins-php #TB_window iframe {
34
+ width: 99% !important;
35
+ }
36
+ */
inc/login-form.php CHANGED
@@ -6,13 +6,18 @@
6
  * @uses [loginform redirect="http://my-redirect-url.com"]
7
  */
8
 
9
- class WPMaintenanceMode_Login_Form {
10
 
11
  public function __construct() {
12
 
13
  add_shortcode( 'loginform', array( $this, 'login_form_shortcode' ) );
14
  }
15
 
 
 
 
 
 
16
  /**
17
  * Get a default login form
18
  *
@@ -21,10 +26,7 @@ class WPMaintenanceMode_Login_Form {
21
  */
22
  public function login_form_shortcode( $atts, $content = NULL ) {
23
 
24
- if ( is_multisite() && is_plugin_active_for_network( FB_WM_BASENAME ) )
25
- $value = get_site_option( FB_WM_TEXTDOMAIN );
26
- else
27
- $value = get_option( FB_WM_TEXTDOMAIN );
28
 
29
  extract( shortcode_atts(
30
  array(
@@ -33,22 +35,19 @@ class WPMaintenanceMode_Login_Form {
33
  $atts
34
  ) );
35
 
36
- if ( ! is_user_logged_in() ) {
37
-
38
- // set default link
39
- if ( '' == get_permalink() )
40
- $redirect_default_url = home_url( '/' );
41
-
42
- if ( ! isset( $value['rewrite'] ) || empty( $value['rewrite'] ) )
43
- $redirect_url = $redirect_default_url;
44
- else
45
- $redirect_url = $value['rewrite'];
46
-
47
- $form = wp_login_form( array(
48
- 'echo' => FALSE,
49
- 'redirect' => $redirect_url
50
- ) );
51
- }
52
 
53
  return $form;
54
  }
6
  * @uses [loginform redirect="http://my-redirect-url.com"]
7
  */
8
 
9
+ class WPMaintenanceMode_Login_Form extends WPMaintenanceMode {
10
 
11
  public function __construct() {
12
 
13
  add_shortcode( 'loginform', array( $this, 'login_form_shortcode' ) );
14
  }
15
 
16
+ public static function get_options() {
17
+
18
+ return parent::get_options();
19
+ }
20
+
21
  /**
22
  * Get a default login form
23
  *
26
  */
27
  public function login_form_shortcode( $atts, $content = NULL ) {
28
 
29
+ $value = $this->get_options();
 
 
 
30
 
31
  extract( shortcode_atts(
32
  array(
35
  $atts
36
  ) );
37
 
38
+ // set default link
39
+ if ( '' == get_permalink() )
40
+ $redirect_default_url = home_url( '/' );
41
+
42
+ if ( ! isset( $value['rewrite'] ) || empty( $value['rewrite'] ) )
43
+ $redirect_url = $redirect_default_url;
44
+ else
45
+ $redirect_url = $value['rewrite'];
46
+
47
+ $form = wp_login_form( array(
48
+ 'echo' => FALSE,
49
+ 'redirect' => $redirect_url
50
+ ) );
 
 
 
51
 
52
  return $form;
53
  }
inc/wp-maintenance-mode-settings.php CHANGED
@@ -6,8 +6,65 @@
6
  */
7
  class WPMaintenanceMode_Settings {
8
 
9
- public function init() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
 
 
 
 
 
 
 
 
 
 
 
11
  }
12
 
13
  /**
@@ -156,7 +213,7 @@ class WPMaintenanceMode_Settings {
156
  <td class="alternate">
157
  <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>
158
  <br />
159
- <small><?php _e( '<strong>Coution:</strong> Please don&acute;t copy the stylesheet in your plugin folder, it will be deleted on the next automatical update of the plugin!', FB_WM_TEXTDOMAIN ); ?></small>
160
  </td>
161
  </tr>
162
  <tr valign="top">
@@ -164,7 +221,29 @@ class WPMaintenanceMode_Settings {
164
  <label for="wm_config-preview"><?php _e( 'Preview', FB_WM_TEXTDOMAIN ); ?></label>
165
  </th>
166
  <td class="alternate" style="padding:5px 0 0 0;">
167
- <a onclick="return false;" href="<?php echo WP_PLUGIN_URL . '/' . FB_WM_BASEDIR; ?>/index.php?TB_iframe=true" class="thickbox button"><?php _e( 'Preview', FB_WM_TEXTDOMAIN ); ?></a>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
  </td>
169
  </tr>
170
  <tr valign="top">
@@ -224,11 +303,11 @@ class WPMaintenanceMode_Settings {
224
  <td>
225
  <?php
226
  if ( isset($value['exclude']) && '' !== $value['exclude'][0] ) {
227
- if ( 1 <= count($value['exclude']) ) {
228
- $value_exclude = join( ', ', $value['exclude'] );
229
  } else {
230
  $value_exclude = $value['exclude'];
231
- }
232
  } else {
233
  $value_exclude = NULL;
234
  }
@@ -310,6 +389,20 @@ class WPMaintenanceMode_Settings {
310
  <small><?php _e( 'If you want that after the login the destination address is not standard to the dashboard, then defining a URL. (incl. http://)', FB_WM_TEXTDOMAIN ); ?></small>
311
  </td>
312
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
313
  </table>
314
  <br />
315
  <div class="plugin-update-tr">
6
  */
7
  class WPMaintenanceMode_Settings {
8
 
9
+ protected static $classobj;
10
+
11
+ public function __construct() {
12
+
13
+ if ( ! is_admin() )
14
+ return;
15
+
16
+ if ( is_multisite() && is_plugin_active_for_network( plugin_basename( FB_WM_BASENAME ) ) ) {
17
+ // multisite install
18
+ add_filter( 'network_admin_plugin_action_links', array( $this, 'add_settings_link' ), 10, 2 );
19
+ add_action( 'after_plugin_row_' . FB_WM_BASENAME, array( 'WPMaintenanceMode_Settings', 'add_config_form'), 10, 3 );
20
+ } else {
21
+ // Single mode install of WP
22
+ if ( version_compare( $GLOBALS['wp_version'], '2.7alpha', '>' ) ) {
23
+ add_action( 'after_plugin_row_' . FB_WM_BASENAME, array( 'WPMaintenanceMode_Settings', 'add_config_form'), 10, 3 );
24
+ add_filter( 'plugin_action_links_' . FB_WM_BASENAME, array( $this, 'add_settings_link' ), 10, 2 );
25
+ } else {
26
+ add_action( 'after_plugin_row', array( 'WPMaintenanceMode_Settings', 'add_config_form'), 10, 3 );
27
+ add_filter( 'plugin_action_links', array( $this, 'add_settings_link' ), 10, 2 );
28
+ }
29
+ }
30
+
31
+ wp_enqueue_style( 'wp-maintenance-mode-options', plugin_dir_url( FB_WM_BASENAME ) . 'css/style.css' );
32
+ }
33
+
34
+ /**
35
+ * Handler for the action 'init'. Instantiates this class.
36
+ *
37
+ * @since 2.0.0
38
+ * @access public
39
+ * @return $classobj
40
+ */
41
+ public static function get_object() {
42
+
43
+ if ( NULL === self :: $classobj ) {
44
+ self :: $classobj = new self;
45
+ }
46
+
47
+ return self :: $classobj;
48
+ }
49
+
50
+ function add_settings_link( $links, $file ) {
51
+
52
+ if ( plugin_basename( FB_WM_BASENAME ) == $file )
53
+ array_unshift(
54
+ $links,
55
+ sprintf( '<a id="wm-pluginconflink" href="javascript:void(0)" title="Configure this plugin">%s</a>', __('Settings') )
56
+ );
57
 
58
+ return $links;
59
+ }
60
+
61
+
62
+ function network_admin_add_settings_link( $links, $file ) {
63
+
64
+ if ( plugin_basename( FB_WM_BASENAME ) == $file )
65
+ $links[] = '<a id="wm-pluginconflink" href="javascript:void(0)" title="Configure this plugin">' . __('Settings') . '</a>';
66
+
67
+ return $links;
68
  }
69
 
70
  /**
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>
215
  <br />
216
+ <small><?php _e( '<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!', FB_WM_TEXTDOMAIN ); ?></small>
217
  </td>
218
  </tr>
219
  <tr valign="top">
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;">
224
+ <script type="text/javascript">
225
+ <!--
226
+ var viewportwidth,
227
+ viewportheight;
228
+ if (typeof window.innerWidth != 'undefined' ) {
229
+ viewportwidth = window.innerWidth-80,
230
+ viewportheight = window.innerHeight-100
231
+ } else if (typeof document.documentElement != 'undefined'
232
+ && typeof document.documentElement.clientWidth !=
233
+ 'undefined' && document.documentElement.clientWidth != 0)
234
+ {
235
+ viewportwidth = document.documentElement.clientWidth,
236
+ viewportheight = document.documentElement.clientHeight
237
+ } else { // older versions of IE
238
+ viewportwidth = document.getElementsByTagName('body' )[0].clientWidth,
239
+ viewportheight = document.getElementsByTagName('body' )[0].clientHeight
240
+ }
241
+ document.write('<a onclick="return false;" href="<?php echo WP_PLUGIN_URL . '/'
242
+ . FB_WM_BASEDIR; ?>/index.php?KeepThis=true&amp;TB_iframe=true&amp;height='
243
+ + viewportheight + '&amp;width=' + viewportwidth
244
+ + '&amp;modal=false" class="thickbox button"><?php _e( 'Preview', FB_WM_TEXTDOMAIN ); ?></a>' );
245
+ //-->
246
+ </script>
247
  </td>
248
  </tr>
249
  <tr valign="top">
303
  <td>
304
  <?php
305
  if ( isset($value['exclude']) && '' !== $value['exclude'][0] ) {
306
+ if ( is_array( $value['exclude'] ) && 1 <= count($value['exclude']) ) {
307
+ $value_exclude = implode( ', ', $value['exclude'] );
308
  } else {
309
  $value_exclude = $value['exclude'];
310
+ }
311
  } else {
312
  $value_exclude = NULL;
313
  }
389
  <small><?php _e( 'If you want that after the login the destination address is not standard to the dashboard, then defining a URL. (incl. http://)', FB_WM_TEXTDOMAIN ); ?></small>
390
  </td>
391
  </tr>
392
+
393
+ <tr valign="top">
394
+ <th scope="row">
395
+ <label for="wm_config-notice"><?php _e( 'Notice:', FB_WM_TEXTDOMAIN ); ?></label>
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>
404
+ </tr>
405
+
406
  </table>
407
  <br />
408
  <div class="plugin-update-tr">
index.php CHANGED
@@ -1,11 +1,29 @@
1
  <?php
2
- require_once('../../../wp-load.php');
3
 
4
- if( !current_user_can('unfiltered_html') )
5
- wp_die( __('Cheatin&#8217; uh?') );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
 
7
- $WPMaintenanceMode = new WPMaintenanceMode();
8
- $WPMaintenanceMode->on_active();
 
 
9
 
10
  include 'site.php';
11
- ?>
1
  <?php
 
2
 
3
+ if ( ! function_exists( 'fb_find_wp_config_path' ) ) {
4
+ function fb_find_wp_config_path() {
5
+
6
+ $dir = dirname(__FILE__);
7
+
8
+ do {
9
+ if( file_exists( $dir . "/wp-config.php" ) ) {
10
+ return $dir;
11
+ var_dump($dir);
12
+ }
13
+ } while ( $dir = realpath( "$dir/.." ) );
14
+
15
+ return NULL;
16
+ }
17
+ }
18
+
19
+ if ( ! defined( 'ABSPATH' ) ) {
20
+ define( 'WP_USE_THEMES', FALSE );
21
+ require_once( fb_find_wp_config_path() . '/wp-config.php' );
22
+ }
23
 
24
+ if( ! defined( 'ABSPATH' ) || ! current_user_can('unfiltered_html') ) {
25
+ wp_die( __('Cheatin&#8217; uh?') );
26
+ exit;
27
+ }
28
 
29
  include 'site.php';
 
js/wp-maintenance-mode.js CHANGED
@@ -26,6 +26,7 @@ jQuery(document).ready( function($){
26
  link_Val = $('#wm_config-link').val();
27
  admin_link_Val = $('#wm_config-admin_link').val();
28
  rewrite_Val = $('#wm_config-rewrite').val();
 
29
  unit_Val = $('#wm_config-unit').val();
30
  theme_Val = $('#wm_config-theme').val();
31
  styleurl_Val = $('#wm_config-styleurl').val();
@@ -50,6 +51,7 @@ jQuery(document).ready( function($){
50
  "wm_config-link" : link_Val,
51
  "wm_config-admin_link" : admin_link_Val,
52
  "wm_config-rewrite" : rewrite_Val,
 
53
  "wm_config-theme" : theme_Val,
54
  "wm_config-styleurl" : styleurl_Val,
55
  "wm_config-index" : index_Val,
26
  link_Val = $('#wm_config-link').val();
27
  admin_link_Val = $('#wm_config-admin_link').val();
28
  rewrite_Val = $('#wm_config-rewrite').val();
29
+ notice_Val = $('#wm_config-notice').val();
30
  unit_Val = $('#wm_config-unit').val();
31
  theme_Val = $('#wm_config-theme').val();
32
  styleurl_Val = $('#wm_config-styleurl').val();
51
  "wm_config-link" : link_Val,
52
  "wm_config-admin_link" : admin_link_Val,
53
  "wm_config-rewrite" : rewrite_Val,
54
+ "wm_config-notice" : notice_Val,
55
  "wm_config-theme" : theme_Val,
56
  "wm_config-styleurl" : styleurl_Val,
57
  "wm_config-index" : index_Val,
languages/wp-maintenance-mode-de_DE.mo CHANGED
Binary file
languages/wp-maintenance-mode-de_DE.po CHANGED
@@ -1,482 +1,518 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2012-11-14 12:06+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;"
15
- "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
16
- "X-Poedit-Basepath: c:\\xampp\\htdocs\\wp-plugins\\wp-maintenance-mode\\\n"
17
- "X-Textdomain-Support: yes\n"
18
- "X-Generator: Poedit 1.5.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
 
20
 
21
- # @ wp-maintenance-mode
22
- #: site.php:15 site.php:57
 
23
  msgid "Maintenance Mode"
24
  msgstr "Wartungsmodus"
25
 
26
- # @ wp-maintenance-mode
27
- #: site.php:64
28
  msgid "Access to the admin area blocked"
29
  msgstr "Zugang zum Admin-Bereich wurde blockiert"
30
 
31
- # @ wp-maintenance-mode
32
- #: site.php:67
33
  msgid "Admin-Logout"
34
  msgstr "Admin-Logout"
35
 
36
- # @ wp-maintenance-mode
37
- #: site.php:71
38
  msgid "Admin-Login"
39
  msgstr "Admin-Login"
40
 
41
- # @ default
42
- #: wp-maintenance-mode.php:209 wp-maintenance-mode.php:219
 
43
  msgid "Settings"
44
  msgstr "Einstellungen"
45
 
46
- # @ wp-maintenance-mode
47
- #: wp-maintenance-mode.php:236
48
  msgid "Maintenance mode"
49
  msgstr "Wartungsmodus"
50
 
51
- #: wp-maintenance-mode.php:237
52
  #, php-format
53
- msgid ""
54
- "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
55
- "scheduled maintenance.<br /><strong>Please try back in %1$s %2$s</"
56
- "strong><br />Thank you for your understanding.</p>"
57
- msgstr ""
58
- "<p>Es tut uns leid..<br />Auf unserer Site werden aktuelle Wartungsarbeiten "
59
- "durchgeführt.<br /><strong>Bitte besuche uns in %1$s %2$s</strong> wieder."
60
- "<br />Vielen Dank für das Verständnis.</p>"
61
 
62
- # @ wp-maintenance-mode
63
- #: wp-maintenance-mode.php:277 wp-maintenance-mode.php:339
 
64
  msgid "Updated"
65
  msgstr "Gespeichert"
66
 
67
- # @ wp-maintenance-mode
68
- #: wp-maintenance-mode.php:477
69
  msgid "seconds"
70
  msgstr "Sekunden"
71
 
72
- # @ wp-maintenance-mode
73
- #: wp-maintenance-mode.php:481
74
  msgid "minutes"
75
  msgstr "Minuten"
76
 
77
- # @ wp-maintenance-mode
78
- #: wp-maintenance-mode.php:485
79
  msgid "hours"
80
  msgstr "Stunden"
81
 
82
- # @ wp-maintenance-mode
83
- #: wp-maintenance-mode.php:489
84
  msgid "days"
85
  msgstr "Tagen"
86
 
87
- # @ wp-maintenance-mode
88
- #: wp-maintenance-mode.php:493
89
  msgid "weeks"
90
  msgstr "Wochen"
91
 
92
- # @ wp-maintenance-mode
93
- #: wp-maintenance-mode.php:497
94
  msgid "months"
95
  msgstr "Monate"
96
 
97
- # @ wp-maintenance-mode
98
- #: wp-maintenance-mode.php:501
99
  msgid "years"
100
  msgstr "Jahren"
101
 
102
- #: wp-maintenance-mode.php:565
 
103
  msgid " &amp; WP Super Cache flushed."
104
  msgstr " &amp; WP Super Cache aktualisiert."
105
 
106
- #: wp-maintenance-mode.php:572
 
107
  msgid " &amp; W3 Total Cache for pages flushed."
108
  msgstr " &amp; W3 Total Cache für Seiten aktualisiert."
109
 
110
- # @ wp-maintenance-mode
111
- #: wp-maintenance-mode.php:575 wp-maintenance-mode.php:853
 
112
  msgid "Caution: Maintenance mode is <strong>active</strong>!"
113
  msgstr "Achtung: Wartungsmodus ist <strong>aktiv</strong>!"
114
 
115
- # @ wp-maintenance-mode
116
- #: wp-maintenance-mode.php:577 wp-maintenance-mode.php:581
117
  msgid "Deactivate or change Settings"
118
  msgstr "Deaktivieren oder Einstellungen ändern "
119
 
120
- # @ wp-maintenance-mode
121
- #: wp-maintenance-mode.php:651
122
  msgid "Plugin by:"
123
  msgstr "Plugin von:"
124
 
125
- # @ wp-maintenance-mode
126
- #: wp-maintenance-mode.php:653 wp-maintenance-mode.php:655
127
- #: wp-maintenance-mode.php:657 wp-maintenance-mode.php:659
128
- #: wp-maintenance-mode.php:661 wp-maintenance-mode.php:663
129
- #: wp-maintenance-mode.php:665 wp-maintenance-mode.php:667
130
- #: wp-maintenance-mode.php:669 wp-maintenance-mode.php:671
131
- #: wp-maintenance-mode.php:673
 
 
 
 
 
132
  msgid "Design by:"
133
  msgstr "Design von:"
134
 
135
- # @ wp-maintenance-mode
136
- #: inc/wp-maintenance-mode-settings.php:37
137
- #: inc/wp-maintenance-mode-settings.php:313
138
  #, php-format
 
139
  msgid "Plugin %s settings <strong>updated</strong>."
140
  msgstr "Plugin %s Einstellungen <strong>gespeichert</strong>."
141
 
142
- # @ wp-maintenance-mode
143
- #: inc/wp-maintenance-mode-settings.php:40
144
- #: inc/wp-maintenance-mode-settings.php:53
145
  #, php-format
 
146
  msgid "Plugin %s active status <strong>updated</strong>."
147
  msgstr "Plugin %s aktiv-status <strong>aktualisiert</strong>."
148
 
149
- # @ wp-maintenance-mode
150
- #: inc/wp-maintenance-mode-settings.php:43
151
  msgid "Plugin Activate"
152
  msgstr "Plugin aktivieren"
153
 
154
- # @ wp-maintenance-mode
155
- #: inc/wp-maintenance-mode-settings.php:47
156
- #: inc/wp-maintenance-mode-settings.php:66
157
- #: inc/wp-maintenance-mode-settings.php:110
158
  #: inc/wp-maintenance-mode-settings.php:123
159
- #: inc/wp-maintenance-mode-settings.php:176
 
 
 
 
160
  msgid "False"
161
  msgstr "Nein"
162
 
163
- # @ wp-maintenance-mode
164
- #: inc/wp-maintenance-mode-settings.php:48
165
- #: inc/wp-maintenance-mode-settings.php:67
166
- #: inc/wp-maintenance-mode-settings.php:111
167
  #: inc/wp-maintenance-mode-settings.php:124
168
- #: inc/wp-maintenance-mode-settings.php:177
 
 
 
 
169
  msgid "True"
170
  msgstr "Ja"
171
 
172
- # @ wp-maintenance-mode
173
- #: inc/wp-maintenance-mode-settings.php:50
174
  msgid "Update"
175
  msgstr "Aktualisieren"
176
 
177
- # @ wp-maintenance-mode
178
- #: inc/wp-maintenance-mode-settings.php:56
179
  msgid "Plugin Settings"
180
  msgstr "Plugin Einstellungen"
181
 
182
- # @ wp-maintenance-mode
183
- #: inc/wp-maintenance-mode-settings.php:62
184
  msgid "Countdown:"
185
  msgstr "Countdown:"
186
 
187
- # @ wp-maintenance-mode
188
- #: inc/wp-maintenance-mode-settings.php:73
189
- #: inc/wp-maintenance-mode-settings.php:76
190
  msgid "Click for datepicker"
191
  msgstr "Klick für den Datums-Picker"
192
 
193
- # @ wp-maintenance-mode
194
- #: inc/wp-maintenance-mode-settings.php:73
195
  msgid "Date:"
196
  msgstr "Datum:"
197
 
198
- # @ wp-maintenance-mode
199
- #: inc/wp-maintenance-mode-settings.php:77
200
- msgid ""
201
- "Activate countdown for using this. Use value and unit or use the countdown "
202
- "and set the date."
203
- msgstr ""
204
- "Aktiviere den Countdown um ihn zu nutzen. Vergebe Wert und Einheit oder "
205
- "wähle ein Datum für den Countdown."
206
 
207
- # @ wp-maintenance-mode
208
- #: inc/wp-maintenance-mode-settings.php:82
209
  msgid "Value:"
210
  msgstr "Wert:"
211
 
212
- # @ wp-maintenance-mode
213
- #: inc/wp-maintenance-mode-settings.php:90
214
  msgid "Unit:"
215
  msgstr "Einheit:"
216
 
217
- # @ wp-maintenance-mode
218
- #: inc/wp-maintenance-mode-settings.php:94
219
  msgid "second"
220
  msgstr "sekunde"
221
 
222
- # @ wp-maintenance-mode
223
- #: inc/wp-maintenance-mode-settings.php:95
224
  msgid "minute"
225
  msgstr "minute"
226
 
227
- # @ wp-maintenance-mode
228
- #: inc/wp-maintenance-mode-settings.php:96
229
  msgid "hour"
230
  msgstr "stunde"
231
 
232
- # @ wp-maintenance-mode
233
- #: inc/wp-maintenance-mode-settings.php:97
234
  msgid "day"
235
  msgstr "tag"
236
 
237
- # @ wp-maintenance-mode
238
- #: inc/wp-maintenance-mode-settings.php:98
239
  msgid "week"
240
  msgstr "woche"
241
 
242
- # @ wp-maintenance-mode
243
- #: inc/wp-maintenance-mode-settings.php:99
244
  msgid "month"
245
  msgstr "monat"
246
 
247
- # @ wp-maintenance-mode
248
- #: inc/wp-maintenance-mode-settings.php:100
249
  msgid "year"
250
  msgstr "jahr"
251
 
252
- # @ wp-maintenance-mode
253
- #: inc/wp-maintenance-mode-settings.php:106
254
  msgid "Link:"
255
  msgstr "Link:"
256
 
257
- # @ wp-maintenance-mode
258
- #: inc/wp-maintenance-mode-settings.php:114
259
- msgid ""
260
- "Please leave a link to the plugin- and design-author on your maintenance "
261
- "mode site."
262
- msgstr ""
263
- "Bitte hinterlasse einen Link zum Plugin- und Design-Autor auf deiner "
264
- "Wartungsmodus-Seite."
265
 
266
- # @ wp-maintenance-mode
267
- #: inc/wp-maintenance-mode-settings.php:119
268
  msgid "Admin Link:"
269
  msgstr "Admin Link:"
270
 
271
- #: inc/wp-maintenance-mode-settings.php:127
 
272
  msgid "Do you will a link to the admin area of your install?"
273
  msgstr "Willst du einen Link zum Admin Bereich dieser Installation?"
274
 
275
- # @ wp-maintenance-mode
276
- #: inc/wp-maintenance-mode-settings.php:132
277
  msgid "Theme:"
278
  msgstr "Theme:"
279
 
280
- # @ wp-maintenance-mode
281
- #: inc/wp-maintenance-mode-settings.php:136
282
  msgid "Own Style"
283
  msgstr "Eigenes Design"
284
 
285
- # @ wp-maintenance-mode
286
- #: inc/wp-maintenance-mode-settings.php:137
287
  msgid "Simple Text"
288
  msgstr "Einfach Text"
289
 
290
- # @ wp-maintenance-mode
291
- #: inc/wp-maintenance-mode-settings.php:138
292
  msgid "The Truck"
293
  msgstr "Der Truck"
294
 
295
- # @ wp-maintenance-mode
296
- #: inc/wp-maintenance-mode-settings.php:139
297
  msgid "The Sun"
298
  msgstr "The Sun"
299
 
300
- # @ wp-maintenance-mode
301
- #: inc/wp-maintenance-mode-settings.php:140
302
  msgid "The FF Error"
303
  msgstr "The FF Error"
304
 
305
- # @ wp-maintenance-mode
306
- #: inc/wp-maintenance-mode-settings.php:141
307
  msgid "Monster"
308
  msgstr "Monster"
309
 
310
- # @ wp-maintenance-mode
311
- #: inc/wp-maintenance-mode-settings.php:142
312
  msgid "Chastely"
313
  msgstr "Chastely"
314
 
315
- # @ wp-maintenance-mode
316
- #: inc/wp-maintenance-mode-settings.php:143
317
  msgid "Only Typo"
318
  msgstr "Only Typo"
319
 
320
- # @ wp-maintenance-mode
321
- #: inc/wp-maintenance-mode-settings.php:144
322
  msgid "Paint"
323
  msgstr "Paint"
324
 
325
- # @ wp-maintenance-mode
326
- #: inc/wp-maintenance-mode-settings.php:145
327
  msgid "Animate (Flash)"
328
  msgstr "Animate (Flash)"
329
 
330
- # @ wp-maintenance-mode
331
- #: inc/wp-maintenance-mode-settings.php:146
332
  msgid "Damask"
333
  msgstr "Damask"
334
 
335
- # @ wp-maintenance-mode
336
- #: inc/wp-maintenance-mode-settings.php:147
337
  msgid "Lego"
338
  msgstr "Lego"
339
 
340
- # @ wp-maintenance-mode
341
- #: inc/wp-maintenance-mode-settings.php:148
342
  msgid "Chemistry"
343
  msgstr "Chemielabor"
344
 
345
- # @ wp-maintenance-mode
346
- #: inc/wp-maintenance-mode-settings.php:154
347
  msgid "Own Style URL:"
348
  msgstr "Eigenes Design:"
349
 
350
- # @ wp-maintenance-mode
351
- #: inc/wp-maintenance-mode-settings.php:157
352
  msgid "URL to the css-file (incl. http://)"
353
  msgstr "URL zur css-Datei (inkl. http://)"
354
 
355
- # @ wp-maintenance-mode
356
- #: inc/wp-maintenance-mode-settings.php:159
357
- msgid ""
358
- "<strong>Coution:</strong> Please don&acute;t copy the stylesheet in your "
359
- "plugin folder, it will be deleted on the next automatical update of the "
360
- "plugin!"
361
- msgstr ""
362
- "<strong>Hinweis:</strong> Bitte speichere das Sytelsheet nicht im Plugin-"
363
- "Ordner, der Ordner wird beim automatischen Update ersetzt!"
364
 
365
- # @ wp-maintenance-mode
366
- #: inc/wp-maintenance-mode-settings.php:164
367
- #: inc/wp-maintenance-mode-settings.php:167
368
  msgid "Preview"
369
  msgstr "Vorschau"
370
 
371
- #: inc/wp-maintenance-mode-settings.php:172
 
372
  msgid "noindex, nofollow:"
373
  msgstr "noindex, nofollow:"
374
 
375
- #: inc/wp-maintenance-mode-settings.php:180
376
- msgid ""
377
- "The robots meta tag lets you utilize a granular, page-specific approach to "
378
- "controlling how an individual page should be indexed and served to users in "
379
- "search results. Set TRUE for noindex, nofollow; set FALSE for index, follow."
380
- msgstr ""
381
- "Der robots meta Tag gibt die Möglichkeit die Indizierung der Site durch "
382
- "Suchmaschinen zu steuern. Wähle den Wert, der auf Wartungsseite genutzt "
383
- "werden soll. Setze Ja für nonidex, nofollow; setze Nein für index, follow."
384
 
385
- # @ wp-maintenance-mode
386
- #: inc/wp-maintenance-mode-settings.php:185
387
  msgid "Title:"
388
  msgstr "Titel:"
389
 
390
- # @ wp-maintenance-mode
391
- #: inc/wp-maintenance-mode-settings.php:188
392
- #: inc/wp-maintenance-mode-settings.php:196
393
- #: inc/wp-maintenance-mode-settings.php:204
394
  msgid "Leave empty for default."
395
  msgstr "Leer lassen für den Standardtext."
396
 
397
- # @ wp-maintenance-mode
398
- #: inc/wp-maintenance-mode-settings.php:193
399
  msgid "Header:"
400
  msgstr "Header:"
401
 
402
- # @ wp-maintenance-mode
403
- #: inc/wp-maintenance-mode-settings.php:201
404
  msgid "Heading:"
405
  msgstr "Überschrift:"
406
 
407
- # @ wp-maintenance-mode
408
- #: inc/wp-maintenance-mode-settings.php:209
409
  msgid "Text:"
410
  msgstr "Text:"
411
 
412
- # @ wp-maintenance-mode
413
- #: inc/wp-maintenance-mode-settings.php:214
414
- #, php-format
415
- msgid ""
416
- "Use the first <em>%1$s</em> for the time value or countdown and second <em>"
417
- "%2$s</em> for the unit of the time or countdown-value; HTML and Shortcodes "
418
- "are possible"
419
- msgstr ""
420
- "Nutze das erste %1$s für den Zeitwert oder den Countdown und das zweite %2$s "
421
- "für die Einheit der Zeit oder die Ausgabe des Zeitwert, HTML und Shortcodes "
422
- "sind möglich"
423
-
424
- # @ wp-maintenance-mode
425
- #: inc/wp-maintenance-mode-settings.php:219
426
  #, fuzzy
 
427
  msgid "Exclude:"
428
  msgstr "Ausnahmen:"
429
 
430
- # @ wp-maintenance-mode
431
- #: inc/wp-maintenance-mode-settings.php:235
432
- msgid ""
433
- "Exclude feed, pages, posts, archives or IPs from the maintenance mode. Add "
434
- "the Slug of page or post as a comma-separated list.<br />Example:"
435
- msgstr ""
436
- "Die Ausnahme des Wartungsmodus ist möglich für Inhalte aller Art, auch der "
437
- "Feed. Füge den Titelform (Slug) hinzu, als Komma-Separierte Liste.<br /"
438
- ">Beispiel:"
439
 
440
- #: inc/wp-maintenance-mode-settings.php:240
 
441
  msgid "Backend Role:"
442
  msgstr "Backendrolle:"
443
 
444
- # @ wp-maintenance-mode
445
- #: inc/wp-maintenance-mode-settings.php:265
446
  msgid "Allowed userrole to access the backend of this blog."
447
  msgstr "Erlaubte User-Rolle für das Sehen des Backend von diesem Blog."
448
 
449
- # @ wp-maintenance-mode
450
- #: inc/wp-maintenance-mode-settings.php:266
451
- #: inc/wp-maintenance-mode-settings.php:297
452
  msgid "Super Admin has always access."
453
  msgstr "Super Admin hat immer Zugang."
454
 
455
- #: inc/wp-maintenance-mode-settings.php:271
 
456
  msgid "Frontend Role:"
457
  msgstr "Frontendrolle:"
458
 
459
- # @ wp-maintenance-mode
460
- #: inc/wp-maintenance-mode-settings.php:296
461
  msgid "Allowed userrole to see the frontend of this blog."
462
  msgstr "Erlaubte User-Rolle für das Sehen des Frontend von diesem Blog."
463
 
464
- #: inc/wp-maintenance-mode-settings.php:302
 
465
  msgid "Redirection:"
466
  msgstr "Weiterleitung:"
467
 
468
- #: inc/wp-maintenance-mode-settings.php:307
469
- msgid ""
470
- "If you want that after the login the destination address is not standard to "
471
- "the dashboard, then defining a URL. (incl. http://)"
472
- msgstr ""
473
- "Wenn du nach dem Login eine Weiterleitung verändert zum Standard, dem "
474
- "Dashboard, wünschst, dann definiere eine URL. (inkl. http://)"
475
 
476
- # @ wp-maintenance-mode
477
- #: inc/wp-maintenance-mode-settings.php:316
478
  msgid "Save"
479
  msgstr "Speichern"
480
 
481
- #~ msgid "Rewrite:"
482
- #~ msgstr "Weiterleitung:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
+ "X-Poedit-Basepath: c:/xampp/htdocs/wp-plugins/wp-maintenance-mode/\n"
18
+ "X-Poedit-Bookmarks: \n"
 
 
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"
42
 
43
+ #: inc/wp-maintenance-mode-settings.php:55
44
+ #: inc/wp-maintenance-mode-settings.php:65
45
+ #@ default
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?"
477
+
478
+ #: index.php:25
479
+ #@ default
480
+ msgid "Cheatin&#8217; uh?"
481
+ msgstr ""
482
+
483
+ #. translators: plugin header field 'Name'
484
+ #: wp-maintenance-mode.php:0
485
+ #@ wp-maintenance-mode
486
+ msgid "WP Maintenance Mode"
487
+ msgstr "WP Wartungsmodus"
488
+
489
+ #. translators: plugin header field 'PluginURI'
490
+ #: wp-maintenance-mode.php:0
491
+ #@ wp-maintenance-mode
492
+ msgid "http://wordpress.org/extend/plugins/wp-maintenance-mode/"
493
+ msgstr ""
494
+
495
+ #. translators: plugin header field 'Description'
496
+ #: wp-maintenance-mode.php:0
497
+ #@ wp-maintenance-mode
498
+ 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."
499
+ msgstr "Das Plugin aktiviert eine Wartungsseite im Frontend und informiert Besucher deiner Installation über die Wartung und zu erwartende Ausfallzeit. Eingeloggte Nutzer haben vollen Zugriff auf Frontend und Backend, abhängig von den vergebenen Einstellungen."
500
+
501
+ #. translators: plugin header field 'Author'
502
+ #: wp-maintenance-mode.php:0
503
+ #@ wp-maintenance-mode
504
+ msgid "Frank B&uuml;ltge"
505
+ msgstr ""
506
+
507
+ #. translators: plugin header field 'AuthorURI'
508
+ #: wp-maintenance-mode.php:0
509
+ #@ wp-maintenance-mode
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
+
languages/wp-maintenance-mode-es_ES.mo CHANGED
Binary file
languages/wp-maintenance-mode-es_ES.po CHANGED
@@ -1,383 +1,515 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: !wartungsmodus\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: AA\n"
8
- "Language-Team: TodoWordPress <traducciones@todowp.org>\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: Spanish\n"
14
- "X-Poedit-Country: SPAIN\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
- "X-Poedit-Basepath: .\n"
18
  "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- # @ wp-maintenance-mode
22
- #. translators: plugin header field 'Description'
23
- #: wp-maintenance-mode.php:0
24
- 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."
25
- msgstr "Este plugin agrega una página de inicio al blog que le permite saber a los visitantes que el blog se encuentra en mantenimiento. Los usuarios que se identifiquen tienen todo el acceso del blog incluyecdo las páginas, pero depende de la configuración."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
 
27
- #: wp-maintenance-mode.php:160
 
 
28
  msgid "Settings"
29
- msgstr "Opciones"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
 
31
- #: wp-maintenance-mode.php:260
32
- #: wp-maintenance-mode.php:454
 
33
  #, php-format
34
  msgid "Plugin %s settings <strong>updated</strong>."
35
- msgstr "Las opciones de %s <strong>han sido actualizadas</strong>."
36
 
37
- #: wp-maintenance-mode.php:263
38
- #: wp-maintenance-mode.php:276
 
39
  #, php-format
40
  msgid "Plugin %s active status <strong>updated</strong>."
41
- msgstr "Estado del Plugin %s activo <strong>actualizado</strong>."
42
 
43
- #: wp-maintenance-mode.php:266
 
44
  msgid "Plugin Activate"
45
  msgstr "Plugin activado"
46
 
47
- #: wp-maintenance-mode.php:270
48
- #: wp-maintenance-mode.php:289
49
- #: wp-maintenance-mode.php:333
 
 
 
 
50
  msgid "False"
51
  msgstr "Desactivado"
52
 
53
- #: wp-maintenance-mode.php:271
54
- #: wp-maintenance-mode.php:290
55
- #: wp-maintenance-mode.php:334
 
 
 
 
56
  msgid "True"
57
  msgstr "Activado"
58
 
59
- #: wp-maintenance-mode.php:273
 
60
  msgid "Update"
61
  msgstr "Actualizar"
62
 
63
- #: wp-maintenance-mode.php:279
 
64
  msgid "Plugin Settings"
65
- msgstr "Opciones del Plugin"
66
 
67
- #: wp-maintenance-mode.php:285
 
68
  msgid "Countdown:"
69
- msgstr "Cuenta atrás:"
70
 
71
- #: wp-maintenance-mode.php:296
72
- #: wp-maintenance-mode.php:299
 
73
  msgid "Click for datepicker"
74
  msgstr "Haz click para ver el calendario"
75
 
76
- #: wp-maintenance-mode.php:296
 
77
  msgid "Date:"
78
  msgstr "Fecha:"
79
 
80
- #: wp-maintenance-mode.php:300
 
81
  msgid "Activate countdown for using this. Use value and unit or use the countdown and set the date."
82
- msgstr "Hay que activar la cuenta atrás para usar esto, luego pon la fecha en la que quieres que termine la cuenta atrás."
83
 
84
- #: wp-maintenance-mode.php:305
 
85
  msgid "Value:"
86
  msgstr "Valor:"
87
 
88
- #: wp-maintenance-mode.php:313
 
89
  msgid "Unit:"
90
  msgstr "Unidad:"
91
 
92
- #: wp-maintenance-mode.php:317
 
93
  msgid "second"
94
  msgstr "segundo"
95
 
96
- #: wp-maintenance-mode.php:318
 
97
  msgid "minute"
98
  msgstr "minuto"
99
 
100
- #: wp-maintenance-mode.php:319
 
101
  msgid "hour"
102
  msgstr "hora"
103
 
104
- #: wp-maintenance-mode.php:320
 
105
  msgid "day"
106
- msgstr "día"
107
 
108
- #: wp-maintenance-mode.php:321
 
109
  msgid "week"
110
  msgstr "semana"
111
 
112
- #: wp-maintenance-mode.php:322
 
113
  msgid "month"
114
  msgstr "mes"
115
 
116
- #: wp-maintenance-mode.php:323
 
117
  msgid "year"
118
- msgstr "año"
119
 
120
- #: wp-maintenance-mode.php:329
 
121
  msgid "Link:"
122
  msgstr "Enlace:"
123
 
124
- #: wp-maintenance-mode.php:342
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
125
  msgid "Theme:"
126
  msgstr "Tema:"
127
 
128
- #: wp-maintenance-mode.php:346
 
129
  msgid "Own Style"
130
- msgstr "Style propio"
131
 
132
- #: wp-maintenance-mode.php:347
 
133
  msgid "Simple Text"
134
  msgstr "Texto Simple"
135
 
136
- #: wp-maintenance-mode.php:348
 
137
  msgid "The Truck"
138
  msgstr "The Truck"
139
 
140
- #: wp-maintenance-mode.php:349
 
141
  msgid "The Sun"
142
  msgstr "The Sun"
143
 
144
- #: wp-maintenance-mode.php:350
 
145
  msgid "The FF Error"
146
  msgstr "The FF Error"
147
 
148
- #: wp-maintenance-mode.php:351
 
149
  msgid "Monster"
150
  msgstr "Monster"
151
 
152
- #: wp-maintenance-mode.php:352
 
153
  msgid "Chastely"
154
  msgstr "Chastely"
155
 
156
- #: wp-maintenance-mode.php:353
 
157
  msgid "Only Typo"
158
  msgstr "Only Typo"
159
 
160
- #: wp-maintenance-mode.php:354
 
161
  msgid "Paint"
162
  msgstr "Paint"
163
 
164
- #: wp-maintenance-mode.php:356
 
 
 
 
 
 
165
  msgid "Damask"
166
  msgstr "Damask"
167
 
168
- #: wp-maintenance-mode.php:357
 
169
  msgid "Lego"
170
  msgstr "Lego"
171
 
172
- #: wp-maintenance-mode.php:364
173
- msgid "Own Style URL (incl. http://):"
174
- msgstr "URL de tu estilo (incluido el \"http://\"):"
175
-
176
- #: wp-maintenance-mode.php:406
177
- msgid "Text:"
178
- msgstr "Texto:"
179
-
180
- #: wp-maintenance-mode.php:416
181
- msgid "Excludes:"
182
- msgstr "Excluidas:"
183
-
184
- # @ wp-maintenance-mode
185
- #: wp-maintenance-mode.php:426
186
- msgid "Role:"
187
- msgstr "Rolle:"
188
-
189
- #: wp-maintenance-mode.php:457
190
- msgid "Save"
191
- msgstr "Guardar"
192
-
193
- #: wp-maintenance-mode.php:502
194
- #: wp-maintenance-mode.php:545
195
- msgid "Updated"
196
- msgstr "Actualizar"
197
-
198
- #: wp-maintenance-mode.php:697
199
- #: wp-maintenance-mode.php:699
200
- msgid "Deactivate or change Settings"
201
- msgstr "Desactivar o cambiar las opciones"
202
-
203
- #: wp-maintenance-mode.php:625
204
- msgid "seconds"
205
- msgstr "segundos"
206
-
207
- #: wp-maintenance-mode.php:629
208
- msgid "minutes"
209
- msgstr "minutos"
210
-
211
- #: wp-maintenance-mode.php:633
212
- msgid "hours"
213
- msgstr "horas"
214
-
215
- #: wp-maintenance-mode.php:637
216
- msgid "days"
217
- msgstr "días"
218
-
219
- #: wp-maintenance-mode.php:641
220
- msgid "weeks"
221
- msgstr "semanas"
222
-
223
- #: wp-maintenance-mode.php:649
224
- msgid "years"
225
- msgstr "años"
226
-
227
- #: wp-maintenance-mode.php:763
228
- msgid "Plugin by:"
229
- msgstr "Plugin de:"
230
-
231
- #: wp-maintenance-mode.php:765
232
- #: wp-maintenance-mode.php:767
233
- #: wp-maintenance-mode.php:769
234
- #: wp-maintenance-mode.php:771
235
- #: wp-maintenance-mode.php:773
236
- #: wp-maintenance-mode.php:775
237
- #: wp-maintenance-mode.php:777
238
- #: wp-maintenance-mode.php:779
239
- #: wp-maintenance-mode.php:781
240
- #: wp-maintenance-mode.php:783
241
- #: wp-maintenance-mode.php:785
242
- msgid "Design by:"
243
- msgstr "Diseñado por:"
244
 
245
- #: site.php:12
246
- #: site.php:48
247
- msgid "Maintenance Mode"
248
- msgstr "En Mantenimiento"
249
 
250
- #: site.php:62
251
- msgid "Admin-Login"
252
- msgstr "Administración"
 
253
 
254
- # @ wp-maintenance-mode
255
- #: wp-maintenance-mode.php:382
256
  msgid "Title:"
257
- msgstr "Titel:"
258
-
259
- # @ wp-maintenance-mode
260
- #: wp-maintenance-mode.php:367
261
- msgid "URL to the css-file"
262
- msgstr "URL zur css-Datei"
263
 
264
- # @ wp-maintenance-mode
265
- #: wp-maintenance-mode.php:385
266
- #: wp-maintenance-mode.php:393
267
- #: wp-maintenance-mode.php:401
268
  msgid "Leave empty for default."
269
- msgstr "Leer lassen für den Standardtext."
270
 
271
- # @ wp-maintenance-mode
272
- #: wp-maintenance-mode.php:390
273
  msgid "Header:"
274
- msgstr "Header:"
275
 
276
- # @ wp-maintenance-mode
277
- #: wp-maintenance-mode.php:398
278
  msgid "Heading:"
279
- msgstr "Überschrift:"
280
 
281
- # @ wp-maintenance-mode
282
- #: wp-maintenance-mode.php:337
283
- msgid "Please leave a link to the plugin- and design-author on your maintenance mode site."
284
- msgstr "Bitte hinterlasse einen Link zum Plugin- und Design-Autor auf deiner Wartungsmodus-Seite."
285
-
286
- #: wp-maintenance-mode.php:645
287
- msgid "months"
288
- msgstr "mes"
289
 
290
- # @ wp-maintenance-mode
291
- #: site.php:55
292
- msgid "Access to the admin area blocked"
293
- msgstr "Zugang zum Admin-Bereich wurde blockiert"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
294
 
295
- #: site.php:58
296
- msgid "Admin-Logout"
297
- msgstr "Administración ha salido"
 
298
 
299
- # @ wp-maintenance-mode
300
- #: wp-maintenance-mode.php:447
301
  msgid "Allowed userrole to see the frontend of this blog."
302
- msgstr "Erlaubte User-Rolle für das Sehen des Frontend von diesem Blog."
303
 
304
- #: wp-maintenance-mode.php:695
305
- msgid "Caution: Maintenance mode is <strong>active</strong>!"
306
- msgstr "Atención: La modalidad de mantenimiento está <strong>activo</strong>"
 
307
 
308
- # @ default
309
- #: index.php:5
310
- msgid "Cheatin&#8217; uh?"
311
- msgstr "Cheatin&#8217; uh?"
312
 
313
- # @ wp-maintenance-mode
314
- #: wp-maintenance-mode.php:369
315
- msgid "<strong>Coution:</strong> Please don&acute;t copy the stylesheet in your plugin folder, it will be deleted on the next automatical update of the plugin!"
316
- msgstr "<strong>Hinweis:</strong> Bitte speichere das Sytelsheet nicht im Plugin-Ordner, der Ordner wird beim automatischen Update ersetzt!"
317
 
318
- # @ wp-maintenance-mode
319
- #: wp-maintenance-mode.php:374
320
- #: wp-maintenance-mode.php:377
321
- msgid "Preview"
322
- msgstr "Vorschau"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
323
 
 
324
  #. translators: plugin header field 'Name'
325
  #: wp-maintenance-mode.php:0
326
  msgid "WP Maintenance Mode"
327
- msgstr "En mantenimiento"
328
 
329
- # @ wp-maintenance-mode
330
  #. translators: plugin header field 'PluginURI'
331
  #: wp-maintenance-mode.php:0
332
- msgid "http://bueltge.de/wp-wartungsmodus-plugin/101/"
333
- msgstr "http://bueltge.de/wp-wartungsmodus-plugin/101/"
334
 
335
- # @ wp-maintenance-mode
 
 
 
 
 
 
336
  #. translators: plugin header field 'Author'
337
  #: wp-maintenance-mode.php:0
338
  msgid "Frank B&uuml;ltge"
339
  msgstr "Frank B&uuml;ltge"
340
 
341
- # @ wp-maintenance-mode
342
  #. translators: plugin header field 'AuthorURI'
343
  #: wp-maintenance-mode.php:0
344
  msgid "http://bueltge.de/"
345
  msgstr "http://bueltge.de/"
346
 
347
- #: wp-maintenance-mode.php:355
348
- msgid "Animate (Flash)"
349
- msgstr "Animación (Flash, sólo en alemán)"
350
-
351
- # @ wp-maintenance-mode
352
- #: wp-maintenance-mode.php:358
353
- msgid "Chemistry"
354
- msgstr "Chemielabor"
355
-
356
- #: wp-maintenance-mode.php:411
357
- #, php-format
358
- 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"
359
- msgstr "(Utiliza el primer \"%s\" para la cuenta atrás y el segundo \"%s\" para la unidad de tiempo. Se puede usar HTML.)"
360
-
361
- # @ wp-maintenance-mode
362
  #. translators: plugin header field 'Version'
363
  #: wp-maintenance-mode.php:0
364
- msgid "1.6.7"
365
- msgstr "1.6.7"
366
-
367
- # @ wp-maintenance-mode
368
- #: wp-maintenance-mode.php:448
369
- msgid "Super Admin has always access."
370
- msgstr "Super Admin hat immer Zugang."
371
-
372
- #: wp-maintenance-mode.php:421
373
- msgid "Exclude feed, pages, posts or archives from the maintenance mode. Add the Slug of page or post as a comma-separated list.<br />Example:"
374
- msgstr "Excluye páginas, entradas o archivos del modo de mantenimiento. Agrega la URL de la página o entrada a excluir separándola con una coma \",\" y un espacio.<br />Ejemplo: "
375
-
376
- #~ msgid "moths"
377
- #~ msgstr "meses"
378
-
379
- #~ msgid "The due date was before"
380
- #~ msgstr "La fecha de finalización era antes de"
381
 
382
- #~ msgid "and"
383
- #~ msgstr "y"
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-02-01 16:23+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=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;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
15
+ "X-Poedit-Basepath: c:/xampp/htdocs/wp-plugins/wp-maintenance-mode/\n"
 
 
16
  "X-Textdomain-Support: yes\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #@ wp-maintenance-mode
20
+ #: site.php:10
21
+ #: site.php:52
22
+ msgid "Maintenance Mode"
23
+ msgstr "En Mantenimiento"
24
+
25
+ #@ wp-maintenance-mode
26
+ #: site.php:59
27
+ msgid "Access to the admin area blocked"
28
+ msgstr "Acceso al &aacute;rea de administraci&oacute;n bloqueado"
29
+
30
+ #@ wp-maintenance-mode
31
+ #: site.php:62
32
+ msgid "Admin-Logout"
33
+ msgstr "Cerrar sesi&oacute;n"
34
+
35
+ #@ wp-maintenance-mode
36
+ #: site.php:66
37
+ msgid "Admin-Login"
38
+ msgstr "Administraci&oacute;n"
39
 
40
+ #@ default
41
+ #: inc/wp-maintenance-mode-settings.php:55
42
+ #: inc/wp-maintenance-mode-settings.php:65
43
  msgid "Settings"
44
+ msgstr "Configuraci&oacute;n"
45
+
46
+ #@ wp-maintenance-mode
47
+ #: wp-maintenance-mode.php:256
48
+ msgid "Maintenance mode"
49
+ msgstr "En Mantenimiento"
50
+
51
+ #@ wp-maintenance-mode
52
+ #: wp-maintenance-mode.php:257
53
+ #, php-format
54
+ 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>"
55
+ msgstr "<p>Lamentamos los inconvenientes.<br />Nuestro sitio web est&aacute; actualmente bajo mantenimiento programado.<br /><strong>Por favor, int&eacute;ntelo m&aacute;s tarde en %1$s %2$s</strong><br />Gracias por su comprensi&oacute;n.</p>"
56
+
57
+ #@ wp-maintenance-mode
58
+ #: wp-maintenance-mode.php:299
59
+ #: wp-maintenance-mode.php:359
60
+ msgid "Updated"
61
+ msgstr "Actualizado"
62
+
63
+ #@ wp-maintenance-mode
64
+ #: wp-maintenance-mode.php:491
65
+ msgid "seconds"
66
+ msgstr "segundos"
67
+
68
+ #@ wp-maintenance-mode
69
+ #: wp-maintenance-mode.php:495
70
+ msgid "minutes"
71
+ msgstr "minutos"
72
+
73
+ #@ wp-maintenance-mode
74
+ #: wp-maintenance-mode.php:499
75
+ msgid "hours"
76
+ msgstr "horas"
77
+
78
+ #@ wp-maintenance-mode
79
+ #: wp-maintenance-mode.php:503
80
+ msgid "days"
81
+ msgstr "d&iacute;as"
82
+
83
+ #@ wp-maintenance-mode
84
+ #: wp-maintenance-mode.php:507
85
+ msgid "weeks"
86
+ msgstr "semanas"
87
+
88
+ #@ wp-maintenance-mode
89
+ #: wp-maintenance-mode.php:511
90
+ msgid "months"
91
+ msgstr "meses"
92
+
93
+ #@ wp-maintenance-mode
94
+ #: wp-maintenance-mode.php:515
95
+ msgid "years"
96
+ msgstr "a&ntilde;os"
97
+
98
+ #@ wp-maintenance-mode
99
+ #: wp-maintenance-mode.php:576
100
+ msgid " &amp; WP Super Cache flushed."
101
+ msgstr " &amp; WP Super Cache datos de caché borrados."
102
+
103
+ #@ wp-maintenance-mode
104
+ #: wp-maintenance-mode.php:583
105
+ msgid " &amp; W3 Total Cache for pages flushed."
106
+ msgstr " &amp; W3 Total Cache datos de caché borrados."
107
+
108
+ #@ wp-maintenance-mode
109
+ #: wp-maintenance-mode.php:588
110
+ #: wp-maintenance-mode.php:874
111
+ msgid "Caution: Maintenance mode is <strong>active</strong>!"
112
+ msgstr "Atenci&oacute;n: el modo de mantenimiento est&aacute; <strong>activo</strong>!"
113
+
114
+ #@ wp-maintenance-mode
115
+ #: wp-maintenance-mode.php:590
116
+ msgid "Deactivate or change Settings"
117
+ msgstr "Desactivar o cambiar la configuraci&oacute;n"
118
+
119
+ #@ wp-maintenance-mode
120
+ #: wp-maintenance-mode.php:676
121
+ msgid "Plugin by:"
122
+ msgstr "Plugin de:"
123
+
124
+ #@ wp-maintenance-mode
125
+ #: wp-maintenance-mode.php:678
126
+ #: wp-maintenance-mode.php:680
127
+ #: wp-maintenance-mode.php:682
128
+ #: wp-maintenance-mode.php:684
129
+ #: wp-maintenance-mode.php:686
130
+ #: wp-maintenance-mode.php:688
131
+ #: wp-maintenance-mode.php:690
132
+ #: wp-maintenance-mode.php:692
133
+ #: wp-maintenance-mode.php:694
134
+ #: wp-maintenance-mode.php:696
135
+ #: wp-maintenance-mode.php:698
136
+ msgid "Design by:"
137
+ msgstr "Dise&ntilde;ado por:"
138
 
139
+ #@ wp-maintenance-mode
140
+ #: inc/wp-maintenance-mode-settings.php:94
141
+ #: inc/wp-maintenance-mode-settings.php:410
142
  #, php-format
143
  msgid "Plugin %s settings <strong>updated</strong>."
144
+ msgstr "La configuraci&oacute;n del plugin %s <strong>ha sido actualizada</strong>."
145
 
146
+ #@ wp-maintenance-mode
147
+ #: inc/wp-maintenance-mode-settings.php:97
148
+ #: inc/wp-maintenance-mode-settings.php:110
149
  #, php-format
150
  msgid "Plugin %s active status <strong>updated</strong>."
151
+ msgstr "Estado del plugin %s activo <strong>actualizado</strong>."
152
 
153
+ #@ wp-maintenance-mode
154
+ #: inc/wp-maintenance-mode-settings.php:100
155
  msgid "Plugin Activate"
156
  msgstr "Plugin activado"
157
 
158
+ #@ wp-maintenance-mode
159
+ #: inc/wp-maintenance-mode-settings.php:104
160
+ #: inc/wp-maintenance-mode-settings.php:123
161
+ #: inc/wp-maintenance-mode-settings.php:167
162
+ #: inc/wp-maintenance-mode-settings.php:180
163
+ #: inc/wp-maintenance-mode-settings.php:256
164
+ #: inc/wp-maintenance-mode-settings.php:400
165
  msgid "False"
166
  msgstr "Desactivado"
167
 
168
+ #@ wp-maintenance-mode
169
+ #: inc/wp-maintenance-mode-settings.php:105
170
+ #: inc/wp-maintenance-mode-settings.php:124
171
+ #: inc/wp-maintenance-mode-settings.php:168
172
+ #: inc/wp-maintenance-mode-settings.php:181
173
+ #: inc/wp-maintenance-mode-settings.php:257
174
+ #: inc/wp-maintenance-mode-settings.php:401
175
  msgid "True"
176
  msgstr "Activado"
177
 
178
+ #@ wp-maintenance-mode
179
+ #: inc/wp-maintenance-mode-settings.php:107
180
  msgid "Update"
181
  msgstr "Actualizar"
182
 
183
+ #@ wp-maintenance-mode
184
+ #: inc/wp-maintenance-mode-settings.php:113
185
  msgid "Plugin Settings"
186
+ msgstr "Configuraci&oacute;n del plugin"
187
 
188
+ #@ wp-maintenance-mode
189
+ #: inc/wp-maintenance-mode-settings.php:119
190
  msgid "Countdown:"
191
+ msgstr "Cuenta atr&aacute;s:"
192
 
193
+ #@ wp-maintenance-mode
194
+ #: inc/wp-maintenance-mode-settings.php:130
195
+ #: inc/wp-maintenance-mode-settings.php:133
196
  msgid "Click for datepicker"
197
  msgstr "Haz click para ver el calendario"
198
 
199
+ #@ wp-maintenance-mode
200
+ #: inc/wp-maintenance-mode-settings.php:130
201
  msgid "Date:"
202
  msgstr "Fecha:"
203
 
204
+ #@ wp-maintenance-mode
205
+ #: inc/wp-maintenance-mode-settings.php:134
206
  msgid "Activate countdown for using this. Use value and unit or use the countdown and set the date."
207
+ msgstr "Hay que activar la cuenta atr&aacute;s para usar esto, luego pon la fecha en la que quieres que termine la cuenta atr&aacute;s."
208
 
209
+ #@ wp-maintenance-mode
210
+ #: inc/wp-maintenance-mode-settings.php:139
211
  msgid "Value:"
212
  msgstr "Valor:"
213
 
214
+ #@ wp-maintenance-mode
215
+ #: inc/wp-maintenance-mode-settings.php:147
216
  msgid "Unit:"
217
  msgstr "Unidad:"
218
 
219
+ #@ wp-maintenance-mode
220
+ #: inc/wp-maintenance-mode-settings.php:151
221
  msgid "second"
222
  msgstr "segundo"
223
 
224
+ #@ wp-maintenance-mode
225
+ #: inc/wp-maintenance-mode-settings.php:152
226
  msgid "minute"
227
  msgstr "minuto"
228
 
229
+ #@ wp-maintenance-mode
230
+ #: inc/wp-maintenance-mode-settings.php:153
231
  msgid "hour"
232
  msgstr "hora"
233
 
234
+ #@ wp-maintenance-mode
235
+ #: inc/wp-maintenance-mode-settings.php:154
236
  msgid "day"
237
+ msgstr "d&iacute;a"
238
 
239
+ #@ wp-maintenance-mode
240
+ #: inc/wp-maintenance-mode-settings.php:155
241
  msgid "week"
242
  msgstr "semana"
243
 
244
+ #@ wp-maintenance-mode
245
+ #: inc/wp-maintenance-mode-settings.php:156
246
  msgid "month"
247
  msgstr "mes"
248
 
249
+ #@ wp-maintenance-mode
250
+ #: inc/wp-maintenance-mode-settings.php:157
251
  msgid "year"
252
+ msgstr "a&ntilde;o"
253
 
254
+ #@ wp-maintenance-mode
255
+ #: inc/wp-maintenance-mode-settings.php:163
256
  msgid "Link:"
257
  msgstr "Enlace:"
258
 
259
+ #@ wp-maintenance-mode
260
+ #: inc/wp-maintenance-mode-settings.php:171
261
+ msgid "Please leave a link to the plugin- and design-author on your maintenance mode site."
262
+ msgstr "Por favor, coloca un enlace al autor del plugin y del tema cuando tu sitio web est&aacute; en modo de mantenimento."
263
+
264
+ #@ wp-maintenance-mode
265
+ #: inc/wp-maintenance-mode-settings.php:176
266
+ msgid "Admin Link:"
267
+ msgstr "Enlace a Administraci&oacute;n:"
268
+
269
+ #@ wp-maintenance-mode
270
+ #: inc/wp-maintenance-mode-settings.php:184
271
+ msgid "Do you will a link to the admin area of your install?"
272
+ msgstr "&iquest;Deseas un enlace al &aacute;rea de Administraci&oacute;n en el modo de mantenimento?"
273
+
274
+ #@ wp-maintenance-mode
275
+ #: inc/wp-maintenance-mode-settings.php:189
276
  msgid "Theme:"
277
  msgstr "Tema:"
278
 
279
+ #@ wp-maintenance-mode
280
+ #: inc/wp-maintenance-mode-settings.php:193
281
  msgid "Own Style"
282
+ msgstr "Estilo propio"
283
 
284
+ #@ wp-maintenance-mode
285
+ #: inc/wp-maintenance-mode-settings.php:194
286
  msgid "Simple Text"
287
  msgstr "Texto Simple"
288
 
289
+ #@ wp-maintenance-mode
290
+ #: inc/wp-maintenance-mode-settings.php:195
291
  msgid "The Truck"
292
  msgstr "The Truck"
293
 
294
+ #@ wp-maintenance-mode
295
+ #: inc/wp-maintenance-mode-settings.php:196
296
  msgid "The Sun"
297
  msgstr "The Sun"
298
 
299
+ #@ wp-maintenance-mode
300
+ #: inc/wp-maintenance-mode-settings.php:197
301
  msgid "The FF Error"
302
  msgstr "The FF Error"
303
 
304
+ #@ wp-maintenance-mode
305
+ #: inc/wp-maintenance-mode-settings.php:198
306
  msgid "Monster"
307
  msgstr "Monster"
308
 
309
+ #@ wp-maintenance-mode
310
+ #: inc/wp-maintenance-mode-settings.php:199
311
  msgid "Chastely"
312
  msgstr "Chastely"
313
 
314
+ #@ wp-maintenance-mode
315
+ #: inc/wp-maintenance-mode-settings.php:200
316
  msgid "Only Typo"
317
  msgstr "Only Typo"
318
 
319
+ #@ wp-maintenance-mode
320
+ #: inc/wp-maintenance-mode-settings.php:201
321
  msgid "Paint"
322
  msgstr "Paint"
323
 
324
+ #@ wp-maintenance-mode
325
+ #: inc/wp-maintenance-mode-settings.php:202
326
+ msgid "Animate (Flash)"
327
+ msgstr "Animate (Flash)"
328
+
329
+ #@ wp-maintenance-mode
330
+ #: inc/wp-maintenance-mode-settings.php:203
331
  msgid "Damask"
332
  msgstr "Damask"
333
 
334
+ #@ wp-maintenance-mode
335
+ #: inc/wp-maintenance-mode-settings.php:204
336
  msgid "Lego"
337
  msgstr "Lego"
338
 
339
+ #@ wp-maintenance-mode
340
+ #: inc/wp-maintenance-mode-settings.php:205
341
+ msgid "Chemistry"
342
+ msgstr "Qu&iacute;mica"
343
+
344
+ #@ wp-maintenance-mode
345
+ #: inc/wp-maintenance-mode-settings.php:211
346
+ msgid "Own Style URL:"
347
+ msgstr "URL de tu estilo:"
348
+
349
+ #@ wp-maintenance-mode
350
+ #: inc/wp-maintenance-mode-settings.php:214
351
+ msgid "URL to the css-file (incl. http://)"
352
+ msgstr "URL de tu estilo (incluyendo http://)"
353
+
354
+ #@ wp-maintenance-mode
355
+ #: inc/wp-maintenance-mode-settings.php:216
356
+ 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!"
357
+ msgstr "<strong>Atenci&oacute;n:</strong> Por favor, no copies la hoja de estilos en la carpeta del plugin, ser&aacute; borrada en la pr&oacute;xima actualizaci&oacute;n automatica del plugin!"
358
+
359
+ #@ wp-maintenance-mode
360
+ #: inc/wp-maintenance-mode-settings.php:221
361
+ #: inc/wp-maintenance-mode-settings.php:245
362
+ msgid "Preview"
363
+ msgstr "Vista previa"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
364
 
365
+ #@ wp-maintenance-mode
366
+ #: inc/wp-maintenance-mode-settings.php:252
367
+ msgid "noindex, nofollow:"
368
+ msgstr "noindex, nofollow:"
369
 
370
+ #@ wp-maintenance-mode
371
+ #: inc/wp-maintenance-mode-settings.php:260
372
+ 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."
373
+ msgstr "La meta etiqueta robots permite controlar c&oacute;mo una p&aacute;gina individual debe ser indexada y presentada a los usuarios en los resultados de b&uacute;squeda. Establecer TRUE para noindex, nofollow y FALSO para index, follow."
374
 
375
+ #@ wp-maintenance-mode
376
+ #: inc/wp-maintenance-mode-settings.php:265
377
  msgid "Title:"
378
+ msgstr "T&iacute;tulo:"
 
 
 
 
 
379
 
380
+ #@ wp-maintenance-mode
381
+ #: inc/wp-maintenance-mode-settings.php:268
382
+ #: inc/wp-maintenance-mode-settings.php:276
383
+ #: inc/wp-maintenance-mode-settings.php:284
384
  msgid "Leave empty for default."
385
+ msgstr "Dejar vac&iacute;o para utilizar el valor por defecto."
386
 
387
+ #@ wp-maintenance-mode
388
+ #: inc/wp-maintenance-mode-settings.php:273
389
  msgid "Header:"
390
+ msgstr "Cabecera:"
391
 
392
+ #@ wp-maintenance-mode
393
+ #: inc/wp-maintenance-mode-settings.php:281
394
  msgid "Heading:"
395
+ msgstr "Encabezamiento:"
396
 
397
+ #@ wp-maintenance-mode
398
+ #: inc/wp-maintenance-mode-settings.php:289
399
+ msgid "Text:"
400
+ msgstr "Texto:"
 
 
 
 
401
 
402
+ #@ wp-maintenance-mode
403
+ #: inc/wp-maintenance-mode-settings.php:302
404
+ #, fuzzy
405
+ msgid "Exclude:"
406
+ msgstr "Excluir:"
407
+
408
+ #@ wp-maintenance-mode
409
+ #: inc/wp-maintenance-mode-settings.php:318
410
+ 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:"
411
+ msgstr "Excluye feeds, p&aacute;ginas, entradas o archivos del modo de mantenimiento. A&ntilde;ade el slug de las p&aacute;ginas o entradas a excluir separ&aacute;ndolas con una coma.<br />Ejemplo:"
412
+
413
+ #@ wp-maintenance-mode
414
+ #: inc/wp-maintenance-mode-settings.php:323
415
+ msgid "Backend Role:"
416
+ msgstr "Backend rol:"
417
+
418
+ #@ wp-maintenance-mode
419
+ #: inc/wp-maintenance-mode-settings.php:348
420
+ msgid "Allowed userrole to access the backend of this blog."
421
+ msgstr "Rol necesario para acceder al backend de este sitio."
422
+
423
+ #@ wp-maintenance-mode
424
+ #: inc/wp-maintenance-mode-settings.php:349
425
+ #: inc/wp-maintenance-mode-settings.php:380
426
+ msgid "Super Admin has always access."
427
+ msgstr "El usuario Super Admin siempre tiene acceso."
428
 
429
+ #@ wp-maintenance-mode
430
+ #: inc/wp-maintenance-mode-settings.php:354
431
+ msgid "Frontend Role:"
432
+ msgstr "Frontend rol:"
433
 
434
+ #@ wp-maintenance-mode
435
+ #: inc/wp-maintenance-mode-settings.php:379
436
  msgid "Allowed userrole to see the frontend of this blog."
437
+ msgstr "Rol necesario para ver el frontend de este sitio."
438
 
439
+ #@ wp-maintenance-mode
440
+ #: inc/wp-maintenance-mode-settings.php:385
441
+ msgid "Redirection:"
442
+ msgstr "Redirecci&oacute;n:"
443
 
444
+ #@ wp-maintenance-mode
445
+ #: inc/wp-maintenance-mode-settings.php:390
446
+ msgid "If you want that after the login the destination address is not standard to the dashboard, then defining a URL. (incl. http://)"
447
+ msgstr "Si deseas que despu&eacute;s del inicio de sesi&oacute;n la direcci&oacute;n de destino no sea la est&aacute;ndar en el Escritorio, define una URL (incluyendo http://)"
448
 
449
+ #@ wp-maintenance-mode
450
+ #: inc/wp-maintenance-mode-settings.php:413
451
+ msgid "Save"
452
+ msgstr "Guardar"
453
 
454
+ #@ wp-maintenance-mode
455
+ #: inc/wp-maintenance-mode-settings.php:295
456
+ #, php-format
457
+ 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."
458
+ msgstr "Utiliza el primer <em>%1$s</em> para la cuenta atr&aacute;s y el segundo <em>%2$s</em> para la unidad de tiempo. Se puede usar HTML y shortcodes."
459
+
460
+ #@ wp-maintenance-mode
461
+ #: inc/wp-maintenance-mode-settings.php:296
462
+ msgid "Use <code>[loginform]</code> for add the default login form in the maintenance page."
463
+ msgstr "Utiliza <code>[loginform]</code> para a&ntilde;adir el formulario de inicio de sesi&oacute;n en el modo de mantenimiento."
464
+
465
+ #@ wp-maintenance-mode
466
+ #: inc/wp-maintenance-mode-settings.php:396
467
+ msgid "Notice:"
468
+ msgstr "Avisos:"
469
+
470
+ #@ wp-maintenance-mode
471
+ #: inc/wp-maintenance-mode-settings.php:403
472
+ msgid "Do you will see all notices, inside backend, the Admin Bar and the login screen?"
473
+ msgstr "&iquest;Deseas ver los avisos en el backend, la barra de administraci&oacute;n y la pantalla de inicio de sesi&oacute;n?"
474
+
475
+ #@ default
476
+ #: index.php:25
477
+ msgid "Cheatin&#8217; uh?"
478
+ msgstr "&iquest;Haciendo trampas?"
479
 
480
+ #@ wp-maintenance-mode
481
  #. translators: plugin header field 'Name'
482
  #: wp-maintenance-mode.php:0
483
  msgid "WP Maintenance Mode"
484
+ msgstr "WP Maintenance Mode"
485
 
486
+ #@ wp-maintenance-mode
487
  #. translators: plugin header field 'PluginURI'
488
  #: wp-maintenance-mode.php:0
489
+ msgid "http://wordpress.org/extend/plugins/wp-maintenance-mode/"
490
+ msgstr "http://wordpress.org/extend/plugins/wp-maintenance-mode/"
491
 
492
+ #@ wp-maintenance-mode
493
+ #. translators: plugin header field 'Description'
494
+ #: wp-maintenance-mode.php:0
495
+ 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."
496
+ msgstr "Este plugin agrega una p&aacute;gina de inicio al sitio web que permite informar a los visitantes de que el blog se encuentra en mantenimiento. Los usuarios registrados que hayan iniciado sesi&oacute;n tendr&aacute;n acceso completo al blog incluyendo el frontend, seg&uacute;n la configuraci&oacute;n."
497
+
498
+ #@ wp-maintenance-mode
499
  #. translators: plugin header field 'Author'
500
  #: wp-maintenance-mode.php:0
501
  msgid "Frank B&uuml;ltge"
502
  msgstr "Frank B&uuml;ltge"
503
 
504
+ #@ wp-maintenance-mode
505
  #. translators: plugin header field 'AuthorURI'
506
  #: wp-maintenance-mode.php:0
507
  msgid "http://bueltge.de/"
508
  msgstr "http://bueltge.de/"
509
 
510
+ #@ wp-maintenance-mode
 
 
 
 
 
 
 
 
 
 
 
 
 
 
511
  #. translators: plugin header field 'Version'
512
  #: wp-maintenance-mode.php:0
513
+ msgid "1.8.5"
514
+ msgstr "1.8.5"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
515
 
 
 
languages/wp-maintenance-mode-tr_TR.mo CHANGED
Binary file
languages/wp-maintenance-mode-tr_TR.po CHANGED
@@ -4,330 +4,317 @@ msgstr ""
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: Hüseyin Ülkü <huseyinulku@gmail.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-Poedit-Language: \n"
14
- "X-Poedit-Country: \n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
- "X-Poedit-Basepath: \n"
18
- "X-Poedit-Bookmarks: \n"
 
19
  "X-Poedit-SearchPath-0: .\n"
20
- "X-Textdomain-Support: yes"
21
 
22
  #: !wartungsmodus.php:119
23
  msgid "Settings"
24
- msgstr ""
25
 
 
26
  #: !wartungsmodus.php:212
27
- #@ wartungsmodus
28
  msgid "Save"
29
  msgstr "Kaydet"
30
 
31
- #: !wartungsmodus.php:238
32
- #: !wartungsmodus.php:273
33
- #@ wartungsmodus
34
  msgid "Updated"
35
  msgstr "Güncellendi"
36
 
 
37
  #: site.php:83
38
- #@ wartungsmodus
39
  msgid "Admin-Login"
40
  msgstr "Yönetici Girişi"
41
 
 
42
  #: !wartungsmodus.php:382
43
- #@ wartungsmodus
44
  msgid "Plugin by:"
45
  msgstr "Eklenti yazarı:"
46
 
47
- #: !wartungsmodus.php:384
48
- #: !wartungsmodus.php:387
49
- #: !wartungsmodus.php:390
50
- #: !wartungsmodus.php:393
51
- #: !wartungsmodus.php:396
52
- #: !wartungsmodus.php:399
53
- #: !wartungsmodus.php:402
54
- #: !wartungsmodus.php:405
55
- #: !wartungsmodus.php:408
56
  #: !wartungsmodus.php:411
57
- #@ wartungsmodus
58
  msgid "Design by:"
59
  msgstr "Tasarımcı:"
60
 
 
61
  #: !wartungsmodus.php:153
62
- #@ wartungsmodus
63
  msgid "Plugin Settings"
64
  msgstr "Eklenti Ayarları"
65
 
 
66
  #: !wartungsmodus.php:140
67
  #, php-format
68
- #@ wartungsmodus
69
  msgid "Plugin %s settings <strong>updated</strong>."
70
  msgstr "Eklenti %s ayarları <strong>güncellendi</strong>."
71
 
72
- #: site.php:7
73
- #: site.php:77
74
- #@ wartungsmodus
75
  msgid "Maintenance Mode"
76
  msgstr "Bakım Modu"
77
 
 
78
  #: !wartungsmodus.php:178
79
- #@ wartungsmodus
80
  msgid "Link:"
81
  msgstr "Bağlantı:"
82
 
 
83
  #: !wartungsmodus.php:183
84
- #@ wartungsmodus
85
  msgid "Theme:"
86
  msgstr "Tema:"
87
 
 
88
  #: !wartungsmodus.php:186
89
- #@ wartungsmodus
90
  msgid "Simple Text"
91
  msgstr "Basit Metin"
92
 
 
93
  #: !wartungsmodus.php:187
94
- #@ wartungsmodus
95
  msgid "The Truck"
96
  msgstr "Kamyon"
97
 
 
98
  #: !wartungsmodus.php:164
99
- #@ wartungsmodus
100
  msgid "Value:"
101
  msgstr "Değer:"
102
 
 
103
  #: !wartungsmodus.php:166
104
- #@ wartungsmodus
105
  msgid "Unit:"
106
  msgstr "Birim:"
107
 
 
108
  #: !wartungsmodus.php:168
109
- #@ wartungsmodus
110
  msgid "second"
111
  msgstr "saniye"
112
 
 
113
  #: !wartungsmodus.php:169
114
- #@ wartungsmodus
115
  msgid "minute"
116
  msgstr "dakika"
117
 
 
118
  #: !wartungsmodus.php:170
119
- #@ wartungsmodus
120
  msgid "hour"
121
  msgstr "saat"
122
 
 
123
  #: !wartungsmodus.php:171
124
- #@ wartungsmodus
125
  msgid "day"
126
  msgstr "gün"
127
 
 
128
  #: !wartungsmodus.php:172
129
- #@ wartungsmodus
130
  msgid "week"
131
  msgstr "hafta"
132
 
 
133
  #: !wartungsmodus.php:173
134
- #@ wartungsmodus
135
  msgid "month"
136
  msgstr "ay"
137
 
 
138
  #: !wartungsmodus.php:174
139
- #@ wartungsmodus
140
  msgid "year"
141
  msgstr "yıl"
142
 
143
- #: !wartungsmodus.php:147
144
- #: !wartungsmodus.php:158
145
- #: !wartungsmodus.php:180
146
- #@ wartungsmodus
147
  msgid "False"
148
  msgstr "Hayır"
149
 
150
- #: !wartungsmodus.php:148
151
- #: !wartungsmodus.php:159
152
- #: !wartungsmodus.php:181
153
- #@ wartungsmodus
154
  msgid "True"
155
  msgstr "Evet"
156
 
157
- #: !wartungsmodus.php:327
158
- #: site.php:39
159
- #: site.php:44
160
- #@ wartungsmodus
161
  msgid "seconds"
162
  msgstr "saniye"
163
 
164
- #: !wartungsmodus.php:331
165
- #: site.php:39
166
- #: site.php:44
167
- #@ wartungsmodus
168
  msgid "minutes"
169
  msgstr "dakika"
170
 
171
- #: !wartungsmodus.php:335
172
- #: site.php:39
173
- #: site.php:44
174
- #@ wartungsmodus
175
  msgid "hours"
176
  msgstr "saat"
177
 
178
- #: !wartungsmodus.php:339
179
- #: site.php:39
180
- #: site.php:44
181
- #@ wartungsmodus
182
  msgid "days"
183
  msgstr "gün"
184
 
 
185
  #: !wartungsmodus.php:343
186
- #@ wartungsmodus
187
  msgid "weeks"
188
  msgstr "hafta"
189
 
 
190
  #: !wartungsmodus.php:347
191
- #@ wartungsmodus
192
  msgid "moths"
193
  msgstr "ay"
194
 
 
195
  #: !wartungsmodus.php:351
196
- #@ wartungsmodus
197
  msgid "years"
198
  msgstr "yıl"
199
 
 
200
  #: !wartungsmodus.php:141
201
  #, php-format
202
- #@ wartungsmodus
203
  msgid "Plugin %s active status <strong>updated</strong>."
204
  msgstr "Eklenti %s etkinlik durumu <strong>güncellendi</strong>."
205
 
 
206
  #: !wartungsmodus.php:143
207
- #@ wartungsmodus
208
  msgid "Plugin Activate"
209
  msgstr "Eklentiyi Etkinleştir"
210
 
 
211
  #: !wartungsmodus.php:185
212
- #@ wartungsmodus
213
  msgid "Own Style"
214
  msgstr "Kendi Stili"
215
 
 
216
  #: !wartungsmodus.php:188
217
- #@ wartungsmodus
218
  msgid "The Sun"
219
  msgstr "Güneş"
220
 
 
221
  #: !wartungsmodus.php:189
222
- #@ wartungsmodus
223
  msgid "The FF Error"
224
  msgstr "FF Hatası"
225
 
 
226
  #: !wartungsmodus.php:190
227
- #@ wartungsmodus
228
  msgid "Monster"
229
  msgstr "Canavar"
230
 
 
231
  #: !wartungsmodus.php:198
232
- #@ wartungsmodus
233
  msgid "Own Style URL (incl. http://):"
234
  msgstr "Kendi Stil URL'si (http:// ile)"
235
 
 
236
  #: !wartungsmodus.php:202
237
- #@ wartungsmodus
238
  msgid "Text:"
239
  msgstr "Metin:"
240
 
 
241
  #: !wartungsmodus.php:311
242
- #@ wartungsmodus
243
  msgid "Coution: Maintenance mode is <strong>active</strong>!"
244
  msgstr "Dikkat: Bakım modu<strong> aktif</strong>!"
245
 
 
246
  #: !wartungsmodus.php:150
247
- #@ wartungsmodus
248
  msgid "Update"
249
  msgstr "Güncelle"
250
 
 
251
  #: !wartungsmodus.php:191
252
- #@ wartungsmodus
253
  msgid "Chastely"
254
  msgstr "Chastely"
255
 
 
256
  #: !wartungsmodus.php:192
257
- #@ wartungsmodus
258
  msgid "Only Typo"
259
  msgstr "Only Typo"
260
 
 
261
  #: !wartungsmodus.php:193
262
- #@ wartungsmodus
263
  msgid "Paint"
264
  msgstr "Paint"
265
 
 
266
  #: !wartungsmodus.php:194
267
- #@ wartungsmodus
268
  msgid "Animate (Flash, only german)"
269
  msgstr "Animate (Flash, sadece Almanca)"
270
 
 
271
  #: !wartungsmodus.php:311
272
- #@ wartungsmodus
273
  msgid "Deactivate or change Settings"
274
  msgstr "Devre dışı bırakmak veya değiştirmek Ayarlar"
275
 
 
276
  #: !wartungsmodus.php:156
277
- #@ wartungsmodus
278
  msgid "Countdown:"
279
- msgstr ""
280
 
281
- #: !wartungsmodus.php:161
282
- #: !wartungsmodus.php:162
283
- #@ wartungsmodus
284
  msgid "Click for datepicker"
285
- msgstr ""
286
 
 
287
  #: !wartungsmodus.php:161
288
- #@ wartungsmodus
289
  msgid "Date:"
290
- msgstr ""
291
 
 
292
  #: !wartungsmodus.php:163
293
- #@ wartungsmodus
294
- msgid "Activate countdown for using this. Use value and unit or use the countdown and set the date."
 
295
  msgstr ""
 
 
296
 
 
297
  #: !wartungsmodus.php:195
298
- #@ wartungsmodus
299
  msgid "Damask"
300
- msgstr ""
301
 
 
302
  #: !wartungsmodus.php:196
303
- #@ wartungsmodus
304
  msgid "Lego"
305
- msgstr ""
306
 
 
307
  #: !wartungsmodus.php:206
308
- #@ wartungsmodus
309
  msgid "Excludes:"
310
- msgstr ""
311
 
 
312
  #: !wartungsmodus.php:209
313
- #@ wartungsmodus
314
- msgid "Exlude pages, posts or archives from the maintenance mode. Add the Slug of page or post as a comma-separated list.<br />Example: "
 
315
  msgstr ""
 
 
316
 
 
317
  #: site.php:37
318
- #@ wartungsmodus
319
  msgid "The due date was before"
320
- msgstr ""
321
 
322
- #: site.php:39
323
- #: site.php:44
324
- #@ wartungsmodus
325
  msgid "and"
326
- msgstr ""
327
 
 
328
  #: !wartungsmodus.php:202
329
  #, php-format
330
- #@ wartungsmodus
331
- msgid "(Use the first %s for the time value or countdown and second %s for the unit of the time, HTML is possible)"
 
332
  msgstr ""
333
-
 
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: Omer Faruk <info@yakalasam.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-Poedit-SourceCharset: utf-8\n"
14
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
15
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
16
+ "X-Textdomain-Support: yes\n"
17
+ "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
 
19
 
20
  #: !wartungsmodus.php:119
21
  msgid "Settings"
22
+ msgstr "Ayarlar"
23
 
24
+ # @ wartungsmodus
25
  #: !wartungsmodus.php:212
 
26
  msgid "Save"
27
  msgstr "Kaydet"
28
 
29
+ # @ wartungsmodus
30
+ #: !wartungsmodus.php:238 !wartungsmodus.php:273
 
31
  msgid "Updated"
32
  msgstr "Güncellendi"
33
 
34
+ # @ wartungsmodus
35
  #: site.php:83
 
36
  msgid "Admin-Login"
37
  msgstr "Yönetici Girişi"
38
 
39
+ # @ wartungsmodus
40
  #: !wartungsmodus.php:382
 
41
  msgid "Plugin by:"
42
  msgstr "Eklenti yazarı:"
43
 
44
+ # @ wartungsmodus
45
+ #: !wartungsmodus.php:384 !wartungsmodus.php:387 !wartungsmodus.php:390
46
+ #: !wartungsmodus.php:393 !wartungsmodus.php:396 !wartungsmodus.php:399
47
+ #: !wartungsmodus.php:402 !wartungsmodus.php:405 !wartungsmodus.php:408
 
 
 
 
 
48
  #: !wartungsmodus.php:411
 
49
  msgid "Design by:"
50
  msgstr "Tasarımcı:"
51
 
52
+ # @ wartungsmodus
53
  #: !wartungsmodus.php:153
 
54
  msgid "Plugin Settings"
55
  msgstr "Eklenti Ayarları"
56
 
57
+ # @ wartungsmodus
58
  #: !wartungsmodus.php:140
59
  #, php-format
 
60
  msgid "Plugin %s settings <strong>updated</strong>."
61
  msgstr "Eklenti %s ayarları <strong>güncellendi</strong>."
62
 
63
+ # @ wartungsmodus
64
+ #: site.php:7 site.php:77
 
65
  msgid "Maintenance Mode"
66
  msgstr "Bakım Modu"
67
 
68
+ # @ wartungsmodus
69
  #: !wartungsmodus.php:178
 
70
  msgid "Link:"
71
  msgstr "Bağlantı:"
72
 
73
+ # @ wartungsmodus
74
  #: !wartungsmodus.php:183
 
75
  msgid "Theme:"
76
  msgstr "Tema:"
77
 
78
+ # @ wartungsmodus
79
  #: !wartungsmodus.php:186
 
80
  msgid "Simple Text"
81
  msgstr "Basit Metin"
82
 
83
+ # @ wartungsmodus
84
  #: !wartungsmodus.php:187
 
85
  msgid "The Truck"
86
  msgstr "Kamyon"
87
 
88
+ # @ wartungsmodus
89
  #: !wartungsmodus.php:164
 
90
  msgid "Value:"
91
  msgstr "Değer:"
92
 
93
+ # @ wartungsmodus
94
  #: !wartungsmodus.php:166
 
95
  msgid "Unit:"
96
  msgstr "Birim:"
97
 
98
+ # @ wartungsmodus
99
  #: !wartungsmodus.php:168
 
100
  msgid "second"
101
  msgstr "saniye"
102
 
103
+ # @ wartungsmodus
104
  #: !wartungsmodus.php:169
 
105
  msgid "minute"
106
  msgstr "dakika"
107
 
108
+ # @ wartungsmodus
109
  #: !wartungsmodus.php:170
 
110
  msgid "hour"
111
  msgstr "saat"
112
 
113
+ # @ wartungsmodus
114
  #: !wartungsmodus.php:171
 
115
  msgid "day"
116
  msgstr "gün"
117
 
118
+ # @ wartungsmodus
119
  #: !wartungsmodus.php:172
 
120
  msgid "week"
121
  msgstr "hafta"
122
 
123
+ # @ wartungsmodus
124
  #: !wartungsmodus.php:173
 
125
  msgid "month"
126
  msgstr "ay"
127
 
128
+ # @ wartungsmodus
129
  #: !wartungsmodus.php:174
 
130
  msgid "year"
131
  msgstr "yıl"
132
 
133
+ # @ wartungsmodus
134
+ #: !wartungsmodus.php:147 !wartungsmodus.php:158 !wartungsmodus.php:180
 
 
135
  msgid "False"
136
  msgstr "Hayır"
137
 
138
+ # @ wartungsmodus
139
+ #: !wartungsmodus.php:148 !wartungsmodus.php:159 !wartungsmodus.php:181
 
 
140
  msgid "True"
141
  msgstr "Evet"
142
 
143
+ # @ wartungsmodus
144
+ #: !wartungsmodus.php:327 site.php:39 site.php:44
 
 
145
  msgid "seconds"
146
  msgstr "saniye"
147
 
148
+ # @ wartungsmodus
149
+ #: !wartungsmodus.php:331 site.php:39 site.php:44
 
 
150
  msgid "minutes"
151
  msgstr "dakika"
152
 
153
+ # @ wartungsmodus
154
+ #: !wartungsmodus.php:335 site.php:39 site.php:44
 
 
155
  msgid "hours"
156
  msgstr "saat"
157
 
158
+ # @ wartungsmodus
159
+ #: !wartungsmodus.php:339 site.php:39 site.php:44
 
 
160
  msgid "days"
161
  msgstr "gün"
162
 
163
+ # @ wartungsmodus
164
  #: !wartungsmodus.php:343
 
165
  msgid "weeks"
166
  msgstr "hafta"
167
 
168
+ # @ wartungsmodus
169
  #: !wartungsmodus.php:347
 
170
  msgid "moths"
171
  msgstr "ay"
172
 
173
+ # @ wartungsmodus
174
  #: !wartungsmodus.php:351
 
175
  msgid "years"
176
  msgstr "yıl"
177
 
178
+ # @ wartungsmodus
179
  #: !wartungsmodus.php:141
180
  #, php-format
 
181
  msgid "Plugin %s active status <strong>updated</strong>."
182
  msgstr "Eklenti %s etkinlik durumu <strong>güncellendi</strong>."
183
 
184
+ # @ wartungsmodus
185
  #: !wartungsmodus.php:143
 
186
  msgid "Plugin Activate"
187
  msgstr "Eklentiyi Etkinleştir"
188
 
189
+ # @ wartungsmodus
190
  #: !wartungsmodus.php:185
 
191
  msgid "Own Style"
192
  msgstr "Kendi Stili"
193
 
194
+ # @ wartungsmodus
195
  #: !wartungsmodus.php:188
 
196
  msgid "The Sun"
197
  msgstr "Güneş"
198
 
199
+ # @ wartungsmodus
200
  #: !wartungsmodus.php:189
 
201
  msgid "The FF Error"
202
  msgstr "FF Hatası"
203
 
204
+ # @ wartungsmodus
205
  #: !wartungsmodus.php:190
 
206
  msgid "Monster"
207
  msgstr "Canavar"
208
 
209
+ # @ wartungsmodus
210
  #: !wartungsmodus.php:198
 
211
  msgid "Own Style URL (incl. http://):"
212
  msgstr "Kendi Stil URL'si (http:// ile)"
213
 
214
+ # @ wartungsmodus
215
  #: !wartungsmodus.php:202
 
216
  msgid "Text:"
217
  msgstr "Metin:"
218
 
219
+ # @ wartungsmodus
220
  #: !wartungsmodus.php:311
 
221
  msgid "Coution: Maintenance mode is <strong>active</strong>!"
222
  msgstr "Dikkat: Bakım modu<strong> aktif</strong>!"
223
 
224
+ # @ wartungsmodus
225
  #: !wartungsmodus.php:150
 
226
  msgid "Update"
227
  msgstr "Güncelle"
228
 
229
+ # @ wartungsmodus
230
  #: !wartungsmodus.php:191
 
231
  msgid "Chastely"
232
  msgstr "Chastely"
233
 
234
+ # @ wartungsmodus
235
  #: !wartungsmodus.php:192
 
236
  msgid "Only Typo"
237
  msgstr "Only Typo"
238
 
239
+ # @ wartungsmodus
240
  #: !wartungsmodus.php:193
 
241
  msgid "Paint"
242
  msgstr "Paint"
243
 
244
+ # @ wartungsmodus
245
  #: !wartungsmodus.php:194
 
246
  msgid "Animate (Flash, only german)"
247
  msgstr "Animate (Flash, sadece Almanca)"
248
 
249
+ # @ wartungsmodus
250
  #: !wartungsmodus.php:311
 
251
  msgid "Deactivate or change Settings"
252
  msgstr "Devre dışı bırakmak veya değiştirmek Ayarlar"
253
 
254
+ # @ wartungsmodus
255
  #: !wartungsmodus.php:156
 
256
  msgid "Countdown:"
257
+ msgstr "Geri Sayım:"
258
 
259
+ # @ wartungsmodus
260
+ #: !wartungsmodus.php:161 !wartungsmodus.php:162
 
261
  msgid "Click for datepicker"
262
+ msgstr "Tarih Belirleyici için Tıklayın"
263
 
264
+ # @ wartungsmodus
265
  #: !wartungsmodus.php:161
 
266
  msgid "Date:"
267
+ msgstr "Tarih:"
268
 
269
+ # @ wartungsmodus
270
  #: !wartungsmodus.php:163
271
+ msgid ""
272
+ "Activate countdown for using this. Use value and unit or use the countdown "
273
+ "and set the date."
274
  msgstr ""
275
+ "Bunu kullanmak için geri sayımı aktif edin. Değer ve birimi kullanın veya "
276
+ "geri sayımı kullanın ve tarihi ayarlayın."
277
 
278
+ # @ wartungsmodus
279
  #: !wartungsmodus.php:195
 
280
  msgid "Damask"
281
+ msgstr "Süsleme"
282
 
283
+ # @ wartungsmodus
284
  #: !wartungsmodus.php:196
 
285
  msgid "Lego"
286
+ msgstr "Lego"
287
 
288
+ # @ wartungsmodus
289
  #: !wartungsmodus.php:206
 
290
  msgid "Excludes:"
291
+ msgstr "Hariç Tutulanlar:"
292
 
293
+ # @ wartungsmodus
294
  #: !wartungsmodus.php:209
295
+ msgid ""
296
+ "Exlude pages, posts or archives from the maintenance mode. Add the Slug of "
297
+ "page or post as a comma-separated list.<br />Example: "
298
  msgstr ""
299
+ "Bakım modundan sayfaları, yazıları veya arşivi hariç tut. Virgül kullanarak "
300
+ "yazıların veya sayfaların sloganlarını ekle.<br />Örnek: "
301
 
302
+ # @ wartungsmodus
303
  #: site.php:37
 
304
  msgid "The due date was before"
305
+ msgstr "Öncesinden bitim tarihi:"
306
 
307
+ # @ wartungsmodus
308
+ #: site.php:39 site.php:44
 
309
  msgid "and"
310
+ msgstr "ve"
311
 
312
+ # @ wartungsmodus
313
  #: !wartungsmodus.php:202
314
  #, php-format
315
+ msgid ""
316
+ "(Use the first %s for the time value or countdown and second %s for the unit "
317
+ "of the time, HTML is possible)"
318
  msgstr ""
319
+ "(Geri sayım veya zaman değeri için öncelikle %s ve zaman birimi için %s "
320
+ "saniye kullan. HTML kullanılabilinir)"
languages/wp-maintenance-mode-xx_XX.pot CHANGED
@@ -1,482 +1,518 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2012-11-14 12:06+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;"
15
- "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
16
- "X-Poedit-Basepath: c:\\xampp\\htdocs\\wp-plugins\\wp-maintenance-mode\\\n"
17
- "X-Textdomain-Support: yes\n"
18
- "X-Generator: Poedit 1.5.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
 
20
 
21
- # @ wp-maintenance-mode
22
- #: site.php:15 site.php:57
 
23
  msgid "Maintenance Mode"
24
  msgstr "Wartungsmodus"
25
 
26
- # @ wp-maintenance-mode
27
- #: site.php:64
28
  msgid "Access to the admin area blocked"
29
  msgstr "Zugang zum Admin-Bereich wurde blockiert"
30
 
31
- # @ wp-maintenance-mode
32
- #: site.php:67
33
  msgid "Admin-Logout"
34
  msgstr "Admin-Logout"
35
 
36
- # @ wp-maintenance-mode
37
- #: site.php:71
38
  msgid "Admin-Login"
39
  msgstr "Admin-Login"
40
 
41
- # @ default
42
- #: wp-maintenance-mode.php:209 wp-maintenance-mode.php:219
 
43
  msgid "Settings"
44
  msgstr "Einstellungen"
45
 
46
- # @ wp-maintenance-mode
47
- #: wp-maintenance-mode.php:236
48
  msgid "Maintenance mode"
49
  msgstr "Wartungsmodus"
50
 
51
- #: wp-maintenance-mode.php:237
52
  #, php-format
53
- msgid ""
54
- "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
55
- "scheduled maintenance.<br /><strong>Please try back in %1$s %2$s</"
56
- "strong><br />Thank you for your understanding.</p>"
57
- msgstr ""
58
- "<p>Es tut uns leid..<br />Auf unserer Site werden aktuelle Wartungsarbeiten "
59
- "durchgeführt.<br /><strong>Bitte besuche uns in %1$s %2$s</strong> wieder."
60
- "<br />Vielen Dank für das Verständnis.</p>"
61
 
62
- # @ wp-maintenance-mode
63
- #: wp-maintenance-mode.php:277 wp-maintenance-mode.php:339
 
64
  msgid "Updated"
65
  msgstr "Gespeichert"
66
 
67
- # @ wp-maintenance-mode
68
- #: wp-maintenance-mode.php:477
69
  msgid "seconds"
70
  msgstr "Sekunden"
71
 
72
- # @ wp-maintenance-mode
73
- #: wp-maintenance-mode.php:481
74
  msgid "minutes"
75
  msgstr "Minuten"
76
 
77
- # @ wp-maintenance-mode
78
- #: wp-maintenance-mode.php:485
79
  msgid "hours"
80
  msgstr "Stunden"
81
 
82
- # @ wp-maintenance-mode
83
- #: wp-maintenance-mode.php:489
84
  msgid "days"
85
  msgstr "Tagen"
86
 
87
- # @ wp-maintenance-mode
88
- #: wp-maintenance-mode.php:493
89
  msgid "weeks"
90
  msgstr "Wochen"
91
 
92
- # @ wp-maintenance-mode
93
- #: wp-maintenance-mode.php:497
94
  msgid "months"
95
  msgstr "Monate"
96
 
97
- # @ wp-maintenance-mode
98
- #: wp-maintenance-mode.php:501
99
  msgid "years"
100
  msgstr "Jahren"
101
 
102
- #: wp-maintenance-mode.php:565
 
103
  msgid " &amp; WP Super Cache flushed."
104
  msgstr " &amp; WP Super Cache aktualisiert."
105
 
106
- #: wp-maintenance-mode.php:572
 
107
  msgid " &amp; W3 Total Cache for pages flushed."
108
  msgstr " &amp; W3 Total Cache für Seiten aktualisiert."
109
 
110
- # @ wp-maintenance-mode
111
- #: wp-maintenance-mode.php:575 wp-maintenance-mode.php:853
 
112
  msgid "Caution: Maintenance mode is <strong>active</strong>!"
113
  msgstr "Achtung: Wartungsmodus ist <strong>aktiv</strong>!"
114
 
115
- # @ wp-maintenance-mode
116
- #: wp-maintenance-mode.php:577 wp-maintenance-mode.php:581
117
  msgid "Deactivate or change Settings"
118
  msgstr "Deaktivieren oder Einstellungen ändern "
119
 
120
- # @ wp-maintenance-mode
121
- #: wp-maintenance-mode.php:651
122
  msgid "Plugin by:"
123
  msgstr "Plugin von:"
124
 
125
- # @ wp-maintenance-mode
126
- #: wp-maintenance-mode.php:653 wp-maintenance-mode.php:655
127
- #: wp-maintenance-mode.php:657 wp-maintenance-mode.php:659
128
- #: wp-maintenance-mode.php:661 wp-maintenance-mode.php:663
129
- #: wp-maintenance-mode.php:665 wp-maintenance-mode.php:667
130
- #: wp-maintenance-mode.php:669 wp-maintenance-mode.php:671
131
- #: wp-maintenance-mode.php:673
 
 
 
 
 
132
  msgid "Design by:"
133
  msgstr "Design von:"
134
 
135
- # @ wp-maintenance-mode
136
- #: inc/wp-maintenance-mode-settings.php:37
137
- #: inc/wp-maintenance-mode-settings.php:313
138
  #, php-format
 
139
  msgid "Plugin %s settings <strong>updated</strong>."
140
  msgstr "Plugin %s Einstellungen <strong>gespeichert</strong>."
141
 
142
- # @ wp-maintenance-mode
143
- #: inc/wp-maintenance-mode-settings.php:40
144
- #: inc/wp-maintenance-mode-settings.php:53
145
  #, php-format
 
146
  msgid "Plugin %s active status <strong>updated</strong>."
147
  msgstr "Plugin %s aktiv-status <strong>aktualisiert</strong>."
148
 
149
- # @ wp-maintenance-mode
150
- #: inc/wp-maintenance-mode-settings.php:43
151
  msgid "Plugin Activate"
152
  msgstr "Plugin aktivieren"
153
 
154
- # @ wp-maintenance-mode
155
- #: inc/wp-maintenance-mode-settings.php:47
156
- #: inc/wp-maintenance-mode-settings.php:66
157
- #: inc/wp-maintenance-mode-settings.php:110
158
  #: inc/wp-maintenance-mode-settings.php:123
159
- #: inc/wp-maintenance-mode-settings.php:176
 
 
 
 
160
  msgid "False"
161
  msgstr "Nein"
162
 
163
- # @ wp-maintenance-mode
164
- #: inc/wp-maintenance-mode-settings.php:48
165
- #: inc/wp-maintenance-mode-settings.php:67
166
- #: inc/wp-maintenance-mode-settings.php:111
167
  #: inc/wp-maintenance-mode-settings.php:124
168
- #: inc/wp-maintenance-mode-settings.php:177
 
 
 
 
169
  msgid "True"
170
  msgstr "Ja"
171
 
172
- # @ wp-maintenance-mode
173
- #: inc/wp-maintenance-mode-settings.php:50
174
  msgid "Update"
175
  msgstr "Aktualisieren"
176
 
177
- # @ wp-maintenance-mode
178
- #: inc/wp-maintenance-mode-settings.php:56
179
  msgid "Plugin Settings"
180
  msgstr "Plugin Einstellungen"
181
 
182
- # @ wp-maintenance-mode
183
- #: inc/wp-maintenance-mode-settings.php:62
184
  msgid "Countdown:"
185
  msgstr "Countdown:"
186
 
187
- # @ wp-maintenance-mode
188
- #: inc/wp-maintenance-mode-settings.php:73
189
- #: inc/wp-maintenance-mode-settings.php:76
190
  msgid "Click for datepicker"
191
  msgstr "Klick für den Datums-Picker"
192
 
193
- # @ wp-maintenance-mode
194
- #: inc/wp-maintenance-mode-settings.php:73
195
  msgid "Date:"
196
  msgstr "Datum:"
197
 
198
- # @ wp-maintenance-mode
199
- #: inc/wp-maintenance-mode-settings.php:77
200
- msgid ""
201
- "Activate countdown for using this. Use value and unit or use the countdown "
202
- "and set the date."
203
- msgstr ""
204
- "Aktiviere den Countdown um ihn zu nutzen. Vergebe Wert und Einheit oder "
205
- "wähle ein Datum für den Countdown."
206
 
207
- # @ wp-maintenance-mode
208
- #: inc/wp-maintenance-mode-settings.php:82
209
  msgid "Value:"
210
  msgstr "Wert:"
211
 
212
- # @ wp-maintenance-mode
213
- #: inc/wp-maintenance-mode-settings.php:90
214
  msgid "Unit:"
215
  msgstr "Einheit:"
216
 
217
- # @ wp-maintenance-mode
218
- #: inc/wp-maintenance-mode-settings.php:94
219
  msgid "second"
220
  msgstr "sekunde"
221
 
222
- # @ wp-maintenance-mode
223
- #: inc/wp-maintenance-mode-settings.php:95
224
  msgid "minute"
225
  msgstr "minute"
226
 
227
- # @ wp-maintenance-mode
228
- #: inc/wp-maintenance-mode-settings.php:96
229
  msgid "hour"
230
  msgstr "stunde"
231
 
232
- # @ wp-maintenance-mode
233
- #: inc/wp-maintenance-mode-settings.php:97
234
  msgid "day"
235
  msgstr "tag"
236
 
237
- # @ wp-maintenance-mode
238
- #: inc/wp-maintenance-mode-settings.php:98
239
  msgid "week"
240
  msgstr "woche"
241
 
242
- # @ wp-maintenance-mode
243
- #: inc/wp-maintenance-mode-settings.php:99
244
  msgid "month"
245
  msgstr "monat"
246
 
247
- # @ wp-maintenance-mode
248
- #: inc/wp-maintenance-mode-settings.php:100
249
  msgid "year"
250
  msgstr "jahr"
251
 
252
- # @ wp-maintenance-mode
253
- #: inc/wp-maintenance-mode-settings.php:106
254
  msgid "Link:"
255
  msgstr "Link:"
256
 
257
- # @ wp-maintenance-mode
258
- #: inc/wp-maintenance-mode-settings.php:114
259
- msgid ""
260
- "Please leave a link to the plugin- and design-author on your maintenance "
261
- "mode site."
262
- msgstr ""
263
- "Bitte hinterlasse einen Link zum Plugin- und Design-Autor auf deiner "
264
- "Wartungsmodus-Seite."
265
 
266
- # @ wp-maintenance-mode
267
- #: inc/wp-maintenance-mode-settings.php:119
268
  msgid "Admin Link:"
269
  msgstr "Admin Link:"
270
 
271
- #: inc/wp-maintenance-mode-settings.php:127
 
272
  msgid "Do you will a link to the admin area of your install?"
273
  msgstr "Willst du einen Link zum Admin Bereich dieser Installation?"
274
 
275
- # @ wp-maintenance-mode
276
- #: inc/wp-maintenance-mode-settings.php:132
277
  msgid "Theme:"
278
  msgstr "Theme:"
279
 
280
- # @ wp-maintenance-mode
281
- #: inc/wp-maintenance-mode-settings.php:136
282
  msgid "Own Style"
283
  msgstr "Eigenes Design"
284
 
285
- # @ wp-maintenance-mode
286
- #: inc/wp-maintenance-mode-settings.php:137
287
  msgid "Simple Text"
288
  msgstr "Einfach Text"
289
 
290
- # @ wp-maintenance-mode
291
- #: inc/wp-maintenance-mode-settings.php:138
292
  msgid "The Truck"
293
  msgstr "Der Truck"
294
 
295
- # @ wp-maintenance-mode
296
- #: inc/wp-maintenance-mode-settings.php:139
297
  msgid "The Sun"
298
  msgstr "The Sun"
299
 
300
- # @ wp-maintenance-mode
301
- #: inc/wp-maintenance-mode-settings.php:140
302
  msgid "The FF Error"
303
  msgstr "The FF Error"
304
 
305
- # @ wp-maintenance-mode
306
- #: inc/wp-maintenance-mode-settings.php:141
307
  msgid "Monster"
308
  msgstr "Monster"
309
 
310
- # @ wp-maintenance-mode
311
- #: inc/wp-maintenance-mode-settings.php:142
312
  msgid "Chastely"
313
  msgstr "Chastely"
314
 
315
- # @ wp-maintenance-mode
316
- #: inc/wp-maintenance-mode-settings.php:143
317
  msgid "Only Typo"
318
  msgstr "Only Typo"
319
 
320
- # @ wp-maintenance-mode
321
- #: inc/wp-maintenance-mode-settings.php:144
322
  msgid "Paint"
323
  msgstr "Paint"
324
 
325
- # @ wp-maintenance-mode
326
- #: inc/wp-maintenance-mode-settings.php:145
327
  msgid "Animate (Flash)"
328
  msgstr "Animate (Flash)"
329
 
330
- # @ wp-maintenance-mode
331
- #: inc/wp-maintenance-mode-settings.php:146
332
  msgid "Damask"
333
  msgstr "Damask"
334
 
335
- # @ wp-maintenance-mode
336
- #: inc/wp-maintenance-mode-settings.php:147
337
  msgid "Lego"
338
  msgstr "Lego"
339
 
340
- # @ wp-maintenance-mode
341
- #: inc/wp-maintenance-mode-settings.php:148
342
  msgid "Chemistry"
343
  msgstr "Chemielabor"
344
 
345
- # @ wp-maintenance-mode
346
- #: inc/wp-maintenance-mode-settings.php:154
347
  msgid "Own Style URL:"
348
  msgstr "Eigenes Design:"
349
 
350
- # @ wp-maintenance-mode
351
- #: inc/wp-maintenance-mode-settings.php:157
352
  msgid "URL to the css-file (incl. http://)"
353
  msgstr "URL zur css-Datei (inkl. http://)"
354
 
355
- # @ wp-maintenance-mode
356
- #: inc/wp-maintenance-mode-settings.php:159
357
- msgid ""
358
- "<strong>Coution:</strong> Please don&acute;t copy the stylesheet in your "
359
- "plugin folder, it will be deleted on the next automatical update of the "
360
- "plugin!"
361
- msgstr ""
362
- "<strong>Hinweis:</strong> Bitte speichere das Sytelsheet nicht im Plugin-"
363
- "Ordner, der Ordner wird beim automatischen Update ersetzt!"
364
 
365
- # @ wp-maintenance-mode
366
- #: inc/wp-maintenance-mode-settings.php:164
367
- #: inc/wp-maintenance-mode-settings.php:167
368
  msgid "Preview"
369
  msgstr "Vorschau"
370
 
371
- #: inc/wp-maintenance-mode-settings.php:172
 
372
  msgid "noindex, nofollow:"
373
  msgstr "noindex, nofollow:"
374
 
375
- #: inc/wp-maintenance-mode-settings.php:180
376
- msgid ""
377
- "The robots meta tag lets you utilize a granular, page-specific approach to "
378
- "controlling how an individual page should be indexed and served to users in "
379
- "search results. Set TRUE for noindex, nofollow; set FALSE for index, follow."
380
- msgstr ""
381
- "Der robots meta Tag gibt die Möglichkeit die Indizierung der Site durch "
382
- "Suchmaschinen zu steuern. Wähle den Wert, der auf Wartungsseite genutzt "
383
- "werden soll. Setze Ja für nonidex, nofollow; setze Nein für index, follow."
384
 
385
- # @ wp-maintenance-mode
386
- #: inc/wp-maintenance-mode-settings.php:185
387
  msgid "Title:"
388
  msgstr "Titel:"
389
 
390
- # @ wp-maintenance-mode
391
- #: inc/wp-maintenance-mode-settings.php:188
392
- #: inc/wp-maintenance-mode-settings.php:196
393
- #: inc/wp-maintenance-mode-settings.php:204
394
  msgid "Leave empty for default."
395
  msgstr "Leer lassen für den Standardtext."
396
 
397
- # @ wp-maintenance-mode
398
- #: inc/wp-maintenance-mode-settings.php:193
399
  msgid "Header:"
400
  msgstr "Header:"
401
 
402
- # @ wp-maintenance-mode
403
- #: inc/wp-maintenance-mode-settings.php:201
404
  msgid "Heading:"
405
  msgstr "Überschrift:"
406
 
407
- # @ wp-maintenance-mode
408
- #: inc/wp-maintenance-mode-settings.php:209
409
  msgid "Text:"
410
  msgstr "Text:"
411
 
412
- # @ wp-maintenance-mode
413
- #: inc/wp-maintenance-mode-settings.php:214
414
- #, php-format
415
- msgid ""
416
- "Use the first <em>%1$s</em> for the time value or countdown and second <em>"
417
- "%2$s</em> for the unit of the time or countdown-value; HTML and Shortcodes "
418
- "are possible"
419
- msgstr ""
420
- "Nutze das erste %1$s für den Zeitwert oder den Countdown und das zweite %2$s "
421
- "für die Einheit der Zeit oder die Ausgabe des Zeitwert, HTML und Shortcodes "
422
- "sind möglich"
423
-
424
- # @ wp-maintenance-mode
425
- #: inc/wp-maintenance-mode-settings.php:219
426
  #, fuzzy
 
427
  msgid "Exclude:"
428
  msgstr "Ausnahmen:"
429
 
430
- # @ wp-maintenance-mode
431
- #: inc/wp-maintenance-mode-settings.php:235
432
- msgid ""
433
- "Exclude feed, pages, posts, archives or IPs from the maintenance mode. Add "
434
- "the Slug of page or post as a comma-separated list.<br />Example:"
435
- msgstr ""
436
- "Die Ausnahme des Wartungsmodus ist möglich für Inhalte aller Art, auch der "
437
- "Feed. Füge den Titelform (Slug) hinzu, als Komma-Separierte Liste.<br /"
438
- ">Beispiel:"
439
 
440
- #: inc/wp-maintenance-mode-settings.php:240
 
441
  msgid "Backend Role:"
442
  msgstr "Backendrolle:"
443
 
444
- # @ wp-maintenance-mode
445
- #: inc/wp-maintenance-mode-settings.php:265
446
  msgid "Allowed userrole to access the backend of this blog."
447
  msgstr "Erlaubte User-Rolle für das Sehen des Backend von diesem Blog."
448
 
449
- # @ wp-maintenance-mode
450
- #: inc/wp-maintenance-mode-settings.php:266
451
- #: inc/wp-maintenance-mode-settings.php:297
452
  msgid "Super Admin has always access."
453
  msgstr "Super Admin hat immer Zugang."
454
 
455
- #: inc/wp-maintenance-mode-settings.php:271
 
456
  msgid "Frontend Role:"
457
  msgstr "Frontendrolle:"
458
 
459
- # @ wp-maintenance-mode
460
- #: inc/wp-maintenance-mode-settings.php:296
461
  msgid "Allowed userrole to see the frontend of this blog."
462
  msgstr "Erlaubte User-Rolle für das Sehen des Frontend von diesem Blog."
463
 
464
- #: inc/wp-maintenance-mode-settings.php:302
 
465
  msgid "Redirection:"
466
  msgstr "Weiterleitung:"
467
 
468
- #: inc/wp-maintenance-mode-settings.php:307
469
- msgid ""
470
- "If you want that after the login the destination address is not standard to "
471
- "the dashboard, then defining a URL. (incl. http://)"
472
- msgstr ""
473
- "Wenn du nach dem Login eine Weiterleitung verändert zum Standard, dem "
474
- "Dashboard, wünschst, dann definiere eine URL. (inkl. http://)"
475
 
476
- # @ wp-maintenance-mode
477
- #: inc/wp-maintenance-mode-settings.php:316
478
  msgid "Save"
479
  msgstr "Speichern"
480
 
481
- #~ msgid "Rewrite:"
482
- #~ msgstr "Weiterleitung:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
+ "X-Poedit-Basepath: c:/xampp/htdocs/wp-plugins/wp-maintenance-mode/\n"
18
+ "X-Poedit-Bookmarks: \n"
 
 
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"
42
 
43
+ #: inc/wp-maintenance-mode-settings.php:55
44
+ #: inc/wp-maintenance-mode-settings.php:65
45
+ #@ default
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?"
477
+
478
+ #: index.php:25
479
+ #@ default
480
+ msgid "Cheatin&#8217; uh?"
481
+ msgstr ""
482
+
483
+ #. translators: plugin header field 'Name'
484
+ #: wp-maintenance-mode.php:0
485
+ #@ wp-maintenance-mode
486
+ msgid "WP Maintenance Mode"
487
+ msgstr "WP Wartungsmodus"
488
+
489
+ #. translators: plugin header field 'PluginURI'
490
+ #: wp-maintenance-mode.php:0
491
+ #@ wp-maintenance-mode
492
+ msgid "http://wordpress.org/extend/plugins/wp-maintenance-mode/"
493
+ msgstr ""
494
+
495
+ #. translators: plugin header field 'Description'
496
+ #: wp-maintenance-mode.php:0
497
+ #@ wp-maintenance-mode
498
+ 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."
499
+ msgstr "Das Plugin aktiviert eine Wartungsseite im Frontend und informiert Besucher deiner Installation über die Wartung und zu erwartende Ausfallzeit. Eingeloggte Nutzer haben vollen Zugriff auf Frontend und Backend, abhängig von den vergebenen Einstellungen."
500
+
501
+ #. translators: plugin header field 'Author'
502
+ #: wp-maintenance-mode.php:0
503
+ #@ wp-maintenance-mode
504
+ msgid "Frank B&uuml;ltge"
505
+ msgstr ""
506
+
507
+ #. translators: plugin header field 'AuthorURI'
508
+ #: wp-maintenance-mode.php:0
509
+ #@ wp-maintenance-mode
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
+
readme.md CHANGED
@@ -7,6 +7,8 @@ Adds a maintenance-page to your blog that lets visitors know your blog is down f
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
  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"`:
11
 
12
 
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
  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"`:
13
 
14
 
readme.txt CHANGED
@@ -4,11 +4,11 @@ Plugin Name: WP Maintenance Mode
4
  Plugin URI: http://bueltge.de/wp-wartungsmodus-plugin/101/
5
  Author: Frank B&uuml;ltge
6
  Author URI: http://bueltge.de/
7
- Donate link: http://bueltge.de/wunschliste/
8
  Tags: maintenance, mode, admin, administration, unavailable, coming soon, multisite
9
  Requires at least: 2.6
10
- Tested up to: 3.5-RC3
11
- Stable tag: 1.8.4
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
 
@@ -21,9 +21,8 @@ Use the shortcode `[loginform]` for easy use a login form on the maintenance pag
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 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
25
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
26
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de" id="wartungsmodus" >
27
 
28
  <head>
29
  <title>Blogname - Maintenance Mode</title>
@@ -223,12 +222,12 @@ Please visit [Automatisches Backup der WordPress-Datenbank](http://www.beedy.de/
223
 
224
  * Thanks to [Stefan Wilhelm](http://www.beedy.de/) for Idea, Tests and a tutorial for work with MySQLDumper
225
 
226
- * Thanks to [H&uuml;seyin &Uuml;lk&uuml;](http://www.salsabar.org/ "H&uuml;seyin &Uuml;lk&uuml;") for turkey language file
227
  * Thanks to [Gilles WALET](http://www.nevermindfr.com/ "Gilles WALET") for frensh language file
228
  * Thanks to [J&uuml;rgen Toth](http://www.relijoc.ro/ "J&uuml;rgen Toth") for romanian language file
229
  * 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
230
  * Thanks to [Romeo Shuka](http://www.romeolab.com/wp-wartungsmodus-shqip "About this Plugin in albanian language") for albanian language file
231
- * Thanks to [TodoWordPress](http://www.todowp.org/ "TodoWordPress") for spanish language file
232
  * Thanks to FatCow for belorussion language file
233
  * Thanks to [yuarez](http://yuraz.uni.cc "yuraz.uni.cc") for croatian languge files
234
  * Thanks to [Georg](http://wordpress.blogos.dk/s%C3%B8g-efter-downloads/?did=250 "wordpress.blogos.dk") for danish languge files
@@ -245,7 +244,16 @@ Please visit [Automatisches Backup der WordPress-Datenbank](http://www.beedy.de/
245
 
246
 
247
  == Changelog ==
248
- = 1.8.4 =
 
 
 
 
 
 
 
 
 
249
  * Fix for include JS in frontend to use countdown
250
  * Small mini fix for a php notice
251
  * Add charset on spalsh page for strange databases
4
  Plugin URI: http://bueltge.de/wp-wartungsmodus-plugin/101/
5
  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.5
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
 
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>
222
 
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
230
+ * Thanks to Francisco Javier Bernad Asiain and [TodoWordPress](http://www.todowp.org/ "TodoWordPress") for spanish language file
231
  * Thanks to FatCow for belorussion language file
232
  * Thanks to [yuarez](http://yuraz.uni.cc "yuraz.uni.cc") for croatian languge files
233
  * Thanks to [Georg](http://wordpress.blogos.dk/s%C3%B8g-efter-downloads/?did=250 "wordpress.blogos.dk") for danish languge files
244
 
245
 
246
  == Changelog ==
247
+ = 1.8.5 (01/24/2013) =
248
+ * Added new settings for hide, view notices about the active maintenance mode
249
+ * Changes on source, codex
250
+ * Fix PHP Notices [Support Thread](http://wordpress.org/support/topic/error-message-in-settings-1)
251
+ * Change default settings, added ajax
252
+ * Fix Preview function
253
+ * Fix uninstall in WPMU
254
+ * Small updates on styles for login form
255
+
256
+ = 1.8.4 (12/06/2012) =
257
  * Fix for include JS in frontend to use countdown
258
  * Small mini fix for a php notice
259
  * Add charset on spalsh page for strange databases
site.php CHANGED
@@ -1,17 +1,12 @@
1
- <?php
2
- if ( !isset($value) ) {
3
- if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) )
4
- $value = get_site_option( FB_WM_TEXTDOMAIN );
5
- else
6
- $value = get_option( FB_WM_TEXTDOMAIN );
7
- $unitvalues = $WPMaintenanceMode->case_unit($value['unit']);
8
- }
9
- ?>
10
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
11
- <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?> id="wp_maintenance_mode" >
12
-
13
  <head>
14
-
 
 
 
 
 
15
  <title><?php if ( isset($value['title']) && ($value['title'] != '') ) echo stripslashes_deep( $value['title'] ); else { bloginfo('name'); echo ' - '; _e( 'Maintenance Mode', FB_WM_TEXTDOMAIN ); } ?></title>
16
 
17
  <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
@@ -99,4 +94,4 @@ if ( !isset($value) ) {
99
  </script>
100
  <?php } ?>
101
  </body>
102
- </html>
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
  <title><?php if ( isset($value['title']) && ($value['title'] != '') ) echo stripslashes_deep( $value['title'] ); else { bloginfo('name'); echo ' - '; _e( 'Maintenance Mode', FB_WM_TEXTDOMAIN ); } ?></title>
11
 
12
  <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
94
  </script>
95
  <?php } ?>
96
  </body>
97
+ </html>
styles/af.css CHANGED
@@ -48,15 +48,20 @@ top: 220px;
48
  left: 155px;
49
  }
50
 
 
 
 
 
 
51
  h1 {
52
- background-image: url(images/headline-de_DE.jpg);
53
  background-repeat: no-repeat;
54
  position: absolute;
55
  width: 365px;
56
  height: 57px;
57
  left: 150px;
58
  top: 150px;
59
- no-repeat;
60
  }
61
 
62
  h3 {
48
  left: 155px;
49
  }
50
 
51
+ #content form p {
52
+ position: relative;
53
+ top: 250px;
54
+ }
55
+
56
  h1 {
57
+ background-image: url('images/headline-de_DE.jpg');
58
  background-repeat: no-repeat;
59
  position: absolute;
60
  width: 365px;
61
  height: 57px;
62
  left: 150px;
63
  top: 150px;
64
+ background-repeat: no-repeat;
65
  }
66
 
67
  h3 {
styles/be.css CHANGED
@@ -3,7 +3,7 @@
3
  * {
4
  margin:0px;
5
  padding:0px;
6
- border:0px;}
7
 
8
  body {
9
  background:#548a32 url('images/bg.jpg') center top no-repeat;
@@ -12,28 +12,30 @@
12
  font-size:14px;
13
  padding-top:200px;
14
  width:700px;
15
- margin:0px auto;}
16
 
17
- a { color:#fff; text-decoration:none;}
18
 
19
- a:hover { color:#ead311;}
20
 
21
- #content { position:relative; padding-left:118px;}
22
 
23
  #content p {
24
  margin-top:30px;
25
  font-size:18px;
26
  line-height:28px;}
27
-
 
 
28
  h1 {
29
- font-weight:36px;
30
  font-family:verdana;
31
- font-weight:normal;}
32
 
33
  h3 {
34
- color: #8f1218;}
35
 
36
- #header { margin-bottom:90px; padding-left:}
37
 
38
  div.admin a {
39
 
@@ -44,11 +46,9 @@
44
  height:32px;
45
  background-image:url('images/button.png');
46
  position:absolute;
47
- right:155px;}
48
-
49
- #footer { margin-top:75px; font-size:12px;}
50
 
51
- #footer img { margin-bottom:-2px; width:12px; height:12px;}
52
 
53
-
54
 
3
  * {
4
  margin:0px;
5
  padding:0px;
6
+ border:0px; }
7
 
8
  body {
9
  background:#548a32 url('images/bg.jpg') center top no-repeat;
12
  font-size:14px;
13
  padding-top:200px;
14
  width:700px;
15
+ margin:0px auto; }
16
 
17
+ a { color:#fff; text-decoration:none; }
18
 
19
+ a:hover { color:#ead311; }
20
 
21
+ #content { position:relative; padding-left:118px; }
22
 
23
  #content p {
24
  margin-top:30px;
25
  font-size:18px;
26
  line-height:28px;}
27
+ #content form p {
28
+ margin: 0;
29
+ }
30
  h1 {
31
+ font-size:36px;
32
  font-family:verdana;
33
+ font-weight:normal; }
34
 
35
  h3 {
36
+ color: #8f1218; }
37
 
38
+ #header { margin-bottom:90px; padding-left: 0; }
39
 
40
  div.admin a {
41
 
46
  height:32px;
47
  background-image:url('images/button.png');
48
  position:absolute;
49
+ right:155px; }
 
 
50
 
51
+ #footer { margin-top:75px; font-size:12px; }
52
 
53
+ #footer img { margin-bottom:-2px; width:12px; height:12px; }
54
 
styles/dh.css CHANGED
@@ -6,8 +6,7 @@ list-style-type: none;
6
  margin: 0;
7
  padding: 0;
8
  text-decoration: none;
9
- font-weight: 700;
10
- border: none;
11
  }
12
 
13
  body {
@@ -41,7 +40,7 @@ width: 410px;
41
  height: 60px;
42
  left: 50px;
43
  top: 270px;
44
- no-repeat;
45
  }
46
 
47
  #content h3 {
@@ -63,6 +62,13 @@ left: 55px;
63
  font: normal 17px/24px "Trebuchet MS", Arial, Helvetica, sans-serif;
64
  }
65
 
 
 
 
 
 
 
 
66
  #content p strong {
67
  font-weight: 900;
68
  color: #555;
6
  margin: 0;
7
  padding: 0;
8
  text-decoration: none;
9
+ font-weight: 400;
 
10
  }
11
 
12
  body {
40
  height: 60px;
41
  left: 50px;
42
  top: 270px;
43
+ background-repeat:no-repeat;
44
  }
45
 
46
  #content h3 {
62
  font: normal 17px/24px "Trebuchet MS", Arial, Helvetica, sans-serif;
63
  }
64
 
65
+ #content form p {
66
+ position: relative;
67
+ width: auto;
68
+ height: auto;
69
+ top: 400px;
70
+ }
71
+
72
  #content p strong {
73
  font-weight: 900;
74
  color: #555;
styles/es.css CHANGED
@@ -59,6 +59,12 @@ a:hover {
59
  font-weight:700;
60
  color: #30ADE6;
61
  }
 
 
 
 
 
 
62
  #content div.admin {
63
  position: absolute;
64
  width: 106px;
59
  font-weight:700;
60
  color: #30ADE6;
61
  }
62
+ #content form p {
63
+ position: relative;
64
+ height: auto;
65
+ top: 210px;
66
+ left: 495px;
67
+ }
68
  #content div.admin {
69
  position: absolute;
70
  width: 106px;
styles/fl.css CHANGED
@@ -111,6 +111,8 @@ font: 1.5em helvetica, tahoma, arial, sans-serif;
111
 
112
  #content p strong {font-size:1.2em;}
113
 
 
 
114
  #content div.admin {
115
  position:absolute;
116
  bottom:0;
111
 
112
  #content p strong {font-size:1.2em;}
113
 
114
+ #content form p {margin-top:.25em;margin-bottom:.25em;}
115
+
116
  #content div.admin {
117
  position:absolute;
118
  bottom:0;
styles/fv.css CHANGED
@@ -64,6 +64,10 @@ p, strong, a {
64
  padding: 22px;
65
  }
66
 
 
 
 
 
67
  div.admin {
68
  margin-top: 130px;
69
  margin-right: 45px;
64
  padding: 22px;
65
  }
66
 
67
+ #content form p {
68
+ padding: 6px;
69
+ }
70
+
71
  div.admin {
72
  margin-top: 130px;
73
  margin-right: 45px;
styles/ln.css CHANGED
@@ -64,6 +64,9 @@ text-align: center;
64
  #content {
65
  padding: 2.5em 2em 0 11em;
66
  }
 
 
 
67
  #footer {
68
  position: absolute;
69
  bottom: -24px;
64
  #content {
65
  padding: 2.5em 2em 0 11em;
66
  }
67
+ #content form p {
68
+ margin: 5px 0;
69
+ }
70
  #footer {
71
  position: absolute;
72
  bottom: -24px;
styles/monster.css CHANGED
@@ -55,6 +55,10 @@ img{
55
  padding: 0 0 0 55px;
56
  }
57
 
 
 
 
 
58
  #content strong{
59
  font: bold 14px/26px helvetica, arial, sans-serif;
60
  }
55
  padding: 0 0 0 55px;
56
  }
57
 
58
+ #content form p{
59
+ margin: 0;
60
+ }
61
+
62
  #content strong{
63
  font: bold 14px/26px helvetica, arial, sans-serif;
64
  }
styles/nicki.css CHANGED
@@ -14,7 +14,7 @@ text-decoration: underline;
14
  display: none;
15
  }
16
 
17
- #content{
18
  background: url('images/wartungsmodus.jpg') no-repeat;
19
  position: absolute;
20
  width: 380px;
@@ -33,8 +33,12 @@ font-size: 1.2em;
33
  color: #8f1218;
34
  }
35
 
36
- #content p{
37
- width: 305px;
 
 
 
 
38
  }
39
 
40
  .admin {
14
  display: none;
15
  }
16
 
17
+ #content {
18
  background: url('images/wartungsmodus.jpg') no-repeat;
19
  position: absolute;
20
  width: 380px;
33
  color: #8f1218;
34
  }
35
 
36
+ #content p {
37
+ width: 305px;
38
+ }
39
+
40
+ #content form p {
41
+ margin: 0;
42
  }
43
 
44
  .admin {
uninstall.php CHANGED
@@ -2,7 +2,7 @@
2
  if( ! defined( 'ABSPATH' ) && ! defined( 'WP_UNINSTALL_PLUGIN' ) )
3
  exit();
4
 
5
- add_site_option( 'wp-maintenance-mode' );
6
- add_site_option( 'wp-maintenance-mode-msqd' );
7
  delete_option( 'wp-maintenance-mode' );
8
- delete_option( 'wp-maintenance-mode-msqd' );
2
  if( ! defined( 'ABSPATH' ) && ! defined( 'WP_UNINSTALL_PLUGIN' ) )
3
  exit();
4
 
5
+ delete_site_option( 'wp-maintenance-mode' );
6
+ delete_site_option( 'wp-maintenance-mode-msqld' );
7
  delete_option( 'wp-maintenance-mode' );
8
+ delete_option( 'wp-maintenance-mode-msqld' );
wp-maintenance-mode.php CHANGED
@@ -8,14 +8,14 @@
8
  * Author: Frank B&uuml;ltge
9
  * Author URI: http://bueltge.de/
10
  * Donate URI: http://bueltge.de/wunschliste/
11
- * Version: 1.8.4
12
- * Last change: 11/25/2012
13
  * License: GPLv3
14
  *
15
  *
16
  * License:
17
  * ==============================================================================
18
- * Copyright 2009-2012 Frank Bueltge (email : frank@bueltge.de)
19
  *
20
  * This program is free software; you can redistribute it and/or modify
21
  * it under the terms of the GNU General Public License as published by
@@ -59,15 +59,20 @@ if ( ! class_exists('WPMaintenanceMode') ) {
59
 
60
  function WPMaintenanceMode() {
61
 
 
 
 
62
  $this->load_classes();
63
 
64
  register_activation_hook( __FILE__, array( $this, 'add_config' ) );
65
  add_action( 'admin_print_scripts-plugins.php', array( $this, 'add_scripts' ) );
66
  //add_action( 'load-plugins.php', array(&$this, 'add_scripts') );
67
  add_action( 'init', array( $this, 'on_init'), 1 );
68
- add_action( 'admin_init', array( $this, 'admin_init') );
69
  add_action( 'admin_menu', array( $this, 'redirect' ) );
70
 
 
 
71
  add_action( 'wp_ajax_wm_config-update', array( $this, 'save_config' ) );
72
  add_action( 'wp_ajax_wm_config-active', array( $this, 'save_active' ) );
73
  }
@@ -144,18 +149,53 @@ if ( ! class_exists('WPMaintenanceMode') ) {
144
  if ( is_multisite() && ! function_exists( 'is_plugin_active_for_network' ) )
145
  require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
146
 
147
- if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) )
148
- $valuemsqld = get_site_option( FB_WM_TEXTDOMAIN . '-msqld' );
149
- else
150
- $valuemsqld = (int) get_option( FB_WM_TEXTDOMAIN . '-msqld' );
151
 
152
- if ( 1 === $valuemsqld || '1' === $valuemsqld ) {
153
  $this->on_active();
154
- add_action( 'admin_bar_menu', array( $this, 'add_admin_bar_alert' ), 9999 );
 
155
  }
156
  }
157
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
158
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
159
  function add_scripts() {
160
 
161
  $locale = get_locale();
@@ -186,7 +226,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
186
  if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) ) {
187
  // multisite install
188
  add_filter( 'network_admin_plugin_action_links', array( $this, 'add_settings_link' ), 10, 2 );
189
- add_action( 'after_plugin_row_' . FB_WM_BASENAME, array( 'WPMaintenanceMode_Settings', 'add_config_form'), 10, 3 );
190
  } else {
191
  // Single mode install of WP
192
  if ( version_compare( $GLOBALS['wp_version'], '2.7alpha', '>' ) ) {
@@ -202,27 +242,6 @@ if ( ! class_exists('WPMaintenanceMode') ) {
202
  }
203
 
204
 
205
- function add_settings_link( $links, $file ) {
206
-
207
- if ( plugin_basename( __FILE__ ) == $file )
208
- array_unshift(
209
- $links,
210
- sprintf( '<a id="wm-pluginconflink" href="javascript:void(0)" title="Configure this plugin">%s</a>', __('Settings') )
211
- );
212
-
213
- return $links;
214
- }
215
-
216
-
217
- function network_admin_add_settings_link( $links, $file ) {
218
-
219
- if ( plugin_basename( __FILE__ ) == $file )
220
- $links[] = '<a id="wm-pluginconflink" href="javascript:void(0)" title="Configure this plugin">' . __('Settings') . '</a>';
221
-
222
- return $links;
223
- }
224
-
225
-
226
  function add_config() {
227
 
228
  $this->data = array(
@@ -236,7 +255,15 @@ if ( ! class_exists('WPMaintenanceMode') ) {
236
  'unit' => 1,
237
  'title' => __( 'Maintenance mode', FB_WM_TEXTDOMAIN ),
238
  'text' => __( '<p>Sorry for the inconvenience.<br />Our website is currently undergoing scheduled maintenance.<br /><strong>Please try back in %1$s %2$s</strong><br />Thank you for your understanding.</p>', FB_WM_TEXTDOMAIN ),
239
- 'exclude' => 'wp-cron, feed, wp-login, login, wp-admin'
 
 
 
 
 
 
 
 
240
  );
241
  // if is active in network of multisite
242
  if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) ) {
@@ -255,15 +282,9 @@ if ( ! class_exists('WPMaintenanceMode') ) {
255
 
256
  function save_active() {
257
 
258
- $this->data = array();
259
- if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) ) {
260
- $this->data = get_site_option( FB_WM_TEXTDOMAIN );
261
- $this->datamsqld = get_site_option( FB_WM_TEXTDOMAIN . '-msqld' );
262
- } else {
263
- $this->data = get_option( FB_WM_TEXTDOMAIN );
264
- $this->datamsqld = get_option( FB_WM_TEXTDOMAIN . '-msqld' );
265
- }
266
-
267
  if ( isset($_POST['wm_config-active']) )
268
  $this->data['active'] = (int) $_POST['wm_config-active'];
269
 
@@ -281,11 +302,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
281
 
282
  function save_config() {
283
 
284
- $this->data = array();
285
- if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) )
286
- $this->data = get_site_option( FB_WM_TEXTDOMAIN );
287
- else
288
- $this->data = get_option( FB_WM_TEXTDOMAIN );
289
 
290
  if ( isset($_POST['wm_config-time']) )
291
  $this->data['time'] = (int) $_POST['wm_config-time'];
@@ -302,6 +319,8 @@ if ( ! class_exists('WPMaintenanceMode') ) {
302
  $this->data['rewrite'] = clean_url( $_POST['wm_config-rewrite'] );
303
  }
304
  }
 
 
305
  if ( isset($_POST['wm_config-theme']) )
306
  $this->data['theme'] = (int) $_POST['wm_config-theme'];
307
  if ( isset($_POST['wm_config-styleurl']) ) {
@@ -370,10 +389,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
370
  */
371
  function redirect() {
372
 
373
- if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) )
374
- $value = get_site_option( FB_WM_TEXTDOMAIN );
375
- else
376
- $value = get_option( FB_WM_TEXTDOMAIN );
377
 
378
  // if the redirect active
379
  if ( ! isset($value['rewrite']) )
@@ -396,10 +412,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
396
 
397
  function check_exclude() {
398
 
399
- if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) )
400
- $value = get_site_option( FB_WM_TEXTDOMAIN );
401
- else
402
- $value = get_option( FB_WM_TEXTDOMAIN );
403
 
404
  if ( ! isset($value['exclude']) || empty( $value['exclude'][0] ) )
405
  return FALSE;
@@ -419,10 +432,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
419
 
420
  function check_role() {
421
 
422
- if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) )
423
- $value = get_site_option( FB_WM_TEXTDOMAIN );
424
- else
425
- $value = get_option( FB_WM_TEXTDOMAIN );
426
 
427
  if ( is_super_admin() )
428
  return TRUE;
@@ -514,12 +524,9 @@ if ( ! class_exists('WPMaintenanceMode') ) {
514
  function check_datetime() {
515
 
516
  $datetime = NULL;
517
- $time = NULL;
518
- $date = NULL;
519
- if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) )
520
- $value = get_site_option( FB_WM_TEXTDOMAIN );
521
- else
522
- $value = get_option( FB_WM_TEXTDOMAIN );
523
 
524
  if ( isset($value['radio']) && 1 === $value['radio'] ) {
525
  $datetime = explode( ' ', $value['date'] );
@@ -552,12 +559,12 @@ if ( ! class_exists('WPMaintenanceMode') ) {
552
  if ( is_multisite() && ! function_exists( 'is_plugin_active_for_network' ) ) {
553
  require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
554
  }
 
 
555
 
556
  if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) ) {
557
- $value = get_site_option( FB_WM_TEXTDOMAIN );
558
  $settings_link = network_admin_url() . 'plugins.php#wm-pluginconflink';
559
  } else {
560
- $value = get_option( FB_WM_TEXTDOMAIN );
561
  $settings_link = admin_url() . 'plugins.php#wm-pluginconflink';
562
  }
563
 
@@ -576,20 +583,26 @@ if ( ! class_exists('WPMaintenanceMode') ) {
576
  $scmsg .= __( ' &amp; W3 Total Cache for pages flushed.', FB_WM_TEXTDOMAIN );
577
  }
578
 
579
- $message = __( 'Caution: Maintenance mode is <strong>active</strong>!', FB_WM_TEXTDOMAIN );
580
- add_filter( 'login_message', create_function( '', "return '<div id=\"login_error\">$message</div>';" ) );
581
- $admin_notices = '<div id="message" class="error fade" style="background-color: #FFEBE8 !important;"><p>' . $message . $scmsg . ' <a href="plugins.php#wm-pluginconflink">' . __( 'Deactivate or change Settings', FB_WM_TEXTDOMAIN ) . '</a></p></div>';
582
- if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) )
583
- add_action( 'network_admin_notices', create_function( '', "echo '$admin_notices';" ) );
584
- add_action( 'admin_notices', create_function( '', "echo '$admin_notices';" ) );
585
- $in_admin_header = '<a id="mm_in_admin_header" href="' . $settings_link . '" title="' . __( 'Deactivate or change Settings', FB_WM_TEXTDOMAIN ) . '">' . $message . '</a>';
586
- //add_action( 'in_admin_header', create_function( '', "echo '$in_admin_header';" ) );
587
- /**
588
- // actual a ticket in trac #14126
589
- // @link http://core.trac.wordpress.org/ticket/14126
590
- $in_admin_header = '<a class="privacy-on-link" href="plugins.php#wm-pluginconflink" title="' . __( 'Deactivate or change Settings', FB_WM_TEXTDOMAIN ) . '">' . $message . '</a>';
591
- add_action( 'in_admin_site_heading', create_function( '', "echo '$in_admin_header';" ) );
592
- */
 
 
 
 
 
 
593
 
594
  add_action( 'wm_head', array(&$this, 'add_theme') );
595
  add_action( 'wm_content', array(&$this, 'add_flash') );
@@ -612,6 +625,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
612
  $backtime = $value['time'] * $unitvalues['multiplier'];
613
  else
614
  $backtime = NULL;
 
615
  if ( ( ! $this->check_role() )
616
  && ! strstr($_SERVER['PHP_SELF'], 'wp-login.php' )
617
  && ! strstr($_SERVER['PHP_SELF'], 'async-upload.php')
@@ -620,10 +634,12 @@ if ( ! class_exists('WPMaintenanceMode') ) {
620
  ) {
621
  $rolestatus = 'norights';
622
  nocache_headers();
 
623
  header("Content-type: text/html; charset=$charset");
624
  header("HTTP/1.0 503 Service Unavailable");
625
  header("Retry-After: $backtime");
626
  include('site.php');
 
627
  exit();
628
  }
629
 
@@ -635,6 +651,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
635
  && ! ( strstr($_SERVER['PHP_SELF'], 'upgrade.php') && $this->check_role() )
636
  && ! strstr($_SERVER['PHP_SELF'], 'trackback/')
637
  && ! strstr($_SERVER['PHP_SELF'], '/plugins/')
 
638
  && ! $this->check_exclude()
639
  && ! $this->check_role()
640
  ) {
@@ -653,10 +670,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
653
 
654
  function add_link() {
655
 
656
- if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) )
657
- $value = get_site_option( FB_WM_TEXTDOMAIN );
658
- else
659
- $value = get_option( FB_WM_TEXTDOMAIN );
660
  ?>
661
  <div id="footer">
662
  <p><a href="http://bueltge.de/"><?php _e( 'Plugin by:', FB_WM_TEXTDOMAIN ); ?> <img src="http://bueltge.de/favicon.ico" alt="bueltge.de" width="16" height="16" /></a>
@@ -692,10 +706,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
692
  function add_theme() {
693
 
694
  $locale = get_locale();
695
- if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) )
696
- $value = get_site_option( FB_WM_TEXTDOMAIN );
697
- else
698
- $value = get_option( FB_WM_TEXTDOMAIN );
699
 
700
  $theme = '';
701
  $link = '';
@@ -763,10 +774,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
763
  function add_flash() {
764
 
765
  $locale = get_locale();
766
- if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) )
767
- $value = get_site_option( FB_WM_TEXTDOMAIN );
768
- else
769
- $value = get_option( FB_WM_TEXTDOMAIN );
770
 
771
  $flash = '';
772
  $object = '';
@@ -797,13 +805,9 @@ if ( ! class_exists('WPMaintenanceMode') ) {
797
  function add_content() {
798
 
799
  $locale = get_locale();
 
800
 
801
- if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) )
802
- $value = get_site_option( FB_WM_TEXTDOMAIN );
803
- else
804
- $value = get_option( FB_WM_TEXTDOMAIN );
805
-
806
- $echo = NULL;
807
 
808
  // default for unit
809
  if ( ! isset($value['unit']) )
@@ -838,7 +842,7 @@ if ( ! class_exists('WPMaintenanceMode') ) {
838
  $url = parse_url($url);
839
  $fp = fsockopen($url['host'], 80, $errno, $errstr, 30);
840
 
841
- if (!$fp) {
842
  echo $errstr . ' (' . $errno . ')<br />'. "\n";
843
  } else {
844
  $httpRequest = 'HEAD ' . $url['path'] . ' HTTP/1.1' . "\r\n"
@@ -875,7 +879,10 @@ if ( ! class_exists('WPMaintenanceMode') ) {
875
 
876
 
877
  function url_exists($url) {
878
- if ( (strpos($url, "http")) === FALSE ) $url = "http://" . $url;
 
 
 
879
  if ( is_array(@get_headers($url)) )
880
  return TRUE;
881
  else
8
  * Author: Frank B&uuml;ltge
9
  * Author URI: http://bueltge.de/
10
  * Donate URI: http://bueltge.de/wunschliste/
11
+ * Version: 1.8.5
12
+ * Last change: 02/22/2013
13
  * License: GPLv3
14
  *
15
  *
16
  * License:
17
  * ==============================================================================
18
+ * Copyright 2009-2013 Frank Bueltge (email : frank@bueltge.de)
19
  *
20
  * This program is free software; you can redistribute it and/or modify
21
  * it under the terms of the GNU General Public License as published by
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
 
74
+ add_action( 'admin_init', array( 'WPMaintenanceMode_Settings', 'get_object' ) );
75
+
76
  add_action( 'wp_ajax_wm_config-update', array( $this, 'save_config' ) );
77
  add_action( 'wp_ajax_wm_config-active', array( $this, 'save_active' ) );
78
  }
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
+ *
165
+ * @return array $values
166
+ */
167
+ public static function get_options() {
168
+
169
+ if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) ) {
170
+ $values = get_site_option( FB_WM_TEXTDOMAIN );
171
+ } else {
172
+ $values = get_option( FB_WM_TEXTDOMAIN );
173
+ }
174
+
175
+ return $values;
176
+ }
177
 
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
+ /**
195
+ * Register and enqueue scripts and styles
196
+ *
197
+ * @return void
198
+ */
199
  function add_scripts() {
200
 
201
  $locale = get_locale();
226
  if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) ) {
227
  // multisite install
228
  add_filter( 'network_admin_plugin_action_links', array( $this, 'add_settings_link' ), 10, 2 );
229
+ //add_action( 'after_plugin_row_' . FB_WM_BASENAME, array( 'WPMaintenanceMode_Settings', 'add_config_form'), 10, 3 );
230
  } else {
231
  // Single mode install of WP
232
  if ( version_compare( $GLOBALS['wp_version'], '2.7alpha', '>' ) ) {
242
  }
243
 
244
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
245
  function add_config() {
246
 
247
  $this->data = array(
255
  'unit' => 1,
256
  'title' => __( 'Maintenance mode', FB_WM_TEXTDOMAIN ),
257
  'text' => __( '<p>Sorry for the inconvenience.<br />Our website is currently undergoing scheduled maintenance.<br /><strong>Please try back in %1$s %2$s</strong><br />Thank you for your understanding.</p>', FB_WM_TEXTDOMAIN ),
258
+ 'exclude' => array(
259
+ 0 => 'wp-cron',
260
+ 1 => 'feed',
261
+ 2 => 'wp-login',
262
+ 3 => 'login',
263
+ 4 => 'wp-admin',
264
+ 5 => 'wp-admin/admin-ajax.php'
265
+ ),
266
+ 'notice' => 1,
267
  );
268
  // if is active in network of multisite
269
  if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) ) {
282
 
283
  function save_active() {
284
 
285
+ $this->data = self::get_options();
286
+ $this->datamsqld = self::get_msqld_option();
287
+
 
 
 
 
 
 
288
  if ( isset($_POST['wm_config-active']) )
289
  $this->data['active'] = (int) $_POST['wm_config-active'];
290
 
302
 
303
  function save_config() {
304
 
305
+ $this->data = self::get_options();
 
 
 
 
306
 
307
  if ( isset($_POST['wm_config-time']) )
308
  $this->data['time'] = (int) $_POST['wm_config-time'];
319
  $this->data['rewrite'] = clean_url( $_POST['wm_config-rewrite'] );
320
  }
321
  }
322
+ if ( isset($_POST['wm_config-notice']) )
323
+ $this->data['notice'] = (int) $_POST['wm_config-notice'];
324
  if ( isset($_POST['wm_config-theme']) )
325
  $this->data['theme'] = (int) $_POST['wm_config-theme'];
326
  if ( isset($_POST['wm_config-styleurl']) ) {
389
  */
390
  function redirect() {
391
 
392
+ $value = self::get_options();
 
 
 
393
 
394
  // if the redirect active
395
  if ( ! isset($value['rewrite']) )
412
 
413
  function check_exclude() {
414
 
415
+ $value = self::get_options();
 
 
 
416
 
417
  if ( ! isset($value['exclude']) || empty( $value['exclude'][0] ) )
418
  return FALSE;
432
 
433
  function check_role() {
434
 
435
+ $value = self::get_options();
 
 
 
436
 
437
  if ( is_super_admin() )
438
  return TRUE;
524
  function check_datetime() {
525
 
526
  $datetime = NULL;
527
+ $time = NULL;
528
+ $date = NULL;
529
+ $value = self::get_options();
 
 
 
530
 
531
  if ( isset($value['radio']) && 1 === $value['radio'] ) {
532
  $datetime = explode( ' ', $value['date'] );
559
  if ( is_multisite() && ! function_exists( 'is_plugin_active_for_network' ) ) {
560
  require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
561
  }
562
+ ob_start();
563
+ $value = self::get_options();
564
 
565
  if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) ) {
 
566
  $settings_link = network_admin_url() . 'plugins.php#wm-pluginconflink';
567
  } else {
 
568
  $settings_link = admin_url() . 'plugins.php#wm-pluginconflink';
569
  }
570
 
583
  $scmsg .= __( ' &amp; W3 Total Cache for pages flushed.', FB_WM_TEXTDOMAIN );
584
  }
585
 
586
+ // check options, if the user will see the notices for active maintenance mode
587
+ if ( ! isset($value['notice']) || 0 !== $value['notice'] ) {
588
+ $message = __( 'Caution: Maintenance mode is <strong>active</strong>!', FB_WM_TEXTDOMAIN );
589
+ add_filter( 'login_message', create_function( '', "return '<div id=\"login_error\">$message</div>';" ) );
590
+ $admin_notices = '<div id="message" class="error fade" style="background-color: #FFEBE8 !important;"><p>' . $message . $scmsg . ' <a href="plugins.php#wm-pluginconflink">' . __( 'Deactivate or change Settings', FB_WM_TEXTDOMAIN ) . '</a></p></div>';
591
+
592
+ if ( is_multisite() && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) )
593
+ add_action( 'network_admin_notices', create_function( '', "echo '$admin_notices';" ) );
594
+
595
+ add_action( 'admin_notices', create_function( '', "echo '$admin_notices';" ) );
596
+
597
+ //$in_admin_header = '<a id="mm_in_admin_header" href="' . $settings_link . '" title="' . __( 'Deactivate or change Settings', FB_WM_TEXTDOMAIN ) . '">' . $message . '</a>';
598
+ //add_action( 'in_admin_header', create_function( '', "echo '$in_admin_header';" ) );
599
+ /**
600
+ // actual a ticket in trac #14126
601
+ // @link http://core.trac.wordpress.org/ticket/14126
602
+ $in_admin_header = '<a class="privacy-on-link" href="plugins.php#wm-pluginconflink" title="' . __( 'Deactivate or change Settings', FB_WM_TEXTDOMAIN ) . '">' . $message . '</a>';
603
+ add_action( 'in_admin_site_heading', create_function( '', "echo '$in_admin_header';" ) );
604
+ */
605
+ }
606
 
607
  add_action( 'wm_head', array(&$this, 'add_theme') );
608
  add_action( 'wm_content', array(&$this, 'add_flash') );
625
  $backtime = $value['time'] * $unitvalues['multiplier'];
626
  else
627
  $backtime = NULL;
628
+
629
  if ( ( ! $this->check_role() )
630
  && ! strstr($_SERVER['PHP_SELF'], 'wp-login.php' )
631
  && ! strstr($_SERVER['PHP_SELF'], 'async-upload.php')
634
  ) {
635
  $rolestatus = 'norights';
636
  nocache_headers();
637
+ ob_start();
638
  header("Content-type: text/html; charset=$charset");
639
  header("HTTP/1.0 503 Service Unavailable");
640
  header("Retry-After: $backtime");
641
  include('site.php');
642
+ ob_flush();
643
  exit();
644
  }
645
 
651
  && ! ( strstr($_SERVER['PHP_SELF'], 'upgrade.php') && $this->check_role() )
652
  && ! strstr($_SERVER['PHP_SELF'], 'trackback/')
653
  && ! strstr($_SERVER['PHP_SELF'], '/plugins/')
654
+ && ! strstr($_SERVER['PHP_SELF'], '/xmlrpc.php')
655
  && ! $this->check_exclude()
656
  && ! $this->check_role()
657
  ) {
670
 
671
  function add_link() {
672
 
673
+ $value = self::get_options();
 
 
 
674
  ?>
675
  <div id="footer">
676
  <p><a href="http://bueltge.de/"><?php _e( 'Plugin by:', FB_WM_TEXTDOMAIN ); ?> <img src="http://bueltge.de/favicon.ico" alt="bueltge.de" width="16" height="16" /></a>
706
  function add_theme() {
707
 
708
  $locale = get_locale();
709
+ $value = self::get_options();
 
 
 
710
 
711
  $theme = '';
712
  $link = '';
774
  function add_flash() {
775
 
776
  $locale = get_locale();
777
+ $value = self::get_options();
 
 
 
778
 
779
  $flash = '';
780
  $object = '';
805
  function add_content() {
806
 
807
  $locale = get_locale();
808
+ $value = self::get_options();
809
 
810
+ $echo = NULL;
 
 
 
 
 
811
 
812
  // default for unit
813
  if ( ! isset($value['unit']) )
842
  $url = parse_url($url);
843
  $fp = fsockopen($url['host'], 80, $errno, $errstr, 30);
844
 
845
+ if ( ! $fp) {
846
  echo $errstr . ' (' . $errno . ')<br />'. "\n";
847
  } else {
848
  $httpRequest = 'HEAD ' . $url['path'] . ' HTTP/1.1' . "\r\n"
879
 
880
 
881
  function url_exists($url) {
882
+
883
+ if ( ( strpos($url, "http") ) === FALSE )
884
+ $url = "http://" . $url;
885
+
886
  if ( is_array(@get_headers($url)) )
887
  return TRUE;
888
  else