MailChimp for WordPress - Version 2.0.1

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 Icon 128x128 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 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' ), '&lt;input type="email" name="EMAIL" /&gt;' ), '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' ), '&lt;input type="submit" value="'. __( 'Sign Up', 'mailchimp-for-wp' ) .'" /&gt;' ), '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'] != 'default' ) {
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' => "Given email address is already subscribed, thank you!",
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: MailChimp <?php _e( 'Settings' ); ?></h2>
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</label></th>
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: Checkbox <?php _e( 'Settings' ); ?></h2>
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">MailChimp list(s)</th>
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">Double opt-in?</th>
49
- <td class="nowrap"><label><input type="radio" name="mc4wp_lite_checkbox[double_optin]" value="1" <?php checked($opts['double_optin'], 1); ?> /> Yes</label> &nbsp; <label><input type="radio" id="mc4wp_checkbox_double_optin_0" name="mc4wp_lite_checkbox[double_optin]" value="0" <?php checked($opts['double_optin'], 0); ?> /> 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>
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> &nbsp; <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: <?php _e( 'Form Settings', 'mailchimp-for-wp' ); ?></h2>
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">MailChimp list(s)</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,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>Form mark-up</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="help"><?php printf( __( 'To display your sign-up form, paste %s inside the contents of a post, page or text widget.', 'mailchimp-for-wp' ), '<input type="text" onfocus="this.select();" readonly="readonly" value="[mc4wp_form]" size="12" class="mc4wp-shortcode-example">' ); ?></p>
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">MailChimp <?php _e( 'Settings' ); ?></h3>
92
  <table class="form-table">
93
  <tr valign="top">
94
- <th scope="row">Double opt-in?</th>
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> &nbsp; <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">Send Welcome Email?</th>
100
  <td class="nowrap">
101
  <input type="radio" readonly />
102
  <label><?php _e( "Yes" ); ?></label> &nbsp;
@@ -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">Update existing subscribers?</th>
110
  <td class="nowrap">
111
  <input type="radio" readonly />
112
  <label><?php _e("Yes"); ?></label> &nbsp;
@@ -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">Replace interest groups?</th>
120
  <td class="nowrap">
121
  <input type="radio" checked readonly />
122
  <label><?php _e("Yes"); ?></label> &nbsp;
@@ -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">Enable AJAX?</th>
135
  <td class="nowrap">
136
  <input type="radio" readonly /> <label><?php _e("Yes"); ?></label> &nbsp;
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/?utm_source=lite-plugin&utm_medium=link&utm_campaign=settings-demo-link">(demo)</a></td>
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">Yes</label> &nbsp; <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">No</label></td>
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">Form variables</h3>
203
- <p>Use the following variables to add some dynamic content to your form.</p>
204
 
205
  <table class="mc4wp-help">
206
  <tr>
207
  <th>{subscriber_count}</th>
208
- <td>Replaced with the number of subscribers on the selected list(s).</td>
209
  </tr>
210
  <tr>
211
  <th>{ip}</th>
212
- <td>Replaced with the visitor's IP address.</td>
213
  </tr>
214
  <tr>
215
  <th>{date}</th>
216
- <td>Replaced with the current date (yyyy/mm/dd eg: <?php echo date("Y/m/d"); ?>)</td>
217
  </tr>
218
  <tr>
219
  <th>{time}</th>
220
- <td>Replaced with the current time (hh:mm:ss eg: <?php echo date("H:i:s"); ?>)</td>
221
  </tr>
222
  <tr>
223
  <th>{user_email}</th>
224
- <td>Replaced with the logged in user's email (or nothing, if there is no logged in user).</td>
225
  </tr>
226
  <tr>
227
  <th>{user_name}</th>
228
- <td>Display name of the current user</td>
229
  </tr>
230
  <tr>
231
  <th>{user_firstname}</th>
232
- <td>First name of the current user</td>
233
  </tr>
234
  <tr>
235
  <th>{user_lastname}</th>
236
- <td>Last name of the current user</td>
237
  </tr>
238
  <tr>
239
  <th>{user_id}</th>
240
- <td>Current user ID</td>
241
  </tr>
242
  <tr>
243
  <th>{current_url}</th>
244
- <td>Current URL</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> &nbsp; <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> &nbsp;
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> &nbsp;
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> &nbsp;
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> &nbsp;
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> &nbsp; <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">Submit button</option>
25
- <option class="default" disabled>(PRO ONLY) Lists Choice</option>
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">Label <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">Placeholder <small><?php _e( '(optional)', 'mailchimp-for-wp' ); ?></small></label>
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">Value labels <small><?php _e( '(leave empty to hide)', 'mailchimp-for-wp' ); ?></small></label>
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">This plugin is not developed by or affiliated with MailChimp in any way.</p>
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
+ #: ../includes/views/tabs/admin-forms-general-settings.php:8
988
+ msgid "Sign-Up Forms"
989
+ msgstr ""
990
+
991
+ #: ../includes/views/tabs/admin-forms-general-settings.php:8
992
+ msgid "Create New Form"
993
+ msgstr ""
994
+
995
+ #: ../includes/views/tabs/admin-forms-general-settings.php:16
996
+ #, fuzzy
997
+ msgid "General form settings"
998
+ msgstr "Ajustes del formulario"
999
+
1000
+ #: ../includes/views/tabs/admin-forms-general-settings.php:19
1001
+ #, fuzzy
1002
+ msgid "Load form styles (CSS)?"
1003
+ msgstr "¿Cargamos algunos CSS por defecto?"
1004
+
1005
+ #: ../includes/views/tabs/admin-forms-general-settings.php:23
1006
+ msgid "Yes, load basic form styles"
1007
+ msgstr ""
1008
+
1009
+ #: ../includes/views/tabs/admin-forms-general-settings.php:24
1010
+ msgid "Yes, load my custom form styles"
1011
+ msgstr ""
1012
+
1013
+ #: ../includes/views/tabs/admin-forms-general-settings.php:25
1014
+ msgid "Yes, load default form theme"
1015
+ msgstr ""
1016
+
1017
+ #: ../includes/views/tabs/admin-forms-general-settings.php:26
1018
+ msgid "Light Theme"
1019
+ msgstr ""
1020
+
1021
+ #: ../includes/views/tabs/admin-forms-general-settings.php:27
1022
+ msgid "Red Theme"
1023
+ msgstr ""
1024
+
1025
+ #: ../includes/views/tabs/admin-forms-general-settings.php:28
1026
+ msgid "Green Theme"
1027
+ msgstr ""
1028
+
1029
+ #: ../includes/views/tabs/admin-forms-general-settings.php:29
1030
+ msgid "Blue Theme"
1031
+ msgstr ""
1032
+
1033
+ #: ../includes/views/tabs/admin-forms-general-settings.php:30
1034
+ msgid "Dark Theme"
1035
+ msgstr ""
1036
+
1037
+ #: ../includes/views/tabs/admin-forms-general-settings.php:31
1038
+ msgid "Custom Color Theme"
1039
+ msgstr ""
1040
+
1041
+ #: ../includes/views/tabs/admin-forms-general-settings.php:36
1042
+ #, php-format
1043
+ msgid ""
1044
+ "If you %screated a custom stylesheet%s and want it to be loaded, select "
1045
+ "\"custom form styles\". Otherwise, choose the basic formatting styles or one "
1046
+ "of the default themes."
1047
+ msgstr ""
1048
+
1049
+ #: ../includes/views/tabs/admin-forms-general-settings.php:40
1050
+ msgid "Select Color"
1051
+ msgstr ""
1052
+
1053
+ #: ../includes/views/tabs/admin-forms-general-settings.php:50
1054
+ #, fuzzy
1055
+ msgid "Default MailChimp settings"
1056
+ msgstr "Renovar las listas de MailChimp"
1057
+
1058
+ #: ../includes/views/tabs/admin-forms-general-settings.php:51
1059
+ #: ../includes/views/tabs/admin-forms-general-settings.php:99
1060
+ msgid ""
1061
+ "The following settings apply to <strong>all</strong> forms but can be "
1062
+ "overridden on a per-form basis."
1063
+ msgstr ""
1064
+
1065
+ #: ../includes/views/tabs/admin-forms-general-settings.php:98
1066
+ #, fuzzy
1067
+ msgid "Default form settings"
1068
+ msgstr "Ajustes del formulario"
1069
+
1070
+ #~ msgid "Upgrade to Pro"
1071
+ #~ msgstr "Actualizar a la versión pro"
1072
+
1073
+ #~ msgid "MailChimp cache successfully renewed."
1074
+ #~ msgstr "Cache de MailChimp renovada satisfactoriamente."
1075
+
1076
+ #~ msgid "Select at least one list first."
1077
+ #~ msgstr "Seleccione en primer lugar, al menos una lista."
languages/mailchimp-for-wp-nl_NL.mo CHANGED
Binary file
languages/mailchimp-for-wp-nl_NL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: MailChimp for WordPress\n"
4
- "POT-Creation-Date: 2014-04-29 22:55+0100\n"
5
- "PO-Revision-Date: 2014-04-29 22:55+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"
@@ -12,308 +12,575 @@ msgstr ""
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:92 ../includes/views/api-settings.php:12
18
- #: ../includes/views/checkbox-settings.php:11
19
- #: ../includes/views/form-settings.php:91
20
  msgid "Settings"
21
  msgstr "Instellingen"
22
 
23
- #: ../includes/class-admin.php:111
24
- msgid "Upgrade to Pro"
25
- msgstr "Upgrade naar Pro"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
 
27
- #: ../includes/class-admin.php:192
 
 
 
 
 
28
  msgid "Comment form"
29
  msgstr "Reactieformulier"
30
 
31
- #: ../includes/class-admin.php:193
32
  msgid "Registration form"
33
  msgstr "Registratieformulier"
34
 
35
- #: ../includes/class-admin.php:197
36
  msgid "MultiSite forms"
37
  msgstr "MultiSite formulieren"
38
 
39
- #: ../includes/class-admin.php:201
40
  msgid "BuddyPress registration"
41
  msgstr "BuddyPress registratie"
42
 
43
- #: ../includes/class-admin.php:313
44
- msgid "MailChimp cache successfully renewed."
45
- msgstr "MailChimp cache succesvol geleegd."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
 
47
- #: ../includes/class-admin.php:315
48
  msgid "Failed to renew MailChimp cache - please try again later."
49
  msgstr ""
50
  "Het is niet gelukt om de MailChimp cache te legen - probeer het alsjeblieft "
51
  "later opnieuw."
52
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  #: ../includes/class-widget.php:20
54
- msgid "MailChimp Sign-Up Form"
55
- msgstr "MailChimp inschrijfformulier"
56
 
57
  #: ../includes/class-widget.php:21
58
- msgid "Displays your MailChimp for WordPress sign-up form"
59
- msgstr "Toont je MailChimp for WordPress inschrijfformulier."
 
 
 
 
 
 
 
 
 
60
 
61
- #: ../includes/class-widget.php:60
62
  msgid "Newsletter"
63
  msgstr "Nieuwsbrief"
64
 
65
- #: ../includes/class-widget.php:63
66
  msgid "Title:"
67
  msgstr "Titel:"
68
 
69
- #: ../includes/class-widget.php:67
70
- #, php-format
71
- msgid ""
72
- "You can edit your sign-up form in the %sMailChimp for WordPress form settings"
73
- "%s."
74
- msgstr ""
75
- "Je kan je inschrijfformulier wijzigen in de %sMailChimp for WordPress "
76
- "formulier instellingen%s."
77
 
78
- #: ../includes/functions/general.php:21
79
- msgid "Email address"
80
- msgstr "Emailadres"
81
 
82
- #: ../includes/functions/general.php:22
83
- msgid "Your email address"
84
- msgstr "Jouw emailadres"
 
85
 
86
- #: ../includes/functions/general.php:23
87
- msgid "Sign up"
88
- msgstr "Inschrijven"
89
 
90
- #: ../includes/integrations/class-cf7.php:47
91
- #: ../includes/views/checkbox-settings.php:82
92
- #: ../includes/views/checkbox-settings.php:87
93
- #: ../includes/views/form-settings.php:95
94
- #: ../includes/views/form-settings.php:102
95
- #: ../includes/views/form-settings.php:112
96
- #: ../includes/views/form-settings.php:122
97
- #: ../includes/views/form-settings.php:136
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Yes"
99
  msgstr "Ja"
100
 
101
- #: ../includes/integrations/class-cf7.php:47
102
- #: ../includes/views/checkbox-settings.php:82
103
- #: ../includes/views/checkbox-settings.php:87
104
- #: ../includes/views/form-settings.php:27
105
- #: ../includes/views/form-settings.php:95
106
- #: ../includes/views/form-settings.php:104
107
- #: ../includes/views/form-settings.php:114
108
- #: ../includes/views/form-settings.php:124
109
- #: ../includes/views/form-settings.php:137
 
 
 
 
 
 
 
 
 
 
110
  msgid "No"
111
  msgstr "Nee"
112
 
113
- #: ../includes/views/api-settings.php:22
114
- msgid "API Settings"
115
- msgstr "API Instellingen"
116
-
117
- #: ../includes/views/api-settings.php:24
118
- msgid "CONNECTED"
119
- msgstr "VERBONDEN"
 
120
 
121
- #: ../includes/views/api-settings.php:26
122
- msgid "NOT CONNECTED"
123
- msgstr "NIET VERBONDEN"
 
124
 
125
- #: ../includes/views/api-settings.php:35
126
- msgid "Get your API key here."
127
- msgstr "Verkrijg hier je API-sleutel"
 
128
 
129
- #: ../includes/views/api-settings.php:47
130
- msgid "MailChimp Data"
131
- msgstr "MailChimp Data"
 
132
 
133
- #: ../includes/views/api-settings.php:48
 
134
  msgid ""
135
- "The table below shows your MailChimp lists data. If you applied changes to "
136
- "your MailChimp lists, please use the following button to renew your cached "
137
- "data."
138
  msgstr ""
139
- "The tabel hieronder toont je MailChimp lijst configuratie. Wanneer je hier "
140
- "veranderingen aan hebt doorgevoerd die nog niet weergegeven worden kun je de "
141
- "volgende button gebruiken om je configuratie opnieuw in te laden."
142
 
143
- #: ../includes/views/api-settings.php:54
144
- #: ../includes/views/api-settings.php:125
145
- msgid "Renew MailChimp lists"
146
- msgstr "Vernieuw MailChimp lijsten"
147
-
148
- #: ../includes/views/api-settings.php:112
149
- msgid "No lists were found in your MailChimp account"
150
- msgstr "Er zijn geen lijsten gevonden in je MailChimp account."
151
 
152
- #: ../includes/views/checkbox-settings.php:16
 
153
  msgid ""
154
- "To use sign-up checkboxes, select at least one list and one form to add the "
155
- "checkbox to."
156
  msgstr ""
157
- "Selecteer ten minste 1 MailChimp lijst en 1 formulier om de checkbox aan toe "
158
- "te voegen om inschrijf checkboxes te gebruiken."
159
 
160
- #: ../includes/views/checkbox-settings.php:21
161
- msgid "MailChimp settings for checkboxes"
162
- msgstr "MailChimp instellingen voor checkboxes"
 
 
 
 
 
 
 
 
 
 
163
 
164
- #: ../includes/views/checkbox-settings.php:25
 
 
 
 
 
 
 
 
 
 
 
165
  msgid ""
166
- "If you want to use sign-up checkboxes, select at least one MailChimp list to "
167
- "subscribe people to."
168
  msgstr ""
169
- "Selecteer ten minste 1 MailChimp lijst waar mensen aan toegevoegd moeten "
170
- "worden."
171
 
172
- #: ../includes/views/checkbox-settings.php:35
173
- #: ../includes/views/form-settings.php:48
174
  #, php-format
175
- msgid "No lists found, %sare you connected to MailChimp?%s"
176
- msgstr "Geen lijsten gevonden. %sBen je verbonden met MailChimp?%s"
 
 
 
 
177
 
178
- #: ../includes/views/checkbox-settings.php:42
 
179
  msgid ""
180
- "Select the list(s) to which people who check the checkbox should be "
181
- "subscribed."
182
  msgstr ""
183
- "Selecteer de lijsten aan welke mensen die checkbox aanvinken toegevoegd "
184
- "zouden moeten worden."
185
 
186
- #: ../includes/views/checkbox-settings.php:50
187
- #: ../includes/views/form-settings.php:96
188
  msgid ""
189
- "Select \"yes\" if you want people to confirm their email address before "
190
- "being subscribed (recommended)"
 
191
  msgstr ""
192
- "Selecteer \"yes\" wanneer je wilt dat mensen hun emailadres moeten "
193
- "bevestigen alvorens ze aan je MailChimp lijst worden toegevoegd (aanbevolen)"
 
194
 
195
- #: ../includes/views/checkbox-settings.php:54
196
- msgid "Checkbox settings"
197
- msgstr "Checkbox instellingen"
198
 
199
- #: ../includes/views/checkbox-settings.php:58
200
- msgid "Add the checkbox to these forms"
201
- msgstr "Voeg de checkbox toe aan de volgende formulieren"
202
 
203
- #: ../includes/views/checkbox-settings.php:70
204
- msgid "Selecting a form will automatically add the sign-up checkbox to it."
 
205
  msgstr ""
206
- "De \"schrijf je in\" checkbox wordt automatisch toegevoegd aan de "
207
- "formulieren die je hier selecteert."
208
 
209
- #: ../includes/views/checkbox-settings.php:74
210
- msgid "Checkbox label text"
211
- msgstr "Checkbox label tekst"
 
 
 
 
212
 
213
- #: ../includes/views/checkbox-settings.php:77
214
  #, php-format
215
- msgid "HTML tags like %s are allowed in the label text."
216
- msgstr "HTML tags als %s zijn toegestaan in de label tekst."
217
 
218
- #: ../includes/views/checkbox-settings.php:81
219
- msgid "Pre-check the checkbox?"
220
- msgstr "Vink de checkbox standaard aan?"
 
 
221
 
222
- #: ../includes/views/checkbox-settings.php:86
223
- msgid "Load some default CSS?"
224
- msgstr "Laad standaard CSS?"
 
225
 
