Version Description
Improvements
- Allowed translation of more strings in the settings screens.
- Added Spanish translations, thanks Paul Benitez - Tecnofilos
- Minor code improvements
Additions
- Saving forms without an
EMAIL
field or submit button will show a notice.
Download this release
Release Info
Developer | DvanKooten |
Plugin | MailChimp for WordPress |
Version | 2.0.1 |
Comparing to | |
See all releases |
Code changes from version 2.0 to 2.0.1
- includes/class-admin.php +22 -4
- includes/class-form-manager.php +5 -11
- includes/functions/general.php +6 -6
- includes/views/api-settings.php +3 -3
- includes/views/checkbox-settings.php +4 -4
- includes/views/form-settings.php +27 -28
- includes/views/parts/admin-field-wizard.php +5 -5
- includes/views/parts/admin-footer.php +1 -1
- languages/mailchimp-for-wp-es_ES.mo +0 -0
- languages/mailchimp-for-wp-es_ES.po +1077 -0
- languages/mailchimp-for-wp-nl_NL.mo +0 -0
- languages/mailchimp-for-wp-nl_NL.po +942 -245
- languages/mailchimp-for-wp.mo +0 -0
- languages/mailchimp-for-wp.po +786 -170
- mailchimp-for-wp.php +2 -2
- readme.txt +32 -12
includes/class-admin.php
CHANGED
@@ -119,10 +119,10 @@ class MC4WP_Lite_Admin
|
|
119 |
{
|
120 |
$required_cap = apply_filters( 'mc4wp_settings_cap', 'manage_options' );
|
121 |
add_menu_page( 'MailChimp for WP Lite', 'MailChimp for WP', $required_cap, 'mc4wp-lite', array($this, 'show_api_settings'), MC4WP_LITE_PLUGIN_URL . 'assets/img/menu-icon.png' );
|
122 |
-
add_submenu_page( 'mc4wp-lite', 'API Settings - MailChimp for WP Lite', 'MailChimp Settings', $required_cap, 'mc4wp-lite', array( $this, 'show_api_settings' ) );
|
123 |
-
add_submenu_page( 'mc4wp-lite', 'Checkbox Settings - MailChimp for WP Lite', 'Checkboxes', $required_cap, 'mc4wp-lite-checkbox-settings', array($this, 'show_checkbox_settings' ) );
|
124 |
-
add_submenu_page( 'mc4wp-lite', 'Form Settings - MailChimp for WP Lite', 'Forms', $required_cap, 'mc4wp-lite-form-settings', array( $this, 'show_form_settings' ) );
|
125 |
-
add_submenu_page( 'mc4wp-lite', 'Upgrade to Pro - MailChimp for WP Lite', 'Upgrade to Pro', $required_cap, 'mc4wp-lite-upgrade', array( $this, 'redirect_to_pro' ) );
|
126 |
}
|
127 |
|
128 |
|
@@ -150,8 +150,26 @@ class MC4WP_Lite_Admin
|
|
150 |
public function validate_form_settings( $settings ) {
|
151 |
|
152 |
if( isset( $settings['markup'] ) ) {
|
|
|
153 |
// strip form tags (to prevent people from adding them)
|
154 |
$settings['markup'] = preg_replace( '/<\/?form(.|\s)*?>/i', '', $settings['markup'] );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
}
|
156 |
|
157 |
return $settings;
|
119 |
{
|
120 |
$required_cap = apply_filters( 'mc4wp_settings_cap', 'manage_options' );
|
121 |
add_menu_page( 'MailChimp for WP Lite', 'MailChimp for WP', $required_cap, 'mc4wp-lite', array($this, 'show_api_settings'), MC4WP_LITE_PLUGIN_URL . 'assets/img/menu-icon.png' );
|
122 |
+
add_submenu_page( 'mc4wp-lite', 'API Settings - MailChimp for WP Lite', __( 'MailChimp Settings', 'mailchimp-for-wp' ), $required_cap, 'mc4wp-lite', array( $this, 'show_api_settings' ) );
|
123 |
+
add_submenu_page( 'mc4wp-lite', 'Checkbox Settings - MailChimp for WP Lite', __( 'Checkboxes', 'mailchimp-for-wp' ), $required_cap, 'mc4wp-lite-checkbox-settings', array($this, 'show_checkbox_settings' ) );
|
124 |
+
add_submenu_page( 'mc4wp-lite', 'Form Settings - MailChimp for WP Lite', __( 'Forms', 'mailchimp-for-wp' ), $required_cap, 'mc4wp-lite-form-settings', array( $this, 'show_form_settings' ) );
|
125 |
+
add_submenu_page( 'mc4wp-lite', 'Upgrade to Pro - MailChimp for WP Lite', __( 'Upgrade to Pro', 'mailchimp-for-wp' ), $required_cap, 'mc4wp-lite-upgrade', array( $this, 'redirect_to_pro' ) );
|
126 |
}
|
127 |
|
128 |
|
150 |
public function validate_form_settings( $settings ) {
|
151 |
|
152 |
if( isset( $settings['markup'] ) ) {
|
153 |
+
|
154 |
// strip form tags (to prevent people from adding them)
|
155 |
$settings['markup'] = preg_replace( '/<\/?form(.|\s)*?>/i', '', $settings['markup'] );
|
156 |
+
|
157 |
+
// check if form contains EMAIL field
|
158 |
+
// <(input|textarea)(?=[^>]*name="EMAIL")[^>]*>
|
159 |
+
$search = preg_match( '/<(input|textarea)(?=[^>]*name="EMAIL")[^>]*>/i', $settings['markup'] );
|
160 |
+
if( ! $search) {
|
161 |
+
add_settings_error( 'mc4wp', 'mc4wp-form', sprintf( __( 'Your form should contain an EMAIL field. Example: <code>%s</code>', 'mailchimp-for-wp' ), '<input type="email" name="EMAIL" />' ), 'updated' );
|
162 |
+
}
|
163 |
+
|
164 |
+
// check if form contains submit button
|
165 |
+
// <(input|button)(?=[^>]*type="submit")[^>]*>
|
166 |
+
$search = preg_match( '/<(input|button)(?=[^>]*type="submit")[^>]*>/i', $settings['markup'] );
|
167 |
+
if( ! $search ) {
|
168 |
+
add_settings_error( 'mc4wp', 'mc4wp-form', sprintf( __( 'Your form should contain a submit button. Example: <code>%s</code>', 'mailchimp-for-wp' ), '<input type="submit" value="'. __( 'Sign Up', 'mailchimp-for-wp' ) .'" />' ), 'updated' );
|
169 |
+
}
|
170 |
+
|
171 |
+
// TODO: Check if form contains all the required form fields
|
172 |
+
|
173 |
}
|
174 |
|
175 |
return $settings;
|
includes/class-form-manager.php
CHANGED
@@ -83,7 +83,7 @@ class MC4WP_Lite_Form_Manager {
|
|
83 |
return false;
|
84 |
}
|
85 |
|
86 |
-
if( $opts['css'] != 1 && $opts['css']
|
87 |
|
88 |
$form_theme = $opts['css'];
|
89 |
if( in_array( $form_theme, array( 'blue', 'green', 'dark', 'light', 'red' ) ) ) {
|
@@ -459,7 +459,7 @@ class MC4WP_Lite_Form_Manager {
|
|
459 |
}
|
460 |
|
461 |
$api = mc4wp_get_api();
|
462 |
-
$opts = mc4wp_get_options('form');
|
463 |
|
464 |
$lists = $this->get_lists();
|
465 |
|
@@ -476,13 +476,13 @@ class MC4WP_Lite_Form_Manager {
|
|
476 |
|
477 |
foreach ( $lists as $list_id ) {
|
478 |
// allow plugins to alter merge vars for each individual list
|
479 |
-
$list_merge_vars = apply_filters('mc4wp_merge_vars', $merge_vars, 0, $list_id);
|
480 |
|
481 |
// send a subscribe request to MailChimp for each list
|
482 |
$result = $api->subscribe( $list_id, $email, $list_merge_vars, $email_type, $opts['double_optin'] );
|
483 |
}
|
484 |
|
485 |
-
do_action('mc4wp_after_subscribe', $email, $merge_vars, 0, $result);
|
486 |
|
487 |
if ( $result !== true ) {
|
488 |
// subscribe request failed, store error.
|
@@ -494,12 +494,6 @@ class MC4WP_Lite_Form_Manager {
|
|
494 |
// store user email in a cookie
|
495 |
$this->set_email_cookie( $email );
|
496 |
|
497 |
-
/**
|
498 |
-
* @deprecated Don't use, will be removed in v2.0
|
499 |
-
*/
|
500 |
-
$from_url = (isset($_SERVER['HTTP_REFERER'])) ? $_SERVER['HTTP_REFERER'] : '';
|
501 |
-
do_action('mc4wp_subscribe_form', $email, $list_id, 0, $merge_vars, $from_url);
|
502 |
-
|
503 |
// Store success result
|
504 |
$this->success = true;
|
505 |
|
@@ -544,7 +538,7 @@ class MC4WP_Lite_Form_Manager {
|
|
544 |
|
545 |
// make sure lists is an array
|
546 |
if( ! is_array( $lists ) ) {
|
547 |
-
$lists = array( $lists );
|
548 |
}
|
549 |
|
550 |
}
|
83 |
return false;
|
84 |
}
|
85 |
|
86 |
+
if( $opts['css'] != 1 && $opts['css'] !== 'default' ) {
|
87 |
|
88 |
$form_theme = $opts['css'];
|
89 |
if( in_array( $form_theme, array( 'blue', 'green', 'dark', 'light', 'red' ) ) ) {
|
459 |
}
|
460 |
|
461 |
$api = mc4wp_get_api();
|
462 |
+
$opts = mc4wp_get_options( 'form' );
|
463 |
|
464 |
$lists = $this->get_lists();
|
465 |
|
476 |
|
477 |
foreach ( $lists as $list_id ) {
|
478 |
// allow plugins to alter merge vars for each individual list
|
479 |
+
$list_merge_vars = apply_filters( 'mc4wp_merge_vars', $merge_vars, 0, $list_id );
|
480 |
|
481 |
// send a subscribe request to MailChimp for each list
|
482 |
$result = $api->subscribe( $list_id, $email, $list_merge_vars, $email_type, $opts['double_optin'] );
|
483 |
}
|
484 |
|
485 |
+
do_action( 'mc4wp_after_subscribe', $email, $merge_vars, 0, $result );
|
486 |
|
487 |
if ( $result !== true ) {
|
488 |
// subscribe request failed, store error.
|
494 |
// store user email in a cookie
|
495 |
$this->set_email_cookie( $email );
|
496 |
|
|
|
|
|
|
|
|
|
|
|
|
|
497 |
// Store success result
|
498 |
$this->success = true;
|
499 |
|
538 |
|
539 |
// make sure lists is an array
|
540 |
if( ! is_array( $lists ) ) {
|
541 |
+
$lists = array( trim( $lists ) );
|
542 |
}
|
543 |
|
544 |
}
|
includes/functions/general.php
CHANGED
@@ -27,7 +27,7 @@ function mc4wp_get_options( $key = null ) {
|
|
27 |
'api_key' => ''
|
28 |
),
|
29 |
'checkbox' => array(
|
30 |
-
'label' => 'Sign me up for the newsletter!',
|
31 |
'precheck' => 1,
|
32 |
'css' => 1,
|
33 |
'show_at_comment_form' => 0,
|
@@ -41,11 +41,11 @@ function mc4wp_get_options( $key = null ) {
|
|
41 |
'form' => array(
|
42 |
'css' => 'default',
|
43 |
'markup' => "<p>\n\t<label for=\"mc4wp_email\">{$email_label}: </label>\n\t<input type=\"email\" id=\"mc4wp_email\" name=\"EMAIL\" placeholder=\"{$email_placeholder}\" required />\n</p>\n\n<p>\n\t<input type=\"submit\" value=\"{$signup_button}\" />\n</p>",
|
44 |
-
'text_success' => 'Thank you, your sign-up request was successful! Please check your e-mail inbox.',
|
45 |
-
'text_error' => 'Oops. Something went wrong. Please try again later.',
|
46 |
-
'text_invalid_email' => 'Please provide a valid email address.',
|
47 |
-
'text_already_subscribed' =>
|
48 |
-
'text_invalid_captcha' => 'Please complete the CAPTCHA.',
|
49 |
'redirect' => '',
|
50 |
'lists' => array(),
|
51 |
'double_optin' => 1,
|
27 |
'api_key' => ''
|
28 |
),
|
29 |
'checkbox' => array(
|
30 |
+
'label' => __( 'Sign me up for the newsletter!', 'mailchimp-for-wp' ),
|
31 |
'precheck' => 1,
|
32 |
'css' => 1,
|
33 |
'show_at_comment_form' => 0,
|
41 |
'form' => array(
|
42 |
'css' => 'default',
|
43 |
'markup' => "<p>\n\t<label for=\"mc4wp_email\">{$email_label}: </label>\n\t<input type=\"email\" id=\"mc4wp_email\" name=\"EMAIL\" placeholder=\"{$email_placeholder}\" required />\n</p>\n\n<p>\n\t<input type=\"submit\" value=\"{$signup_button}\" />\n</p>",
|
44 |
+
'text_success' => __( 'Thank you, your sign-up request was successful! Please check your e-mail inbox.', 'mailchimp-for-wp' ),
|
45 |
+
'text_error' => __( 'Oops. Something went wrong. Please try again later.', 'mailchimp-for-wp' ),
|
46 |
+
'text_invalid_email' => __( 'Please provide a valid email address.', 'mailchimp-for-wp' ),
|
47 |
+
'text_already_subscribed' => __( 'Given email address is already subscribed, thank you!', 'mailchimp-for-wp' ),
|
48 |
+
'text_invalid_captcha' => __( 'Please complete the CAPTCHA.', 'mailchimp-for-wp' ),
|
49 |
'redirect' => '',
|
50 |
'lists' => array(),
|
51 |
'double_optin' => 1,
|
includes/views/api-settings.php
CHANGED
@@ -9,7 +9,7 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
9 |
?>
|
10 |
<div id="mc4wp-<?php echo $tab; ?>" class="wrap mc4wp-settings">
|
11 |
|
12 |
-
<h2><img src="<?php echo MC4WP_LITE_PLUGIN_URL . 'assets/img/menu-icon.png'; ?>" /> MailChimp for WordPress
|
13 |
|
14 |
<div id="mc4wp-content">
|
15 |
|
@@ -29,9 +29,9 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
29 |
<table class="form-table">
|
30 |
|
31 |
<tr valign="top">
|
32 |
-
<th scope="row"><label for="mailchimp_api_key">MailChimp API Key
|
33 |
<td>
|
34 |
-
<input type="text" class="widefat" placeholder="Your MailChimp API key" id="mailchimp_api_key" name="mc4wp_lite[api_key]" value="<?php echo $opts['api_key']; ?>" />
|
35 |
<p class="help"><a target="_blank" href="http://admin.mailchimp.com/account/api"><?php _e( 'Get your API key here.', 'mailchimp-for-wp' ); ?></a></p>
|
36 |
</td>
|
37 |
|
9 |
?>
|
10 |
<div id="mc4wp-<?php echo $tab; ?>" class="wrap mc4wp-settings">
|
11 |
|
12 |
+
<h2><img src="<?php echo MC4WP_LITE_PLUGIN_URL . 'assets/img/menu-icon.png'; ?>" /> <?php _e( 'MailChimp for WordPress', 'mailchimp-for-wp' ); ?>: <?php _e( 'MailChimp Settings', 'mailchimp-for-wp' ); ?></h2>
|
13 |
|
14 |
<div id="mc4wp-content">
|
15 |
|
29 |
<table class="form-table">
|
30 |
|
31 |
<tr valign="top">
|
32 |
+
<th scope="row"><label for="mailchimp_api_key">MailChimp <?php _e( 'API Key', 'mailchimp-for-wp' ); ?></label></th>
|
33 |
<td>
|
34 |
+
<input type="text" class="widefat" placeholder="<?php _e( 'Your MailChimp API key', 'mailchimp-for-wp' ); ?>" id="mailchimp_api_key" name="mc4wp_lite[api_key]" value="<?php echo $opts['api_key']; ?>" />
|
35 |
<p class="help"><a target="_blank" href="http://admin.mailchimp.com/account/api"><?php _e( 'Get your API key here.', 'mailchimp-for-wp' ); ?></a></p>
|
36 |
</td>
|
37 |
|
includes/views/checkbox-settings.php
CHANGED
@@ -8,7 +8,7 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
8 |
?>
|
9 |
<div id="mc4wp-<?php echo $tab; ?>" class="wrap mc4wp-settings">
|
10 |
|
11 |
-
<h2><img src="<?php echo MC4WP_LITE_PLUGIN_URL . 'assets/img/menu-icon.png'; ?>" /> MailChimp for WordPress
|
12 |
|
13 |
<div id="mc4wp-content">
|
14 |
|
@@ -28,7 +28,7 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
28 |
|
29 |
<table class="form-table">
|
30 |
<tr valign="top">
|
31 |
-
<th scope="row"
|
32 |
|
33 |
<?php // loop through lists
|
34 |
if( ! $lists || empty( $lists ) ) {
|
@@ -45,8 +45,8 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
45 |
?>
|
46 |
</tr>
|
47 |
<tr valign="top">
|
48 |
-
<th scope="row"
|
49 |
-
<td class="nowrap"><label><input type="radio" name="mc4wp_lite_checkbox[double_optin]" value="1" <?php checked($opts['double_optin'], 1); ?> /> Yes
|
50 |
<td class="desc"><?php _e( 'Select "yes" if you want people to confirm their email address before being subscribed (recommended)', 'mailchimp-for-wp' ); ?></td>
|
51 |
</tr>
|
52 |
</table>
|
8 |
?>
|
9 |
<div id="mc4wp-<?php echo $tab; ?>" class="wrap mc4wp-settings">
|
10 |
|
11 |
+
<h2><img src="<?php echo MC4WP_LITE_PLUGIN_URL . 'assets/img/menu-icon.png'; ?>" /> <?php _e( 'MailChimp for WordPress', 'mailchimp-for-wp' ); ?>: <?php _e( 'Checkbox Settings', 'mailchimp-for-wp' ); ?></h2>
|
12 |
|
13 |
<div id="mc4wp-content">
|
14 |
|
28 |
|
29 |
<table class="form-table">
|
30 |
<tr valign="top">
|
31 |
+
<th scope="row"><?php _e( 'MailChimp Lists', 'mailchimp-for-wp' ); ?></th>
|
32 |
|
33 |
<?php // loop through lists
|
34 |
if( ! $lists || empty( $lists ) ) {
|
45 |
?>
|
46 |
</tr>
|
47 |
<tr valign="top">
|
48 |
+
<th scope="row"><?php _e( 'Double opt-in?', 'mailchimp-for-wp' ); ?></th>
|
49 |
+
<td class="nowrap"><label><input type="radio" name="mc4wp_lite_checkbox[double_optin]" value="1" <?php checked($opts['double_optin'], 1); ?> /> <?php _e( 'Yes' ); ?></label> <label><input type="radio" id="mc4wp_checkbox_double_optin_0" name="mc4wp_lite_checkbox[double_optin]" value="0" <?php checked($opts['double_optin'], 0); ?> /> <?php _e( 'No' ); ?></label></td>
|
50 |
<td class="desc"><?php _e( 'Select "yes" if you want people to confirm their email address before being subscribed (recommended)', 'mailchimp-for-wp' ); ?></td>
|
51 |
</tr>
|
52 |
</table>
|
includes/views/form-settings.php
CHANGED
@@ -4,9 +4,9 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
4 |
header( 'HTTP/1.1 403 Forbidden' );
|
5 |
exit;
|
6 |
} ?>
|
7 |
-
<div id="mc4wp-<?php echo $tab; ?>" class="wrap mc4wp-settings">
|
8 |
|
9 |
-
<h2><img src="<?php echo MC4WP_LITE_PLUGIN_URL . 'assets/img/menu-icon.png'; ?>" /> MailChimp for WordPress
|
10 |
|
11 |
<div id="mc4wp-content">
|
12 |
|
@@ -21,7 +21,7 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
21 |
<table class="form-table">
|
22 |
|
23 |
<tr valign="top">
|
24 |
-
<th scope="row"><label for="mc4wp_load_stylesheet_select"><?php _e( 'Load form styles?' ,'mailchimp-for-wp' ); ?></label></th>
|
25 |
<td class="nowrap valigntop">
|
26 |
<select name="mc4wp_lite_form[css]" id="mc4wp_load_stylesheet_select">
|
27 |
<option value="0" <?php selected($opts['css'], 0); ?>><?php _e( 'No' ); ?></option>
|
@@ -42,7 +42,7 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
42 |
</td>
|
43 |
</tr>
|
44 |
<tr valign="top">
|
45 |
-
<th scope="row"
|
46 |
<?php // loop through lists
|
47 |
if( empty( $lists ) ) {
|
48 |
?><td colspan="2"><?php printf( __( 'No lists found, %sare you connected to MailChimp?%s', 'mailchimp-for-wp' ), '<a href="'. admin_url( 'admin.php?page=mc4wp-lite' ) .'">', '</a>' ); ?></td><?php
|
@@ -52,7 +52,7 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
52 |
<?php foreach($lists as $list) { ?>
|
53 |
<li>
|
54 |
<label>
|
55 |
-
<input type="checkbox" name="mc4wp_lite_form[lists][<?php echo esc_attr($list->id); ?>]" value="<?php echo esc_attr($list->id); ?>" data-list-groupings="<?php echo esc_attr(json_encode($list->interest_groupings)); ?>" data-list-fields="<?php echo esc_attr(json_encode($list->merge_vars)); ?>" <?php if(array_key_exists($list->id, $opts['lists'])) echo 'checked="checked"'; ?>> <?php echo esc_html( $list->name ); ?>
|
56 |
</label>
|
57 |
</li>
|
58 |
<?php } ?>
|
@@ -64,7 +64,7 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
64 |
</tr>
|
65 |
<tr valign="top">
|
66 |
<td colspan="3">
|
67 |
-
<h4
|
68 |
<div class="mc4wp-wrapper">
|
69 |
<div class="mc4wp-col mc4wp-first">
|
70 |
<?php
|
@@ -73,8 +73,7 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
73 |
} else {
|
74 |
?><textarea class="widefat" cols="160" rows="20" id="mc4wpformmarkup" name="mc4wp_lite_form[markup]"><?php echo esc_textarea($opts['markup']); ?></textarea><?php
|
75 |
} ?>
|
76 |
-
<p class="
|
77 |
-
|
78 |
</div>
|
79 |
|
80 |
<div class="mc4wp-col mc4wp-last">
|
@@ -88,15 +87,15 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
88 |
|
89 |
<?php submit_button(); ?>
|
90 |
|
91 |
-
<h3 class="mc4wp-title"
|
92 |
<table class="form-table">
|
93 |
<tr valign="top">
|
94 |
-
<th scope="row"
|
95 |
<td class="nowrap"><input type="radio" id="mc4wp_form_double_optin_1" name="mc4wp_lite_form[double_optin]" value="1" <?php checked( $opts['double_optin'], 1 ); ?> /> <label for="mc4wp_form_double_optin_1"><?php _e( 'Yes' ); ?></label> <input type="radio" id="mc4wp_form_double_optin_0" name="mc4wp_lite_form[double_optin]" value="0" <?php checked( $opts['double_optin'], 0); ?> /> <label for="mc4wp_form_double_optin_0"><?php _e( 'No' ); ?></label></td>
|
96 |
<td class="desc"><?php _e( 'Select "yes" if you want people to confirm their email address before being subscribed (recommended)', 'mailchimp-for-wp' ); ?></td>
|
97 |
</tr>
|
98 |
<tr class="pro-feature" valign="top">
|
99 |
-
<th scope="row"
|
100 |
<td class="nowrap">
|
101 |
<input type="radio" readonly />
|
102 |
<label><?php _e( "Yes" ); ?></label>
|
@@ -106,7 +105,7 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
106 |
<td class="desc"><?php _e( 'Select "yes" if you want to send your lists Welcome Email if a subscribe succeeds (only when double opt-in is disabled).' ,'mailchimp-for-wp' ); ?></td>
|
107 |
</tr>
|
108 |
<tr class="pro-feature" valign="top">
|
109 |
-
<th scope="row"
|
110 |
<td class="nowrap">
|
111 |
<input type="radio" readonly />
|
112 |
<label><?php _e("Yes"); ?></label>
|
@@ -116,7 +115,7 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
116 |
<td class="desc"><?php _e( 'Select "yes" if you want to update existing subscribers (instead of showing the "already subscribed" message).', 'mailchimp-for-wp' ); ?></td>
|
117 |
</tr>
|
118 |
<tr class="pro-feature" valign="top">
|
119 |
-
<th scope="row"
|
120 |
<td class="nowrap">
|
121 |
<input type="radio" checked readonly />
|
122 |
<label><?php _e("Yes"); ?></label>
|
@@ -131,16 +130,16 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
131 |
|
132 |
<table class="form-table mc4wp-form-messages">
|
133 |
<tr valign="top" class="pro-feature">
|
134 |
-
<th scope="row"
|
135 |
<td class="nowrap">
|
136 |
<input type="radio" readonly /> <label><?php _e("Yes"); ?></label>
|
137 |
<input type="radio" checked readonly /> <label><?php _e("No"); ?></label>
|
138 |
</td>
|
139 |
-
<td class="desc"><?php _e( 'Select "yes" if you want to use AJAX (JavaScript) to submit forms.', 'mailchimp-for-wp' ); ?> <a href="http://dannyvankooten.com/mailchimp-for-wordpress/demo
|
140 |
</tr>
|
141 |
<tr valign="top">
|
142 |
<th scope="row"><label for="mc4wp_form_hide_after_success"><?php _e( 'Hide form after a successful sign-up?', 'mailchimp-for-wp' ); ?></label></th>
|
143 |
-
<td class="nowrap"><input type="radio" id="mc4wp_form_hide_after_success_1" name="mc4wp_lite_form[hide_after_success]" value="1" <?php if($opts['hide_after_success'] == 1) echo 'checked="checked"'; ?> /> <label for="mc4wp_form_hide_after_success_1"
|
144 |
<td class="desc"><?php _e( 'Select "yes" to hide the form fields after a successful sign-up.', 'mailchimp-for-wp' ); ?></td>
|
145 |
</tr>
|
146 |
<tr valign="top">
|
@@ -199,49 +198,49 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
199 |
|
200 |
<p>The <a href="http://wordpress.org/plugins/mailchimp-for-wp/faq/" target="_blank">FAQ</a> lists the various CSS selectors you can use to target the different elements.</p>
|
201 |
|
202 |
-
<h3 class="mc4wp-title"
|
203 |
-
<p
|
204 |
|
205 |
<table class="mc4wp-help">
|
206 |
<tr>
|
207 |
<th>{subscriber_count}</th>
|
208 |
-
<td
|
209 |
</tr>
|
210 |
<tr>
|
211 |
<th>{ip}</th>
|
212 |
-
<td
|
213 |
</tr>
|
214 |
<tr>
|
215 |
<th>{date}</th>
|
216 |
-
<td
|
217 |
</tr>
|
218 |
<tr>
|
219 |
<th>{time}</th>
|
220 |
-
<td
|
221 |
</tr>
|
222 |
<tr>
|
223 |
<th>{user_email}</th>
|
224 |
-
<td
|
225 |
</tr>
|
226 |
<tr>
|
227 |
<th>{user_name}</th>
|
228 |
-
<td
|
229 |
</tr>
|
230 |
<tr>
|
231 |
<th>{user_firstname}</th>
|
232 |
-
<td
|
233 |
</tr>
|
234 |
<tr>
|
235 |
<th>{user_lastname}</th>
|
236 |
-
<td
|
237 |
</tr>
|
238 |
<tr>
|
239 |
<th>{user_id}</th>
|
240 |
-
<td
|
241 |
</tr>
|
242 |
<tr>
|
243 |
<th>{current_url}</th>
|
244 |
-
<td
|
245 |
</tr>
|
246 |
</table>
|
247 |
</div>
|
4 |
header( 'HTTP/1.1 403 Forbidden' );
|
5 |
exit;
|
6 |
} ?>
|
7 |
+
<div id="mc4wp-<?php echo esc_attr( $tab ); ?>" class="wrap mc4wp-settings">
|
8 |
|
9 |
+
<h2><img src="<?php echo MC4WP_LITE_PLUGIN_URL . 'assets/img/menu-icon.png'; ?>" /> <?php _e( 'MailChimp for WordPress', 'mailchimp-for-wp' ); ?>: <?php _e( 'Form Settings', 'mailchimp-for-wp' ); ?></h2>
|
10 |
|
11 |
<div id="mc4wp-content">
|
12 |
|
21 |
<table class="form-table">
|
22 |
|
23 |
<tr valign="top">
|
24 |
+
<th scope="row"><label for="mc4wp_load_stylesheet_select"><?php _e( 'Load form styles (CSS)?' ,'mailchimp-for-wp' ); ?></label></th>
|
25 |
<td class="nowrap valigntop">
|
26 |
<select name="mc4wp_lite_form[css]" id="mc4wp_load_stylesheet_select">
|
27 |
<option value="0" <?php selected($opts['css'], 0); ?>><?php _e( 'No' ); ?></option>
|
42 |
</td>
|
43 |
</tr>
|
44 |
<tr valign="top">
|
45 |
+
<th scope="row"><?php _e( 'Lists this form subscribes to', 'mailchimp-for-wp' ); ?></th>
|
46 |
<?php // loop through lists
|
47 |
if( empty( $lists ) ) {
|
48 |
?><td colspan="2"><?php printf( __( 'No lists found, %sare you connected to MailChimp?%s', 'mailchimp-for-wp' ), '<a href="'. admin_url( 'admin.php?page=mc4wp-lite' ) .'">', '</a>' ); ?></td><?php
|
52 |
<?php foreach($lists as $list) { ?>
|
53 |
<li>
|
54 |
<label>
|
55 |
+
<input type="checkbox" name="mc4wp_lite_form[lists][<?php echo esc_attr( $list->id ); ?>]" value="<?php echo esc_attr($list->id); ?>" data-list-groupings="<?php echo esc_attr(json_encode($list->interest_groupings)); ?>" data-list-fields="<?php echo esc_attr(json_encode($list->merge_vars)); ?>" <?php if(array_key_exists($list->id, $opts['lists'])) echo 'checked="checked"'; ?>> <?php echo esc_html( $list->name ); ?>
|
56 |
</label>
|
57 |
</li>
|
58 |
<?php } ?>
|
64 |
</tr>
|
65 |
<tr valign="top">
|
66 |
<td colspan="3">
|
67 |
+
<h4><?php _e( 'Form mark-up', 'mailchimp-for-wp' ); ?></h4>
|
68 |
<div class="mc4wp-wrapper">
|
69 |
<div class="mc4wp-col mc4wp-first">
|
70 |
<?php
|
73 |
} else {
|
74 |
?><textarea class="widefat" cols="160" rows="20" id="mc4wpformmarkup" name="mc4wp_lite_form[markup]"><?php echo esc_textarea($opts['markup']); ?></textarea><?php
|
75 |
} ?>
|
76 |
+
<p class="mc4wp-form-usage"><?php printf( __( 'Use the shortcode %s to display this form inside a post, page or text widget.' ,'mailchimp-for-wp' ), '<input type="text" onfocus="this.select();" readonly="readonly" value="[mc4wp_form]" class="mc4wp-shortcode-example">' ); ?></p>
|
|
|
77 |
</div>
|
78 |
|
79 |
<div class="mc4wp-col mc4wp-last">
|
87 |
|
88 |
<?php submit_button(); ?>
|
89 |
|
90 |
+
<h3 class="mc4wp-title"><?php _e( 'MailChimp Settings', 'mailchimp-for-wp' ); ?></h3>
|
91 |
<table class="form-table">
|
92 |
<tr valign="top">
|
93 |
+
<th scope="row"><?php _e( 'Double opt-in?', 'mailchimp-for-wp' ); ?></th>
|
94 |
<td class="nowrap"><input type="radio" id="mc4wp_form_double_optin_1" name="mc4wp_lite_form[double_optin]" value="1" <?php checked( $opts['double_optin'], 1 ); ?> /> <label for="mc4wp_form_double_optin_1"><?php _e( 'Yes' ); ?></label> <input type="radio" id="mc4wp_form_double_optin_0" name="mc4wp_lite_form[double_optin]" value="0" <?php checked( $opts['double_optin'], 0); ?> /> <label for="mc4wp_form_double_optin_0"><?php _e( 'No' ); ?></label></td>
|
95 |
<td class="desc"><?php _e( 'Select "yes" if you want people to confirm their email address before being subscribed (recommended)', 'mailchimp-for-wp' ); ?></td>
|
96 |
</tr>
|
97 |
<tr class="pro-feature" valign="top">
|
98 |
+
<th scope="row"><?php _e( 'Send Welcome Email?', 'mailchimp-for-wp' ); ?></th>
|
99 |
<td class="nowrap">
|
100 |
<input type="radio" readonly />
|
101 |
<label><?php _e( "Yes" ); ?></label>
|
105 |
<td class="desc"><?php _e( 'Select "yes" if you want to send your lists Welcome Email if a subscribe succeeds (only when double opt-in is disabled).' ,'mailchimp-for-wp' ); ?></td>
|
106 |
</tr>
|
107 |
<tr class="pro-feature" valign="top">
|
108 |
+
<th scope="row"><?php _e( 'Update existing subscribers?', 'mailchimp-for-wp' ); ?></th>
|
109 |
<td class="nowrap">
|
110 |
<input type="radio" readonly />
|
111 |
<label><?php _e("Yes"); ?></label>
|
115 |
<td class="desc"><?php _e( 'Select "yes" if you want to update existing subscribers (instead of showing the "already subscribed" message).', 'mailchimp-for-wp' ); ?></td>
|
116 |
</tr>
|
117 |
<tr class="pro-feature" valign="top">
|
118 |
+
<th scope="row"><?php _e( 'Replace interest groups?', 'mailchimp-for-wp' ); ?></th>
|
119 |
<td class="nowrap">
|
120 |
<input type="radio" checked readonly />
|
121 |
<label><?php _e("Yes"); ?></label>
|
130 |
|
131 |
<table class="form-table mc4wp-form-messages">
|
132 |
<tr valign="top" class="pro-feature">
|
133 |
+
<th scope="row"><?php _e( 'Enable AJAX form submission?', 'mailchimp-for-wp' ); ?></th>
|
134 |
<td class="nowrap">
|
135 |
<input type="radio" readonly /> <label><?php _e("Yes"); ?></label>
|
136 |
<input type="radio" checked readonly /> <label><?php _e("No"); ?></label>
|
137 |
</td>
|
138 |
+
<td class="desc"><?php _e( 'Select "yes" if you want to use AJAX (JavaScript) to submit forms.', 'mailchimp-for-wp' ); ?> <a href="http://dannyvankooten.com/mailchimp-for-wordpress/demo/#utm_source=lite-plugin&utm_medium=link&utm_campaign=settings-demo-link">(demo)</a></td>
|
139 |
</tr>
|
140 |
<tr valign="top">
|
141 |
<th scope="row"><label for="mc4wp_form_hide_after_success"><?php _e( 'Hide form after a successful sign-up?', 'mailchimp-for-wp' ); ?></label></th>
|
142 |
+
<td class="nowrap"><input type="radio" id="mc4wp_form_hide_after_success_1" name="mc4wp_lite_form[hide_after_success]" value="1" <?php if($opts['hide_after_success'] == 1) echo 'checked="checked"'; ?> /> <label for="mc4wp_form_hide_after_success_1"><?php _e( 'Yes'); ?></label> <input type="radio" id="mc4wp_form_hide_after_success_0" name="mc4wp_lite_form[hide_after_success]" value="0" <?php if($opts['hide_after_success'] == 0) echo 'checked="checked"'; ?> /> <label for="mc4wp_form_hide_after_success_0"><?php _e( 'No' ); ?></label></td>
|
143 |
<td class="desc"><?php _e( 'Select "yes" to hide the form fields after a successful sign-up.', 'mailchimp-for-wp' ); ?></td>
|
144 |
</tr>
|
145 |
<tr valign="top">
|
198 |
|
199 |
<p>The <a href="http://wordpress.org/plugins/mailchimp-for-wp/faq/" target="_blank">FAQ</a> lists the various CSS selectors you can use to target the different elements.</p>
|
200 |
|
201 |
+
<h3 class="mc4wp-title"><?php _e( 'Form variables', 'mailchimp-for-wp' ); ?></h3>
|
202 |
+
<p><?php _e( 'Use the following variables to add some dynamic content to your form.', 'mailchimp-for-wp' ); ?></p>
|
203 |
|
204 |
<table class="mc4wp-help">
|
205 |
<tr>
|
206 |
<th>{subscriber_count}</th>
|
207 |
+
<td><?php _e( 'Replaced with the number of subscribers on the selected list(s)', 'mailchimp-for-wp' ); ?></td>
|
208 |
</tr>
|
209 |
<tr>
|
210 |
<th>{ip}</th>
|
211 |
+
<td><?php _e( 'Replaced with the visitor\'s IP address', 'mailchimp-for-wp' ); ?></td>
|
212 |
</tr>
|
213 |
<tr>
|
214 |
<th>{date}</th>
|
215 |
+
<td><?php printf( __( 'Replaced with the current date (yyyy/mm/dd eg: %s)', 'mailchimp-for-wp' ), date("Y/m/d") ); ?></td>
|
216 |
</tr>
|
217 |
<tr>
|
218 |
<th>{time}</th>
|
219 |
+
<td><?php printf( __( 'Replaced with the current time (hh:mm:ss eg: %s)', 'mailchimp-for-wp' ), date("H:i:s") ); ?></td>
|
220 |
</tr>
|
221 |
<tr>
|
222 |
<th>{user_email}</th>
|
223 |
+
<td><?php _e( 'Replaced with the logged in user\'s email (or nothing, if there is no logged in user)', 'mailchimp-for-wp' ); ?></td>
|
224 |
</tr>
|
225 |
<tr>
|
226 |
<th>{user_name}</th>
|
227 |
+
<td><?php _e( 'Display name of the current user', 'mailchimp-for-wp' ); ?></td>
|
228 |
</tr>
|
229 |
<tr>
|
230 |
<th>{user_firstname}</th>
|
231 |
+
<td><?php _e( 'First name of the current user', 'mailchimp-for-wp' ); ?></td>
|
232 |
</tr>
|
233 |
<tr>
|
234 |
<th>{user_lastname}</th>
|
235 |
+
<td><?php _e( 'Last name of the current user', 'mailchimp-for-wp' ); ?></td>
|
236 |
</tr>
|
237 |
<tr>
|
238 |
<th>{user_id}</th>
|
239 |
+
<td><?php _e( 'Current user ID', 'mailchimp-for-wp' ); ?></td>
|
240 |
</tr>
|
241 |
<tr>
|
242 |
<th>{current_url}</th>
|
243 |
+
<td><?php _e( 'Current URL', 'mailchimp-for-wp' ); ?></td>
|
244 |
</tr>
|
245 |
</table>
|
246 |
</div>
|
includes/views/parts/admin-field-wizard.php
CHANGED
@@ -21,8 +21,8 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
21 |
<optgroup label="MailChimp merge fields" class="merge-fields"></optgroup>
|
22 |
<optgroup label="Interest groupings" class="groupings"></optgroup>
|
23 |
<optgroup label="Other" class="other">
|
24 |
-
<option class="default" value="submit"
|
25 |
-
<option class="default" disabled>(PRO ONLY) Lists Choice
|
26 |
</optgroup>
|
27 |
</select>
|
28 |
</p>
|
@@ -30,12 +30,12 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
30 |
<div id="mc4wp-fw-fields">
|
31 |
|
32 |
<p class="row label">
|
33 |
-
<label for="mc4wp-fw-label"
|
34 |
<input class="widefat" type="text" id="mc4wp-fw-label" />
|
35 |
</p>
|
36 |
|
37 |
<p class="row placeholder">
|
38 |
-
<label for="mc4wp-fw-placeholder"
|
39 |
<input class="widefat" type="text" id="mc4wp-fw-placeholder" />
|
40 |
</p>
|
41 |
|
@@ -45,7 +45,7 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
45 |
</p>
|
46 |
|
47 |
<p class="row values" id="mc4wp-fw-values">
|
48 |
-
<label for="mc4wp-fw-values"
|
49 |
</p>
|
50 |
|
51 |
<p class="row wrap-p">
|
21 |
<optgroup label="MailChimp merge fields" class="merge-fields"></optgroup>
|
22 |
<optgroup label="Interest groupings" class="groupings"></optgroup>
|
23 |
<optgroup label="Other" class="other">
|
24 |
+
<option class="default" value="submit"><?php _e( 'Submit Button' ,'mailchimp-for-wp' ); ?></option>
|
25 |
+
<option class="default" disabled>(PRO ONLY) <?php _e( 'Lists Choice' ,'mailchimp-for-wp' ); ?></option>
|
26 |
</optgroup>
|
27 |
</select>
|
28 |
</p>
|
30 |
<div id="mc4wp-fw-fields">
|
31 |
|
32 |
<p class="row label">
|
33 |
+
<label for="mc4wp-fw-label"><?php _e('Label', 'mailchimp-for-wp' ); ?> <small><?php _e( '(optional)', 'mailchimp-for-wp' ); ?></small></label>
|
34 |
<input class="widefat" type="text" id="mc4wp-fw-label" />
|
35 |
</p>
|
36 |
|
37 |
<p class="row placeholder">
|
38 |
+
<label for="mc4wp-fw-placeholder"><?php _e( 'Placeholder', 'mailchimp-for-wp' ); ?> <small><?php _e( '(optional)', 'mailchimp-for-wp' ); ?></small></label>
|
39 |
<input class="widefat" type="text" id="mc4wp-fw-placeholder" />
|
40 |
</p>
|
41 |
|
45 |
</p>
|
46 |
|
47 |
<p class="row values" id="mc4wp-fw-values">
|
48 |
+
<label for="mc4wp-fw-values"><?php _e( 'Labels', 'mailchimp-for-wp' ); ?> <small><?php _e( '(leave empty to hide)', 'mailchimp-for-wp' ); ?></small></label>
|
49 |
</p>
|
50 |
|
51 |
<p class="row wrap-p">
|
includes/views/parts/admin-footer.php
CHANGED
@@ -8,4 +8,4 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
8 |
<br style="clear:both;" />
|
9 |
<p class="help">Enjoying this plugin? <a href="http://dannyvankooten.com/mailchimp-for-wordpress/?utm_source=lite-plugin&utm_medium=link&utm_campaign=footer-link">Upgrade to MailChimp for WordPress Pro now</a> for an even better plugin, you will love it.</p>
|
10 |
<p class="help">Submit your feature requests or vote for new features <a href="http://www.google.com/moderator/#15/e=20c6b7&t=20c6b7.40">here</a>.</p>
|
11 |
-
<p class="help"
|
8 |
<br style="clear:both;" />
|
9 |
<p class="help">Enjoying this plugin? <a href="http://dannyvankooten.com/mailchimp-for-wordpress/?utm_source=lite-plugin&utm_medium=link&utm_campaign=footer-link">Upgrade to MailChimp for WordPress Pro now</a> for an even better plugin, you will love it.</p>
|
10 |
<p class="help">Submit your feature requests or vote for new features <a href="http://www.google.com/moderator/#15/e=20c6b7&t=20c6b7.40">here</a>.</p>
|
11 |
+
<p class="help"><?php _e( 'This plugin is not developed by or affiliated with MailChimp in any way.', 'mailchimp-for-wp' ); ?></p>
|
languages/mailchimp-for-wp-es_ES.mo
ADDED
Binary file
|
languages/mailchimp-for-wp-es_ES.po
ADDED
@@ -0,0 +1,1077 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: MailChimp for WordPress\n"
|
4 |
+
"POT-Creation-Date: 2014-05-14 22:19+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-05-14 22:19+0100\n"
|
6 |
+
"Last-Translator: Danny <hi@dannyvankooten.com>\n"
|
7 |
+
"Language-Team: Danny van Kooten <hi@dannyvankooten.com>\n"
|
8 |
+
"Language: en_EN\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.6.5\n"
|
13 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
+
"X-Poedit-Basepath: .\n"
|
15 |
+
"X-Poedit-SearchPath-0: ..\n"
|
16 |
+
|
17 |
+
#: ../includes/class-admin.php:178
|
18 |
+
msgid "Settings"
|
19 |
+
msgstr "Configuración"
|
20 |
+
|
21 |
+
#: ../includes/class-admin.php:197
|
22 |
+
msgid "Documentation"
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: ../includes/class-admin.php:209
|
26 |
+
msgid "Save Form"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: ../includes/class-admin.php:211
|
30 |
+
msgid "Update Form"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: ../includes/class-admin.php:248
|
34 |
+
msgid "Your email address"
|
35 |
+
msgstr "Tu dirección de correo"
|
36 |
+
|
37 |
+
#: ../includes/class-admin.php:249
|
38 |
+
msgid "Email address"
|
39 |
+
msgstr "Tu dirección de correo"
|
40 |
+
|
41 |
+
#: ../includes/class-admin.php:250
|
42 |
+
msgid "Sign up"
|
43 |
+
msgstr "Registro"
|
44 |
+
|
45 |
+
#: ../includes/class-admin.php:261
|
46 |
+
msgid "Back to general form settings"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: ../includes/class-admin.php:263
|
50 |
+
msgid "Form updated."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: ../includes/class-admin.php:264
|
54 |
+
msgid "Form saved."
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: ../includes/class-admin.php:321
|
58 |
+
#, fuzzy
|
59 |
+
msgid "Form settings"
|
60 |
+
msgstr "Ajustes del formulario"
|
61 |
+
|
62 |
+
#: ../includes/class-admin.php:322
|
63 |
+
#, fuzzy
|
64 |
+
msgid "Optional settings"
|
65 |
+
msgstr "Ajustes del formulario"
|
66 |
+
|
67 |
+
#: ../includes/class-admin.php:323
|
68 |
+
msgid "Form variables"
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: ../includes/class-admin.php:357
|
72 |
+
msgid "Use the following variables to add some dynamic content to your form."
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: ../includes/class-admin.php:497
|
76 |
+
#, php-format
|
77 |
+
msgid ""
|
78 |
+
"Couldn't create the stylesheet. Manually add the generated CSS to your theme "
|
79 |
+
"stylesheet by using the %sTheme Editor%s or use FTP and edit <em>%s</em>."
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: ../includes/class-admin.php:498
|
83 |
+
#, php-format
|
84 |
+
msgid "%sShow CSS%s"
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: ../includes/class-admin.php:507
|
88 |
+
#, php-format
|
89 |
+
msgid ""
|
90 |
+
"To apply these styles on your website, select \"load custom form styles\" in "
|
91 |
+
"the %sform settings%s"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: ../includes/class-admin.php:508
|
95 |
+
#, php-format
|
96 |
+
msgid "The %sCSS Stylesheet%s has been created."
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: ../includes/class-admin.php:524
|
100 |
+
#, fuzzy
|
101 |
+
msgid "General Settings"
|
102 |
+
msgstr "Ajustes del formulario"
|
103 |
+
|
104 |
+
#: ../includes/class-admin.php:525
|
105 |
+
#, fuzzy
|
106 |
+
msgid "Checkboxes"
|
107 |
+
msgstr "Configuración de las casillas de verificación"
|
108 |
+
|
109 |
+
#: ../includes/class-admin.php:526
|
110 |
+
#: ../includes/views/pages/admin-form-settings.php:10
|
111 |
+
msgid "Forms"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: ../includes/class-admin.php:527
|
115 |
+
#: ../includes/views/pages/admin-reports.php:10
|
116 |
+
msgid "Reports"
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: ../includes/class-admin.php:596
|
120 |
+
msgid "Comment form"
|
121 |
+
msgstr "Formulario de comentarios"
|
122 |
+
|
123 |
+
#: ../includes/class-admin.php:597
|
124 |
+
msgid "Registration form"
|
125 |
+
msgstr "Formulario de registros"
|
126 |
+
|
127 |
+
#: ../includes/class-admin.php:601
|
128 |
+
msgid "MultiSite forms"
|
129 |
+
msgstr "Formularios MultiSite"
|
130 |
+
|
131 |
+
#: ../includes/class-admin.php:605
|
132 |
+
msgid "BuddyPress registration"
|
133 |
+
msgstr "Regitro BuddyPress"
|
134 |
+
|
135 |
+
#: ../includes/class-admin.php:613 ../includes/class-admin.php:617
|
136 |
+
#, php-format
|
137 |
+
msgid "%s checkout"
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#: ../includes/class-admin.php:653
|
141 |
+
#, php-format
|
142 |
+
msgid ""
|
143 |
+
"Please make sure the plugin is connected to MailChimp. <a href=\"%s"
|
144 |
+
"\">Provide a valid API key.</a>"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: ../includes/class-admin.php:792
|
148 |
+
#, php-format
|
149 |
+
msgid ""
|
150 |
+
"<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
|
151 |
+
"settings you had set in the Lite version, please <a href=\"%s\">deactivate "
|
152 |
+
"it now</a> to prevent problems"
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: ../includes/class-admin.php:865
|
156 |
+
#, fuzzy
|
157 |
+
msgid "Renewed MailChimp cache."
|
158 |
+
msgstr "Renovar las listas de MailChimp"
|
159 |
+
|
160 |
+
#: ../includes/class-admin.php:867
|
161 |
+
msgid "Failed to renew MailChimp cache - please try again later."
|
162 |
+
msgstr ""
|
163 |
+
"Fallo al renovar la cache de MailChimp - Por favor, intentelo de nuevo más "
|
164 |
+
"tarde."
|
165 |
+
|
166 |
+
#: ../includes/class-form-manager.php:248
|
167 |
+
#, php-format
|
168 |
+
msgid "<strong>Error:</strong> Please specify a form ID. Example: %s."
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: ../includes/class-form-manager.php:261
|
172 |
+
msgid ""
|
173 |
+
"<strong>Error:</strong> Sign-up form not found. Please check if you used the "
|
174 |
+
"correct form ID."
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: ../includes/class-form-manager.php:370
|
178 |
+
#, php-format
|
179 |
+
msgid ""
|
180 |
+
"<strong>Admin notice:</strong> you have not yet selected a MailChimp list(s) "
|
181 |
+
"for this form. <a target=\"_top\" href=\"%s\">Edit this sign-up form</a> and "
|
182 |
+
"select at least one list."
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: ../includes/class-form-manager.php:833
|
186 |
+
msgid "New Sign-Up"
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: ../includes/class-form-manager.php:834
|
190 |
+
#, php-format
|
191 |
+
msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: ../includes/class-form-manager.php:873
|
195 |
+
msgid "This email was auto-sent by the MailChimp for WordPress plugin."
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: ../includes/class-widget.php:20
|
199 |
+
msgid "MailChimp for WP Form"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: ../includes/class-widget.php:21
|
203 |
+
msgid "Displays one of your MailChimp for WordPress sign-up forms"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: ../includes/class-widget.php:39
|
207 |
+
#, php-format
|
208 |
+
msgid ""
|
209 |
+
"Please select the sign-up form you'd like to show here in the <a href=\"%s"
|
210 |
+
"\">widget settings</a>."
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: ../includes/class-widget.php:68
|
214 |
+
msgid "Newsletter"
|
215 |
+
msgstr "Newsletter"
|
216 |
+
|
217 |
+
#: ../includes/class-widget.php:79
|
218 |
+
msgid "Title:"
|
219 |
+
msgstr "Título:"
|
220 |
+
|
221 |
+
#: ../includes/class-widget.php:83
|
222 |
+
msgid "Form:"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: ../includes/class-widget.php:85
|
226 |
+
msgid "Select the form to show"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: ../includes/class-widget.php:93
|
230 |
+
#, php-format
|
231 |
+
msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: ../includes/functions/general.php:20
|
235 |
+
msgid "Sign me up for the newsletter!"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: ../includes/functions/general.php:42
|
239 |
+
msgid ""
|
240 |
+
"Thank you, your sign-up request was successful! Please check your e-mail "
|
241 |
+
"inbox."
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: ../includes/functions/general.php:43
|
245 |
+
msgid "Oops. Something went wrong. Please try again later."
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: ../includes/functions/general.php:44
|
249 |
+
msgid "Please provide a valid email address."
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: ../includes/functions/general.php:45
|
253 |
+
msgid "Given email address is already subscribed, thank you!"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: ../includes/functions/general.php:46
|
257 |
+
msgid "Please complete the CAPTCHA."
|
258 |
+
msgstr ""
|
259 |
+
|
260 |
+
#: ../includes/integrations/class-cf7.php:44
|
261 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:16
|
262 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:30
|
263 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:44
|
264 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:58
|
265 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:75
|
266 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:87
|
267 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:106
|
268 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:52
|
269 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:60
|
270 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:90
|
271 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:95
|
272 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:58
|
273 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:69
|
274 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:79
|
275 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:90
|
276 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:104
|
277 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:109
|
278 |
+
msgid "Yes"
|
279 |
+
msgstr "Si"
|
280 |
+
|
281 |
+
#: ../includes/integrations/class-cf7.php:44
|
282 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:18
|
283 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:32
|
284 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:46
|
285 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:60
|
286 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:77
|
287 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:89
|
288 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:107
|
289 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:52
|
290 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:62
|
291 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:90
|
292 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:95
|
293 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:22
|
294 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:60
|
295 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:71
|
296 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:81
|
297 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:92
|
298 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:104
|
299 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:109
|
300 |
+
msgid "No"
|
301 |
+
msgstr "No"
|
302 |
+
|
303 |
+
#: ../includes/library/license-manager/class-license-manager.php:132
|
304 |
+
#, php-format
|
305 |
+
msgid ""
|
306 |
+
"<b>Warning!</b> You're blocking external requests which means you won't be "
|
307 |
+
"able to get %s updates. Please add %s to %s."
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: ../includes/library/license-manager/class-license-manager.php:175
|
311 |
+
#, php-format
|
312 |
+
msgid "Your %s license has been activated. You have an unlimited license. "
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: ../includes/library/license-manager/class-license-manager.php:177
|
316 |
+
#, php-format
|
317 |
+
msgid "Your %s license has been activated. You have used %d/%d activations. "
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: ../includes/library/license-manager/class-license-manager.php:182
|
321 |
+
#, php-format
|
322 |
+
msgid "<a href=\"%s\">Did you know you can upgrade your license?</a>"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: ../includes/library/license-manager/class-license-manager.php:186
|
326 |
+
#, php-format
|
327 |
+
msgid ""
|
328 |
+
"<a href=\"%s\">Your license is expiring in %d days, would you like to extend "
|
329 |
+
"it?</a>"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: ../includes/library/license-manager/class-license-manager.php:195
|
333 |
+
#, php-format
|
334 |
+
msgid ""
|
335 |
+
"You've reached your activation limit. You must <a href=\"%s\">upgrade your "
|
336 |
+
"license</a> to use it on this site."
|
337 |
+
msgstr ""
|
338 |
+
|
339 |
+
#: ../includes/library/license-manager/class-license-manager.php:198
|
340 |
+
#, php-format
|
341 |
+
msgid ""
|
342 |
+
"Your license has expired. You must <a href=\"%s\">extend your license</a> in "
|
343 |
+
"order to use it again."
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: ../includes/library/license-manager/class-license-manager.php:201
|
347 |
+
msgid "Failed to activate your license, your license key seems to be invalid."
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#: ../includes/library/license-manager/class-license-manager.php:225
|
351 |
+
#, php-format
|
352 |
+
msgid "Your %s license has been deactivated."
|
353 |
+
msgstr ""
|
354 |
+
|
355 |
+
#: ../includes/library/license-manager/class-license-manager.php:227
|
356 |
+
#, php-format
|
357 |
+
msgid "Failed to deactivate your %s license."
|
358 |
+
msgstr ""
|
359 |
+
|
360 |
+
#: ../includes/library/license-manager/class-license-manager.php:262
|
361 |
+
#, php-format
|
362 |
+
msgid "Request error: \"%s\""
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: ../includes/library/license-manager/class-license-manager.php:420
|
366 |
+
#, php-format
|
367 |
+
msgid "%s: License Settings"
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: ../includes/library/license-manager/class-plugin-license-manager.php:72
|
371 |
+
#, php-format
|
372 |
+
msgid ""
|
373 |
+
"%s is network activated, you can manage your license in the <a href=\"%s"
|
374 |
+
"\">network admin license page</a>."
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: ../includes/library/license-manager/class-plugin-license-manager.php:74
|
378 |
+
#, php-format
|
379 |
+
msgid ""
|
380 |
+
"%s is network activated, please contact your site administrator to manage "
|
381 |
+
"the license."
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: ../includes/library/license-manager/class-update-manager.php:83
|
385 |
+
#, php-format
|
386 |
+
msgid ""
|
387 |
+
"%s failed to check for updates because of the following error: <em>%s</em>"
|
388 |
+
msgstr ""
|
389 |
+
|
390 |
+
#: ../includes/library/license-manager/class-update-manager.php:148
|
391 |
+
msgid ""
|
392 |
+
"This site has not been activated properly on dannyvankooten.com and thus "
|
393 |
+
"cannot check for future updates. Please activate your site with a valid "
|
394 |
+
"license key."
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: ../includes/library/license-manager/views/form.php:23
|
398 |
+
msgid "License status"
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: ../includes/library/license-manager/views/form.php:33
|
402 |
+
msgid "Toggle license status"
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: ../includes/library/license-manager/views/form.php:38
|
406 |
+
msgid ""
|
407 |
+
"(deactivate your license so you can activate it on another WordPress site)"
|
408 |
+
msgstr ""
|
409 |
+
|
410 |
+
#: ../includes/library/license-manager/views/form.php:44
|
411 |
+
msgid "Please enter a license key in the field below first."
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#: ../includes/library/license-manager/views/form.php:52
|
415 |
+
msgid "License Key"
|
416 |
+
msgstr ""
|
417 |
+
|
418 |
+
#: ../includes/library/license-manager/views/form.php:54
|
419 |
+
#, fuzzy, php-format
|
420 |
+
msgid "Paste your %s license key here.."
|
421 |
+
msgstr "Obtenga su clave de API aquí."
|
422 |
+
|
423 |
+
#: ../includes/library/license-manager/views/form.php:56
|
424 |
+
#, php-format
|
425 |
+
msgid "You defined your license key using the %s PHP constant."
|
426 |
+
msgstr ""
|
427 |
+
|
428 |
+
#: ../includes/library/license-manager/views/form.php:73
|
429 |
+
#, php-format
|
430 |
+
msgid "Your %s license will expire on %s."
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: ../includes/library/license-manager/views/form.php:76
|
434 |
+
#, php-format
|
435 |
+
msgid "%sRenew your license now%s."
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
+
#: ../includes/tables/class-forms-table.php:19
|
439 |
+
msgid "Sign-Up Form"
|
440 |
+
msgstr ""
|
441 |
+
|
442 |
+
#: ../includes/tables/class-forms-table.php:20
|
443 |
+
#, fuzzy
|
444 |
+
msgid "Sign-up Forms"
|
445 |
+
msgstr "Registro"
|
446 |
+
|
447 |
+
#: ../includes/tables/class-forms-table.php:36
|
448 |
+
msgid "Form"
|
449 |
+
msgstr ""
|
450 |
+
|
451 |
+
#: ../includes/tables/class-forms-table.php:37
|
452 |
+
msgid "Shortcode"
|
453 |
+
msgstr ""
|
454 |
+
|
455 |
+
#: ../includes/tables/class-forms-table.php:38
|
456 |
+
msgid "List(s)"
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: ../includes/tables/class-forms-table.php:39
|
460 |
+
msgid "Last edited"
|
461 |
+
msgstr ""
|
462 |
+
|
463 |
+
#: ../includes/tables/class-forms-table.php:103
|
464 |
+
msgid "You have not created any sign-up forms yet. Time to do so!"
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: ../includes/tables/class-log-table.php:23
|
468 |
+
msgid "Subscriber"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: ../includes/tables/class-log-table.php:24
|
472 |
+
msgid "Subscribers"
|
473 |
+
msgstr ""
|
474 |
+
|
475 |
+
#: ../includes/tables/class-log-table.php:44
|
476 |
+
msgid "Email"
|
477 |
+
msgstr ""
|
478 |
+
|
479 |
+
#: ../includes/tables/class-log-table.php:45
|
480 |
+
msgid "List"
|
481 |
+
msgstr ""
|
482 |
+
|
483 |
+
#: ../includes/tables/class-log-table.php:46
|
484 |
+
msgid "Type"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: ../includes/tables/class-log-table.php:47
|
488 |
+
msgid "Source"
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: ../includes/tables/class-log-table.php:48
|
492 |
+
msgid "Extra data"
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: ../includes/tables/class-log-table.php:49
|
496 |
+
msgid "Subscribed"
|
497 |
+
msgstr ""
|
498 |
+
|
499 |
+
#: ../includes/tables/class-log-table.php:258
|
500 |
+
msgid "No subscribe requests found."
|
501 |
+
msgstr ""
|
502 |
+
|
503 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:8
|
504 |
+
#, php-format
|
505 |
+
msgid ""
|
506 |
+
"Any settings you specify here will override the <a href=\"%s\">general form "
|
507 |
+
"settings</a>. If no setting is specified, the corresponding general setting "
|
508 |
+
"value will be used."
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:10
|
512 |
+
#, fuzzy
|
513 |
+
msgid "MailChimp Settings"
|
514 |
+
msgstr "Datos de MailChimp"
|
515 |
+
|
516 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:13
|
517 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:51
|
518 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:55
|
519 |
+
msgid "Double opt-in?"
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:20
|
523 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:34
|
524 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:48
|
525 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:62
|
526 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:79
|
527 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:91
|
528 |
+
msgid "Inherit"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:22
|
532 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:53
|
533 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:62
|
534 |
+
msgid ""
|
535 |
+
"Select \"yes\" if you want people to confirm their email address before "
|
536 |
+
"being subscribed (recommended)"
|
537 |
+
msgstr ""
|
538 |
+
"Marque \"sí \" si quiere que los suscriptores confirmen su dirección de "
|
539 |
+
"correo electrónico antes de suscribirse (recomendado)"
|
540 |
+
|
541 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:27
|
542 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:76
|
543 |
+
msgid "Update existing subscribers?"
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:36
|
547 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:83
|
548 |
+
msgid ""
|
549 |
+
"Select \"yes\" if you want to update existing subscribers (instead of "
|
550 |
+
"showing the \"already subscribed\" message)."
|
551 |
+
msgstr ""
|
552 |
+
"Marque \"sí \" si desea actualizar los suscriptores existentes (en lugar de "
|
553 |
+
"mostrar el mensaje \"ya suscrito \")."
|
554 |
+
|
555 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:41
|
556 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:87
|
557 |
+
msgid "Replace interest groups?"
|
558 |
+
msgstr ""
|
559 |
+
|
560 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:50
|
561 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:94
|
562 |
+
msgid ""
|
563 |
+
"Select \"yes\" if you want to replace the interest groups with the groups "
|
564 |
+
"provided instead of adding the provided groups to the member's interest "
|
565 |
+
"groups (only when updating a subscriber)."
|
566 |
+
msgstr ""
|
567 |
+
"Marque \"sí \" si desea reemplazar los grupos de interés con los grupos "
|
568 |
+
"previstos en lugar de añadir los grupos previstos para los grupos de interés "
|
569 |
+
"del usuario (sólo cuando se actualiza un suscriptor)."
|
570 |
+
|
571 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:55
|
572 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:57
|
573 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:66
|
574 |
+
msgid "Send Welcome Email?"
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:64
|
578 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:64
|
579 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:73
|
580 |
+
msgid ""
|
581 |
+
"Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
|
582 |
+
"succeeds (only when double opt-in is disabled)."
|
583 |
+
msgstr ""
|
584 |
+
"Marque \"sí \" si desea enviar a sus listas un correo electrónico de "
|
585 |
+
"bienvenida si se realiza una suscripción correctamente (sólo cuando se el "
|
586 |
+
"proceso de doble opt-in está desactivado)."
|
587 |
+
|
588 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:69
|
589 |
+
msgid "Form Settings & Messages"
|
590 |
+
msgstr "Configuración de mesajes y formularios"
|
591 |
+
|
592 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:72
|
593 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:103
|
594 |
+
msgid "Enable AJAX form submission?"
|
595 |
+
msgstr ""
|
596 |
+
|
597 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:80
|
598 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:105
|
599 |
+
msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
|
600 |
+
msgstr ""
|
601 |
+
"Seleccione \"sí \" si desea utilizar AJAX (JavaScript) en sus formularios"
|
602 |
+
|
603 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:84
|
604 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:108
|
605 |
+
msgid "Hide form after a successful sign-up?"
|
606 |
+
msgstr "¿Ocultar formulario después de un registro registro satisfactorio?"
|
607 |
+
|
608 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:93
|
609 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:110
|
610 |
+
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
611 |
+
msgstr ""
|
612 |
+
"Seleccione \"Sí \" para ocultar los campos de formulario después de un "
|
613 |
+
"registro satisfactorio"
|
614 |
+
|
615 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:97
|
616 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:113
|
617 |
+
msgid "Redirect to URL after successful sign-ups"
|
618 |
+
msgstr "Redireccionar a una URL tras suscribirse satisfactoriamente."
|
619 |
+
|
620 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:100
|
621 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:116
|
622 |
+
msgid ""
|
623 |
+
"Leave empty or enter 0 for no redirection. Use complete (absolute) URLs, "
|
624 |
+
"including <code>http://</code>"
|
625 |
+
msgstr ""
|
626 |
+
"Dejar en blanco o introduzca 0 para ninguna redirección. Use URLs completas "
|
627 |
+
"(absolutas), incluyendo <code>http://</ code>"
|
628 |
+
|
629 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:104
|
630 |
+
msgid "Send an email copy of the form data?"
|
631 |
+
msgstr ""
|
632 |
+
|
633 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:108
|
634 |
+
msgid ""
|
635 |
+
"Tick \"yes\" if you want to receive an email with the form data for every "
|
636 |
+
"sign-up request."
|
637 |
+
msgstr ""
|
638 |
+
|
639 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:111
|
640 |
+
msgid "Send the copy to this email:"
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:117
|
644 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:119
|
645 |
+
msgid "Success message"
|
646 |
+
msgstr "Mensaje correcto"
|
647 |
+
|
648 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:121
|
649 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:123
|
650 |
+
msgid "General error message"
|
651 |
+
msgstr "Mensaje de error general"
|
652 |
+
|
653 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:125
|
654 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:127
|
655 |
+
msgid "Invalid email address message"
|
656 |
+
msgstr "Mensaje de correo electrónico inválido"
|
657 |
+
|
658 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:129
|
659 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:131
|
660 |
+
msgid "Already subscribed message"
|
661 |
+
msgstr "Mensaje de suscripcion listo"
|
662 |
+
|
663 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:134
|
664 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:136
|
665 |
+
msgid "Invalid CAPTCHA message"
|
666 |
+
msgstr "Mensaje de CAPTCHA no válido"
|
667 |
+
|
668 |
+
#: ../includes/views/metaboxes/optional-form-settings.php:141
|
669 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:142
|
670 |
+
#, php-format
|
671 |
+
msgid "HTML tags like %s are allowed in the message fields."
|
672 |
+
msgstr "Las etiquetas HTML como %s están permitidas en los campos del mensaje."
|
673 |
+
|
674 |
+
#: ../includes/views/metaboxes/required-form-settings.php:14
|
675 |
+
msgid "Lists this form subscribes to"
|
676 |
+
msgstr ""
|
677 |
+
|
678 |
+
#: ../includes/views/metaboxes/required-form-settings.php:17
|
679 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:38
|
680 |
+
#, php-format
|
681 |
+
msgid "No lists found, %sare you connected to MailChimp?%s"
|
682 |
+
msgstr "No se han encontrado listas, %s¿Esta usted conectado a MailChimp?%s"
|
683 |
+
|
684 |
+
#: ../includes/views/metaboxes/required-form-settings.php:29
|
685 |
+
msgid "Add a new field"
|
686 |
+
msgstr "Añadir un nuevo campo"
|
687 |
+
|
688 |
+
#: ../includes/views/metaboxes/required-form-settings.php:32
|
689 |
+
msgid "Select MailChimp field.."
|
690 |
+
msgstr "Seleccione el campo MailChimp ..."
|
691 |
+
|
692 |
+
#: ../includes/views/metaboxes/required-form-settings.php:36
|
693 |
+
msgid "Submit Button"
|
694 |
+
msgstr ""
|
695 |
+
|
696 |
+
#: ../includes/views/metaboxes/required-form-settings.php:37
|
697 |
+
msgid "Lists Choice"
|
698 |
+
msgstr ""
|
699 |
+
|
700 |
+
#: ../includes/views/metaboxes/required-form-settings.php:45
|
701 |
+
msgid "Label"
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#: ../includes/views/metaboxes/required-form-settings.php:45
|
705 |
+
#: ../includes/views/metaboxes/required-form-settings.php:50
|
706 |
+
#: ../includes/views/metaboxes/required-form-settings.php:55
|
707 |
+
msgid "(optional)"
|
708 |
+
msgstr "(opcional)"
|
709 |
+
|
710 |
+
#: ../includes/views/metaboxes/required-form-settings.php:50
|
711 |
+
msgid "Placeholder"
|
712 |
+
msgstr ""
|
713 |
+
|
714 |
+
#: ../includes/views/metaboxes/required-form-settings.php:55
|
715 |
+
msgid "Initial value"
|
716 |
+
msgstr "Valor inicial"
|
717 |
+
|
718 |
+
#: ../includes/views/metaboxes/required-form-settings.php:60
|
719 |
+
msgid "Labels"
|
720 |
+
msgstr ""
|
721 |
+
|
722 |
+
#: ../includes/views/metaboxes/required-form-settings.php:60
|
723 |
+
msgid "(leave empty to hide)"
|
724 |
+
msgstr "(dejar en blanco para ocultar)"
|
725 |
+
|
726 |
+
#: ../includes/views/metaboxes/required-form-settings.php:65
|
727 |
+
#, php-format
|
728 |
+
msgid "Wrap in paragraph %s tags?"
|
729 |
+
msgstr "¿Envolver las etiquetas %s en el párrafo?"
|
730 |
+
|
731 |
+
#: ../includes/views/metaboxes/required-form-settings.php:69
|
732 |
+
msgid "Required field?"
|
733 |
+
msgstr "¿Campo obligatorio?"
|
734 |
+
|
735 |
+
#: ../includes/views/metaboxes/required-form-settings.php:73
|
736 |
+
msgid "Add to form"
|
737 |
+
msgstr "Añadir al formulario"
|
738 |
+
|
739 |
+
#: ../includes/views/metaboxes/required-form-settings.php:77
|
740 |
+
msgid "Generated HTML"
|
741 |
+
msgstr "Generado HTML"
|
742 |
+
|
743 |
+
#: ../includes/views/metaboxes/required-form-settings.php:86
|
744 |
+
msgid "Form usage"
|
745 |
+
msgstr ""
|
746 |
+
|
747 |
+
#: ../includes/views/metaboxes/required-form-settings.php:87
|
748 |
+
#, php-format
|
749 |
+
msgid ""
|
750 |
+
"Use the shortcode %s to display this form inside a post, page or text widget."
|
751 |
+
msgstr ""
|
752 |
+
|
753 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:11
|
754 |
+
#: ../includes/views/pages/admin-form-settings.php:10
|
755 |
+
#: ../includes/views/pages/admin-general-settings.php:10
|
756 |
+
#: ../includes/views/pages/admin-reports.php:10
|
757 |
+
#, fuzzy
|
758 |
+
msgid "MailChimp for WordPress"
|
759 |
+
msgstr "Ajustes de MailChimp para casillas de verificación"
|
760 |
+
|
761 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:11
|
762 |
+
#, fuzzy
|
763 |
+
msgid "Checkbox Settings"
|
764 |
+
msgstr "Configuración de las casillas de verificación"
|
765 |
+
|
766 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:14
|
767 |
+
msgid ""
|
768 |
+
"To use sign-up checkboxes, select at least one list and one form to add the "
|
769 |
+
"checkbox to."
|
770 |
+
msgstr ""
|
771 |
+
"Para activar el registro empleando las casillas de verificación de MailChimp "
|
772 |
+
"para WordPress, seleccione al menos una lista y un formulario donde añadir "
|
773 |
+
"dicha casilla de verificación."
|
774 |
+
|
775 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:21
|
776 |
+
msgid "MailChimp settings for checkboxes"
|
777 |
+
msgstr "Ajustes de MailChimp para casillas de verificación"
|
778 |
+
|
779 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:26
|
780 |
+
msgid ""
|
781 |
+
"If you want to use sign-up checkboxes, select at least one MailChimp list to "
|
782 |
+
"subscribe people to."
|
783 |
+
msgstr ""
|
784 |
+
"Si desea utilizar las casillas de verificación de registro, seleccione al "
|
785 |
+
"menos una lista de MailChimp a las que la gente se suscribirá."
|
786 |
+
|
787 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:34
|
788 |
+
#, fuzzy
|
789 |
+
msgid "MailChimp Lists"
|
790 |
+
msgstr "Renovar las listas de MailChimp"
|
791 |
+
|
792 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:45
|
793 |
+
msgid ""
|
794 |
+
"Select the list(s) to which people who check the checkbox should be "
|
795 |
+
"subscribed."
|
796 |
+
msgstr ""
|
797 |
+
"Seleccione la lista(s) a la que se registrarán las personas que marquen las "
|
798 |
+
"casillas de verificación."
|
799 |
+
|
800 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:68
|
801 |
+
msgid "Checkbox settings"
|
802 |
+
msgstr "Configuración de las casillas de verificación"
|
803 |
+
|
804 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:71
|
805 |
+
msgid "Add the checkbox to these forms"
|
806 |
+
msgstr "Añadir casillas de verificación en estos formularios"
|
807 |
+
|
808 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:78
|
809 |
+
msgid "Selecting a form will automatically add the sign-up checkbox to it."
|
810 |
+
msgstr ""
|
811 |
+
"Al seleccionar un formulario se añadirá automaticamente la casilla de "
|
812 |
+
"verificación de alta al mismo."
|
813 |
+
|
814 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:82
|
815 |
+
msgid "Checkbox label text"
|
816 |
+
msgstr "Texto a mostrar junto a la casilla de verificación."
|
817 |
+
|
818 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:85
|
819 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:115
|
820 |
+
#, php-format
|
821 |
+
msgid "HTML tags like %s are allowed in the label text."
|
822 |
+
msgstr "La etiquetas HTML como %s están permitidas en el texto de la etiqueta."
|
823 |
+
|
824 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:89
|
825 |
+
msgid "Pre-check the checkbox?"
|
826 |
+
msgstr "¿Dejamos pre-marcada la casilla de verificación?"
|
827 |
+
|
828 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:94
|
829 |
+
msgid "Load some default CSS?"
|
830 |
+
msgstr "¿Cargamos algunos CSS por defecto?"
|
831 |
+
|
832 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:96
|
833 |
+
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
834 |
+
msgstr ""
|
835 |
+
"Seleccione \"sí \" si la casilla de verificación aparece en un lugar "
|
836 |
+
"inapropiado"
|
837 |
+
|
838 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:100
|
839 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:120
|
840 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:48
|
841 |
+
#: ../includes/views/tabs/admin-forms-general-settings.php:146
|
842 |
+
msgid "Save all changes"
|
843 |
+
msgstr ""
|
844 |
+
|
845 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:103
|
846 |
+
#, fuzzy
|
847 |
+
msgid "Custom label texts"
|
848 |
+
msgstr "Texto a mostrar junto a la casilla de verificación."
|
849 |
+
|
850 |
+
#: ../includes/views/pages/admin-checkbox-settings.php:104
|
851 |
+
msgid ""
|
852 |
+
"Override the default checkbox label text for any given checkbox using the "
|
853 |
+
"fields below."
|
854 |
+
msgstr ""
|
855 |
+
|
856 |
+
#: ../includes/views/pages/admin-form-settings.php:13
|
857 |
+
#, fuzzy
|
858 |
+
msgid "Forms & Settings"
|
859 |
+
msgstr "Ajustes del formulario"
|
860 |
+
|
861 |
+
#: ../includes/views/pages/admin-form-settings.php:14
|
862 |
+
msgid "CSS Styles Builder"
|
863 |
+
msgstr ""
|
864 |
+
|
865 |
+
#: ../includes/views/pages/admin-general-settings.php:10
|
866 |
+
#, fuzzy
|
867 |
+
msgid "License & API Settings"
|
868 |
+
msgstr "Configuración de licencia y de la API"
|
869 |
+
|
870 |
+
#: ../includes/views/pages/admin-general-settings.php:19
|
871 |
+
msgid "API Settings"
|
872 |
+
msgstr "Configuración de licencia y de la API"
|
873 |
+
|
874 |
+
#: ../includes/views/pages/admin-general-settings.php:21
|
875 |
+
msgid "CONNECTED"
|
876 |
+
msgstr "CONECTADO"
|
877 |
+
|
878 |
+
#: ../includes/views/pages/admin-general-settings.php:23
|
879 |
+
msgid "NOT CONNECTED"
|
880 |
+
msgstr "NO CONECTADO"
|
881 |
+
|
882 |
+
#: ../includes/views/pages/admin-general-settings.php:29
|
883 |
+
msgid "API Key"
|
884 |
+
msgstr ""
|
885 |
+
|
886 |
+
#: ../includes/views/pages/admin-general-settings.php:31
|
887 |
+
msgid "Your MailChimp API key"
|
888 |
+
msgstr ""
|
889 |
+
|
890 |
+
#: ../includes/views/pages/admin-general-settings.php:32
|
891 |
+
msgid "Get your API key here."
|
892 |
+
msgstr "Obtenga su clave de API aquí."
|
893 |
+
|
894 |
+
#: ../includes/views/pages/admin-general-settings.php:48
|
895 |
+
msgid "MailChimp Data"
|
896 |
+
msgstr "Datos de MailChimp"
|
897 |
+
|
898 |
+
#: ../includes/views/pages/admin-general-settings.php:49
|
899 |
+
msgid ""
|
900 |
+
"The table below shows your MailChimp lists data. If you applied changes to "
|
901 |
+
"your MailChimp lists, please use the following button to renew your cached "
|
902 |
+
"data."
|
903 |
+
msgstr ""
|
904 |
+
"La siguiente tabla muestra los datos de las listas de MailChimp. Si ha "
|
905 |
+
"aplicado cambios en las listas de MailChimp, por favor, utilice el botón "
|
906 |
+
"siguiente para renovar sus datos en caché."
|
907 |
+
|
908 |
+
#: ../includes/views/pages/admin-general-settings.php:55
|
909 |
+
#: ../includes/views/pages/admin-general-settings.php:133
|
910 |
+
msgid "Renew MailChimp lists"
|
911 |
+
msgstr "Renovar las listas de MailChimp"
|
912 |
+
|
913 |
+
#: ../includes/views/pages/admin-general-settings.php:120
|
914 |
+
msgid "No lists were found in your MailChimp account."
|
915 |
+
msgstr ""
|
916 |
+
|
917 |
+
#: ../includes/views/pages/admin-reports.php:14
|
918 |
+
msgid "Statistics"
|
919 |
+
msgstr ""
|
920 |
+
|
921 |
+
#: ../includes/views/pages/admin-reports.php:15
|
922 |
+
msgid "Log"
|
923 |
+
msgstr ""
|
924 |
+
|
925 |
+
#: ../includes/views/parts/admin-footer.php:8
|
926 |
+
#, php-format
|
927 |
+
msgid ""
|
928 |
+
"Need help? Email me directly at <a href=\"%s\">support@dannyvankooten.com</"
|
929 |
+
"a>. Please include your website URL and as many details as possible."
|
930 |
+
msgstr ""
|
931 |
+
|
932 |
+
#: ../includes/views/parts/admin-text-variables.php:11
|
933 |
+
msgid "Replaced with the number of subscribers on the selected list(s)"
|
934 |
+
msgstr ""
|
935 |
+
|
936 |
+
#: ../includes/views/parts/admin-text-variables.php:15
|
937 |
+
msgid "Replaced with the visitor's IP address"
|
938 |
+
msgstr ""
|
939 |
+
|
940 |
+
#: ../includes/views/parts/admin-text-variables.php:19
|
941 |
+
#, php-format
|
942 |
+
msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
|
943 |
+
msgstr ""
|
944 |
+
|
945 |
+
#: ../includes/views/parts/admin-text-variables.php:23
|
946 |
+
#, php-format
|
947 |
+
msgid "Replaced with the current time (hh:mm:ss eg: %s)"
|
948 |
+
msgstr ""
|
949 |
+
|
950 |
+
#: ../includes/views/parts/admin-text-variables.php:27
|
951 |
+
msgid ""
|
952 |
+
"Replaced with the logged in user's email (or nothing, if there is no logged "
|
953 |
+
"in user)"
|
954 |
+
msgstr ""
|
955 |
+
|
956 |
+
#: ../includes/views/parts/admin-text-variables.php:31
|
957 |
+
msgid "Display name of the current user"
|
958 |
+
msgstr ""
|
959 |
+
|
960 |
+
#: ../includes/views/parts/admin-text-variables.php:35
|
961 |
+
msgid "First name of the current user"
|
962 |
+
msgstr ""
|
963 |
+
|
964 |
+
#: ../includes/views/parts/admin-text-variables.php:39
|
965 |
+
msgid "Last name of the current user"
|
966 |
+
msgstr ""
|
967 |
+
|
968 |
+
#: ../includes/views/parts/admin-text-variables.php:43
|
969 |
+
msgid "Current user ID"
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
#: ../includes/views/parts/admin-text-variables.php:47
|
973 |
+
msgid "Current URL"
|
974 |
+
msgstr ""
|
975 |
+
|
976 |
+
#: ../includes/views/tabs/admin-forms-css-builder.php:10
|
977 |
+
#, fuzzy
|
978 |
+
msgid "Use the fields below to create custom styling rules for your forms."
|
979 |
+
msgstr ""
|
980 |
+
"Emplear la herramienta inferior para generar el código HTML de los campos "
|
981 |
+
"del formulario."
|
982 |
+
|
983 |
+
#: ../includes/views/tabs/admin-forms-css-builder.php:214
|
984 |
+
msgid "Build CSS File"
|
985 |
+
msgstr ""
|
986 |
+
|
987 |
|