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 | 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 +0 -28
- css/style.css +11 -1
- inc/login-form.php +20 -21
- inc/wp-maintenance-mode-settings.php +99 -6
- index.php +24 -6
- js/wp-maintenance-mode.js +2 -0
- languages/wp-maintenance-mode-de_DE.mo +0 -0
- languages/wp-maintenance-mode-de_DE.po +273 -237
- languages/wp-maintenance-mode-es_ES.mo +0 -0
- languages/wp-maintenance-mode-es_ES.po +369 -237
- languages/wp-maintenance-mode-tr_TR.mo +0 -0
- languages/wp-maintenance-mode-tr_TR.po +98 -111
- languages/wp-maintenance-mode-xx_XX.pot +273 -237
- readme.md +2 -0
- readme.txt +17 -9
- site.php +9 -14
- styles/af.css +7 -2
- styles/be.css +15 -15
- styles/dh.css +9 -3
- styles/es.css +6 -0
- styles/fl.css +2 -0
- styles/fv.css +4 -0
- styles/ln.css +3 -0
- styles/monster.css +4 -0
- styles/nicki.css +7 -3
- uninstall.php +3 -3
- wp-maintenance-mode.php +108 -101
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 |
-
|
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 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>
|
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 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 =
|
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´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&TB_iframe=true&height='
|
243 |
+
+ viewportheight + '&width=' + viewportwidth
|
244 |
+
+ '&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( !
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
|
7 |
-
|
8 |
-
|
|
|
|
|
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’ 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 |
-
"
|
16 |
-
"X-Poedit-
|
17 |
-
"X-Textdomain-Support: yes\n"
|
18 |
-
"X-Generator: Poedit 1.5.4\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
|
|
20 |
|
21 |
-
|
22 |
-
#: site.php:
|
|
|
23 |
msgid "Maintenance Mode"
|
24 |
msgstr "Wartungsmodus"
|
25 |
|
26 |
-
|
27 |
-
|
28 |
msgid "Access to the admin area blocked"
|
29 |
msgstr "Zugang zum Admin-Bereich wurde blockiert"
|
30 |
|
31 |
-
|
32 |
-
|
33 |
msgid "Admin-Logout"
|
34 |
msgstr "Admin-Logout"
|
35 |
|
36 |
-
|
37 |
-
|
38 |
msgid "Admin-Login"
|
39 |
msgstr "Admin-Login"
|
40 |
|
41 |
-
|
42 |
-
#: wp-maintenance-mode
|
|
|
43 |
msgid "Settings"
|
44 |
msgstr "Einstellungen"
|
45 |
|
46 |
-
|
47 |
-
|
48 |
msgid "Maintenance mode"
|
49 |
msgstr "Wartungsmodus"
|
50 |
|
51 |
-
#: wp-maintenance-mode.php:
|
52 |
#, php-format
|
53 |
-
|
54 |
-
"<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
|
55 |
-
"
|
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 |
-
|
63 |
-
#: wp-maintenance-mode.php:
|
|
|
64 |
msgid "Updated"
|
65 |
msgstr "Gespeichert"
|
66 |
|
67 |
-
|
68 |
-
|
69 |
msgid "seconds"
|
70 |
msgstr "Sekunden"
|
71 |
|
72 |
-
|
73 |
-
|
74 |
msgid "minutes"
|
75 |
msgstr "Minuten"
|
76 |
|
77 |
-
|
78 |
-
|
79 |
msgid "hours"
|
80 |
msgstr "Stunden"
|
81 |
|
82 |
-
|
83 |
-
|
84 |
msgid "days"
|
85 |
msgstr "Tagen"
|
86 |
|
87 |
-
|
88 |
-
|
89 |
msgid "weeks"
|
90 |
msgstr "Wochen"
|
91 |
|
92 |
-
|
93 |
-
|
94 |
msgid "months"
|
95 |
msgstr "Monate"
|
96 |
|
97 |
-
|
98 |
-
|
99 |
msgid "years"
|
100 |
msgstr "Jahren"
|
101 |
|
102 |
-
#: wp-maintenance-mode.php:
|
|
|
103 |
msgid " & WP Super Cache flushed."
|
104 |
msgstr " & WP Super Cache aktualisiert."
|
105 |
|
106 |
-
#: wp-maintenance-mode.php:
|
|
|
107 |
msgid " & W3 Total Cache for pages flushed."
|
108 |
msgstr " & W3 Total Cache für Seiten aktualisiert."
|
109 |
|
110 |
-
|
111 |
-
#: wp-maintenance-mode.php:
|
|
|
112 |
msgid "Caution: Maintenance mode is <strong>active</strong>!"
|
113 |
msgstr "Achtung: Wartungsmodus ist <strong>aktiv</strong>!"
|
114 |
|
115 |
-
|
116 |
-
|
117 |
msgid "Deactivate or change Settings"
|
118 |
msgstr "Deaktivieren oder Einstellungen ändern "
|
119 |
|
120 |
-
|
121 |
-
|
122 |
msgid "Plugin by:"
|
123 |
msgstr "Plugin von:"
|
124 |
|
125 |
-
|
126 |
-
#: wp-maintenance-mode.php:
|
127 |
-
#: wp-maintenance-mode.php:
|
128 |
-
#: wp-maintenance-mode.php:
|
129 |
-
#: wp-maintenance-mode.php:
|
130 |
-
#: wp-maintenance-mode.php:
|
131 |
-
#: wp-maintenance-mode.php:
|
|
|
|
|
|
|
|
|
|
|
132 |
msgid "Design by:"
|
133 |
msgstr "Design von:"
|
134 |
|
135 |
-
|
136 |
-
#: inc/wp-maintenance-mode-settings.php:
|
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 |
-
|
143 |
-
#: inc/wp-maintenance-mode-settings.php:
|
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 |
-
|
150 |
-
|
151 |
msgid "Plugin Activate"
|
152 |
msgstr "Plugin aktivieren"
|
153 |
|
154 |
-
|
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:
|
|
|
|
|
|
|
|
|
160 |
msgid "False"
|
161 |
msgstr "Nein"
|
162 |
|
163 |
-
|
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:
|
|
|
|
|
|
|
|
|
169 |
msgid "True"
|
170 |
msgstr "Ja"
|
171 |
|
172 |
-
|
173 |
-
|
174 |
msgid "Update"
|
175 |
msgstr "Aktualisieren"
|
176 |
|
177 |
-
|
178 |
-
|
179 |
msgid "Plugin Settings"
|
180 |
msgstr "Plugin Einstellungen"
|
181 |
|
182 |
-
|
183 |
-
|
184 |
msgid "Countdown:"
|
185 |
msgstr "Countdown:"
|
186 |
|
187 |
-
|
188 |
-
#: inc/wp-maintenance-mode-settings.php:
|
189 |
-
|
190 |
msgid "Click for datepicker"
|
191 |
msgstr "Klick für den Datums-Picker"
|
192 |
|
193 |
-
|
194 |
-
|
195 |
msgid "Date:"
|
196 |
msgstr "Datum:"
|
197 |
|
198 |
-
|
199 |
-
|
200 |
-
msgid ""
|
201 |
-
"
|
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 |
-
|
208 |
-
|
209 |
msgid "Value:"
|
210 |
msgstr "Wert:"
|
211 |
|
212 |
-
|
213 |
-
|
214 |
msgid "Unit:"
|
215 |
msgstr "Einheit:"
|
216 |
|
217 |
-
|
218 |
-
|
219 |
msgid "second"
|
220 |
msgstr "sekunde"
|
221 |
|
222 |
-
|
223 |
-
|
224 |
msgid "minute"
|
225 |
msgstr "minute"
|
226 |
|
227 |
-
|
228 |
-
|
229 |
msgid "hour"
|
230 |
msgstr "stunde"
|
231 |
|
232 |
-
|
233 |
-
|
234 |
msgid "day"
|
235 |
msgstr "tag"
|
236 |
|
237 |
-
|
238 |
-
|
239 |
msgid "week"
|
240 |
msgstr "woche"
|
241 |
|
242 |
-
|
243 |
-
|
244 |
msgid "month"
|
245 |
msgstr "monat"
|
246 |
|
247 |
-
|
248 |
-
|
249 |
msgid "year"
|
250 |
msgstr "jahr"
|
251 |
|
252 |
-
|
253 |
-
|
254 |
msgid "Link:"
|
255 |
msgstr "Link:"
|
256 |
|
257 |
-
|
258 |
-
|
259 |
-
msgid ""
|
260 |
-
"
|
261 |
-
"mode site."
|
262 |
-
msgstr ""
|
263 |
-
"Bitte hinterlasse einen Link zum Plugin- und Design-Autor auf deiner "
|
264 |
-
"Wartungsmodus-Seite."
|
265 |
|
266 |
-
|
267 |
-
|
268 |
msgid "Admin Link:"
|
269 |
msgstr "Admin Link:"
|
270 |
|
271 |
-
#: inc/wp-maintenance-mode-settings.php:
|
|
|
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 |
-
|
276 |
-
|
277 |
msgid "Theme:"
|
278 |
msgstr "Theme:"
|
279 |
|
280 |
-
|
281 |
-
|
282 |
msgid "Own Style"
|
283 |
msgstr "Eigenes Design"
|
284 |
|
285 |
-
|
286 |
-
|
287 |
msgid "Simple Text"
|
288 |
msgstr "Einfach Text"
|
289 |
|
290 |
-
|
291 |
-
|
292 |
msgid "The Truck"
|
293 |
msgstr "Der Truck"
|
294 |
|
295 |
-
|
296 |
-
|
297 |
msgid "The Sun"
|
298 |
msgstr "The Sun"
|
299 |
|
300 |
-
|
301 |
-
|
302 |
msgid "The FF Error"
|
303 |
msgstr "The FF Error"
|
304 |
|
305 |
-
|
306 |
-
|
307 |
msgid "Monster"
|
308 |
msgstr "Monster"
|
309 |
|
310 |
-
|
311 |
-
|
312 |
msgid "Chastely"
|
313 |
msgstr "Chastely"
|
314 |
|
315 |
-
|
316 |
-
|
317 |
msgid "Only Typo"
|
318 |
msgstr "Only Typo"
|
319 |
|
320 |
-
|
321 |
-
|
322 |
msgid "Paint"
|
323 |
msgstr "Paint"
|
324 |
|
325 |
-
|
326 |
-
|
327 |
msgid "Animate (Flash)"
|
328 |
msgstr "Animate (Flash)"
|
329 |
|
330 |
-
|
331 |
-
|
332 |
msgid "Damask"
|
333 |
msgstr "Damask"
|
334 |
|
335 |
-
|
336 |
-
|
337 |
msgid "Lego"
|
338 |
msgstr "Lego"
|
339 |
|
340 |
-
|
341 |
-
|
342 |
msgid "Chemistry"
|
343 |
msgstr "Chemielabor"
|
344 |
|
345 |
-
|
346 |
-
|
347 |
msgid "Own Style URL:"
|
348 |
msgstr "Eigenes Design:"
|
349 |
|
350 |
-
|
351 |
-
|
352 |
msgid "URL to the css-file (incl. http://)"
|
353 |
msgstr "URL zur css-Datei (inkl. http://)"
|
354 |
|
355 |
-
|
356 |
-
|
357 |
-
msgid ""
|
358 |
-
"<strong>
|
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 |
-
|
366 |
-
#: inc/wp-maintenance-mode-settings.php:
|
367 |
-
|
368 |
msgid "Preview"
|
369 |
msgstr "Vorschau"
|
370 |
|
371 |
-
#: inc/wp-maintenance-mode-settings.php:
|
|
|
372 |
msgid "noindex, nofollow:"
|
373 |
msgstr "noindex, nofollow:"
|
374 |
|
375 |
-
#: inc/wp-maintenance-mode-settings.php:
|
376 |
-
|
377 |
-
"The robots meta tag lets you utilize a granular, page-specific approach to "
|
378 |
-
"
|
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 |
-
|
386 |
-
|
387 |
msgid "Title:"
|
388 |
msgstr "Titel:"
|
389 |
|
390 |
-
|
391 |
-
#: inc/wp-maintenance-mode-settings.php:
|
392 |
-
#: inc/wp-maintenance-mode-settings.php:
|
393 |
-
|
394 |
msgid "Leave empty for default."
|
395 |
msgstr "Leer lassen für den Standardtext."
|
396 |
|
397 |
-
|
398 |
-
|
399 |
msgid "Header:"
|
400 |
msgstr "Header:"
|
401 |
|
402 |
-
|
403 |
-
|
404 |
msgid "Heading:"
|
405 |
msgstr "Überschrift:"
|
406 |
|
407 |
-
|
408 |
-
|
409 |
msgid "Text:"
|
410 |
msgstr "Text:"
|
411 |
|
412 |
-
|
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 |
-
|
431 |
-
|
432 |
-
msgid ""
|
433 |
-
"
|
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:
|
|
|
441 |
msgid "Backend Role:"
|
442 |
msgstr "Backendrolle:"
|
443 |
|
444 |
-
|
445 |
-
|
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 |
-
|
450 |
-
#: inc/wp-maintenance-mode-settings.php:
|
451 |
-
|
452 |
msgid "Super Admin has always access."
|
453 |
msgstr "Super Admin hat immer Zugang."
|
454 |
|
455 |
-
#: inc/wp-maintenance-mode-settings.php:
|
|
|
456 |
msgid "Frontend Role:"
|
457 |
msgstr "Frontendrolle:"
|
458 |
|
459 |
-
|
460 |
-
|
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:
|
|
|
465 |
msgid "Redirection:"
|
466 |
msgstr "Weiterleitung:"
|
467 |
|
468 |
-
#: inc/wp-maintenance-mode-settings.php:
|
469 |
-
|
470 |
-
"If you want that after the login the destination address is not standard to "
|
471 |
-
"
|
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 |
-
|
477 |
-
|
478 |
msgid "Save"
|
479 |
msgstr "Speichern"
|
480 |
|
481 |
-
|
482 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 " & WP Super Cache flushed."
|
104 |
msgstr " & WP Super Cache aktualisiert."
|
105 |
|
106 |
+
#: wp-maintenance-mode.php:583
|
107 |
+
#@ wp-maintenance-mode
|
108 |
msgid " & W3 Total Cache for pages flushed."
|
109 |
msgstr " & 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´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’ 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ü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:
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team:
|
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-
|
14 |
-
"X-Poedit-
|
15 |
-
"X-Poedit-
|
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 |
-
|
22 |
-
|
23 |
-
#:
|
24 |
-
msgid "
|
25 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
|
27 |
-
|
|
|
|
|
28 |
msgid "Settings"
|
29 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
-
|
32 |
-
#: wp-maintenance-mode.php:
|
|
|
33 |
#, php-format
|
34 |
msgid "Plugin %s settings <strong>updated</strong>."
|
35 |
-
msgstr "
|
36 |
|
37 |
-
|
38 |
-
#: wp-maintenance-mode.php:
|
|
|
39 |
#, php-format
|
40 |
msgid "Plugin %s active status <strong>updated</strong>."
|
41 |
-
msgstr "Estado del
|
42 |
|
43 |
-
|
|
|
44 |
msgid "Plugin Activate"
|
45 |
msgstr "Plugin activado"
|
46 |
|
47 |
-
|
48 |
-
#: wp-maintenance-mode.php:
|
49 |
-
#: wp-maintenance-mode.php:
|
|
|
|
|
|
|
|
|
50 |
msgid "False"
|
51 |
msgstr "Desactivado"
|
52 |
|
53 |
-
|
54 |
-
#: wp-maintenance-mode.php:
|
55 |
-
#: wp-maintenance-mode.php:
|
|
|
|
|
|
|
|
|
56 |
msgid "True"
|
57 |
msgstr "Activado"
|
58 |
|
59 |
-
|
|
|
60 |
msgid "Update"
|
61 |
msgstr "Actualizar"
|
62 |
|
63 |
-
|
|
|
64 |
msgid "Plugin Settings"
|
65 |
-
msgstr "
|
66 |
|
67 |
-
|
|
|
68 |
msgid "Countdown:"
|
69 |
-
msgstr "Cuenta
|
70 |
|
71 |
-
|
72 |
-
#: wp-maintenance-mode.php:
|
|
|
73 |
msgid "Click for datepicker"
|
74 |
msgstr "Haz click para ver el calendario"
|
75 |
|
76 |
-
|
|
|
77 |
msgid "Date:"
|
78 |
msgstr "Fecha:"
|
79 |
|
80 |
-
|
|
|
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
|
83 |
|
84 |
-
|
|
|
85 |
msgid "Value:"
|
86 |
msgstr "Valor:"
|
87 |
|
88 |
-
|
|
|
89 |
msgid "Unit:"
|
90 |
msgstr "Unidad:"
|
91 |
|
92 |
-
|
|
|
93 |
msgid "second"
|
94 |
msgstr "segundo"
|
95 |
|
96 |
-
|
|
|
97 |
msgid "minute"
|
98 |
msgstr "minuto"
|
99 |
|
100 |
-
|
|
|
101 |
msgid "hour"
|
102 |
msgstr "hora"
|
103 |
|
104 |
-
|
|
|
105 |
msgid "day"
|
106 |
-
msgstr "
|
107 |
|
108 |
-
|
|
|
109 |
msgid "week"
|
110 |
msgstr "semana"
|
111 |
|
112 |
-
|
|
|
113 |
msgid "month"
|
114 |
msgstr "mes"
|
115 |
|
116 |
-
|
|
|
117 |
msgid "year"
|
118 |
-
msgstr "
|
119 |
|
120 |
-
|
|
|
121 |
msgid "Link:"
|
122 |
msgstr "Enlace:"
|
123 |
|
124 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
msgid "Theme:"
|
126 |
msgstr "Tema:"
|
127 |
|
128 |
-
|
|
|
129 |
msgid "Own Style"
|
130 |
-
msgstr "
|
131 |
|
132 |
-
|
|
|
133 |
msgid "Simple Text"
|
134 |
msgstr "Texto Simple"
|
135 |
|
136 |
-
|
|
|
137 |
msgid "The Truck"
|
138 |
msgstr "The Truck"
|
139 |
|
140 |
-
|
|
|
141 |
msgid "The Sun"
|
142 |
msgstr "The Sun"
|
143 |
|
144 |
-
|
|
|
145 |
msgid "The FF Error"
|
146 |
msgstr "The FF Error"
|
147 |
|
148 |
-
|
|
|
149 |
msgid "Monster"
|
150 |
msgstr "Monster"
|
151 |
|
152 |
-
|
|
|
153 |
msgid "Chastely"
|
154 |
msgstr "Chastely"
|
155 |
|
156 |
-
|
|
|
157 |
msgid "Only Typo"
|
158 |
msgstr "Only Typo"
|
159 |
|
160 |
-
|
|
|
161 |
msgid "Paint"
|
162 |
msgstr "Paint"
|
163 |
|
164 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
165 |
msgid "Damask"
|
166 |
msgstr "Damask"
|
167 |
|
168 |
-
|
|
|
169 |
msgid "Lego"
|
170 |
msgstr "Lego"
|
171 |
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
#: wp-maintenance-mode.php:
|
194 |
-
#: wp-maintenance-mode.php:
|
195 |
-
msgid "
|
196 |
-
msgstr "
|
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 |
-
|
246 |
-
#:
|
247 |
-
msgid "
|
248 |
-
msgstr "
|
249 |
|
250 |
-
|
251 |
-
|
252 |
-
|
|
|
253 |
|
254 |
-
|
255 |
-
#: wp-maintenance-mode.php:
|
256 |
msgid "Title:"
|
257 |
-
msgstr "
|
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 |
-
|
265 |
-
#: wp-maintenance-mode.php:
|
266 |
-
#: wp-maintenance-mode.php:
|
267 |
-
#: wp-maintenance-mode.php:
|
268 |
msgid "Leave empty for default."
|
269 |
-
msgstr "
|
270 |
|
271 |
-
|
272 |
-
#: wp-maintenance-mode.php:
|
273 |
msgid "Header:"
|
274 |
-
msgstr "
|
275 |
|
276 |
-
|
277 |
-
#: wp-maintenance-mode.php:
|
278 |
msgid "Heading:"
|
279 |
-
msgstr "
|
280 |
|
281 |
-
|
282 |
-
#: wp-maintenance-mode.php:
|
283 |
-
msgid "
|
284 |
-
msgstr "
|
285 |
-
|
286 |
-
#: wp-maintenance-mode.php:645
|
287 |
-
msgid "months"
|
288 |
-
msgstr "mes"
|
289 |
|
290 |
-
|
291 |
-
#:
|
292 |
-
|
293 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
294 |
|
295 |
-
|
296 |
-
|
297 |
-
|
|
|
298 |
|
299 |
-
|
300 |
-
#: wp-maintenance-mode.php:
|
301 |
msgid "Allowed userrole to see the frontend of this blog."
|
302 |
-
msgstr "
|
303 |
|
304 |
-
|
305 |
-
|
306 |
-
|
|
|
307 |
|
308 |
-
|
309 |
-
#:
|
310 |
-
msgid "
|
311 |
-
msgstr "
|
312 |
|
313 |
-
|
314 |
-
#: wp-maintenance-mode.php:
|
315 |
-
msgid "
|
316 |
-
msgstr "
|
317 |
|
318 |
-
|
319 |
-
#: wp-maintenance-mode.php:
|
320 |
-
|
321 |
-
msgid "
|
322 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
323 |
|
|
|
324 |
#. translators: plugin header field 'Name'
|
325 |
#: wp-maintenance-mode.php:0
|
326 |
msgid "WP Maintenance Mode"
|
327 |
-
msgstr "
|
328 |
|
329 |
-
|
330 |
#. translators: plugin header field 'PluginURI'
|
331 |
#: wp-maintenance-mode.php:0
|
332 |
-
msgid "http://
|
333 |
-
msgstr "http://
|
334 |
|
335 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
336 |
#. translators: plugin header field 'Author'
|
337 |
#: wp-maintenance-mode.php:0
|
338 |
msgid "Frank Bültge"
|
339 |
msgstr "Frank Bültge"
|
340 |
|
341 |
-
|
342 |
#. translators: plugin header field 'AuthorURI'
|
343 |
#: wp-maintenance-mode.php:0
|
344 |
msgid "http://bueltge.de/"
|
345 |
msgstr "http://bueltge.de/"
|
346 |
|
347 |
-
|
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.
|
365 |
-
msgstr "1.
|
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 área de administración bloqueado"
|
29 |
+
|
30 |
+
#@ wp-maintenance-mode
|
31 |
+
#: site.php:62
|
32 |
+
msgid "Admin-Logout"
|
33 |
+
msgstr "Cerrar sesión"
|
34 |
+
|
35 |
+
#@ wp-maintenance-mode
|
36 |
+
#: site.php:66
|
37 |
+
msgid "Admin-Login"
|
38 |
+
msgstr "Administració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ó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á actualmente bajo mantenimiento programado.<br /><strong>Por favor, inténtelo más tarde en %1$s %2$s</strong><br />Gracias por su comprensió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í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ños"
|
97 |
+
|
98 |
+
#@ wp-maintenance-mode
|
99 |
+
#: wp-maintenance-mode.php:576
|
100 |
+
msgid " & WP Super Cache flushed."
|
101 |
+
msgstr " & WP Super Cache datos de caché borrados."
|
102 |
+
|
103 |
+
#@ wp-maintenance-mode
|
104 |
+
#: wp-maintenance-mode.php:583
|
105 |
+
msgid " & W3 Total Cache for pages flushed."
|
106 |
+
msgstr " & 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ón: el modo de mantenimiento está <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ó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ñ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ó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ón del plugin"
|
187 |
|
188 |
+
#@ wp-maintenance-mode
|
189 |
+
#: inc/wp-maintenance-mode-settings.php:119
|
190 |
msgid "Countdown:"
|
191 |
+
msgstr "Cuenta atrá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ás para usar esto, luego pon la fecha en la que quieres que termine la cuenta atrá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í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ñ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á 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ó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 "¿Deseas un enlace al área de Administració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í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´t copy the stylesheet in your plugin folder, it will be deleted on the next automatical update of the plugin!"
|
357 |
+
msgstr "<strong>Atención:</strong> Por favor, no copies la hoja de estilos en la carpeta del plugin, será borrada en la próxima actualizació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ómo una página individual debe ser indexada y presentada a los usuarios en los resultados de bú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í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í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áginas, entradas o archivos del modo de mantenimiento. Añade el slug de las páginas o entradas a excluir separá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ó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és del inicio de sesión la dirección de destino no sea la está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á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ñadir el formulario de inicio de sesió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 "¿Deseas ver los avisos en el backend, la barra de administración y la pantalla de inicio de sesión?"
|
474 |
+
|
475 |
+
#@ default
|
476 |
+
#: index.php:25
|
477 |
+
msgid "Cheatin’ uh?"
|
478 |
+
msgstr "¿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á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ón tendrán acceso completo al blog incluyendo el frontend, según la configuración."
|
497 |
+
|
498 |
+
#@ wp-maintenance-mode
|
499 |
#. translators: plugin header field 'Author'
|
500 |
#: wp-maintenance-mode.php:0
|
501 |
msgid "Frank Bültge"
|
502 |
msgstr "Frank Bü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 |