226
- #: ../includes/views/checkbox-settings.php:88
227
- msgid "Select \"yes\" if the checkbox appears in a weird place."
228
- msgstr "Selecteer \"ja\" als de checkbox op een vreemde plaats verschijnt."
 
229
 
230
- #: ../includes/views/form-settings.php:9
231
- msgid "Form Settings"
232
- msgstr "Formulier Instellingen"
233
 
234
- #: ../includes/views/form-settings.php:15
235
- #, php-format
236
- msgid ""
237
- "To use the MailChimp sign-up form, configure the form below and then either "
238
- "paste %s in the content of a post or page or use the widget."
239
- msgstr ""
240
- "Om het MailChimp inschrijfformulier te gebruiken kun je hieronder je "
241
- "formulier configureren. Vervolgens kun je de meegeleverde plugin widget "
242
- "gebruiken of %s in de inhoud van een bericht of pagina plakken."
243
 
244
- #: ../includes/views/form-settings.php:20
245
- msgid "Required form settings"
246
- msgstr "Verplichte formulier instellingen"
247
 
248
- #: ../includes/views/form-settings.php:24
249
- msgid "Load form styles?"
250
- msgstr "Laad formulier stijlen?"
251
 
252
- #: ../includes/views/form-settings.php:28
253
- msgid "Yes, load basic formatting styles"
254
- msgstr "Ja, laad standaard formulier stijlen"
255
 
256
- #: ../includes/views/form-settings.php:29
257
- msgid "Yes, load my custom form styles"
258
- msgstr "Ja, laad mijn zelf ontworpen formulier stijlen"
259
 
260
- #: ../includes/views/form-settings.php:31
261
- msgid "Light Theme"
262
- msgstr "Licht Thema"
263
 
264
- #: ../includes/views/form-settings.php:32
265
- msgid "Red Theme"
266
- msgstr "Rood Thema"
267
 
268
- #: ../includes/views/form-settings.php:33
269
- msgid "Green Theme"
270
- msgstr "Groen Thema"
271
 
272
- #: ../includes/views/form-settings.php:34
273
- msgid "Blue Theme"
274
- msgstr "Blauw Thema"
275
 
276
- #: ../includes/views/form-settings.php:35
277
- msgid "Dark Theme"
278
- msgstr "Donker Thema"
279
 
280
- #: ../includes/views/form-settings.php:36
281
- msgid "Custom Color Theme"
282
- msgstr "Aangepaste Kleur Thema"
283
 
284
- #: ../includes/views/form-settings.php:41
285
- msgid ""
286
- "If you want to load some default CSS styles, select \"basic formatting styles"
287
- "\" or choose one of the color themes"
288
- msgstr ""
289
- "Wanneer je standaard stijlen in wilt laden, selecteer \"standaard formulier "
290
- "stijlen\" of kies een van de kleurenthema's."
291
 
292
- #: ../includes/views/form-settings.php:61
293
- msgid ""
294
- "Select the list(s) to which people who submit this form should be subscribed."
295
- msgstr ""
296
- "Selecteer de MailChimp lijsten aan welke mensen die het formulier invullen "
297
- "toegevoegd moeten worden."
 
298
 
299
- #: ../includes/views/form-settings.php:76
 
 
 
 
300
  #, php-format
301
  msgid ""
302
- "To display your sign-up form, paste %s inside the contents of a post, page "
303
- "or text widget."
 
304
  msgstr ""
305
- "Plak %s in de inhoud van een bericht of pagina of gebruik de widget om je "
306
- "inschrijfformulier te tonen."
307
-
308
- #: ../includes/views/form-settings.php:106
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
309
  msgid ""
310
- "Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
311
- "succeeds (only when double opt-in is disabled)."
312
  msgstr ""
313
- "Selecteer \"ja\" als je de \"Welcome Email\" wilt sturen naar nieuwe "
314
- "abonnees (enkel wanneer \"double opt-in\" uitgeschakeld is)"
315
 
316
- #: ../includes/views/form-settings.php:116
 
 
 
 
 
 
317
  msgid ""
318
  "Select \"yes\" if you want to update existing subscribers (instead of "
319
  "showing the \"already subscribed\" message)."
@@ -321,7 +588,13 @@ msgstr ""
321
  "Selecteer \"ja\" wanneer je bestaande abonnees wilt updaten (in plaats van "
322
  "het tonen van de \"reeds ingeschreven\" melding)"
323
 
324
- #: ../includes/views/form-settings.php:126
 
 
 
 
 
 
325
  msgid ""
326
  "Select \"yes\" if you want to replace the interest groups with the groups "
327
  "provided instead of adding the provided groups to the member's interest "
@@ -331,31 +604,57 @@ msgstr ""
331
  "verstuurde groepen in plaats van deze aan de bestaande groepen toe te voegen "
332
  "(enkel bij het updaten van abonnees)."
333
 
334
- #: ../includes/views/form-settings.php:130
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
335
  msgid "Form Settings & Messages"
336
  msgstr "Form Instellingen & Meldingen"
337
 
338
- #: ../includes/views/form-settings.php:139
 
 
 
 
 
 
339
  msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
340
  msgstr ""
341
  "Selecteer \"ja\" wanneer je AJAX (JavaScript) wilt gebruiken voor het "
342
  "verzenden van formulieren."
343
 
344
- #: ../includes/views/form-settings.php:142
 
345
  msgid "Hide form after a successful sign-up?"
346
  msgstr "Verberg formulier na succesvolle inschrijvingen?"
347
 
348
- #: ../includes/views/form-settings.php:144
 
349
  msgid "Select \"yes\" to hide the form fields after a successful sign-up."
350
  msgstr ""
351
  "Selecteer \"ja\" om de formuliervelden te verbergen na elke succesvolle "
352
  "inschrijving."
353
 
354
- #: ../includes/views/form-settings.php:147
 
355
  msgid "Redirect to URL after successful sign-ups"
356
  msgstr "Doorsturen naar URL na succesvolle inschrijving"
357
 
358
- #: ../includes/views/form-settings.php:150
 
359
  msgid ""
360
  "Leave empty or enter 0 for no redirection. Use complete (absolute) URLs, "
361
  "including <code>http://</code>"
@@ -363,78 +662,476 @@ msgstr ""
363
  "Laat leeg (of geef 0 in) voor geen doorverwijzing. Gebruik complete "
364
  "(absolute) URLs, inclusief <code>http://</code>"
365
 
366
- #: ../includes/views/form-settings.php:154
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
367
  msgid "Success message"
368
  msgstr "Succesmelding"
369
 
370
- #: ../includes/views/form-settings.php:158
 
371
  msgid "General error message"
372
  msgstr "Foutmelding"
373
 
374
- #: ../includes/views/form-settings.php:162
 
375
  msgid "Invalid email address message"
376
  msgstr "Foutief emailadres"
377
 
378
- #: ../includes/views/form-settings.php:166
 
379
  msgid "Already subscribed message"
380
  msgstr "Reeds ingeschreven"
381
 
382
- #: ../includes/views/form-settings.php:171
 
383
  msgid "Invalid CAPTCHA message"
384
  msgstr "Foutieve CAPTCHA melding"
385
 
386
- #: ../includes/views/form-settings.php:178
 
387
  #, php-format
388
  msgid "HTML tags like %s are allowed in the message fields."
389
  msgstr "HTML tags als %s zijn toegestaan in de meldingteksten."
390
 
391
- #: ../includes/views/parts/admin-field-wizard.php:10
392
- msgid "Add a new field"
393
- msgstr "Nieuw veld toevoegen"
394
 
395
- #: ../includes/views/parts/admin-field-wizard.php:14
396
- msgid "Select at least one list first."
397
- msgstr "Selecteer ten minste 1 MailChimp lijst."
 
 
398
 
399
- #: ../includes/views/parts/admin-field-wizard.php:17
400
- msgid "Use the tool below to generate the HTML for your form fields."
401
- msgstr ""
402
- "Gebruik onderstaande tool om de HTML voor je formuliervelden te genereren"
403
 
404
- #: ../includes/views/parts/admin-field-wizard.php:20
405
  msgid "Select MailChimp field.."
406
- msgstr "Selecteer MailChimp veld"
 
 
 
 
 
 
 
 
407
 
408
- #: ../includes/views/parts/admin-field-wizard.php:33
409
- #: ../includes/views/parts/admin-field-wizard.php:38
410
- #: ../includes/views/parts/admin-field-wizard.php:43
 
 
 
 
411
  msgid "(optional)"
412
  msgstr "(optioneel)"
413
 
414
- #: ../includes/views/parts/admin-field-wizard.php:43
 
 
 
 
415
  msgid "Initial value"
416
  msgstr "Initiële waarde"
417
 
418
- #: ../includes/views/parts/admin-field-wizard.php:48
 
 
 
 
419
  msgid "(leave empty to hide)"
420
  msgstr "(laat leeg om te verbergen)"
421
 
422
- #: ../includes/views/parts/admin-field-wizard.php:53
423
  #, php-format
424
  msgid "Wrap in paragraph %s tags?"
425
- msgstr "Omsluit in paragraaf %s tags?"
426
 
427
- #: ../includes/views/parts/admin-field-wizard.php:58
428
  msgid "Required field?"
429
  msgstr "Verplicht veld?"
430
 
431
- #: ../includes/views/parts/admin-field-wizard.php:62
432
  msgid "Add to form"
433
- msgstr "Aan formulier toevoegen"
434
 
435
- #: ../includes/views/parts/admin-field-wizard.php:66
436
  msgid "Generated HTML"
437
  msgstr "Gegenereerde HTML"
438
 
439
- #~ msgid "Click here to get your MailChimp API Key."
440
- #~ msgstr "Klik hier om je MailChimp API sleutel op te halen."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: MailChimp for WordPress\n"
4
+ "POT-Creation-Date: 2014-05-14 22:11+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"
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-Bookmarks: 90,-1,-1,-1,-1,-1,-1,-1,-1,-1\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../includes/class-admin.php:178
 
 
19
  msgid "Settings"
20
  msgstr "Instellingen"
21
 
22
+ #: ../includes/class-admin.php:197
23
+ msgid "Documentation"
24
+ msgstr "Documentatie"
25
+
26
+ #: ../includes/class-admin.php:209
27
+ msgid "Save Form"
28
+ msgstr "Formulier opslaan"
29
+
30
+ #: ../includes/class-admin.php:211
31
+ msgid "Update Form"
32
+ msgstr "Formulier updaten"
33
+
34
+ #: ../includes/class-admin.php:248
35
+ msgid "Your email address"
36
+ msgstr "Jouw emailadres"
37
+
38
+ #: ../includes/class-admin.php:249
39
+ msgid "Email address"
40
+ msgstr "Emailadres"
41
+
42
+ #: ../includes/class-admin.php:250
43
+ msgid "Sign up"
44
+ msgstr "Inschrijven"
45
+
46
+ #: ../includes/class-admin.php:261
47
+ msgid "Back to general form settings"
48
+ msgstr "Terug naar generieke formulier instellingen."
49
+
50
+ #: ../includes/class-admin.php:263
51
+ msgid "Form updated."
52
+ msgstr "Formulier geupdate"
53
+
54
+ #: ../includes/class-admin.php:264
55
+ msgid "Form saved."
56
+ msgstr "Formulier opgeslagen"
57
+
58
+ #: ../includes/class-admin.php:321
59
+ msgid "Form settings"
60
+ msgstr "Formulier Instellingen"
61
+
62
+ #: ../includes/class-admin.php:322
63
+ msgid "Optional settings"
64
+ msgstr "Optionele Instellingen"
65
+
66
+ #: ../includes/class-admin.php:323
67
+ msgid "Form variables"
68
+ msgstr "Formulier variabelen"
69
+
70
+ #: ../includes/class-admin.php:357
71
+ msgid "Use the following variables to add some dynamic content to your form."
72
+ msgstr ""
73
+ "Gebruik de volgende variabelen om wat dynamische inhoud aan je formulier toe "
74
+ "te voegen"
75
+
76
+ #: ../includes/class-admin.php:497
77
+ #, php-format
78
+ msgid ""
79
+ "Couldn't create the stylesheet. Manually add the generated CSS to your theme "
80
+ "stylesheet by using the %sTheme Editor%s or use FTP and edit <em>%s</em>."
81
+ msgstr ""
82
+ "De stylesheet kon niet worden gecreëerd. Voeg de gegenereerde CSS manueel "
83
+ "toe aan je thema stylesheet door de %sThema Editor%s te gebruiken, of "
84
+ "gebruik FTP en wijzig <em>%s</em>"
85
+
86
+ #: ../includes/class-admin.php:498
87
+ #, php-format
88
+ msgid "%sShow CSS%s"
89
+ msgstr "%sToon CSS%s"
90
+
91
+ #: ../includes/class-admin.php:507
92
+ #, php-format
93
+ msgid ""
94
+ "To apply these styles on your website, select \"load custom form styles\" in "
95
+ "the %sform settings%s"
96
+ msgstr ""
97
+ "Selecteer \"laad custom formulier stijlen\" in de %sformulier instellingen%s "
98
+ "om deze stijlen op je website te gebruiken"
99
+
100
+ #: ../includes/class-admin.php:508
101
+ #, php-format
102
+ msgid "The %sCSS Stylesheet%s has been created."
103
+ msgstr "De %sCSS Stylesheet%s is gecreëerd. "
104
+
105
+ #: ../includes/class-admin.php:524
106
+ msgid "General Settings"
107
+ msgstr "Algemeen"
108
+
109
+ #: ../includes/class-admin.php:525
110
+ msgid "Checkboxes"
111
+ msgstr "Checkboxes"
112
+
113
+ #: ../includes/class-admin.php:526
114
+ #: ../includes/views/pages/admin-form-settings.php:10
115
+ msgid "Forms"
116
+ msgstr "Formulieren"
117
 
118
+ #: ../includes/class-admin.php:527
119
+ #: ../includes/views/pages/admin-reports.php:10
120
+ msgid "Reports"
121
+ msgstr "Rapporten"
122
+
123
+ #: ../includes/class-admin.php:596
124
  msgid "Comment form"
125
  msgstr "Reactieformulier"
126
 
127
+ #: ../includes/class-admin.php:597
128
  msgid "Registration form"
129
  msgstr "Registratieformulier"
130
 
131
+ #: ../includes/class-admin.php:601
132
  msgid "MultiSite forms"
133
  msgstr "MultiSite formulieren"
134
 
135
+ #: ../includes/class-admin.php:605
136
  msgid "BuddyPress registration"
137
  msgstr "BuddyPress registratie"
138
 
139
+ #: ../includes/class-admin.php:613 ../includes/class-admin.php:617
140
+ #, php-format
141
+ msgid "%s checkout"
142
+ msgstr "%s checkout"
143
+
144
+ #: ../includes/class-admin.php:653
145
+ #, php-format
146
+ msgid ""
147
+ "Please make sure the plugin is connected to MailChimp. <a href=\"%s"
148
+ "\">Provide a valid API key.</a>"
149
+ msgstr ""
150
+ "Zorg aub dat de plugin een connectie met MailChimp heeft. <a href=\"%s"
151
+ "\">Geef een geldige API sleutel in.</a>"
152
+
153
+ #: ../includes/class-admin.php:792
154
+ #, php-format
155
+ msgid ""
156
+ "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
157
+ "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
158
+ "it now</a> to prevent problems"
159
+ msgstr ""
160
+ "<strong>Welkom bij MailChimp voor WordPress Pro!</strong> Je instellingen "
161
+ "uit de Lite versie zijn overgezet, deactiveer <a href=\"%s\">de Lite plugin</"
162
+ "a> om problemen te voorkomen."
163
+
164
+ #: ../includes/class-admin.php:865
165
+ msgid "Renewed MailChimp cache."
166
+ msgstr "MailChimp cache met succes vernieuwd."
167
 
168
+ #: ../includes/class-admin.php:867
169
  msgid "Failed to renew MailChimp cache - please try again later."
170
  msgstr ""
171
  "Het is niet gelukt om de MailChimp cache te legen - probeer het alsjeblieft "
172
  "later opnieuw."
173
 
174
+ #: ../includes/class-form-manager.php:248
175
+ #, php-format
176
+ msgid "<strong>Error:</strong> Please specify a form ID. Example: %s."
177
+ msgstr "<strong>Fout:</strong> Geef aub een formulier ID in. Example: %s"
178
+
179
+ #: ../includes/class-form-manager.php:261
180
+ msgid ""
181
+ "<strong>Error:</strong> Sign-up form not found. Please check if you used the "
182
+ "correct form ID."
183
+ msgstr ""
184
+ "<strong>Fout:</strong> Inschrijfformulier niet gevonden. Check aub of je het "
185
+ "correcte formulier ID gebruikt hebt."
186
+
187
+ #: ../includes/class-form-manager.php:370
188
+ #, php-format
189
+ msgid ""
190
+ "<strong>Admin notice:</strong> you have not yet selected a MailChimp list(s) "
191
+ "for this form. <a target=\"_top\" href=\"%s\">Edit this sign-up form</a> and "
192
+ "select at least one list."
193
+ msgstr ""
194
+ "<strong>Admin melding:</strong> je hebt nog geen MailChimp lijst(en) "
195
+ "geselecteerd voor dit formulier. <a target=\"_top\" href=\"%s\">Wijzig dit "
196
+ "formulier</a> en selecteer ten minste 1 lijst."
197
+
198
+ #: ../includes/class-form-manager.php:833
199
+ msgid "New Sign-Up"
200
+ msgstr "Nieuwe inschrijving"
201
+
202
+ #: ../includes/class-form-manager.php:834
203
+ #, php-format
204
+ msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
205
+ msgstr ""
206
+ "<strong>%s</strong> schreef zich om %s op %s in met het formulier \"%s\""
207
+
208
+ #: ../includes/class-form-manager.php:873
209
+ msgid "This email was auto-sent by the MailChimp for WordPress plugin."
210
+ msgstr "Deze email is gestuurd door de MailChimp for WordPress plugin."
211
+
212
  #: ../includes/class-widget.php:20
213
+ msgid "MailChimp for WP Form"
214
+ msgstr "MailChimp voor WP formulier"
215
 
216
  #: ../includes/class-widget.php:21
217
+ msgid "Displays one of your MailChimp for WordPress sign-up forms"
218
+ msgstr "Toont een van je MailChimp for WordPress inschrijfformulieren"
219
+
220
+ #: ../includes/class-widget.php:39
221
+ #, php-format
222
+ msgid ""
223
+ "Please select the sign-up form you'd like to show here in the <a href=\"%s"
224
+ "\">widget settings</a>."
225
+ msgstr ""
226
+ "Selecteer aub het inschrijfformulier dat je hier wilt laten zien in de <a "
227
+ "href=\"%s\">widget instellingen</a>."
228
 
229
+ #: ../includes/class-widget.php:68
230
  msgid "Newsletter"
231
  msgstr "Nieuwsbrief"
232
 
233
+ #: ../includes/class-widget.php:79
234
  msgid "Title:"
235
  msgstr "Titel:"
236
 
237
+ #: ../includes/class-widget.php:83
238
+ msgid "Form:"
239
+ msgstr "Formulier:"
 
 
 
 
 
240
 
241
+ #: ../includes/class-widget.php:85
242
+ msgid "Select the form to show"
243
+ msgstr "Selecteer het formulier om te tonen"
244
 
245
+ #: ../includes/class-widget.php:93
246
+ #, php-format
247
+ msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
248
+ msgstr "Je hebt nog geen inschrijfformulieren. <a href=\"%s\">Maak er een.</a>"
249
 
250
+ #: ../includes/functions/general.php:20
251
+ msgid "Sign me up for the newsletter!"
252
+ msgstr "Schrijf me in voor de nieuwsbrief!"
253
 
254
+ #: ../includes/functions/general.php:42
255
+ msgid ""
256
+ "Thank you, your sign-up request was successful! Please check your e-mail "
257
+ "inbox."
258
+ msgstr ""
259
+ "Dankjewel, je inschrijfverzoek was succesvol. Controleer aub uw email inbox."
260
+
261
+ #: ../includes/functions/general.php:43
262
+ msgid "Oops. Something went wrong. Please try again later."
263
+ msgstr "Oeps, er ging iets fout. Probeer het aub later opnieuw."
264
+
265
+ #: ../includes/functions/general.php:44
266
+ msgid "Please provide a valid email address."
267
+ msgstr "Geef een geldig emailadres in."
268
+
269
+ #: ../includes/functions/general.php:45
270
+ msgid "Given email address is already subscribed, thank you!"
271
+ msgstr "Dit emailadres is reeds ingeschreven, dankjewel!"
272
+
273
+ #: ../includes/functions/general.php:46
274
+ msgid "Please complete the CAPTCHA."
275
+ msgstr "Vul aub een geldige CAPTCHA in."
276
+
277
+ #: ../includes/integrations/class-cf7.php:44
278
+ #: ../includes/views/metaboxes/optional-form-settings.php:16
279
+ #: ../includes/views/metaboxes/optional-form-settings.php:30
280
+ #: ../includes/views/metaboxes/optional-form-settings.php:44
281
+ #: ../includes/views/metaboxes/optional-form-settings.php:58
282
+ #: ../includes/views/metaboxes/optional-form-settings.php:75
283
+ #: ../includes/views/metaboxes/optional-form-settings.php:87
284
+ #: ../includes/views/metaboxes/optional-form-settings.php:106
285
+ #: ../includes/views/pages/admin-checkbox-settings.php:52
286
+ #: ../includes/views/pages/admin-checkbox-settings.php:60
287
+ #: ../includes/views/pages/admin-checkbox-settings.php:90
288
+ #: ../includes/views/pages/admin-checkbox-settings.php:95
289
+ #: ../includes/views/tabs/admin-forms-general-settings.php:58
290
+ #: ../includes/views/tabs/admin-forms-general-settings.php:69
291
+ #: ../includes/views/tabs/admin-forms-general-settings.php:79
292
+ #: ../includes/views/tabs/admin-forms-general-settings.php:90
293
+ #: ../includes/views/tabs/admin-forms-general-settings.php:104
294
+ #: ../includes/views/tabs/admin-forms-general-settings.php:109
295
  msgid "Yes"
296
  msgstr "Ja"
297
 
298
+ #: ../includes/integrations/class-cf7.php:44
299
+ #: ../includes/views/metaboxes/optional-form-settings.php:18
300
+ #: ../includes/views/metaboxes/optional-form-settings.php:32
301
+ #: ../includes/views/metaboxes/optional-form-settings.php:46
302
+ #: ../includes/views/metaboxes/optional-form-settings.php:60
303
+ #: ../includes/views/metaboxes/optional-form-settings.php:77
304
+ #: ../includes/views/metaboxes/optional-form-settings.php:89
305
+ #: ../includes/views/metaboxes/optional-form-settings.php:107
306
+ #: ../includes/views/pages/admin-checkbox-settings.php:52
307
+ #: ../includes/views/pages/admin-checkbox-settings.php:62
308
+ #: ../includes/views/pages/admin-checkbox-settings.php:90
309
+ #: ../includes/views/pages/admin-checkbox-settings.php:95
310
+ #: ../includes/views/tabs/admin-forms-general-settings.php:22
311
+ #: ../includes/views/tabs/admin-forms-general-settings.php:60
312
+ #: ../includes/views/tabs/admin-forms-general-settings.php:71
313
+ #: ../includes/views/tabs/admin-forms-general-settings.php:81
314
+ #: ../includes/views/tabs/admin-forms-general-settings.php:92
315
+ #: ../includes/views/tabs/admin-forms-general-settings.php:104
316
+ #: ../includes/views/tabs/admin-forms-general-settings.php:109
317
  msgid "No"
318
  msgstr "Nee"
319
 
320
+ #: ../includes/library/license-manager/class-license-manager.php:132
321
+ #, php-format
322
+ msgid ""
323
+ "<b>Warning!</b> You're blocking external requests which means you won't be "
324
+ "able to get %s updates. Please add %s to %s."
325
+ msgstr ""
326
+ "<b>Waarschuwing!</b> Je blokkeert externe requests wat betekent dat je geen "
327
+ "updates voor %s kunt ontvangen. Voeg aub %s toe aan %s."
328
 
329
+ #: ../includes/library/license-manager/class-license-manager.php:175
330
+ #, php-format
331
+ msgid "Your %s license has been activated. You have an unlimited license. "
332
+ msgstr "Je %s licentie is geactiveerd. Je hebt een ongelimiteerde licentie"
333
 
334
+ #: ../includes/library/license-manager/class-license-manager.php:177
335
+ #, php-format
336
+ msgid "Your %s license has been activated. You have used %d/%d activations. "
337
+ msgstr "Je %s licentie is geactiveerd. Je hebt %d/%d activaties gebruikt."
338
 
339
+ #: ../includes/library/license-manager/class-license-manager.php:182
340
+ #, php-format
341
+ msgid "<a href=\"%s\">Did you know you can upgrade your license?</a>"
342
+ msgstr "<a href=\"%s\">Wist je dat je je licentie kon upgraden?</a>"
343
 
344
+ #: ../includes/library/license-manager/class-license-manager.php:186
345
+ #, php-format
346
  msgid ""
347
+ "<a href=\"%s\">Your license is expiring in %d days, would you like to extend "
348
+ "it?</a>"
 
349
  msgstr ""
350
+ "<a href=\"%s\">Je licentie verloopt in %d dagen, wil je deze verlengen?</a>"
 
 
351
 
352
+ #: ../includes/library/license-manager/class-license-manager.php:195
353
+ #, php-format
354
+ msgid ""
355
+ "You've reached your activation limit. You must <a href=\"%s\">upgrade your "
356
+ "license</a> to use it on this site."
357
+ msgstr ""
358
+ "Je zit aan je activatie limiet. Je moet je <a href=\"%s\">licentie upgraden</"
359
+ "a> om deze op deze website te kunnen gebruiken."
360
 
361
+ #: ../includes/library/license-manager/class-license-manager.php:198
362
+ #, php-format
363
  msgid ""
364
+ "Your license has expired. You must <a href=\"%s\">extend your license</a> in "
365
+ "order to use it again."
366
  msgstr ""
367
+ "Je licentie is verlopen. Je moet je <a href=\"%s\">licentie verlengen</a> om "
368
+ "deze weer te kunnen gebruiken."
369
 
370
+ #: ../includes/library/license-manager/class-license-manager.php:201
371
+ msgid "Failed to activate your license, your license key seems to be invalid."
372
+ msgstr "Je licentie lijkt invalide te zijn."
373
+
374
+ #: ../includes/library/license-manager/class-license-manager.php:225
375
+ #, php-format
376
+ msgid "Your %s license has been deactivated."
377
+ msgstr "Je %s licentie is gedeactiveerd."
378
+
379
+ #: ../includes/library/license-manager/class-license-manager.php:227
380
+ #, php-format
381
+ msgid "Failed to deactivate your %s license."
382
+ msgstr "Het is niet gelukt je %s licentie te deactiveren."
383
 
384
+ #: ../includes/library/license-manager/class-license-manager.php:262
385
+ #, php-format
386
+ msgid "Request error: \"%s\""
387
+ msgstr "Request fout: \"%s\""
388
+
389
+ #: ../includes/library/license-manager/class-license-manager.php:420
390
+ #, php-format
391
+ msgid "%s: License Settings"
392
+ msgstr "%s: Licentie Instellingen"
393
+
394
+ #: ../includes/library/license-manager/class-plugin-license-manager.php:72
395
+ #, php-format
396
  msgid ""
397
+ "%s is network activated, you can manage your license in the <a href=\"%s"
398
+ "\">network admin license page</a>."
399
  msgstr ""
400
+ "%s is netwerk-geactiveerd. Je kunt je licenties beheren in de <a href=\"%s"
401
+ "\">network admin licentie pagina</a>."
402
 
403
+ #: ../includes/library/license-manager/class-plugin-license-manager.php:74
 
404
  #, php-format
405
+ msgid ""
406
+ "%s is network activated, please contact your site administrator to manage "
407
+ "the license."
408
+ msgstr ""
409
+ "%s is netwerk-geactiveerd. Neem aub contact op met je site admin om je "
410
+ "licentie te beheren."
411
 
412
+ #: ../includes/library/license-manager/class-update-manager.php:83
413
+ #, php-format
414
  msgid ""
415
+ "%s failed to check for updates because of the following error: <em>%s</em>"
 
416
  msgstr ""
417
+ "Het lukte %s niet om voor updates te checken door de volgende fout: <em>%s</"
418
+ "em>"
419
 
420
+ #: ../includes/library/license-manager/class-update-manager.php:148
 
421
  msgid ""
422
+ "This site has not been activated properly on dannyvankooten.com and thus "
423
+ "cannot check for future updates. Please activate your site with a valid "
424
+ "license key."
425
  msgstr ""
426
+ "De licentie voor deze website is niet correct geactiveerd op dannyvankooten."
427
+ "com en kan daarom geen updates ontvangen. Activeer aub je website met een "
428
+ "geldige licentie."
429
 
430
+ #: ../includes/library/license-manager/views/form.php:23
431
+ msgid "License status"
432
+ msgstr "Licentie status"
433
 
434
+ #: ../includes/library/license-manager/views/form.php:33
435
+ msgid "Toggle license status"
436
+ msgstr "Activeer/deactiveer licentie status"
437
 
438
+ #: ../includes/library/license-manager/views/form.php:38
439
+ msgid ""
440
+ "(deactivate your license so you can activate it on another WordPress site)"
441
  msgstr ""
442
+ "(deactiveer je licentie zodat je deze op een andere website kunt activeren)"
 
443
 
444
+ #: ../includes/library/license-manager/views/form.php:44
445
+ msgid "Please enter a license key in the field below first."
446
+ msgstr "Vul aub een licentiecode in het veld hieronder in."
447
+
448
+ #: ../includes/library/license-manager/views/form.php:52
449
+ msgid "License Key"
450
+ msgstr "Licentiecode"
451
 
452
+ #: ../includes/library/license-manager/views/form.php:54
453
  #, php-format
454
+ msgid "Paste your %s license key here.."
455
+ msgstr "Plak je %s licentie hier.."
456
 
457
+ #: ../includes/library/license-manager/views/form.php:56
458
+ #, php-format
459
+ msgid "You defined your license key using the %s PHP constant."
460
+ msgstr ""
461
+ "Je hebt je licentiecode gedefinieerd met behulp van de PHP constante %s."
462
 
463
+ #: ../includes/library/license-manager/views/form.php:73
464
+ #, php-format
465
+ msgid "Your %s license will expire on %s."
466
+ msgstr "Je %s licentie verloopt op %s."
467
 
468
+ #: ../includes/library/license-manager/views/form.php:76
469
+ #, php-format
470
+ msgid "%sRenew your license now%s."
471
+ msgstr "%sVernieuw je licentie nu%s"
472
 
473
+ #: ../includes/tables/class-forms-table.php:19
474
+ msgid "Sign-Up Form"
475
+ msgstr "Inschrijfformulier"
476
 
477
+ #: ../includes/tables/class-forms-table.php:20
478
+ msgid "Sign-up Forms"
479
+ msgstr "MailChimp inschrijfformulieren"
 
 
 
 
 
 
480
 
481
+ #: ../includes/tables/class-forms-table.php:36
482
+ msgid "Form"
483
+ msgstr "Formulier"
484
 
485
+ #: ../includes/tables/class-forms-table.php:37
486
+ msgid "Shortcode"
487
+ msgstr "Shortcode"
488
 
489
+ #: ../includes/tables/class-forms-table.php:38
490
+ msgid "List(s)"
491
+ msgstr "Lijst(en)"
492
 
493
+ #: ../includes/tables/class-forms-table.php:39
494
+ msgid "Last edited"
495
+ msgstr "Laatst gewijzigd"
496
 
497
+ #: ../includes/tables/class-forms-table.php:103
498
+ msgid "You have not created any sign-up forms yet. Time to do so!"
499
+ msgstr "Je hebt nog geen inschrijfformulieren gemaakt. Ga 'ns wat doen!"
500
 
501
+ #: ../includes/tables/class-log-table.php:23
502
+ msgid "Subscriber"
503
+ msgstr ""
504
 
505
+ #: ../includes/tables/class-log-table.php:24
506
+ msgid "Subscribers"
507
+ msgstr ""
508
 
509
+ #: ../includes/tables/class-log-table.php:44
510
+ msgid "Email"
511
+ msgstr "Emailadres"
512
 
513
+ #: ../includes/tables/class-log-table.php:45
514
+ msgid "List"
515
+ msgstr "Lijst"
516
 
517
+ #: ../includes/tables/class-log-table.php:46
518
+ msgid "Type"
519
+ msgstr "Type"
520
 
521
+ #: ../includes/tables/class-log-table.php:47
522
+ msgid "Source"
523
+ msgstr "Bron"
 
 
 
 
524
 
525
+ #: ../includes/tables/class-log-table.php:48
526
+ msgid "Extra data"
527
+ msgstr "Extra data"
528
+
529
+ #: ../includes/tables/class-log-table.php:49
530
+ msgid "Subscribed"
531
+ msgstr "Ingeschreven"
532
 
533
+ #: ../includes/tables/class-log-table.php:258
534
+ msgid "No subscribe requests found."
535
+ msgstr "Geen inschrijfverzoeken gevonden."
536
+
537
+ #: ../includes/views/metaboxes/optional-form-settings.php:8
538
  #, php-format
539
  msgid ""
540
+ "Any settings you specify here will override the <a href=\"%s\">general form "
541
+ "settings</a>. If no setting is specified, the corresponding general setting "
542
+ "value will be used."
543
  msgstr ""
544
+ "Instellingen die je ingeeft zullen de <a href=\"%s\">standaard formulier "
545
+ "instellingen</a> overschrijven. Wanneer je hier niets invult zal de "
546
+ "corresponderende standaardwaarde gebruikt worden."
547
+
548
+ #: ../includes/views/metaboxes/optional-form-settings.php:10
549
+ msgid "MailChimp Settings"
550
+ msgstr "MailChimp Instellingen"
551
+
552
+ #: ../includes/views/metaboxes/optional-form-settings.php:13
553
+ #: ../includes/views/pages/admin-checkbox-settings.php:51
554
+ #: ../includes/views/tabs/admin-forms-general-settings.php:55
555
+ msgid "Double opt-in?"
556
+ msgstr "Emailadres bevestigen?"
557
+
558
+ #: ../includes/views/metaboxes/optional-form-settings.php:20
559
+ #: ../includes/views/metaboxes/optional-form-settings.php:34
560
+ #: ../includes/views/metaboxes/optional-form-settings.php:48
561
+ #: ../includes/views/metaboxes/optional-form-settings.php:62
562
+ #: ../includes/views/metaboxes/optional-form-settings.php:79
563
+ #: ../includes/views/metaboxes/optional-form-settings.php:91
564
+ msgid "Inherit"
565
+ msgstr "Gebruik standaardwaarde"
566
+
567
+ #: ../includes/views/metaboxes/optional-form-settings.php:22
568
+ #: ../includes/views/pages/admin-checkbox-settings.php:53
569
+ #: ../includes/views/tabs/admin-forms-general-settings.php:62
570
  msgid ""
571
+ "Select \"yes\" if you want people to confirm their email address before "
572
+ "being subscribed (recommended)"
573
  msgstr ""
574
+ "Selecteer \"ja\" wanneer je wilt dat mensen hun emailadres moeten bevestigen "
575
+ "alvorens ze aan je MailChimp lijst worden toegevoegd (aanbevolen)"
576
 
577
+ #: ../includes/views/metaboxes/optional-form-settings.php:27
578
+ #: ../includes/views/tabs/admin-forms-general-settings.php:76
579
+ msgid "Update existing subscribers?"
580
+ msgstr "Bestaande inschrijven updaten?"
581
+
582
+ #: ../includes/views/metaboxes/optional-form-settings.php:36
583
+ #: ../includes/views/tabs/admin-forms-general-settings.php:83
584
  msgid ""
585
  "Select \"yes\" if you want to update existing subscribers (instead of "
586
  "showing the \"already subscribed\" message)."
588
  "Selecteer \"ja\" wanneer je bestaande abonnees wilt updaten (in plaats van "
589
  "het tonen van de \"reeds ingeschreven\" melding)"
590
 
591
+ #: ../includes/views/metaboxes/optional-form-settings.php:41
592
+ #: ../includes/views/tabs/admin-forms-general-settings.php:87
593
+ msgid "Replace interest groups?"
594
+ msgstr "Interessegroepen vervangen?"
595
+
596
+ #: ../includes/views/metaboxes/optional-form-settings.php:50
597
+ #: ../includes/views/tabs/admin-forms-general-settings.php:94
598
  msgid ""
599
  "Select \"yes\" if you want to replace the interest groups with the groups "
600
  "provided instead of adding the provided groups to the member's interest "
604
  "verstuurde groepen in plaats van deze aan de bestaande groepen toe te voegen "
605
  "(enkel bij het updaten van abonnees)."
606
 
607
+ #: ../includes/views/metaboxes/optional-form-settings.php:55
608
+ #: ../includes/views/pages/admin-checkbox-settings.php:57
609
+ #: ../includes/views/tabs/admin-forms-general-settings.php:66
610
+ msgid "Send Welcome Email?"
611
+ msgstr "Welkomstemail versturen?"
612
+
613
+ #: ../includes/views/metaboxes/optional-form-settings.php:64
614
+ #: ../includes/views/pages/admin-checkbox-settings.php:64
615
+ #: ../includes/views/tabs/admin-forms-general-settings.php:73
616
+ msgid ""
617
+ "Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
618
+ "succeeds (only when double opt-in is disabled)."
619
+ msgstr ""
620
+ "Selecteer \"ja\" als je de \"Welcome Email\" wilt sturen naar nieuwe "
621
+ "abonnees (enkel wanneer \"double opt-in\" uitgeschakeld is)"
622
+
623
+ #: ../includes/views/metaboxes/optional-form-settings.php:69
624
  msgid "Form Settings & Messages"
625
  msgstr "Form Instellingen & Meldingen"
626
 
627
+ #: ../includes/views/metaboxes/optional-form-settings.php:72
628
+ #: ../includes/views/tabs/admin-forms-general-settings.php:103
629
+ msgid "Enable AJAX form submission?"
630
+ msgstr "AJAX (JavaScript) formulieren gebruiken?"
631
+
632
+ #: ../includes/views/metaboxes/optional-form-settings.php:80
633
+ #: ../includes/views/tabs/admin-forms-general-settings.php:105
634
  msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
635
  msgstr ""
636
  "Selecteer \"ja\" wanneer je AJAX (JavaScript) wilt gebruiken voor het "
637
  "verzenden van formulieren."
638
 
639
+ #: ../includes/views/metaboxes/optional-form-settings.php:84
640
+ #: ../includes/views/tabs/admin-forms-general-settings.php:108
641
  msgid "Hide form after a successful sign-up?"
642
  msgstr "Verberg formulier na succesvolle inschrijvingen?"
643
 
644
+ #: ../includes/views/metaboxes/optional-form-settings.php:93
645
+ #: ../includes/views/tabs/admin-forms-general-settings.php:110
646
  msgid "Select \"yes\" to hide the form fields after a successful sign-up."
647
  msgstr ""
648
  "Selecteer \"ja\" om de formuliervelden te verbergen na elke succesvolle "
649
  "inschrijving."
650
 
651
+ #: ../includes/views/metaboxes/optional-form-settings.php:97
652
+ #: ../includes/views/tabs/admin-forms-general-settings.php:113
653
  msgid "Redirect to URL after successful sign-ups"
654
  msgstr "Doorsturen naar URL na succesvolle inschrijving"
655
 
656
+ #: ../includes/views/metaboxes/optional-form-settings.php:100
657
+ #: ../includes/views/tabs/admin-forms-general-settings.php:116
658
  msgid ""
659
  "Leave empty or enter 0 for no redirection. Use complete (absolute) URLs, "
660
  "including <code>http://</code>"
662
  "Laat leeg (of geef 0 in) voor geen doorverwijzing. Gebruik complete "
663
  "(absolute) URLs, inclusief <code>http://</code>"
664
 
665
+ #: ../includes/views/metaboxes/optional-form-settings.php:104
666
+ msgid "Send an email copy of the form data?"
667
+ msgstr "Verzend een email kopie van de ingevulde data?"
668
+
669
+ #: ../includes/views/metaboxes/optional-form-settings.php:108
670
+ msgid ""
671
+ "Tick \"yes\" if you want to receive an email with the form data for every "
672
+ "sign-up request."
673
+ msgstr ""
674
+ "Selecteer \"ja\" als je een email wilt ontvangen met de ingevulde data voor "
675
+ "elke inschrijving."
676
+
677
+ #: ../includes/views/metaboxes/optional-form-settings.php:111
678
+ msgid "Send the copy to this email:"
679
+ msgstr "Verzend de kopie naar dit emailadres:"
680
+
681
+ #: ../includes/views/metaboxes/optional-form-settings.php:117
682
+ #: ../includes/views/tabs/admin-forms-general-settings.php:119
683
  msgid "Success message"
684
  msgstr "Succesmelding"
685
 
686
+ #: ../includes/views/metaboxes/optional-form-settings.php:121
687
+ #: ../includes/views/tabs/admin-forms-general-settings.php:123
688
  msgid "General error message"
689
  msgstr "Foutmelding"
690
 
691
+ #: ../includes/views/metaboxes/optional-form-settings.php:125
692
+ #: ../includes/views/tabs/admin-forms-general-settings.php:127
693
  msgid "Invalid email address message"
694
  msgstr "Foutief emailadres"
695
 
696
+ #: ../includes/views/metaboxes/optional-form-settings.php:129
697
+ #: ../includes/views/tabs/admin-forms-general-settings.php:131
698
  msgid "Already subscribed message"
699
  msgstr "Reeds ingeschreven"
700
 
701
+ #: ../includes/views/metaboxes/optional-form-settings.php:134
702
+ #: ../includes/views/tabs/admin-forms-general-settings.php:136
703
  msgid "Invalid CAPTCHA message"
704
  msgstr "Foutieve CAPTCHA melding"
705
 
706
+ #: ../includes/views/metaboxes/optional-form-settings.php:141
707
+ #: ../includes/views/tabs/admin-forms-general-settings.php:142
708
  #, php-format
709
  msgid "HTML tags like %s are allowed in the message fields."
710
  msgstr "HTML tags als %s zijn toegestaan in de meldingteksten."
711
 
712
+ #: ../includes/views/metaboxes/required-form-settings.php:14
713
+ msgid "Lists this form subscribes to"
714
+ msgstr "Lijsten op welke dit formulier inschrijft"
715
 
716
+ #: ../includes/views/metaboxes/required-form-settings.php:17
717
+ #: ../includes/views/pages/admin-checkbox-settings.php:38
718
+ #, php-format
719
+ msgid "No lists found, %sare you connected to MailChimp?%s"
720
+ msgstr "Geen lijsten gevonden. %sBen je verbonden met MailChimp?%s"
721
 
722
+ #: ../includes/views/metaboxes/required-form-settings.php:29
723
+ msgid "Add a new field"
724
+ msgstr "Voeg een nieuw veld toe"
 
725
 
726
+ #: ../includes/views/metaboxes/required-form-settings.php:32
727
  msgid "Select MailChimp field.."
728
+ msgstr "Selecteer MailChimp veld.."
729
+
730
+ #: ../includes/views/metaboxes/required-form-settings.php:36
731
+ msgid "Submit Button"
732
+ msgstr "Verzendknop"
733
+
734
+ #: ../includes/views/metaboxes/required-form-settings.php:37
735
+ msgid "Lists Choice"
736
+ msgstr "Lijstkeuze"
737
 
738
+ #: ../includes/views/metaboxes/required-form-settings.php:45
739
+ msgid "Label"
740
+ msgstr "Label"
741
+
742
+ #: ../includes/views/metaboxes/required-form-settings.php:45
743
+ #: ../includes/views/metaboxes/required-form-settings.php:50
744
+ #: ../includes/views/metaboxes/required-form-settings.php:55
745
  msgid "(optional)"
746
  msgstr "(optioneel)"
747
 
748
+ #: ../includes/views/metaboxes/required-form-settings.php:50
749
+ msgid "Placeholder"
750
+ msgstr ""
751
+
752
+ #: ../includes/views/metaboxes/required-form-settings.php:55
753
  msgid "Initial value"
754
  msgstr "Initiële waarde"
755
 
756
+ #: ../includes/views/metaboxes/required-form-settings.php:60
757
+ msgid "Labels"
758
+ msgstr ""
759
+
760
+ #: ../includes/views/metaboxes/required-form-settings.php:60
761
  msgid "(leave empty to hide)"
762
  msgstr "(laat leeg om te verbergen)"
763
 
764
+ #: ../includes/views/metaboxes/required-form-settings.php:65
765
  #, php-format
766
  msgid "Wrap in paragraph %s tags?"
767
+ msgstr "Wrap in paragraaf %s tags?"
768
 
769
+ #: ../includes/views/metaboxes/required-form-settings.php:69
770
  msgid "Required field?"
771
  msgstr "Verplicht veld?"
772
 
773
+ #: ../includes/views/metaboxes/required-form-settings.php:73
774
  msgid "Add to form"
775
+ msgstr "Voeg toe aan formulier"
776
 
777
+ #: ../includes/views/metaboxes/required-form-settings.php:77
778
  msgid "Generated HTML"
779
  msgstr "Gegenereerde HTML"
780
 
781
+ #: ../includes/views/metaboxes/required-form-settings.php:86
782
+ msgid "Form usage"
783
+ msgstr "Formulier gebruik"
784
+
785
+ #: ../includes/views/metaboxes/required-form-settings.php:87
786
+ #, php-format
787
+ msgid ""
788
+ "Use the shortcode %s to display this form inside a post, page or text widget."
789
+ msgstr ""
790
+ "Gebruik de %s shortcode om dit formulier in een post, pagina of tekst widget "
791
+ "te tonen."
792
+
793
+ #: ../includes/views/pages/admin-checkbox-settings.php:11
794
+ #: ../includes/views/pages/admin-form-settings.php:10
795
+ #: ../includes/views/pages/admin-general-settings.php:10
796
+ #: ../includes/views/pages/admin-reports.php:10
797
+ msgid "MailChimp for WordPress"
798
+ msgstr "MailChimp voor WordPress"
799
+
800
+ #: ../includes/views/pages/admin-checkbox-settings.php:11
801
+ msgid "Checkbox Settings"
802
+ msgstr "Checkbox Instellingen"
803
+
804
+ #: ../includes/views/pages/admin-checkbox-settings.php:14
805
+ msgid ""
806
+ "To use sign-up checkboxes, select at least one list and one form to add the "
807
+ "checkbox to."
808
+ msgstr ""
809
+ "Selecteer ten minste 1 MailChimp lijst en 1 formulier om de checkbox aan toe "
810
+ "te voegen om inschrijf checkboxes te gebruiken."
811
+
812
+ #: ../includes/views/pages/admin-checkbox-settings.php:21
813
+ msgid "MailChimp settings for checkboxes"
814
+ msgstr "MailChimp instellingen voor checkboxes"
815
+
816
+ #: ../includes/views/pages/admin-checkbox-settings.php:26
817
+ msgid ""
818
+ "If you want to use sign-up checkboxes, select at least one MailChimp list to "
819
+ "subscribe people to."
820
+ msgstr ""
821
+ "Selecteer ten minste 1 MailChimp lijst waar mensen aan toegevoegd moeten "
822
+ "worden."
823
+
824
+ #: ../includes/views/pages/admin-checkbox-settings.php:34
825
+ msgid "MailChimp Lists"
826
+ msgstr "MailChimp Lijsten"
827
+
828
+ #: ../includes/views/pages/admin-checkbox-settings.php:45
829
+ msgid ""
830
+ "Select the list(s) to which people who check the checkbox should be "
831
+ "subscribed."
832
+ msgstr ""
833
+ "Selecteer de lijsten aan welke mensen die checkbox aanvinken toegevoegd "
834
+ "zouden moeten worden."
835
+
836
+ #: ../includes/views/pages/admin-checkbox-settings.php:68
837
+ msgid "Checkbox settings"
838
+ msgstr "Checkbox instellingen"
839
+
840
+ #: ../includes/views/pages/admin-checkbox-settings.php:71
841
+ msgid "Add the checkbox to these forms"
842
+ msgstr "Voeg de checkbox toe aan de volgende formulieren"
843
+
844
+ #: ../includes/views/pages/admin-checkbox-settings.php:78
845
+ msgid "Selecting a form will automatically add the sign-up checkbox to it."
846
+ msgstr ""
847
+ "Aan de formulieren die je hier selecteert wordt automatisch een \"schrijf je "
848
+ "in\" checkbox toegevoegd."
849
+
850
+ #: ../includes/views/pages/admin-checkbox-settings.php:82
851
+ msgid "Checkbox label text"
852
+ msgstr "Checkbox label tekst"
853
+
854
+ #: ../includes/views/pages/admin-checkbox-settings.php:85
855
+ #: ../includes/views/pages/admin-checkbox-settings.php:115
856
+ #, php-format
857
+ msgid "HTML tags like %s are allowed in the label text."
858
+ msgstr "HTML tags als %s zijn toegestaan in de label tekst."
859
+
860
+ #: ../includes/views/pages/admin-checkbox-settings.php:89
861
+ msgid "Pre-check the checkbox?"
862
+ msgstr "Vink de checkbox standaard aan?"
863
+
864
+ #: ../includes/views/pages/admin-checkbox-settings.php:94
865
+ msgid "Load some default CSS?"
866
+ msgstr "Laad standaard CSS?"
867
+
868
+ #: ../includes/views/pages/admin-checkbox-settings.php:96
869
+ msgid "Select \"yes\" if the checkbox appears in a weird place."
870
+ msgstr "Selecteer \"ja\" als de checkbox op een vreemde plaats verschijnt."
871
+
872
+ #: ../includes/views/pages/admin-checkbox-settings.php:100
873
+ #: ../includes/views/pages/admin-checkbox-settings.php:120
874
+ #: ../includes/views/tabs/admin-forms-general-settings.php:48
875
+ #: ../includes/views/tabs/admin-forms-general-settings.php:146
876
+ msgid "Save all changes"
877
+ msgstr "Alle wijzigingen opslaan"
878
+
879
+ #: ../includes/views/pages/admin-checkbox-settings.php:103
880
+ msgid "Custom label texts"
881
+ msgstr "Custom label teksten"
882
+
883
+ #: ../includes/views/pages/admin-checkbox-settings.php:104
884
+ msgid ""
885
+ "Override the default checkbox label text for any given checkbox using the "
886
+ "fields below."
887
+ msgstr ""
888
+ "Overschrijf de standaard checkbox label voor de verschillende checkboxes met "
889
+ "behulp van onderstaande velden."
890
+
891
+ #: ../includes/views/pages/admin-form-settings.php:13
892
+ msgid "Forms & Settings"
893
+ msgstr "Formulieren & Instellingen"
894
+
895
+ #: ../includes/views/pages/admin-form-settings.php:14
896
+ msgid "CSS Styles Builder"
897
+ msgstr "CSS Stijl Bouwer"
898
+
899
+ #: ../includes/views/pages/admin-general-settings.php:10
900
+ msgid "License & API Settings"
901
+ msgstr "Licentie & API Instellingen"
902
+
903
+ #: ../includes/views/pages/admin-general-settings.php:19
904
+ msgid "API Settings"
905
+ msgstr "API Instellingen"
906
+
907
+ #: ../includes/views/pages/admin-general-settings.php:21
908
+ msgid "CONNECTED"
909
+ msgstr "VERBONDEN"
910
+
911
+ #: ../includes/views/pages/admin-general-settings.php:23
912
+ msgid "NOT CONNECTED"
913
+ msgstr "NIET VERBONDEN"
914
+
915
+ #: ../includes/views/pages/admin-general-settings.php:29
916
+ msgid "API Key"
917
+ msgstr "API Sleutel"
918
+
919
+ #: ../includes/views/pages/admin-general-settings.php:31
920
+ msgid "Your MailChimp API key"
921
+ msgstr "Je MailChimp API sleutel"
922
+
923
+ #: ../includes/views/pages/admin-general-settings.php:32
924
+ msgid "Get your API key here."
925
+ msgstr "Verkrijg hier je API sleutel."
926
+
927
+ #: ../includes/views/pages/admin-general-settings.php:48
928
+ msgid "MailChimp Data"
929
+ msgstr "MailChimp Data"
930
+
931
+ #: ../includes/views/pages/admin-general-settings.php:49
932
+ msgid ""
933
+ "The table below shows your MailChimp lists data. If you applied changes to "
934
+ "your MailChimp lists, please use the following button to renew your cached "
935
+ "data."
936
+ msgstr ""
937
+ "The tabel hieronder toont je MailChimp lijst configuratie. Wanneer je hier "
938
+ "veranderingen aan hebt doorgevoerd die nog niet weergegeven worden kun je de "
939
+ "volgende button gebruiken om je configuratie opnieuw in te laden."
940
+
941
+ #: ../includes/views/pages/admin-general-settings.php:55
942
+ #: ../includes/views/pages/admin-general-settings.php:133
943
+ msgid "Renew MailChimp lists"
944
+ msgstr "Vernieuw MailChimp lijsten"
945
+
946
+ #: ../includes/views/pages/admin-general-settings.php:120
947
+ msgid "No lists were found in your MailChimp account."
948
+ msgstr "Er zijn geen lijsten gevonden in je MailChimp account."
949
+
950
+ #: ../includes/views/pages/admin-reports.php:14
951
+ msgid "Statistics"
952
+ msgstr "Statistieken"
953
+
954
+ #: ../includes/views/pages/admin-reports.php:15
955
+ msgid "Log"
956
+ msgstr "Log"
957
+
958
+ #: ../includes/views/parts/admin-footer.php:8
959
+ #, php-format
960
+ msgid ""
961
+ "Need help? Email me directly at <a href=\"%s\">support@dannyvankooten.com</"
962
+ "a>. Please include your website URL and as many details as possible."
963
+ msgstr ""
964
+ "Hulp nodig? Email me rechtstreeks op <a href=\"%s\">support@dannyvankooten."
965
+ "com</a>. Vermeld aub je website URL en zoveel mogelijk details."
966
+
967
+ #: ../includes/views/parts/admin-text-variables.php:11
968
+ msgid "Replaced with the number of subscribers on the selected list(s)"
969
+ msgstr "Vervangen door het aantal subscribers op de geselecteerde lijst(en)"
970
+
971
+ #: ../includes/views/parts/admin-text-variables.php:15
972
+ msgid "Replaced with the visitor's IP address"
973
+ msgstr "Vervangen door het IP-adres van de bezoeker"
974
+
975
+ #: ../includes/views/parts/admin-text-variables.php:19
976
+ #, php-format
977
+ msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
978
+ msgstr "Vervangen door de huidige datum (jjjj/mm/dd bijv: %s)"
979
+
980
+ #: ../includes/views/parts/admin-text-variables.php:23
981
+ #, php-format
982
+ msgid "Replaced with the current time (hh:mm:ss eg: %s)"
983
+ msgstr "Vervangen door de huidige tijd (uu:mm:ss bijv: %s)"
984
+
985
+ #: ../includes/views/parts/admin-text-variables.php:27
986
+ msgid ""
987
+ "Replaced with the logged in user's email (or nothing, if there is no logged "
988
+ "in user)"
989
+ msgstr ""
990
+ "Vervangen door het emailadres van de ingelogde gebruiker (of niets wanneer "
991
+ "de bezoeker niet ingelogd is)"
992
+
993
+ #: ../includes/views/parts/admin-text-variables.php:31
994
+ msgid "Display name of the current user"
995
+ msgstr "Naam van de ingelogde bezoeker"
996
+
997
+ #: ../includes/views/parts/admin-text-variables.php:35
998
+ msgid "First name of the current user"
999
+ msgstr "Voornaam van de ingelogde bezoeker"
1000
+
1001
+ #: ../includes/views/parts/admin-text-variables.php:39
1002
+ msgid "Last name of the current user"
1003
+ msgstr "Achternaam van de ingelogde bezoeker"
1004
+
1005
+ #: ../includes/views/parts/admin-text-variables.php:43
1006
+ msgid "Current user ID"
1007
+ msgstr "ID van de ingelogde bezoeker"
1008
+
1009
+ #: ../includes/views/parts/admin-text-variables.php:47
1010
+ msgid "Current URL"
1011
+ msgstr "Huidige URL"
1012
+
1013
+ #: ../includes/views/tabs/admin-forms-css-builder.php:10
1014
+ msgid "Use the fields below to create custom styling rules for your forms."
1015
+ msgstr ""
1016
+ "Gebruik de onderstaande velden om custom stijlregels op te stellen voor je "
1017
+ "formulieren."
1018
+
1019
+ #: ../includes/views/tabs/admin-forms-css-builder.php:214
1020
+ msgid "Build CSS File"
1021
+ msgstr "Genereer CSS Stylesheet"
1022
+
1023
+ #: ../includes/views/tabs/admin-forms-general-settings.php:8
1024
+ msgid "Sign-Up Forms"
1025
+ msgstr "MailChimp inschrijfformulieren"
1026
+
1027
+ #: ../includes/views/tabs/admin-forms-general-settings.php:8
1028
+ msgid "Create New Form"
1029
+ msgstr "Maak Nieuw Formulier"
1030
+
1031
+ #: ../includes/views/tabs/admin-forms-general-settings.php:16
1032
+ msgid "General form settings"
1033
+ msgstr "Algemene formulier instellingen"
1034
+
1035
+ #: ../includes/views/tabs/admin-forms-general-settings.php:19
1036
+ msgid "Load form styles (CSS)?"
1037
+ msgstr "Laad formulier stijlen (CSS)?"
1038
+
1039
+ #: ../includes/views/tabs/admin-forms-general-settings.php:23
1040
+ msgid "Yes, load basic form styles"
1041
+ msgstr "Ja, laad standaard formulier stijlen"
1042
+
1043
+ #: ../includes/views/tabs/admin-forms-general-settings.php:24
1044
+ msgid "Yes, load my custom form styles"
1045
+ msgstr "Ja, laad mijn zelf ontworpen formulier stijlen"
1046
+
1047
+ #: ../includes/views/tabs/admin-forms-general-settings.php:25
1048
+ msgid "Yes, load default form theme"
1049
+ msgstr "Ja, laad 'n standaard thema"
1050
+
1051
+ #: ../includes/views/tabs/admin-forms-general-settings.php:26
1052
+ msgid "Light Theme"
1053
+ msgstr "Licht Thema"
1054
+
1055
+ #: ../includes/views/tabs/admin-forms-general-settings.php:27
1056
+ msgid "Red Theme"
1057
+ msgstr "Rood Thema"
1058
+
1059
+ #: ../includes/views/tabs/admin-forms-general-settings.php:28
1060
+ msgid "Green Theme"
1061
+ msgstr "Groen Thema"
1062
+
1063
+ #: ../includes/views/tabs/admin-forms-general-settings.php:29
1064
+ msgid "Blue Theme"
1065
+ msgstr "Blauw Thema"
1066
+
1067
+ #: ../includes/views/tabs/admin-forms-general-settings.php:30
1068
+ msgid "Dark Theme"
1069
+ msgstr "Donker Thema"
1070
+
1071
+ #: ../includes/views/tabs/admin-forms-general-settings.php:31
1072
+ msgid "Custom Color Theme"
1073
+ msgstr "Aangepaste Kleur Thema"
1074
+
1075
+ #: ../includes/views/tabs/admin-forms-general-settings.php:36
1076
+ #, php-format
1077
+ msgid ""
1078
+ "If you %screated a custom stylesheet%s and want it to be loaded, select "
1079
+ "\"custom form styles\". Otherwise, choose the basic formatting styles or one "
1080
+ "of the default themes."
1081
+ msgstr ""
1082
+ "Als je zelf een %sCSS Stylesheet%s hebt gemaakt en deze geladen wilt hebben, "
1083
+ "selecteer dan \"custom formulier stijlen\". Anders, kies de standaard "
1084
+ "formulier stijlen of een van de standaard thema's."
1085
+
1086
+ #: ../includes/views/tabs/admin-forms-general-settings.php:40
1087
+ msgid "Select Color"
1088
+ msgstr "Selecteer Kleur"
1089
+
1090
+ #: ../includes/views/tabs/admin-forms-general-settings.php:50
1091
+ msgid "Default MailChimp settings"
1092
+ msgstr "Standaard MailChimp instellingen"
1093
+
1094
+ #: ../includes/views/tabs/admin-forms-general-settings.php:51
1095
+ #: ../includes/views/tabs/admin-forms-general-settings.php:99
1096
+ msgid ""
1097
+ "The following settings apply to <strong>all</strong> forms but can be "
1098
+ "overridden on a per-form basis."
1099
+ msgstr ""
1100
+ "De volgende instellingen gelden voor <strong>alle formulieren</strong> maar "
1101
+ "kunnen 'overruled' worden per formulier."
1102
+
1103
+ #: ../includes/views/tabs/admin-forms-general-settings.php:98
1104
+ msgid "Default form settings"
1105
+ msgstr "Standaard formulier instellingen"
1106
+
1107
+ #, fuzzy
1108
+ #~ msgid "Load styles or theme?"
1109
+ #~ msgstr "Laad formulier stijlen?"
1110
+
1111
+ #~ msgid "Need help? Email me directly at"
1112
+ #~ msgstr "Hulp nodig? Email me op "
1113
+
1114
+ #~ msgid "MailChimp cache successfully renewed."
1115
+ #~ msgstr "MailChimp cache succesvol geleegd."
1116
+
1117
+ #~ msgid ""
1118
+ #~ "You can edit your sign-up form in the %sMailChimp for WordPress form "
1119
+ #~ "settings%s."
1120
+ #~ msgstr ""
1121
+ #~ "Je kan je inschrijfformulier wijzigen in de %sMailChimp for WordPress "
1122
+ #~ "formulier instellingen%s."
1123
+
1124
+ #~ msgid ""
1125
+ #~ "To use the MailChimp sign-up form, configure the form below and then "
1126
+ #~ "either paste %s in the content of a post or page or use the widget."
1127
+ #~ msgstr ""
1128
+ #~ "Om het MailChimp inschrijfformulier te gebruiken kun je hieronder je "
1129
+ #~ "formulier configureren. Vervolgens kun je de meegeleverde plugin widget "
1130
+ #~ "gebruiken of %s in de inhoud van een bericht of pagina plakken."
1131
+
1132
+ #~ msgid ""
1133
+ #~ "Select the list(s) to which people who submit this form should be "
1134
+ #~ "subscribed."
1135
+ #~ msgstr ""
1136
+ #~ "Selecteer de MailChimp lijsten aan welke mensen die het formulier "
1137
+ #~ "invullen toegevoegd moeten worden."
languages/mailchimp-for-wp.mo CHANGED
Binary file
languages/mailchimp-for-wp.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: MailChimp for WordPress\n"
4
- "POT-Creation-Date: 2014-04-29 22:59+0100\n"
5
- "PO-Revision-Date: 2014-04-29 22:59+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"
@@ -14,388 +14,1004 @@ msgstr ""
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SearchPath-0: ..\n"
16
 
17
- #: ../includes/class-admin.php:92 ../includes/views/api-settings.php:12
18
- #: ../includes/views/checkbox-settings.php:11
19
- #: ../includes/views/form-settings.php:91
20
  msgid "Settings"
21
  msgstr ""
22
 
23
- #: ../includes/class-admin.php:111
24
- msgid "Upgrade to Pro"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  msgstr ""
26
 
27
- #: ../includes/class-admin.php:192
28
  msgid "Comment form"
29
  msgstr ""
30
 
31
- #: ../includes/class-admin.php:193
32
  msgid "Registration form"
33
  msgstr ""
34
 
35
- #: ../includes/class-admin.php:197
36
  msgid "MultiSite forms"
37
  msgstr ""
38
 
39
- #: ../includes/class-admin.php:201
40
  msgid "BuddyPress registration"
41
  msgstr ""
42
 
43
- #: ../includes/class-admin.php:313
44
- msgid "MailChimp cache successfully renewed."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  msgstr ""
46
 
47
- #: ../includes/class-admin.php:315
48
  msgid "Failed to renew MailChimp cache - please try again later."
49
  msgstr ""
50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  #: ../includes/class-widget.php:20
52
- msgid "MailChimp Sign-Up Form"
53
  msgstr ""
54
 
55
  #: ../includes/class-widget.php:21
56
- msgid "Displays your MailChimp for WordPress sign-up form"
 
 
 
 
 
 
 
57
  msgstr ""
58
 
59
- #: ../includes/class-widget.php:60
60
  msgid "Newsletter"
61
  msgstr ""
62
 
63
- #: ../includes/class-widget.php:63
64
  msgid "Title:"
65
  msgstr ""
66
 
67
- #: ../includes/class-widget.php:67
 
 
 
 
 
 
 
 
68
  #, php-format
 
 
 
 
 
 
 
 
69
  msgid ""
70
- "You can edit your sign-up form in the %sMailChimp for WordPress form settings"
71
- "%s."
72
  msgstr ""
73
 
74
- #: ../includes/functions/general.php:21
75
- msgid "Email address"
76
  msgstr ""
77
 
78
- #: ../includes/functions/general.php:22
79
- msgid "Your email address"
80
  msgstr ""
81
 
82
- #: ../includes/functions/general.php:23
83
- msgid "Sign up"
 
 
 
 
84
  msgstr ""
85
 
86
- #: ../includes/integrations/class-cf7.php:47
87
- #: ../includes/views/checkbox-settings.php:82
88
- #: ../includes/views/checkbox-settings.php:87
89
- #: ../includes/views/form-settings.php:95
90
- #: ../includes/views/form-settings.php:102
91
- #: ../includes/views/form-settings.php:112
92
- #: ../includes/views/form-settings.php:122
93
- #: ../includes/views/form-settings.php:136
 
 
 
 
 
 
 
 
 
 
94
  msgid "Yes"
95
  msgstr ""
96
 
97
- #: ../includes/integrations/class-cf7.php:47
98
- #: ../includes/views/checkbox-settings.php:82
99
- #: ../includes/views/checkbox-settings.php:87
100
- #: ../includes/views/form-settings.php:27
101
- #: ../includes/views/form-settings.php:95
102
- #: ../includes/views/form-settings.php:104
103
- #: ../includes/views/form-settings.php:114
104
- #: ../includes/views/form-settings.php:124
105
- #: ../includes/views/form-settings.php:137
 
 
 
 
 
 
 
 
 
 
106
  msgid "No"
107
  msgstr ""
108
 
109
- #: ../includes/views/api-settings.php:22
110
- msgid "API Settings"
 
 
 
111
  msgstr ""
112
 
113
- #: ../includes/views/api-settings.php:24
114
- msgid "CONNECTED"
 
115
  msgstr ""
116
 
117
- #: ../includes/views/api-settings.php:26
118
- msgid "NOT CONNECTED"
 
119
  msgstr ""
120
 
121
- #: ../includes/views/api-settings.php:35
122
- msgid "Get your API key here."
 
123
  msgstr ""
124
 
125
- #: ../includes/views/api-settings.php:47
126
- msgid "MailChimp Data"
 
 
 
127
  msgstr ""
128
 
129
- #: ../includes/views/api-settings.php:48
 
130
  msgid ""
131
- "The table below shows your MailChimp lists data. If you applied changes to "
132
- "your MailChimp lists, please use the following button to renew your cached "
133
- "data."
134
  msgstr ""
135
 
136
- #: ../includes/views/api-settings.php:54
137
- #: ../includes/views/api-settings.php:125
138
- msgid "Renew MailChimp lists"
 
 
139
  msgstr ""
140
 
141
- #: ../includes/views/api-settings.php:112
142
- msgid "No lists were found in your MailChimp account"
143
  msgstr ""
144
 
145
- #: ../includes/views/checkbox-settings.php:16
146
- msgid ""
147
- "To use sign-up checkboxes, select at least one list and one form to add the "
148
- "checkbox to."
149
  msgstr ""
150
 
151
- #: ../includes/views/checkbox-settings.php:21
152
- msgid "MailChimp settings for checkboxes"
 
153
  msgstr ""
154
 
155
- #: ../includes/views/checkbox-settings.php:25
 
 
 
 
 
 
 
 
 
 
 
156
  msgid ""
157
- "If you want to use sign-up checkboxes, select at least one MailChimp list to "
158
- "subscribe people to."
159
  msgstr ""
160
 
161
- #: ../includes/views/checkbox-settings.php:35
162
- #: ../includes/views/form-settings.php:48
163
  #, php-format
164
- msgid "No lists found, %sare you connected to MailChimp?%s"
 
 
165
  msgstr ""
166
 
167
- #: ../includes/views/checkbox-settings.php:42
 
168
  msgid ""
169
- "Select the list(s) to which people who check the checkbox should be "
170
- "subscribed."
171
  msgstr ""
172
 
173
- #: ../includes/views/checkbox-settings.php:50
174
- #: ../includes/views/form-settings.php:96
175
  msgid ""
176
- "Select \"yes\" if you want people to confirm their email address before "
177
- "being subscribed (recommended)"
 
178
  msgstr ""
179
 
180
- #: ../includes/views/checkbox-settings.php:54
181
- msgid "Checkbox settings"
182
  msgstr ""
183
 
184
- #: ../includes/views/checkbox-settings.php:58
185
- msgid "Add the checkbox to these forms"
186
  msgstr ""
187
 
188
- #: ../includes/views/checkbox-settings.php:70
189
- msgid "Selecting a form will automatically add the sign-up checkbox to it."
 
190
  msgstr ""
191
 
192
- #: ../includes/views/checkbox-settings.php:74
193
- msgid "Checkbox label text"
 
 
 
 
194
  msgstr ""
195
 
196
- #: ../includes/views/checkbox-settings.php:77
197
  #, php-format
198
- msgid "HTML tags like %s are allowed in the label text."
199
  msgstr ""
200
 
201
- #: ../includes/views/checkbox-settings.php:81
202
- msgid "Pre-check the checkbox?"
 
203
  msgstr ""
204
 
205
- #: ../includes/views/checkbox-settings.php:86
206
- msgid "Load some default CSS?"
 
207
  msgstr ""
208
 
209
- #: ../includes/views/checkbox-settings.php:88
210
- msgid "Select \"yes\" if the checkbox appears in a weird place."
 
211
  msgstr ""
212
 
213
- #: ../includes/views/form-settings.php:9
214
- msgid "Form Settings"
215
  msgstr ""
216
 
217
- #: ../includes/views/form-settings.php:15
218
- #, php-format
219
- msgid ""
220
- "To use the MailChimp sign-up form, configure the form below and then either "
221
- "paste %s in the content of a post or page or use the widget."
222
  msgstr ""
223
 
224
- #: ../includes/views/form-settings.php:20
225
- msgid "Required form settings"
226
  msgstr ""
227
 
228
- #: ../includes/views/form-settings.php:24
229
- msgid "Load form styles?"
230
  msgstr ""
231
 
232
- #: ../includes/views/form-settings.php:28
233
- msgid "Yes, load basic form styles"
234
  msgstr ""
235
 
236
- #: ../includes/views/form-settings.php:29
237
- msgid "Yes, load my custom form styles"
238
  msgstr ""
239
 
240
- #: ../includes/views/form-settings.php:30
241
- msgid "Yes, load default form theme"
242
  msgstr ""
243
 
244
- #: ../includes/views/form-settings.php:31
245
- msgid "Light Theme"
246
  msgstr ""
247
 
248
- #: ../includes/views/form-settings.php:32
249
- msgid "Red Theme"
250
  msgstr ""
251
 
252
- #: ../includes/views/form-settings.php:33
253
- msgid "Green Theme"
254
  msgstr ""
255
 
256
- #: ../includes/views/form-settings.php:34
257
- msgid "Blue Theme"
258
  msgstr ""
259
 
260
- #: ../includes/views/form-settings.php:35
261
- msgid "Dark Theme"
262
  msgstr ""
263
 
264
- #: ../includes/views/form-settings.php:36
265
- msgid "Custom Color Theme"
266
  msgstr ""
267
 
268
- #: ../includes/views/form-settings.php:41
269
- msgid ""
270
- "If you want to load some default CSS styles, select \"basic formatting styles"
271
- "\" or choose one of the color themes"
272
  msgstr ""
273
 
274
- #: ../includes/views/form-settings.php:61
275
- msgid ""
276
- "Select the list(s) to which people who submit this form should be subscribed."
 
 
 
277
  msgstr ""
278
 
279
- #: ../includes/views/form-settings.php:76
280
  #, php-format
281
  msgid ""
282
- "To display your sign-up form, paste %s inside the contents of a post, page "
283
- "or text widget."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
284
  msgstr ""
285
 
286
- #: ../includes/views/form-settings.php:106
 
 
287
  msgid ""
288
- "Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
289
- "succeeds (only when double opt-in is disabled)."
 
 
 
 
 
290
  msgstr ""
291
 
292
- #: ../includes/views/form-settings.php:116
 
293
  msgid ""
294
  "Select \"yes\" if you want to update existing subscribers (instead of "
295
  "showing the \"already subscribed\" message)."
296
  msgstr ""
297
 
298
- #: ../includes/views/form-settings.php:126
 
 
 
 
 
 
299
  msgid ""
300
  "Select \"yes\" if you want to replace the interest groups with the groups "
301
  "provided instead of adding the provided groups to the member's interest "
302
  "groups (only when updating a subscriber)."
303
  msgstr ""
304
 
305
- #: ../includes/views/form-settings.php:130
 
 
 
 
 
 
 
 
 
 
 
 
 
 
306
  msgid "Form Settings & Messages"
307
  msgstr ""
308
 
309
- #: ../includes/views/form-settings.php:139
 
 
 
 
 
 
310
  msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
311
  msgstr ""
312
 
313
- #: ../includes/views/form-settings.php:142
 
314
  msgid "Hide form after a successful sign-up?"
315
  msgstr ""
316
 
317
- #: ../includes/views/form-settings.php:144
 
318
  msgid "Select \"yes\" to hide the form fields after a successful sign-up."
319
  msgstr ""
320
 
321
- #: ../includes/views/form-settings.php:147
 
322
  msgid "Redirect to URL after successful sign-ups"
323
  msgstr ""
324
 
325
- #: ../includes/views/form-settings.php:150
 
326
  msgid ""
327
  "Leave empty or enter 0 for no redirection. Use complete (absolute) URLs, "
328
  "including <code>http://</code>"
329
  msgstr ""
330
 
331
- #: ../includes/views/form-settings.php:154
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
332
  msgid "Success message"
333
  msgstr ""
334
 
335
- #: ../includes/views/form-settings.php:158
 
336
  msgid "General error message"
337
  msgstr ""
338
 
339
- #: ../includes/views/form-settings.php:162
 
340
  msgid "Invalid email address message"
341
  msgstr ""
342
 
343
- #: ../includes/views/form-settings.php:166
 
344
  msgid "Already subscribed message"
345
  msgstr ""
346
 
347
- #: ../includes/views/form-settings.php:171
 
348
  msgid "Invalid CAPTCHA message"
349
  msgstr ""
350
 
351
- #: ../includes/views/form-settings.php:178
 
352
  #, php-format
353
  msgid "HTML tags like %s are allowed in the message fields."
354
  msgstr ""
355
 
356
- #: ../includes/views/parts/admin-field-wizard.php:10
357
- msgid "Add a new field"
358
  msgstr ""
359
 
360
- #: ../includes/views/parts/admin-field-wizard.php:14
361
- msgid "Select at least one list first."
 
 
362
  msgstr ""
363
 
364
- #: ../includes/views/parts/admin-field-wizard.php:17
365
- msgid "Use the tool below to generate the HTML for your form fields."
366
  msgstr ""
367
 
368
- #: ../includes/views/parts/admin-field-wizard.php:20
369
  msgid "Select MailChimp field.."
370
  msgstr ""
371
 
372
- #: ../includes/views/parts/admin-field-wizard.php:33
373
- #: ../includes/views/parts/admin-field-wizard.php:38
374
- #: ../includes/views/parts/admin-field-wizard.php:43
 
 
 
 
 
 
 
 
 
 
 
 
375
  msgid "(optional)"
376
  msgstr ""
377
 
378
- #: ../includes/views/parts/admin-field-wizard.php:43
 
 
 
 
379
  msgid "Initial value"
380
  msgstr ""
381
 
382
- #: ../includes/views/parts/admin-field-wizard.php:48
 
 
 
 
383
  msgid "(leave empty to hide)"
384
  msgstr ""
385
 
386
- #: ../includes/views/parts/admin-field-wizard.php:53
387
  #, php-format
388
  msgid "Wrap in paragraph %s tags?"
389
  msgstr ""
390
 
391
- #: ../includes/views/parts/admin-field-wizard.php:58
392
  msgid "Required field?"
393
  msgstr ""
394
 
395
- #: ../includes/views/parts/admin-field-wizard.php:62
396
  msgid "Add to form"
397
  msgstr ""
398
 
399
- #: ../includes/views/parts/admin-field-wizard.php:66
400
  msgid "Generated HTML"
401
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: MailChimp for WordPress\n"
4
+ "POT-Creation-Date: 2014-05-14 22:11+0100\n"
5
+ "PO-Revision-Date: 2014-05-14 22:11+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"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SearchPath-0: ..\n"
16
 
17
+ #: ../includes/class-admin.php:178
 
 
18
  msgid "Settings"
19
  msgstr ""
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 ""
36
+
37
+ #: ../includes/class-admin.php:249
38
+ msgid "Email address"
39
+ msgstr ""
40
+
41
+ #: ../includes/class-admin.php:250
42
+ msgid "Sign up"
43
+ msgstr ""
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
+ msgid "Form settings"
59
+ msgstr ""
60
+
61
+ #: ../includes/class-admin.php:322
62
+ msgid "Optional settings"
63
+ msgstr ""
64
+
65
+ #: ../includes/class-admin.php:323
66
+ msgid "Form variables"
67
+ msgstr ""
68
+
69
+ #: ../includes/class-admin.php:357
70
+ msgid "Use the following variables to add some dynamic content to your form."
71
+ msgstr ""
72
+
73
+ #: ../includes/class-admin.php:497
74
+ #, php-format
75
+ msgid ""
76
+ "Couldn't create the stylesheet. Manually add the generated CSS to your theme "
77
+ "stylesheet by using the %sTheme Editor%s or use FTP and edit <em>%s</em>."
78
+ msgstr ""
79
+
80
+ #: ../includes/class-admin.php:498
81
+ #, php-format
82
+ msgid "%sShow CSS%s"
83
+ msgstr ""
84
+
85
+ #: ../includes/class-admin.php:507
86
+ #, php-format
87
+ msgid ""
88
+ "To apply these styles on your website, select \"load custom form styles\" in "
89
+ "the %sform settings%s"
90
+ msgstr ""
91
+
92
+ #: ../includes/class-admin.php:508
93
+ #, php-format
94
+ msgid "The %sCSS Stylesheet%s has been created."
95
+ msgstr ""
96
+
97
+ #: ../includes/class-admin.php:524
98
+ msgid "General Settings"
99
+ msgstr ""
100
+
101
+ #: ../includes/class-admin.php:525
102
+ msgid "Checkboxes"
103
+ msgstr ""
104
+
105
+ #: ../includes/class-admin.php:526
106
+ #: ../includes/views/pages/admin-form-settings.php:10
107
+ msgid "Forms"
108
+ msgstr ""
109
+
110
+ #: ../includes/class-admin.php:527
111
+ #: ../includes/views/pages/admin-reports.php:10
112
+ msgid "Reports"
113
  msgstr ""
114
 
115
+ #: ../includes/class-admin.php:596
116
  msgid "Comment form"
117
  msgstr ""
118
 
119
+ #: ../includes/class-admin.php:597
120
  msgid "Registration form"
121
  msgstr ""
122
 
123
+ #: ../includes/class-admin.php:601
124
  msgid "MultiSite forms"
125
  msgstr ""
126
 
127
+ #: ../includes/class-admin.php:605
128
  msgid "BuddyPress registration"
129
  msgstr ""
130
 
131
+ #: ../includes/class-admin.php:613 ../includes/class-admin.php:617
132
+ #, php-format
133
+ msgid "%s checkout"
134
+ msgstr ""
135
+
136
+ #: ../includes/class-admin.php:653
137
+ #, php-format
138
+ msgid ""
139
+ "Please make sure the plugin is connected to MailChimp. <a href=\"%s"
140
+ "\">Provide a valid API key.</a>"
141
+ msgstr ""
142
+
143
+ #: ../includes/class-admin.php:792
144
+ #, php-format
145
+ msgid ""
146
+ "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
147
+ "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
148
+ "it now</a> to prevent problems"
149
+ msgstr ""
150
+
151
+ #: ../includes/class-admin.php:865
152
+ msgid "Renewed MailChimp cache."
153
  msgstr ""
154
 
155
+ #: ../includes/class-admin.php:867
156
  msgid "Failed to renew MailChimp cache - please try again later."
157
  msgstr ""
158
 
159
+ #: ../includes/class-form-manager.php:248
160
+ #, php-format
161
+ msgid "<strong>Error:</strong> Please specify a form ID. Example: %s."
162
+ msgstr ""
163
+
164
+ #: ../includes/class-form-manager.php:261
165
+ msgid ""
166
+ "<strong>Error:</strong> Sign-up form not found. Please check if you used the "
167
+ "correct form ID."
168
+ msgstr ""
169
+
170
+ #: ../includes/class-form-manager.php:370
171
+ #, php-format
172
+ msgid ""
173
+ "<strong>Admin notice:</strong> you have not yet selected a MailChimp list(s) "
174
+ "for this form. <a target=\"_top\" href=\"%s\">Edit this sign-up form</a> and "
175
+ "select at least one list."
176
+ msgstr ""
177
+
178
+ #: ../includes/class-form-manager.php:833
179
+ msgid "New Sign-Up"
180
+ msgstr ""
181
+
182
+ #: ../includes/class-form-manager.php:834
183
+ #, php-format
184
+ msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
185
+ msgstr ""
186
+
187
+ #: ../includes/class-form-manager.php:873
188
+ msgid "This email was auto-sent by the MailChimp for WordPress plugin."
189
+ msgstr ""
190
+
191
  #: ../includes/class-widget.php:20
192
+ msgid "MailChimp for WP Form"
193
  msgstr ""
194
 
195
  #: ../includes/class-widget.php:21
196
+ msgid "Displays one of your MailChimp for WordPress sign-up forms"
197
+ msgstr ""
198
+
199
+ #: ../includes/class-widget.php:39
200
+ #, php-format
201
+ msgid ""
202
+ "Please select the sign-up form you'd like to show here in the <a href=\"%s"
203
+ "\">widget settings</a>."
204
  msgstr ""
205
 
206
+ #: ../includes/class-widget.php:68
207
  msgid "Newsletter"
208
  msgstr ""
209
 
210
+ #: ../includes/class-widget.php:79
211
  msgid "Title:"
212
  msgstr ""
213
 
214
+ #: ../includes/class-widget.php:83
215
+ msgid "Form:"
216
+ msgstr ""
217
+
218
+ #: ../includes/class-widget.php:85
219
+ msgid "Select the form to show"
220
+ msgstr ""
221
+
222
+ #: ../includes/class-widget.php:93
223
  #, php-format
224
+ msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
225
+ msgstr ""
226
+
227
+ #: ../includes/functions/general.php:20
228
+ msgid "Sign me up for the newsletter!"
229
+ msgstr ""
230
+
231
+ #: ../includes/functions/general.php:42
232
  msgid ""
233
+ "Thank you, your sign-up request was successful! Please check your e-mail "
234
+ "inbox."
235
  msgstr ""
236
 
237
+ #: ../includes/functions/general.php:43
238
+ msgid "Oops. Something went wrong. Please try again later."
239
  msgstr ""
240
 
241
+ #: ../includes/functions/general.php:44
242
+ msgid "Please provide a valid email address."
243
  msgstr ""
244
 
245
+ #: ../includes/functions/general.php:45
246
+ msgid "Given email address is already subscribed, thank you!"
247
+ msgstr ""
248
+
249
+ #: ../includes/functions/general.php:46
250
+ msgid "Please complete the CAPTCHA."
251
  msgstr ""
252
 
253
+ #: ../includes/integrations/class-cf7.php:44
254
+ #: ../includes/views/metaboxes/optional-form-settings.php:16
255
+ #: ../includes/views/metaboxes/optional-form-settings.php:30
256
+ #: ../includes/views/metaboxes/optional-form-settings.php:44
257
+ #: ../includes/views/metaboxes/optional-form-settings.php:58
258
+ #: ../includes/views/metaboxes/optional-form-settings.php:75
259
+ #: ../includes/views/metaboxes/optional-form-settings.php:87
260
+ #: ../includes/views/metaboxes/optional-form-settings.php:106
261
+ #: ../includes/views/pages/admin-checkbox-settings.php:52
262
+ #: ../includes/views/pages/admin-checkbox-settings.php:60
263
+ #: ../includes/views/pages/admin-checkbox-settings.php:90
264
+ #: ../includes/views/pages/admin-checkbox-settings.php:95
265
+ #: ../includes/views/tabs/admin-forms-general-settings.php:58
266
+ #: ../includes/views/tabs/admin-forms-general-settings.php:69
267
+ #: ../includes/views/tabs/admin-forms-general-settings.php:79
268
+ #: ../includes/views/tabs/admin-forms-general-settings.php:90
269
+ #: ../includes/views/tabs/admin-forms-general-settings.php:104
270
+ #: ../includes/views/tabs/admin-forms-general-settings.php:109
271
  msgid "Yes"
272
  msgstr ""
273
 
274
+ #: ../includes/integrations/class-cf7.php:44
275
+ #: ../includes/views/metaboxes/optional-form-settings.php:18
276
+ #: ../includes/views/metaboxes/optional-form-settings.php:32
277
+ #: ../includes/views/metaboxes/optional-form-settings.php:46
278
+ #: ../includes/views/metaboxes/optional-form-settings.php:60
279
+ #: ../includes/views/metaboxes/optional-form-settings.php:77
280
+ #: ../includes/views/metaboxes/optional-form-settings.php:89
281
+ #: ../includes/views/metaboxes/optional-form-settings.php:107
282
+ #: ../includes/views/pages/admin-checkbox-settings.php:52
283
+ #: ../includes/views/pages/admin-checkbox-settings.php:62
284
+ #: ../includes/views/pages/admin-checkbox-settings.php:90
285
+ #: ../includes/views/pages/admin-checkbox-settings.php:95
286
+ #: ../includes/views/tabs/admin-forms-general-settings.php:22
287
+ #: ../includes/views/tabs/admin-forms-general-settings.php:60
288
+ #: ../includes/views/tabs/admin-forms-general-settings.php:71
289
+ #: ../includes/views/tabs/admin-forms-general-settings.php:81
290
+ #: ../includes/views/tabs/admin-forms-general-settings.php:92
291
+ #: ../includes/views/tabs/admin-forms-general-settings.php:104
292
+ #: ../includes/views/tabs/admin-forms-general-settings.php:109
293
  msgid "No"
294
  msgstr ""
295
 
296
+ #: ../includes/library/license-manager/class-license-manager.php:132
297
+ #, php-format
298
+ msgid ""
299
+ "<b>Warning!</b> You're blocking external requests which means you won't be "
300
+ "able to get %s updates. Please add %s to %s."
301
  msgstr ""
302
 
303
+ #: ../includes/library/license-manager/class-license-manager.php:175
304
+ #, php-format
305
+ msgid "Your %s license has been activated. You have an unlimited license. "
306
  msgstr ""
307
 
308
+ #: ../includes/library/license-manager/class-license-manager.php:177
309
+ #, php-format
310
+ msgid "Your %s license has been activated. You have used %d/%d activations. "
311
  msgstr ""
312
 
313
+ #: ../includes/library/license-manager/class-license-manager.php:182
314
+ #, php-format
315
+ msgid "<a href=\"%s\">Did you know you can upgrade your license?</a>"
316
  msgstr ""
317
 
318
+ #: ../includes/library/license-manager/class-license-manager.php:186
319
+ #, php-format
320
+ msgid ""
321
+ "<a href=\"%s\">Your license is expiring in %d days, would you like to extend "
322
+ "it?</a>"
323
  msgstr ""
324
 
325
+ #: ../includes/library/license-manager/class-license-manager.php:195
326
+ #, php-format
327
  msgid ""
328
+ "You've reached your activation limit. You must <a href=\"%s\">upgrade your "
329
+ "license</a> to use it on this site."
 
330
  msgstr ""
331
 
332
+ #: ../includes/library/license-manager/class-license-manager.php:198
333
+ #, php-format
334
+ msgid ""
335
+ "Your license has expired. You must <a href=\"%s\">extend your license</a> in "
336
+ "order to use it again."
337
  msgstr ""
338
 
339
+ #: ../includes/library/license-manager/class-license-manager.php:201
340
+ msgid "Failed to activate your license, your license key seems to be invalid."
341
  msgstr ""
342
 
343
+ #: ../includes/library/license-manager/class-license-manager.php:225
344
+ #, php-format
345
+ msgid "Your %s license has been deactivated."
 
346
  msgstr ""
347
 
348
+ #: ../includes/library/license-manager/class-license-manager.php:227
349
+ #, php-format
350
+ msgid "Failed to deactivate your %s license."
351
  msgstr ""
352
 
353
+ #: ../includes/library/license-manager/class-license-manager.php:262
354
+ #, php-format
355
+ msgid "Request error: \"%s\""
356
+ msgstr ""
357
+
358
+ #: ../includes/library/license-manager/class-license-manager.php:420
359
+ #, php-format
360
+ msgid "%s: License Settings"
361
+ msgstr ""
362
+
363
+ #: ../includes/library/license-manager/class-plugin-license-manager.php:72
364
+ #, php-format
365
  msgid ""
366
+ "%s is network activated, you can manage your license in the <a href=\"%s"
367
+ "\">network admin license page</a>."
368
  msgstr ""
369
 
370
+ #: ../includes/library/license-manager/class-plugin-license-manager.php:74
 
371
  #, php-format
372
+ msgid ""
373
+ "%s is network activated, please contact your site administrator to manage "
374
+ "the license."
375
  msgstr ""
376
 
377
+ #: ../includes/library/license-manager/class-update-manager.php:83
378
+ #, php-format
379
  msgid ""
380
+ "%s failed to check for updates because of the following error: <em>%s</em>"
 
381
  msgstr ""
382
 
383
+ #: ../includes/library/license-manager/class-update-manager.php:148
 
384
  msgid ""
385
+ "This site has not been activated properly on dannyvankooten.com and thus "
386
+ "cannot check for future updates. Please activate your site with a valid "
387
+ "license key."
388
  msgstr ""
389
 
390
+ #: ../includes/library/license-manager/views/form.php:23
391
+ msgid "License status"
392
  msgstr ""
393
 
394
+ #: ../includes/library/license-manager/views/form.php:33
395
+ msgid "Toggle license status"
396
  msgstr ""
397
 
398
+ #: ../includes/library/license-manager/views/form.php:38
399
+ msgid ""
400
+ "(deactivate your license so you can activate it on another WordPress site)"
401
  msgstr ""
402
 
403
+ #: ../includes/library/license-manager/views/form.php:44
404
+ msgid "Please enter a license key in the field below first."
405
+ msgstr ""
406
+
407
+ #: ../includes/library/license-manager/views/form.php:52
408
+ msgid "License Key"
409
  msgstr ""
410
 
411
+ #: ../includes/library/license-manager/views/form.php:54
412
  #, php-format
413
+ msgid "Paste your %s license key here.."
414
  msgstr ""
415
 
416
+ #: ../includes/library/license-manager/views/form.php:56
417
+ #, php-format
418
+ msgid "You defined your license key using the %s PHP constant."
419
  msgstr ""
420
 
421
+ #: ../includes/library/license-manager/views/form.php:73
422
+ #, php-format
423
+ msgid "Your %s license will expire on %s."
424
  msgstr ""
425
 
426
+ #: ../includes/library/license-manager/views/form.php:76
427
+ #, php-format
428
+ msgid "%sRenew your license now%s."
429
  msgstr ""
430
 
431
+ #: ../includes/tables/class-forms-table.php:19
432
+ msgid "Sign-Up Form"
433
  msgstr ""
434
 
435
+ #: ../includes/tables/class-forms-table.php:20
436
+ msgid "Sign-up Forms"
 
 
 
437
  msgstr ""
438
 
439
+ #: ../includes/tables/class-forms-table.php:36
440
+ msgid "Form"
441
  msgstr ""
442
 
443
+ #: ../includes/tables/class-forms-table.php:37
444
+ msgid "Shortcode"
445
  msgstr ""
446
 
447
+ #: ../includes/tables/class-forms-table.php:38
448
+ msgid "List(s)"
449
  msgstr ""
450
 
451
+ #: ../includes/tables/class-forms-table.php:39
452
+ msgid "Last edited"
453
  msgstr ""
454
 
455
+ #: ../includes/tables/class-forms-table.php:103
456
+ msgid "You have not created any sign-up forms yet. Time to do so!"
457
  msgstr ""
458
 
459
+ #: ../includes/tables/class-log-table.php:23
460
+ msgid "Subscriber"
461
  msgstr ""
462
 
463
+ #: ../includes/tables/class-log-table.php:24
464
+ msgid "Subscribers"
465
  msgstr ""
466
 
467
+ #: ../includes/tables/class-log-table.php:44
468
+ msgid "Email"
469
  msgstr ""
470
 
471
+ #: ../includes/tables/class-log-table.php:45
472
+ msgid "List"
473
  msgstr ""
474
 
475
+ #: ../includes/tables/class-log-table.php:46
476
+ msgid "Type"
477
  msgstr ""
478
 
479
+ #: ../includes/tables/class-log-table.php:47
480
+ msgid "Source"
481
  msgstr ""
482
 
483
+ #: ../includes/tables/class-log-table.php:48
484
+ msgid "Extra data"
 
 
485
  msgstr ""
486
 
487
+ #: ../includes/tables/class-log-table.php:49
488
+ msgid "Subscribed"
489
+ msgstr ""
490
+
491
+ #: ../includes/tables/class-log-table.php:258
492
+ msgid "No subscribe requests found."
493
  msgstr ""
494
 
495
+ #: ../includes/views/metaboxes/optional-form-settings.php:8
496
  #, php-format
497
  msgid ""
498
+ "Any settings you specify here will override the <a href=\"%s\">general form "
499
+ "settings</a>. If no setting is specified, the corresponding general setting "
500
+ "value will be used."
501
+ msgstr ""
502
+
503
+ #: ../includes/views/metaboxes/optional-form-settings.php:10
504
+ msgid "MailChimp Settings"
505
+ msgstr ""
506
+
507
+ #: ../includes/views/metaboxes/optional-form-settings.php:13
508
+ #: ../includes/views/pages/admin-checkbox-settings.php:51
509
+ #: ../includes/views/tabs/admin-forms-general-settings.php:55
510
+ msgid "Double opt-in?"
511
+ msgstr ""
512
+
513
+ #: ../includes/views/metaboxes/optional-form-settings.php:20
514
+ #: ../includes/views/metaboxes/optional-form-settings.php:34
515
+ #: ../includes/views/metaboxes/optional-form-settings.php:48
516
+ #: ../includes/views/metaboxes/optional-form-settings.php:62
517
+ #: ../includes/views/metaboxes/optional-form-settings.php:79
518
+ #: ../includes/views/metaboxes/optional-form-settings.php:91
519
+ msgid "Inherit"
520
  msgstr ""
521
 
522
+ #: ../includes/views/metaboxes/optional-form-settings.php:22
523
+ #: ../includes/views/pages/admin-checkbox-settings.php:53
524
+ #: ../includes/views/tabs/admin-forms-general-settings.php:62
525
  msgid ""
526
+ "Select \"yes\" if you want people to confirm their email address before "
527
+ "being subscribed (recommended)"
528
+ msgstr ""
529
+
530
+ #: ../includes/views/metaboxes/optional-form-settings.php:27
531
+ #: ../includes/views/tabs/admin-forms-general-settings.php:76
532
+ msgid "Update existing subscribers?"
533
  msgstr ""
534
 
535
+ #: ../includes/views/metaboxes/optional-form-settings.php:36
536
+ #: ../includes/views/tabs/admin-forms-general-settings.php:83
537
  msgid ""
538
  "Select \"yes\" if you want to update existing subscribers (instead of "
539
  "showing the \"already subscribed\" message)."
540
  msgstr ""
541
 
542
+ #: ../includes/views/metaboxes/optional-form-settings.php:41
543
+ #: ../includes/views/tabs/admin-forms-general-settings.php:87
544
+ msgid "Replace interest groups?"
545
+ msgstr ""
546
+
547
+ #: ../includes/views/metaboxes/optional-form-settings.php:50
548
+ #: ../includes/views/tabs/admin-forms-general-settings.php:94
549
  msgid ""
550
  "Select \"yes\" if you want to replace the interest groups with the groups "
551
  "provided instead of adding the provided groups to the member's interest "
552
  "groups (only when updating a subscriber)."
553
  msgstr ""
554
 
555
+ #: ../includes/views/metaboxes/optional-form-settings.php:55
556
+ #: ../includes/views/pages/admin-checkbox-settings.php:57
557
+ #: ../includes/views/tabs/admin-forms-general-settings.php:66
558
+ msgid "Send Welcome Email?"
559
+ msgstr ""
560
+
561
+ #: ../includes/views/metaboxes/optional-form-settings.php:64
562
+ #: ../includes/views/pages/admin-checkbox-settings.php:64
563
+ #: ../includes/views/tabs/admin-forms-general-settings.php:73
564
+ msgid ""
565
+ "Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
566
+ "succeeds (only when double opt-in is disabled)."
567
+ msgstr ""
568
+
569
+ #: ../includes/views/metaboxes/optional-form-settings.php:69
570
  msgid "Form Settings & Messages"
571
  msgstr ""
572
 
573
+ #: ../includes/views/metaboxes/optional-form-settings.php:72
574
+ #: ../includes/views/tabs/admin-forms-general-settings.php:103
575
+ msgid "Enable AJAX form submission?"
576
+ msgstr ""
577
+
578
+ #: ../includes/views/metaboxes/optional-form-settings.php:80
579
+ #: ../includes/views/tabs/admin-forms-general-settings.php:105
580
  msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
581
  msgstr ""
582
 
583
+ #: ../includes/views/metaboxes/optional-form-settings.php:84
584
+ #: ../includes/views/tabs/admin-forms-general-settings.php:108
585
  msgid "Hide form after a successful sign-up?"
586
  msgstr ""
587
 
588
+ #: ../includes/views/metaboxes/optional-form-settings.php:93
589
+ #: ../includes/views/tabs/admin-forms-general-settings.php:110
590
  msgid "Select \"yes\" to hide the form fields after a successful sign-up."
591
  msgstr ""
592
 
593
+ #: ../includes/views/metaboxes/optional-form-settings.php:97
594
+ #: ../includes/views/tabs/admin-forms-general-settings.php:113
595
  msgid "Redirect to URL after successful sign-ups"
596
  msgstr ""
597
 
598
+ #: ../includes/views/metaboxes/optional-form-settings.php:100
599
+ #: ../includes/views/tabs/admin-forms-general-settings.php:116
600
  msgid ""
601
  "Leave empty or enter 0 for no redirection. Use complete (absolute) URLs, "
602
  "including <code>http://</code>"
603
  msgstr ""
604
 
605
+ #: ../includes/views/metaboxes/optional-form-settings.php:104
606
+ msgid "Send an email copy of the form data?"
607
+ msgstr ""
608
+
609
+ #: ../includes/views/metaboxes/optional-form-settings.php:108
610
+ msgid ""
611
+ "Tick \"yes\" if you want to receive an email with the form data for every "
612
+ "sign-up request."
613
+ msgstr ""
614
+
615
+ #: ../includes/views/metaboxes/optional-form-settings.php:111
616
+ msgid "Send the copy to this email:"
617
+ msgstr ""
618
+
619
+ #: ../includes/views/metaboxes/optional-form-settings.php:117
620
+ #: ../includes/views/tabs/admin-forms-general-settings.php:119
621
  msgid "Success message"
622
  msgstr ""
623
 
624
+ #: ../includes/views/metaboxes/optional-form-settings.php:121
625
+ #: ../includes/views/tabs/admin-forms-general-settings.php:123
626
  msgid "General error message"
627
  msgstr ""
628
 
629
+ #: ../includes/views/metaboxes/optional-form-settings.php:125
630
+ #: ../includes/views/tabs/admin-forms-general-settings.php:127
631
  msgid "Invalid email address message"
632
  msgstr ""
633
 
634
+ #: ../includes/views/metaboxes/optional-form-settings.php:129
635
+ #: ../includes/views/tabs/admin-forms-general-settings.php:131
636
  msgid "Already subscribed message"
637
  msgstr ""
638
 
639
+ #: ../includes/views/metaboxes/optional-form-settings.php:134
640
+ #: ../includes/views/tabs/admin-forms-general-settings.php:136
641
  msgid "Invalid CAPTCHA message"
642
  msgstr ""
643
 
644
+ #: ../includes/views/metaboxes/optional-form-settings.php:141
645
+ #: ../includes/views/tabs/admin-forms-general-settings.php:142
646
  #, php-format
647
  msgid "HTML tags like %s are allowed in the message fields."
648
  msgstr ""
649
 
650
+ #: ../includes/views/metaboxes/required-form-settings.php:14
651
+ msgid "Lists this form subscribes to"
652
  msgstr ""
653
 
654
+ #: ../includes/views/metaboxes/required-form-settings.php:17
655
+ #: ../includes/views/pages/admin-checkbox-settings.php:38
656
+ #, php-format
657
+ msgid "No lists found, %sare you connected to MailChimp?%s"
658
  msgstr ""
659
 
660
+ #: ../includes/views/metaboxes/required-form-settings.php:29
661
+ msgid "Add a new field"
662
  msgstr ""
663
 
664
+ #: ../includes/views/metaboxes/required-form-settings.php:32
665
  msgid "Select MailChimp field.."
666
  msgstr ""
667
 
668
+ #: ../includes/views/metaboxes/required-form-settings.php:36
669
+ msgid "Submit Button"
670
+ msgstr ""
671
+
672
+ #: ../includes/views/metaboxes/required-form-settings.php:37
673
+ msgid "Lists Choice"
674
+ msgstr ""
675
+
676
+ #: ../includes/views/metaboxes/required-form-settings.php:45
677
+ msgid "Label"
678
+ msgstr ""
679
+
680
+ #: ../includes/views/metaboxes/required-form-settings.php:45
681
+ #: ../includes/views/metaboxes/required-form-settings.php:50
682
+ #: ../includes/views/metaboxes/required-form-settings.php:55
683
  msgid "(optional)"
684
  msgstr ""
685
 
686
+ #: ../includes/views/metaboxes/required-form-settings.php:50
687
+ msgid "Placeholder"
688
+ msgstr ""
689
+
690
+ #: ../includes/views/metaboxes/required-form-settings.php:55
691
  msgid "Initial value"
692
  msgstr ""
693
 
694
+ #: ../includes/views/metaboxes/required-form-settings.php:60
695
+ msgid "Labels"
696
+ msgstr ""
697
+
698
+ #: ../includes/views/metaboxes/required-form-settings.php:60
699
  msgid "(leave empty to hide)"
700
  msgstr ""
701
 
702
+ #: ../includes/views/metaboxes/required-form-settings.php:65
703
  #, php-format
704
  msgid "Wrap in paragraph %s tags?"
705
  msgstr ""
706
 
707
+ #: ../includes/views/metaboxes/required-form-settings.php:69
708
  msgid "Required field?"
709
  msgstr ""
710
 
711
+ #: ../includes/views/metaboxes/required-form-settings.php:73
712
  msgid "Add to form"
713
  msgstr ""
714
 
715
+ #: ../includes/views/metaboxes/required-form-settings.php:77
716
  msgid "Generated HTML"
717
  msgstr ""
718
+
719
+ #: ../includes/views/metaboxes/required-form-settings.php:86
720
+ msgid "Form usage"
721
+ msgstr ""
722
+
723
+ #: ../includes/views/metaboxes/required-form-settings.php:87
724
+ #, php-format
725
+ msgid ""
726
+ "Use the shortcode %s to display this form inside a post, page or text widget."
727
+ msgstr ""
728
+
729
+ #: ../includes/views/pages/admin-checkbox-settings.php:11
730
+ #: ../includes/views/pages/admin-form-settings.php:10
731
+ #: ../includes/views/pages/admin-general-settings.php:10
732
+ #: ../includes/views/pages/admin-reports.php:10
733
+ msgid "MailChimp for WordPress"
734
+ msgstr ""
735
+
736
+ #: ../includes/views/pages/admin-checkbox-settings.php:11
737
+ msgid "Checkbox Settings"
738
+ msgstr ""
739
+
740
+ #: ../includes/views/pages/admin-checkbox-settings.php:14
741
+ msgid ""
742
+ "To use sign-up checkboxes, select at least one list and one form to add the "
743
+ "checkbox to."
744
+ msgstr ""
745
+
746
+ #: ../includes/views/pages/admin-checkbox-settings.php:21
747
+ msgid "MailChimp settings for checkboxes"
748
+ msgstr ""
749
+
750
+ #: ../includes/views/pages/admin-checkbox-settings.php:26
751
+ msgid ""
752
+ "If you want to use sign-up checkboxes, select at least one MailChimp list to "
753
+ "subscribe people to."
754
+ msgstr ""
755
+
756
+ #: ../includes/views/pages/admin-checkbox-settings.php:34
757
+ msgid "MailChimp Lists"
758
+ msgstr ""
759
+
760
+ #: ../includes/views/pages/admin-checkbox-settings.php:45
761
+ msgid ""
762
+ "Select the list(s) to which people who check the checkbox should be "
763
+ "subscribed."
764
+ msgstr ""
765
+
766
+ #: ../includes/views/pages/admin-checkbox-settings.php:68
767
+ msgid "Checkbox settings"
768
+ msgstr ""
769
+
770
+ #: ../includes/views/pages/admin-checkbox-settings.php:71
771
+ msgid "Add the checkbox to these forms"
772
+ msgstr ""
773
+
774
+ #: ../includes/views/pages/admin-checkbox-settings.php:78
775
+ msgid "Selecting a form will automatically add the sign-up checkbox to it."
776
+ msgstr ""
777
+
778
+ #: ../includes/views/pages/admin-checkbox-settings.php:82
779
+ msgid "Checkbox label text"
780
+ msgstr ""
781
+
782
+ #: ../includes/views/pages/admin-checkbox-settings.php:85
783
+ #: ../includes/views/pages/admin-checkbox-settings.php:115
784
+ #, php-format
785
+ msgid "HTML tags like %s are allowed in the label text."
786
+ msgstr ""
787
+
788
+ #: ../includes/views/pages/admin-checkbox-settings.php:89
789
+ msgid "Pre-check the checkbox?"
790
+ msgstr ""
791
+
792
+ #: ../includes/views/pages/admin-checkbox-settings.php:94
793
+ msgid "Load some default CSS?"
794
+ msgstr ""
795
+
796
+ #: ../includes/views/pages/admin-checkbox-settings.php:96
797
+ msgid "Select \"yes\" if the checkbox appears in a weird place."
798
+ msgstr ""
799
+
800
+ #: ../includes/views/pages/admin-checkbox-settings.php:100
801
+ #: ../includes/views/pages/admin-checkbox-settings.php:120
802
+ #: ../includes/views/tabs/admin-forms-general-settings.php:48
803
+ #: ../includes/views/tabs/admin-forms-general-settings.php:146
804
+ msgid "Save all changes"
805
+ msgstr ""
806
+
807
+ #: ../includes/views/pages/admin-checkbox-settings.php:103
808
+ msgid "Custom label texts"
809
+ msgstr ""
810
+
811
+ #: ../includes/views/pages/admin-checkbox-settings.php:104
812
+ msgid ""
813
+ "Override the default checkbox label text for any given checkbox using the "
814
+ "fields below."
815
+ msgstr ""
816
+
817
+ #: ../includes/views/pages/admin-form-settings.php:13
818
+ msgid "Forms & Settings"
819
+ msgstr ""
820
+
821
+ #: ../includes/views/pages/admin-form-settings.php:14
822
+ msgid "CSS Styles Builder"
823
+ msgstr ""
824
+
825
+ #: ../includes/views/pages/admin-general-settings.php:10
826
+ msgid "License & API Settings"
827
+ msgstr ""
828
+
829
+ #: ../includes/views/pages/admin-general-settings.php:19
830
+ msgid "API Settings"
831
+ msgstr ""
832
+
833
+ #: ../includes/views/pages/admin-general-settings.php:21
834
+ msgid "CONNECTED"
835
+ msgstr ""
836
+
837
+ #: ../includes/views/pages/admin-general-settings.php:23
838
+ msgid "NOT CONNECTED"
839
+ msgstr ""
840
+
841
+ #: ../includes/views/pages/admin-general-settings.php:29
842
+ msgid "API Key"
843
+ msgstr ""
844
+
845
+ #: ../includes/views/pages/admin-general-settings.php:31
846
+ msgid "Your MailChimp API key"
847
+ msgstr ""
848
+
849
+ #: ../includes/views/pages/admin-general-settings.php:32
850
+ msgid "Get your API key here."
851
+ msgstr ""
852
+
853
+ #: ../includes/views/pages/admin-general-settings.php:48
854
+ msgid "MailChimp Data"
855
+ msgstr ""
856
+
857
+ #: ../includes/views/pages/admin-general-settings.php:49
858
+ msgid ""
859
+ "The table below shows your MailChimp lists data. If you applied changes to "
860
+ "your MailChimp lists, please use the following button to renew your cached "
861
+ "data."
862
+ msgstr ""
863
+
864
+ #: ../includes/views/pages/admin-general-settings.php:55
865
+ #: ../includes/views/pages/admin-general-settings.php:133
866
+ msgid "Renew MailChimp lists"
867
+ msgstr ""
868
+
869
+ #: ../includes/views/pages/admin-general-settings.php:120
870
+ msgid "No lists were found in your MailChimp account."
871
+ msgstr ""
872
+
873
+ #: ../includes/views/pages/admin-reports.php:14
874
+ msgid "Statistics"
875
+ msgstr ""
876
+
877
+ #: ../includes/views/pages/admin-reports.php:15
878
+ msgid "Log"
879
+ msgstr ""
880
+
881
+ #: ../includes/views/parts/admin-footer.php:8
882
+ #, php-format
883
+ msgid ""
884
+ "Need help? Email me directly at <a href=\"%s\">support@dannyvankooten.com</"
885
+ "a>. Please include your website URL and as many details as possible."
886
+ msgstr ""
887
+
888
+ #: ../includes/views/parts/admin-text-variables.php:11
889
+ msgid "Replaced with the number of subscribers on the selected list(s)"
890
+ msgstr ""
891
+
892
+ #: ../includes/views/parts/admin-text-variables.php:15
893
+ msgid "Replaced with the visitor's IP address"
894
+ msgstr ""
895
+
896
+ #: ../includes/views/parts/admin-text-variables.php:19
897
+ #, php-format
898
+ msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
899
+ msgstr ""
900
+
901
+ #: ../includes/views/parts/admin-text-variables.php:23
902
+ #, php-format
903
+ msgid "Replaced with the current time (hh:mm:ss eg: %s)"
904
+ msgstr ""
905
+
906
+ #: ../includes/views/parts/admin-text-variables.php:27
907
+ msgid ""
908
+ "Replaced with the logged in user's email (or nothing, if there is no logged "
909
+ "in user)"
910
+ msgstr ""
911
+
912
+ #: ../includes/views/parts/admin-text-variables.php:31
913
+ msgid "Display name of the current user"
914
+ msgstr ""
915
+
916
+ #: ../includes/views/parts/admin-text-variables.php:35
917
+ msgid "First name of the current user"
918
+ msgstr ""
919
+
920
+ #: ../includes/views/parts/admin-text-variables.php:39
921
+ msgid "Last name of the current user"
922
+ msgstr ""
923
+
924
+ #: ../includes/views/parts/admin-text-variables.php:43
925
+ msgid "Current user ID"
926
+ msgstr ""
927
+
928
+ #: ../includes/views/parts/admin-text-variables.php:47
929
+ msgid "Current URL"
930
+ msgstr ""
931
+
932
+ #: ../includes/views/tabs/admin-forms-css-builder.php:10
933
+ msgid "Use the fields below to create custom styling rules for your forms."
934
+ msgstr ""
935
+
936
+ #: ../includes/views/tabs/admin-forms-css-builder.php:214
937
+ msgid "Build CSS File"
938
+ msgstr ""
939
+
940
+ #: ../includes/views/tabs/admin-forms-general-settings.php:8
941
+ msgid "Sign-Up Forms"
942
+ msgstr ""
943
+
944
+ #: ../includes/views/tabs/admin-forms-general-settings.php:8
945
+ msgid "Create New Form"
946
+ msgstr ""
947
+
948
+ #: ../includes/views/tabs/admin-forms-general-settings.php:16
949
+ msgid "General form settings"
950
+ msgstr ""
951
+
952
+ #: ../includes/views/tabs/admin-forms-general-settings.php:19
953
+ msgid "Load form styles (CSS)?"
954
+ msgstr ""
955
+
956
+ #: ../includes/views/tabs/admin-forms-general-settings.php:23
957
+ msgid "Yes, load basic form styles"
958
+ msgstr ""
959
+
960
+ #: ../includes/views/tabs/admin-forms-general-settings.php:24
961
+ msgid "Yes, load my custom form styles"
962
+ msgstr ""
963
+
964
+ #: ../includes/views/tabs/admin-forms-general-settings.php:25
965
+ msgid "Yes, load default form theme"
966
+ msgstr ""
967
+
968
+ #: ../includes/views/tabs/admin-forms-general-settings.php:26
969
+ msgid "Light Theme"
970
+ msgstr ""
971
+
972
+ #: ../includes/views/tabs/admin-forms-general-settings.php:27
973
+ msgid "Red Theme"
974
+ msgstr ""
975
+
976
+ #: ../includes/views/tabs/admin-forms-general-settings.php:28
977
+ msgid "Green Theme"
978
+ msgstr ""
979
+
980
+ #: ../includes/views/tabs/admin-forms-general-settings.php:29
981
+ msgid "Blue Theme"
982
+ msgstr ""
983
+
984
+ #: ../includes/views/tabs/admin-forms-general-settings.php:30
985
+ msgid "Dark Theme"
986
+ msgstr ""
987
+
988
+ #: ../includes/views/tabs/admin-forms-general-settings.php:31
989
+ msgid "Custom Color Theme"
990
+ msgstr ""
991
+
992
+ #: ../includes/views/tabs/admin-forms-general-settings.php:36
993
+ #, php-format
994
+ msgid ""
995
+ "If you %screated a custom stylesheet%s and want it to be loaded, select "
996
+ "\"custom form styles\". Otherwise, choose the basic formatting styles or one "
997
+ "of the default themes."
998
+ msgstr ""
999
+
1000
+ #: ../includes/views/tabs/admin-forms-general-settings.php:40
1001
+ msgid "Select Color"
1002
+ msgstr ""
1003
+
1004
+ #: ../includes/views/tabs/admin-forms-general-settings.php:50
1005
+ msgid "Default MailChimp settings"
1006
+ msgstr ""
1007
+
1008
+ #: ../includes/views/tabs/admin-forms-general-settings.php:51
1009
+ #: ../includes/views/tabs/admin-forms-general-settings.php:99
1010
+ msgid ""
1011
+ "The following settings apply to <strong>all</strong> forms but can be "
1012
+ "overridden on a per-form basis."
1013
+ msgstr ""
1014
+
1015
+ #: ../includes/views/tabs/admin-forms-general-settings.php:98
1016
+ msgid "Default form settings"
1017
+ msgstr ""
mailchimp-for-wp.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: MailChimp for WordPress Lite
4
  Plugin URI: http://dannyvankooten.com/mailchimp-for-wordpress/
5
  Description: Lite version of MailChimp for WordPress. Adds various sign-up methods to your website.
6
- Version: 2.0
7
  Author: Danny van Kooten
8
  Author URI: http://dannyvankooten.com
9
  Text Domain: mailchimp-for-wp
@@ -47,7 +47,7 @@ function mc4wp_load_plugin() {
47
  }
48
 
49
  // bootstrap the lite plugin
50
- define( "MC4WP_LITE_VERSION", "2.0" );
51
  define( "MC4WP_LITE_PLUGIN_DIR", plugin_dir_path( __FILE__ ) );
52
  define( "MC4WP_LITE_PLUGIN_URL", plugins_url( '/' , __FILE__ ) );
53
  define( "MC4WP_LITE_PLUGIN_FILE", __FILE__ );
3
  Plugin Name: MailChimp for WordPress Lite
4
  Plugin URI: http://dannyvankooten.com/mailchimp-for-wordpress/
5
  Description: Lite version of MailChimp for WordPress. Adds various sign-up methods to your website.
6
+ Version: 2.0.1
7
  Author: Danny van Kooten
8
  Author URI: http://dannyvankooten.com
9
  Text Domain: mailchimp-for-wp
47
  }
48
 
49
  // bootstrap the lite plugin
50
+ define( "MC4WP_LITE_VERSION", "2.0.1" );
51
  define( "MC4WP_LITE_PLUGIN_DIR", plugin_dir_path( __FILE__ ) );
52
  define( "MC4WP_LITE_PLUGIN_URL", plugins_url( '/' , __FILE__ ) );
53
  define( "MC4WP_LITE_PLUGIN_FILE", __FILE__ );
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === MailChimp for WordPress ===
2
  Contributors: DvanKooten
3
- Donate link: http://dannyvankooten.com/donate/
4
  Tags: mailchimp,form,shortcode,widget,checkbox,comment,newsletter,buddypress,multisite,bbpress,woocommerce,easy digital downloads,contact form,contact form 7
5
- Requires at least: 3.1
6
- Tested up to: 3.9
7
- Stable tag: 2.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -37,13 +37,21 @@ Add sign-up checkboxes to *any* form on your website. The plugin offers built-in
37
  >
38
  > Multiple forms, AJAX, form designer, custom themes, detailed statistics, more built-in checkbox integrations and priority support.
39
  >
40
- > [More information](http://dannyvankooten.com/mailchimp-for-wordpress/?utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=after-features-link) | [Form demo's](http://dannyvankooten.com/mailchimp-for-wordpress/demo/?utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=after-features-link) | [Upgrade now >>](http://dannyvankooten.com/mailchimp-for-wordpress/?utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=after-features-link)
 
 
 
 
 
 
 
 
41
 
42
  **More information**
43
 
44
- - Other [WordPress plugins](http://dannyvankooten.com/wordpress-plugins/?utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=more-info-link) by [Danny van Kooten](http://dannyvankooten.com?utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=more-info-link)
45
  - Contact Danny on Twitter: [@DannyvanKooten](http://twitter.com/dannyvankooten)
46
- - If you're a dev, follow or contribute to the [MailChimp for WordPress plugin on GitHub](https://github.com/dannyvankooten/mailchimp-for-wordpress)
47
 
48
 
49
  == Installation ==
@@ -70,7 +78,7 @@ Add sign-up checkboxes to *any* form on your website. The plugin offers built-in
70
  Need help? Please take a look at the [frequently asked questions](http://wordpress.org/plugins/mailchimp-for-wp/faq/) first
71
 
72
  = Upgrade to Pro =
73
- If you like the plugin, upgrade to [MailChimp for WordPress Pro](http://dannyvankooten.com/mailchimp-for-wordpress/?utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=installation-instructions-link) for an even better plugin.
74
 
75
  == Frequently Asked Questions ==
76
 
@@ -83,7 +91,7 @@ If you like the plugin, upgrade to [MailChimp for WordPress Pro](http://dannyvan
83
  > 1. Custom color themes and a form designer (CSS Builder)
84
  > 1. Statistics & log. Learn when, where and how your visitors subscribed.
85
  >
86
- > [More Pro features](http://dannyvankooten.com/mailchimp-for-wordpress/?utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=faq-link) | [Demo](http://dannyvankooten.com/mailchimp-for-wordpress/demo/?utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=faq-link)
87
 
88
  = How to display a form in posts or pages? =
89
  Use the `[mc4wp_form]` shortcode.
@@ -125,7 +133,7 @@ You can use CSS rules to style the sign-up form, use the following CSS selectors
125
 
126
  Add your custom CSS rules to the end of your theme stylesheet, **/wp-content/themes/your-theme-name/style.css**. Do not add them to the plugin stylesheet as they will be automatically overwritten on the next plugin update.
127
 
128
- [PS: With the Pro version, you can design beautiful forms easily >>](http://dannyvankooten.com/mailchimp-for-wordpress/?utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=after-css-link)
129
 
130
  = Where can I find my MailChimp API key? =
131
  [Here](http://kb.mailchimp.com/article/where-can-i-find-my-api-key)
@@ -202,6 +210,18 @@ Your theme folder can be found by browsing to `/wp-content/themes/your-theme-nam
202
 
203
  == Changelog ==
204
 
 
 
 
 
 
 
 
 
 
 
 
 
205
  = 2.0 - April 29, 2014 =
206
 
207
  **Improvements**
@@ -376,5 +396,5 @@ Your theme folder can be found by browsing to `/wp-content/themes/your-theme-nam
376
 
377
  == Upgrade Notice ==
378
 
379
- = 2.0 =
380
- Support for Captcha's, translated settings pages, improved CSS serving and various code improvements.
1
  === MailChimp for WordPress ===
2
  Contributors: DvanKooten
3
+ Donate link: http://dannyvankooten.com/mailchimp-for-wordpress/
4
  Tags: mailchimp,form,shortcode,widget,checkbox,comment,newsletter,buddypress,multisite,bbpress,woocommerce,easy digital downloads,contact form,contact form 7
5
+ Requires at least: 3.5
6
+ Tested up to: 3.9.1
7
+ Stable tag: 2.0.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
37
  >
38
  > Multiple forms, AJAX, form designer, custom themes, detailed statistics, more built-in checkbox integrations and priority support.
39
  >
40
+ > [More information](http://dannyvankooten.com/mailchimp-for-wordpress/#utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=after-features-link) | [Form demo's](http://dannyvankooten.com/mailchimp-for-wordpress/demo/#utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=after-features-link) | [Upgrade now >>](http://dannyvankooten.com/mailchimp-for-wordpress/#utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=after-features-link)
41
+
42
+ **Translators**
43
+
44
+ - English (en_US) - Danny van Kooten
45
+ - Dutch (nl_NL) - Danny van Kooten
46
+ - Spanish (es_ES) - [Paul Benitez - Tecnofilos](http://www.tecnofilos.net/)
47
+
48
+ If you have created your own language pack (or have an update of an existing one) you can send in your .PO and .MO files so we can bundle it into MailChimp for WordPress. You can [download the latest POT file](http://plugins.svn.wordpress.org/mailchimp-for-wp/trunk/languages/mailchimp-for-wp.po), and [PO files in each language](http://plugins.svn.wordpress.org/mailchimp-for-wp/trunk/languages/).
49
 
50
  **More information**
51
 
52
+ - Other [WordPress plugins](http://dannyvankooten.com/wordpress-plugins/#utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=more-info-link) by [Danny van Kooten](http://dannyvankooten.com#utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=more-info-link)
53
  - Contact Danny on Twitter: [@DannyvanKooten](http://twitter.com/dannyvankooten)
54
+ - If you're a dev, follow or contribute to the [MailChimp for WP plugin on GitHub](https://github.com/dannyvankooten/mailchimp-for-wordpress)
55
 
56
 
57
  == Installation ==
78
  Need help? Please take a look at the [frequently asked questions](http://wordpress.org/plugins/mailchimp-for-wp/faq/) first
79
 
80
  = Upgrade to Pro =
81
+ If you like the plugin, upgrade to [MailChimp for WordPress Pro](http://dannyvankooten.com/mailchimp-for-wordpress/#utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=installation-instructions-link) for an even better plugin.
82
 
83
  == Frequently Asked Questions ==
84
 
91
  > 1. Custom color themes and a form designer (CSS Builder)
92
  > 1. Statistics & log. Learn when, where and how your visitors subscribed.
93
  >
94
+ > [More Pro features](http://dannyvankooten.com/mailchimp-for-wordpress/#utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=faq-link) | [Demo](http://dannyvankooten.com/mailchimp-for-wordpress/demo/#utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=faq-link)
95
 
96
  = How to display a form in posts or pages? =
97
  Use the `[mc4wp_form]` shortcode.
133
 
134
  Add your custom CSS rules to the end of your theme stylesheet, **/wp-content/themes/your-theme-name/style.css**. Do not add them to the plugin stylesheet as they will be automatically overwritten on the next plugin update.
135
 
136
+ [PS: With the Pro version, you can design beautiful forms easily >>](http://dannyvankooten.com/mailchimp-for-wordpress/#utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=after-css-link)
137
 
138
  = Where can I find my MailChimp API key? =
139
  [Here](http://kb.mailchimp.com/article/where-can-i-find-my-api-key)
210
 
211
  == Changelog ==
212
 
213
+ = 2.0.1 =
214
+
215
+ **Improvements**
216
+
217
+ - Allowed translation of more strings in the settings screens.
218
+ - Added Spanish translations, thanks [Paul Benitez - Tecnofilos](http://www.tecnofilos.net/)
219
+ - Minor code improvements
220
+
221
+ **Additions**
222
+
223
+ - Saving forms without an `EMAIL` field or submit button will show a notice.
224
+
225
  = 2.0 - April 29, 2014 =
226
 
227
  **Improvements**
396
 
397
  == Upgrade Notice ==
398
 
399
+ = 2.0.1 =
400
+ Added Spanish translation and updated others. Minor code & usability improvements.